@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: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.075em;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  /* Safari */
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
/* スクロールエフェクト（ピントが合うフェード）
------------------------------------------------ */
/* 初期状態: ボケた状態 */
.fadeFocus {
  opacity: 0;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="8" /></filter></svg>#filter');
  -webkit-filter: blur(8px);
          filter: blur(8px);
  -webkit-transition: opacity 1.2s ease, -webkit-filter 1.2s ease;
  transition: opacity 1.2s ease, -webkit-filter 1.2s ease;
  transition: opacity 1.2s ease, filter 1.2s ease;
  transition: opacity 1.2s ease, filter 1.2s ease, -webkit-filter 1.2s ease;
}

/* 表示状態: ピントが合った状態 */
.fadeFocus.is-visible {
  opacity: 1;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
  -webkit-filter: blur(0);
          filter: blur(0);
}

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

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

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

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

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

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

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

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

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

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

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

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

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0 8px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ハンバーガーボタン
------------------------------------------------ */
.c-hamburger {
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  border-radius: 50%;
  z-index: 10;
  padding: 0 0;
}
.c-hamburger span {
  position: relative;
  display: block;
  height: 2px;
  height: 0.125rem;
  width: 100%;
  background-color: #111;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .c-hamburger span {
    height: 0.125rem;
    border-radius: 5px;
  }
}

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

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

.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.4375rem;
  }
}

.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.4375rem;
  }
}

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

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

.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: 1150px;
  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: 800px;
  max-width: 50rem;
}

.l-main {
  position: relative;
  overflow: hidden;
}

.l-topCompany {
  margin-top: 30px;
  margin-top: 1.875rem;
}

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

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

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

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

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

/* -----------------------------------------------------------------
  swiper カスタマイズ
----------------------------------------------------------------- */
/* スライドの動き等速 */
/* 前ページ、次ページボタン共通のスタイル */
/* -----------------------------------------------------------------
  ドロワーメニュー
----------------------------------------------------------------- */
.p-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100dvh;
  overflow-y: auto;
  z-index: 14;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  background-color: #fff;
}

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

.p-drawer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100dvh;
  padding: 100px 40px 60px;
  padding: 6.25rem 2.5rem 3.75rem;
}

/* ロゴ
------------------------------------------------ */
.p-drawer__logo {
  margin-bottom: 48px;
  margin-bottom: 3rem;
}

.p-drawer__logo a {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #111;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-drawer__logo a:hover {
  opacity: 0.6;
}

/* ナビゲーション
------------------------------------------------ */
.p-drawer__navigation-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
  gap: 1.75rem;
  width: 100%;
  max-width: 320px;
  max-width: 20rem;
}

.p-drawer__navigation-item {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}

.p-drawer__navigation-item a {
  display: block;
  width: 100%;
  padding: 12px 0;
  padding: 0.75rem 0;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid rgba(17, 17, 17, .12);
  -webkit-transition: color 0.3s, border-color 0.3s;
  transition: color 0.3s, border-color 0.3s;
}
.p-drawer__navigation-item a:hover {
  color: #26c836;
  border-color: #26c836;
}

/* 最後の項目（お問い合わせ）はボタン風に
------------------------------------------------ */
.p-drawer__navigation-item:last-child a {
  margin-top: 12px;
  margin-top: 0.75rem;
  padding: 16px 24px;
  padding: 1rem 1.5rem;
  color: #fff;
  background: #26c836;
  border: none;
  border-radius: 2.5rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-drawer__navigation-item:last-child a:hover {
  color: #fff;
  opacity: 0.85;
}

/* -----------------------------------------------------------------
  フッター
----------------------------------------------------------------- */
.p-footer {
  padding: 80px 0 40px;
  padding: 5rem 0 2.5rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding: 3.125rem 0 1.875rem;
  }
}

/* 上部レイアウト
------------------------------------------------ */
.p-footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}

/* ロゴ・会社情報
------------------------------------------------ */
.p-footer__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-footer__logo:hover {
  opacity: 0.7;
}

.p-footer__company {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #111;
  line-height: 1.6;
}

.p-footer__address {
  margin-top: 8px;
  margin-top: 0.5rem;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #111;
  line-height: 1.7;
}

/* ナビゲーション
------------------------------------------------ */
.p-footer__nav {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-footer__navItems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-footer__navItems {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 0.75rem;
    -webkit-column-gap: 1.75rem;
       -moz-column-gap: 1.75rem;
            column-gap: 1.75rem;
  }
}

