<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/* =============================================
  # 基本設定

  ## 配色

  - #0e0200;
  - #B5BBBD;
  - #75AB67;
  - #d7f3c4;
  - #75AB67;
  - #f3798f;
  - #c7ccc6;
  - #007531
  - rgba(179, 113, 36, *);

  - $white: #fff;
  - $black: #222;

  ## フォント
  - Josefin Sans;
  - Noto Sans JP;
  - 游ゴシック体;

============================================= */

/* =============================================
  FOUNDATION
============================================= */

@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,900&amp;display=swap&amp;subset=japanese');
@import url('//fonts.googleapis.com/css?family=Josefin+Sans:400,700&amp;display=swap');
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::-moz-selection {
  background: #e7e7e7;
}

::selection {
  background: #e7e7e7;
}

html {
  font-size: 62.5%;
  height: 100%;
  line-height: 1.15;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  width: 100%;
}

body {
  color: #222;
  -ms-content-zooming: none;
  font: normal normal 500 1.5rem/1.8 "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",'Noto Sans JP', "メイリオ", sans-serif;
  -webkit-font-smoothing: antialiased;
  height: 100%;
  letter-spacing: .1em;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  overflow-y: scroll;
  text-align: justify;
  text-justify: inter-ideograph;
  width: 100%;
  word-wrap: break-word;
  -webkit-writing-mode: horizontal-tb;
  -ms-writing-mode: lr-tb;
  writing-mode: horizontal-tb;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font: inherit;
}

a {
  color: currentColor;
  text-decoration: none;
}

a:active,
a:hover {
  outline: 0;
}

small {
  font-size: 1.2rem;
}

ul,
ol {
  list-style: none;
}

img,
picture,
video {
  height: auto;
  max-width: 100%;
}

img {
  border-style: none;
  vertical-align: middle;
}

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

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
}

textarea {
  overflow-y: auto;
  resize: vertical;
}

input[type='submit'],
input[type='button'],
button,
select {
  cursor: pointer;
}

