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

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

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

li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

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

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

caption,
th {
  text-align: left;
}

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

input,
select {
  vertical-align: middle;
}

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

/*----------------------------------------
	Custom Properties
----------------------------------------*/
:root {
  --color-green: #5EAC35;
  --text-color: #3B4043;
  --background-color: #fff;
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-en: "Montserrat", sans-serif;
  --font-size-base-pc: 1.6rem;
  --font-size-base-sp: 1.6rem;
  --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 (max-width: 375px) {
  html {
    font-size: 58%;
  }
}
body {
  color: var(--text-color);
  background-color: var(--background-color);
  font-size: var(--font-size-base-pc);
  line-height: 1.75;
  letter-spacing: 0.02em;
  font-weight: var(--font-weight-regular);
  font-family: var(--font-family-base);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  position: relative;
}
body.is-fixed {
  overflow: hidden;
  height: 100%;
}

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

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

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

img {
  vertical-align: bottom;
}

button {
  border: none;
}

label {
  white-space: nowrap;
}

input {
  border: none;
}

@media only screen and (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.l-wrapper {
  width: 100vw;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.l-wrapper::after {
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  background: url(../img/common/bg.jpg) center;
  background-size: 600px auto;
}
.l-wrapper .l-wrapper__left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.l-wrapper .l-wrapper__left .logo {
  width: 11rem;
  position: fixed;
  top: 34%;
  left: calc((50% - 215px) / 2 - 5.5rem);
}
.l-wrapper .l-wrapper__main {
  width: 430px;
  max-width: 100%;
  position: relative;
  z-index: 1;
  background: var(--background-color);
  border-left: 15px solid #fff;
  border-right: 15px solid #fff;
}
.l-wrapper .l-wrapper__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.l-wrapper .l-wrapper__right .container {
  max-width: 320px;
  position: fixed;
  right: 2rem;
  bottom: 3.2rem;
}
.l-wrapper .l-wrapper__right .container .p-gnavi a:hover {
  opacity: 1;
  color: var(--color-green);
}
.l-wrapper .l-wrapper__right .container .p-gnavi a:hover::before {
  border-color: var(--color-green);
}
.l-wrapper .l-wrapper__right .container .p-sub-navi {
  margin-top: 15.4vh;
  color: #A0A0A0;
}
.l-wrapper .l-wrapper__right .container .p-sub-navi a {
  color: #A0A0A0;
}
.l-wrapper .l-wrapper__right .container .p-sub-navi a::before {
  background-color: #A0A0A0;
}
.l-wrapper .l-wrapper__right .container .p-sub-navi a:hover {
  opacity: 1;
  color: var(--color-green);
}
.l-wrapper .l-wrapper__right .container .p-sub-navi a:hover::before {
  background-color: var(--color-green);
}
.l-wrapper .l-wrapper__right .container .p-copyright {
  color: #A0A0A0;
}

@media (min-width: 481px) and (max-width: 1199px) {
  .l-wrapper .l-wrapper__left,
  .l-wrapper .l-wrapper__right {
    display: none;
  }
}
@media (max-width: 480px) {
  .l-wrapper .l-wrapper__left,
  .l-wrapper .l-wrapper__right {
    display: none;
  }
  .l-wrapper .l-wrapper__main {
    width: 100%;
    border-left: 0;
    border-right: 0;
  }
}
.l-container {
  padding-left: 6.667%;
  padding-right: 6.667%;
}

.l-header {
  width: 400px;
  height: 0;
  max-width: 100%;
  position: fixed;
  top: 0;
  left: calc(50vw - 200px);
  z-index: 100;
  overflow: hidden;
}

.menu-open .l-header {
  height: auto;
}

@media (max-width: 480px) {
  .l-header {
    width: 100%;
    left: 0;
  }
}
.l-footer {
  position: relative;
  margin-top: 40px;
}

.page-top .l-footer {
  margin-top: 0;
}

.post-office .l-footer {
  margin-top: 0;
}

.page-sub:not(.has-visual) .l-main {
  margin-top: 70px;
}

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

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

.c-button {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid #A0A0A0;
  color: var(--color-green);
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 1.4rem;
  padding: 1rem 1.6rem 1.2rem 1.6rem;
  min-width: 200px;
  border-radius: 100px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.c-button:after,
.c-button:before {
  content: "";
  display: block;
  position: absolute;
}

.c-button:before {
  width: 0;
  height: 0;
  padding-bottom: 0;
  border-radius: 50%;
  background: var(--color-green);
  -webkit-transition: all 0.5s cubic-bezier(0.43, 0.05, 0.17, 1);
  transition: all 0.5s cubic-bezier(0.43, 0.05, 0.17, 1);
  top: 50%;
  left: 50%;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

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

.c-button:hover:before {
  width: 100%;
  padding-bottom: 100%;
}

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

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

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

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

.p-header {
  height: 100dvh;
  padding: 10rem 4rem 4rem 4rem;
  background-color: var(--color-green);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(20%);
          transform: translateX(20%);
}
.p-header .p-header__logo {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-header a {
  color: #fff;
}
.p-header .p-gnavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.p-header .p-gnavi li {
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  opacity: 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.p-header .p-gnavi li a::before {
  border-color: #fff;
}
.p-header .p-sub-navi {
  margin-top: 6.4rem;
  padding-top: 3.2rem;
}
.p-header .p-sub-navi h3 {
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  opacity: 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.p-header .p-sub-navi li {
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  opacity: 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.p-header .p-sub-navi li a::before {
  background-color: #fff;
}

.menu-open .p-header {
  height: 100dvh;
  overflow-y: scroll;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.menu-open .p-header .p-gnavi li.visible, .menu-open .p-header .p-sub-navi li.visible {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.menu-open .p-header .p-sub-navi h3.visible {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.p-footer {
  width: 100%;
  height: 400px;
  background: url(../img/common/bg.jpg) center;
  background-size: 600px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-footer__logo {
  width: 150px;
}
.p-footer__logo img {
  width: 100%;
}

.p-page-head {
  padding: 6rem 2rem 6rem 2rem;
  height: 23rem;
  background-color: var(--color-green);
  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;
  margin-bottom: 6rem;
}
.p-page-head .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(../img/common/icon_logo_circle.svg) no-repeat center top;
  background-size: 3.6rem auto;
  padding-top: 4.6rem;
}
.p-page-head .title span {
  display: block;
  line-height: 1;
}
.p-page-head .title span.jp {
  font-size: 2.6rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 1rem;
}
.p-page-head .title span.en {
  font-size: 1.2rem;
}

.p-top-visual {
  position: relative;
}

.p-top-visual__logo {
  width: 130px;
  height: 130px;
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
}

.p-top-post-list {
  display: none;
}
.p-top-post-list:first-of-type {
  display: block;
}

.p-page-visual {
  position: relative;
  margin-bottom: 4rem;
}
.p-page-visual picture {
  display: block;
  overflow: hidden;
  position: relative;
  height: 0;
  padding-top: 150%;
}
.p-page-visual picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
}

.p-page-visual__logo {
  width: 130px;
  height: 130px;
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
}

.post-office .p-page-visual {
  margin-bottom: 0;
}

.p-gotop {
  position: absolute;
  right: 0;
  top: 21rem;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  overflow: hidden;
  padding-left: 3rem;
}
.p-gotop::after {
  content: "";
  display: block;
  border-bottom: 1px solid var(--text-color);
  width: 14rem;
  height: 1px;
  position: absolute;
  position: absolute;
  left: -5rem;
  bottom: 0;
}
.p-gotop:hover::after {
  -webkit-animation: gotoBtnAnime 0.6s ease-in-out forwards;
          animation: gotoBtnAnime 0.6s ease-in-out forwards;
}
.p-gotop span {
  display: block;
  cursor: pointer;
  font-family: var(--font-family-en);
}

@-webkit-keyframes gotoBtnAnime {
  0% {
    width: 14rem;
    left: -5rem;
  }
  49% {
    width: 0;
    left: -14rem;
  }
  50% {
    width: 0%;
    left: 10rem;
  }
  100% {
    width: 14rem;
    left: -5rem;
  }
}

@keyframes gotoBtnAnime {
  0% {
    width: 14rem;
    left: -5rem;
  }
  49% {
    width: 0;
    left: -14rem;
  }
  50% {
    width: 0%;
    left: 10rem;
  }
  100% {
    width: 14rem;
    left: -5rem;
  }
}
@media (max-width: 480px) {
  .p-gotop {
    top: initial;
    bottom: 30rem;
  }
}
.p-loading {
  width: 100vw;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 1;
}
.p-loading .p-loading__logo {
  opacity: 0;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: opacity 1s linear 0s, -webkit-transform 1s varcubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: opacity 1s linear 0s, -webkit-transform 1s varcubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: opacity 1s linear 0s, transform 1s varcubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: opacity 1s linear 0s, transform 1s varcubic-bezier(0.165, 0.84, 0.44, 1) 0s, -webkit-transform 1s varcubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}

.is_loaded .p-loading {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 1s linear 2.1s;
  transition: 1s linear 2.1s;
}
.is_loaded .p-loading .p-loading__logo {
  -webkit-animation: loadingLogoAnime 2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.4s;
          animation: loadingLogoAnime 2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.4s;
}

@-webkit-keyframes loadingLogoAnime {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}

@keyframes loadingLogoAnime {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}
.p-gnavi ul li:not(:last-of-type) {
  margin-bottom: 1rem;
}
.p-gnavi ul li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.p-gnavi ul li a::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 1px;
  border-bottom: 2px solid var(--text-color);
  margin-right: 0.8rem;
}
.p-gnavi ul li a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.6;
}

.p-sub-navi h3 {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 1.6rem;
}
.p-sub-navi ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-sub-navi ul li {
  width: 50%;
  margin-bottom: 0.4rem;
}
.p-sub-navi ul li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 1.4rem;
  line-height: 1;
}
.p-sub-navi ul li a::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 2px;
  margin-right: 6px;
  background-color: var(--text-color);
}
.p-sub-navi ul li a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.6;
}

.p-menu-btn {
  position: fixed;
  top: 15px;
  right: calc(50vw - 200px + 20px);
  z-index: 1001;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: 1px solid var(--color-green);
  border-radius: 20px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.p-menu-btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.p-menu-btn:hover span {
  background-color: var(--color-green);
}
.p-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--color-green);
  position: absolute;
  z-index: 1;
  left: 9px;
  -webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.p-menu-btn span.l1 {
  top: 12px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

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

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

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

.has-visual .p-menu-btn {
  border: 1px solid #fff;
}
.has-visual .p-menu-btn span {
  background-color: #fff;
}
.has-visual.firstview_scroll.menu-open .p-menu-btn span {
  background-color: #fff;
}
.has-visual.firstview_scroll.menu-open .p-menu-btn:hover span {
  background-color: #fff;
}
.has-visual.firstview_scroll .p-menu-btn {
  border: 1px solid var(--color-green);
}
.has-visual.firstview_scroll .p-menu-btn span {
  background-color: var(--color-green);
}
.has-visual.firstview_scroll .p-menu-btn:hover span {
  background-color: var(--color-green);
}

@media (max-width: 480px) {
  .p-menu-btn {
    right: 20px;
  }
}
.p-copyright {
  font-size: 1rem;
  letter-spacing: 0;
  margin-top: 2.4rem;
}

.p-news-tags {
  margin-bottom: 2.4rem;
}

.p-post-card-l {
  position: relative;
  display: block;
}
.p-post-card-l:hover picture img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.p-post-card-l:hover .content {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: rgba(0, 0, 0, 0.5);
}
.p-post-card-l .badge-topics {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  width: 89px;
  height: auto;
}
.p-post-card-l picture {
  display: block;
  overflow: hidden;
  position: relative;
  height: 0;
  padding-top: 105%;
}
.p-post-card-l picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 1s;
  transition: 1s;
}
.p-post-card-l .content {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  padding: 12px 6.667% 20px 6.667%;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
.p-post-card-l .content .meta {
  margin-bottom: 0.4rem;
}
.p-post-card-l .content .meta .date {
  font-size: 1.2rem;
}
.p-post-card-l .content .title {
  font-size: 1.8rem;
  line-height: 1.5;
}

.p-post-card-m {
  position: relative;
  display: block;
  padding-bottom: 5.6rem;
}
.p-post-card-m picture {
  display: block;
  overflow: hidden;
  position: relative;
  height: 0;
  padding-top: 114%;
  margin-bottom: 2.4rem;
}
.p-post-card-m picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 1s;
  transition: 1s;
}
.p-post-card-m .badge-topics {
  position: absolute;
  top: -6.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  width: 89px;
  height: auto;
}
.p-post-card-m .content {
  width: 100%;
  padding: 0 6.667%;
  position: relative;
}
.p-post-card-m .content .meta {
  margin-bottom: 1.6rem;
}
.p-post-card-m .content .meta .date {
  font-size: 1.2rem;
  text-indent: 3px;
  display: block;
}
.p-post-card-m .content .meta .tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 0.6rem;
}
.p-post-card-m .content .meta .tags span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 4px 12px 5px 12px;
  margin-right: 5px;
  margin-bottom: 5px;
  border: 1px solid #adadad;
  border-radius: 40px;
  font-size: 1.2rem;
  line-height: 1;
  color: #A0A0A0;
}
.p-post-card-m .content .title {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  margin-bottom: 18px;
  padding-bottom: 18px;
}
.p-post-card-m .content .title::after {
  content: "";
  display: block;
  width: 30%;
  height: 1px;
  border-bottom: 1px solid #B1B1B1;
  position: absolute;
  bottom: 0;
  left: 0;
}
.p-post-card-m .content .summary {
  font-size: 1.4rem;
  font-weight: 400;
  text-align: justify;
}
.p-post-card-m .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;
  margin-top: 2.4rem;
}

.p-post-card-s {
  position: relative;
  display: block;
}
.p-post-card-s picture {
  display: block;
  overflow: hidden;
  position: relative;
  height: 0;
  padding-top: 68.9%;
  margin-bottom: 2.4rem;
}
.p-post-card-s picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 1s;
  transition: 1s;
}
.p-post-card-s .content {
  width: 100%;
  padding: 0 3.145%;
  position: relative;
}
.p-post-card-s .content .title {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 1.4rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.p-post-card-s .content .summary {
  font-size: 1.4rem;
  font-weight: 400;
  text-align: justify;
  margin-bottom: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.p-post-card-s2 {
  position: relative;
  display: block;
}
.p-post-card-s2:hover picture img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.p-post-card-s2 picture {
  display: block;
  overflow: hidden;
  position: relative;
  height: 0;
  padding-top: 69%;
}
.p-post-card-s2 picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 1s;
  transition: 1s;
}
.p-post-card-s2 .content {
  width: 100%;
  margin-top: 8px;
  padding: 0 0 0 12px;
  border-left: 1px solid #B1B1B1;
}
.p-post-card-s2 .content .meta {
  margin-bottom: 10px;
  line-height: 1;
}
.p-post-card-s2 .content .meta .date {
  font-size: 1rem;
}
.p-post-card-s2 .content .title {
  font-size: 1.4rem;
  line-height: 1.5;
}

.p-post-card-office {
  position: relative;
  display: block;
}
.p-post-card-office .heading {
  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;
  margin-bottom: 1.2rem;
}
.p-post-card-office .heading picture {
  display: block;
  overflow: hidden;
  position: relative;
  width: 8rem;
  height: 8rem;
  border-radius: 4rem;
}
.p-post-card-office .heading picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 1s;
  transition: 1s;
}
.p-post-card-office .heading .name {
  width: calc(100% - 9.4rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-post-card-office .heading .name .jp {
  font-size: 2rem;
  line-height: 1.45;
}
.p-post-card-office .heading .name .category {
  font-size: 1.2rem;
  color: #A0A0A0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-post-card-office .heading .name .category span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 1rem;
  margin-right: 0.8rem;
}
.p-post-card-office .heading .name .category span:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 2px;
  background-color: #a0a0a0;
  position: absolute;
  right: 0;
  top: calc(50% - 1px);
}
.p-post-card-office .content {
  width: 100%;
  position: relative;
}
.p-post-card-office .content .summary {
  font-size: 1.4rem;
  font-weight: 400;
  text-align: justify;
  margin-bottom: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-bottom: 2rem;
}
.p-post-card-office .navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-post-card-office .navi .c-button {
  width: 15rem;
}

.p-post-list-s.nesting {
  background-color: #F0F0F0;
  border-radius: 1rem;
  padding: 3rem 6% 0 6%;
  margin-bottom: 5.6rem;
}
.p-post-list-s .p-post-list-s__title {
  background-color: var(--color-green);
  color: #fff;
  width: 80%;
  font-size: 2.2rem;
  line-height: 1.45;
  border-radius: 5px;
  padding: 1.4rem 2rem 1.6rem 2rem;
  margin-bottom: -1rem;
  position: relative;
  z-index: 1;
}
.p-post-list-s .p-post-list-s__title::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 2.4rem;
  border: 8px solid transparent;
  border-top: 15px solid var(--color-green);
}
.p-post-list-s .p-post-card-s:not(:last-of-type) {
  padding-bottom: 5.6rem;
}

.p-post-list-s2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #EBEAD2;
  padding: 20px 3.145% 14px 3.145%;
}
.p-post-list-s2 .p-post-card-s2 {
  width: 48%;
}

.p-post-list-office.nesting {
  background-color: #F0F0F0;
  border-radius: 1rem;
  padding: 3rem 6% 2rem 6%;
  margin-bottom: 5.6rem;
}
.p-post-list-office .p-post-card-office {
  margin-bottom: 3.2rem;
  padding-bottom: 3.2rem;
  border-bottom: 1px solid #B1B1B1;
}
.p-post-list-office .p-post-card-office:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.p-post-list-office .p-post-list-office__term {
  margin-bottom: 3.2rem;
  padding-bottom: 3.2rem;
  border-bottom: 1px solid #B1B1B1;
}
.p-post-list-office .p-post-list-office__term h3 {
  font-size: 2rem;
  line-height: 1.45;
  margin-bottom: 1.6rem;
}
.p-post-list-office .p-post-list-office__term p {
  font-size: 1.4rem;
  font-weight: 400;
  text-align: justify;
}

.p-post-list.nesting {
  background-color: #F0F0F0;
  border-radius: 1rem;
  padding: 3rem 6% 5rem 6%;
  margin-left: 0;
  margin-right: 0;
}
.p-post-list.nesting .item:first-of-type {
  border-top: none;
}
.p-post-list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2rem 0;
  border-bottom: 1px solid #A0A0A0;
}
.p-post-list .item:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-post-list .item:first-of-type {
  border-top: 1px solid #A0A0A0;
}
.p-post-list .item:last-of-type {
  border-bottom: 1px none;
}
.p-post-list .item > picture {
  width: 120px;
  height: 90px;
  overflow: hidden;
  display: block;
  position: relative;
}
.p-post-list .item > picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-post-list .item .content {
  width: calc(100% - 140px);
}
.p-post-list .item .content > h3 {
  font-size: 1.4rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  margin-bottom: 0.6rem;
}
.p-post-list .item .content > p {
  font-size: 1.2rem;
  line-height: 1.65;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-bottom: 0;
}