.p-footer__navItem {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.p-footer__navItem a {
  display: inline-block;
  color: #111;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-footer__navItem a:hover {
  opacity: 0.6;
}

/* コピーライト
------------------------------------------------ */
.p-footer__copyright {
  margin-top: 48px;
  margin-top: 3rem;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  color: #111;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    margin-top: 2rem;
  }
}

.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: "Noto Sans JP", 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-form__btn {
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
}

/* -----------------------------------------------------------------
  お問い合わせ：確認画面 / 完了画面（トップページ内でフルスクリーン表示）
----------------------------------------------------------------- */
.p-formFlow {
  min-height: 80vh;
  padding: 180px 0 120px;
  padding: 11.25rem 0 7.5rem;
  background: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .p-formFlow {
    padding: 7.5rem 0 5rem;
  }
}

.p-formFlow__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  gap: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #26c836;
  letter-spacing: 0.1em;
}
.p-formFlow__label::before {
  content: "";
  display: inline-block;
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  background: #26c836;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-formFlow__title {
  margin-top: 12px;
  margin-top: 0.75rem;
  text-align: center;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  color: #26c836;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-formFlow__title {
    font-size: 1.5rem;
  }
}

.p-formFlow__lead {
  margin: 24px auto 0;
  margin: 1.5rem auto 0;
  max-width: 680px;
  max-width: 42.5rem;
  text-align: center;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.9;
  color: #111;
}
@media screen and (max-width: 767px) {
  .p-formFlow__lead {
    font-size: 0.875rem;
    text-align: left;
  }
}

/* 共通ボタン
------------------------------------------------ */
.p-formFlow__btn {
  display: inline-block;
  min-width: 220px;
  min-width: 13.75rem;
  padding: 18px 48px;
  padding: 1.125rem 3rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
  border-radius: 2.5rem;
  cursor: pointer;
  -webkit-transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.p-formFlow__btn.--send, .p-formFlow__btn.--home {
  color: #fff;
  background: #26c836;
  border: 1px solid #26c836;
  border: 0.0625rem solid #26c836;
}
.p-formFlow__btn.--send:hover, .p-formFlow__btn.--home:hover {
  color: #26c836;
  background: #fff;
}
.p-formFlow__btn.--back {
  color: #111;
  background: #fff;
  border: 1px solid #c8c8c8;
  border: 0.0625rem solid #c8c8c8;
}
.p-formFlow__btn.--back:hover {
  color: #26c836;
  border-color: #26c836;
}

/* 確認画面
------------------------------------------------ */
.p-formConfirm__list {
  margin: 48px auto 0;
  margin: 3rem auto 0;
  max-width: 760px;
  max-width: 47.5rem;
  background: #fff;
  border: 1px solid #26c836;
  border: 0.0625rem solid #26c836;
  border-radius: 0.75rem;
  padding: 20px 48px;
  padding: 1.25rem 3rem;
}
@media screen and (max-width: 767px) {
  .p-formConfirm__list {
    margin-top: 2rem;
    padding: 0.5rem 1.5rem;
  }
}

.p-formConfirm__row {
  display: grid;
  grid-template-columns: 12.5rem 1fr;
  gap: 16px;
  gap: 1rem;
  padding: 24px 0;
  padding: 1.5rem 0;
}
.p-formConfirm__row + .p-formConfirm__row {
  border-top: 1px solid #ececec;
  border-top: 0.0625rem solid #ececec;
}
@media screen and (max-width: 767px) {
  .p-formConfirm__row {
    grid-template-columns: 1fr;
    gap: 0.375rem;
    padding: 1.125rem 0;
  }
}

.p-formConfirm__term {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #111;
}

.p-formConfirm__desc {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #111;
  word-break: break-word;
}

.p-formConfirm__empty {
  color: #b0b0b0;
}

.p-formConfirm__actions {
  margin-top: 48px;
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  gap: 1.25rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-formConfirm__actions form {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-formConfirm__actions {
    margin-top: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.875rem;
  }
}

/* 完了画面
------------------------------------------------ */
.p-formComplete {
  text-align: center;
}
.p-formComplete .p-formFlow__btn {
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-formComplete .p-formFlow__btn {
    margin-top: 2rem;
  }
}

/* -----------------------------------------------------------------
  ヘッダー
----------------------------------------------------------------- */
.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 6;
  padding-top: 16px;
  padding-top: 1rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  background-color: rgba(255, 255, 255, 0.70196);
  backdrop-filter: blur(8px);
  backdrop-filter: blur(0.5rem);
  -webkit-backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(0.5rem);
}
@media screen and (max-width: 767px) {
  .p-header {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}

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

.p-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    padding: 0;
    border-radius: 0;
    margin-top: inherit;
  }
}

