@charset "UTF-8";
.u-desktop {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}

/* 画像の中央寄せ */
.aligncenter {
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}

/* figureタグで囲まれた画像の中央寄せ */
.aligncenter img {
  height: auto;
  max-width: 100%;
}

/* 画像右寄せ */
.alignright {
  height: auto;
  margin-left: auto;
  max-width: 100%;
}

/* figureタグで囲まれた画像右寄せ */
.alignright img {
  height: auto;
  max-width: 100%;
}

/* 位置指定のない画像 */
.alignnone {
  height: auto;
  max-width: 100%;
}

/* figureタグで囲まれた位置指定のない画像 */
.alignnone img {
  height: auto;
  max-width: 100%;
}

/* 自動折り返し有効化 */
pre {
  white-space: pre-wrap;
}

body.is-fixed {
  height: 100%;
  overflow: hidden !important;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.075em;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  /* Safari */
  color: #535e45;
  background-color: #e9e9e6;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
/* 初期状態: 非表示で下に少し移動 */
.fadeup {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}

/* 表示状態: フェードアップ完了 */
.fadeup.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 1100px) {
  html {
    font-size: 1.4545454545vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.8;
}

*,
*::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 */
html {
  scroll-behavior: smooth;
}

/* 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]) {
  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]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
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;
}

fieldset,
legend,
button {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=date],
input[type=datetime-local],
input[type=month],
input[type=time] {
  margin: 0;
  padding: 4px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 16px;
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
input[type=number],
input[type=datetime],
input[type=week],
textarea,
select {
  margin-right: 0;
  margin-left: 0;
  padding: 4px;
  border: 1px solid #ccc;
  border-radius: 0;
  outline: none;
  background: none;
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  width: 100%;
  height: 100px;
  overflow: auto;
}

select {
  padding-right: 30px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALJJREFUeNrslssNgCAQRCmB0ijBEuyEEijBEijBEizBEnAPy0UBWVj8JDvJJB5w3gsXVUoikXwsBrpAPdRCNcOmxi2P2yZ3cIKGU9dOCY0b590pdXhPHOyRyMEDsi4JhVIlSvBYTRGgSNTAQ+pFyyBRC7e5AdchUQt3d1fYIsEGb5Fgh1MktlFwisQwOIeE4/pGuDfhLRLscIrEMHiNxHB4SeIxeMyMPxkenyUSyT9zCDAAj5btZ4c3zaUAAAAASUVORK5CYII=");
  background-repeat: no-repeat;
  background-size: 12px 12px;
  background-position: right 8px center;
}

.select {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.select select {
  width: 100%;
  padding-right: 24px;
  border: 1px solid #ccc;
  background: none;
  text-overflow: "";
  cursor: pointer;
}

.select::before {
  position: absolute;
  top: 13px;
  right: 8px;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666;
  pointer-events: none;
}

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

input[type=radio] + span,
input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  margin-left: 8px;
  padding: 10px 20px;
  color: #555;
  font-size: 22.4px;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1;
  cursor: pointer;
}

input[type=radio] + span::before,
input[type=checkbox] + span::before {
  position: absolute;
  top: 50%;
  left: -8px;
  width: 16px;
  height: 16px;
  content: "";
  margin-top: -8px;
  border: 1px solid #ccc;
  background: #fff;
}

/* fieldset */
fieldset {
  padding: 8px 16px;
  border: 1px solid #ccc;
}

legend {
  padding: 0 8px;
}

/* button */
input[type=submit],
input[type=reset],
input[type=button] {
  display: inline-block;
  margin: 0;
  padding: 10px 30px;
  border: 1px solid #999;
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  background: #efefef;
  color: #000;
  font-size: 20px;
  cursor: pointer;
}

/* ブラウザ対策
---------------------------------------------------------------------------- */
/* Firefox */
/* IE */
select::-ms-expand {
  display: none;
}

/* webkit */
/* iOS */
input[type=submit]::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=search]::-webkit-search-decoration {
  display: none;
}

::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

input[type=search]::-webkit-search-decoration {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: textfield;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
          appearance: none;
  background: none;
  outline: none;
  font-size: 16px;
}

/* 挙動
---------------------------------------------------------------------------- */
/* hover */
input:hover,
textarea:hover,
select:hover {
  border-color: #666;
}

input[type=radio] + span:hover,
input[type=checkbox] + span:hover {
  color: #000;
}

input[type=radio] + span:hover::before,
input[type=checkbox] + span:hover::before {
  border-color: #000;
}

input[type=radio] + span:hover::after,
input[type=checkbox] + span:hover::after {
  position: absolute;
  content: "";
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #ccc;
}

/* checked */
input[type=radio]:checked + span,
input[type=checkbox]:checked + span {
  color: #3498db;
}

input[type=radio]:checked + span::before,
input[type=checkbox]:checked + span::before {
  border-color: #3498db;
}

input[type=radio]:checked + span::after,
input[type=checkbox]:checked + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #3498db;
}

/* radio */
input[type=radio] + span::before,
input[type=radio] + span:hover::after,
input[type=radio]:checked + span::after {
  border-radius: 50%;
}

/* button */
input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover {
  border-color: #3498db;
  background: #3498db;
  color: #fff;
}

/* focus */
input:focus,
textarea:focus {
  border-color: #3498db;
}

input[type=submit]:focus,
input[type=reset]:focus,
input[type=button]:focus,
input[type=search]:focus {
  outline-offset: -2px;
}

/* disabled */
input:disabled,
input:disabled:hover,
textarea:disabled,
textarea:disabled:hover {
  border-color: #ccc;
  background: #eee;
  cursor: not-allowed;
}

input[type=radio]:disabled + span,
input[type=checkbox]:disabled + span {
  color: #ccc;
  cursor: not-allowed;
}

input[type=radio]:disabled + span::before,
input[type=checkbox]:disabled + span::before {
  border-color: #ccc;
  cursor: not-allowed;
}

/* バリデーション */
/* placeholder */
/* パンくず
------------------------------------------------ */
.c-breadclumb {
  width: 100%;
  padding: 40px 0;
  padding: 2.5rem 0;
  font-size: 14px;
  font-size: 0.875rem;
  overflow-x: hidden;
  /* 必要に応じて親要素にも設定 */
}
@media screen and (max-width: 767px) {
  .c-breadclumb {
    padding: 1.25rem 0;
    font-size: 0.75rem;
  }
}

.c-breadclumb__wrap {
  overflow-x: auto;
  /* 横スクロールを有効にする */
  white-space: nowrap;
  /* 子要素を横一列に並べる */
}

.c-breadclumb__wrap a {
  display: inline-block;
  /* 子要素のアンカーをインラインブロックにする */
}