.p-post-list__heading {
  position: relative;
  padding-left: 24px;
  margin-bottom: 2.4rem;
}
.p-post-list__heading::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 7px;
  background-color: var(--color-green);
  position: absolute;
  left: 0;
  top: 13px;
}

.post-office .p-post-list .item:first-of-type {
  border-top: none;
}
.post-office .p-post-list .item:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
}
.post-office .p-post-list__heading {
  margin-left: 6.667%;
  margin-right: 6.667%;
  margin-bottom: 1rem;
  margin-top: 40px;
}
.post-office .p-post-card-l picture {
  padding-top: 80%;
}
.post-office .p-post-card-l .content .title {
  margin-bottom: 0;
}

.p-post-tab {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  margin-top: 1rem;
}
.p-post-tab .p-post-tab__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.p-post-tab .item {
  display: inline-block;
  text-align: center;
  padding: 16px 10px 16px 10px;
  margin: 0 10px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border-bottom: 8px solid #fff;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
.p-post-tab .item.current {
  border-bottom: 8px solid var(--color-green);
}

.p-section-title span {
  display: block;
}
.p-section-title.type-a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 2.4rem;
}
.p-section-title.type-a .en {
  font-size: 1.2rem;
  line-height: 1;
  font-weight: normal;
  color: #A0A0A0;
  position: relative;
  padding-left: 8px;
  margin-bottom: 2px;
}
.p-section-title.type-a .en::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background-color: var(--color-green);
  position: absolute;
  left: 0;
  top: 4px;
}
.p-section-title.type-a .jp {
  font-size: 2.2rem;
  font-weight: 500;
}
.p-section-title.type-b {
  font-size: 2.2rem;
  font-weight: 500;
  position: relative;
  padding: 0 0 0 6%;
  margin-bottom: 1.6rem;
}
.p-section-title.type-b::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background-color: var(--color-green);
  position: absolute;
  left: 0;
  top: 1.4rem;
}