.p-header__logo a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #111;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.p-header__logo a:hover {
  opacity: 0.7;
}

.p-header__nav {
  margin-left: auto;
  margin-right: 40px;
  margin-right: 2.5rem;
}
@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.0625rem;
     -moz-column-gap: 2.0625rem;
          column-gap: 2.0625rem;
}

.p-header__navItem {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.075em;
  color: #111;
}

.p-header__navItem a {
  display: inline-block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.p-header__navItem a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 767px) {
  .p-header__contact {
    display: none;
  }
}

.p-header__contactLink {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  padding: 12px 24px;
  padding: 0.75rem 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1;
  color: #fff;
  background-color: #26c836;
  border: 1px solid #26c836;
  border: 0.0625rem solid #26c836;
  border-radius: 1.875rem;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.p-header__contactLink:hover {
  color: #26c836;
  background-color: #fff;
}

.p-header__contactLink:hover .p-header__contactIcon {
  color: #26c836;
}

.p-header__contactIcon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 18px;
  width: 1.125rem;
  height: 14px;
  height: 0.875rem;
  color: #fff;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.p-header__contactIcon svg {
  width: 100%;
  height: 100%;
}

.p-header__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    display: block;
    z-index: 16;
  }
}

/* -----------------------------------------------------------------
  ローディング
----------------------------------------------------------------- */
.p-loading {
  width: 100vw;
  height: 100vh;
  background-color: #f5f5f5;
  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__inner {
  max-width: 800px;
  max-width: 50rem;
}

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

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

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

.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: 40px;
  margin-top: 2.5rem;
}

.p-post__wrap h2 {
  margin-top: 65px;
  margin-top: 4.0625rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
}
@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: #111;
}
@media screen and (max-width: 767px) {
  .p-post__wrap h3 {
    font-size: 1.125rem;
  }
}

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

.p-post__wrap p {
  margin-top: 15px;
  margin-top: 0.9375rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: #111;
}
@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;
}
@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: 40px;
  margin-top: 2.5rem;
}

.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: 80px;
  margin-top: 5rem;
}

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

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

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

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

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

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

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

.p-postPagination__link-archive span:before {
  -webkit-mask: url(../images/common/icon-listbox.png) no-repeat center center/contain;
          mask: url(../images/common/icon-listbox.png) no-repeat center center/contain;
  background-color: #f5f5f5;
  width: 15px;
  height: 15px;
  position: absolute;
  top: calc(50% - 8px);
  left: -22px;
  content: "";
}

.p-postPagination__link {
  margin: 0 auto;
}

/* プライバシーポリシー
------------------------------------------------ */
.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;
  }
}

/* 下層のMV
------------------------------------------------ */
/* -----------------------------------------------------------------
  タブ切り替え
----------------------------------------------------------------- */
.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;
}

/* -----------------------------------------------------------------
  トップ：About Us
----------------------------------------------------------------- */
.p-topAbout {
  position: relative;
  margin-top: 120px;
  margin-top: 7.5rem;
  padding-bottom: 150px;
  padding-bottom: 9.375rem;
}
@media screen and (max-width: 767px) {
  .p-topAbout {
    margin-top: 3.75rem;
    padding-bottom: 11.25rem;
  }
}

