@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;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #0b134a;
  letter-spacing: 0.05em;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  /* Safari */
  animation: loading 1s;
}
@keyframes loading {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
/* 初期状態: 非表示で下に少し移動 */
.fadeup {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -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: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@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-angle {
  display: inline-block;
  width: 20px;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-angle {
    width: 0.9375rem;
  }
}
.c-angle::before, .c-angle::after {
  content: "";
  display: block;
  width: 60%;
  height: 100%;
  background: currentColor;
  position: absolute;
  right: 0;
  border-radius: 10px;
}
.c-angle::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  top: 0;
}
.c-angle::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  top: 0;
}
.c-angle.--xl {
  width: 45px;
  width: 2.8125rem;
  height: 3px;
}
@media screen and (max-width: 767px) {
  .c-angle.--xl {
    width: 1.25rem;
  }
}
.c-angle.--lg {
  width: 33px;
  width: 2.0625rem;
  height: 3px;
}
@media screen and (max-width: 767px) {
  .c-angle.--lg {
    width: 1.25rem;
  }
}
.c-angle.--lg::before, .c-angle.--lg::after {
  content: "";
  width: 50%;
}
.c-angle.--mm {
  width: 25px;
  width: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .c-angle.--mm {
    width: 1.125rem;
  }
}
.c-angle.--sm {
  width: 15px;
  width: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .c-angle.--sm {
    width: 0.625rem;
    height: 1px;
  }
}
.c-angle.--ss {
  width: 11px;
  width: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .c-angle.--ss {
    width: 0.625rem;
    height: 1px;
  }
}
.c-angle.--archive {
  width: 25px;
  width: 1.5625rem;
  height: 2.5px;
}
.c-angle.--archive::before, .c-angle.--archive::after {
  width: 54%;
}
@media screen and (max-width: 767px) {
  .c-angle.--archive {
    width: 1.125rem;
    height: 1.5px;
  }
}
.c-angle.--archiveSm {
  width: 16px;
  width: 1rem;
  height: 2px;
}
.c-angle.--archiveSm::before, .c-angle.--archiveSm::after {
  width: 54%;
}
@media screen and (max-width: 767px) {
  .c-angle.--archiveSm {
    width: 0.75rem;
    height: 1.5px;
  }
}
.c-angle.--slant {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* パンくず
------------------------------------------------ */
.c-breadclumb {
  width: 100%;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
  /* 必要に応じて親要素にも設定 */
}
@media screen and (max-width: 767px) {
  .c-breadclumb {
    font-size: 0.775rem;
  }
}

.c-breadclumb__wrap {
  overflow-x: auto;
  /* 横スクロールを有効にする */
  white-space: nowrap;
  /* 子要素を横一列に並べる */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px 22px;
  gap: 0.3125rem 1.375rem;
}

.c-breadclumb__wrap {
  /* 子要素のアンカーをインラインブロックにする */
  color: #999999;
}
.c-breadclumb__wrap span {
  margin:0 0.5rem;
}
.c-breadclumb__wrap span:nth-child(1) {
  margin:0 0.5rem 0 0; 
}


/* -----------------------------------------------------------------
  共通ボタン
----------------------------------------------------------------- */
.c-button a {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding-block: 10px;
  padding-block: 0.625rem;
  padding-inline: 0 69px;
  padding-inline: 0 4.3125rem;
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-button a {
    font-size: 1.125rem;
    padding-block: 0.875rem;
    padding-inline: 0 5.9375rem;
  }
}
.c-button a:before, .c-button a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
}
.c-button a:after {
  -webkit-transform: translateX(-200%);
          transform: translateX(-200%);
}
.c-button.--white a {
  color: #fff;
}
.c-button.--blue a {
  color: #0b134a;
}

@media (any-hover: hover) {
  .c-button a:hover:before {
    -webkit-animation-name: transformLeftRight;
            animation-name: transformLeftRight;
  }
  .c-button a:hover:after {
    -webkit-animation-name: transformRightLeft;
            animation-name: transformRightLeft;
  }
  .c-button a:hover .c-button__angle:nth-child(1) {
    -webkit-animation-name: transformLeftRight;
            animation-name: transformLeftRight;
  }
  .c-button a:hover .c-button__angle:nth-child(2) {
    -webkit-animation-name: transformRightLeft;
            animation-name: transformRightLeft;
  }
}
.c-button__angleWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  right: 0;
  top: 50%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  overflow: hidden;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-button__angle {
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
}
.c-button__angle:nth-child(2) {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateX(-150%) translateY(-50%);
          transform: translateX(-150%) translateY(-50%);
}

@-webkit-keyframes transformLeftRight {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes transformLeftRight {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes transformRightLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {    -webkit-transform: translateX(150%);
            transform: translateX(150%);
  }
}
@keyframes transformRightLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
  }
}
/* ハンバーガーボタン
------------------------------------------------ */
.c-hamburger {
  width: 58px;
  width: 3.625rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  padding: 0 0;
  color: #0b134a;
  background: #fff;
  border: 1px solid;
}
@media screen and (max-width: 767px) {
  .c-hamburger {
    width: 3.125rem;
    background: transparent;
    border: none;
  }
}

.c-hamburger span {
  position: relative;
  display: block;
  height: 1px;
  height: 0.0625rem;
  width: 50%;
  margin-inline: auto;
  background-color: #0b134a;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-hamburger.open span {
  background-color: #fff;
}

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

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

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

.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-newsList {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
}
@media screen and (max-width: 767px) {  .c-newsList {
    grid-template-columns: 1fr;
  }
}

.c-newsList__item {
  border-bottom: 1px solid #dcdcdc;
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
  gap: 50px;
  gap: 3.125rem;
  padding-block: 52px;
  padding-block: 3.25rem;
  -webkit-padding-end: 50px;
          padding-inline-end: 50px;
  -webkit-padding-end: 3.125rem;
          padding-inline-end: 3.125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-newsList__item {
    grid-template-columns: 1fr;
    gap: 0.625rem;
    padding-block: 1.4375rem;
    -webkit-padding-end: 1.875rem;
            padding-inline-end: 1.875rem;
  }
}