.p-post-head.is-concept .title {
  font-size: 2.6rem;
  line-height: 1.45;
  color: var(--color-green);
  padding-bottom: 0;
}
.p-post-head.is-concept .title::after {
  display: none;
}
.p-post-head .title {
  font-size: 1.8rem;
  position: relative;
  margin-bottom: 18px;
  padding-bottom: 18px;
}
.p-post-head .title::after {
  content: "";
  display: block;
  width: 30%;
  height: 1px;
  border-bottom: 1px solid #B1B1B1;
  position: absolute;
  bottom: 0;
  left: 0;
}
.p-post-head .meta {
  margin-bottom: 2rem;
}
.p-post-head .meta .date {
  font-size: 1.2rem;
  text-indent: 3px;
  display: block;
}
.p-post-head .meta .tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 0.6rem;
}
.p-post-head .meta .tags span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 4px 12px 5px 12px;
  margin-right: 5px;
  margin-bottom: 5px;
  border: 1px solid #adadad;
  border-radius: 40px;
  font-size: 1.2rem;
  line-height: 1;
  color: #A0A0A0;
}

.post-office .p-post-head {
  background-color: var(--color-green);
  color: #fff;
  padding: 13.32% 0 6.667% 0;
}
.post-office .p-post-head .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 20px;
  padding-bottom: 26px;
  position: relative;
}
.post-office .p-post-head .name::before, .post-office .p-post-head .name::after {
  content: "";
  display: block;
  height: 3px;
  width: 4.3rem;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #fff;
}
.post-office .p-post-head .name::after {
  width: 8.6rem;
  height: 1px;
  bottom: 1px;
}
.post-office .p-post-head .name .jp {
  font-size: 3rem;
  line-height: 1.5;
}
.post-office .p-post-head .name .en {
  font-size: 1.2rem;
  color: #fff;
}
.post-office .p-post-head .title {
  padding-bottom: 0;
}
.post-office .p-post-head .title::after {
  display: none;
}