.p-topAbout:before {
  content: "";
  position: absolute;
  bottom: -500px;
  bottom: -31.25rem;
  right: -470px;
  right: -29.375rem;
  width: 1000px;
  width: 62.5rem;
  height: 1200px;
  height: 75rem;
  background-image: url(../images/common/bg-circle01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 1.8s ease 0.3s, -webkit-transform 1.8s ease 0.3s;
  transition: opacity 1.8s ease 0.3s, -webkit-transform 1.8s ease 0.3s;
  transition: opacity 1.8s ease 0.3s, transform 1.8s ease 0.3s;
  transition: opacity 1.8s ease 0.3s, transform 1.8s ease 0.3s, -webkit-transform 1.8s ease 0.3s;
}
@media screen and (max-width: 767px) {
  .p-topAbout:before {
    bottom: -38.75rem;
    right: -18.75rem;
    width: 31.25rem;
    height: 50rem;
  }
}

.p-topAbout.is-visible:before {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ティッカー（最下層）
------------------------------------------------ */
.p-topAbout__ticker {
  position: relative;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.p-topAbout__tickerTrack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  -webkit-animation: tickerScroll 30s linear infinite;
          animation: tickerScroll 30s linear infinite;
}

.p-topAbout__tickerItem {
  font-family: "Montserrat", sans-serif;
  font-size: 140px;
  font-size: 8.75rem;
  font-weight: 700;
  color: #d3ffd7;
  letter-spacing: 0.02em;
  line-height: 1;
  padding-right: 40px;
  padding-right: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-topAbout__tickerItem {
    font-size: 4.5rem;
    padding-right: 1.25rem;
  }
}

/* 青パネル（左端にくっつく・幅90vw・右側のみ角丸）
------------------------------------------------ */
.p-topAbout__panel {
  position: relative;
  z-index: 2;
  margin-top: -30px;
  margin-top: -1.875rem;
  width: 90%;
  background: #44ba50;
  border-radius: 0 4.625rem 4.625rem 0;
}
@media screen and (max-width: 767px) {
  .p-topAbout__panel {
    width: 95%;
    margin-top: -1.5rem;
  }
}

.p-topAbout__panelInner {
  padding-top: 100px;
  padding-top: 6.25rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
  padding-right: 60px;
  padding-right: 3.75rem;
  padding-left: max(25px, calc(50vw - 550px));
}
@media screen and (max-width: 767px) {
  .p-topAbout__panelInner {
    padding: 2.5rem 20px;
  }
}

/* メイン（コンテンツ + メディアの flex レイアウト）
------------------------------------------------ */
.p-topAbout__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 80px;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-topAbout__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
}

/* テキストコンテンツ（左カラム）
------------------------------------------------ */
.p-topAbout__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.p-topAbout__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
}
.p-topAbout__label::before {
  content: "";
  display: inline-block;
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  background: #fff;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-topAbout__label::before {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.p-topAbout__title {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-topAbout__title {
    font-size: 1.6875rem;
    margin-top: 0.75rem;
  }
}

.p-topAbout__text {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .p-topAbout__text {
    margin-top: 2.5rem;
    font-size: 0.875rem;
  }
}

/* メディア（右カラム：ドット + 写真）
   margin-right マイナスでパネル右辺をはみ出す
------------------------------------------------ */
.p-topAbout__media {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 55%;
  margin-right: -90px;
  margin-right: -5.625rem;
  margin-top: 80px;
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-topAbout__media {
    width: 100%;
    margin-right: 0;
    margin-top: 1.5rem;
    position: relative;
  }
}

/* ドット（メディア右上に配置・右辺は写真と揃う）
------------------------------------------------ */
.p-topAbout__dots {
  -ms-flex-item-align: end;
      align-self: flex-end;
  width: 120px;
  width: 7.5rem;
  height: auto;
  display: block;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-topAbout__dots {
    position: absolute;
    top: -1.875rem;
    right: 1.25rem;
    width: 6.25rem;
    z-index: 2;
  }
}

/* 代表写真
   margin-bottom マイナスでパネル下辺をはみ出す
------------------------------------------------ */
.p-topAbout__imageWrap {
  margin-top: 60px;
  margin-top: 3.75rem;
  margin-bottom: -120px;
  margin-bottom: -7.5rem;
  border-radius: 1.5625rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-topAbout__imageWrap {
    margin-top: 0;
    margin-bottom: -11.25rem;
  }
}

.p-topAbout__image {
  display: block;
  width: 100%;
  aspect-ratio: 5/4;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-topAbout__image {
    aspect-ratio: 4/5;
  }
}

/* tickerScroll アニメーション
------------------------------------------------ */
@-webkit-keyframes tickerScroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes tickerScroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
/* -----------------------------------------------------------------
  トップ：会社概要
----------------------------------------------------------------- */
.p-topCompany {
  position: relative;
}