.c-newsList__time {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.c-newsList__title {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.c-newsList__arrow {
  position: absolute;
  right: 18px;
  right: 1.125rem;
  top: 42px;
  top: 2.625rem;
}
@media screen and (max-width: 767px) {
  .c-newsList__arrow {
    right: 0;
    top: 4.25rem;
  }
}

/* トップ セクションタイトル
------------------------------------------------ */
.c-secTitle {
  display: grid;
  gap: 8px;
  gap: 0.5rem;
}
.c-secTitle.--white {
  color: #fff;
}
.c-secTitle.--blue {
  color: #0b134a;
}
@media screen and (max-width: 767px) {
  .c-secTitle {
    gap: 0.75rem;
  }
}

.c-secTitle__title {
  font-family: "Lato", sans-serif;
  font-size: 84px;
  font-size: 5.25rem;
  font-weight: 700;
  line-height: 1.1;
  color: inherit;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-secTitle__title {
    font-size: 3rem;
  }
}

.c-secTitle__subTitle {
  font-size: 18px;
  font-size: 1.125rem;
  color: inherit;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-secTitle__subTitle {
    font-size: 1rem;
  }
}

.c-secTitle.--sm .c-secTitle__title {
  font-size: 72px;
  font-size: 4.5rem;
}
@media screen and (max-width: 767px) {
  .c-secTitle.--sm .c-secTitle__title {
    font-size: 3rem;
  }
}

.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: 1250px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.l-inner.--sm {
  max-width: 1150px;
}
.l-inner.--lg {
  max-width: 1450px;
}

.l-topContents {
  -webkit-margin-before: 200px;
          margin-block-start: 200px;
  -webkit-margin-before: 12.5rem;
          margin-block-start: 12.5rem;
}
@media screen and (max-width: 767px) {
  .l-topContents {
    -webkit-margin-before: 6.25rem;
            margin-block-start: 6.25rem;
  }
}

/* アーカイブページのページ送り */
.p-pagenavi {
  position: relative;
  min-width: 280px;
  min-width: 17.5rem;
  text-align: center;
  margin-top: 82px;
  margin-top: 5.125rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-pagenavi {
    margin-top: 3.75rem;
    font-size: 1rem;
  }
}

.current {
  display: inline-block;
  padding: 3px 15px;
  padding: 0.1875rem 0.9375rem;
  border: none;
  position: relative;
}
.current:before {
  display: block;
  content: "";
  width: 20px;
  width: 1.25rem;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-pagenavi a:not(.previouspostslink):not(.nextpostslink) {
  display: inline-block;
  padding: 3px 15px;
  padding: 0.1875rem 0.9375rem;
  color: #999999;
  border: none;
}
.extend {
  display: inline-block;
  padding: 3px 15px;
  padding: 0.1875rem 0.9375rem;
  color: #999999;
  border: none;
}

.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 {
  font-size: 22px;
  font-size: 1.375rem;
  padding: 3px 15px;
  padding: 0.1875rem 0.9375rem;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .previouspostslink {
    padding: 0.25rem 0.625rem;
  }
}

.nextpostslink {
  font-size: 22px;
  font-size: 1.375rem;
  padding: 3px 15px;
  padding: 0.1875rem 0.9375rem;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .nextpostslink {
    padding: 0.25rem 0.625rem;
  }
}

/* -----------------------------------------------------------------
  swiper カスタマイズ
----------------------------------------------------------------- */
/* スライドの動き等速 */
/* 前ページ、次ページボタン共通のスタイル */
.p-businessDetail__item {
  display: grid;
  grid-template-columns: 16.3125rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  gap: 3.75rem;
  padding-block: 25px;
  padding-block: 1.5625rem;
}
.p-businessDetail__item:not(:first-child) {
  border-top: 1px solid #dcdcdc;
}
@media screen and (max-width: 767px) {
  .p-businessDetail__item {
    grid-template-columns: 1fr;
    gap: 1.875rem;
    padding-block: 1.25rem;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
  }
}

.p-businessDetail__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 261/178;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-businessDetail__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.075em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-businessDetail__title {
    font-size: 1.125rem;
  }
}

.p-businessDetail__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.875;
  color: #000000;
  -webkit-margin-before: 13px;
          margin-block-start: 13px;
  -webkit-margin-before: 0.8125rem;
          margin-block-start: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-businessDetail__text {
    font-size: 0.875rem;
    -webkit-margin-before: 0.625rem;
            margin-block-start: 0.625rem;
  }
}

.p-contactForm__contents:not(:first-child) {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-contactForm__content {
  display: grid;
  grid-template-columns: 13.4375rem 1fr;
  gap: 30px;
  gap: 1.875rem;
  padding-block: 10px;
  padding-block: 0.625rem;
  -webkit-padding-start: 10px;
          padding-inline-start: 10px;
  -webkit-padding-start: 0.625rem;
          padding-inline-start: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-contactForm__content {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
}
.p-contactForm__content.p-contactForm__content--top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-contactForm__content.p-contactForm__content--check {
  padding-block: 30px;
  padding-block: 1.875rem;
}

.p-contactForm__contentButtonArea {
  -webkit-padding-before: 30px;
          padding-block-start: 30px;
  -webkit-padding-before: 1.875rem;
          padding-block-start: 1.875rem;
}

.p-contactForm__contentButtonText {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-contactForm__contentButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 50px;
  gap: 1.875rem 3.125rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.p-contactForm__contentButton > p {
  display: inherit;
  -ms-flex-wrap: inherit;
      flex-wrap: inherit;
  gap: inherit;
  -webkit-box-pack: inherit;
      -ms-flex-pack: inherit;
          justify-content: inherit;
  width: inherit;
}
.p-contactForm__contentButton .wpcf7-spinner {
  display: none;
}

.p-contactForm__itemInner {
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}

.p-contactForm__infoText {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.p-contactForm__contentCheckbox {
  text-align: center;
}

.p-contactForm__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  gap: 1.25rem;
}

.p-contactForm__title {
  font-size: 16px;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.025em;
  color: #000000;
}

.p-contactForm__required {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: #e60012;
  letter-spacing: 0.025em;
}

.p-contactForm__item.p-contactForm__item--margin {
  -webkit-margin-before: 10px;
          margin-block-start: 10px;
  -webkit-margin-before: 0.625rem;
          margin-block-start: 0.625rem;
}

input[type=text].p-contactFormText,
input[type=email].p-contactFormText,
input[type=tel].p-contactFormText {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: none;
  border: 1px solid #c2c2c2;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  padding: 7px 15px;
  padding: 0.4375rem 0.9375rem;
  width: 100%;
}
input[type=text].p-contactFormText:focus,
input[type=email].p-contactFormText:focus,
input[type=tel].p-contactFormText:focus {
  outline: 1px solid #0b134a;
  -webkit-box-shadow: none;
          box-shadow: none;
}
input[type=text].p-contactFormText::-webkit-input-placeholder,
input[type=email].p-contactFormText::-webkit-input-placeholder,
input[type=tel].p-contactFormText::-webkit-input-placeholder {
  color: #999999;
}
input[type=text].p-contactFormText::-moz-placeholder,
input[type=email].p-contactFormText::-moz-placeholder,
input[type=tel].p-contactFormText::-moz-placeholder {
  color: #999999;
}
input[type=text].p-contactFormText::-ms-input-placeholder,
input[type=email].p-contactFormText::-ms-input-placeholder,
input[type=tel].p-contactFormText::-ms-input-placeholder {
  color: #999999;
}
input[type=text].p-contactFormText::placeholder,
input[type=email].p-contactFormText::placeholder,
input[type=tel].p-contactFormText::placeholder {
  color: #999999;
}
input[type=text].p-contactFormText:focus::-webkit-input-placeholder,
input[type=email].p-contactFormText:focus::-webkit-input-placeholder,
input[type=tel].p-contactFormText:focus::-webkit-input-placeholder {
  color: transparent;
}
input[type=text].p-contactFormText:focus::-moz-placeholder,
input[type=email].p-contactFormText:focus::-moz-placeholder,
input[type=tel].p-contactFormText:focus::-moz-placeholder {
  color: transparent;
}
input[type=text].p-contactFormText:focus::-ms-input-placeholder,
input[type=email].p-contactFormText:focus::-ms-input-placeholder,
input[type=tel].p-contactFormText:focus::-ms-input-placeholder {
  color: transparent;
}
input[type=text].p-contactFormText:focus::placeholder,
input[type=email].p-contactFormText:focus::placeholder,
input[type=tel].p-contactFormText:focus::placeholder {
  color: transparent;
}

.p-contactFormRadio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-left: 10px;
  padding-left: 0.625rem;
  gap: 5px 10px;
  gap: 0.3125rem 0.625rem;
}
.p-contactFormRadio > p {
  display: inherit;
  -ms-flex-wrap: inherit;
      flex-wrap: inherit;
  -webkit-box-orient: inherit;
  -webkit-box-direction: inherit;
      -ms-flex-direction: inherit;
          flex-direction: inherit;
  padding-left: inherit;
  gap: inherit;
}
.p-contactFormRadio br {
  display: none;
}
.p-contactFormRadio label {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-contactFormRadio input[type=radio] {
  position: absolute;
  white-space: nowrap;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
}
.p-contactFormRadio input[type=radio]:focus-visible + span {
  outline: 2px solid #e60012;
}
.p-contactFormRadio input[type=radio] + span {
  cursor: pointer;
  display: inline-block;
  padding: 5px 15px 6px 25px;
  position: relative;
}
.p-contactFormRadio input[type=radio] + span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .16);
  border-radius: 50%;
  content: "";
  display: block;
  height: 16px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
}
.p-contactFormRadio input[type=radio] + span::after {
  -webkit-transform: translateY(-50%);
  background-color: #000000;
  border: 1px solid transparent;
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 4px;
  opacity: 0;
  padding: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 8px;
}
.p-contactFormRadio input[type=radio]:checked + span::after {
  opacity: 1;
}

.p-contactFormSelect {
  border: 1px solid #c2c2c2;
  font-size: 16px;
  font-size: 1rem;
  padding: 5px 10px;
  padding: 0.3125rem 0.625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}
.p-contactFormSelect:focus {
  outline: 1px solid #0b134a;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.p-contactFormSelect::-webkit-input-placeholder {
  color: inherit;
}
.p-contactFormSelect::-moz-placeholder {
  color: inherit;
}
.p-contactFormSelect::-ms-input-placeholder {
  color: inherit;
}
.p-contactFormSelect::placeholder {
  color: inherit;
}
.p-contactFormSelect:focus::-webkit-input-placeholder {
  color: transparent;
}
.p-contactFormSelect:focus::-moz-placeholder {
  color: transparent;
}
.p-contactFormSelect:focus::-ms-input-placeholder {
  color: transparent;
}
.p-contactFormSelect:focus::placeholder {
  color: transparent;
}

.p-contactFormTextArea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: none;
  border: 1px solid #c2c2c2;
  border-radius: 0;
  color: inherit;
  font-size: 16px;
  font-size: 1rem;
  padding: 7px 15px;
  padding: 0.4375rem 0.9375rem;
  min-height: 163px;
  min-height: 10.1875rem;
  width: 100%;
  white-space: pre-wrap;
  resize: none;
}
@media screen and (max-width: 767px) {
  .p-contactFormTextArea {
    min-height: 18.75rem;
  }
}
.p-contactFormTextArea:focus {
  outline: 1px solid #0b134a;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #c2c2c2;
}
.p-contactFormTextArea::-webkit-input-placeholder {
  color: #999999;
}
.p-contactFormTextArea::-moz-placeholder {
  color: #999999;
}
.p-contactFormTextArea::-ms-input-placeholder {
  color: #999999;
}
.p-contactFormTextArea::placeholder {
  color: #999999;
}
.p-contactFormTextArea:focus::-webkit-input-placeholder {
  color: transparent;
}
.p-contactFormTextArea:focus::-moz-placeholder {
  color: transparent;
}
.p-contactFormTextArea:focus::-ms-input-placeholder {
  color: transparent;
}
.p-contactFormTextArea:focus::placeholder {
  color: transparent;
}

.p-contactFormCheck {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px 10px;
  gap: 1.125rem 0.625rem;
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-contactFormCheck {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}
.p-contactFormCheck.p-contactFormCheck--small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 20px;
  gap: 0.625rem 1.25rem;
}
.p-contactFormCheck > p {
  display: inherit;
  -ms-flex-wrap: inherit;
      flex-wrap: inherit;
  -webkit-box-orient: inherit;
  -webkit-box-direction: inherit;
      -ms-flex-direction: inherit;
          flex-direction: inherit;
  padding-left: inherit;
  gap: inherit;
}
.p-contactFormCheck br {
  display: none;
}
.p-contactFormCheck .wpcf7-list-item {
  margin: 0;
}
.p-contactFormCheck label {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-contactFormCheck input[type=checkbox] {
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  cursor: pointer;
}
.p-contactFormCheck input[type=checkbox] + span {
  cursor: pointer;
  display: inline-block;
  margin: 0;
  padding: 0 0 0 32px;
  padding: 0 0 0 2rem;
  position: relative;
  font-size: 16px;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-contactFormCheck input[type=checkbox] + span {
    padding: 0 0 0 2.5rem;
  }
}
.p-contactFormCheck input[type=checkbox] + span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid #c2c2c2;
  border-radius: 2px;
  content: "";
  display: block;
  width: 27px;
  width: 1.6875rem;
  height: 26px;
  height: 1.625rem;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}
.p-contactFormCheck input[type=checkbox] + span::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  border-bottom: 3px solid #0b134a;
  border-left: 3px solid #0b134a;
  content: "";
  display: block;
  height: 0.6em;
  left: 5px;
  left: 0.3125rem;
  opacity: 0;
  position: absolute;
  top: 8px;
  top: 0.5rem;
  transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 1em;
  background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
  background: initial;
  margin: 0;
  margin: initial;
}
.p-contactFormCheck input[type=checkbox]:checked + span::before {
  background: #fff;
}
.p-contactFormCheck input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.p-contactFormCheck input[type=checkbox]:focus-visible + span {
  outline: 1px solid #0b134a;
}