/* -----------------------------------------------------------------
  共通ボタン
----------------------------------------------------------------- */
.c-button a {
  display: inline-block;
  width: 100%;
  max-width: 200px;
  max-width: 12.5rem;
  padding: 12px 5px;
  padding: 0.75rem 0.3125rem;
  font-size: 14px;
  font-size: 0.875rem;
  color: #111;
  text-align: center;
  background-color: #fff;
  border-radius: 1.875rem;
  border: 1px solid #111;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.c-button a:hover {
  background-color: #111;
  color: #fff;
}

/* ハンバーガーボタン
------------------------------------------------ */
.c-hamburger {
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  border-radius: 50%;
  z-index: 10;
  padding: 0 0;
}
.c-hamburger span {
  position: relative;
  display: block;
  height: 1px;
  height: 0.0625rem;
  width: 100%;
  background-color: #111;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-box-shadow: 0.0625rem 0.0625rem 0.0625rem 0.0625rem rgba(0, 0, 0, .2);
          box-shadow: 0.0625rem 0.0625rem 0.0625rem 0.0625rem rgba(0, 0, 0, .2);
}
.c-hamburger span:nth-child(1) {
  top: 0;
}

.c-hamburger span:nth-child(2) {
  margin: 8px 0;
  margin: 0.5rem 0;
}
@media screen and (max-width: 767px) {
  .c-hamburger span:nth-child(2) {
    margin: 0.4375rem 0;
  }
}

.c-hamburger span:nth-child(3) {
  top: 0;
}

.c-hamburger.open span {
  background-color: #fff;
}

.c-hamburger.open span:nth-child(1) {
  top: 9px;
  top: 0.5625rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .c-hamburger.open span:nth-child(1) {
    top: 0.5rem;
  }
}

.c-hamburger.open span:nth-child(2) {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.c-hamburger.open span:nth-child(3) {
  top: -10px;
  top: -0.625rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .c-hamburger.open span:nth-child(3) {
    top: -0.5rem;
  }
}

/* トップ セクションタイトル
------------------------------------------------ */
.c-sectionTitle {
  font-size: 36px;
  font-size: 2.25rem;
  color: #111;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .c-sectionTitle {
    font-size: 1.75rem;
  }
}

.c-sectionTitle span {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  color: #111;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-sectionTitle span {
    font-size: 0.875rem;
  }
}

.c-viewMore {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-viewMore {
    font-size: 0.75rem;
  }
}

.c-viewMore__wrap {
  display: inline-block;
}

.c-viewMore__wrap a {
  position: relative;
}

.c-viewMore__line {
  position: absolute;
  top: 55%;
  left: -130px;
  left: -8.125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100px;
  width: 6.25rem;
  height: 1px;
  overflow: hidden;
}

.c-viewMore__line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #676767;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.c-viewMore.--white .c-viewMore__line::after {
  background-color: #fff;
}

.c-viewMore__wrap a:hover .c-viewMore__line::after,
.c-viewMore__wrap a:focus-visible .c-viewMore__line::after {
  -webkit-animation: c-viewMore-lineSlide 0.5s ease forwards;
          animation: c-viewMore-lineSlide 0.5s ease forwards;
}

@-webkit-keyframes c-viewMore-lineSlide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  49% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  50% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes c-viewMore-lineSlide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  49% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  50% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.c-viewMore__text {
  font-family: "Lusitana", serif;
}

.l-contents {
  margin-top: 150px;
  margin-top: 9.375rem;
}
@media screen and (max-width: 767px) {
  .l-contents {
    margin-top: 6.25rem;
  }
}

.l-inner {
  width: 100%;
  max-width: 1140px;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.l-inner.--lg {
  max-width: 1440px;
}

.l-inner.--sm {
  max-width: 800px;
  max-width: 50rem;
}

@media screen and (max-width: 767px) {
  .p-topAbout .l-inner {
    padding-left: 0;
  }
}

/* アーカイブページのページ送り */
.p-pagenavi {
  position: relative;
  min-width: 280px;
  min-width: 17.5rem;
  text-align: center;
  margin-top: 100px;
  margin-top: 6.25rem;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-pagenavi {
    margin-top: 3.75rem;
    font-size: 0.875rem;
  }
}

.current {
  display: inline-block;
  padding: 10px 16px;
  padding: 0.625rem 1rem;
  color: #fff;
  background-color: #111;
  border: 1px solid #111;
}
.p-pagenavi a:not(.previouspostslink):not(.nextpostslink) {
  display: inline-block;
  padding: 10px 16px;
  padding: 0.625rem 1rem;
  color: #111;
  border: 1px solid #111;
}
.extend {
  display: inline-block;
  padding: 10px 16px;
  padding: 0.625rem 1rem;
  color: #111;
  border: 1px solid #111;
}

.current,
.larger,
.smaller,
.extend {
  margin-right: 5px;
  margin-right: 0.3125rem;
}
.larger:nth(:last-of-type) {
  margin-right: 34px;
  margin-right: 2.125rem;
}
@media screen and (max-width: 767px) {
  .larger:nth(:last-of-type) {
    margin-right: 1.25rem;
  }
}

.previouspostslink {
  margin-right: 34px;
  margin-right: 2.125rem;
  font-size: 22px;
  font-size: 1.375rem;
  padding: 10px 17px;
  padding: 0.625rem 1.0625rem;
  border: 1px solid #EAEAEA;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .previouspostslink {
    margin-right: 1.25rem;
    padding: 0.25rem 0.625rem;
  }
}

.nextpostslink {
  font-size: 22px;
  font-size: 1.375rem;
  padding: 10px 17px;
  padding: 0.625rem 1.0625rem;
  border: 1px solid #EAEAEA;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .nextpostslink {
    padding: 0.25rem 0.625rem;
  }
}

/* -----------------------------------------------------------------
  swiper カスタマイズ
----------------------------------------------------------------- */
/* スライドの動き等速 */
/* 前ページ、次ページボタン共通のスタイル */
.p-about__messageWrap {
  margin-right: calc(50% - 50vw);
}

.p-about__messageContents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3.75rem;
     -moz-column-gap: 3.75rem;
          column-gap: 3.75rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-about__messageContents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 0;
  }
}

.p-about__messageBody {
  width: 60%;
  padding-top: 150px;
  padding-top: 9.375rem;
  padding-bottom: 150px;
  padding-bottom: 9.375rem;
}
@media screen and (max-width: 767px) {
  .p-about__messageBody {
    width: 100%;
    display: contents;
  }
}

.p-about__messageImg {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .p-about__messageImg {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 1.875rem;
  }
}

.p-about__messageImg img {
  aspect-ratio: 4/5;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100%;
}