.p-topCompany:before {
  content: "";
  position: absolute;
  bottom: -600px;
  bottom: -37.5rem;
  left: -200px;
  left: -12.5rem;
  width: 800px;
  width: 50rem;
  height: 1000px;
  height: 62.5rem;
  background-image: url(../images/common/bg-circle03.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 1.8s ease 0.3s, -webkit-transform 1.8s ease 0.3s;
  transition: opacity 1.8s ease 0.3s, -webkit-transform 1.8s ease 0.3s;
  transition: opacity 1.8s ease 0.3s, transform 1.8s ease 0.3s;
  transition: opacity 1.8s ease 0.3s, transform 1.8s ease 0.3s, -webkit-transform 1.8s ease 0.3s;
}
@media screen and (max-width: 767px) {
  .p-topCompany:before {
    bottom: -9.375rem;
    left: -15.625rem;
    width: 31.25rem;
    height: 31.25rem;
  }
}

.p-topCompany.is-visible:before {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ボックス
------------------------------------------------ */
.p-topCompany__box {
  background: rgba(244, 255, 245, .8);
  backdrop-filter: blur(5px);
  backdrop-filter: blur(0.3125rem);
  -webkit-backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(0.3125rem);
  border-radius: 1.25rem;
  padding: 80px;
  padding: 5rem;
}
@media screen and (max-width: 767px) {
  .p-topCompany__box {
    padding: 2.5rem 1.5rem;
  }
}

/* セクションヘッダー
------------------------------------------------ */
.p-topCompany__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #26c836;
  letter-spacing: 0.1em;
}
.p-topCompany__label::before {
  content: "";
  display: inline-block;
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  background: #26c836;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-topCompany__label::before {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.p-topCompany__title {
  margin-top: 12px;
  margin-top: 0.75rem;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  color: #26c836;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-topCompany__title {
    font-size: 1.6875rem;
    margin-top: 0.5rem;
  }
}

/* テーブル
------------------------------------------------ */
.p-topCompany__list {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-topCompany__list {
    margin-top: 1.75rem;
  }
}

.p-topCompany__row {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 40px;
  gap: 2.5rem;
  padding: 24px 16px;
  padding: 1.5rem 1rem;
  border-bottom: 1px solid rgba(38, 200, 54, .3);
}
.p-topCompany__row:first-child {
  border-top: 1px solid rgba(38, 200, 54, .3);
}
@media screen and (max-width: 767px) {
  .p-topCompany__row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
  }
}

.p-topCompany__term {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-topCompany__term {
    font-size: 0.875rem;
  }
}

.p-topCompany__desc {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #111;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-topCompany__desc {
    font-size: 0.875rem;
  }
}

/* -----------------------------------------------------------------
  トップ：お問い合わせ
----------------------------------------------------------------- */
.p-topContact {
  margin-top: 160px;
  margin-top: 10rem;
  background: #f5f5f5;
  padding: 80px 0 100px;
  padding: 5rem 0 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-topContact {
    margin-top: 5rem;
    padding: 3.125rem 0 3.75rem;
  }
}

/* セクションヘッダー
------------------------------------------------ */
.p-topContact__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #26c836;
  letter-spacing: 0.1em;
}
.p-topContact__label::before {
  content: "";
  display: inline-block;
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  background: #26c836;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-topContact__label::before {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.p-topContact__title {
  margin-top: 12px;
  margin-top: 0.75rem;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  color: #26c836;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-topContact__title {
    font-size: 1.6875rem;
    margin-top: 0.5rem;
  }
}

/* フォームボックス
------------------------------------------------ */
.p-topContact__box {
  margin-top: 48px;
  margin-top: 3rem;
  background: #fff;
  border: 1px solid #26c836;
  border-radius: 0.75rem;
  padding: 60px 80px;
  padding: 3.75rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-topContact__box {
    margin-top: 2rem;
    padding: 2rem 1.25rem;
  }
}

/* フィールド
------------------------------------------------ */
.p-topContact__field + .p-topContact__field {
  margin-top: 28px;
  margin-top: 1.75rem;
}

.p-topContact__fieldLabel {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #111;
}

.p-topContact__required {
  color: #e30000;
  margin-left: 4px;
  margin-left: 0.25rem;
}