.p-contactFormAgree label {
  position: relative;
}
.p-contactFormAgree input[type=checkbox] {
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  cursor: pointer;
}
.p-contactFormAgree input[type=checkbox] + span {
  cursor: pointer;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 26px;
  position: relative;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.714285;
}
.p-contactFormAgree input[type=checkbox] + span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .16);
  border-radius: 2px;
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  left: 0;
  position: absolute;
  top: 17px;
}
.p-contactFormAgree input[type=checkbox] + span::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  border-bottom: 3px solid #000000;
  border-left: 3px solid #000000;
  content: "";
  display: block;
  height: 0.6em;
  left: 1px;
  opacity: 0;
  position: absolute;
  top: 13px;
  transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 1em;
}
.p-contactFormAgree input[type=checkbox]:checked + span::before {
  background: #fff;
}
.p-contactFormAgree input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.p-contactFormAgree input[type=checkbox]:focus-visible + span {
  outline: 1px solid #0b134a;
}

input[type=submit].p-contactFormBtn {
  -webkit-appearance: none;
  background-color: #000;
  background-image: none;
  border: none;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  width: 260px;
  width: 16.25rem;
  padding: 20px 10px;
  padding: 1.25rem 0.625rem;
  font-size: 16px;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  background: #080e34;
  margin: 0;
  text-decoration: none;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
@media (hover: hover) {
  input[type=submit].p-contactFormBtn:hover {
    opacity: 0.7;
  }
}
input[type=submit].p-contactFormBtn.is_confirm {
  background: #ccc;
}
input[type=submit].p-contactFormBtn.is_disable {
  background: #706e6e;
}
input[type=submit].p-contactFormBtn:hover, input[type=submit].p-contactFormBtn:focus {
  outline: none;
}
input[type=submit].p-contactFormBtn::-moz-foucus-inner {
  border: none;
  padding: 0;
}
input[type=submit].p-contactFormBtn:focus-visible {
  outline: 1px solid #0b134a;
  outline-offset: 2px;
}

input[type=button].p-contactFormBtn {
  -webkit-appearance: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  width: 245px;
  width: 15.3125rem;
  padding: 17px 10px;
  padding: 1.0625rem 0.625rem;
  font-size: 16px;
  font-size: 1rem;
  border-radius: 30px;
  color: #fff;
  background: #676767;
  margin: 0;
  text-decoration: none;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
@media (hover: hover) {
  input[type=button].p-contactFormBtn:hover {
    background-color: #000000;
    border-color: #000000;
  }
}

.p-contactFormPolicy {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  text-decoration: underline;
  text-underline-offset: 10px;
  text-underline-offset: 0.625rem;
  color: #000000;
}

.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;
  pointer-events: none;
  background-color: #080e34;
  padding-block: 200px 200px;
  padding-block: 12.5rem 12.5rem;
  display: none;
}
@media screen and (max-width: 767px) {
  .p-drawer {
    padding-block: 6.25rem 6.25rem;
    display: block;
  }
}
.p-drawer.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.p-drawer__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  gap: 1.875rem;
  -webkit-padding-end: 150px;
          padding-inline-end: 150px;
  -webkit-padding-end: 9.375rem;
          padding-inline-end: 9.375rem;
}
@media screen and (max-width: 767px) {
  .p-drawer__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
    -webkit-padding-end: 0;
            padding-inline-end: 0;
    gap: 5.3125rem;
  }
}

.p-drawer__title {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.075em;
  font-weight: 700;
  color: #fff;
}

.p-drawer__address {
  font-style: normal;
  -webkit-margin-before: 40px;
          margin-block-start: 40px;
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
  text-decoration: none;
  border: none;
}
@media screen and (max-width: 767px) {
  .p-drawer__address {
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
    text-decoration: none;
    border: none;
  }
}
.p-drawer__address p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.8666666667;
  letter-spacing: 0.075em;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border: none;
}
@media screen and (max-width: 767px) {
  .p-drawer__address p {
    text-decoration: none;
    border: none;
  }
}

.p-drawer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 50px;
  gap: 3.125rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-drawer__nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 4.375rem 1.875rem;
  }
}

.p-drawer__navItem {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.1666666667;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-drawer__navItem {
    font-size: 1.25rem;
  }
}

.p-drawer__body {
  -webkit-margin-before: 40px;
          margin-block-start: 40px;
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 30px;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {  .p-drawer__body {
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
  }
}

.p-drawer__deco-text {
  font-family: "Lato", sans-serif;
  font-size: 120px;
  font-size: 7.5rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 700;
  color: color-mix(in srgb, #fff 4%, transparent);
}
@media screen and (max-width: 767px) {
  .p-drawer__deco-text {
    font-size: 3.9375rem;
  }
}

.p-drawer__privacy {
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #fff;
}

.p-drawer__copyright {
  font-family: "Lato", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 2.3076923077;
  color: #fff;
  -webkit-margin-before: 40px;
          margin-block-start: 40px;
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-drawer__copyright {
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
  }
}

.p-footer {
  background-color: #080e34;
  padding-block: 189px 200px;
  padding-block: 11.8125rem 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-block: 9em 6rem;
    overflow-x: clip;
  }
}

.p-footer__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  gap: 1.875rem;
  max-width: 1300px;
  max-width: 81.25rem;
}
@media screen and (max-width: 767px) {
  .p-footer__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
    gap: 5.3125rem;
  }
}

.p-footer__title {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.075em;
  font-weight: 700;
  color: #fff;
}

.p-footer__address {
  font-style: normal;
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
  text-decoration: none;
  border: none;
}
@media screen and (max-width: 767px) {
  .p-footer__address {
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
  }
}
.p-footer__address p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.8666666667;
  letter-spacing: 0.075em;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border: none;
}

.p-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 85px 60px;
  gap: 5.3125rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 4.375rem 1.875rem;
  }
}

.p-footer__navItem {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.1666666667;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-footer__navItem {
    font-size: 1.25rem;
  }
}

.p-footer__body {
  -webkit-margin-before: 40px;
          margin-block-start: 40px;
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 30px;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__body {
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
  }
}

.p-footer__deco-text {
  font-family: "Lato", sans-serif;
  font-size: 120px;
  font-size: 7.5rem;
  line-height: 0.8333333333;
  letter-spacing: 0;
  font-weight: 700;
  color: color-mix(in srgb, #fff 4%, transparent);
}
@media screen and (max-width: 767px) {
  .p-footer__deco-text {
    font-size: 3.9375rem;
  }
}

.p-footer__bottom {
  text-align: right;
}

.p-footer__privacy {
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #fff;
}

.p-footer__copyright {
  font-family: "Lato", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 2.3076923077;
  color: #fff;
  -webkit-margin-before: 40px;
          margin-block-start: 40px;
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
  }
}

.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 Kaku Gothic New", sans-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-header {
  background-color: color-mix(in srgb, #fff 80%, transparent);
  border-radius: 10px;
  position: fixed;
  z-index: 100;
  height: 83px;
  height: 5.1875rem;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 3.5625rem;
  }
}

.p-header--top {
  top: 20px;
  top: 1.25rem;
  left: 15px;
  left: 0.9375rem;
  right: 15px;
  right: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-header--top {
    top: 0.7375rem;
    left: 10px;
    right: 10px;
  }
}

.p-header--sub {
  top: 20px;
  top: 1.25rem;
  left: 15px;
  left: 0.9375rem;
  right: 15px;
  right: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-header--sub {
    top: 0.9375rem;
    left: 20px;
    right: 20px;
  }
}

.p-header__inner {
  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;
  height: 100%;
  width: 100%;
  padding-left: 25px;
  padding-right: 60px;
  padding-right: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.p-header__logo {
  width: 16.125rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 10.75rem;
  }
}

.p-header__logo a {
  display: block;
  width: 100%;
  height: auto;
}
.p-header__logo a img {
  width: 100%;
  height: auto;
}

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

.p-header__navItems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.4375rem;
     -moz-column-gap: 2.4375rem;
          column-gap: 2.4375rem;
  height: 100%;
}

.p-header__navItem {
  height: 100%;
}

.p-header__navItem a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-items: center;
  height: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  color: #21286e;
}

.p-header__navBtn {
  display: grid;
  place-content: center;
  width: 174px;
  width: 10.875rem;
  height: 100%;
  background: #0b134a;
  border-radius: 25px;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.075em;
  font-weight: 700;
}

.p-header__hamburger {
  display: none;
  position: fixed;
  top: 54px;
  top: 3.375rem;
  right: 70px;
  right: 4.375rem;
  z-index: 101;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
  display: block;
  top: 1rem;
  right: 0.8rem;
  }
}

/* -----------------------------------------------------------------
  ローディング
----------------------------------------------------------------- */
.p-loading {
  width: 100vw;
  height: 100vh;
  background-color: #676767;
  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 3s ease-in;
          animation: fade 3s 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 {
  -webkit-margin-before: 117px;
          margin-block-start: 117px;
  -webkit-margin-before: 7.3125rem;
          margin-block-start: 7.3125rem;
  -webkit-padding-after: 164px;
          padding-block-end: 164px;
  -webkit-padding-after: 10.25rem;
          padding-block-end: 10.25rem;
}
@media screen and (max-width: 767px) {
  .p-post {
    -webkit-margin-before: 5rem;
            margin-block-start: 5rem;
    -webkit-padding-after: 6.25rem;
            padding-block-end: 6.25rem;
  }
}

.p-post__inner {
  max-width: calc(56.25rem + 50px);
}

.p-post__head time {
  font-size: 18px;
  font-size: 1.125rem;
  font-family: "Lato", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-post__head time {
    font-size: 1rem;
  }
}

.p-post__title {
  margin-top: 12px;
  margin-top: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: 0.05em;
  color: #000000;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-post__title {
    font-size: 1.5rem;
  }
}

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

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

.p-post__wrap {
  margin-top: 45px;
  margin-top: 2.8125rem;
}

.p-post__wrap h2 {
  margin-top: 65px;
  margin-top: 4.0625rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .p-post__wrap h2 {
    font-size: 1.375rem;
  }
}