.p-post-body {
  /* 見出し */
  /* 段落 */
  /* リスト */
  /* 画像 */
  /* レイアウト */
  /* カラム */
  /* 引用 */
  /* 表 */
  /* ギャラリー */
  /* 詩 */
  /* ボタン */
}
.p-post-body h1, .p-post-body h2, .p-post-body h3, .p-post-body h4, .p-post-body h5 {
  line-height: 1.5;
  margin-bottom: 2rem;
}
.p-post-body h1 {
  font-size: 2.8rem;
}
.p-post-body h2 {
  font-size: 2.4rem;
}
.p-post-body h3 {
  font-size: 2rem;
}
.p-post-body h4 {
  font-size: 1.8rem;
}
.p-post-body h5 {
  font-size: var(--font-size-base-pc);
}
.p-post-body p {
  margin-bottom: 4rem;
}
.p-post-body ul {
  margin-bottom: 4rem;
}
.p-post-body ul li {
  line-height: 1.65;
  position: relative;
  margin-left: 0.6rem;
  margin-bottom: 0.6rem;
  padding-left: 1.2rem;
}
.p-post-body ul li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background-color: var(--text-color);
  position: absolute;
  left: 0;
  top: 1.2rem;
}
.p-post-body .wp-block-image {
  margin-bottom: 4rem;
}
.p-post-body .wp-block-image figcaption {
  font-size: 1.4rem;
  color: #A0A0A0;
  margin: 0.4rem 0 0 0;
}
.p-post-body .wp-block-media-text {
  font-size: 1.4rem;
}
.p-post-body .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
  padding: 0 8% 0 0;
}
.p-post-body .wp-block-media-text .wp-block-media-text__content {
  padding: 0 0 0 8%;
}
.p-post-body .wp-block-media-text .wp-block-media-text__content .has-large-font-size {
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.p-post-body .wp-block-columns {
  font-size: 1.4rem;
}
.p-post-body .wp-block-quote {
  overflow-wrap: break-word;
  margin-bottom: 4rem;
  font-size: 1.4rem;
}
.p-post-body .wp-block-quote p {
  border-left: 2px solid var(--text-color);
  padding: 0 0 0 1.4rem;
  line-height: 1.65;
  margin-bottom: 0;
}
.p-post-body .wp-block-quote cite {
  font-size: 1.2rem;
  padding: 0 0 0 2rem;
  color: #acacac;
}
.p-post-body .wp-block-table {
  font-size: 1.4rem;
  margin-bottom: 4rem;
}
.p-post-body .wp-block-table table {
  border-color: #C7C7C7;
  border-top: 1px solid #C7C7C7;
  border-left: 1px solid #C7C7C7;
}
.p-post-body .wp-block-table table tr {
  border-color: #C7C7C7;
  border-bottom: 1px solid #C7C7C7;
}
.p-post-body .wp-block-table table tr td {
  border-color: #C7C7C7;
  border-right: 1px solid #C7C7C7;
  padding: 1rem 1.4rem;
}
.p-post-body .wp-block-table table tr th {
  border-color: #C7C7C7;
}
.p-post-body .wp-block-table figcaption {
  font-size: 1.2rem;
  color: #A0A0A0;
  margin-top: 0.4rem;
}
.p-post-body .wp-block-gallery.has-nested-images figcaption {
  font-size: 1.2rem;
  color: #A0A0A0;
  margin: 0;
  position: relative !important;
  background: none !important;
  color: #000 !important;
  font-size: 12px !important;
  padding: 0 !important;
}
.p-post-body .wp-block-verse {
  margin-bottom: 4rem;
}
.p-post-body .wp-block-buttons .wp-block-button {
  margin-bottom: 1rem;
}
.p-post-body .wp-block-button__link {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  border: 2px solid #A0A0A0;
  color: var(--color-green);
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 1.4rem;
  padding: 1rem 1.6rem 1.3rem 1.6rem;
  border-radius: 100px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.p-post-body .wp-block-button__link:hover {
  background: var(--color-green);
  border-color: var(--color-green);
}

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

.post-office .p-post-body {
  background-color: #F6F6F6;
  padding-bottom: 1px;
}
.post-office .p-post-body .l-container {
  background: #fff;
  padding: 8% 6.667%;
  margin-left: 6.667%;
  margin-right: 6.667%;
  border-radius: 0 0 1rem 1rem;
}
.post-office .p-post-body .l-container > h3 {
  position: relative;
  padding-left: 3.2rem;
}
.post-office .p-post-body .l-container > h3::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 2.2rem;
  height: 2px;
  background-color: var(--color-green);
  position: absolute;
  left: 0;
  top: 1.5rem;
}

@media (max-width: 480px) {
  .p-post-body {
    /* 画像 */
    /* レイアウト */
  }
  .p-post-body .wp-block-image {
    margin-bottom: 4rem;
  }
  .p-post-body .wp-block-image.size-full {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
  .p-post-body .wp-block-image figcaption {
    font-size: 1.4rem;
    color: #A0A0A0;
    margin: 0.4rem 0 0 0;
  }
  .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;
  }
  .post-office {
    /* 画像 */
  }
  .post-office .wp-block-image.size-full {
    width: 100%;
    position: relative;
    left: initial;
    right: initial;
    margin-left: initial;
    margin-right: initial;
  }
}
.p-post-navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-post-navi a {
  display: block;
}
.p-post-navi a:hover {
  opacity: 0.7;
}
.p-post-navi .wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  border-top: 1px solid var(--color-green);
  margin: 40px 0 40px 0;
  padding: 20px 4% 0 4%;
}
.p-post-navi .wp-pagenavi a {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  border: none;
  padding: 0.5rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.p-post-navi .wp-pagenavi .previouspostslink, .p-post-navi .wp-pagenavi .nextpostslink {
  text-indent: -9999px;
  width: 3.6rem;
  height: 3.6rem;
}
.p-post-navi .wp-pagenavi .previouspostslink {
  background: url(../img/common/icon_allow_prev.svg) no-repeat center;
  background-size: contain;
}
.p-post-navi .wp-pagenavi .nextpostslink {
  background: url(../img/common/icon_allow_next.svg) no-repeat center;
  background-size: contain;
}
.p-post-navi .wp-pagenavi a:hover,
.p-post-navi .wp-pagenavi span.current {
  border: none;
}

.p-form {
  background-color: #F0F0F0;
  border-radius: 10px;
  padding: 30px 20px;
}
.p-form .p-form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 4rem;
}
.p-form .p-form__item .label {
  width: 100%;
  margin-bottom: 0.8rem;
}
.p-form .p-form__item .control {
  width: 100%;
}