/* 入力コントロール（reset.scss上書きで !important 使用）
------------------------------------------------ */
.p-topContact__input,
.p-topContact__textarea {
  margin-top: 10px;
  margin-top: 0.625rem;
  width: 100%;
  padding: 14px 18px !important;
  padding: 0.875rem 1.125rem !important;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px !important;
  font-size: 0.875rem !important;
  color: #111;
  background: #fff !important;
  border: 1px solid #d8d8d8 !important;
  border-radius: 0.375rem !important;
}
.p-topContact__input::-webkit-input-placeholder,
.p-topContact__textarea::-webkit-input-placeholder {
  color: #c0c0c0;
}
.p-topContact__input::-moz-placeholder,
.p-topContact__textarea::-moz-placeholder {
  color: #c0c0c0;
}
.p-topContact__input::-ms-input-placeholder,
.p-topContact__textarea::-ms-input-placeholder {
  color: #c0c0c0;
}
.p-topContact__input::placeholder,
.p-topContact__textarea::placeholder {
  color: #c0c0c0;
}
.p-topContact__input:focus,
.p-topContact__textarea:focus {
  border-color: #26c836 !important;
}

.p-topContact__textarea {
  resize: vertical;
  min-height: 140px;
  min-height: 8.75rem;
  line-height: 1.7;
}

/* ラジオ（reset.scssの display:none 上書き）
------------------------------------------------ */
.p-topContact__radios {
  margin-top: 10px;
  margin-top: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
  padding-left: 8px;
  padding-left: 0.5rem;
}

.p-topContact__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
  font-size: 14px;
  font-size: 0.875rem;
  color: #111;
  cursor: pointer;
}

.p-topContact__radio input[type=radio] {
  display: block !important;
  -moz-appearance: none !important;
       appearance: none !important;
  -webkit-appearance: none !important;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  background: #fff !important;
  border: 1px solid #b8b8b8 !important;
  border-radius: 50% !important;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  margin: 0;
  padding: 0 !important;
}
.p-topContact__radio input[type=radio]:checked {
  border-color: #26c836 !important;
}
.p-topContact__radio input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  background: #26c836;
  border-radius: 50%;
}

/* 個人情報保護方針
------------------------------------------------ */
.p-topContact__privacy {
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-topContact__privacy {
    margin-top: 2rem;
  }
}

.p-topContact__privacyTitle {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #111;
}
@media screen and (max-width: 767px) {
  .p-topContact__privacyTitle {
    font-size: 1rem;
  }
}

.p-topContact__privacyBox {
  margin: 20px auto 0;
  margin: 1.25rem auto 0;
  max-width: 700px;
  max-width: 43.75rem;
  height: 450px;
  height: 28.125rem;
  overflow-y: auto;
  background: #f5f5f5;
  padding: 32px 36px;
  padding: 2rem 2.25rem;
  border-radius: 0.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  color: #111;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .p-topContact__privacyBox {
    padding: 1.25rem;
  }
}