.p-about__subTitle {
  font-size: 25px;
  font-size: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-about__subTitle {
    font-size: 1.0625rem;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.p-about__messageCopy {
  margin-top: 60px;
  margin-top: 3.75rem;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-about__messageCopy {
    margin-top: 2.5rem;
    padding-right: 20px;
    font-size: 0.75rem;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.p-about__messageText {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-about__messageText {
    margin-top: 1.5rem;
    padding-right: 20px;
    font-size: 0.75rem;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}

.p-about__companyContents {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.p-about__companyMeta {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-about__companyMeta {
    margin-top: 2.5rem;
  }
}

.p-about__companyMeta table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-about__companyMeta table {
    font-size: 0.75rem;
  }
}

.p-about__companyMeta table tr {
  border-bottom: 1px solid rgba(83, 94, 69, .3);
}

.p-about__companyMeta table th {
  min-width: 250px;
  min-width: 15.625rem;
}
@media screen and (max-width: 767px) {
  .p-about__companyMeta table th {
    display: block;
    padding-top: 2.5rem;
    min-width: 6.25rem;
    text-align: left;
  }
}

.p-about__companyMeta table td {
  padding: 30px 10px;
  padding: 1.875rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-about__companyMeta table td {
    display: block;
    padding: 1.25rem 0.625rem 1.875rem;
  }
}

.p-about__profileContents {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 7.5rem;
     -moz-column-gap: 7.5rem;
          column-gap: 7.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-about__profileContents {
    max-width: 500px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 0;
  }
}

.p-about__profileBody {
  width: 55%;
}
@media screen and (max-width: 767px) {
  .p-about__profileBody {
    width: 100%;
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .p-about__profileBody .p-about__subTitle {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media screen and (max-width: 767px) {
  .p-about__profileMeta {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.p-about__profileMeta-text {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  .p-about__profileMeta-text {
    font-size: 0.75rem;
  }
}

.p-about__profileImg {
  width: 30%;
  max-width: 300px;
  max-width: 18.75rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-about__profileImg {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.875rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.p-about__profileImg img {
  aspect-ratio: 1/1;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 35%;
     object-position: center 35%;
}

.p-about__accessContents {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 6.25rem;
     -moz-column-gap: 6.25rem;
          column-gap: 6.25rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-about__accessContents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 0;
  }
}

.p-about__accessBody {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .p-about__accessBody {
    width: 100%;
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .p-about__accessBody .p-about__subTitle {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.p-about__accessMeta {
  margin-top: 60px;
  margin-top: 3.75rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-about__accessMeta {
    margin-top: 2.5rem;
    font-size: 0.75rem;
  }
}

@media screen and (max-width: 767px) {
  .p-about__accessMeta.--address {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

@media screen and (max-width: 767px) {
  .p-about__accessMeta.--station {
    margin-top: 1.875rem;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}

.p-about__accessMeta.--car {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-about__accessMeta.--car {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
}

@media screen and (max-width: 767px) {
  .p-about__accessMeta.--hours {
    margin-top: 1.875rem;
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
}

.p-about__map {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .p-about__map {
    margin-top: 2.5rem;
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.p-about__map iframe {
  aspect-ratio: 5/4;
  width: 100%;
  height: auto;
}

.p-block {
  position: relative;
  border-top: 1px solid transparent;
  overflow: hidden;
  margin-top: -1px;
}

.p-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #676767;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
}

.p-block.is-active::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.p-block.--contact {
  border-bottom: 1px solid #676767;
}

.p-block__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-block__wrap.--rightTitle {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.p-block__enTitle {
  position: relative;
  width: 5%;
  padding-top: 150px;
  padding-top: 9.375rem;
  padding-bottom: 150px;
  padding-bottom: 9.375rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-block__enTitle {
    padding: 0;
    width: 5%;
  }
}

.p-block__enTitle h2,
.p-block__enTitle p {
  position: absolute;
  top: 150px;
  top: 9.375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transform-origin: left;
          transform-origin: left;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1;
  text-transform: capitalize;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .p-block__enTitle h2,
.p-block__enTitle p {
    top: 3.125rem;
    left: 0.5rem;
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 600px) {
  .p-block__enTitle h2,
.p-block__enTitle p {
    left: -2px;
    font-size: 0.75rem;
  }
}

.p-block__wrap.--leftTitle .p-block__enTitle::after,
.p-block__wrap.--rightTitle .p-block__enTitle::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: #676767;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transition: -webkit-transform 0.8s ease 0.15s;
  transition: -webkit-transform 0.8s ease 0.15s;
  transition: transform 0.8s ease 0.15s;
  transition: transform 0.8s ease 0.15s, -webkit-transform 0.8s ease 0.15s;
}

.p-block__wrap.--leftTitle .p-block__enTitle::after {
  right: 0;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

.p-block__wrap.--rightTitle .p-block__enTitle::after {
  left: 0;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

.p-block.is-active .p-block__wrap.--leftTitle .p-block__enTitle::after,
.p-block.is-active .p-block__wrap.--rightTitle .p-block__enTitle::after {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

@media screen and (max-width: 767px) {
  .p-block__wrap.--rightTitle .p-block__enTitle h2,
.p-block__wrap.--rightTitle .p-block__enTitle p {
    left: 1.5rem;
  }
}
@media screen and (max-width: 600px) {
  .p-block__wrap.--rightTitle .p-block__enTitle h2,
.p-block__wrap.--rightTitle .p-block__enTitle p {
    left: 1.25rem;
  }
}

.p-block__contents {
  width: 95%;
  padding-top: 150px;
  padding-top: 9.375rem;
  padding-bottom: 150px;
  padding-bottom: 9.375rem;
  padding-right: 100px;
  padding-right: 6.25rem;
  padding-left: 100px;
  padding-left: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-block__contents {
    width: 95%;
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-block__wrap.--rightTitle .p-block__contents {
    padding-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-block__wrap.--leftTitle .p-block__contents {
    padding-right: 0;
  }
}

.p-block.--contact .p-block__contents {
  padding-top: 200px;
  padding-top: 12.5rem;
  padding-bottom: 200px;
  padding-bottom: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-block.--contact .p-block__contents {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}

.p-block.--recruit .p-block__wrap {
  margin-left: calc(50% - 50vw);
}

.p-block.--recruit .p-block__contents {
  padding: 0px;
  padding: 0rem;
}

@media screen and (max-width: 767px) {
  .p-topAbout .p-block__contents {
    padding-left: 0;
  }
}

.p-about__message .p-block__contents {
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-about__message .p-block__contents {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}

.p-contact {
  border-bottom: 1px solid #676767;
}

.p-contact__inner {
  width: 100%;
  max-width: 900px;
  max-width: 56.25rem;
  margin-left: auto;
  margin-right: auto;
}

.p-contact__subTitle {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact__subTitle {
    font-size: 0.875rem;
  }
}

.p-contact__info {
  margin-top: 120px;
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact__info {
    margin-top: 3.75rem;
  }
}

.p-contact__infoSection {
  margin-top: 30px;
  margin-top: 1.875rem;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  border-bottom: 1px solid rgba(83, 94, 69, .4);
}

.p-contact__infoSection.--last {
  border-bottom: none;
  margin-top: 120px;
  margin-top: 7.5rem;
  text-align: center;
}

.p-contact__infoTitle {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-contact__infoTitle {
    font-size: 0.75rem;
  }
}

.p-contact__infoTel,
.p-contact__infoMail,
.p-contact__infoAddress {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  font-family: "Lusitana", serif;
}
@media screen and (max-width: 767px) {
  .p-contact__infoTel,
.p-contact__infoMail,
.p-contact__infoAddress {
    font-size: 0.75rem;
    margin-top: 1.25rem;
  }
}

.p-contact__infoTel a,
.p-contact__infoMail a {
  text-decoration: none;
  color: inherit;
  position: relative;
  padding-bottom: 2px;
  padding-bottom: 0.125rem;
}

.p-contact__infoTel a::after,
.p-contact__infoMail a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.5px;
  background-color: rgba(83, 94, 69, .2);
}

.p-contact__infoNote {
  margin-top: 15px;
  margin-top: 0.9375rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(17, 17, 17, .7);
}
@media screen and (max-width: 767px) {
  .p-contact__infoNote {
    font-size: 0.75rem;
  }
}

.p-contact__infoSection.--last .p-contact__infoNote {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-contact__infoSection.--last .p-contact__infoNote {
    font-size: 0.75rem;
  }
}

.p-contact__infoList {
  margin-top: 30px;
  margin-top: 1.875rem;
  padding-left: 20px;
  padding-left: 1.25rem;
}

.p-contact__infoList li {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
}

.p-contact__infoList li + li {
  margin-top: 4px;
  margin-top: 0.25rem;
}

/* -----------------------------------------------------------------
  ドロワーメニュー
----------------------------------------------------------------- */
.p-drawer {
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-image: url(../images/common/bg-drawer.jpg);
  background-position: 30% center;
  background-size: cover;
  background-repeat: no-repeat;
}

.p-drawer__wrap {
  padding: 90px 50px 100px;
  padding: 5.625rem 3.125rem 6.25rem;
}

.p-drawer__logo {
  width: 135px;
  width: 8.4375rem;
}
@media screen and (max-width: 767px) {
  .p-drawer__logo {
    width: 6.25rem;
  }
}

.p-drawer__navigation-items {
  margin-top: 30px;
  margin-top: 1.875rem;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.p-drawer__navigation-item {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #fff;
  text-transform: capitalize;
}

.p-drawer__navigation-item + .p-drawer__navigation-item {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-drawer__meta {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.p-drawer__meta table {
  width: 100%;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.075em;
  line-height: 1.4;
  color: #fff;
}

.p-drawer__meta table tbody tr th {
  padding-top: 10px;
  padding-top: 0.625rem;
  padding-right: 15px;
  padding-right: 0.9375rem;
  width: 100px;
  width: 6.25rem;
  text-align: left;
  font-weight: 400;
}

.p-drawer__privacy {
  margin-top: 50px;
  margin-top: 3.125rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  font-family: "Zen Old Mincho", serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.075em;
  line-height: 1.5;
  color: #fff;
}

.p-drawer.open {
  visibility: visible;
  opacity: 1;
}

.p-footer {
  padding-top: 200px;
  padding-top: 12.5rem;
  padding-bottom: 200px;
  padding-bottom: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-top: 6.25rem;
    padding-bottom: 7.5rem;
  }
}

.p-footer__inner {
  width: 100%;
  padding-right: 60px;
  padding-right: 3.75rem;
  padding-left: 60px;
  padding-left: 3.75rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    padding-right: 20px;
    padding-left: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__nav {
    margin-top: 3.75rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.p-footer__navItems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-column-gap: 3.125rem;
     -moz-column-gap: 3.125rem;
          column-gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-footer__navItems {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1.25rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
  }
}

.p-footer__navItem {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Lusitana", serif;
}
@media screen and (max-width: 767px) {
  .p-footer__navItem {
    font-size: 0.75rem;
  }
}

.p-footer__brand {
  margin-top: 200px;
  margin-top: 12.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 6.25rem;
     -moz-column-gap: 6.25rem;
          column-gap: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-footer__brand {
    margin-top: 0rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 2.5rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.p-footer__logo {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    width: 100%;
  }
}

.p-footer__sns {
  width: 30%;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-footer__sns {
    width: 100%;
    text-align: left;
  }
}

.p-footer__snsLink {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__snsLink {
    font-size: 0.75rem;
  }
}

.p-footer__bottom {
  margin-top: 200px;
  margin-top: 12.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 6.25rem;
     -moz-column-gap: 6.25rem;
          column-gap: 6.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Lusitana", serif;
}
@media screen and (max-width: 767px) {
  .p-footer__bottom {
    margin-top: 5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 2.5rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    font-size: 0.75rem;
  }
}

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

.p-form input[type=radio], .p-form input[type=checkbox] {
  display: block;
  opacity: 0;
  position: absolute;
  z-index: -100;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
.p-form input[type=radio] + span,
.p-form input[type=checkbox] + span {
  padding: 20px 20px 20px 20px;
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.075em;
  line-height: 1.6;
  color: #111;
  text-align: left;
  width: 100%;
}
.p-form input[type=radio] + span {
  padding: 10px 10px 10px 18px;
  padding: 0.625rem 0.625rem 0.625rem 1.125rem;
}
.p-form input[type=checkbox] + span {
  width: auto;
}
@media screen and (max-width: 767px) {
  .p-form input[type=checkbox] + span {
    padding-right: 0;
  }
}
.p-form input[type=radio]:checked + span,
.p-form input[type=checkbox]:checked + span {
  color: #111;
}
.p-form input[type=radio] + span:before,
.p-form input[type=checkbox] + span::before {
  border: 1px solid #707070;
}
.p-form input[type=radio]:checked + span:before,
.p-form input[type=checkbox]:checked + span::before {
  border: 1px solid #707070;
}
.p-form input[type=radio]:checked + span:after {
  background: #111;
}
.p-form input[type=checkbox]:checked + span:after {
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -10px;
  -webkit-mask: url(../images/common/icon-check.png) no-repeat center center/contain;
          mask: url(../images/common/icon-check.png) no-repeat center center/contain;
  background-color: #111;
  width: 20px;
  height: 20px;
}
.p-form input[type=checkbox] + span:hover::after {
  background-color: #111;
}
.p-form input[type=text], .p-form input[type=password], .p-form input[type=email], .p-form input[type=tel], .p-form input[type=url], .p-form input[type=search], .p-form input[type=number], .p-form input[type=datetime], .p-form input[type=week], .p-form select {
  width: 100%;
  background-color: #fff;
  padding: 10px 10px;
  padding: 0.625rem 0.625rem;
}
.p-form textarea {
  padding: 10px 10px;
  padding: 0.625rem 0.625rem;
  width: 100%;
  background-color: #fff;
}

.p-form__table {
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
  border-collapse: collapse;
}

.p-form__table a {
  border-bottom: 1px solid #111;
}

@media screen and (max-width: 767px) {
  .p-form__table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-form__table th {
  text-align: left;
  font-weight: 400;
  border-bottom: 1px solid rgba(17, 17, 17, .1);
}

.p-form__table td {
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(17, 17, 17, .1);
}

.p-form__required:after {
  content: "※";
  display: inline-block;
  margin-left: 10px;
  margin-left: 0.625rem;
  font-size: 10px;
  font-size: 0.625rem;
  color: red;
}

@media screen and (max-width: 767px) {
  .submit_button + .submit_button {
    margin-top: 1.25rem;
  }
}

.p-form__btn {
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
}

/* -----------------------------------------------------------------
  ヘッダー
----------------------------------------------------------------- */
.p-header {
  padding-top: 96px;
  padding-top: 6rem;
  padding-bottom: 64px;
  padding-bottom: 4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-header {
    padding-top: 5rem;
    padding-bottom: 2.5rem;
  }
}
.p-header.--sub {
  width: 100%;
  max-width: 300px;
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-header.--sub {
    padding-top: 0.9375rem;
    padding-bottom: 1.25rem;
  }
}

.p-header__inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.p-header__logo {
  width: 70%;
  max-width: 1000px;
}
.p-header__logo.--sub {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo.--sub {
    font-size: 0.75rem;
  }
}

.p-header__logo.--float {
  position: fixed;
  bottom: 50px;
  bottom: 3.125rem;
  right: 25px;
  right: 1.5625rem;
  z-index: 3;
  width: auto;
  max-width: 250px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}
@media screen and (max-width: 767px) {
  .p-header__logo.--float {
    max-width: 190px;
    top: 0.9375rem;
    left: 0.9375rem;
    bottom: inherit;
    right: inherit;
  }
}

.p-header__logo.--float.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.p-header__nav {
  position: fixed;
  top: 120px;
  top: 7.5rem;
  right: 25px;
  right: 1.5625rem;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__navItem {
  height: 100%;
}

.p-header__navItem + .p-header__navItem {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-header__navItem a {
  font-size: 17px;
  font-size: 1.0625rem;
  text-transform: capitalize;
  font-family: "Lusitana", serif;
  font-family: 700;
  text-shadow: 3px 1px 2px rgba(255, 255, 255, .8);
}

.p-header__hamburger {
  position: fixed;
  top: 25px;
  top: 1.5625rem;
  right: 25px;
  right: 1.5625rem;
  z-index: 16;
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    display: block;
    top: 0.9375rem;
  }
}

/* -----------------------------------------------------------------
  ローディング
----------------------------------------------------------------- */
.p-loading {
  width: 100vw;
  height: 100vh;
  background-color: #e9e9e6;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.p-loading__wrap {
  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;
  width: 100%;
  height: 100%;
}

.p-loading__img {
  width: 280px;
  width: 17.5rem;
  height: 280px;
  height: 17.5rem;
  margin: auto;
  -webkit-animation: fade 1.4s ease-in;
          animation: fade 1.4s ease-in;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-loading__img {
    max-width: 12.5rem;
  }
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-loading__imgMain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* 記事詳細
------------------------------------------------ */
.p-post__inner {
  max-width: 1200px;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
}

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

.p-post__head time {
  font-size: 14px;
  font-size: 0.875rem;
  color: #111;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-post__head time {
    font-size: 0.75rem;
  }
}

.p-post__title {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-post__title {
    font-size: 0.6875rem;
    margin-top: 0.625rem;
  }
}

.p-post__thumbnail {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-post__thumbnail {
    margin-top: 1.25rem;
  }
}

.p-post__thumbnail img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.p-post__wrap {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-post__wrap h2 {
  margin: 65px 0 30px;
  margin: 4.0625rem 0 1.875rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #111;
}
@media screen and (max-width: 767px) {
  .p-post__wrap h2 {
    font-size: 0.875rem;
  }
}

.p-post__wrap h3 {
  margin: 65px 0 30px;
  margin: 4.0625rem 0 1.875rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #111;
}
@media screen and (max-width: 767px) {
  .p-post__wrap h3 {
    font-size: 0.75rem;
  }
}

.p-post__wrap h4 {
  margin: 30px 0 20px;
  margin: 1.875rem 0 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #111;
}
@media screen and (max-width: 767px) {
  .p-post__wrap h4 {
    font-size: 0.75rem;
  }
}

.p-post__wrap p {
  margin: 15px 0 20px;
  margin: 0.9375rem 0 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #111;
}
@media screen and (max-width: 767px) {
  .p-post__wrap p {
    font-size: 0.75rem;
  }
}

.p-post__wrap a {
  margin: 8px 0 10px;
  margin: 0.5rem 0 0.625rem;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  color: #44a3cb;
  border-bottom: 1px solid #44a3cb;
  border-bottom: 0.0625rem solid #44a3cb;
}
@media screen and (max-width: 767px) {
  .p-post__wrap a {
    font-size: 0.75rem;
  }
}

.p-post__wrap img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-top: 2px;
  margin-top: 0.125rem;
}

.p-post__wrap ul {
  list-style: disc;
  padding-left: 30px;
  padding-left: 1.875rem;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 20px 0 20px;
  margin: 1.25rem 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-post__wrap ul {
    font-size: 0.75rem;
  }
}

.p-post__spec {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-post__spec {
    margin-top: 2.5rem;
  }
}

.p-post__specList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 40%;
}
@media screen and (max-width: 767px) {
  .p-post__specList {
    width: 100%;
  }
}

.p-post__specList dt,
.p-post__specList dd {
  padding: 12px 20px;
  padding: 0.75rem 1.25rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: #111;
}
@media screen and (max-width: 767px) {
  .p-post__specList dt,
.p-post__specList dd {
    font-size: 0.875rem;
    padding: 0.75rem 0.625rem;
  }
}

.p-post__specList dt {
  width: 30%;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-post__specList dt {
    width: 20%;
    min-width: 100px;
  }
}
@media screen and (max-width: 600px) {
  .p-post__specList dt {
    min-width: 70px;
  }
}

.p-post__specList dd {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .p-post__specList dd {
    width: 65%;
  }
}

.p-post__pagination {
  margin-top: 80px;
  margin-top: 5rem;
}

/* 記事詳細ページのページ送り */
.p-postPagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-postPagination__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 26%;
  min-width: 300px;
  min-width: 18.75rem;
  max-width: 400px;
  max-width: 25rem;
}

.p-postPagination__link.--placeholder {
  visibility: hidden;
}

.p-postPagination__link a {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 300;
  letter-spacing: 0.075em;
  color: #111;
  position: relative;
}

.p-postPagination__link-pageprev a:before {
  -webkit-mask: url(../images/common/icon-prevarrow.png) no-repeat center center/contain;
          mask: url(../images/common/icon-prevarrow.png) no-repeat center center/contain;
  background-color: #676767;
  width: 7px;
  width: 0.4375rem;
  height: 10px;
  height: 0.625rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -20px;
  left: -1.25rem;
  content: "";
}

.p-postPagination__link-pagenext a:before {
  -webkit-mask: url(../images/common/icon-nextarrow.png) no-repeat center center/contain;
          mask: url(../images/common/icon-nextarrow.png) no-repeat center center/contain;
  background-color: #676767;
  width: 7px;
  width: 0.4375rem;
  height: 10px;
  height: 0.625rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -20px;
  right: -1.25rem;
  content: "";
}

.p-postPagination__link-archive {
  text-align: center;
}

.p-postPagination__link {
  margin: 0 auto;
}

/* プライバシーポリシー
------------------------------------------------ */
.p-privacy h1 {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-privacy h1 {
    font-size: 4.375rem;
  }
}
@media screen and (max-width: 600px) {
  .p-privacy h1 {
    font-size: 2.8125rem;
  }
}

.p-privacy h2 {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}

.p-privacy p,
.p-privacy li {
  margin-top: 18px;
  margin-top: 1.125rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-privacy p,
.p-privacy li {
    font-size: 0.75rem;
  }
}

@media screen and (max-width: 767px) {
  .p-recruit__head {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.p-recruit__headWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__headWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1.875rem;
  }
}

.p-recruit__headContents {
  width: 36%;
}
@media screen and (max-width: 767px) {
  .p-recruit__headContents {
    width: 100%;
  }
}

.p-recruit__headCopy {
  font-size: 32px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__headCopy {
    width: 100%;
    font-size: 1.0625rem;
  }
}
@media screen and (max-width: 600px) {
  .p-recruit__headCopy {
    font-size: 0.875rem;
  }
}

.p-recruit__headText {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-recruit__headText {
    width: 100%;
    font-size: 0.75rem;
  }
}

.p-recruit__headImg {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-recruit__headImg {
    width: 100%;
  }
}

.p-recruit__headImg img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-recruit__jobContents {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.p-recruit__subTitle {
  font-size: 25px;
  font-size: 1.5625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit__subTitle {
    font-size: 1.0625rem;
  }
}

.p-recruit__jobMeta {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__jobMeta {
    margin-top: 2.5rem;
  }
}

.p-recruit__jobMeta table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__jobMeta table {
    font-size: 0.75rem;
  }
}

.p-recruit__jobMeta table tr {
  border-bottom: 1px solid rgba(83, 94, 69, .3);
}

.p-recruit__jobMeta table th {
  min-width: 250px;
  min-width: 15.625rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__jobMeta table th {
    display: block;
    padding-top: 2.5rem;
    min-width: 6.25rem;
    text-align: left;
  }
}

.p-recruit__jobMeta table td {
  padding: 30px 10px;
  padding: 1.875rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__jobMeta table td {
    display: block;
    padding: 1.25rem 0.625rem 1.875rem;
  }
}

/* 下層 Service
------------------------------------------------ */
.p-service__head {
  padding-top: 100px;
  padding-top: 6.25rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-service__head {
    margin-top: 1.875rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.p-service__headWrap {
  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;
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-service__headWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1.875rem;
  }
}

.p-service__headCopy {
  font-size: 29px;
  font-size: 1.8125rem;
}
@media screen and (max-width: 767px) {
  .p-service__headCopy {
    width: 100%;
    font-size: 1.0625rem;
  }
}
@media screen and (max-width: 600px) {
  .p-service__headCopy {
    font-size: 0.875rem;
  }
}

.p-service__headText {
  width: 50%;
  max-width: 1000px;
  max-width: 62.5rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-service__headText {
    width: 100%;
    font-size: 0.75rem;
  }
}

.p-service__architecture,
.p-service__development {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3.75rem;
     -moz-column-gap: 3.75rem;
          column-gap: 3.75rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  border-bottom: 1px solid rgba(83, 94, 69, .5);
}
@media screen and (max-width: 767px) {
  .p-service__architecture,
.p-service__development {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 0;
  }
}

.p-service__development {
  margin-top: 80px;
  margin-top: 5rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-service__development {
    margin-top: 3.75rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 0;
  }
}

.p-service__architectureContents,
.p-service__developmentContents {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .p-service__architectureContents,
.p-service__developmentContents {
    width: 100%;
    display: contents;
  }
}

.p-service__subTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
  font-size: 25px;
  font-size: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-service__subTitle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    row-gap: 0.625rem;
    font-size: 1.0625rem;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.p-service__subTitle span {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Lusitana", serif;
  font-weight: 300;
}

.p-service__architectureImg,
.p-service__developmentImg {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .p-service__architectureImg,
.p-service__developmentImg {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 0.625rem;
  }
}

.p-service__architectureImg img,
.p-service__developmentImg img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-service__architectureLists,
.p-service__developmentLists {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-service__architectureLists,
.p-service__developmentLists {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}

.p-service__architectureLists li,
.p-service__developmentLists li {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-service__architectureLists li,
.p-service__developmentLists li {
    font-size: 0.75rem;
  }
}

.p-service__architectureLists li + li,
.p-service__developmentLists li + li {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-service__architectureLists li + li,
.p-service__developmentLists li + li {
    margin-top: 0.625rem;
  }
}

.p-service__caption {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-service__caption {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 1.875rem;
    font-size: 0.75rem;
  }
}

.p-service__category {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-service__category {
    margin-top: 3.75rem;
  }
}

.p-service__categoryLists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px 60px;
  gap: 5rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-service__categoryLists {
    gap: 1.25rem 0.625rem;
  }
}

.p-service__categoryImg img {
  aspect-ratio: 5/3;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-service__cartegoryTitle {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-service__cartegoryTitle {
    font-size: 0.75rem;
  }
}

.p-service__featureHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .p-service__featureHead {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    row-gap: 1.5rem;
  }
}

.p-service__featureHeadTitle {
  width: 25%;
  font-size: 29px;
  font-size: 1.8125rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-service__featureHeadTitle {
    width: 100%;
    padding-left: 20px;
    font-size: 1.0625rem;
    text-align: left;
  }
}

.p-service__featureHead-img {
  width: 75%;
}
@media screen and (max-width: 767px) {
  .p-service__featureHead-img {
    width: 100%;
  }
}

.p-service__featureHead-img img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-service__featureLists {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-service__featureLists {
    margin-top: 3.75rem;
  }
}

.p-service__featureItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3.75rem;
     -moz-column-gap: 3.75rem;
          column-gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-service__featureItem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-service__featureItem:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-service__featureItem:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-service__featureItem + .p-service__featureItem {
  margin-top: 60px;
  margin-top: 3.75rem;
  padding-top: 60px;
  padding-top: 3.75rem;
  border-top: 1px solid rgba(83, 94, 69, .5);
}

.p-service__featureItem-contents {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .p-service__featureItem-contents {
    width: 100%;
    display: contents;
  }
}

.p-service__featurePoint-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
  border-bottom: 1px solid #535e45;
  font-size: 18px;
  font-size: 1.125rem;
  font-family: "Lusitana", serif;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .p-service__featurePoint-title {
    font-size: 0.875rem;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-service__featurePoint-title span {
  font-size: 34px;
  font-size: 2.125rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-service__featurePoint-title span {
    font-size: 1.375rem;
  }
}

.p-service__featurePoint-copy {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-service__featurePoint-copy {
    font-size: 0.875rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 1rem;
  }
}

.p-service__featurePoint-text {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-service__featurePoint-text {
    font-size: 0.75rem;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}

.p-service__featurePoint-img {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .p-service__featurePoint-img {
    width: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 1.25rem;
  }
}

.p-service__featurePoint-img img {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-service__flowWrap {
  margin-right: calc(50% - 50vw);
}

.p-service__flowContents {
  position: relative;
  margin-right: calc(50% - 50vw);
  background-image: url(../images/service-bgflow.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

.p-service__flowContents:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, .6);
  z-index: 1;
}

.p-service__flowContents-inner {
  position: relative;
  z-index: 2;
  color: #fff;
}

.p-service__flowContents-inner {
  max-width: 1000px;
  max-width: 62.5rem;
  margin-left: auto;
  margin-right: auto;
}

.p-service__flowHeadTitle {
  font-size: 29px;
  font-size: 1.8125rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-service__flowHeadTitle {
    font-size: 1.125rem;
  }
}

.p-service__flowLists {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-service__flowLists {
    margin-top: 3.75rem;
  }
}

.p-service__flowItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 6.25rem;
     -moz-column-gap: 6.25rem;
          column-gap: 6.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-service__flowItem {
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
  }
}

.p-service__flowItem:first-of-type {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-service__flowItem:first-of-type {
    padding-bottom: 3.75rem;
  }
}

.p-service__flowItem + .p-service__flowItem .p-service__flowItem-contents {
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  border-top: 1px solid rgba(255, 255, 255, .5);
}
.p-service__flowItem-head {
  position: relative;
}

.p-service__flowItem-head p {
  font-size: 36px;
  font-size: 2.25rem;
  text-align: center;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-service__flowItem-head p {
    font-size: 1.5rem;
  }
}

.p-service__flowItem-head span {
  display: block;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-service__flowItem-head span {
    font-size: 0.75rem;
  }
}

.p-service__flowItem-dots {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  row-gap: 14px;
  row-gap: 0.875rem;
  position: absolute;
  left: 50%;
  top: 125px;
  top: 7.8125rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.p-service__flowItem-dots span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #fff;
  display: block;
}

.p-service__flowItem-title {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-service__flowItem-title {
    font-size: 0.75rem;
  }
}

.p-service__flowItem-text {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-service__flowItem-text {
    font-size: 0.75rem;
  }
}

.p-service__faqContents-inner {
  max-width: 1000px;
  max-width: 62.5rem;
  margin-left: auto;
  margin-right: auto;
}

.p-service__faqHeadTitle {
  font-size: 29px;
  font-size: 1.8125rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-service__faqHeadTitle {
    font-size: 1.125rem;
  }
}

.p-service__faqLists {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-service__faqLists {
    margin-top: 2.5rem;
  }
}

.p-service__faqItem {
  border-bottom: 1px solid rgba(83, 94, 69, .2);
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}

.p-service__faqItem + .p-service__faqItem {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-service__faqQ {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  font-size: 0.875rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
  text-indent: -24px;
  text-indent: -1.5rem;
}
@media screen and (max-width: 767px) {
  .p-service__faqQ {
    font-size: 0.75rem;
  }
}

.p-service__faqIcon {
  position: absolute;
  right: -20px;
  right: -1.25rem;
  top: 10px;
  top: 0.625rem;
  width: 12px;
  width: 0.75rem;
  height: 12px;
  height: 0.75rem;
}

.p-service__faqIcon::before,
.p-service__faqIcon::after {
  content: "";
  position: absolute;
  background-color: #535e45;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.p-service__faqIcon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-service__faqIcon::after {
  height: 100%;
  width: 2px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.p-service__faqA {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding-left: 25px;
  padding-left: 1.5625rem;
  text-indent: -24px;
  text-indent: -1.5rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-service__faqA {
    font-size: 0.75rem;
  }
}

.p-service__faqA span {
  display: block;
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 14px;
  font-size: 0.875rem;
  text-indent: 0;
}
@media screen and (max-width: 767px) {
  .p-service__faqA span {
    margin-top: 1.25rem;
    font-size: 0.75rem;
  }
}

.p-service__faqToggle:checked + .p-service__faqQ .p-service__faqIcon::after {
  -webkit-transform: translateX(-50%) scaleY(0);
          transform: translateX(-50%) scaleY(0);
}

.p-service__faqToggle:checked + .p-service__faqQ + .p-service__faqA {
  max-height: 200px;
  max-height: 12.5rem;
  opacity: 1;
  margin-top: 26px;
  margin-top: 1.625rem;
}

/* 下層のMV
------------------------------------------------ */
.p-subMv {
  margin-top: 80px;
  margin-top: 5rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  font-family: "Zen Old Mincho", serif;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .p-subMv {
    margin-top: 5rem;
    padding-bottom: 1.25rem;
  }
}

.p-subMv__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 84px;
  font-size: 5.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-subMv__title {
    font-size: 2.625rem;
  }
}
@media screen and (max-width: 600px) {
  .p-subMv__title {
    font-size: 1.875rem;
  }
}

/* -----------------------------------------------------------------
  タブ切り替え
----------------------------------------------------------------- */
.p-tabContents {
  position: relative;
}

.p-tabContents__tabButton[aria-selected=true] {
  color: red;
}

.p-tabContents__panelWrap {
  position: relative;
  width: 100%;
  height: 30vh;
}

.p-tabContents__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
@media screen and (max-width: 767px) {
  .p-tabContents__panel {
    width: 100%;
  }
}

.p-tabContents__panel[aria-hidden=true] {
  opacity: 0;
  visibility: hidden;
}

.p-tabContents__panel[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
}

.p-topAbout {
  position: relative;
}

.p-topAbout__contentsWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-column-gap: 6.25rem;
     -moz-column-gap: 6.25rem;
          column-gap: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-topAbout__contentsWrap {
    position: relative;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}

.p-topAbout__contentsHead {
  width: 30%;
  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;
}
.p-topAbout__title {
  font-size: 32px;
  font-size: 2rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-topAbout__title {
    text-shadow: 0.25rem 0.375rem 0.5625rem white;
    font-size: 1.125rem;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.p-topAbout__more {
  margin-top: 120px;
  margin-top: 7.5rem;
  margin-left: 120px;
  margin-left: 7.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topAbout__more {
    text-align: right;
    margin-top: 5rem;
  }
}

.p-topAbout__contentsBody {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .p-topAbout__contentsBody {
    margin-top: 7.5rem;
    z-index: -1;
  }
}

.p-topAbout__visualItem.--bottom {
  margin-top: 30px;
  margin-top: 1.875rem;
  max-width: 600px;
  max-width: 37.5rem;
  margin-left: auto;
  margin-right: auto;
}

.p-topContact__contentsWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 18.75rem;
     -moz-column-gap: 18.75rem;
          column-gap: 18.75rem;
}
@media screen and (max-width: 767px) {
  .p-topContact__contentsWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-topContact__lead {
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-topContact__lead {
    font-size: 0.75rem;
  }
}

@media screen and (max-width: 767px) {
  .p-topContact__link {
    width: 100%;
    margin-top: 3.75rem;
    text-align: right;
  }
}

.p-topMv__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 3.75rem;
     -moz-column-gap: 3.75rem;
          column-gap: 3.75rem;
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .p-topMv__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 3.75rem;
    margin-left: inherit;
    padding-bottom: 3.125rem;
  }
}
.p-topMv__image {
  width: 55%;
}
@media screen and (max-width: 767px) {
  .p-topMv__image {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}

@media screen and (max-width: 767px) {
  .p-topMv__image img {
    aspect-ratio: 5/3;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}

.p-topMv__body {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-topMv__body {
    width: 100%;
  }
}

.p-topMv__title {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-topMv__title {
    font-size: 1.125rem;
  }
}

.p-topMv__text {
  margin-top: 30px;
  margin-top: 1.875rem;
  max-width: 800px;
  max-width: 50rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-topMv__text {
    max-width: 600px;
    font-size: 0.75rem;
  }
}

.p-topRecruit__contentsWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-topRecruit__contentsWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-topRecruit__visual {
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-topRecruit__visual {
    width: 100%;
  }
}

.p-topRecruit__visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-topRecruit__contents {
  display: grid;
  place-content: center;
  width: 50%;
  height: 100%;
  background-color: #535e45;
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
  padding-right: 55px;
  padding-right: 3.4375rem;
  padding-left: 55px;
  padding-left: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .p-topRecruit__contents {
    width: 100%;
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.p-topRecruit__body {
  color: #fff;
}

.p-topRecruit__lead {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-topRecruit__lead {
    font-size: 0.875rem;
  }
}

.p-topRecruit__text {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .p-topRecruit__text {
    margin-top: 1.25rem;
    font-size: 0.75rem;
  }
}

.p-topRecruit__more {
  margin-top: 70px;
  margin-top: 4.375rem;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .p-topService__contentsBody {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 3.75rem;
  }
}

.p-topService__visuals {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 6.25rem;
     -moz-column-gap: 6.25rem;
          column-gap: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-topService__visuals {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1.875rem;
  }
}

.p-topService__visualItem {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-topService__visualItem {
    width: 80%;
  }
}

.p-topService__visualItem.--right {
  margin-top: 150px;
  margin-top: 9.375rem;
}
@media screen and (max-width: 767px) {
  .p-topService__visualItem.--right {
    margin-top: 0;
    margin-left: auto;
    margin-right: 0;
  }
}

.p-topService__visualItem span {
  position: absolute;
  top: -20px;
  top: -1.25rem;
  left: 30px;
  left: 1.875rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Lusitana", serif;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-topService__visualItem span {
    left: 0.9375rem;
  }
}

.p-topService__visualItem img {
  aspect-ratio: 4/5;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-topService__body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: -100px;
  margin-top: -6.25rem;
}
@media screen and (max-width: 767px) {
  .p-topService__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 3.125rem;
    margin-top: 0;
  }
}

.p-topService__lead {
  font-size: 32px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .p-topService__lead {
    font-size: 0.875rem;
  }
}

.p-topService__text {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-topService__text {
    font-size: 0.75rem;
  }
}

.p-topWorks__wrap {
  min-height: 500px;
}

.p-topWorks__contentsWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 6.25rem;
     -moz-column-gap: 6.25rem;
          column-gap: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-topWorks__contentsWrap {
    -webkit-column-gap: 1.75rem;
       -moz-column-gap: 1.75rem;
            column-gap: 1.75rem;
  }
}

.p-topWorks__title p {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 29px;
  font-size: 1.8125rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-topWorks__title p {
    font-size: 0.875rem;
  }
}

.p-topWorks__more {
  margin-top: 80px;
  margin-top: 5rem;
  margin-left: auto;
  text-align: right;
}

.p-works__wrap {
  min-height: 500px;
}

.p-worksLists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 30px;
  gap: 5rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-worksLists {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem 1.25rem;
  }
}

.p-worksLists__figure img {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-worksLists__meta {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-worksLists__date {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-worksLists__date {
    font-size: 0.75rem;
  }
}

.p-worksLists__name {
  margin-top: 10px;
  margin-top: 0.625rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-worksLists__name {
    font-size: 0.75rem;
  }
}

.p-worksLists__more {
  margin-top: 80px;
  margin-top: 5rem;
  margin-left: auto;
  text-align: right;
}

/* -----------------------------------------------------------------
  猪原さん用
----------------------------------------------------------------- */
/*# sourceMappingURL=style.css.map */
