@charset "UTF-8";
/*
    既存のCSSの保守性が悪すぎて。。。
    scssでモジュールわけしながら地道にFLOCSSのコードで浸食していく.

*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

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

select::-ms-expand {
  display: none;
}

/* リキッドレイアウト対応 */
html {
  font-size: 62.5%;
}

/* pcの電話番号発信対応 */
/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 681px) {
  a:hover {
    opacity: 0.7;
  }
}

body {
  font-size: 1.4rem;
  color: #333333;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
}

.l-inner {
  max-width: 96rem;
  margin: 0 auto;
}

.c-case-item {
  color: #333;
  text-align: left;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-bottom: 3rem;
  border-radius: 0.3rem;
  background-color: #fff;
  position: relative;
  -webkit-box-shadow: 0px 10px 30px -6px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 30px -6px rgba(0, 0, 0, 0.1);
  margin-top: 5rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 680px) {
  .c-case-item {
    margin-top: 0;
    margin-bottom: 3rem;
  }
}
.c-case-item:first-child {
  padding-right: 2rem;
}
.c-case-item__cat {
  display: inline-block;
  color: #A7AF9A;
  border: #A7AF9A solid 0.1rem;
  padding-left: 1.2rem;
  padding-right: 0.6rem;
  border-radius: 999px;
  direction: ltr;
}
@media screen and (max-width: 680px) {
  .c-case-item__cat {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 681px) {
  .c-case-item__title-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1281px) {
  .c-case-item__title-wrap--2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.c-case-item__title {
  font-size: 1.8rem;
  margin-top: 0.5rem;
  direction: ltr;
}
@media screen and (min-width: 681px) {
  .c-case-item__title {
    margin-top: 0;
    margin-left: 2rem;
  }
}
.c-case-item__images {
  position: relative;
}
@media screen and (min-width: 681px) {
  .c-case-item__images {
    margin-top: 1.5rem;
  }
}
.c-case-item__icon {
  width: 2.1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 681px) {
  .c-case-item__icon {
    -webkit-transform: translate(-50%, -50%) rotateZ(-90deg);
            transform: translate(-50%, -50%) rotateZ(-90deg);
  }
}
@media screen and (min-width: 681px) {
  .c-case-item__images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.c-case-item__images--2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.c-case-item__image {
  position: relative;
  cursor: pointer;
}
.c-case-item__image:first-child {
  margin-top: 0.5rem;
}
@media screen and (max-width: 680px) {
  .c-case-item__image:nth-child(2) {
    margin-top: 2.2rem;
  }
}
@media screen and (min-width: 681px) {
  .c-case-item__image:nth-child(2) {
    margin-left: 4rem;
  }
}
.c-case-item__image-text {
  padding: 0.6rem 2.2rem;
  color: #fff;
  background-color: #516037;
  position: absolute;
  bottom: 0;
  left: 0;
}
.c-case-item__detail {
  margin-top: 2rem;
  font-size: 1.4rem;
  direction: ltr;
}
.c-case-item__client {
  color: rgba(63, 58, 57, 0.8);
  margin-top: 0.5rem;
  font-size: 1.2rem;
  direction: ltr;
}
.c-case-item__up-icon {
  cursor: pointer;
  width: 4rem;
  position: absolute;
  bottom: 3rem;
  right: 2rem;
}
@media screen and (max-width: 680px) {
  .c-case-item__up-icon {
    bottom: 1.5rem;
  }
}

.c-step {
  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;
}
.c-step__num {
  border: 0.1rem rgba(62, 58, 57, 0.3) solid;
  display: inline-block;
  width: 5rem;
  height: 5rem;
  border-radius: 999px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Noto Sans Japanese", sans-serif;
  font-weight: bold;
  color: rgba(62, 58, 57, 0.3);
}
.c-step__num--active {
  color: #fff;
  background-color: #516037;
}
.c-step__title {
  font-weight: bold;
}

.c-form {
  color: #000;
  padding: 50px 20px;
}
.c-form input[type=text],
.c-form input[type=email],
.c-form input[type=tel],
.c-form select,
.c-form textarea {
  width: 100%;
  border: 0;
  font-size: 16px;
  padding-left: 1.6rem;
  padding-right: 1.6rem;
  margin-top: 1rem;
}
@media screen and (min-width: 681px) {
  .c-form input[type=text],
.c-form input[type=email],
.c-form input[type=tel],
.c-form select,
.c-form textarea {
    margin-top: 0;
  }
}
.c-form textarea {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
.c-form input[type=text],
.c-form input[type=email],
.c-form input[type=tel],
.c-form select {
  height: 5rem;
}
.c-form textarea {
  height: 14rem;
  resize: vertical;
}
@media screen and (max-width: 680px) {
  .c-form textarea {
    height: 20rem;
  }
}

.wpcf7-form-control-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 54rem;
          flex: 0 0 54rem;
}

.c-form__list {
  max-width: 82.5rem;
  margin: 0 auto;
}

@media screen and (min-width: 681px) {
  .c-form__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.c-form__item + .c-form__item {
  margin-top: 3rem;
}

@media screen and (min-width: 681px) {
  .c-form__item--check + .c-form__item--check {
    margin-top: 6.5rem;
  }
}

.c-form__item-title-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  line-height: 1em;
}

.c-form__item-title-wrap--check {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 34.5rem;
          flex: 0 0 34.5rem;
}

.c-form__item-title {
  color: #3F3A39;
}

.c-form__item-must {
  display: inline-block;
  background-color: #516037;
  color: #fff;
  padding: 0.6rem 0.8rem;
  margin-right: 2rem;
}

.c-form__item-must--not {
  background-color: rgba(201, 206, 194, 0.3);
}

.c-form__item-input-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 54rem;
          flex: 0 0 54rem;
}

.c-form__item-input,
.c-form__select-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 54rem;
          flex: 0 0 54rem;
  background-color: #fff;
}

.c-form__select-wrap {
  position: relative;
}
.c-form__select-wrap::before {
  content: "";
  position: absolute;
  z-index: 100;
  top: 50%;
  right: 2rem;
  border-style: solid;
  border-width: 1rem 0.5rem 0 0.5rem;
  border-color: #000000 transparent transparent transparent;
}
@media screen and (min-width: 681px) {
  .c-form__select-wrap::before {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.c-form__item-input {
  color: #757575;
}

.c-form__item-input::-webkit-input-placeholder {
  color: rgba(63, 58, 57, 0.3);
}

.c-form__item-input::-moz-placeholder {
  color: rgba(63, 58, 57, 0.3);
}

.c-form__item-input:-ms-input-placeholder {
  color: rgba(63, 58, 57, 0.3);
}

.c-form__item-input::-ms-input-placeholder {
  color: rgba(63, 58, 57, 0.3);
}

.c-form__item-input::placeholder {
  color: rgba(63, 58, 57, 0.3);
}

.c-form__item-text {
  font-size: 1.2rem;
  margin-top: 1.2rem;
}

.c-form__item-answer {
  color: #3F3A39;
}
@media screen and (max-width: 680px) {
  .c-form__item-answer {
    margin-top: 3rem;
    margin-left: 2rem;
  }
}

.c-form__privacy {
  overflow-y: scroll;
  overflow-x: hidden;
  height: 20rem;
  width: 100%;
  padding: 3rem 2rem;
  margin-top: 4.7rem;
  background-color: #fff;
  color: #3F3A39;
}

.c-form__footer {
  text-align: center;
}

.c-form__button-wrap {
  margin-top: 6rem;
  text-align: center;
}

.c-form__button {
  border: #ACAAAC solid 0.1rem;
  color: #ACAAAC;
  width: 100%;
  line-height: 6rem;
  max-width: 30rem;
  display: inline-block;
}

@media screen and (max-width: 680px) {
  .c-form__button + .c-form__button {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 681px) {
  .c-form__button + .c-form__button {
    margin-left: 2rem;
  }
}

.c-form__button--green {
  background-color: #516037;
  color: #fff;
}

.-active {
  color: #333;
  border: 0.1rem #333 solid;
}

/* チェックボックス01 */
.c-form__privacy-check {
  text-align: center;
  margin-top: 4rem;
}

input[type=checkbox] {
  display: none;
}

.checkbox01 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 50px;
  position: relative;
  width: auto;
  font-size: 1.2rem;
  line-height: 3rem;
  color: #3B4043;
}

.checkbox01::before {
  background: #fff;
  border: 1px solid #CDD6DD;
  content: "";
  display: block;
  height: 30px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 1.5rem;
  width: 30px;
}

.wpcf7-list-item-label::after {
  border-right: 2px solid #516037;
  border-bottom: 2px solid #516037;
  content: "";
  display: block;
  height: 15px;
  left: 16px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 20px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 8px;
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

/* これが無いとモーダルウィンドウ表示の際に余白が出る */
* {
  margin: 0;
  padding: 0;
}

/* モーダルウィンドウ表示中に記事本体を固定 */
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

/* モーダル全体(背景＋本体) */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 1000;
  /* モーダル背景 */
  /* モーダル本体 */
}
.modal__bg {
  position: absolute;
  height: 100vh;
  width: 100%;
  background: black;
}
.modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  overflow: scroll;
  /* はみ出た部分はスクロールさせる */
  background: white;
  max-width: 90%;
  border-radius: 3px;
}
@media screen and (min-width: 681px) {
  .modal__content {
    max-height: 80%;
    /* これが無いと「overflow:scroll」が利かない */
    max-width: 60%;
    /* これが無いと「overflow:scroll」が利かない */
    padding: 24px 25px;
  }
}
@media screen and (max-width: 680px) {
  .modal__content {
    width: 90%;
    max-height: 80%;
    padding: 10px 10px 27px;
  }
}
.modal__image {
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.modal__prev-btn {
  cursor: pointer;
  content: "";
  width: 5rem;
  height: 5rem;
  background-color: rgba(255, 255, 255, 0.9);
  position: absolute;
  top: 50%;
  left: -1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.modal__prev-btn::after {
  content: "";
  width: 1rem;
  height: 1rem;
  border-right: 0.1rem #333 solid;
  border-bottom: 0.1rem #333 solid;
  position: absolute;
  top: 2rem;
  left: 2rem;
  -webkit-transform: rotateZ(135deg);
          transform: rotateZ(135deg);
}
.modal__next-btn {
  cursor: pointer;
  content: "";
  width: 5rem;
  height: 5rem;
  background-color: rgba(255, 255, 255, 0.9);
  position: absolute;
  top: 50%;
  right: -1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.modal__next-btn::after {
  content: "";
  width: 1rem;
  height: 1rem;
  border-right: 0.1rem #333 solid;
  border-bottom: 0.1rem #333 solid;
  position: absolute;
  top: 2rem;
  left: 2rem;
  -webkit-transform: rotateZ(-45deg);
          transform: rotateZ(-45deg);
}
.modal__num {
  margin-top: 2rem;
  color: #C9CEC2;
  display: inline-block;
  padding-right: 2rem;
  border-right: solid #C9CEC2 0.1rem;
}
.modal__title {
  font-weight: normal;
  display: inline-block;
  margin-left: 2rem;
}
.modal__close-btn {
  position: absolute;
  bottom: 0;
  right: 1rem;
  font-size: 4rem;
  color: rgba(201, 206, 194, 0.7);
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fade-up-trigger {
  opacity: 0;
}

.fade-up {
  -webkit-animation: fadeInUp 1s forwards;
  animation: fadeInUp 1s forwards;
}

.p-header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100vw;
}
.p-header__inner {
  height: 6rem;
  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;
}
@media screen and (min-width: 681px) {
  .p-header__inner {
    height: 10rem;
  }
}
.p-header__logo-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 21.4rem;
          flex: 1 1 21.4rem;
  padding-left: 1.3rem;
}
@media screen and (min-width: 681px) {
  .p-header__logo-wrap {
    width: 29rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-header__logo {
  width: 21.4rem;
}
@media screen and (min-width: 681px) {
  .p-header__logo {
    width: 29rem;
  }
}
@media screen and (min-width: 681px) {
  .p-header__logo-text {
    font-size: 1.2rem;
    margin-left: 2rem;
  }
}
.p-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.p-header__nav-item {
  padding-left: 3rem;
  padding-right: 3rem;
}
.p-header__nav-item {
  position: relative;
}
.p-header__nav-item::after {
  content: "";
  background-image: url(../images/header-menu-separation.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  height: 100%;
  width: 2.3rem;
  position: absolute;
  top: 0;
  left: -0.65rem;
}
.p-header__nav-item-link {
  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;
  white-space: nowrap;
}
.p-header__nav-item-link svg .a {
  fill: #A7AF9A;
}
.p-header__nav-item--btn {
  padding-left: 5rem;
  padding-right: 5rem;
}
.p-header__nav-item--btn a {
  background-color: #516037;
  color: #fff;
  font-weight: normal;
  width: 16rem;
  height: 6rem;
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-header__nav-item--btn svg {
  margin-right: 1rem;
}
.p-header__nav-item--btn svg .a {
  fill: #fff;
}
.p-header__nav--sp {
  width: 6rem;
  height: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20rem;
          flex: 0 0 20rem;
}
@media screen and (max-width: 680px) {
  .p-header__nav--sp {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 12rem;
            flex: 0 0 12rem;
  }
}
.p-header__btn-wrap--sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-header__contact--sp {
  background-color: #A7AF9A;
  text-align: center;
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  line-height: 10rem;
}
@media screen and (max-width: 680px) {
  .p-header__contact--sp {
    line-height: 6rem;
  }
}
.p-header__contact--sp svg {
  width: 3rem;
}
@media screen and (max-width: 680px) {
  .p-header__contact--sp svg {
    width: 2rem;
  }
}
.p-header__e-mail-icon .a {
  fill: #fff;
}

#drawer-checkbox {
  display: none;
}

#drawer-icon {
  cursor: pointer;
  display: inline-block;
  height: 1.6rem;
  position: absolute;
  width: 3.9rem;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  z-index: 9999;
  top: 5rem;
  right: 5rem;
}
@media screen and (max-width: 680px) {
  #drawer-icon {
    top: 3.2rem;
    right: 3rem;
  }
}

#drawer-icon span {
  background: #fff;
  border-radius: 0.4rem;
  display: block;
  height: 0.2rem;
  left: 50%;
  margin: -8% 0 0 -42%;
  position: absolute;
  top: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 84%;
}

#drawer-icon span::before,
#drawer-icon span::after {
  -webkit-transform: rotate(0);
  background: #fff;
  border-radius: 0.4rem;
  content: "";
  display: block;
  height: 100%;
  left: 50%;
  margin: -8% 0 0 -50%;
  position: absolute;
  top: 50%;
  transform: rotate(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
}

#drawer-icon span::after {
  width: 70%;
  left: auto;
  right: 0;
}

.header__nav--sp-blue #drawer-icon span {
  background: #fff;
}

.header__nav--sp-blue #drawer-icon span::before,
.header__nav--sp-blue #drawer-icon span::after {
  background: #fff;
}

#drawer-icon span::before {
  margin-top: -24%;
}