.p-post__wrap h3 {
  margin-top: 65px;
  margin-top: 4.0625rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .p-post__wrap h3 {
    font-size: 1.125rem;
  }
}

.p-post__wrap h4 {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .p-post__wrap h4 {
    font-size: 1rem;
  }
}

.p-post__wrap p {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.05em;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .p-post__wrap p {
    font-size: 0.875rem;
  }
}

.p-post__wrap a {
  margin-top: 8px;
  margin-top: 0.5rem;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
  font-size: 16px;
  font-size: 1rem;
  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.875rem;
  }
}

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

.p-post__wrap ul {
  list-style: disc;
  padding-left: 30px;
  padding-left: 1.875rem;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-post__wrap ul {
    font-size: 0.875rem;
  }
}

.p-post__pagination {
  margin-top: 100px;
  margin-top: 6.25rem;
  -webkit-padding-before: 40px;
          padding-block-start: 40px;
  -webkit-padding-before: 2.5rem;
          padding-block-start: 2.5rem;
  border-top: 1px solid #dcdcdc;
}

/* 記事詳細ページのページ送り */
.p-postPagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-inline: 40px;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-postPagination {
    padding-inline: 1.25rem;
  }
}

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

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

.p-postPagination__link a {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.05em;
  position: relative;
}

.p-postPagination__link-pageprev a .p-postPagination__angle {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) scaleX(-1);
          transform: translateY(-50%) scaleX(-1);
  left: -40px;
  left: -2.5rem;
}
@media screen and (max-width: 767px) {
  .p-postPagination__link-pageprev a .p-postPagination__angle {
    left: -1.25rem;
  }
}

.p-postPagination__link-pagenext a .p-postPagination__angle {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -40px;
  right: -2.5rem;
}
@media screen and (max-width: 767px) {
  .p-postPagination__link-pagenext a .p-postPagination__angle {
    right: -1.25rem;
  }
}

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

/* プライバシーポリシー
------------------------------------------------ */
.p-privacy h1 {
  text-align: left;
}

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

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

.p-subAccess__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.6;
  letter-spacing: 0.025em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-subAccess__text {
    font-size: 1.125rem;
  }
}

.p-subAccess__map {
  aspect-ratio: 1147/434;
  -webkit-margin-before: 60px;
          margin-block-start: 60px;
  -webkit-margin-before: 3.75rem;
          margin-block-start: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-subAccess__map {
    aspect-ratio: 3/4;
    -webkit-margin-before: 2.5rem;
            margin-block-start: 2.5rem;
  }
}
.p-subAccess__map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-subContact {
  -webkit-margin-before: 107px;
          margin-block-start: 107px;
  -webkit-margin-before: 6.6875rem;
          margin-block-start: 6.6875rem;
  -webkit-padding-after: 150px;
          padding-block-end: 150px;
  -webkit-padding-after: 9.375rem;
          padding-block-end: 9.375rem;
}
@media screen and (max-width: 767px) {
  .p-subContact {
    -webkit-margin-before: 6.25rem;
            margin-block-start: 6.25rem;
    -webkit-padding-after: 6.25rem;
            padding-block-end: 6.25rem;
  }
}

.p-subContact__contents {
  max-width: 900px;
  max-width: 56.25rem;
  margin-inline: auto;
}

.p-subContact__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2.5;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-subContact__text {
    font-size: 0.875rem;
    text-align: left;
  }
}

.p-subContact__form {
  -webkit-margin-before: 57px;
          margin-block-start: 57px;
  -webkit-margin-before: 3.5625rem;
          margin-block-start: 3.5625rem;
}
@media screen and (max-width: 767px) {
  .p-subContact__form {
    -webkit-margin-before: 3.125rem;
            margin-block-start: 3.125rem;
  }
}

.p-subContents {
  padding-block: 130px 135px;
  padding-block: 8.125rem 8.4375rem;
}
.p-subContents.--gray {
  background-color: #f0f1f7;
}
@media screen and (max-width: 767px) {
  .p-subContents {
    padding-block: 5rem 5.625rem;
  }
}
.p-subContents.--access {
  -webkit-padding-after: 170px;
          padding-block-end: 170px;
  -webkit-padding-after: 10.625rem;
          padding-block-end: 10.625rem;
}
@media screen and (max-width: 767px) {
  .p-subContents.--access {
    -webkit-padding-after: 6.875rem;
            padding-block-end: 6.875rem;
  }
}

.p-subContents__title {
  font-family: "Lato", sans-serif;
  font-size: 54px;
  font-size: 3.375rem;
  line-height: 1.1111111111;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-subContents__title {
    font-size: 2.25rem;
    line-height: 1.3333333333;
  }
}

.p-subContents__subTitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  -webkit-margin-before: 5px;
          margin-block-start: 5px;
  -webkit-margin-before: 0.3125rem;
          margin-block-start: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-subContents__subTitle {
    font-size: 1rem;
  }
}

.p-subContents__body {
  -webkit-margin-before: 63px;
          margin-block-start: 63px;
  -webkit-margin-before: 3.9375rem;
          margin-block-start: 3.9375rem;
}
@media screen and (max-width: 767px) {
  .p-subContents__body {
    -webkit-margin-before: 3.125rem;
            margin-block-start: 3.125rem;
  }
}

.p-subContents.--row .p-subContents__contents {
  display: grid;
  grid-template-columns: 18.75rem 1fr;
  gap: 42px;
  gap: 2.625rem;
}
@media screen and (max-width: 767px) {
  .p-subContents.--row .p-subContents__contents {
    grid-template-columns: 1fr;
    gap: initial;
  }
}
.p-subContents.--row .p-secContents__titleBlock {
  position: sticky;
  top: 150px;
  top: 9.375rem;
}
@media screen and (max-width: 767px) {
  .p-subContents.--row .p-secContents__titleBlock {
    position: static;
  }
}
.p-subContents.--row .p-subContents__body {
  -webkit-margin-before: 98px;
          margin-block-start: 98px;
  -webkit-margin-before: 6.125rem;
          margin-block-start: 6.125rem;
}
@media screen and (max-width: 767px) {
  .p-subContents.--row .p-subContents__body {
    -webkit-margin-before: 3.125rem;
            margin-block-start: 3.125rem;
  }
}

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

.p-subElectrical__body {
  -webkit-margin-before: 108px;
          margin-block-start: 108px;
  -webkit-margin-before: 6.75rem;
          margin-block-start: 6.75rem;
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 84px;
  gap: 5.25rem;
}
@media screen and (max-width: 767px) {
  .p-subElectrical__body {
    -webkit-margin-before: 3.75rem;
            margin-block-start: 3.75rem;
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}

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

.p-subElectrical__rows {
  display: grid;
  gap: 50px;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-subElectrical__rows {
    gap: 1.875rem;
  }
}

.p-subElectrical__rowItem {
  display: grid;
  gap: 33px;
  gap: 2.0625rem;
}
@media screen and (max-width: 767px) {
  .p-subElectrical__rowItem {
    gap: 1.25rem;
  }
}

.p-subElectrical__rowItemTitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  letter-spacing: 0.075em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-subElectrical__rowItemTitle {
    font-size: 1.25rem;
  }
}

.p-subElectrical__rowItemLists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 20px;
  gap: 0.625rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-subElectrical__rowItemLists {
    grid-template-columns: 1fr;
  }
}

.p-subElectrical__rowItemList,
.p-subElectrical__rowItemText {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.075em;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .p-subElectrical__rowItemList,
.p-subElectrical__rowItemText {
    font-size: 0.875rem;
  }
}

.p-subElectrical__rowItemTexts {
  display: grid;
  gap: 10px;
  gap: 0.625rem;
}

.p-subFacilities__lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 95px 35px;
  gap: 5.9375rem 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-subFacilities__lists {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
  }
}

.p-subFacilities__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .p-subFacilities__item {
    grid-template-rows: 1fr;
    grid-row: initial;
  }
}

.p-subFacilities__img {
  aspect-ratio: 375/269;
  overflow: hidden;
}
.p-subFacilities__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-subFacilities__body {
  -webkit-padding-before: 25px;
          padding-block-start: 25px;
  -webkit-padding-before: 1.5625rem;
          padding-block-start: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-subFacilities__body {
    -webkit-padding-before: 1.25rem;
            padding-block-start: 1.25rem;
  }
}

.p-subFacilities__title {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3333333333;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-subFacilities__title {
    font-size: 1rem;
  }
}

.p-subMessage {
  padding-block: 136px 150px;
  padding-block: 8.5rem 9.375rem;
}
@media screen and (max-width: 767px) {
  .p-subMessage {
    padding-block: 5rem 5.625rem;
  }
}

.p-subMessage__contents {
  display: grid;
  grid-template-columns: 1fr 22.0625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 100px;
  gap: 6.25rem;
  -webkit-padding-end: 50px;
          padding-inline-end: 50px;
  -webkit-padding-end: 3.125rem;
          padding-inline-end: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-subMessage__contents {
    grid-template-columns: 1fr;
    gap: 1.875rem;
    -webkit-padding-end: initial;
            padding-inline-end: initial;
  }
}

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

.p-subMessage__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-subMessage__title {
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .p-subMessage__title br {
    display: none;
  }
}

.p-subMessage__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2.25;
  color: #000000;
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-subMessage__text {
    font-size: 1rem;
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
  }
}

.p-subMessage__name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  color: #000000;
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-subMessage__name {
    font-size: 1rem;
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
  }
}

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

.p-subMessage__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 353/387;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/* 下層のMV
------------------------------------------------ */
.p-subMv__head {
  -webkit-margin-before: 67px;
          margin-block-start: 67px;
  -webkit-margin-before: 4.1875rem;
          margin-block-start: 4.1875rem;
}
@media screen and (max-width: 767px) {
  .p-subMv__head {
    -webkit-margin-before: 2.5rem;
            margin-block-start: 2.5rem;
  }
}

.p-subMv__body {
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-subMv__body {
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
  }
}