.wpcf7-not-valid-tip {
  margin-top: 0.2rem;
}

.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-radio .wpcf7-list-item {
  display: block;
  margin-left: 0;
  margin-bottom: 0.4rem;
}

.wpcf7-response-output {
  width: 100%;
  margin: 20px auto;
  padding: 0;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.4;
  border: none !important;
}

.wpcf7 form .wpcf7-response-output {
  color: #c00 !important;
  padding: 0;
}

span.wpcf7-not-valid-tip,
.wpcf7-not-valid-tip-no-ajax {
  color: #c00;
  text-decoration: underline;
}

.wpcf7-validation-errors {
  color: #c00;
  font-weight: 700;
  text-decoration: underline;
  border: none;
}

.wpcf7-mail-sent-ok {
  color: #365899;
  font-weight: 700;
  text-decoration: underline;
  border: none;
}

.wpcf7 form .wpcf7-response-output {
  color: #c00 !important;
  padding: 0;
}

.p-contct .p-contact__form-attention {
  text-align: center;
}
.p-contct .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-history {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: baseline;
      -ms-flex-pack: baseline;
          justify-content: baseline;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 14px;
  margin-bottom: 2.4rem;
}
.p-history .date {
  width: 110px;
  margin-bottom: 18px;
}
.p-history .content {
  width: calc(100% - 116px);
  margin-bottom: 18px;
  text-align: justify;
}