.p-topContact__privacyBox p + p {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-topContact__privacyBox h4 {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-weight: 700;
}

/* 同意チェック
------------------------------------------------ */
.p-topContact__agree {
  margin-top: 28px;
  margin-top: 1.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-topContact__agreeLabel {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #111;
  cursor: pointer;
}

.p-topContact__agreeLabel input[type=checkbox] {
  display: block !important;
  -moz-appearance: none !important;
       appearance: none !important;
  -webkit-appearance: none !important;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  background: #fff !important;
  border: 1px solid #b8b8b8 !important;
  border-radius: 0.1875rem !important;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  margin: 0;
  padding: 0 !important;
}
.p-topContact__agreeLabel input[type=checkbox]:checked {
  background: #26c836 !important;
  border-color: #26c836 !important;
}
.p-topContact__agreeLabel input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 46%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  width: 4px;
  width: 0.25rem;
  height: 8px;
  height: 0.5rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

/* reset.scss の input+span 上書き */
.p-topContact__agreeLabel input[type=checkbox] + span {
  display: inline !important;
  position: static !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #111 !important;
  font-size: 14px !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  line-height: 1.6 !important;
  text-align: left !important;
  width: auto !important;
}

/* reset.scss が input+span に追加する疑似要素を消す */
.p-topContact input[type=checkbox] + span::before,
.p-topContact input[type=checkbox] + span::after,
.p-topContact input[type=radio] + span::before,
.p-topContact input[type=radio] + span::after {
  content: none !important;
  display: none !important;
}

/* 送信ボタン
------------------------------------------------ */
.p-topContact__submitWrap {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}

.p-topContact__submit {
  display: inline-block;
  min-width: 240px;
  min-width: 15rem;
  padding: 18px 60px;
  padding: 1.125rem 3.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #fff;
  background: #26c836;
  border: 1px solid #26c836;
  border: 0.0625rem solid #26c836;
  border-radius: 2.5rem;
  cursor: pointer;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.p-topContact__submit:hover {
  color: #26c836;
  background: #fff;
}

/* エラー表示
------------------------------------------------ */
.p-topContact__formError {
  margin-bottom: 28px;
  margin-bottom: 1.75rem;
  padding: 14px 18px;
  padding: 0.875rem 1.125rem;
  background: #fdecec;
  border-left: 3px solid #e30000;
  border-left: 0.1875rem solid #e30000;
  border-radius: 0.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #b00000;
}

.p-topContact__error {
  display: none;
  margin-top: 6px;
  margin-top: 0.375rem;
  font-size: 12px;
  font-size: 0.75rem;
  color: #e30000;
  line-height: 1.5;
}

.p-topContact__field.is-error .p-topContact__error,
.p-topContact__agree.is-error .p-topContact__error {
  display: block;
}

.p-topContact__field.is-error .p-topContact__input,
.p-topContact__field.is-error .p-topContact__textarea {
  border-color: #e30000 !important;
  background: #fffafa !important;
}

.p-topContact__agree {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
}
.p-topContact__agree .p-topContact__error {
  text-align: center;
}

/* -----------------------------------------------------------------
  トップ：ご挨拶
----------------------------------------------------------------- */
.p-topGreeting {
  position: relative;
}

.p-topGreeting:before {
  content: "";
  position: absolute;
  bottom: -400px;
  bottom: -25rem;
  right: -300px;
  right: -18.75rem;
  width: 700px;
  width: 43.75rem;
  height: 900px;
  height: 56.25rem;
  background-image: url(../images/common/bg-circle02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 1.8s ease 0.3s, -webkit-transform 1.8s ease 0.3s;
  transition: opacity 1.8s ease 0.3s, -webkit-transform 1.8s ease 0.3s;
  transition: opacity 1.8s ease 0.3s, transform 1.8s ease 0.3s;
  transition: opacity 1.8s ease 0.3s, transform 1.8s ease 0.3s, -webkit-transform 1.8s ease 0.3s;
}
@media screen and (max-width: 767px) {
  .p-topGreeting:before {
    bottom: 0;
    right: -18.75rem;
    width: 31.25rem;
    height: 31.25rem;
  }
}

.p-topGreeting.is-visible:before {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* HEAD（背景画像 + ティッカー）
------------------------------------------------ */
.p-topGreeting__head {
  position: relative;
  width: 100%;
  aspect-ratio: 4/1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-topGreeting__head {
    aspect-ratio: 4/3;
  }
}
.p-topGreeting__head::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(60%, rgba(255, 255, 255, .2)), to(#fff));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .2) 60%, #fff 100%);
  pointer-events: none;
}

.p-topGreeting__headImage {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ティッカー
------------------------------------------------ */
.p-topGreeting__ticker {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.p-topGreeting__tickerTrack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  -webkit-animation: tickerScroll 30s linear infinite;
          animation: tickerScroll 30s linear infinite;
}

.p-topGreeting__tickerItem {
  font-family: "Montserrat", sans-serif;
  font-size: 140px;
  font-size: 8.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1;
  padding-right: 40px;
  padding-right: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-topGreeting__tickerItem {
    font-size: 4.5rem;
    padding-right: 1.25rem;
  }
}

/* BODY（HEADにオーバーラップ）
------------------------------------------------ */
.p-topGreeting__body {
  position: relative;
  z-index: 3;
  margin-top: -70px;
  margin-top: -4.375rem;
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-topGreeting__body {
    margin-top: -2.5rem;
    padding-bottom: 3.75rem;
  }
}

/* 紹介ブロック（写真 + 情報）
------------------------------------------------ */
.p-topGreeting__intro {
  display: grid;
  grid-template-columns: 20rem 1fr;
  gap: 50px;
  gap: 3.125rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media screen and (max-width: 767px) {
  .p-topGreeting__intro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.p-topGreeting__photo {
  border-radius: 0.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-topGreeting__photo {
    width: 100%;
    margin: 0 auto;
  }
}

.p-topGreeting__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-topGreeting__photo img {
    aspect-ratio: 5/3;
  }
}

.p-topGreeting__info {
  padding-bottom: 16px;
  padding-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-topGreeting__info {
    padding-bottom: 0;
  }
}

.p-topGreeting__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #26c836;
  letter-spacing: 0.1em;
}
.p-topGreeting__label::before {
  content: "";
  display: inline-block;
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  background: #26c836;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-topGreeting__label::before {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.p-topGreeting__title {
  margin-top: 12px;
  margin-top: 0.75rem;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #26c836;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-topGreeting__title {
    font-size: 1.9375rem;
  }
}

.p-topGreeting__lead {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-topGreeting__lead {
    font-size: 1rem;
    margin-top: 1.25rem;
  }
}

.p-topGreeting__signature {
  margin-top: 28px;
  margin-top: 1.75rem;
  padding-top: 28px;
  padding-top: 1.75rem;
  border-top: 1px solid #26c836;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #111;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-topGreeting__signature {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }
}

.p-topGreeting__name {
  margin-top: 6px;
  margin-top: 0.375rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-topGreeting__name {
    font-size: 1rem;
  }
}

/* 挨拶テキスト
------------------------------------------------ */
.p-topGreeting__text {
  margin-top: 48px;
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
  padding: 40px;
  padding: 2.5rem;
  background: rgba(255, 255, 255, .6);
  backdrop-filter: blur(6px);
  backdrop-filter: blur(0.375rem);
  -webkit-backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(0.375rem);
  border-radius: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-topGreeting__text {
    margin-top: 2rem;
    padding: 1.5rem;
  }
}

.p-topGreeting__text p {
  font-size: 14px;
  font-size: 0.875rem;
  color: #111;
  line-height: 2;
}

/* -----------------------------------------------------------------
  トップ：メインビジュアル
----------------------------------------------------------------- */
.p-topHero {
  position: relative;
  width: 100%;
  height: 95vh;
  min-height: 600px;
  max-height: 800px;
  overflow: hidden;
}

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

.p-topHero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 右側の装飾円
------------------------------------------------ */
.p-topHero__circle {
  position: absolute;
  top: 50%;
  right: -180px;
  right: -11.25rem;
  width: 720px;
  width: 45rem;
  height: 720px;
  height: 45rem;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-topHero__circle {
    width: 26.25rem;
    height: 26.25rem;
    right: -7.5rem;
  }
}

/* テキストエリア（上下中央）
------------------------------------------------ */
.p-topHero__content {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
}

.p-topHero__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.4;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-topHero__lead {
    font-size: 0.8125rem;
  }
}

.p-topHero__title {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 56px;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-topHero__title {
    margin-top: 0.9375rem;
    font-size: 2rem;
  }
}

/* -----------------------------------------------------------------
  トップ：サービス紹介
----------------------------------------------------------------- */
.p-topService {
  padding: 60px 0;
  padding: 3.75rem 0;
}
@media screen and (max-width: 767px) {
  .p-topService {
    padding: 3.75rem 0;
  }
}

/* セクションヘッダー
------------------------------------------------ */
.p-topService__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #26c836;
  letter-spacing: 0.1em;
}
.p-topService__label::before {
  content: "";
  display: inline-block;
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  background: #26c836;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-topService__label::before {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.p-topService__title {
  margin-top: 12px;
  margin-top: 0.75rem;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  color: #26c836;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-topService__title {
    font-size: 1.6875rem;
    margin-top: 0.5rem;
  }
}

/* カード一覧
------------------------------------------------ */
.p-topService__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-topService__list {
    margin-top: 2rem;
  }
}

/* カード
------------------------------------------------ */
.p-topService__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  gap: 2rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: #fff;
  border: 1px solid #26c836;
  border-radius: 0.75rem;
  padding: 56px;
  padding: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-topService__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem;
  }
}

/* 画像
------------------------------------------------ */
.p-topService__imageWrap {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40%;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-topService__imageWrap {
    width: 100%;
  }
}

.p-topService__image {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

/* テキストコンテンツ
------------------------------------------------ */
.p-topService__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-topService__name {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  color: #26c836;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-topService__name {
    font-size: 1.125rem;
  }
}

.p-topService__desc {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 14px;
  font-size: 0.875rem;
  color: #111;
  line-height: 1.9;
}

/* 箇条書き
------------------------------------------------ */
.p-topService__items {
  margin-top: 20px;
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
  background: #f5f5f5;
  border-radius: 0.5rem;
  padding: 20px 24px;
  padding: 1.25rem 1.5rem;
}

.p-topService__item {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #111;
  line-height: 1.6;
  padding-left: 16px;
  padding-left: 1rem;
  position: relative;
}
.p-topService__item::before {
  content: "・";
  position: absolute;
  left: 0;
}
/*# sourceMappingURL=style.css.map */