.p-subMv__img {
  height: 653px;
  height: 40.8125rem;
}
@media screen and (max-width: 767px) {
  .p-subMv__img {
    height: 20.375rem;
  }
}
.p-subMv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-subNews {
  -webkit-margin-before: 150px;
          margin-block-start: 150px;
  -webkit-margin-before: 9.375rem;
          margin-block-start: 9.375rem;
  -webkit-padding-after: 164px;
          padding-block-end: 164px;
  -webkit-padding-after: 10.25rem;
          padding-block-end: 10.25rem;
}
@media screen and (max-width: 767px) {
  .p-subNews {
    -webkit-margin-before: 6.25rem;
            margin-block-start: 6.25rem;
    -webkit-padding-after: 6.25rem;
            padding-block-end: 6.25rem;
  }
}

.p-subNews__contents {
  max-width: 900px;
  max-width: 56.25rem;
  margin-inline: auto;
}

.p-subNews__lists {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
}
@media screen and (max-width: 767px) {
  .p-subNews__lists {
    grid-template-columns: 1fr;
  }
}

.p-subNews__list {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
  gap: 50px;
  gap: 3.125rem;
  border-bottom: 1px solid #dcdcdc;
  padding-block: 41px;
  padding-block: 2.5625rem;
  padding-inline: 17px 50px;
  padding-inline: 1.0625rem 3.125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-subNews__list {
    grid-template-columns: 1fr;
    grid-column: initial;
    gap: 0.625rem;
    padding-block: 1.5625rem;
    padding-inline: 0.625rem 2.5rem;
  }
}

.p-subNews__date {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-subNews__date {
    font-size: 0.875rem;
  }
}

.p-subNews__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .p-subNews__title {
    font-size: 0.875rem;
  }
}

.p-subNews__angle {
  position: absolute;
  top: 50%;
  right: 13px;
  right: 0.8125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-subNews__angle {
    right: 0.625rem;
  }
}

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

.p-subOutdoor__body {
  -webkit-margin-before: 60px;
          margin-block-start: 60px;
  -webkit-margin-before: 3.75rem;
          margin-block-start: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-subOutdoor__body {
    -webkit-margin-before: 2.5rem;
            margin-block-start: 2.5rem;
  }
}

.p-subOutdoor__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
  gap: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-subOutdoor__items {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.p-subOutdoor__item {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  gap: 90px;
  gap: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-subOutdoor__item {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}

.p-subOutdoor__itemTitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 21px;
  font-size: 1.3125rem;
  line-height: 1.7142857143;
  letter-spacing: 0.075em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-subOutdoor__itemTitle {
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }
}

.p-subOutdoor__itemLists {
  display: grid;
}

.p-subOutdoor__itemList {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2.25;
  letter-spacing: 0.075em;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .p-subOutdoor__itemList {
    font-size: 0.875rem;
    line-height: 2.1428571429;
  }
}

.p-subOutline__dl {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
}
@media screen and (max-width: 767px) {
  .p-subOutline__dl {
    grid-template-columns: 1fr;
  }
}

.p-subOutline__row {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
  gap: 100px;
  gap: 6.25rem;
  border-bottom: 1px solid #dcdcdc;
  padding-block: 23px;
  padding-block: 1.4375rem;
}
.p-subOutline__row.--center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-subOutline__row {
    grid-template-columns: 1fr;
    grid-column: initial;
    gap: 0.625rem;
    padding-block: 1.25rem;
  }
}

.p-subOutline__dt,
.p-subOutline__dd {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .p-subOutline__dt,
.p-subOutline__dd {
    font-size: 0.875rem;
  }
}

.p-subOutline__dt {
  font-weight: 500;
}

.p-subOutline__dd {
  color: #000000;
}

.p-subOutline__footer {
  -webkit-margin-before: 54px;
          margin-block-start: 54px;
  -webkit-margin-before: 3.375rem;
          margin-block-start: 3.375rem;
  display: grid;
  grid-template-columns: 11.9375rem 1fr;
  gap: 100px;
  gap: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-subOutline__footer {
    -webkit-margin-before: 3.125rem;
            margin-block-start: 3.125rem;
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}

.p-subOutline__footerHead {
  display: grid;
  gap: 27px;
  gap: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .p-subOutline__footerHead {
    gap: 1.25rem;
  }
}

.p-subOutline__footerLogo {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: #080e34;
  padding-block: 3px;
  padding-block: 0.1875rem;
  padding-inline: 10px;
  padding-inline: 0.625rem;
  text-align: center;
  border-radius: 21px;
}
@media screen and (max-width: 767px) {
  .p-subOutline__footerLogo {
    font-size: 1rem;
    line-height: 1.875;
  }
}

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

.p-subOutline__footerList {
  display: grid;
  gap: 30px;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-subOutline__footerList {
    gap: 1.25rem;
  }
}

.p-subOutline__footerItem {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.025em;
  color: #000000;
  text-indent: -1.5em;
  -webkit-padding-start: 1.5em;
          padding-inline-start: 1.5em;
}
@media screen and (max-width: 767px) {
  .p-subOutline__footerItem {
    font-size: 0.875rem;
  }
}

.p-subResult__dl {
  border: 1px solid #dcdcdc;
}
@media screen and (max-width: 767px) {
  .p-subResult__dl {
    overflow-x: auto;
  }
}

.p-subResult__row {
  display: grid;
  grid-template-columns: 63% 21% 1fr;
  border-top: 1px solid #dcdcdc;
}
@media screen and (max-width: 767px) {
  .p-subResult__row {
    width: 50rem;
  }
}
.p-subResult__row.--head {
  background-color: #f0f1f7;
  border-top: none;
}
.p-subResult__row.--head .p-subResult__dt,
.p-subResult__row.--head .p-subResult__dd {
  color: #0b134a;
  font-weight: 500;
  padding-block: 16px;
  padding-block: 1rem;
}
.p-subResult__row.--head .p-subResult__dd {
  padding-inline: 20px;
  padding-inline: 1.25rem;
}

.p-subResult__dt,
.p-subResult__dd {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.025em;
  color: #000000;
  padding-block: 12px;
  padding-block: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-subResult__dt,
.p-subResult__dd {
    font-size: 0.875rem;
    padding-inline: 0.625rem;
    padding-block: 0.3125rem;
  }
}

.p-subResult__dt {
  padding-inline: 20px;
  padding-inline: 1.25rem;
}

.p-subResult__dd {
  border-left: 1px solid #dcdcdc;
  padding-inline: 30px 20px;
  padding-inline: 1.875rem 1.25rem;
}

.p-subSec {
  padding-block: 168px 158px;
  padding-block: 10.5rem 9.875rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-subSec {
    padding-block: 6.25rem;
  }
}
.p-subSec.--gray {
  background-color: #f0f1f7;
}
.p-subSec.--facilities {
  padding-block: 130px 182px;
  padding-block: 8.125rem 11.375rem;
}
@media screen and (max-width: 767px) {
  .p-subSec.--facilities {
    padding-block: 6.25rem 9.375rem;
  }
}
.p-subSec.--result {
  padding-block: 0 160px;
  padding-block: 0 10rem;
}
@media screen and (max-width: 767px) {
  .p-subSec.--result {
    padding-block: 0 9.375rem;
  }
}

.p-subSec__head {
  -webkit-padding-after: 45px;
          padding-block-end: 45px;
  -webkit-padding-after: 2.8125rem;
          padding-block-end: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-subSec__head {
    -webkit-padding-after: 1.875rem;
            padding-block-end: 1.875rem;
  }
}

.p-subSec__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.5;
  font-weight: 700;
}@media screen and (max-width: 767px) {
  .p-subSec__title {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.p-subSec__subTitle {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-margin-before: 15px;
          margin-block-start: 15px;
  -webkit-margin-before: 0.9375rem;
          margin-block-start: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-subSec__subTitle {
    font-size: 0.875rem;
    -webkit-margin-before: 0.625rem;
            margin-block-start: 0.625rem;
  }
}

.p-subSec__mid {
  -webkit-padding-before: 50px;
          padding-block-start: 50px;
  -webkit-padding-before: 3.125rem;
          padding-block-start: 3.125rem;
  border-top: 1px solid #dcdcdc;
}
@media screen and (max-width: 767px) {
  .p-subSec__mid {
    -webkit-padding-before: 1.875rem;
            padding-block-start: 1.875rem;
  }
}

.p-subSec__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.075em;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .p-subSec__text {
    font-size: 0.875rem;
  }
}

.p-subSec__body {
  -webkit-margin-before: 60px;
          margin-block-start: 60px;
  -webkit-margin-before: 3.75rem;
          margin-block-start: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-subSec__body {
    -webkit-margin-before: 2.5rem;
            margin-block-start: 2.5rem;
  }
}

/* -----------------------------------------------------------------
  タブ切り替え
----------------------------------------------------------------- */
.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 {
  background: #fff;
  padding-block: 170px 170px;
  padding-block: 10.625rem 10.625rem;
}
@media screen and (max-width: 767px) {
  .p-topAbout {
    padding-block: 8.125rem 6.25rem;
  }
}

.p-topAbout__contents {
  display: grid;
  grid-template-columns: 50vw 1fr;
  -webkit-margin-start: calc(50% - 50vw);
          margin-inline-start: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .p-topAbout__contents {
    grid-template-columns: 1fr;
    -webkit-margin-start: initial;
            margin-inline-start: initial;
    gap: 5rem;
  }
}

.p-topAbout__textWrap {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-padding-start: 95px;
          padding-inline-start: 95px;
  -webkit-padding-start: 5.9375rem;
          padding-inline-start: 5.9375rem;
}
@media screen and (max-width: 767px) {
  .p-topAbout__textWrap {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-padding-start: initial;
            padding-inline-start: initial;
  }
}

.p-topAbout__body {
  -webkit-margin-before: 80px;
          margin-block-start: 80px;
  -webkit-margin-before: 5rem;
          margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-topAbout__body {
    -webkit-margin-before: 3.75rem;
            margin-block-start: 3.75rem;
  }
}

.p-topAbout__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-topAbout__items {
    gap: 0.625rem;
  }
}

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

.p-topAbout__text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  -webkit-margin-before: 50px;
          margin-block-start: 50px;
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-topAbout__text {
    font-size: 1rem;
    line-height: 1.875;
    -webkit-margin-before: 2.5rem;
            margin-block-start: 2.5rem;
  }
}