#drawer-icon span::after {
  margin-top: 19%;
}

#drawer-content {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  height: 100%;
  padding-left: 4rem;
  background-color: #fff;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  width: 43rem;
}
@media screen and (max-width: 680px) {
  #drawer-content {
    width: 30rem;
  }
}

#drawer-close {
  display: none;
  position: fixed;
  z-index: 39;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.-open #drawer-icon span {
  background: rgba(51, 51, 51, 0);
}
.-open #drawer-icon span::before,
.-open #drawer-icon span::after {
  content: "";
  display: block;
  height: 100%;
  left: 50%;
  margin: -8% 0 0 -42%;
  position: absolute;
  top: 50%;
  width: 100%;
  background: #333333;
}
.-open #drawer-icon span::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.-open #drawer-icon span::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.-open #drawer-content {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-box-shadow: 0.6rem 0 2.5rem rgba(0, 0, 0, 0.16);
          box-shadow: 0.6rem 0 2.5rem rgba(0, 0, 0, 0.16);
}
.-open #drawer-close {
  display: block;
  opacity: 0.5;
}

.drawer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.drawer__nav li + li {
  margin-top: 5.8rem;
}

.drawer__nav-link {
  font-weight: bold;
  font-size: 1.8rem;
}

@media screen and (max-width: 680px) {
  .drawer__nav-tel {
    display: none;
  }
}