.p-info-list {
  margin-bottom: 40px;
}
.p-info-list .item {
  border-bottom: 1px solid #A0A0A0;
  margin-bottom: 16px;
  padding: 0 2px 14px 2px;
}
.p-info-list .label {
  width: 100%;
  font-size: 1.4rem;
  color: #A0A0A0;
}
.p-info-list .content {
  width: 100%;
}

.post-office .p-info-list {
  background-color: #f6f6f6;
}
.post-office .p-info-list .l-container {
  background-color: #fff;
  border-radius: 1rem;
  border-radius: 1rem;
}

.p-info-list__sns {
  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;
  margin-top: 2rem;
}
.p-info-list__sns a {
  display: block;
  margin: 0 0.6rem;
}
.p-info-list__sns a img {
  width: 2.5rem;
}

.p-gmap {
  width: 100%;
  position: relative;
  padding-top: 75%;
  margin-top: 3rem;
}

.p-gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-quick-navi {
  border: 2px solid var(--color-green);
  border-radius: 6px;
  padding: 2.4rem 2.8rem 2.8rem 2.8rem;
  margin-bottom: 3.2rem;
  position: relative;
}
.p-quick-navi::after {
  display: block;
  content: attr(data-title);
  font-family: var(--font-family-en);
  font-size: 1.2rem;
  color: #A0A0A0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: absolute;
  bottom: 2rem;
  right: 1rem;
}
.p-quick-navi ul li {
  margin-bottom: 0.4rem;
}
.p-quick-navi ul li:last-of-type {
  margin-bottom: 0;
}
.p-quick-navi ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  color: var(--color-green);
  text-decoration: underline;
}
.p-quick-navi ul li a::before {
  content: "";
  display: block;
  width: 0.6rem;
  height: 1px;
  border-bottom: 1px solid var(--color-green);
  margin-right: 0.6rem;
  font-size: 1.8rem;
}

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