.p-topAbout__bottom {
  text-align: right;
  -webkit-margin-before: 50px;
          margin-block-start: 50px;
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-topAbout__bottom {
    text-align: center;
    -webkit-margin-before: 3.75rem;
            margin-block-start: 3.75rem;
  }
}

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

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

.p-topContact {
  padding-block: 150px 150px;
  padding-block: 9.375rem 9.375rem;
  background: url(../images/common/img_contact_back.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-topContact {
    padding-block: 9.625rem 7.5rem;
  }
}

.p-topContact__head {
  text-align: center;
}

.p-topContact__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.875;
  color: #fff;
  text-align: center;
  letter-spacing: 0.075em;
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-topContact__text {
    -webkit-margin-before: 2.1875rem;
            margin-block-start: 2.1875rem;
  }
}

.p-topContact__body {
  -webkit-margin-before: 37px;
          margin-block-start: 37px;
  -webkit-margin-before: 2.3125rem;
          margin-block-start: 2.3125rem;
}
@media screen and (max-width: 767px) {
  .p-topContact__body {
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
  }
}

.p-topContact__items {
  max-width: 865px;
  max-width: 54.0625rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  gap: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-topContact__items {
    grid-template-columns: 1fr;
    gap: 1.0625rem;
  }
}

.p-topContact__item {
  color: #fff;
  border: 1px solid;
  padding-block: 40px 50px;
  padding-block: 2.5rem 3.125rem;
  padding-inline: 20px;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-topContact__item {
    padding-block: 2.5rem;
    padding-inline: 0.625rem;
    min-height: 12.0625rem;
  }
}

.p-topContact__itemTitle {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.875;
  letter-spacing: 0.025em;
  font-weight: 700;
  text-align: center;
}

.p-topContact__tel {
  font-family: "Lato", sans-serif;
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: 0.025em;
  font-weight: 700;
  -webkit-margin-before: 15px;
          margin-block-start: 15px;
  -webkit-margin-before: 0.9375rem;
          margin-block-start: 0.9375rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topContact__tel {
    -webkit-margin-before: 0.625rem;
            margin-block-start: 0.625rem;
  }
}

.p-topContact__caption {
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.075em;
  text-align: center;
  -webkit-margin-before: 10px;
          margin-block-start: 10px;
  -webkit-margin-before: 0.625rem;
          margin-block-start: 0.625rem;
  text-align: center;
}

.p-topContact__btn {
  -webkit-margin-before: 10px;
          margin-block-start: 10px;
  -webkit-margin-before: 0.625rem;
          margin-block-start: 0.625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topContact__btn {
    -webkit-margin-before: 0.625rem;
            margin-block-start: 0.625rem;
  }
}

.p-topImage {
  aspect-ratio: 1500/771;
}
@media screen and (max-width: 767px) {
  .p-topImage {
    aspect-ratio: 380/604;
  }
}

.p-topImage__back {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  z-index: -4;
}
.p-topImage__back img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-topMain {
  height: 100dvh;
  min-height: 700px;
  min-height: 43.75rem;
}
@media screen and (max-width: 767px) {
  .p-topMain {
    min-height: 18.75rem;
  }
}

.p-topMain__inner {
  height: 100%;
}

.p-topMain__wrapper {
  position: relative;
  height: 100%;
}

.p-topMain__contents {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}

.p-topMain__titleJp {
  font-size: 48px;
  font-size: 3rem;
  line-height: 1.3333333333;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-topMain__titleJp {
    font-size: 1.875rem;
    line-height: 1.6;
  }
}

.p-topMain__body {
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-topMain__body {
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
  }
}

.p-topMain__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-topMain__text {
    font-size: 1rem;
    line-height: 1.875;
  }
}
.p-topMain__text + .p-topMain__text {
  -webkit-margin-before: 35px;
          margin-block-start: 35px;
  -webkit-margin-before: 2.1875rem;
          margin-block-start: 2.1875rem;
}

.p-topMain__bottom {
  -webkit-margin-before: 80px;
          margin-block-start: 80px;
  -webkit-margin-before: 5rem;
          margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-topMain__bottom {
    -webkit-margin-before: 3.125rem;
            margin-block-start: 3.125rem;
  }
}

.p-topMain__back {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}
.p-topMain__back img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.p-topMain__back .swiper {
  height: 100%;
}
.p-topMain__back.is_close {
  opacity: 0;
}

/* トップMV
------------------------------------------------ */
.p-topMv {
  height: 100dvh;
  min-height: 700px;
  min-height: 43.75rem;
  position: relative;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .p-topMv {
    min-height: 18.75rem;
  }
}

.p-topMv__inner {
  height: inherit;
  min-height: inherit;
}

.p-topMv__contents {
  position: relative;
  height: inherit;
  min-height: inherit;
}

.p-topMv__main {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
.p-topMv__subTitle {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #fff;
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-topMv__subTitle {
    font-size: 0.75rem;
  }
}

.p-topMv__title {
  font-size: 48px;
  font-size: 3rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.3333333333;
}
@media screen and (max-width: 767px) {
  .p-topMv__title {
    font-size: 2rem;
    line-height: 1.34375;
  }
}

.p-topMv__img {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}
.p-topMv__img.is_close {
  opacity: 0;
}
.p-topMv__img:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #111;
  z-index: -2;
}
.p-topMv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.p-topMv__img .swiper {
  height: 100%;
}

.p-topMv__scroll {
  display: grid;
  place-items: center;
  position: absolute;
  width: 139px;
  width: 8.6875rem;
  aspect-ratio: 139/143;
  bottom: 70px;
  bottom: 4.375rem;
  right: 0;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-topMv__scroll {
    width: 5.5625rem;
    right: 0.9375rem;
    bottom: 7.8125rem;
  }
}