.drawer__nav-link--btn {
  background-color: #516037;
  color: #fff;
  font-weight: normal;
  padding: 2.3rem 6rem 2.3rem 5rem;
  font-size: 1.4rem;
}
.drawer__nav-link--btn svg {
  margin-right: 1rem;
}

.drawer__click {
  position: relative;
  display: inline-block;
  content: "";
  background-color: #516037;
  width: 10rem;
  height: 10rem;
}
@media screen and (max-width: 680px) {
  .drawer__click {
    width: 6rem;
    height: 6rem;
  }
}

.p-top {
  background-size: cover;
  background-position: center;
  padding-top: 146.6667%;
  position: relative;
  overflow: hidden;
  margin-top: 6rem;
  /*高さ・位置・透過が変化して線が上から下に動く*/
}
@media screen and (min-width: 681px) {
  .p-top {
    padding-top: 46.4285%;
    margin-top: 10rem;
  }
}
.p-top__img-wrap {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-top__img-wrap img {
  width: 100%;
  position: absolute;
}
.p-top__frame {
  position: absolute;
  width: 98.5714%;
  height: 96.9231%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 680px) {
  .p-top__frame {
    width: 94.6667%;
  }
}
.p-top__inner {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-top__title {
  font-size: 2.6rem;
  font-weight: normal;
  max-width: 40rem;
}
@media screen and (min-width: 681px) {
  .p-top__title {
    font-size: 4rem;
    max-width: 55rem;
    margin-left: 10rem;
  }
}
.p-top__title span {
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  display: inline-block;
}
.p-top__title span + span {
  margin-top: 0.5rem;
}
@-webkit-keyframes pathmove {
  0% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
  }
  100% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
  }
}
@keyframes pathmove {
  0% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
  }
  100% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
  }
}
.p-top__scroll {
  color: #fff;
  font-size: 1.2rem;
  position: absolute;
  position: relative;
  display: inline-block;
  -webkit-transform: rotateZ(90deg);
          transform: rotateZ(90deg);
  bottom: -8rem;
  left: 1.6rem;
  letter-spacing: 0.2em;
}
.p-top__scroll::after {
  content: "";
  width: 6rem;
  height: 0.1rem;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: -6.8rem;
  -webkit-animation: pathmove 1.4s ease-in-out infinite;
          animation: pathmove 1.4s ease-in-out infinite;
}
.p-top__authority {
  position: absolute;
  bottom: -1rem;
  right: -1.4rem;
  width: 22.1rem;
}
@media screen and (min-width: 681px) {
  .p-top__authority {
    bottom: 0;
    right: 0;
    width: 38.2rem;
  }
}