[hidden] {
  display: none;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(.focus-visible) {
  outline: 0;
}

address {
  font: inherit;
}

/* =============================================
  UTILITIES
============================================= */

/* ----- Fonts ----- */

.is-en{
  font-family: Josefin Sans, sans-serif;
  font-weight: 700;
  word-break: break-all;
}

.is-jp{
  font-family: 'Noto Sans JP';
  font-weight: 800;
}

.is-mb-0 {
  margin-bottom: 0;
}

.sp,
.is-sp {
  display: none !important;
}

.is-readonly {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.is-tc{
  text-align: center;
}

.is-adjust__ttl05 {
    margin-top:-0.5vw;
}

.is-display-none {
    display: none;
    height: 0;
    width: 0;
}

/* =============================================
  LAYOUT
============================================= */

.l-wrapper {
  position: relative;
  z-index: 0;
}

.l-container {
}


.l-container.is-appeared {
  -webkit-animation: page-appeared 1s both;
  animation: page-appeared 1s both;
}

.l-container.is-leaved {
  -webkit-animation: page-leaved 1s both;
  animation: page-leaved 1s both;
}

.l-main{
  position: relative;
  margin-top: 100px;
  padding:0 0 150px;
  background: #c7ccc6;
}

.l-main.is-home{
  margin-top: 0;
}

.l-main:before {
  border-right:7px solid #222;
  content: '';
  left: 0;
  position: absolute;
  top: -100px;
  bottom: 0;
  width:4.9vw;
  z-index: 999;
}

.l-main:after {
  border-right:1px solid #222;
  content: '';
  left: 0;
  position: absolute;
  top: -100px;
  bottom: 0;
  width: 5.2vw;
  z-index: 999;
}

@-webkit-keyframes page-appeared {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes page-appeared {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* ----- Layout Footer ----- */

.l-footer {
  position: relative;
  z-index: 100;
}

/* =============================================
  PROJECT
============================================= */

/* ----- Loader ----- */

.p-loader-opening {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.p-loader-opening:before{
  content:"";
  background: #222;
  width: 100vw;
  height: 100%;
  position: absolute;
  left:0;
  top: 0;
  transition:all .5s cubic-bezier(0.39, 0.575, 0.565, 1);
  opacity:1;
}

body.is-loaded .p-loader-opening:before{
  animation:loader-curtin;
  background:#fff;
}


@-webkit-keyframes loaded-txt-completed {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(0, -1.5em, 0);
  }
}

@keyframes loaded-txt-completed {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(0, -1.5em, 0);
  }
}


.p-loader-opening__txt {
  height: 1.5em;
  overflow: hidden;
  z-index: 999;

}

.p-loader-opening.is-animated .p-loader-opening__txt {
  display: none;
}

.p-loader-opening__number {
  display: block;
  font-family: Josefin Sans, serif;
  letter-spacing: .15em;
  line-height: 1.5;
  text-align: center;
  color: #fff;
}

.p-loader-opening__number::after {
  content: attr(data-completed) '';
  display: block;
  font-family: Josefin Sans, serif;
  color: #222;
}

body.is-loaded .p-loader-opening__number {
  color: #222;
  -webkit-animation: loaded-txt-completed .5s ease-in-out forwards;
  animation: loaded-txt-completed .5s ease-in-out forwards;
}

@-webkit-keyframes loaded-txt-completed {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(0, -1.5em, 0);
  }
}

@keyframes loaded-txt-completed {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(0, -1.5em, 0);
  }
}

.p-loader-opening-progress {
  background: rgba(255, 255, 255, .1);
  height: 2px;
  margin-top: 12px;
  position: relative;
  width: 200px;
  z-index: 999;
}

.p-loader-opening.is-animated .p-loader-opening-progress{
  display: none;
}

.p-loader-opening-progress__bar {
  background: #fff;
  display: inline-block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 0;
  z-index: 1;
}

body.is-loaded .p-loader-opening-progress__bar {
  -webkit-animation: loaded-progress-bar .6s ease-in-out forwards;
  animation: loaded-progress-bar .6s ease-in-out forwards;
  transform-origin: right;
}

@-webkit-keyframes loaded-progress-bar {
  0% {
    transform: scale3d(1, 1, 1);
  }

  100% {
    transform: scale3d(0, 1, 1);
  }
}

@keyframes loaded-progress-bar {
  0% {
    transform: scale3d(1, 1, 1);
  }

  100% {
    transform: scale3d(0, 1, 1);
  }
}

/* ----- HEADER ----- */

.p-burger__icon {
  display: none;
  height: 100%;
  position: relative;
  width: 7vw;
  background: #222;
}

.p-burger__icon__line {
  background: #fff;
  display: inline-block;
  height: 2px;
  left: 15%;
  margin: auto;
  position: absolute;
  top: calc(50% - 1px);
  transition: transform .5s, opacity .5s;
  width: 70%;
}

.p-burger__icon__line:first-child {
  transform: translateY(-11px);
}

.p-burger__icon__line:last-child {
  transform: translateY(11px);
}

.p-burger__icon.is-active .p-burger__icon__line:first-child {
  transform: rotate(-45deg) translateY(0);
}

.p-burger__icon.is-active .p-burger__icon__line:nth-child(2) {
  opacity: 0;
}

.p-burger__icon.is-active .p-burger__icon__line:last-child {
  transform: rotate(45deg) translateY(0);
}

.p-global-header {
  background:rgba(255, 255, 255, .5);
  height: 100px;
  border-bottom:1px solid #222;
  position: fixed;
  display: flex;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 500;
  justify-content: space-between;
  align-items: center;
  transition: all .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.l-header__min .p-global-header{
  background: none;
  border: none;
}

.is-appeared .p-global-header {
  -webkit-animation: global-header-appeared 1.2s forwards;
  animation: global-header-appeared 1.2s forwards;
}

.is-leaved .p-global-header {
  -webkit-animation: global-header-leaved 1.2s forwards;
  animation: global-header-leaved 1.2s forwards;
}

@-webkit-keyframes global-header-appeared {
  0% {
    opacity: 0;
    transform: translate3d(0, -40px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes global-header-appeared {
  0% {
    opacity: 0;
    transform: translate3d(0, -40px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes global-header-leaved {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -64px, 0);
  }
}

@keyframes global-header-leaved {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -64px, 0);
  }
}

.p-global-header__logo {
  margin-left: 10vw;
  margin-right: 1vw;
  width: 12.5vw;
}

.p-global-header__logo__img {
  max-width: 100%;
  max-height: 60px;
}

.p-gnav {
  margin-right:5vw;
}

.p-gnav .p-gnav__list{
  display: flex;
  justify-content: flex-end;
}

.p-gnav__item {
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  line-height: 1.2;
}

.p-gnav__item:not(:last-child){
  margin-right: 3.2rem;
}

.p-gnav__item:not(:last-child)::after {
  content: '';
  background: #222;
  display: inline-block;
  height: 1.6rem;
  width: 2px;
  position: absolute;
  top:calc(50% - 0.8rem);
  right:-1.6rem;
}

.p-gnav__link {
    position: relative;
}

.p-gnav__item:before{
  content: '';
  position: absolute;
  background:#d7f3c4;
  width: 100%;
  height: 80%;
  top: calc(50% - 40%);
  left: 0;
  transition:transform .2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform:scale3d(0, 1 ,1);
  transform-origin:left;
}

.p-gnav__item.p-gnav-current:before{
  transform:scale3d(1, 1 ,1);
}

.p-gnav__item:hover:before{
  transform:scale3d(1, 1 ,1)
}


/* ----- FOOTER ----- */

.p-grobal-footer__address {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.p-grobal-footer__address .c-gmap{
  height: auto;
}
.p-grobal-footer__address .c-gmap:before{
  content:"";
  padding-bottom: 50%;
  display:block;
}
.p-grobal-footer__address .c-gmap,
.p-grobal-footer__address .p-grobal-footer__address__container{
  width: 50%;
}

.p-grobal-footer__address .p-grobal-footer__address__container{
  padding-left: 5rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.p-grobal-footer__address .p-grobal-footer__address__container.p-grobal-footer__address__logo-only{
  justify-content: normal;
}

.p-grobal-footer__address__ttl {
  margin-bottom: 3rem;
}

.p-grobal-footer__address__logo{
  max-height: 95px;
}


.p-grobal-footer__address__txt{
  color: #fff;
  line-height: 2;
}

.p-grobal-footer__address__txt-only{
    width: 50%;
    padding-left: 5rem;
}

.p-grobal-footer__bnr {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 52px -12px -12px;
}

.p-grobal-footer__bnr__item {
  flex-basis: 25%;
  padding: 12px;
  text-align: center;
}

.p-grobal-footer__bnr__link {
  display: inline-block;
  position: relative;
}

.p-grobal-footer__bnr__link::after {
  background: rgba(84, 165, 127, .5);
  content: '';
  display: inline-block;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity .3s;
  width: 100%;
  z-index: 1;
}

.p-grobal-footer__bnr__link.is-hover::after {
  opacity: 1;
}

.p-grobal-footer-contact {
  position: relative;
  z-index: 0;
	padding: 64px 0 0;
}
.p-grobal-footer + .p-grobal-footer-contact{
	margin: 64px auto 0;
	padding: 0;
}
.p-grobal-footer-contact__container {
  border: 3px solid #fff;
	margin: 0 auto;
  width: 60vw;
  padding: 56px 9%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
}

.p-grobal-footer-contact__block{
  width: 49%;
}

.p-grobal-footer-contact__block:not(:last-child){
  margin-right:2%;
}

.p-grobal-footer-contact__ttl {
  color: #fff;
  font-weight: 600;
  font-size: 1.8rem;
}

.p-grobal-footer-contact__ttl + .p-grobal-footer-contact__txt {
  margin-top: 1em;
}

.p-grobal-footer-contact__btn {
  align-items: center;
  background: rgba(91, 110, 90, 1);
  color: #fff;
  display: inline-flex;
  height: 100%;
  justify-content: center;
  letter-spacing: .1em;
  line-height: 1.5;
  padding: 16px 24px;
  transition: background .3s;
  width: 100%;
  font-weight: 600;
}

.p-grobal-footer-contact__btn.is-hover {
  background: rgba(0, 117, 49, .4);
}

.p-grobal-footer-contact__btn.is-tel {
  font-weight: 600;
  font-size: 2.4rem;
  font-family: Josefin Sans, sans-serif;
  white-space: nowrap;
}

.p-grobal-footer-contact i{
  font-size:1.8rem;
  margin-right: 1rem;
}

.p-grobal-footer-contact__bg {
  background: #222 center center/cover no-repeat;
  bottom: 0;
  display: inline-block;
  left: calc(50% - 50vw);
  overflow: hidden;
  position: absolute;
  right: calc(50% - 50vw);
  top: 0;
  z-index: -2;
}

.p-grobal-footer-contact__bg::before {
  background: rgba(34, 34, 34, .3);
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.p-grobal-footer-contact__bg__body {
  background: #111 center center / cover no-repeat;
  display: inline-block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100vw;
}

.p-grobal-footer__copy {
  background: #222;
  display: block;
  font-size: 1.4rem;
  line-height: 1;
  padding: 32px 5%;
  text-align: center;
  border-top:#555555 solid 1px;
  color: #fff;
}

.p-grobal-footer {
  margin: auto;
  width: 60vw;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.p-grobal-footer h4.c-headline{
  overflow: hidden;
}
.p-grobal-footer .c-headline-en{
  display: inline-block;
}

.p-fnav {
  margin: 64px auto 0;
  width: 100vw;
  background: #222;
}

.p-fnav__items {
  align-items: center;
  display: flex;
  justify-content: center;
  line-height: 2;
  padding: 4.5rem 0 3rem;
}
.p-fnav__item{
  position: relative;
  font-size:1.5rem;
  font-family: Josefin Sans, serif;
  font-weight: 600;
}

.p-fnav__item:not(:last-child)::after {
  content: '';
  background: #fff;
  display: inline-block;
  height: 1.5rem;
  width: 2px;
  position: absolute;
  top:calc(50% - 0.75rem);
  right:-0.75rem;
}

.p-fnav__item:not(:last-child) {
  margin-right: 16px;
}

.p-fnav__link {
  display: inline-block;
  padding: 0 .4em;
  position: relative;
  z-index: 0;
  color: #fff;
  transition: all .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.p-fnav__link:hover {
  color: #d7f3c4;
}

.p-notfound {
  padding: 0 10vw;
}

.p-notfound__txt {
  margin-bottom: 64px;
  text-align: center;
}

.p-notfound__txt p {
  margin-top: 1em;
}

.p-grobal-footer-sns {
  align-items: center;
  display: flex;
  justify-content: center;
  padding-bottom: 30px;
}

.p-grobal-footer-sns__item:not(:last-child) {
  margin-right: 24px;
}

.p-grobal-footer-sns__link {
  font-size: 2.5rem;
  letter-spacing: 0;
  line-height: 1;
  transition: color .3s;
  color:#fff;
}

.p-grobal-footer-sns__link.is-hover {
  color: #d7f3c4;
}

/* ----- SP MENU ----- */

.p-gnav-sp {
  color: #fafafa;
  display: none;
  font-size: 1.4rem;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 900;
}

.p-gnav-sp [aria-hidden='true'] {
  pointer-events: none;
}

.p-gnav-sp__container {
  -webkit-animation: menu-active-in .6s forwards;
  animation: menu-active-in .6s forwards;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #343434;
  background-image:repeating-linear-gradient(-45deg,#222, #222 4px,transparent 0, transparent 8px);
  font-size: 1.5rem;
  height: 100%;
  left: 0;
  line-height: 2;
  overflow: hidden;
  padding: 10%;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 0;
}

.p-gnav-sp[aria-hidden='true'] .p-gnav-sp__container {
  -webkit-animation: menu-active-out .6s forwards;
  animation: menu-active-out .6s forwards;
}

.p-gnav-sp__inner {
  height: 100%;
  overflow-y: auto;
}

.p-gnav-sp__items {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  overflow: hidden;
}

.p-gnav-sp__item {
  width:100%;
  text-align: center;
  -webkit-animation: menu-link-in 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.6s both;
  animation: menu-link-in 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.6s both;
}

.p-gnav-sp__item:not(:first-child) {
  margin-top: 20px;
}

.p-gnav-sp__item.is-contact {
  margin-top: 33px;
}

.p-gnav-sp[aria-hidden='true'] .p-gnav-sp__item {
  -webkit-animation: menu-link-in .8s cubic-bezier(.19, 1, .22, 1) .6s both;
  animation: menu-link-in .8s cubic-bezier(.19, 1, .22, 1) .6s both;
  /* border-bottom:1px solid #fff; */
}

.p-gnav-sp__item:last-child{
  border-bottom:none;
}

.p-gnav-sp__item:nth-child(1) {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.p-gnav-sp__item:nth-child(2) {
  -webkit-animation-delay: .8s;
  animation-delay: .8s;
}

.p-gnav-sp__item:nth-child(3) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.p-gnav-sp__item:nth-child(4) {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.p-gnav-sp__item:nth-child(5) {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

.p-gnav-sp__item:nth-child(6) {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}

.p-gnav-sp__item:nth-child(7) {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}

.p-gnav-sp__item:nth-child(8) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.p-gnav-sp__item:nth-child(9) {
  -webkit-animation-delay: 2.2s;
  animation-delay: 2.2s;
}

.p-gnav-sp__item:nth-child(10) {
  -webkit-animation-delay: 2.4s;
  animation-delay: 2.4s;
}

.p-gnav-sp__item:nth-child(11) {
  -webkit-animation-delay: 2.6s;
  animation-delay: 2.6s;
}

.p-gnav-sp__item:nth-child(12) {
  -webkit-animation-delay: 2.8s;
  animation-delay: 2.8s;
}

.p-gnav-sp__item:nth-child(13) {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.p-gnav-sp__item:nth-child(14) {
  -webkit-animation-delay: 3.2s;
  animation-delay: 3.2s;
}

.p-gnav-sp__item:nth-child(15) {
  -webkit-animation-delay: 3.4s;
  animation-delay: 3.4s;
}

.p-gnav-sp__item:nth-child(16) {
  -webkit-animation-delay: 3.6s;
  animation-delay: 3.6s;
}

.p-gnav-sp__item:nth-child(17) {
  -webkit-animation-delay: 3.8s;
  animation-delay: 3.8s;
}

.p-gnav-sp__item:nth-child(18) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.p-gnav-sp__item:nth-child(19) {
  -webkit-animation-delay: 4.2s;
  animation-delay: 4.2s;
}

.p-gnav-sp__item:nth-child(20) {
  -webkit-animation-delay: 4.4s;
  animation-delay: 4.4s;
}

.p-gnav-sp__btn {
  height: 32px;
  position: fixed;
  right: 20px;
  top: 20px;
  width: 32px;
  z-index: 1;
}

.p-gnav-sp__btn__line {
  display: inline-block;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 100%;
}

.p-gnav-sp__btn__line::before {
  background: #fff;
  content: '';
  display: inline-block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform-origin: right;
  width: 100%;
}

.p-gnav-sp__btn__line:first-child {
  transform: translate(-50%, -50%) rotate(135deg);
}

.p-gnav-sp__btn__line:first-child::before {
  animation: menu-btn-in 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.8s both;
}

.p-gnav-sp__btn__line:nth-child(2) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.p-gnav-sp__btn__line:nth-child(2)::before {
  animation: menu-btn-in 0.5s cubic-bezier(0.19, 1, 0.22, 1) 1.1s both;
}

.p-gnav-sp[aria-hidden='true'] .p-gnav-sp__btn__line::before {
  transform-origin: right;
}

.p-gnav-sp[aria-hidden='true'] .p-gnav-sp__btn__line:first-child::before {
  animation: menu-btn-out 0.5s cubic-bezier(0.19, 1, 0.22, 1) both;
}

.p-gnav-sp[aria-hidden='true'] .p-gnav-sp__btn__line:nth-child(2)::before {
  animation: menu-btn-out 0.5s cubic-bezier(0.19, 1, 0.22, 1) both;
}

.p-gnav-sp-contact__btn {
  border: 1px solid rgba(250, 250, 250, .8);
  display: inline-block;
  line-height: 1.5;
  max-width: 100%;
  padding: 16px;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
}

.p-gnav-sp-contact__btn.is-tel {
  font-family: Josefin Sans, sans-serif;
}

.p-gnav-sp-contact__btn.is-tel::before {
  content: '\f095';
  display: inline-block;
  font-family: 'Font Awesome 5 Free', serif;
  font-weight: bold;
  margin-right: 5vw;
  margin-left: -15px;
  transform: rotate(90deg);
}

@-webkit-keyframes menu-active-in {
  0% {
    opacity: 0;
    transform: scale3d(.92, .92, 1);
  }

  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

@keyframes menu-active-in {
  0% {
    opacity: 0;
    transform: scale3d(.92, .92, 1);
  }

  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

@-webkit-keyframes menu-active-out {
  0% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }

  100% {
    opacity: 0;
    transform: scale3d(.9, .9, 1);
  }
}

@keyframes menu-active-out {
  0% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }

  100% {
    opacity: 0;
    transform: scale3d(.9, .9, 1);
  }
}

@-webkit-keyframes menu-btn-in {
  0% {
    transform: scale3d(0, 1, 1);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes menu-btn-in {
  0% {
    transform: scale3d(0, 1, 1);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

@-webkit-keyframes menu-btn-out {
  0% {
    transform: scale3d(1, 1, 1);
  }

  100% {
    transform: scale3d(0, 1, 1);
  }
}

@keyframes menu-btn-out {
  0% {
    transform: scale3d(1, 1, 1);
  }

  100% {
    transform: scale3d(0, 1, 1);
  }
}

@-webkit-keyframes menu-link-in {
  0% {
    opacity: 0;
    transform: translate3d(2em, 0, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes menu-link-in {
  0% {
    opacity: 0;
    transform: translate3d(2em, 0, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes menu-link-out {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes menu-link-out {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* ----- HOME ----- */

.mainVisual{
  transform:scale(1.3);
  transition:transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.is-appeared .mainVisual{
  transform:scale(1);
}

.p-home-mainvisual {
  position: relative;
  z-index: 0;
  min-height: 85vh;
  max-height: 85vh;
}

.p-home-mainvisual::after {
  content: '';
  display: block;
}

.p-home-mainvisual__img{
  background:center center / cover no-repeat;
  display: inline-block;
  height: 85vh;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-home-info{
  max-width: 60vw;
  background: #fff;
  margin: -72px auto 0;
  display: flex;
  box-sizing: border-box;
  z-index: 1;
  position: relative;
  overflow: hidden;
  align-items: stretch;
}

.p-home-info__ttl{
  display: flex;
  align-items: center;
  background: #56595a;
  color: #fff;
  flex-basis: 21%;
  font-size: 1.5rem;
  justify-content: center;
  margin-right: 1vw;
  padding: 1%;
}

.p-home-info__articles{
  flex-basis: calc(79% - 320px - 1vw);
  display: flex;
  align-items: center;
}


.p-home-info__cat{
  background:#007531;
  color:#fff;
  padding: 0.6rem 1rem;
  display: inline-block;
  margin-right: 1rem;
}

.p-home-info__date{
  display: inline-block;
}

.p-home-info__article__ttl{
  padding-top: 1.5rem;
}

.p-home-info .c-btn{
  margin: 30px 1vw 30px 0;
}

.p-home-about,.p-home-menu,.p-home-special,.p-home-blog,.p-home-sns{
  margin: 150px auto 0;
  position: relative;
}

.p-home-about__container{
  position: relative;
}

.p-home-about .c-section.p-home-about__btn-none{
  padding-bottom:0;
}

.p-home-about__container:not(:last-child), .p-home-menu .c-section:not(:last-child){
  margin-bottom:108px;
}

.p-home-about .c-section__grid--col2{
  padding-left: 15vw;
  display: flex;
}
.p-home-about__ttl{
  min-height: 120px;
  padding-right:5vw;
}
.p-home-about .c-section__ttl__txt{
  overflow: hidden;
  position: relative;
  z-index:2;
  color: #222;
}
.c-section__ttl__txt .is-jp  {
	color: #fff;
}
.l-subpage .c-section__ttl__txt .is-jp {
	color: #222;
}
.p-home-about .c-section__ttl__txt .is-jp{
  display: inline-block;
  font-size: 4rem;
  line-height: 2;
  background: #75AB67;
  padding: 0 3.5rem;
  margin-bottom: 1.5rem;
}
.p-home-about .c-section__ttl__txt .u-sp{
	  margin-bottom: 1.5rem;
		display: inline-block;
}
.p-home-about .c-section__ttl__txt .u-sp:last-child,
.p-home-about .c-section__ttl__txt .is-jp:last-child{
  margin-bottom: 0;
}
.p-home-about .c-section__ttl__txt .is-jp:last-child{
  margin-bottom: 0;
}

.p-home-about .c-section__ttl__txt.is-state-animation .is-jp{
  transition: transform .4s cubic-bezier(.33,.89,.59,.97);
  transform:translate3d(-100%, 0, 0);
}

.p-home-about .c-section__ttl__txt.is-state-animation.is-animated .is-jp{
  transform:translate3d(0, 0, 0);
}

.p-home-about__txt__container{
  background: #fff;
  position: relative;
}

.p-home-about__txt{
  padding: 90px 15% 90px 45px;
  font-size:1.6rem;
  margin: -40px 0 0;
}

.p-home-about .c-btn{
    position: absolute;
    transform: translateY(-50%);
    left: 45px;
}

.p-home-about .c-section{
    width: 100%;
    padding: 0 0 42px;
    overflow: visible;
}

.p-home-about .c-section__grid__item-left:before{
    content: "";
    background-image:repeating-linear-gradient(-45deg,#6E6457, #6E6457 4px,transparent 0, transparent 8px);
    width: 200px;
    height: 200px;
    position: absolute;
    z-index: 1;
    left: -5rem;
    top: 0;
}

.p-home-about .c-section__grid__item-left.is-state-animation:before{
    transform: scale3d(0, 0, 0);
    transition: transform .5s cubic-bezier(.19, 1, .22, 1);
}

.p-home-about .c-section__grid__item-left.is-state-animation.is-animated:before{
  transform:scale3d(1, 1, 1);
}

.p-home-menu{
  margin-top:108px;
}

.p-home-menu__img__bg__container{
  overflow: hidden;
}

.p-home-menu__img__bg{
  transform: scale(1);
  transition: transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s;
}
.p-home-menu__link:hover .p-home-menu__img__bg{
  transform: scale(1.03);
}

.p-home-menu .c-section{
  width: 100%;
  z-index: 0;
  padding: 0;
}

.p-home-menu .c-leftbg-bottom:after{
    height: 100%;
}

.p-home-menu .c-leftbg-bottom{
  padding: 30px 0 30px 15vw;
}

.p-home-menu__ttl{
  margin:30px 0 30px 15vw;
  font-size:2.4rem;
  display: block;
  padding-left:40px;
  position: relative;
  width: 70vw;
}

.p-home-menu__ttl:before{
  content: "";
  height: 100%;
  display: block;
  position: absolute;
  border-left: 20px solid #75AB67;
  top:0;
  left: 0;
}

.p-home-menu .c-articlesgrid-col2{
  justify-content: space-between;
}

.p-home-menu .c-articlesgrid-col2__item{
  position: relative;
  z-index: 3;
  margin-bottom: 70px;
}

.p-home-menu__img:before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(255,255,255,0) 70%, rgba(255,255,255,.5) 100%);
  background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,0) 70%,rgba(255,255,255,.5) 100%);
  background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,0) 70%,rgba(255,255,255,.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
  z-index: 1;
}

.p-home-menu__txt{
  padding: 3rem 7rem 3rem;
  background: #fff;
  line-height: 2.1;
}



.p-home-menu .c-btn-container{
  margin-left:15vw;
  position: relative;
}

.p-home-menu .c-btn{
  position: absolute;
  left: calc(50% - 175px);
  transform: translateY(-108px) translateY(-50%);
}

.p-home-special{
  margin-top: 202px;
}

.p-home-special .c-picture:before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(255,255,255,0) 70%, rgba(255,255,255,.5) 100%);
  background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,0) 70%,rgba(255,255,255,.5) 100%);
  background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,0) 70%,rgba(255,255,255,.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
  z-index: 1;
}

.p-home-special h4.c-section__ttl.is-state-animation{
  transition:opacity 1s cubic-bezier(0.39, 0.575, 0.565, 1);
  opacity:0;
}

.p-home-special h4.is-state-animation.is-animated{
  opacity:1;
}

.p-home-special__txt{
  padding: 4rem 7rem;
  background: #fff;
  line-height: 2.1;
  transition:transform 1s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.p-home-special__txt.is-state-animation{
  opacity: 0;
}

.p-home-special__txt.is-state-animation.is-animated{
  opacity: 1;
}

.p-home-special .c-btn{
  margin: 0 auto;
  transform: translateY(-50%);
}

.p-home-blog__ttl {
  font-family: Josefin Sans, serif;
  font-size: 5.6rem;
  letter-spacing: .05em;
  line-height: 1;
  padding-top: 24px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.p-home-p-blog__articles {
  position: relative;
  z-index: 0;
  margin-left: 15vw;
}

.p-home-p-blog__articles.is-state-animation {
  opacity: 0;
  transform:translate3d(0,-10%,0);
  transition: opacity 1.2s, transform .4s;
}

.p-home-p-blog__articles.is-state-animation.is-animated {
  opacity: 1;
  transform:translate3d(0,0,0);
}

.p-home-blog__btn{
  flex-basis: 22.6%;
  background-color: #c7ccc6;
  background-image:repeating-linear-gradient(-45deg,#6E6457, #6E6457 4px,transparent 0, transparent 8px);
  position: relative;
  overflow: hidden;
}

.p-home-blog__btn__link{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  font-size: 2.5rem;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
}

.p-home-blog__btn__txt{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  transition:all .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.p-home-blog__btn:hover .p-home-blog__btn__txt{
  width: 100%;
}

.p-home-blog__btn__bg{
  transition:transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.p-home-blog__btn:hover .p-home-blog__btn__bg{
  transform:translate3d(20%,0,0) scale3d(1.5, 1, 1);
}

.p-home-blog__btn-point{
    width: 8rem;
    height: auto;
}

.p-home-blog__btn__bg{
  position: absolute;
  top: calc(50% - 15vw);
  right: 0;
  z-index: 1;
  width: 30vw;
  height: 30vw;
}

.p-home-blog__btn-point-circle{
  fill: transparent;
  stroke:#ffffff;
  stroke-width: 2;
}

.p-home-blog__btn-point-arrow01,
.p-home-blog__btn-point-arrow02{
  fill:#ffffff;
}

.p-home-blog__btn__bg__parts {
  fill: #4A414A;
  fill-rule: evenodd;
  transition:fill 3s cubic-bezier(.075, .82, .165, 1);
}
.p-home-blog__btn:hover .p-home-blog__btn__bg__parts{
  fill: #000000;
}

.p-home-sns .c-leftbg-bottom:after{
	height:70%;
}
.p-home-p-sns__articles {
  position: relative;
  z-index: 1;
/*   margin-left: 15vw; */
	padding: 5.5vw 0;
}

.p-home-p-sns__articles .c-articlesGrid--col2{
	display: flex;
  justify-content: space-between;
}

.p-home-p-sns__articles .c-articlesGrid--col2__block{
  position: relative;
  z-index: 3;
  margin-bottom: 0px;
	flex-basis: 48%;
}


/* ----- SUBPAGE ----- */

.p-page-headline {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8.5vw 5%;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.p-page-headline__ttl {
  font-size: 3.25vw;
  line-height: 1;
  position: relative;
  text-align: center;
  color: #fff;
}

.p-page-headline__ttl:before {
  background: #fff;
  content: '';
  display: inline-block;
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0.65vw;
  left: 0;
}

.p-page-headline__ttl:after {
  background: #fff;
  content: '';
  display: inline-block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom:0.45vw;
  left:0;
}

.p-page-headline__bg {
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  background-size: cover;
}



.p-page-headline__bg-body{
  background-image:url(../img/common/page-headline_texture.png);
  background-size:24px 24px;
  background-repeat: repeat;
  position: absolute;
  top:0;
  bottom:0;
  left: 0;
  right:0;
  z-index:1
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5) {
  .p-page-headline__bg-body{
    background-size: 12px 12px;
  }
}

/* ----- ABOUT ----- */

.p-about-concept{
  position: relative;
}

.p-about-concept .c-section{
  padding: 0;
}

.p-about-concept .c-section__grid--col2{
  padding-left: 15vw;
  display: flex;
}

.p-about-concept .c-section__ttl__txt{
  overflow: hidden;
  padding-right:5vw;
	min-height: 140px;
}

.p-about-concept .c-rotate__ttl .c-section__ttl__txt{
  padding-right:0;
  min-height: auto;
}

.p-about-concept .c-section__ttl__txt .is-jp{
  display: inline-block;
  font-size: 4rem;
  line-height: 2;
  background: #75AB67;
  padding: 0 3.5rem;
  margin-bottom: 1.5rem;
}
.p-about-concept .c-section__ttl__txt .u-sp{
	  margin-bottom: 1.5rem;
		display: inline-block;
}
.p-about-concept .c-section__ttl__txt .u-sp:last-child,
.p-about-concept .c-section__ttl__txt .is-jp:last-child{
  margin-bottom: 0;
}

.p-about-concept .c-section__ttl__txt.is-state-animation .is-jp{
  transition: transform .5s cubic-bezier(.33,.89,.59,.97);
  transform:translate3d(-100%, 0, 0);
}

.p-about-concept .c-section__ttl__txt.is-state-animation.is-animated .is-jp{
  transform:translate3d(0, 0, 0);
}

.p-about-concept__txt{
  background: #fff;
  padding: 100px 15% 60px 45px;
  font-size:1.6rem;
  margin: -50px 0 0;
}

.p-about-concept .c-btn{
    position: absolute;
    bottom: 0;
    left: 16.5vw;
}

.p-about-concept .c-section{
    width: 100%;
    padding-top: 0;
    margin-bottom:2.7vw;
}


.p-about-concept .c-section:last-child{
  margin-bottom:0;
}
.c-section__grid__item-left:before {
  background-image: repeating-linear-gradient(-45deg,#6E6457, #6E6457 4px,transparent 0, transparent 8px);
}
.p-about-concept .c-section__grid__item-left:before{
  content: "";
  width: 200px;
  height: 200px;
  position: absolute;
  z-index: 0;
  left: -5rem;
  top: 0;
}
.p-about-concept .c-section__grid__item-left:after{
	content: "";
  background: #ffffff;
	width: 100%;
  height: 200px;
  position: absolute;
  z-index: -1;
	top: 87px;
	left: 0;
}
.p-about-concept .c-section__grid__item-left.is-state-animation:before{
    transform: scale3d(0, 0, 0);
    transition: transform .5s cubic-bezier(.19, 1, .22, 1);
}

.p-about-concept .c-section__grid__item-left.is-state-animation.is-animated:before{
  transform:scale3d(1, 1, 1);
}

.p-about-commit .c-picture:before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(255,255,255,0) 70%, rgba(255,255,255,.5) 100%);
  background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,0) 70%,rgba(255,255,255,.5) 100%);
  background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,0) 70%,rgba(255,255,255,.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
  z-index: 1;
}

.p-about-commit__txt{
  padding: 4rem 7rem;
  background: #fff;
  font-size: 1.5rem;
  line-height: 2.1;
}


.p-about-commit .c-btn{
  margin: -52px auto 0;
}

.p-about-staff__inner{
  position: relative;
}

.p-about-staff__list__item{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
  background: #fff;
}

.p-about-staff__list__item.is-state-animation{
  opacity: 0;
  transform:translate3d(0,-10%,0);
  transition:opacity 1.2s,transform .4s;
}

.p-about-staff__list__item.is-state-animation.is-animated{
  opacity: 1;
  transform:translate3d(0,0,0);
}


.p-about-staff__list__item.is-desc-only{
  background: #fff;
}

.p-about-staff__list__item:last-child{
  margin-bottom: 0;
}

.p-about-staff__img{
  flex-basis:33%;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.p-about-staff__img:after{
    content: '';
    display: block;
    padding-top: 92.7%;
}

.p-about-staff__list__img{
  background-position: center top;
  background-size:cover;
  position: absolute;
  height: 100%;
  width: 100%;
}

.p-about-staff__list__txt{
  flex-basis: 67%;
}

.p-about-staff-profile{
  width: 100%;
  padding: 16px 32px;
  background-color: #EFEFEF;
  background-image:repeating-linear-gradient(-45deg,#fff, #fff 4px,transparent 0, transparent 8px);
}

.p-about-staff__list-status{
  color: #007531;
  font-size:1.5rem;
}

.p-about-staff__list-name{
  font-size:3rem;
  display:inline-block;
  margin-right:20px;
}

.p-about-staff__list-en{
  font-size:2rem;
  display: inline-block;
}

.p-about-staff__txt{
  padding: 32px;
}

/* ----- MENU ----- */
.p-menu__table__list{
  margin-top:20px;
}

.p-menu__table__ttl-sub{
  font-size: 1.5rem;
  padding-top: 20px;
  font-weight: normal;
  text-align: center;
}

.p-menu__img.c-picture__container::after{
    padding-top: 40.8%;
}

/* ----- SPECIAL ----- */

.p-special-plan__block{
  background:#fff;
  padding:40px 60px;
}

.p-special-plan__ttl{
  background: #75AB67;
  padding: 20px 25px;
  margin-bottom:20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.p-special__ttl{
  width: calc(85% - 20px);
  color: #fff;
}

.p-special__txt-lead{
  padding: 0 20px;
  margin-bottom:40px;
}

.p-special__txt{
  margin-left:20px;
  width: 15%;
  text-align: right;
}

.p-special_container:not(:last-child){
  margin-bottom:40px;
}
.p-special-plan__ttl__txt{
    margin-top: -70px;
}
.p-special-plan-intro{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
}

.p-special-plan-intro-left{
  width:47.5%;
}

.p-special-plan-intro-right.is-not-img{
  width:100%;
}

.p-special-plan-intro-right{
  width:49%;
}

.p-special-plan__table{
  border-top:#efefef 1px solid;
  margin-top:20px;
}

.p-special-plan__table-body{
  margin:20px 0;
}

.p-special-plan__table-body .c-pricetable__ttl{
    width: calc((100% / 5));
}

.p-special-plan__table-body .c-pricetable__desc{
  width:calc((100% / 5)*4 - 14px);
  text-align:left;
  margin-left: 14px;
}

.p-special-plan__table-body .c-priceTable__row{
  padding:0 20px 20px;
}



.p-special-plan-note{
  margin:20px 20px 0;
}


.p-special-form__ttl{
  margin: 0 100px;
}


/* ----- ACCESS ----- */

.p-access-desc{
  padding-top: 40px;
}

.p-access-desc__container{
  margin:0 60px;
}
.p-access-desc__ttl{
  flex-basis:30%;
}

.p-access-desc__txt{
  flex-basis:69%;
}

.p-access-gmap{
  margin: 0 60px 20px;
  height: auto;
}
.p-access-gmap:before{
  content: "";
  display:block;
  width: 100%;
  z-index: -1;
  padding-bottom: 50%;
}

/* ----- BLOG ----- */
.l-blog.c-section{
  padding:0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow: visible;
}

.l-blog-main{
  flex-basis:73%;
}

.l-blog__side{
  flex-basis:25%;
}

.p-blog__article{
  margin-bottom:50px;
}

.p-blog-archive__pager {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 0 2.4%;
}

.p-blog-archive__pager__item {
  height: 40px;
  width: 40px;
}

.p-blog-archive__pager__item:not(:last-child) {
  margin-right: 16px;
}

.p-blog-archive__pager__btn {
  border: 2px solid #fafafa;
  display: inline-block;
  height: 100%;
  position: relative;
  text-align: center;
  width: 100%;
}

.p-blog-archive__pager__btn.is-state-animation {
  border: none;
}

.p-blog-archive__pager__btn.is-state-animation::before,
.p-blog-archive__pager__btn.is-state-animation::after {
  background: #222;
  content: '';
  display: inline-block;
  height: 100%;
  position: absolute;
  top: 0;
  transform: scale3d(1, 0, 1);
  transition: background .5s cubic-bezier(.19, 1, .22, 1), transform .5s cubic-bezier(.19, 1, .22, 1);
  width: 2px;
  z-index: 1;
}

.p-blog-archive__pager__btn.is-state-animation::before {
  left: 0;
  transform-origin: top;
}

.p-blog-archive__pager__btn.is-state-animation::after {
  right: 0;
  transform-origin: bottom;
}

.p-blog-archive__pager__btn.is-state-animation.is-animated::before,
.p-blog-archive__pager__btn.is-state-animation.is-animated::after {
  transform: scale3d(1, 1, 1);
}

.p-blog-archive__pager__btn.is-state-animation.is-animated::before {
  transform-origin: bottom;
}

.p-blog-archive__pager__btn.is-state-animation.is-animated::after {
  transform-origin: top;
}

.p-blog-archive__pager__btn.is-state-animation.is-hover::before,
.p-blog-archive__pager__btn.is-state-animation.is-hover::after {
  background: #54a57f;
}

.p-blog-archive__pager__btnInner {
  display: inline-block;
  height: 100%;
  position: relative;
  transition: background .5s cubic-bezier(.19, 1, .22, 1);
  width: 100%;
}

.p-blog-archive__pager__btn.is-state-animation .p-blog-archive__pager__btnInner::before,
.p-blog-archive__pager__btn.is-state-animation .p-blog-archive__pager__btnInner::after {
  background: #222;
  content: '';
  display: inline-block;
  height: 2px;
  left: 0;
  position: absolute;
  transform: scale3d(0, 1, 1);
  transition: background .5s cubic-bezier(.19, 1, .22, 1), transform .5s cubic-bezier(.19, 1, .22, 1) .25s;
  width: 100%;
  z-index: 1;
}

.p-blog-archive__pager__btn.is-state-animation .p-blog-archive__pager__btnInner::before {
  top: 0;
  transform-origin: right;
}

.p-blog-archive__pager__btn.is-state-animation .p-blog-archive__pager__btnInner::after {
  bottom: 0;
  transform-origin: left;
}

.p-blog-archive__pager__btn.is-state-animation.is-animated .p-blog-archive__pager__btnInner::before,
.p-blog-archive__pager__btn.is-state-animation.is-animated .p-blog-archive__pager__btnInner::after {
  transform: scale3d(1, 1, 1);
}

.p-blog-archive__pager__btn.is-state-animation.is-animated .p-blog-archive__pager__btnInner::before {
  transform-origin: left;
}

.p-blog-archive__pager__btn.is-state-animation.is-animated .p-blog-archive__pager__btnInner::after {
  transform-origin: right;
}

.p-blog-archive__pager__btn.is-state-animation.is-hover .p-blog-archive__pager__btnInner {
  background: #54a57f;
}

.p-blog-archive__pager__btn.is-state-animation.is-hover .p-blog-archive__pager__btnInner::before,
.p-blog-archive__pager__btn.is-state-animation.is-hover .p-blog-archive__pager__btnInner::after {
  background: #54a57f;
}

.p-blog-archive__pager__txt {
  align-items: center;
  display: inline-flex;
  height: 100%;
  justify-content: center;
  letter-spacing: 0;
  position: relative;
  width: 100%;
}

.p-blog-archive__pager__btn.is-current .p-blog-archive__pager__txt {
  background: #222;
  color: #fff;
  transition: background 0s;
}

.p-blog-archive__pager__btn.is-state-animation .p-blog-archive__pager__txt {
  opacity: 0;
  transition: opacity .8s .6s;
}

.p-blog-archive__pager__btn.is-state-animation .p-blog-archive__pager__txt.is-animated {
  opacity: 1;
}

.p-blog-archive__pager__btn.is-state-animation.is-animated .p-blog-archive__pager__txt {
  opacity: 1;
}

.p-blog-single__pager {
  display: flex;
  justify-content: space-between;
  padding: 0 2.4%;
}

.p-blog-single__pager__item {
  flex-basis: 40%;
}

.p-blog-single__pager .c-btn {
  max-width: 100%;
}

.p-blog-single__ttl {
  border-bottom: 1px solid #222;
  font-size: 2.4rem;
  margin-bottom: 8px;
  padding-bottom: 8px;
}

.p-blog-single-meta {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.p-blog-single-meta__item:not(:last-child) {
  margin-right: 1em;
}

.p-blog-single-meta__date::before,
.p-blog-single-container .post-categories::before {
  color: #222;
  display: inline-block;
  font-family: 'Font Awesome 5 Free', sans-serif;
  font-weight: bold;
  margin-right: .5em;
}

.p-blog-single-meta__date::before {
  content: '\f017';

}

.p-blog-single-container .post-categories {
  display: flex;
  flex-wrap: wrap;
  padding-left: 1.5em;
}

.p-blog-single-container .post-categories::before {
  content: '\f07c';
  margin: 0 .3em 0 -1.5em;
}

.p-blog-single-container .post-categories li:not(:last-child) {
  margin-right: .5em;
}

.p-single-intro {
  line-height: 2;
}

.p-single-content {
  line-height: 2;
  margin-top: 64px;
}

.p-single-eyecatch {
  margin-bottom: 32px;
  overflow: hidden;
  position: relative;
}

.p-single-eyecatch::after {
  content: '';
  display: block;
  padding-top: 61.8%;
}

.p-single-eyecatch__img {
  font-family: 'object-fit: cover;', sans-serif;
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-single__btn{
  width: 100%;
}
.c-btn.p-single-articlenone:before{
  display: none;
}

.p-seo__link {
  margin-bottom: 32px;
  margin-top: 32px;
}

.p-seo__nav {
  background:#fff;
  padding: 40px;
  margin-top: 50px;
}

.p-seo__nav__ttl {
  background: #75AB67;
  letter-spacing: .1em;
  line-height: 1.5;
  margin-bottom: 16px;
  padding: 1em;
  text-align: center;
}

.p-seo__nav__table__item {
  padding: 1em 1em 1em 32px;
  position: relative;
}

.p-seo__nav__table__item::before {
  content: '\025c6';
  display: inline-block;
  left: .5em;
  position: absolute;
  top: 1em;
}

.p-seo__nav__table__item-child {
  margin-left: 32px;
  padding-left: 32px;
  position: relative;
}

.p-seo__nav__table__item-child::before {
  background: #222;
  content: '';
  display: inline-block;
  height: 2px;
  left: 0;
  position: absolute;
  top: calc(1em - 1px);
  width: 12px;
}

.p-seo-content__container {
  margin-top: 48px;
}

.p-seo-content__ttl {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  text-align: left;
  padding-bottom: 16px;
  border-bottom: 2px solid #75AB67;
  margin-bottom: 20px;
}

.p-seo-content__block {
  margin-top: 48px;
}

.p-seo-content__block__ttl {
  background:#B5BBBD;
  font-weight: bold;
  padding: 1em;
  font-size: 1.7rem;
}

.p-seo-content-eyecatch {
  margin-top: 48px;
  overflow: hidden;
  position: relative;
}

.p-seo-content-eyecatch::after {
  content: '';
  display: block;
  padding-top: 61.8%;
}

.p-seo-content-eyecatchImg {
  font-family: 'object-fit: cover;', sans-serif;
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-seo-content__txt {
  margin-top: 48px;
}

.p-seo-content__txt p:not(:first-of-type) {
  margin-top: 1em;
}

.p-blog-sidegadget.is-state-animation {
  opacity: 0;
  transition: opacity 1.2s;
}

.p-blog-sidegadget.is-state-animation.is-animated {
  opacity: 1;
}

.p-blog-sidegadget:not(:first-child) {
  margin-top: 56px;
}

.p-blog-sidegadget__ttl {
  background: #75AB67;
  line-height: 1.5;
  padding: 1em;
}

.p-blog-sidegadget__item {
  border-bottom: 1px solid #222;
}

.p-blog-sidegadget__link {
  display: block;
  padding: 1em;
  transition: transform .5s cubic-bezier(.19, 1, .22, 1);
}

.p-blog-sidegadget__link.is-hover {
  transform: translate3d(4px, 0, 0);
}

.p-blog-sidegadget__date {
  display: block;
  font-family: Josefin Sans, serif;
}

.p-single-content &gt; [class|='wp'] {
    margin: 40px 0 0;
}

.p-single-content h2:not([class]) {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 40px;
  position: relative;
  text-align: left;
  padding-bottom:16px;
  border-bottom:2px solid #75AB67;
  margin-bottom:20px;
}

.p-single-content h3:not([class]) {
  background:#B5BBBD;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 40px;
  padding: 1.2em;
}
.p-single-content h4:not([class]) {
  border-left: 4px solid #75AB67;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 40px;
  padding: .5em 0 .5em 1em;
}
.p-single-content &gt; ol {
  counter-reset: order 0;
  margin: 40px 0 0;
  padding-left: 1em;
}
.p-single-content &gt; ol &gt; li {
  display: flex;
  line-height: 1.5;
}
.p-single-content &gt; ol &gt; li + li {
  margin-top: 1em;
}
.p-single-content &gt; ol &gt; li::before {
  align-self: center;
  color: #54a57f;
  content: counter(order,decimal-leading-zero) "";
  counter-increment: order 1;
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  margin-right: 1em;
}
.p-single-content &gt; ul:not(.wp-block-gallery) {
  margin: 40px 0 0;
  padding-left: 1em;
}
.p-single-content &gt; ul:not(.wp-block-gallery) &gt; li {
  display: flex;
  line-height: 1.5;
}
.p-single-content &gt; ul:not(.wp-block-gallery) &gt; li + li {
  margin-top: 1em;
}
.p-single-content &gt; ul:not(.wp-block-gallery) &gt; li::before {
  align-self: center;
  background:#54a57f;
  content: '';
  display: inline-block;
  height: 6px;
  margin-right: 1em;
  transform: rotate(45deg);
  width: 6px;
}
.p-single-content b:not([class]), .p-single-content em:not([class]), .p-single-content strong:not([class]) {
  background: linear-gradient(transparent 55%, rgba(84, 165, 127, 0.5) 45%);
}
.p-single-content .wp-block-image {
  position: relative;
}
.p-single-content .wp-block-image figcaption {
  background:#75AB67;
  color: #222;
  font-size: 1.4rem;
  left: 0;
  line-height: 1.5;
  margin: 0;
  padding: 1em 1.5em;
  position: absolute;
  top: 0;
  z-index: 1;
}

.p-single-content .wp-block-separator.is-style-dots:before{
  color:#222;
}
.p-single-content .wp-block-quote {
  border: 2px solid #75AB67;
  border-radius: 4px;
  padding: 2em;
  background-image:repeating-linear-gradient(-45deg,#B5BBBD, #B5BBBD 4px,transparent 0, transparent 8px);
}
.p-single-content .wp-block-audio figcaption {
  color: #222;
  font-size: 1em;
  margin: 1em 0 0;
}
.p-single-content .wp-block-file .wp-block-file__button {
  background: #222;
  display: inline-block;
  font-family: 'Josefin Sans', '游ゴシック体', YuGothic, '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  padding: .5em 1em .2em;
}
.p-single-content .wp-block-code {
  background: #333;
  border: 0;
  border-radius: 0;
  color: #fff;
  padding: 2em;
}
.p-single-content .wp-block-pullquote {
  border-top:2px solid #75AB67;
  border-bottom:2px solid #75AB67;
  color: #555555;
}
.p-single-content .wp-block-pullquote cite {
  color: #75AB67;
}
.p-single-content .wp-block-button__link {
  background: #222;
  font-family: 'Josefin Sans', '游ゴシック体', YuGothic, '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  padding: 12px 24px 6px;
}
.p-single-content .wp-block-separator {
  border-color: #75AB67;;
  margin-left: auto;
  margin-right: auto;
}
.p-single-content .wp-block-calendar caption {
  color: #555555;
}
.p-single-content .wp-block-calendar th {
  background: #75AB67;
  color: #ffffff;
}
.p-single-content .wp-block-calendar td {
  color: #555555;
}
.p-single-content .wp-block-embed-youtube .wp-block-embed__wrapper {
  overflow: hidden;
  position: relative;
}
.p-single-content .wp-block-embed-youtube .wp-block-embed__wrapper::after {
  content: '';
  display: block;
  padding-top: 56.25%;
}
.p-single-content .wp-block-embed-youtube .wp-block-embed__wrapper iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-single-sns{
  margin-top:32px;
  padding:32px;
  background-image:repeating-linear-gradient(-45deg,#B5BBBD, #B5BBBD 4px,transparent 0, transparent 8px);
  text-align: center;
}

.p-single-sns__ttl{
  line-height: 1.2;
  margin-bottom:32px;
}

.p-single-sns__ttl .is-en{
  font-size:4rem;
}

.p-single-sns__ttl .is-jp{
  font-size:1.6rem;
}
.p-single-back{
  margin:32px auto 0;
}


.wp-block-separator:not(.is-style-wide):not(.is-style-dots){
    max-width: 100px;
}

.wp-block-table {
    width: 100%;
    min-width: 240px;
    border-collapse: collapse;
}

.wp-block-table td, .wp-block-table th {
    padding: .5em;
    border: 1px solid #222;
    word-break: break-all;
}

.wp-block-calendar tbody td, .wp-block-calendar th{
  border-color:#75AB67;
}

.pager{
  margin-top:80px;
}

.wp-block-audio audio{
    min-width: 280px;
}


/* ----- CONTACT ----- */
.p-contact-success.p-contact{
  padding-bottom:30px;
}

.p-contact__txt {
  width: 60vw;
  padding-top:30px;
  margin: 0 auto 30px;
  text-align: center;
  position: relative;
  z-index: 5;
}

.p-contact__txt p:not(:last-child) {
  margin-bottom: 32px;
}
.p-contact_success__btn{
  margin: 0 auto;
  letter-spacing: -0.05rem;
}

.c-leftbg-bottom.p-contact-success{
  padding-bottom: 30px;
}

.c-leftbg-bottom.p-contact-success:after{
  content: none;
}

.p-contact-success .p-contact__txt{
  padding-bottom:30px;
}


.p-contact_container:after{
  height:100%;

}

.p-contact-form{
  background:#fff;
  padding:50px 100px 0;
  margin:0 100px;
}


.p-contact-form input[type='checkbox'],
.p-contact-form input[type='radio'] {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
}

.p-contact-form input[type='submit'] {
  color: #fff;
}

.p-contact-form label {
  cursor: pointer;
  display: inline-block;
  position: relative;
}

.p-contact-form .error {
  color: #f3798f;
  font-weight: bold;
  margin-top: .5em;
}

.p-contact-form__item:not(:last-child) {
  margin-bottom: 32px;
}

.p-contact-form__ttl {
  line-height: 2;
  margin-bottom: 16px;
}

.p-contact-form__val{
  background: #007531;
  display: inline-block;
  margin-right: .8em;
  padding: 0 .8em;
  color:#fff;
}

.p-contact-form__val.is-any {
  background: #ccc;
}

.p-contact-form__schedule{
  width:100%;
  border:1px solid #ccc;
  padding: .5em;
  border-radius: 6px;
}

.p-contact-form__select{
  width:100%;
  border:1px solid #ccc;
  padding: .5em;
  border-radius: 6px;
  position: relative;
  -webkit-appearance: menulist;
}

.p-contact-form__select-parent{
  position: relative;
}

.mw_wp_form_preview .p-contact-form__select-parent:before,
.mw_wp_form_preview .p-contact-form__select-parent:after{
  display: none;
}

.p-contact-form__txtarea {
  height: 320px;
  resize: vertical;
}

.p-contact-form__txt,
.p-contact-form__txtarea {
  color: #222;
  padding: .5em;
  width: 100%;
  border:1px solid #ccc;
}

.p-contact-form__txt:focus,
.p-contact-form__txtarea:focus {
  box-shadow: inset 0 0 0 2px #54a57f;
  outline: 0;
}

.p-contact-form-consent {
  margin-bottom: 20px;
  text-align: center;
}

.p-contact-form__submit {
  align-items: center;
  display: flex;
  justify-content: center;
  transform:translateY(50%);
}

.p-contact-form__submit .c-btn {
  max-width: 100%;
}

.p-contact-form__submit__item {
  /* flex-basis: 48%; */
  width: 48%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mw_wp_form_input .p-contact-form__submit__item {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mw_wp_form_confirm .p-contact-form__submit__item:not(:first-child) {
  margin-left: 4%;
}

.mw_wp_form_confirm .p-contact-form__submit{
  margin-top:64px;
}

.mw_wp_form_input .p-contact-form__submit__item.is-back {
  display: none;
}

.mw_wp_form_input .contact__lead--confirm, .mw_wp_form_confirm .contact__lead--input{
  display: none;
}

.mw_wp_form_send_error{
  width: 60vw;
  padding: 30px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 5;
}

.p-contact-form .mwform-checkbox-field-text {
  display: inline-block;
  line-height: 1.5;
  padding-left: 40px;
  position: relative;
  font-weight: 800;
}

.p-contact-form .mwform-checkbox-field-text::before,
.p-contact-form .mwform-checkbox-field-text::after {
  content: '';
  display: inline-block;
  position: absolute;
}

.p-contact-form .mwform-checkbox-field-text::before {
  border: 2px solid #ddd;
  border-radius: 0;
  height: 24px;
  left: 0;
  top: calc(50% - 12px);
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1), transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 24px;
}

.p-contact-form .mwform-checkbox-field-text::after {
  border-bottom: 2px solid transparent;
  border-right: 2px solid transparent;
  height: 16px;
  left: 8px;
  opacity: 0;
  top: calc(50% - 10px);
  transform: rotate(-225deg);
  transition: border-color 0.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1), transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 8px;
}

.p-contact-form .mwform-radio-field {
  display: inline-block;
  padding-right: 16px;
}

.p-contact-form .mwform-radio-field-text {
  display: inline-block;
  line-height: 1.5;
  padding-left: 32px;
  position: relative;
}

.p-contact-form .mwform-radio-field-text::before,
.p-contact-form .mwform-radio-field-text::after {
  border-radius: 50%;
  content: '';
  display: inline-block;
  position: absolute;
}

.p-contact-form .mwform-radio-field-text::before {
  border: 1px solid #c2c2c2;
  height: 24px;
  left: 0;
  top: calc(50% - 12px);
  width: 24px;
}

.p-contact-form .mwform-radio-field-text::after {
  background: #75AB67;
  height: 12px;
  left: 6px;
  opacity: 0;
  top: calc(50% - 6px);
  transform: scale3d(0.8, 0.8, 1);
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1), transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 12px;
}

input[type='radio']:checked + .mwform-radio-field-text::after {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

input:checked + .mwform-checkbox-field-text::before {
  opacity: 0;
  transform: scale3d(2, 2, 1) rotate(45deg);
}

input:checked + .mwform-checkbox-field-text::after {
  border-color: #222;
  opacity: 1;
  transform: rotate(45deg);
}

.mw_wp_form_confirm .is-confirm-none {
  display: none;
}

.p-privacy {
  font-size: 1.4rem;
  height: 360px;
  margin:50px 0 64px;
  overflow-y: auto;
  padding: 16px;
  background:#c7ccc6;
}

.p-privacy::-webkit-scrollbar {
  background: rgba(250, 250, 250, 0.1);
  border-radius: 0;
  overflow: hidden;
  width: 4px;
}

.p-privacy::-webkit-scrollbar-button {
  display: none;
}

.p-privacy::-webkit-scrollbar-thumb {
  background: #54a57f;
  border-radius: 0;
  overflow: hidden;
}

.p-privacy__ttl {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 24px;
  text-align: center;
}

.p-privacy__txt {
  margin-bottom: 32px;
	text-align: center;
}

.p-privacy__list__item:not(:last-child) {
  margin-bottom: 32px;
}

.p-privacy__list__ttl {
  border-bottom: 2px solid #ddd;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 16px;
  padding-bottom: 16px;
}

.p-privacy-order {
  counter-reset: order 0;
}

.p-privacy-order__item {
  padding-left: 32px;
  position: relative;
}

.p-privacy-order__item::before {
  content: counter(order) ".";
  counter-increment: order 1;
  display: inline-block;
  left: 0;
  position: absolute;
  top: 0;
}

.c-privacy__order.is-brackets .p-privacy-order__item::before {
  content: "(" counter(order) ")";
}

.c-privacy__order.is-child .p-privacy-order__item::before {
  content: counter(order, lower-roman) "";
}

.p-privacy-order__item:not(:last-child) {
  margin-bottom: 16px;
}

.p-privacy-order__txt {
  margin-bottom: 16px;
}

/* ----- 404 ----- */
.p-404__btn{
  margin: 0 auto;
  letter-spacing: -0.05rem;
}

@media screen and (max-width: 1766px) {
  .mw_wp_form_confirm .p-contact-form__submit .c-btn{
    width:100%;
  }
  .mw_wp_form_confirm .p-contact-form__submit__item input{
    padding: 15px 55px;
  }
  .mw_wp_form_confirm .p-contact-form__submit__item .c-btn-arrow{
    height: 30%;
    left: 65%;
    top: calc(50% - 15%);
  }
  .mw_wp_form_confirm .p-contact-form__submit__item .c-btn-arrow.c-btn-arrow-inversion{
    left:auto;
    right: 65%;
  }
}


@media screen and (max-width: 1366px) {
  body{
    font-size:1.4rem;
  }
  .p-home-blog__btn-point {
    width: 5vw;
  }
  .l-main{
    margin-top: 80px;
  }
  .p-page-headline{
    padding:150px 5%;
  }
  .p-page-headline__ttl{
    font-size: 5vw;
  }
  .p-page-headline__ttl:before{
    bottom: 0.9vw;
  }

  .p-page-headline__ttl:after{
    bottom: 0.6vw;
  }


  .p-global-header {
    align-items: center;
    background: rgba(255, 255, 255, .9);
    display: flex;
    height: 80px;
    justify-content: space-between;
    left: 0;
    padding: 0 0 0 2%;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
  }

  .p-contact-form__submit__item{
    left: 65%;
    top: calc(50% - 10px);
  }

}

@media screen and (max-width: 1199px) {
  .slick-slider.sp{
    display: block !important;
  }
  .slick-slider.pc{
    display: none !important;
  }
  .p-burger__icon {
    display: inline-block;
  }

  .is-appeared .p-global-header {
    -webkit-animation: none;
    animation: none;
  }

  .is-leaved .p-global-header {
    -webkit-animation: none;
    animation: none;
  }

  .p-global-header__logo {
    height: 56px;
    margin: 0;
    width: auto;
  }

  .p-global-header__logo__link {
    align-items: center;
    display: inline-flex;
    height: 100%;
  }

  .p-global-header__logo__img {
    height: 100%;
    width: auto;
  }

  .p-gnav {
    display: none;
  }

  .l-main{
    padding-bottom:60px;
  }

  .l-main:before,
  .l-main:after{
    display: none;
  }

  .p-home-info{
    padding-right: 0;
    max-width: 90vw;
    margin-top:-117px;
    flex-wrap: wrap;
  }

  .p-home-info .p-home-info__ttl{
    flex-basis: 100%;
    padding: 18px;
    margin-right:0;
  }
  .p-home-info .p-home-info__articles{
    margin:1.6rem;
    flex-basis: 100%;
  }
  .p-home-about .c-section{
    padding: 0 0 25px;
  }

  .p-home-about__container:not(:last-child),
  .p-home-menu .c-section:not(:last-child){
    margin-bottom:122px;
  }

  .p-home-menu, .p-home-blog, .p-home-sns{
    margin-top: 122px;
  }

  .p-home-special{
    margin-top: 147px;
  }

  .p-home-info .c-btn{
    margin: 0 auto 16px;
    flex-basis:60vw;
  }

  .p-home-about .c-rotate__ttl .c-section__ttl__txt{
    top:auto;
  }

  .p-home-about p.c-rotate__ttl,
  .p-home-menu p.c-rotate__ttl,
  .p-home-special p.c-rotate__ttl{
    margin-top:0;
  }

  .p-home-menu:before{
    top: calc(9.5vw);
    height: calc(100% - 9.5vw);
  }

  .p-home-about .c-section__grid--col2{
    padding-left: 5vw;
    z-index:-1;
    position: relative;
  }

  .p-home-about .c-section__ttl__txt {
    top: -40px;
  }

  .p-home-about .p-home-about__txt{
    margin:0;
    padding: 0 16px 48px;
    font-size:1.6rem;
  }
  .p-home-about .c-btn{
    left: calc(50% - 35vw);
  }

  .p-home-about .c-section__ttl__txt .is-jp{
    font-size:4rem;
  }
  .p-home-about .c-section__grid__item-left:before{
    top: -9vw;
    left: -5vw;
  }
  .p-home-menu .c-section{
    overflow: initial;
  }

  .p-home-menu .c-leftbg-bottom{
      padding: 16px 16px 0;
  }

  .p-home-menu__ttl{
    margin: 0 0 0 16px;
    padding: 16px 32px;
    width: calc(100% - 16px);
  }
  .p-home-menu__ttl:before{
    height: calc(100% - 32px);
    top: 16px;
  }
  .p-home-menu .c-articlesgrid-col2{
    padding: 16px 16px 70px;
  }
  .p-home-menu .c-articlesgrid-col2__item:nth-last-child(-n+2){
    margin-bottom:0;
  }

  .p-home-menu .c-articlesgrid-col2__item{
    margin-bottom: 32px;
  }
  .p-home-menu .c-btn-container{
    position: static;
    margin-left: 0;
  }
  .p-home-menu .c-btn{
    left: calc(50% - 35vw);
    transform: translateY(-122px) translateY(-50%);
  }
  .p-home-special .c-section{
    width: 100%;
    padding: 50px 16px 70px;
  }
  .p-home-special .c-rightBg:after{
    height: calc(80% - 6.25vw);
  }
  .p-home-p-blog__articles{
    padding: 0 16px;
    margin: 0;
  }
  .p-home-blog__btn{
    flex-basis: 48%;
  }
  .p-home-blog__btn__bg{
    top: calc(50% - 25vw);
    width: 50vw;
    height: 50vw;
  }
  .p-home-blog__btn-point{
    width:6vw;
  }

	.p-home-p-sns__articles {
/* 		margin-left: 16px; */
		padding-bottom:0;
	}
	.p-home-p-sns__articles .c-articlesGrid--col2 {
		margin-right:16px;
		flex-direction: column;
	}
	.p-home-p-sns__articles .c-articlesGrid--col2 .c-articlesGrid--col2__block{
    flex-basis: 48%;
    margin-bottom: 32px;
	}

  .p-grobal-footer{
    width: 90vw;
  }
  .p-grobal-footer-contact__container{
    width: 90vw;
  }

  .p-gnav-sp.is-active .p-gnav-sp__item{
    font-size:2.4rem;
  }

  .p-page-headline{
    padding: 13vw 5%;
  }

  .p-page-headline__ttl {
    font-size: 6vw;
  }
  .p-page-headline__ttl:before{
    bottom:1.3vw;
  }
  .p-page-headline__ttl:after{
    bottom:0.8vw;
  }

  .p-about-concept .c-section{
    padding-bottom: 0;
		margin-bottom: 40px;
  }
  .p-about-concept .c-section__grid--col2{
    padding:0 0 0 5vw;
    display: flex;
  }
  .p-about-concept .c-section__grid__item-left{
    order:2;
    flex-basis:100%;
    margin-top: -64px;
    background: #fff;
  }
  .p-about-concept .c-section__ttl__txt{
    margin-top: -40px;
  }

  .p-about-concept .c-section__ttl__txt .is-jp{
    font-size: 4rem;
  }

  .p-about-concept .c-section__grid__item-left:before{
    top: -96px;
    left: -5vw;
  }

  .p-about-concept__txt{
    margin:0;
    padding: 32px 16px 32px;
    font-size:1.6rem;
  }

  .p-about-concept .c-section__grid__item-right{
    order:1;
    flex-basis:100%;
    z-index: -1;
    position: static;
		margin-bottom: 0;
	}
  .p-about-commit__inner:before{
    top: calc(6.25vw + 14px);
    width: 100%;
    height: calc(100% - 6.25vw - 14px);
  }
  .p-about-commit__inner:after{
    width: 100%;
  }
  .p-about-staff-profile{
    padding:16px;
  }
  .p-about-staff__inner:before {
      width: 100%;
      top: calc(6.25vw + 14px);
      height: calc(100% - 6.25vw - 14px);
  }
  .p-about-staff__inner:after{
    width: 100%;
    height: 90%;
  }
  .p-about-staff__img{
    flex-basis:100%;
  }
  .p-about-staff__img img{
    width:100%;
  }
  .p-about-staff__list__txt{
    flex-basis: 100%;
  }
  .p-about-staff__list-status{
    font-size:1.3rem;
  }
  .p-about-staff__list-name{
    font-size:2rem;
    margin-right: 11px;
  }
  .p-about-staff__list-en{
    font-size:1.3rem;
  }
  .p-about-staff__txt{
    padding: 16px;
  }
  .p-special-plan__block{
    padding:20px 30px;
  }
  .p-contact-form__table{
    padding: 50px 50px 85px;
  }

  .p-special-plan__ttl__txt{
    margin-top: -55px;
  }
  .p-special-plan-note{
    margin:0;
  }

  .p-special-form__ttl{
    margin: 0;
  }

  .l-blog-main{
    flex-basis:100%;
    margin-bottom:50px;
    padding:0 16px;
  }

  .l-blog__side{
    flex-basis:100%;
  }
  .p-access-desc__container{
    margin:0 24px;
  }
  .p-single__container{
    margin-top:40px;
  }
  .p-contact__txt{
    width: 100%;
    padding:30px 16px 0;
  }
  .p-contact-form{
    padding:50px 50px 0;
    margin:0;
  }
  .p-contact-form__table{
    padding:0;
  }
  .p-contact-form__select-parent:before {
    top: 10%;
  }
  .p-contact-form__select-parent:after {
    bottom: 10%;
  }
  .p-contact-form__submit__item__container{
    width:100%;
  }
  .p-contact-form__submit__item__container .c-btn-arrow{
    left:90%;
    height:30%;
    top: calc(50% - 15%);
  }

  .mw_wp_form_preview .p-contact-form__submit__item__container .c-btn-arrow{
    left: 78%;
  }

  .mw_wp_form_preview .p-contact-form__submit__item .c-btn{
    width:100%;
  }
  .p-single-sns__ttl .is-en{
    font-size:3rem;
  }
  .p-privacy{
    margin-bottom:32px;
  }
  .p-contact-form-consent{
    margin-bottom: 32px;
  }
  .mw_wp_form_confirm .p-contact-form__submit__item .c-btn-arrow.c-btn-arrow-inversion{
    left:auto;
    right: 78%;
  }

  .c-leftbg-top.p-contact-error:before{
    width: 100%;
    height: 100%;
    top: 0;
  }
}

@media screen and (max-width: 991px) {

  .l-main{
    margin-top:60px;
  }

  .l-contact {
    margin-top: 64px;
  }

  .l-blog-main {
    margin-bottom: 40px;
  }

  .p-global-header {
    height: 60px;
  }

  .p-global-header__logo {
    height: 47px;
  }

  .p-grobal-footer__address__ttl {
    margin-bottom: 24px;
  }

  .p-grobal-footer-contact {
    padding: 64px 5% 0;
  }
  .p-grobal-footer + .p-grobal-footer-contact{
	padding: 0px 5%;
  }
  .p-grobal-footer-contact__container {
    display: block;
    margin-top: 0;
    padding: 5%;
  }

  .p-grobal-footer-contact__block{
    width: 100%;
  }

  .p-grobal-footer-contact__txt + .p-grobal-footer-contact__ttl {
    margin-top: 24px;
  }

  .p-grobal-footer-contact__block:not(:last-child){
    margin-bottom:24px;
    margin-right:0;
  }

  .p-grobal-footer-contact__btn {
    height: 56px;
  }

  .p-grobal-footer-contact__btn.is-tel {
    font-size: 2rem;
  }

  .p-grobal-footer-sns{
    padding-top:30px;
  }

  .p-grobal-footer__copy {
    padding: 24px 5%;
  }

  .p-fnav__items {
    display: none;
  }

  .p-home-blog__ttl {
    font-size: 4.8rem;
  }

  .p-home-blog .c-btn {
    margin-top: 48px;
  }

  .p-home-mainvisual img{
    width:100%;
  }

  .p-home-mainvisual::after {
    padding-top: 100%;
  }
  .p-special-plan__table-body .c-pricetable__desc{
    width: 100%;
    margin-left: 0;
  }
  .p-blog__article{
    margin-bottom:32px;
  }
  .p-blog-archive__pager {
    padding: 0;
  }

  .p-blog-archive__pager__item:not(:last-child) {
    margin-right: 12px;
  }

  .p-blog-single__pager {
    padding: 0;
  }

  .post__ttl {
    font-size: 1.8rem;
  }

  .p-single-content {
    margin-top: 48px;
  }

  .p-seo__nav {
    padding: 5%;
  }

  .p-seo__nav__table__item {
    padding-left: 20px;
  }

  .p-seo__nav__table__item::before {
    left: 0;
  }

  .p-seo__nav__table__item-child {
    margin-left: 20px;
    padding-left: 20px;
  }

  .p-seo__nav__table__item-child::before {
    width: 8px;
  }

  .p-seo-content__ttl {
    font-size: 1.8rem;
  }

  .p-seo-content__block {
    margin-top: 32px;
  }

  .p-seo-content-eyecatch {
    margin-top: 32px;
  }

  .p-seo-content__txt {
    margin-top: 32px;
  }
  .p-contact-form .mwform-radio-field {
    display: block;
    padding: 0;
  }

  .p-contact-form .mwform-radio-field + .mwform-radio-field {
    margin: 16px 0 0;
  }

}

@media screen and (max-width: 767px) {
  .pc,
  .is-pc {
    display: none !important;
  }

  .sp,
  .is-sp {
    display: block !important;
  }

  .p-loader-opening-progress {
    width: 160px;
  }

  .p-global-header__logo {
    height: 47px;
  }
  .p-grobal-footer .c-headline-en {
    font-size:11vw;
  }
  .p-grobal-footer-contact__ttl{
    font-size:1.3rem;
  }
  .p-home-mainvisual{
    min-height: 70vh;
    max-height: 70vh;
  }
  .p-home-info{
    margin-top: -30px;
  }
  .p-grobal-footer__bnr {
    margin-top: 0;
    margin-bottom: 36px;
  }

  .p-grobal-footer__bnr__item {
    flex-basis: calc(100% / 3);
  }

  .p-notfound__txt {
    text-align: justify;
    text-justify: inter-ideograph;
  }
  .p-page-headline {
    padding: 40px 5%;
  }
  .p-page-headline__ttl{
    font-size:11vw;
  }
  .p-page-headline__ttl:before{
    bottom:2.2vw;
  }

  .p-page-headline__ttl:after{
    bottom:1.3vw;
  }

  .conceptBox__desc {
    padding: 7.5%;
  }

  .staffList__pic {
    flex-basis: 40%;
  }

  .staffList__desc {
    flex-basis: 60%;
    padding: 32px;
  }

  .p-blog-single-meta {
    display: block;
  }

  .p-seo__nav {
    padding: 7.5%;
  }

  .p-home-about__container:not(:last-child),
  .p-home-menu .c-section:not(:last-child){
    margin-bottom:60px;
  }

  .p-home-about{
    margin-top: 60px;
  }
  .p-home-menu{
    margin-top:60px;
  }
  .p-home-special{
    margin-top: 85px;
  }

  .p-home-blog{
    margin-top: 60px;
  }

  .p-home-sns{
    margin-top: 60px;
  }

  .p-home-about__ttl{
    min-height:auto;
  }
  .p-home-about .c-section__grid--col2{
    width:100%;
  }
  .p-home-about .c-section__ttl__txt .is-jp{
    font-size:2.5rem;
    padding: 0 1.5rem;
  }

  .p-home-about .c-section__ttl__txt {
    top: -25px;
  }

  .p-home-about .c-section__grid__item-left:before{
    width:100px;
    height: 100px;
    top: calc(-5vw - 25px);
    left: -5vw;
  }

  .p-home-about .p-home-about__txt{
    font-size:1.4rem;
    padding: 0 16px 48px;
  }

  .p-home-menu:before{
    top: 20vw;
    height: calc(100% - 20vw);
  }

  .p-home-menu__ttl{
    font-size:1.5rem;
  }

  .p-home-menu__ttlTxt.is-en{
    font-size:3rem;
    margin-top: -32px;
  }

  .p-home-menu__ttlTxt.is-jp{
    font-size:1.3rem;
    margin-top: 0;
  }

  .p-home-menu .c-articlesgrid-col2__item{
    margin-bottom: 16px;
    flex-basis:  100%;
  }

  .p-home-menu__txt{
    min-height: 5rem;
  }
  .p-home-menu__txt{
    padding:1.6rem;
  }

  .p-home-menu .c-articlesgrid-col2{
    padding-bottom:50px;
  }

  .p-home-menu .c-btn {
    transform: translateY(-60px) translateY(-50%);
  }

  .p-home-special .c-section{
    padding:35px 16px 50px;
  }

  .p-home-special__ttlText.is-en{
    font-size:3rem;
    margin-top: -32px;
  }

  .p-home-special__ttlText.is-jp{
    font-size:1.3rem;
    margin-top: 0;
  }

  .p-home-special__txt{
    padding:1.6rem;
  }
  .p-home-p-blog__articles{
    padding: 0 16px;
  }

  .p-home-blog__btn__link{
    width: 60vw;
    height: 50px;
    border-radius: 50px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size:1.8rem;
    background: #222;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    transition: transform .5s cubic-bezier(.075, .82, .165, 1);
  }
  .p-home-blog__btn__link:before{
    content: "";
    background: #007531;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: transform .8s cubic-bezier(.075, .82, .165, 1);
    transform: scale(0,1);
    transform-origin: left;
  }
  .p-home-blog__btn__txt {
    z-index: 2;
    font-size:1.4rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .p-home-blog__btn{
    background: none;
    flex-basis: 100%;
  }
  .p-home-blog__btn__txt .c-btn-arrow{
    height:30%;
    top:calc(50% - 15%);
  }

	.p-home-sns .c-section {
			padding: 35px 16px 50px;
	}

  .l-main{
    padding: 0 0 36px;
  }

  .p-grobal-footer__address__ttl{
    text-align: center;
    width: 240px;
    margin:0 auto;
  }

  .p-grobal-footer__address .p-grobal-footer__address__container{
    padding-left: 0;
    text-align: center;
    width: 100%;
    margin-bottom:36px;
  }

  .p-grobal-footer__address__txt-only{
    padding-left: 0;
    text-align: center;
    width: 100%;
    margin-bottom: 36px;
  }

  .p-grobal-footer-contact{
    padding:5% 5% 0;
  }

	.p-grobal-footer + .p-grobal-footer-contact{
		padding:0 5%;
		margin: 0px auto;
	}

  .p-grobal-footer__address .c-gmap {
    width: 100%;
    margin-bottom: 36px;
  }
  .p-fnav {
    margin-top: 5%;
  }

  .p-loader-opening:after,
  .p-loader-opening:before{
    height:100%;
  }
  .p-burger__icon{
    width: 16vw;
  }
  .p-gnav-sp.is-active .p-gnav-sp__item{
    font-size:2.4rem;
  }
  .p-about-concept .c-section{
    width: 100%;
  }
  .p-about-concept .c-section__ttl__txt{
    margin-top: -30px;
    min-height: 50px;
  }

  .p-about-concept .c-section__grid__item-left:before{
    width:100px;
    height: 100px;
    top: -57px;
    left: -5vw;
  }
  .p-about-concept .c-section__grid__item-left{
    margin-top: 0px;
  }
  .p-about-concept__txt{
    font-size:1.4rem;
  }
  .p-about-concept .c-section__ttl__txt .is-jp {
    font-size: 2.5rem;
    padding: 0 1.5rem;
  }


  .p-about-commit__inner:before{
    top: calc(14vw + 18px);
    height: calc(100% - 14vw - 18px);
  }
  .p-about-commit h4.c-section__ttl{
    padding: 1.5rem 0;
  }
  .p-about-commit__txt{
    padding:1.6rem;
    font-size:1.4rem;
  }
  .p-about-staff__inner:before{
    top: calc(14vw + 18px);
    height: calc(100% - 14vw - 18px);
  }
  .p-about-staff__list__item{
    margin-bottom: 16px;
  }

  .p-menu__table__ttl-sub{
    font-size: 1.3rem;
    padding: 9px 0 4px;
    text-align: left;
  }

  .p-special-plan__block{
    padding:16px;
  }
  .p-special__txt-lead{
    padding:0;
  }
  .p-special-plan__ttl {
    padding:16px;
    font-size: 1.5rem;
    letter-spacing: 0;
  }
  .p-special__ttl{
    width: 100%;
  }
  .p-special__txt{
    width: 100%;
  }
  .p-special-plan-intro{
    padding: 0;
  }
  .p-special-plan-intro-left{
    width: 100%;

  }
  .p-special-plan-intro-right{
    width: 100%;
    margin-top:16px;
  }
  .p-special-plan__table-body .c-priceTable__row{
    padding:0 0 16px;
  }
  .p-special-plan__table-body .c-pricetable__ttl{
    width:100%;
    font-weight: 800;
  }
  .p-special-plan__ttl__txt{
    margin-top: -36px;
  }
  .p-special-plan-note{
    margin:16px 0 0;
  }
  .p-access-gmap {
    margin: 0 16px 20px;
  }
  .p-access-desc__container{
    padding:0;
    margin: 20px 0 0;
    padding: 0 16px;
  }
  .p-access-desc__ttl{
    flex-basis: 100%;
  }
  .p-access-desc__txt{
    flex-basis: 100%;
  }

  .p-contact-form__select-parent:before,
  .p-contact-form__select-parent:after{
    font-size:1rem;
  }

  .p-contact-form__select-parent:before{
    top:15%;
  }

  .p-contact-form__select-parent:after{
    bottom:15%;
  }

  .p-contact-form{
    padding: 20px 25px 0;
  }

  .p-contact__txt{
    text-align: left;
  }


  .p-contact-form__txtarea{
    height: 160px;
  }

  .p-contact-form__submit{
    flex-wrap: wrap;
  }

  .p-contact-form__submit__item__container .c-btn-arrow{
    height:30%;
    left:auto;
  }
	.mw_wp_form .c-section {
		padding: 35px 16px 50px;
	}

  .mw_wp_form_confirm .p-contact-form__submit{
    flex-wrap: nowrap;
  }

  .mw_wp_form_preview .p-contact-form__submit{
    margin-bottom:0;
  }

  .mw_wp_form_preview .p-contact-form__submit__item__container .c-btn-arrow{
    left: 64%;
  }

  .mw_wp_form_confirm .p-contact-form__submit__item__container .c-btn-arrow.c-btn-arrow-inversion{
    right: 64%;
  }
  .c-leftbg-top.p-contact-error:before{
    width: 100%;
    height: 100%;
    top: 0;
  }

  .p-404__btn{
    width:100%;
  }
  .p-blog-single__pager__item{
    flex-basis: 48%;
  }
  .p-access-desc{
    padding-top:16px;
  }
}

@media screen and (max-width: 543px) {
  .p-grobal-footer__bnr {
    display: block;
    padding: 0 5%;
  }
}

@media screen and (max-width: 440px) {
  .mw_wp_form_confirm .p-contact-form__submit__item input{
    padding: 10px 30px;
  }
  .mw_wp_form_preview .p-contact-form__submit__item__container .c-btn-arrow {
    left: 56%;
    height: 20%;
    top: calc(50% - 10%);
  }
  .mw_wp_form_confirm .p-contact-form__submit__item__container .c-btn-arrow.c-btn-arrow-inversion{
    right:56%;
  }
  .p-home-menu::before {
    top: 21vw;
    height: calc(100% - 21vw);
  }
  .p-gnav-sp-contact__btn.is-tel::before{
    margin-right:5vw;
  }
}

/***** refusal *****/
.refusal {
  text-align: right;
  margin-top: 30px;
}
.refusal img {
  width: 100%;
  max-width: 300px;
  margin-left: auto;
}
@media screen and (max-width: 770px) {
  .refusal {
    margin-top: 15px;
  }
  .refusal img {
    max-width: 270px;
  }
}

img[src$="reloclub_logo.jpg"] ,
img[src$="fukuri_logo.jpg"] {
    max-width:200px;
}

@media screen and (max-width: 767px) {
	.p-privacy__txt {
		text-align: left;
	}
}

.new{
  display: inherit;
	color: #f1f1f1;
	font-size: 1.7rem;
	font-weight: 600;
}
.new-wrapper{
  text-align: center;
}

@media screen and (max-width: 767px) {
	.new{
		font-size: 1.5rem;
  }
}
.p-blog-sidegadget__ttl {
	color: #fff;
}
</pre></body></html>