.p-topMv__scroll-angle {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.p-topMv__scroll-text {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: scroll 20s linear infinite;
          animation: scroll 20s linear infinite;
}
.p-topMv__scroll-text img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.p-topNews {
  background: #fff;
  padding-block: 150px 150px;
  padding-block: 9.375rem 9.375rem;
}
@media screen and (max-width: 767px) {
  .p-topNews {
    padding-block: 8.125rem 6.875rem;
  }
}

.p-topNews__contents {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  gap: 115px;
  gap: 7.1875rem;
}
@media screen and (max-width: 767px) {
  .p-topNews__contents {
    grid-template-columns: 1fr;
    gap: 3.9375rem;
  }
}

.p-topNews__body {
  -webkit-margin-before: 28px;
          margin-block-start: 28px;
  -webkit-margin-before: 1.75rem;
          margin-block-start: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-topNews__body {
    -webkit-margin-before: initial;
            margin-block-start: initial;
  }
}

.p-topNews__bottom {
  text-align: right;
  -webkit-margin-before: 110px;
          margin-block-start: 110px;
  -webkit-margin-before: 6.875rem;
          margin-block-start: 6.875rem;
}
@media screen and (max-width: 767px) {
  .p-topNews__bottom {
    text-align: center;
    -webkit-margin-before: 3.125rem;
            margin-block-start: 3.125rem;
  }
}

.p-topRecruit {
  background: #080e34;
  padding-block: 230px 517px;
  padding-block: 14.375rem 32.3125rem;
  overflow-x: clip;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-topRecruit {
    padding-block: 9.375rem 8.125rem;
  }
}

.p-topRecruit__contents {
  display: grid;
  grid-template-columns: 50vw 1fr;
  -webkit-margin-start: calc(50% - 50vw);
          margin-inline-start: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .p-topRecruit__contents {
    grid-template-columns: 1fr;
    -webkit-margin-start: initial;
            margin-inline-start: initial;
  }
}

.p-topRecruit__textWrap {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-padding-start: 158px;
          padding-inline-start: 158px;
  -webkit-padding-start: 9.875rem;
          padding-inline-start: 9.875rem;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-topRecruit__textWrap {
    -webkit-padding-start: 0;
            padding-inline-start: 0;
    display: contents;
  }
}

.p-topRecruit__textWrapInner {
  position: sticky;
  top: 120px;
  top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-topRecruit__textWrapInner {
    position: static;
    display: contents;
  }
}

.p-topRecruit__head {
  display: grid;
  gap: 50px;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-topRecruit__head {
    gap: 3.125rem;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.p-topRecruit__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.025em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-topRecruit__text {
    font-size: 1rem;
    line-height: 1.875;
  }
}

.p-topRecruit__body {
  -webkit-margin-before: 80px;
          margin-block-start: 80px;
  -webkit-margin-before: 5rem;
          margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .p-topRecruit__body {
    -webkit-margin-before: 1.5625rem;
            margin-block-start: 1.5625rem;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.p-topRecruit__nav {
  display: grid;
}

.p-topRecruit__navItem {
  border-bottom: 1px solid #fff;
  padding-block: 21px;
  padding-block: 1.3125rem;
}
.p-topRecruit__navItem a {
  padding-block: 21px;
  padding-block: 1.3125rem;
  display: grid;
  gap: 5px;
  gap: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-topRecruit__navItem a {
    padding-block: 1.5625rem;
  }
}

.p-topRecruit__navTitle {
  font-family: "Lato", sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.025em;
  color: #fff;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-topRecruit__navTitle {
    font-size: 1.5rem;
    line-height: 1;
  }
}

.p-topRecruit__navText {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6666666667;
  letter-spacing: 0.025em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-topRecruit__navText {
    font-size: 1rem;
    line-height: 1.875;
  }
}

.p-topRecruit__bottom {
  -webkit-margin-before: 80px;
          margin-block-start: 80px;
  -webkit-margin-before: 5rem;
          margin-block-start: 5rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-topRecruit__bottom {
    -webkit-margin-before: 3.125rem;
            margin-block-start: 3.125rem;
    text-align: center;
  }
}

.p-topRecruit__imgWrap {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;  -webkit-padding-after: 500px;
          padding-block-end: 500px;
  -webkit-padding-after: 31.25rem;
          padding-block-end: 31.25rem;
}
@media screen and (max-width: 767px) {
  .p-topRecruit__imgWrap {
    position: relative;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-padding-after: initial;
            padding-block-end: initial;
    -webkit-padding-before: 3.5rem;
            padding-block-start: 3.5rem;
  }
}

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

.p-topRecruit__textBg {
  font-family: "Lato", sans-serif;
  font-size: 250px;
  font-size: 15.625rem;
  line-height: 1;
  color: #9da0b4;
  text-transform: uppercase;
  white-space: nowrap;
  position: absolute;
  bottom: 75px;
  bottom: 4.6875rem;
  right: 0;
  width: 100%;
  -webkit-animation: slide 20s linear infinite;
          animation: slide 20s linear infinite;
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-topRecruit__textBg {
    font-size: 5.3125rem;
    bottom: -1.25rem;
  }
}

@-webkit-keyframes slide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes slide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.p-topWorks {
  background: #f0f1f7;
  padding-block: 140px 140px;
  padding-block: 8.75rem 8.75rem;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .p-topWorks {
    padding-block: 6.875rem 7.5rem;
  }
}

.p-topWorks__head {
  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;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-topWorks__head {
    -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;
    gap: 3.4375rem;
  }
}

.p-topWorks__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-topWorks__text {
    font-size: 1rem;
    line-height: 1.875;
  }
}

.p-topWorks__body {
  -webkit-margin-before: 50px;
          margin-block-start: 50px;
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .p-topWorks__body {
    -webkit-margin-before: 3.125rem;
            margin-block-start: 3.125rem;
    width: auto;
    width: initial;
    -webkit-margin-start: initial;
            margin-inline-start: initial;
  }
}

.p-topWorks__item {
  display: block;
}

.p-topWorks__itemImg {
  aspect-ratio: 553/396;
}
.p-topWorks__itemImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-topWorks__itemTitle {
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3333333333;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-topWorks__itemTitle {
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
  }
}

.p-topWorks__itemCat {
  font-size: 15px;
  font-size: 0.9375rem;
  -webkit-margin-before: 5px;
          margin-block-start: 5px;
  -webkit-margin-before: 0.3125rem;
          margin-block-start: 0.3125rem;
}

.p-topWorks__bottom {
  -webkit-margin-before: 50px;
          margin-block-start: 50px;
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topWorks__bottom {
    -webkit-margin-before: 3.4375rem;
            margin-block-start: 3.4375rem;
  }
}


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

/*RECRUIT*/
.p-subContents {
  padding-block: 10rem 0 10rem;
}
.p-recruitMv.l-topContents {
margin-block-start:0;
padding-block: 15rem 0;
height:100vh;
}
.p-recruitMv {
background: url(../../assets/images/sub/recruit_mv.jpg) no-repeat center center/cover;
font-family: "Noto Sans JP", sans-serif;
}
.p-recruitMv_main {
padding: 9rem 25px 9rem;
color:#fff;
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
}

.p-recruitMv_ttl {
font-weight:bold;
font-size:1.75rem;
}
.p-recruitMv_txt {
margin-top:1rem;
font-size:1.125rem;
font-weight:bold;
line-height:3;
}
.__recruit_ttl_center {
text-align: center;
margin-bottom:4rem;
}
.__ttl_center {
text-align: center;
margin-bottom:4rem;
}

@media screen and (max-width: 767px) {
  .p-recruitMv_main {
  padding: 9rem 25px 9rem;
  display: block;
  }
  .p-recruit-subMv__head {
    margin-bottom: 4rem;
  }
  .p-recruitMv_txt {
    font-size: 1rem;
    line-height: 2;
  }
  .p-recruitMv_ttl {
  font-size:1.5rem;
  }
  
}
@media screen and (max-width: 600px) {
  .p-subContents {
  padding-block: 6rem 0 6rem;
  }
  .__recruit_ttl_center {
    margin-bottom: 3rem;
  }
  .p-recruitMv.l-topContents {
    margin-block-start: 0;
    padding-block: 10rem 0;
      height:auto;
  }
  .p-recruitMv_main {
  padding: 5rem 1rem 7rem;
  }
}

/*ABOUT*/
.p-recruit-About {
font-family: "Noto Sans JP", sans-serif;
padding-block: 8.5rem 9.375rem;
}
.p-recruit-About__contents {
  display: flex;
  grid-template-columns: 1fr 22.0625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6.25rem;
          padding-inline-end: 3.125rem;
}


.p-recruit-About__textContent p {
margin-bottom:1rem;
}
.p-recruit-About__textContent p:last-child {
margin-bottom:0;
}
.p-recruit-About__img img {
width: 100%;
height: auto;
aspect-ratio: 4/ 3;
/*aspect-ratio: 353 / 387;*/
object-fit: cover;
object-position: center;
}

.p-recruit-About__textContent {
width:55%;
}
.p-recruit-About__imgContent {
width:45%;
flex: 1;
margin-right: calc(50% - 50vw);
}


@media screen and (max-width: 767px) {
  .p-recruit-About__contents {
    display: block;
    grid-template-columns: 1fr;
    gap: 1.875rem;
    -webkit-padding-end: initial;
            padding-inline-end: initial;
  }
  .p-recruit-About__textContent {
    width: auto;    
  }
  .p-recruit-About__imgContent {
  width:auto;
  margin-top: 3rem;
  margin-right: 0;
  }
  .p-recruit-About__textContent {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (max-width:600px) {
  .p-recruit-About {
    padding-block: 7rem 7rem;
  }
}

/*FEATURE*/
.p-recruitFeature_list {
display: flex;
gap: 5rem;
justify-content: space-between;
margin-top: 3rem;
}
.p-recruitFeature_list_item {
  width: 32%;
}

.p-recruitFeature_list_ttl {
  font-size: 1.35rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  color: #0b134a;
}
.p-recruitFeature_list_pic {
  border-radius: 50% 50%;
  overflow: hidden;
  margin-bottom: 2rem;
}


@media screen and (max-width: 767px) {
  .p-recruitFeature_list {
  display: block;
  }
  .p-recruitFeature_list_pic {
  max-width: 400px;
  margin: 0 auto 2rem;
  }
  .p-recruitFeature_list li {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 600px) {

  .p-recruitFeature_list_pic {
  width: 80%;
  }
}


/*VISION*/
.p-subContents.--recruit_navy {
  background-color: #080e34;
  color: #fff;
}
.p-recruitVision_mes_ttl {
  margin-bottom: 4rem;
}
.p-recruitVision_wrap {
display: flex;
gap: 3rem;
justify-content: space-between;
align-items: center;
}
.p-recruitVision_mes {
width: 58%;
}
.p-recruitVision_pic {
width: 40%;
}
.p-recruitVision_mes_txt p {
margin-top: 2rem;
line-height: 1.8;
}
.p-recruitVision_mes_txt p:first-child {
margin-top: 0;
}

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

  .p-recruitVision_wrap {
  display: block;
  }
  .p-recruitVision_mes {
  width: auto;
  }
  .p-recruitVision_pic {
  width:auto;
  margin-top: 3rem;
  }

}

/*ENVIRONMENT*/
.p-recruitEnvironment_main {
display: flex;
gap: 3rem;
justify-content: space-between;
margin-bottom: 5rem;
}
.p-recruitEnvironment_main:last-child {
margin-bottom: 0;
}
.p-recruitEnvironment_main_pic {
width: 45%;
}
.p-recruitEnvironment_main_txt {
width: 50%;
}
.p-recruitEnvironment_main_txt p {
margin-top: 1.5rem;
line-height: 1.8;
}
.p-recruitEnvironment_main_txt p:first-child {
margin-top: 0;
}
.p-recruitEnvironment_main.p-recruitEnvironment_reverse {
  flex-direction: row-reverse;
}


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

  .p-recruitEnvironment_main {
  display: block;
  }
  .p-recruitEnvironment_main_txt {
    width: auto;
  }
  .p-recruitEnvironment_main_pic {
    width: 90%;
    margin: 3rem auto 0;
  }

}

/*Interview*/
.p-recruitInterview_list_item {
  margin-bottom: 7rem;
}
.p-recruitInterview_list_item:last-child {
  margin-bottom: 0;
}
.p-recruitInterview_list_mv {
  margin-bottom: 3rem;
  position: relative;
}
.p-recruitInterview_list_main {
  max-width: 1000px;
  margin: 0 auto;
}
.p-recruitInterview_list_ttl {
  color: #0b134a;
  font-weight: bold;
  font-size:1.215rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.p-recruitInterview_list_message {
  background: #fff;
  border:solid 1px  #0b134a;
  padding: 2.5rem;
  margin-top: 3rem;
}
.p-recruitInterview_list_message_ttl {
  text-align: center;
  font-weight: bold;
  font-size:1.215rem;
  color: #0b134a;
  margin-bottom: 1rem;
}
.p-recruitInterview_list_mv_head_pos {
text-align:center;
}
.p-recruitInterview_list_mv_head {
display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 20%;
    background:rgba(11,19,74,0.9);
    color: #fff;
    padding: 2rem;
    position: absolute;
    right: 0;
    bottom: 0;
    }
.p-recruitInterview_list_mv_ttl {
  margin-bottom: 1rem;
    font-weight: bold;
  font-size:1.5rem;
}
.p-recruitInterview_list_message p {
margin-top: 1rem;
}
.p-recruitInterview_list_mv_pic img {
aspect-ratio: 16 / 8;
  object-fit: cover;
}


@media screen and (max-width: 767px) {
  .p-recruitInterview_list_mv_pic img {
    aspect-ratio: 5 / 3;
  }
  .p-recruitInterview_list_ttl {
    font-size: 1.125rem;
  }
  .p-recruitInterview_list_mv_ttl {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
  .p-recruitInterview_list_mv_head {
  width: 100%;
  height: 30%;
  bottom: 0;
  top:auto;
  padding: 1rem;
    text-align: center;
    display: block;
    position: relative;
  }
  .p-recruitInterview_list_message {
    padding: 1.5rem;
  }
  .p-recruitInterview_list_item {
    margin-bottom: 5rem;
  }
}

@media screen and (max-width: 600px) {
  .p-recruitInterview_list_ttl {
    font-size: 1rem;
  }
  .p-recruitInterview_list_mv_ttl {
    font-size: 1rem;
  }
}

/*Number*/
.p-recruitAnumber_data_list {
  border-top:1px solid #fff;
  padding: 4rem 0;
display:grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
}
.p-recruitAnumber_data_item {
  text-align: center;
  border-right:1px solid #fff;
    padding: 2rem 1.5rem;
}
.p-recruitAnumber_data_item:last-child {
  border: none;
}
.p-recruitNumber {
  color: #fff;
  background:url(../../assets/images/sub/rectuit_number_bg.jpg) no-repeat center center;
  background-size: cover;
}
.p-recruitAnumber_data_ttl {
    margin-bottom: 0.5rem;
    font-weight: bold;
  font-size:1.125rem;
}
.p-recruitAnumber_data_icn {
  max-width: 4rem;
  margin: 0 auto 1rem;
}
.p-recruitAnumber_data_big {
  font-size:4rem;
  font-weight: bold;
  line-height: 1;
}
.p-recruitAnumber_data_big span {
    font-size:1.5rem;
    margin-left: 0.5rem;
}
.p-recruitAnumber_data_description {
margin-top: 0.5rem;
  font-weight: bold;
}

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

  .p-recruitAnumber_data_list {
    padding: 2rem 0;
  }
  .p-recruitAnumber_data_item {
  padding: 2rem 0;
  }
  .p-recruitAnumber_data_list {
    grid-template-columns: 1fr 1fr;
  }
  .p-recruitAnumber_data_item {
  border-right:none;
  border-bottom:1px solid #fff;
  }
  .p-recruitAnumber_data_item:nth-child(1) {
  border-bottom:1px solid #fff;
  }
  .p-recruitAnumber_data_item:nth-child(2) {
  border-right:none;
  border-bottom:1px solid #fff;
  }
    .p-recruitAnumber_data_item:nth-child(3) {
  border-right:none;
  border-bottom:none;
  }
  .p-recruitAnumber_data_big {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 600px) {

  .p-recruitAnumber_data_description {
    font-size: 0.875rem;
  }
  .p-recruitAnumber_data_big {
    font-size: 3rem;
  }
  .p-recruitAnumber_data_ttl {
    font-size: 1rem;
  }
  .p-recruitAnumber_data_list {
    gap: 0 2rem;
    padding: 0rem 0;
  }

}
/*WELFARE*/
.p-recruitWelfare_list_ttl {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: bold;
}
.p-recruitWelfare_list {
display: flex;
gap: 4rem;
justify-content: space-between;
}
.p-recruitWelfare_list_wrap {
display: flex;
gap: 2rem;
justify-content: space-between;
}

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

  .p-recruitWelfare_list {
  display: block;
  gap: 4rem;
  justify-content: space-between;
  }
  .p-recruitWelfare_list_wrap {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
  }
  .p-recruitWelfare_list_pic {
    text-align: center;
  }
  .p-recruitWelfare_list_pic img {
    width: 60%;
     margin: 0 auto;
  }
  .p-recruitWelfare_list_item {
    margin-top: 2rem;
  }
  .p-recruitWelfare_list_item:first-child {
    margin-top: 0;
  }
}

@media screen and (max-width: 600px) {
  .p-recruitWelfare_list_wrap {
  gap: 0rem;  
  }
}

/*REQUIREMENTS*/
.p-recruit_requirements_table {
width: 100%;
max-width: 900px;
margin: 0 auto;
border-top: 1px solid #ccc;
}
.p-recruit_requirements_table tr {
  border-bottom: 1px solid #ccc;
  display: block;
}
.p-recruit_requirements_table tr th{
  padding:1.5rem 1rem;
  font-weight:bold;
  width:10rem;
  text-align: left;
}
.p-recruit_requirements_table tr td {
    padding:1.5rem 1rem;
}
.p-recruit_requirements_table tr td span {
  font-weight: bold;
}
.p-recruit_requirements_ttl_sub {
  font-size: 1.75rem;
  font-weight:500 ;
  margin: 4rem auto 2rem;
  text-align: center;
}
.p-recruit_requirements_contact {
  margin-top: 7rem;
background: #f0f1f7;
padding:3rem 2rem ;
}
.p-recruit_requirements_contact_inr {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.p-recruit_requirements_contact_btn {
max-width: 290px;
margin: 0 auto;
}
.p-recruit_requirements_contact_tel {
  font-weight: 600;
font-size: 1.35rem;
margin: 1rem 0;
}
.p-recruit_requirements_contact_ttl {
    font-size: 1.5rem;
  font-weight:bold ;
  margin: 0 auto 1rem;
  text-align: center;
}
.p-recruit_requirements_contact_btn a {
display: block;
padding: 1rem 0.2rem;
font-weight: 600;
font-size: 1.125rem;
border-bottom: 2px solid #0b134a;
position: relative;
text-align: left;
    overflow: hidden;
}
.p-recruit_requirements_contact_btn a:hover .p-recruit_requirements_contact_btn_arrow {
  right: 0;
  transition: all 0.3s ;
  animation: slide-and-return 0.6s ease forwards;
}
 @keyframes slide-and-return {
      0% {
        transform: translateX(0);
      }
      50% {
        transform: translateX(100%);
        opacity: 0;
      }
      51% {
        transform: translateX(-100%);
        opacity: 0;
      }
      100% {
        transform: translateX(0);
        opacity: 1;
      }
  }
.p-recruit_requirements_contact_btn_arrow {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 2px;
  border-radius: 9999px;
  background-color: #0b134a;
  position: absolute;
    right: 0.5rem;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.3s ;

}
.p-recruit_requirements_contact_btn_arrow::before,
.p-recruit_requirements_contact_btn_arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 12px;
  height: 2px;
  border-radius: 9999px;
  background-color: #0b134a;
  transform-origin: calc(100% - 1px) 50%;
}
.p-recruit_requirements_contact_btn_arrow::before {
  transform: rotate(45deg);
}

.p-recruit_requirements_contact_btn_arrow::after {
  transform: rotate(-45deg);
}

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

  .p-recruit_requirements_table tr th{
    padding: 1rem 0 1rem 0.5em;
    width:auto;
         display: block;
         background: #f0f1f7;
  }
  .p-recruit_requirements_table tr td {
     padding: 1rem 1rem 1rem 0.5rem;
       width:auto;
       display: block;
  }
  .p-recruit_requirements_contact {
    padding: 3rem 1rem;
  }
  .p-recruit_requirements_contact_ttl {
    font-size: 1.215rem;
  }
  .p-recruit_requirements_contact_btn a {
      font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit_requirements_contact {
    margin-top: 5rem;
  }
}

/*contact*/
.p-subContact {
padding:2rem 0 4rem;
margin: 0 0 0 0;
}
.p-subContents__title.__contact_ttl {
  font-size: 2rem;
}
.p-subContact {
}
.p-subContact__tel {
  font-size: 2rem;
  font-weight: bold;
}
.p-subContact__tel span{
display: block;
  font-size: 1rem;
  font-weight: normal;
}
.p-subContact__tel a {
display: inline-block;
}
.p-subContact__fax {
  font-size: 2rem;
  font-weight: bold;
}
.p-subContact__fax a {
display: inline-block;
}
.p-subContact__mail {
  font-size: 1.125rem;
  font-weight: bold;
}
.p-subContact__mail a {
display: inline-block;
}
.p-subContact__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap:2rem;
}
.p-subContact__list li {
border: 1px solid #ccc;
border-radius: 6px 6px;
}
.p-subContact__list__sub {
  text-align: center;
}
.p-subContact__list__sub dt {
  font-size: 1.215rem;
  font-weight: bold;
   background: #e2f1fe;
   padding: 1.5rem 1rem;
   border-radius: 6px 6px 0 0;
}
.p-subContact__list__sub dd {
padding: 2rem 1rem 3rem 1rem;
}
.p-subContact__tel_small {
    font-size: 1.125rem;
    display: inline !important;
    font-weight: bold !important;
    margin-right: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-subContact__list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 600px) {
  .p-subContents__title.__contact_ttl {
    font-size: 1.5rem;
  }
  .p-subContact__list {
    grid-template-columns: 1fr;
    gap:2rem;
  }
  .p-subContact__tel {
    font-size: 2rem;
  }
  .p-subContact__fax {
    font-size: 2rem;
  }
  .p-subContact__mail {
    font-size: 1.125rem;
  }
  .p-subContact__list__sub dd {
  padding: 2rem 1rem 3rem 1rem;
  }
}


/*PRIVACY*/
.p-subContents__title_privacy {
  font-size: 1.5rem;
}
.wrapHINAGATA h3 {
margin:1.5em 0;
font-size:1.125rem;
padding:1rem 0;
border-bottom:1px solid #ccc;
font-weight:600;
}
div.wrapHINAGATA p{
	margin:1rem 0;
	line-height:1.5;
}
div.wrapHINAGATA ul{
	margin:20px 0 0 30px;
}
div.wrapHINAGATA ul li{
	list-style:outside decimal;
	line-height:140%;
	margin:10px 0 0 0;
}
div.wrapHINAGATA ul li ul{
	margin:15px 0 10px 10px;
}
div.wrapHINAGATA ul li ul li{
	list-style:outside none;
	margin-left:20px;
	text-indent:-1.5em;
}
div.wrapHINAGATA ul.child{
	margin:15px 0 0 10px;
}
div.wrapHINAGATA ul.child li{
	list-style:outside none;
	margin-left:45px;
	text-indent:-1.7em;
}
div.wrapHINAGATA p.tR{
	margin:30px 0 0 0;
	font-size:0.95em;
	line-height:140%;
	text-align:right;
}
div.wrapHINAGATA ul li ul li ol li{
	list-style:outside lower-roman;
	margin-left:20px;
	text-indent:-0.2em;
}
div.wrapHINAGATA ol{
	margin:20px 0 0 40px;
}
div.wrapHINAGATA ol li{
	list-style:outside decimal;
	line-height:140%;
	margin:10px 0 0 0;
}
div.wrapHINAGATA ol li ol{
margin-bottom: 20px;
}
div.wrapHINAGATA ol li ol li{
font-size: 100%;
}