.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: 480px) {
  .p-404 h1 span:first-of-type {
    font-size: 12rem;
    margin-bottom: 1rem;
  }
  .p-404 h1 span {
    font-size: 2.6rem;
  }
}
.p-office-feature {
  margin-bottom: 4rem;
}
.p-office-feature figure {
  display: block;
}
.p-office-feature figure img {
  width: 100%;
  height: auto;
}

.p-office-navi {
  background-color: #f6f6f6;
}
.p-office-navi .l-container {
  background-color: #fff;
  padding: 10% 6.667% 12% 6.667%;
}
.p-office-navi h2 {
  position: relative;
  padding-left: 24px;
  margin-bottom: 2.4rem;
}
.p-office-navi h2::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 7px;
  background-color: var(--color-green);
  position: absolute;
  left: 0;
  top: 15px;
}
.p-office-navi ul li a {
  position: relative;
  padding-left: 14px;
  margin-left: 24px;
  margin-bottom: 1.2rem;
  display: block;
  font-size: 1.8rem;
  line-height: 1.4;
}
.p-office-navi ul li a::before {
  content: "";
  display: block;
  width: 4px;
  height: 1px;
  background-color: var(--text-color);
  position: absolute;
  left: 0;
  top: 15px;
}
.p-office-navi ul li a:not(:last-of-type) {
  margin-bottom: 1rem;
}

.fadeIn {
  -webkit-transition: opacity 1s 0.1s, -webkit-filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 1s 0.1s, -webkit-filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 1s 0.1s, filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 1s 0.1s, filter 1s cubic-bezier(0.33, 1, 0.68, 1), -webkit-filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  opacity: 0;
}

.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: 480px) {
  .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 */