.p-concept {
  line-height: 2;
  padding-top: 12.7rem;
  overflow: hidden;
}
.p-concept__inner {
  padding-left: 4rem;
  padding-right: 4rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 680px) {
  .p-concept__inner {
    padding-bottom: 6rem;
  }
}
@media screen and (min-width: 681px) {
  .p-concept__inner {
    max-width: 96rem;
    margin: 0 auto;
  }
}
@media screen and (min-width: 681px) {
  .p-concept__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.p-concept__content:nth-child(2) {
  margin-top: 15rem;
}
@media screen and (min-width: 681px) {
  .p-concept__content:nth-child(2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.p-concept__body {
  position: relative;
}
@media screen and (min-width: 681px) {
  .p-concept__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    margin-top: 6rem;
  }
}
.p-concept__body--1:after {
  content: "";
  display: inline-block;
  width: 8.4rem;
  height: 4.7rem;
  background-image: url(../images/greeting-shine.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: -7rem;
  left: -5rem;
}
@media screen and (max-width: 680px) {
  .p-concept__body--1:after {
    top: -10rem;
    left: -2rem;
  }
}
.p-concept__body--2:after {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 2rem;
  background-image: url(../images/commitment-shine.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: -4rem;
  left: 17rem;
}
@media screen and (max-width: 680px) {
  .p-concept__body--2:after {
    top: -7rem;
    left: 6rem;
  }
}
.p-concept__title {
  font-size: 2.4rem;
  margin-right: -2rem;
}
@media screen and (min-width: 681px) {
  .p-concept__title {
    font-size: 3.6rem;
  }
}
.p-concept__title-decoration-1 {
  top: -8rem;
  left: -3rem;
}
.p-concept__title-decoration-2 {
  top: -10rem;
  right: 0rem;
}
.p-concept__text {
  margin-top: 3.4rem;
}
.p-concept__body-image {
  width: 22.8rem;
  position: absolute;
  bottom: 0;
  right: 5rem;
}
@media screen and (max-width: 680px) {
  .p-concept__body-image {
    bottom: -17rem;
    left: 0;
    width: 17.5rem;
  }
}
.p-concept__sp-image {
  margin-top: 6rem;
  margin-left: auto;
  margin-right: 0;
  width: 61%;
  text-align: right;
  position: relative;
}
.p-concept__sp-image::after {
  content: "";
  display: inline-block;
  width: 1.3rem;
  height: 1.6rem;
  background-image: url(../images/concept-shine-1.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: -5rem;
  right: 1.3rem;
}
@media screen and (min-width: 681px) {
  .p-concept__image {
    margin-top: 6rem;
    margin-top: 0;
    margin-left: 6rem;
  }
}
@media screen and (min-width: 681px) {
  .p-concept__image--1 {
    margin-right: -19rem;
  }
}
@media screen and (max-width: 680px) {
  .p-concept__image--1 {
    margin-left: -2rem;
  }
}
@media screen and (max-width: 680px) {
  .p-concept__image--2 {
    margin-top: 15rem;
  }
}
@media screen and (min-width: 681px) {
  .p-concept__image--2 {
    margin-top: -23rem;
    margin-left: -17rem;
    margin-right: 6rem;
  }
}

.p-service {
  background-image: url(../images/service-bg.jpg);
  position: relative;
}
@media screen and (max-width: 680px) {
  .p-service {
    background-position: -65rem 0;
  }
}
@media screen and (min-width: 681px) {
  .p-service {
    margin-right: 5rem;
    margin-left: 5rem;
  }
}
.p-service::before {
  content: "";
  /*何も入れない*/
  display: inline-block;
  /*忘れずに！*/
  width: 95%;
  /*画像の幅*/
  height: 0.55rem;
  /*画像の高さ*/
  background-image: url(../images/service-grid.png);
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: 2rem;
  left: 2.5%;
}
.p-service::after {
  content: "";
  /*何も入れない*/
  display: inline-block;
  /*忘れずに！*/
  width: 95%;
  /*画像の幅*/
  height: 0.55rem;
  /*画像の高さ*/
  background-image: url(../images/service-grid.png);
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  bottom: 2rem;
  left: 2.5%;
}
.p-service__inner {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 12.3rem;
  padding-bottom: 6.3rem;
}
@media screen and (min-width: 681px) {
  .p-service__inner {
    max-width: 96rem;
    margin: 0 auto;
    padding-bottom: 12.8rem;
  }
}
.p-service .p-service__title-decoration {
  top: 5rem;
  left: 50%;
  -webkit-transform: translateX(-50%) rotateZ(-15deg);
          transform: translateX(-50%) rotateZ(-15deg);
  color: #fff;
}
.p-service__title {
  color: #fff;
  text-align: center;
  font-size: 3rem;
}
.p-service__subtitle {
  color: #fff;
  text-align: center;
}
.p-service__list {
  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;
  margin-top: 3rem;
}
.p-service__item {
  background-color: #fff;
  width: calc((100% - 13px)/2);
  height: 16.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.3rem;
}
@media screen and (min-width: 681px) {
  .p-service__item {
    width: calc((100% - 16px * 3)/ 4);
  }
}
@media screen and (max-width: 680px) {
  .p-service__item:nth-child(n+3) {
    margin-top: 1.1rem;
  }
}
@media screen and (min-width: 681px) {
  .p-service__item:nth-child(n+5) {
    margin-top: 1.5rem;
  }
}
.p-service__item-icon {
  max-height: 5rem;
}
.p-service__item-icon img {
  max-height: 100%;
  height: 100%;
}
.p-service__name {
  font-size: 1.5rem;
  text-align: center;
  margin-top: 1rem;
  line-height: 1.4;
}
@media screen and (min-width: 1281px) {
  .p-service__name span {
    content: "";
    width: 1rem;
  }
}
@media screen and (min-width: 681px) {
  .p-service__name span {
    display: none;
  }
}
@media screen and (max-width: 680px) {
  .p-service__name--small {
    font-size: 1.2rem;
  }
}

.p-case__title-wrap {
  padding-top: 20rem;
  position: relative;
  background-image: url(../images/case-title.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 680px) {
  .p-case__title-wrap {
    background-image: url(../images/case-title-sp.jpg);
  }
}
.p-case .p-case__title-decoration {
  top: 11rem;
  left: 50%;
  -webkit-transform: translateX(-50%) rotateZ(-15deg);
          transform: translateX(-50%) rotateZ(-15deg);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-case__title {
  text-align: center;
  font-size: 3rem;
}
.p-case__subtitle {
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 5.6rem;
}
.p-case__container {
  background-color: #EFF0ED;
  position: relative;
}
@media screen and (min-width: 681px) {
  .p-case__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    padding-top: 10rem;
  }
}
.p-case__container::before {
  content: "";
  width: 100%;
  height: 20rem;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #516037;
}
@media screen and (min-width: 681px) {
  .p-case__container::before {
    width: 35rem;
    height: 100%;
    right: 0;
    left: auto;
  }
}
.p-case__container--1:after {
  content: "";
  display: inline-block;
  width: 4.6rem;
  height: 5.7rem;
  background-image: url(../images/case-shine-1.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 12rem;
  bottom: 17rem;
}
@media screen and (max-width: 680px) {
  .p-case__container--1:after {
    top: 7rem;
    right: 2rem;
  }
}
.p-case__container--2 {
  background-color: #A7AF9A;
}
@media screen and (min-width: 681px) {
  .p-case__container--2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 681px) {
  .p-case__container--2::before {
    right: auto;
    left: 0;
  }
}
.p-case__container--2:after {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 2rem;
  background-image: url(../images/case-shine-2.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  left: 12rem;
  bottom: 17rem;
}
@media screen and (max-width: 680px) {
  .p-case__container--2:after {
    top: 10rem;
    left: auto;
    right: 4rem;
  }
}
@media screen and (min-width: 681px) {
  .p-case__container--2 .p-case__content-subtitle-wrap {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    left: 7rem;
  }
}
.p-case__container--3:after {
  content: "";
  display: inline-block;
  width: 3.4rem;
  height: 6.9rem;
  background-image: url(../images/case-shine-3.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 12rem;
  bottom: 17rem;
}
@media screen and (max-width: 680px) {
  .p-case__container--3:after {
    top: 7rem;
    right: 2rem;
  }
}
.p-case__content-subtitle-wrap {
  -webkit-transform: rotateZ(-20deg);
          transform: rotateZ(-20deg);
  position: absolute;
  top: 2rem;
  left: 2rem;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  font-style: normal;
  line-height: 1.2;
}
@media screen and (min-width: 681px) {
  .p-case__content-subtitle-wrap {
    font-size: 3rem;
    left: auto;
    right: 7rem;
    top: 6rem;
  }
}
.p-case__content-subtitle-wrap span {
  margin-left: 3rem;
}
.p-case__content-title-wrap {
  padding-top: 5rem;
  padding-bottom: 3rem;
}
@media screen and (min-width: 681px) {
  .p-case__content-title-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30rem;
            flex: 0 0 30rem;
  }
}
.p-case__content-title {
  text-align: center;
  font-size: 2.4rem;
  color: #fff;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 681px) {
  .p-case__content-title {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    margin: 0 auto;
    -moz-text-align-last: left;
         text-align-last: left;
    font-size: 3rem;
    letter-spacing: 0.3em;
    padding-top: 2rem;
  }
  .p-case__content-title span {
    padding-top: 5rem;
  }
}
.p-case__swiper {
  padding-bottom: 3.5rem;
}
@media screen and (min-width: 681px) {
  .p-case__swiper {
    padding-bottom: 10rem;
  }
}

.swiper-container {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  padding-right: 2rem;
  /* Center slide text vertically */
  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;
}
@media screen and (min-width: 681px) {
  .swiper-slide {
    padding-right: 0;
    padding-left: 4rem;
  }
}

@media screen and (min-width: 681px) {
  .swiper-slide--2 {
    padding-right: 4rem;
    padding-left: 0;
  }
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-slide {
  width: 80%;
}

.swiper-slide:nth-child(2n) {
  width: 60%;
}

.swiper-slide:nth-child(3n) {
  width: 40%;
}

.swiper-pagination {
  bottom: 4.5rem !important;
}
@media screen and (min-width: 681px) {
  .swiper-pagination {
    left: 15rem !important;
    bottom: 11rem !important;
  }
}

@media screen and (min-width: 681px) {
  .swiper-pagination--2 {
    left: auto !important;
    right: 15rem !important;
  }
}

.swiper-pagination-bullet {
  width: 1rem !important;
  height: 1rem !important;
  background-color: #fff !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background-color: #516037 !important;
}

.p-company {
  padding-top: 19rem;
  position: relative;
  background-image: url(../images/company-bg.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.p-company__inner {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 15.6rem;
  position: relative;
  max-width: 96rem;
  margin: 0 auto;
}
.p-company__inner:before {
  content: "";
  display: inline-block;
  width: 22rem;
  height: 7.7rem;
  background-image: url(../images/company-shine-sp-1.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: -4rem;
  right: 9rem;
}
@media screen and (min-width: 681px) {
  .p-company__inner:before {
    display: none;
  }
}
.p-company__inner:after {
  content: "";
  display: inline-block;
  width: 8.4rem;
  height: 4.7rem;
  background-image: url(../images/company-shine-sp-2.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  bottom: 7rem;
  right: 2rem;
}
@media screen and (min-width: 681px) {
  .p-company__inner:after {
    display: none;
  }
}
.p-company__decoration-image {
  position: absolute;
  top: -27rem;
  left: 3.5rem;
}
@media screen and (max-width: 680px) {
  .p-company__decoration-image {
    top: -21rem;
    left: 1rem;
    width: 13.5rem;
  }
}
.p-company .p-company__title-decoration {
  top: -8rem;
  left: 50%;
  -webkit-transform: translateX(-50%) rotateZ(-15deg);
          transform: translateX(-50%) rotateZ(-15deg);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-company__title {
  text-align: center;
  font-size: 3rem;
}
@media screen and (min-width: 681px) {
  .p-company__table-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.p-company__table-wrap li {
  position: relative;
}
.p-company__table-wrap li::before {
  content: "";
  background-image: linear-gradient(to right, #000, #000 3px, transparent 3px, transparent 8px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  position: absolute;
  display: block;
  width: 100%;
  height: 0.1rem;
  bottom: 0;
  left: 0;
  right: 0;
}
.p-company__table-wrap ul {
  width: 100%;
  border-collapse: collapse;
}
@media screen and (min-width: 681px) {
  .p-company__table-wrap ul:nth-child(2) {
    margin-left: 4rem;
  }
}
.p-company__table-wrap dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-company__table-wrap dt, .p-company__table-wrap dd {
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}
.p-company__table-wrap dt {
  font-weight: normal;
  width: 32.2238%;
  text-align: left;
  padding-left: 2rem;
}
.p-company__map {
  margin-top: 5rem;
  padding-top: 74.6269%;
  position: relative;
}
@media screen and (min-width: 681px) {
  .p-company__map {
    padding-top: 44.2708%;
    margin-top: 8rem;
  }
}
.p-company__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-contact {
  background-color: rgba(239, 240, 237, 0.3);
  position: relative;
}
.p-contact--check {
  margin-top: 6rem;
}
@media screen and (min-width: 681px) {
  .p-contact--check {
    margin-top: 10rem;
  }
}
.p-contact__inner {
  padding-right: 2rem;
  padding-left: 2rem;
  padding-top: 5.8rem;
  padding-bottom: 10rem;
}
.p-contact__inner {
  max-width: 96rem;
  margin: 0 auto;
}
.p-contact__inner--check {
  padding-top: 10rem;
}
.p-contact .p-contact__title-decoration {
  top: -5rem;
  left: 50%;
  -webkit-transform: translateX(-50%) rotateZ(-15deg);
          transform: translateX(-50%) rotateZ(-15deg);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-contact__title {
  text-align: center;
  font-size: 2.4rem;
}
.p-contact__text {
  padding-right: 2rem;
  padding-left: 2rem;
  text-align: center;
}
@media screen and (min-width: 681px) {
  .p-contact__text {
    margin-top: 2.5rem;
  }
}
.p-contact__tel-content {
  background-color: #fff;
  text-align: center;
  padding-top: 2.8rem;
  padding-bottom: 3rem;
  margin-top: 5.2rem;
}
.p-contact__tel-content-text {
  font-size: 1.4rem;
  font-weight: bold;
}
.p-contact__tel-link {
  font-size: 4rem;
  max-width: 29rem;
  margin: 0 auto;
  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-contact__tel-link img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 4rem;
          flex: 0 0 4rem;
  height: 4rem;
  margin-right: 1.5rem;
  width: 4rem;
}
.p-contact__step-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 2rem;
  padding-right: 2rem;
  position: relative;
  margin-top: 5rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 43rem;
}
.p-contact__step-wrap::before {
  content: "";
  position: absolute;
  top: 2.5rem;
  left: 8.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 0.1rem;
  width: calc((100% - ( 4rem + 20rem ))/ 2);
  background-color: rgba(62, 58, 57, 0.3);
}
.p-contact__step-wrap::after {
  content: "";
  position: absolute;
  top: 2.5rem;
  right: 8.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 0.1rem;
  width: calc((100% - ( 4rem + 20rem ))/ 2);
  background-color: rgba(62, 58, 57, 0.3);
}
.p-contact .wpcf7 .ajax-loader {
  display: block;
}

.footer {
  background-color: #516037;
  color: #fff;
  text-align: center;
  position: relative;
}
.footer__back-to-top {
  width: 13.7rem;
  height: 7.6rem;
  position: absolute;
  top: 0;
  right: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}
.footer__inner {
  padding-left: 4rem;
  padding-right: 4rem;
  padding-top: 10rem;
  padding-bottom: 5rem;
}
.footer__logo {
  width: 23.6rem;
  margin: 0 auto;
}
.footer__address {
  margin-top: 3.3rem;
}
.footer__tel {
  margin-top: 0.5rem;
}
.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 5.6rem;
}
@media screen and (min-width: 681px) {
  .footer__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  font-size: 1.8rem;
}
@media screen and (min-width: 681px) {
  .footer__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 12rem;
            flex: 0 0 12rem;
    position: relative;
  }
  .footer__item::after {
    content: "";
    background-image: url(../images/footer-menu-separation.png);
    background-size: contain;
    background-repeat: no-repeat;
    height: 100%;
    width: 1.3rem;
    position: absolute;
    top: 0;
    right: -0.65rem;
  }
}
@media screen and (max-width: 680px) {
  .footer__item:nth-child(n+3) {
    margin-top: 2.8rem;
  }
}
.footer__item:nth-child(odd) {
  position: relative;
}
.footer__item:nth-child(odd)::after {
  content: "";
  background-image: url(../images/footer-menu-separation.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 100%;
  width: 1.3rem;
  position: absolute;
  top: 0;
  right: -0.65rem;
}
@media screen and (min-width: 681px) {
  .footer__item:last-child::after {
    display: none;
  }
}
.footer__copy-right {
  margin-top: 11.9rem;
}

.p-success {
  text-align: center;
}
.p-success__inner {
  padding-top: 14.5rem;
  padding-bottom: 14.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (max-width: 680px) {
  .p-success__thanks {
    font-size: 2.4rem;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}
@media screen and (min-width: 681px) {
  .p-success__thanks {
    font-size: 3.6rem;
  }
}
.p-success__text {
  margin-top: 4rem;
  line-height: 2.2;
}
@media screen and (max-width: 680px) {
  .p-success__text {
    -moz-text-align-last: left;
         text-align-last: left;
  }
}
.p-success__button-wrap {
  text-align: center;
  margin-top: 10.5rem;
}

.slider1,
.slider2,
.slider3 {
  max-width: 76vw;
  margin: 0 auto;
}
@media screen and (max-width: 680px) {
  .slider1,
.slider2,
.slider3 {
    margin: 0;
    max-width: 100vw;
  }
}

.slider1 .slick-list,
.slider3 .slick-list {
  padding: 0 0 0 23.6363% !important;
}
@media screen and (max-width: 680px) {
  .slider1 .slick-list,
.slider3 .slick-list {
    padding: 0 0 0 10.6363% !important;
  }
}

.slider2 .slick-list {
  padding: 0 23.6363% 0 0 !important;
}
@media screen and (max-width: 680px) {
  .slider2 .slick-list {
    padding: 0 0 0 10.6363% !important;
  }
}

.slider1 li,
.slider2 li,
.slider3 li {
  margin: 0 0.5%;
}

.slider1 li figcaption,
.slider2 li figcaption,
.slider3 li figcaption {
  margin: 1rem 0 0;
}

.slick-dots li {
  width: 1.2rem !important;
}

.slick-dots li button:before {
  width: 1rem !important;
  height: 1rem !important;
  line-height: 1 !important;
  content: "" !important;
  opacity: 1 !important;
  background-color: #fff;
  border-radius: 999px;
}

.slick-dots .slick-active button:before {
  background-color: #516037 !important;
}

@media screen and (min-width: 681px) {
  .slick-dots {
    -webkit-transform: translateX(155px);
            transform: translateX(155px);
  }
}

@media screen and (min-width: 681px) {
  .p-case__container--2 .slick-dots {
    -webkit-transform: translateX(-155px);
            transform: translateX(-155px);
  }
}

.u-mobile {
  display: block !important;
}
@media screen and (min-width: 681px) {
  .u-mobile {
    display: none !important;
  }
}

.u-tablet {
  display: none !important;
}
@media screen and (max-width: 1280px) {
  .u-tablet {
    display: block !important;
  }
}

.u-pc {
  display: none !important;
}
@media screen and (min-width: 1281px) {
  .u-pc {
    display: block !important;
  }
}

.u-desktop {
  display: none !important;
}
@media screen and (min-width: 681px) {
  .u-desktop {
    display: block !important;
  }
}

.u-mincho {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.u-title {
  color: #C9CEC2;
  font-size: 5rem;
  -webkit-transform: rotateZ(-15deg);
          transform: rotateZ(-15deg);
  position: absolute;
}

.u-parisienne {
  font-family: "Parisienne", cursive;
  font-weight: 400;
  font-style: normal;
}