@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho&family=Zen+Maru+Gothic:wght@300;400&display=swap";
@layer foundation, layout, component, project, page, utilities;
:root {
  --sans-serif: "Noto Sans JP", "ヒラギノ角ゴシック", "Hiragino Sans",
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  --serif: "Shippori Mincho", serif;
  --marugo: "Zen Maru Gothic", serif;
  --en-sans: "Montserrat", sans-serif;
  --en-serif: "", serif;
  --base: #fff;
  --main: #000;
  --colorPrimary: #008057;
  --colorRed: #ff1d25;
  --colorBlue: #213174;
  --colorPink: #ff6f7e;
  --container-w: 1420px;
  --container-pd-half: 70px;
  --container-pd: calc(var(--container-pd-half) * 2);
  --header-h: 70px;
  --gap-row: 20;
  --gap-col: 20;
  --text-xs: 1.2rem;
  --text-sm: 1.4rem;
  --text-md: 1.6rem;
  --text-lg: 1.8rem;
  --text-xl: 2rem;
  --text-2xl: 2.2rem;
  --text-3xl: 2.4rem;
  --text-4xl: 2.8rem;
  --text-5xl: 3.4rem;
  --text-6xl: 4rem;
}
@media screen and (max-width: 767px) {
  :root {
    --container-w: 100%;
    --container-pd-half: 4.5333333333vw;
    --header-h: 13.3333333333vw;
    --sp-gap-row: 20;
    --sp-gap-col: 20;
    --text-xs: 2.6666666667vw;
    --text-sm: 3.2vw;
    --text-md: 3.7333333333vw;
    --text-lg: 3.7333333333vw;
    --text-xl: 4.2666666667vw;
    --text-2xl: 4.8vw;
    --text-3xl: 5.3333333333vw;
    --text-4xl: 5.8666666667vw;
    --text-5xl: 6.4vw;
    --text-6xl: 7.4666666667vw;
  }
}

/*========================================
  ブラウザごとのデフォルトスタイルの初期化
========================================*/
@layer foundation {
  body,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  dl,
  dt,
  dd,
  ol,
  ul,
  figure {
    all: unset;
    display: revert;
  }
  body {
    line-height: 1;
  }
  ol,
  ul {
    list-style: none;
  }
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  img {
    vertical-align: middle;
  }
}
@layer foundation {
  /* ========================================
  	要素の基本的なスタイル
  ======================================== */
  html {
    height: 100%;
    font-size: 10px;
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
  body {
    min-width: 320px;
    font-family: var(--sans-serif);
    font-size: 1.6rem;
    font-weight: 300;
    font-feature-settings: "palt" 1;
    line-height: 1.8;
    color: var(--main);
    background: var(--base);
  }
  @media screen and (max-width: 767px) {
    body {
      font-size: 3.7333333333vw;
    }
  }
  body.habilis {
    --colorPrimary: var(--colorBlue);
    font-weight: 400;
  }
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  :focus-visible {
    outline: 2px solid blue;
  }
  img,
  svg,
  iframe,
  video,
  picture {
    max-width: 100%;
  }
  img {
    height: auto;
    font-size: 12px;
    letter-spacing: 0;
  }
  a {
    color: inherit;
    word-break: break-all;
    text-decoration: none;
  }
  @media screen and (min-width: 768px) {
    a[href^="tel:"] {
      display: inline-block;
      pointer-events: none;
    }
  }
  @media screen and (max-width: 767px) {
    a[href^="tel:"] {
      text-decoration: underline;
      text-underline-offset: 3px;
    }
  }
  small {
    font-size: 80%;
  }
  sup {
    font-size: 0.5em;
  }
  button,
  input[type=button],
  input[type=submit] {
    font: inherit;
    cursor: pointer;
  }
  button,
  input,
  select,
  textarea {
    font: inherit;
    color: inherit;
  }
  label {
    display: inline-block;
    cursor: pointer;
  }
}
/*========================================
  パララックス
========================================*/
@layer foundation {
  .js-parallax {
    overflow: hidden;
  }
  .js-parallax img {
    display: block;
  }
}
/* ========================================
  scrollbar
======================================== */
@layer foundation {
  .js-scrollable-wrap, .js-scrollable-with-side-wrap {
    width: min(100vw - var(--scrollbar-width) - var(--container-pd), var(--container-w));
    overflow: hidden;
  }
  @media screen and (max-width: 767px) {
    .js-scrollable-wrap, .js-scrollable-with-side-wrap {
      width: calc(100vw - var(--scrollbar-width) - var(--container-pd));
    }
  }
  @media screen and (min-width: 1201px) {
    .js-scrollable-with-side-wrap {
      width: min(100vw - var(--scrollbar-width) - 390px - var(--container-pd), 1080px);
    }
  }
  @media screen and (min-width: 768px) and (max-width: 1200px) {
    .js-scrollable-with-side-wrap {
      width: min(100vw - var(--scrollbar-width) - var(--container-pd), var(--container-w));
    }
  }
  @media screen and (max-width: 767px) {
    .js-scrollable-with-side-wrap {
      width: calc(100vw - var(--scrollbar-width) - var(--container-pd));
    }
  }
  .js-scrollable {
    overflow-x: scroll;
  }
}
/*========================================
  scrollbar
========================================*/
@layer foundation {
  .js-scrollbar {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .js-scrollbar::-webkit-scrollbar {
    display: none;
  }
}
/*========================================
  scrollbar
========================================*/
@layer foundation {
  .js-accordion summary {
    list-style: none;
    cursor: pointer;
  }
  .js-accordion summary::-webkit-details-marker {
    display: none;
  }
  .js-accordion-content {
    overflow: hidden;
  }
}
/* ========================================
  js-fade-in
======================================== */
@layer foundation {
  .js-fade-in {
    opacity: 0;
    transform: translateY(40px);
  }
  .js-fade-in.is-active {
    opacity: 1;
    transition: transform 1s, opacity 1s;
    transform: translateY(0);
  }
}
@keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}
.scroll-hint.is-right-scrollable {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-right-scrollable.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 60px);
  box-sizing: border-box;
  width: 120px;
  height: 80px;
  border-radius: 5px;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  margin: auto;
  padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #FFF;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  animation: scroll-hint-appear 1.2s linear;
  animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #FFF;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}

/* ========================================
  コンテンツ（メインコンテンツとサイドバーのラッパー）
======================================== */
@layer layout {
  .l-content {
    display: grid;
    grid-template-columns: 290px 1fr;
    font-weight: 300;
  }
  @media screen and (max-width: 1200px) {
    .l-content {
      grid-template-columns: 1fr;
    }
  }
  @media screen and (min-width: 1201px) {
    .l-content__side {
      grid-row: 1;
      grid-column: 1;
      border-right: 1px solid #808080;
    }
  }
  @media screen and (max-width: 1200px) {
    .l-content__side {
      grid-row: 2;
      grid-column: 1;
      border-top: 1px solid #808080;
    }
  }
  @media screen and (min-width: 1201px) {
    .l-content__main {
      grid-row: 1;
      grid-column: 2;
      padding: 60px 0 50px 70px;
    }
  }
  @media screen and (max-width: 1200px) {
    .l-content__main {
      grid-row: 1;
      grid-column: 1;
      padding: 40px 0 100px;
    }
  }
  @media screen and (max-width: 767px) {
    .l-content__main {
      padding: 10.6666666667vw 0 21.3333333333vw;
    }
  }
}
/* ========================================
  サイト共通のフッター
======================================== */
@layer layout {
  .l-footer {
    background-color: #fff;
  }
  .l-footer__inner {
    --container-w: 1300px;
    padding: 70px 0 55px;
  }
  @media screen and (max-width: 767px) {
    .l-footer__inner {
      padding: 13.3333333333vw 0;
    }
  }
  .l-footer__head {
    display: grid;
    grid-template-columns: max-content 1fr 32px;
    gap: 20px;
    align-items: center;
  }
  @media screen and (max-width: 767px) {
    .l-footer__head {
      grid-template-columns: max-content 1fr 4.8vw;
      gap: 2.6666666667vw;
    }
  }
  .l-footer__head-txt {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
  }
  @media screen and (max-width: 767px) {
    .l-footer__head-txt {
      font-size: 3.2vw;
    }
  }
  .l-footer__head-line {
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to right, #005a42, #b1efc8);
  }
  @media screen and (max-width: 767px) {
    .l-footer__head-line {
      height: 1px;
    }
  }
  .l-footer__head-btn {
    display: grid;
    align-items: center;
  }
  .l-footer__page-top {
    position: relative;
    width: 32px;
    height: 32px;
    padding: 0;
    margin: 0;
    background-color: #fff;
    border: 1px solid var(--main);
    border-radius: 50%;
  }
  @media screen and (max-width: 767px) {
    .l-footer__page-top {
      width: 4.8vw;
      height: 4.8vw;
      border-width: 1px;
    }
  }
  @media (any-hover: hover) {
    .l-footer__page-top {
      transition: opacity 0.3s;
    }
    .l-footer__page-top:hover {
      opacity: 0.7;
    }
  }
  .l-footer__page-top-arrow {
    position: absolute;
    inset: 0;
    display: block;
    width: 40%;
    height: 40%;
    margin: auto;
    background-color: var(--main);
    clip-path: polygon(0 65%, 50% 15%, 100% 65%, 90% 75%, 50% 35%, 10% 75%);
  }
  .l-footer__body {
    margin-top: 82px;
  }
  @media screen and (max-width: 767px) {
    .l-footer__body {
      margin-top: 5.3333333333vw;
    }
  }
  .l-footer__info-wrap {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 160px;
  }
  @media screen and (max-width: 767px) {
    .l-footer__info-wrap {
      grid-template-columns: 1fr;
      gap: 8vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-footer__logo {
      text-align: center;
    }
  }
  @media screen and (max-width: 767px) {
    .l-footer__logo img {
      width: 42.6666666667vw;
      aspect-ratio: 214/65;
    }
  }
  .l-footer__info {
    display: grid;
    gap: 10px;
    padding-top: 5px;
    font-size: 1.4rem;
    line-height: 1.2;
  }
  @media screen and (max-width: 767px) {
    .l-footer__info {
      font-size: 3.7333333333vw;
      text-align: center;
    }
  }
  .l-footer__tel {
    font-family: var(--en-sans);
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
  }
  @media screen and (max-width: 767px) {
    .l-footer__tel {
      font-size: 5.3333333333vw;
    }
  }
  .l-footer__tel span {
    font-size: 1.8rem;
  }
  @media screen and (max-width: 767px) {
    .l-footer__tel span {
      font-size: 4.2666666667vw;
    }
  }
  .l-footer__foot {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 90px;
  }
  @media screen and (max-width: 767px) {
    .l-footer__foot {
      flex-direction: column;
      gap: 2.6666666667vw;
      margin-top: 8vw;
    }
  }
  .l-footer__list {
    display: flex;
    line-height: 1.2;
  }
  .l-footer__item:nth-child(n+2) {
    border-left: 1px solid var(--main);
  }
  @media screen and (min-width: 768px) {
    .l-footer__item:last-child {
      border-right: 1px solid var(--main);
    }
  }
  .l-footer__link {
    display: grid;
    align-items: center;
    height: 100%;
    padding-inline: 15px;
    font-size: 1.5rem;
    letter-spacing: 0.07em;
  }
  @media screen and (max-width: 767px) {
    .l-footer__link {
      padding-inline: 2.6666666667vw;
      font-size: 3.2vw;
    }
  }
  @media (any-hover: hover) {
    .l-footer__link span {
      position: relative;
      background: linear-gradient(var(--main), var(--main)) 100% 100%/0 1px no-repeat;
      transition: background-size 0.5s cubic-bezier(0.39, 0.575, 0.565, 1);
    }
    .l-footer__link:hover span {
      background-position: 0 100%;
      background-size: 100% 1px;
    }
  }
  .l-footer__copyright {
    font-size: 1.2rem;
    letter-spacing: 0.07em;
  }
  @media screen and (max-width: 767px) {
    .l-footer__copyright {
      font-size: 2.6666666667vw;
    }
  }
  .habilis .l-footer__copy {
    padding-left: 70px;
  }
  @media screen and (max-width: 767px) {
    .habilis .l-footer__copy {
      padding-left: 0;
      font-size: 3.7333333333vw;
    }
  }
  .habilis .l-footer__head-line {
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to right, #000040, #447ddd);
  }
  @media screen and (max-width: 767px) {
    .habilis .l-footer__head-line {
      height: 1px;
    }
  }
  .habilis .l-footer__logo img {
    aspect-ratio: 539/101;
  }
  @media screen and (max-width: 767px) {
    .habilis .l-footer__logo img {
      width: 64vw;
    }
  }
}
/* ========================================
  サイト共通のヘッダー
======================================== */
@layer layout {
  .l-header {
    z-index: 99;
    width: 100%;
    height: var(--header-h);
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
  .l-header.is-active {
    box-shadow: none;
  }
  @media screen and (max-width: 1340px) {
    .l-header.is-active::before {
      position: absolute;
      right: 0;
      bottom: -1px;
      z-index: 100;
      display: block;
      width: 100%;
      max-width: 400px;
      height: 1px;
      content: "";
      background-color: var(--colorPrimary);
    }
  }
  @media screen and (max-width: 767px) {
    .l-header.is-active::before {
      max-width: 100%;
    }
  }
  .l-header__inner {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 20px;
    align-items: center;
    height: 100%;
    padding: 0 0 0 30px;
  }
  @media screen and (max-width: 1340px) {
    .l-header__inner {
      padding: 0 35px;
    }
  }
  @media screen and (max-width: 767px) {
    .l-header__inner {
      gap: 0;
      padding: 0 2.6666666667vw;
    }
  }
  .l-header__logo {
    line-height: 1;
  }
  .l-header__logo img {
    aspect-ratio: 190/57;
  }
  @media screen and (max-width: 767px) {
    .l-header__logo img {
      width: 26.9333333333vw;
    }
  }
  .l-header__nav {
    justify-self: end;
  }
  .habilis .l-header__logo img {
    aspect-ratio: 539/101;
  }
  @media screen and (max-width: 767px) {
    .habilis .l-header__logo img {
      width: 37.3333333333vw;
    }
  }
}
/*========================================
  メインコンテンツ
========================================*/
@layer layout {}
/* ========================================
  サイト共通のサイドバー
======================================== */
@layer layout {
  @media screen and (min-width: 1201px) {
    .l-side {
      position: sticky;
      top: var(--header-h);
      height: calc(100vh - var(--header-h));
      height: calc(100dvh - var(--header-h));
    }
  }
  .l-side__inner {
    padding: 65px 65px 50px 0;
  }
  @media screen and (min-width: 1201px) {
    .l-side__inner {
      height: inherit;
    }
  }
  @media screen and (max-width: 1200px) {
    .l-side__inner {
      padding: 100px 70px 20px;
    }
  }
  @media screen and (max-width: 767px) {
    .l-side__inner {
      padding: 10.6666666667vw 5.3333333333vw 5.3333333333vw;
    }
  }
  .l-side__ttl {
    padding-bottom: 25px;
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    border-bottom: 1px solid #000;
  }
  @media screen and (max-width: 767px) {
    .l-side__ttl {
      padding-bottom: 0.5em;
      font-size: 4.8vw;
      text-align: center;
      border-bottom: 1px dotted #808080;
    }
  }
  .l-side__nav {
    margin-top: 40px;
  }
  @media screen and (max-width: 767px) {
    .l-side__nav {
      margin-top: 5.3333333333vw;
    }
  }
  .l-side__list > li {
    padding-left: 1.2em;
    font-size: 1.8rem;
  }
  @media screen and (max-width: 767px) {
    .l-side__list > li {
      font-size: 4.2666666667vw;
    }
  }
  .l-side__list > li + li {
    margin-top: 1.35em;
  }
  @media screen and (max-width: 767px) {
    .l-side__list > li + li {
      margin-top: 0.8em;
    }
  }
  .l-side__list > li a,
  .l-side__list > li button,
  .l-side__list > li summary {
    position: relative;
    display: block;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.11em;
    transition: color 0.3s;
  }
  @media screen and (max-width: 767px) {
    .l-side__list > li a,
    .l-side__list > li button,
    .l-side__list > li summary {
      font-size: 4vw;
    }
  }
  .l-side__list > li a::before,
  .l-side__list > li button::before,
  .l-side__list > li summary::before {
    position: absolute;
    top: 0.6em;
    left: -1.2em;
    display: block;
    width: 0;
    height: 0;
    content: "";
    border-color: transparent transparent transparent #000;
    border-style: solid;
    border-width: 0.35em 0 0.35em 0.5em;
    transition: border 0.3s, transform 0.3s;
  }
  .l-side__list > li a span,
  .l-side__list > li button span,
  .l-side__list > li summary span {
    position: relative;
    background: linear-gradient(var(--colorPrimary), var(--colorPrimary)) 0 100%/0 1px no-repeat;
    transition: background 0.3s;
  }
  @media (any-hover: hover) {
    .l-side__list > li a:hover,
    .l-side__list > li button:hover,
    .l-side__list > li summary:hover {
      color: var(--colorPrimary);
    }
    .l-side__list > li a:hover::before,
    .l-side__list > li button:hover::before,
    .l-side__list > li summary:hover::before {
      border-color: transparent transparent transparent var(--colorPrimary);
    }
    .l-side__list > li a:hover span,
    .l-side__list > li button:hover span,
    .l-side__list > li summary:hover span {
      background-size: 100% 1px;
    }
  }
  .l-side__list > li button {
    padding: 0;
    background-color: transparent;
    border: none;
  }
  .l-side__list > li > ul {
    margin-top: 0.2em;
  }
  .l-side__list > li > ul > li {
    padding-left: 1em;
  }
  .l-side__list > li > ul > li + li {
    margin-top: 0.2em;
  }
  .l-side__list > li details > div ul li {
    margin-top: 1em;
  }
  .l-side__list > li details > div ul li a {
    padding-left: 1em;
  }
  .l-side__list > li details > div ul li a::before {
    left: 0;
  }
  .l-side__list > li details.is-open summary::before {
    transform: rotate(90deg);
  }
  .l-side__list > li.l-side__bnr {
    padding-left: 0;
  }
  .l-side__list > li.l-side__bnr a::before {
    display: none;
  }
  @media (any-hover: hover) {
    .l-side__list > li.l-side__bnr a {
      transition: opacity 0.3s;
    }
    .l-side__list > li.l-side__bnr a:hover {
      opacity: 0.7;
    }
  }
  .l-side__list + .l-side__list {
    padding-top: 2em;
    margin-top: 2em;
    border-top: 2px dashed #ccc;
  }
}
/* ========================================
  ヘッダーのナビゲーション（グローバルナビ）
======================================== */
@layer layout {
  @media screen and (max-width: 1340px) {
    .l-nav {
      display: grid;
      gap: 20px;
      align-items: center;
    }
  }
  @media screen and (max-width: 767px) {
    .l-nav {
      gap: 2.6666666667vw;
    }
  }
  .l-nav[aria-expanded=true] .l-nav__overlay {
    visibility: visible;
    cursor: pointer;
    opacity: 1;
    transition-timing-function: cubic-bezier(0.17, 0.84, 0.44, 1);
  }
  .l-nav__btn {
    display: none;
    padding: 0;
    margin: 0;
    appearance: none;
    outline: none;
    background: transparent;
    border: none;
    border-radius: 0;
  }
  @media screen and (max-width: 1340px) {
    .l-nav__btn {
      display: grid;
      grid-row: 1;
      grid-column: 2;
      gap: 9px;
      width: 50px;
    }
  }
  @media screen and (max-width: 767px) {
    .l-nav__btn {
      gap: 1.3333333333vw;
      width: 9.0666666667vw;
    }
  }
  .l-nav__btn.is-active .l-nav__line {
    background-color: transparent;
  }
  .l-nav__btn.is-active .l-nav__line::before {
    background-color: #000;
    transform: translateY(0) rotate(-45deg);
  }
  .l-nav__btn.is-active .l-nav__line::after {
    width: 100%;
    background-color: #000;
    transform: translateY(0) rotate(45deg);
  }
  .l-nav__line-wrap {
    display: grid;
    place-content: center;
    justify-self: center;
    width: 30px;
    height: 30px;
  }
  @media screen and (max-width: 767px) {
    .l-nav__line-wrap {
      width: 4.8vw;
      height: 4.8vw;
    }
  }
  .l-nav__line {
    position: relative;
    display: grid;
    place-items: center start;
    width: inherit;
    height: 1px;
    background-color: #000;
    transition: all 0.3s;
  }
  .l-nav__line::before, .l-nav__line::after {
    position: absolute;
    display: block;
    width: inherit;
    height: inherit;
    content: "";
    background-color: inherit;
    transition: transform 0.3s;
  }
  .l-nav__line::before {
    transform: translateY(-10px);
  }
  @media screen and (max-width: 767px) {
    .l-nav__line::before {
      transform: translateY(-1.3333333333vw);
    }
  }
  .l-nav__line::after {
    width: 65%;
    margin-right: auto;
    transform: translateY(10px);
  }
  @media screen and (max-width: 767px) {
    .l-nav__line::after {
      transform: translateY(1.3333333333vw);
    }
  }
  .l-nav__btn-txt {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.1em;
  }
  @media screen and (max-width: 767px) {
    .l-nav__btn-txt {
      font-size: 1.8666666667vw;
    }
  }
  .l-nav__body {
    display: flex;
    gap: 45px;
    align-items: center;
  }
  @media screen and (max-width: 1340px) {
    .l-nav__main {
      position: fixed;
      top: var(--header-h);
      right: 0;
      z-index: 99;
      width: 100%;
      height: calc(100vh - var(--header-h));
      height: calc(100dvh - var(--header-h));
      overflow-y: scroll;
      overscroll-behavior: contain;
      background-color: #fff;
    }
  }
  @media screen and (min-width: 768px) and (max-width: 1340px) {
    .l-nav__main {
      max-width: 400px;
      background-color: transparent;
      opacity: 0;
      transform: translateX(100%);
      transition: 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
      transition-property: background, opacity, transform;
    }
  }
  @media screen and (max-width: 767px) {
    .l-nav__main {
      right: initial;
      left: 0;
      transition: 0.5s;
    }
  }
  @media screen and (min-width: 768px) and (max-width: 1340px) {
    .l-nav__main[aria-hidden=false] {
      right: 0;
      left: initial;
      background-color: #fff;
      opacity: 1;
      transform: translateX(0);
      transition-timing-function: cubic-bezier(0.17, 0.84, 0.44, 1);
    }
  }
  @media screen and (max-width: 767px) {
    .l-nav__main[aria-hidden=false] {
      visibility: visible;
      opacity: 1;
    }
  }
  @media screen and (max-width: 767px) {
    .l-nav__main[aria-hidden=true] {
      visibility: hidden;
      opacity: 0;
    }
  }
  @media screen and (max-width: 1340px) {
    .l-nav__sub {
      grid-row: 1;
      grid-column: 1;
    }
  }
  .l-nav__overlay {
    position: fixed;
    top: var(--header-h);
    left: 0;
    z-index: 10;
    visibility: hidden;
    width: 100%;
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
    transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
    transition-property: all;
    transition-property: opacity, visibility;
  }
}
/*========================================
  ページ全体のレイアウト
========================================*/
@layer layout {
  .l-page {
    display: grid;
    grid-template: "header" var(--header-h) "main" 1fr "footer";
    min-height: 100vh;
    min-height: 100svh;
  }
  .l-page__header {
    position: sticky;
    top: 0;
    left: 0;
    grid-area: header;
  }
  .l-page__main {
    grid-area: main;
  }
  .l-page__footer {
    grid-area: footer;
  }
}
/* ========================================
  ボタン
======================================== */
@layer component {
  .c-btn {
    position: relative;
    display: inline-block;
    line-height: 1.1;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    border: 0;
  }
}
/* ========================================
  container
======================================== */
@layer component {
  .c-container, .c-container-xs, .c-container-sm, .c-container-md, .c-container-lg {
    width: min(100% - var(--container-pd), var(--container-w));
    margin-inline: auto;
  }
  .c-container-lg {
    --container-w: 1440px;
  }
  .c-container-md {
    --container-w: 1300px;
  }
  .c-container-sm {
    --container-w: 1150px;
  }
  .c-container-xs {
    --container-w: 940px;
  }
}
/* ========================================
  アイコン
======================================== */
@layer component {
  .c-icon-circle-arrow-down, .c-icon-circle-arrow, .c-icon-arrow {
    position: relative;
    display: inline-block;
    font-style: normal;
    line-height: 1;
    vertical-align: top;
    background: 50% 50% no-repeat;
    background-size: contain;
  }
  .c-icon-arrow {
    aspect-ratio: 1;
  }
  .c-icon-arrow.-right {
    clip-path: polygon(35% 0, 85% 50%, 35% 100%, 30% 95%, 75% 50%, 30% 5%);
  }
  .c-icon-arrow.-left {
    clip-path: polygon(65% 0, 15% 50%, 65% 100%, 70% 95%, 25% 50%, 70% 5%);
  }
  .c-icon-circle-arrow {
    width: 1em;
    aspect-ratio: 1;
    border: 1px solid currentcolor;
    border-radius: 50%;
  }
  .c-icon-circle-arrow::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 50%;
    aspect-ratio: 1;
    margin: auto;
    content: "";
    background-color: currentcolor;
    clip-path: polygon(40% 0, 85% 50%, 40% 100%, 20% 100%, 65% 50%, 20% 0);
    transform: translate(-50%, -50%);
  }
  .c-icon-circle-arrow-down {
    width: 1em;
    aspect-ratio: 1;
    border: 1px solid currentcolor;
    border-radius: 50%;
  }
  .c-icon-circle-arrow-down::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 50%;
    aspect-ratio: 1;
    margin: auto;
    content: "";
    background-color: currentcolor;
    clip-path: polygon(0 35%, 50% 85%, 100% 35%, 90% 25%, 50% 65%, 10% 25%);
    transform: translate(-50%, -50%);
  }
}
/* ========================================
  section
======================================== */
@layer component {
  .c-sect + .c-sect {
    margin-top: 55px;
  }
  @media screen and (max-width: 767px) {
    .c-sect + .c-sect {
      margin-top: 13.3333333333vw;
    }
  }
  .c-sect.-mt-sm {
    margin-top: 30px;
  }
  @media screen and (max-width: 767px) {
    .c-sect.-mt-sm {
      margin-top: 8vw;
    }
  }
  .c-sect.-mt-lg {
    margin-top: 135px;
  }
  @media screen and (max-width: 767px) {
    .c-sect.-mt-lg {
      margin-top: 21.3333333333vw;
    }
  }
  .c-sect.-pt {
    padding-top: 70px;
    margin-top: 0;
  }
  @media screen and (max-width: 767px) {
    .c-sect.-pt {
      padding-top: 18.6666666667vw;
      margin-top: 0;
    }
  }
  .c-sect.-hr {
    padding-top: 60px;
    margin-top: 60px;
    border-top: 1px solid #808080;
  }
  @media screen and (max-width: 767px) {
    .c-sect.-hr {
      padding-top: 10.6666666667vw;
      margin-top: 10.6666666667vw;
    }
  }
  .c-sect.-hr-sm {
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid #808080;
  }
  @media screen and (max-width: 767px) {
    .c-sect.-hr-sm {
      padding-top: 5.3333333333vw;
      margin-top: 5.3333333333vw;
    }
  }
  .c-sect.-hr-bottom {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #808080;
  }
  @media screen and (max-width: 767px) {
    .c-sect.-hr-bottom {
      padding-bottom: 10.6666666667vw;
      margin-bottom: 10.6666666667vw;
    }
  }
  .c-sect.-hr-lg-blue {
    padding-top: 60px;
    margin-top: 60px;
    border-top: 44px solid var(--colorBlue);
  }
  @media screen and (max-width: 767px) {
    .c-sect.-hr-lg-blue {
      padding-top: 8vw;
      margin-top: 8vw;
      border-width: 5.8666666667vw;
    }
  }
}
/* ========================================
  テキスト
======================================== */
@layer component {
  .c-text {
    font-size: var(--text-md);
    line-height: 2.05;
    letter-spacing: 0.06em;
  }
}
/* ========================================
  text-size
======================================== */
@layer component {
  .c-text-size-12 {
    font-size: var(--text-xs);
  }
  .c-text-size-14 {
    font-size: var(--text-sm);
  }
  .c-text-size-16 {
    font-size: var(--text-md);
  }
  .c-text-size-18 {
    font-size: var(--text-lg);
  }
  .c-text-size-20 {
    font-size: var(--text-xl);
  }
  .c-text-size-22 {
    font-size: var(--text-2xl);
  }
  .c-text-size-24 {
    font-size: var(--text-3xl);
  }
  .c-text-size-28 {
    font-size: var(--text-4xl);
  }
  .c-text-size-34 {
    font-size: var(--text-5xl);
  }
  .c-text-size-40 {
    font-size: var(--text-6xl);
  }
  .c-text-custom[style*="--size"] {
    font-size: calc(var(--size) * 0.1rem);
  }
  @media screen and (max-width: 767px) {
    .c-text-custom[style*="--size"] {
      font-size: calc(var(--sp-size, var(--size)/1.2) / 375 * 100vw);
    }
  }
}
/* ========================================
  flex
======================================== */
@layer component {
  .c-flex {
    display: flex;
    flex-wrap: wrap;
    gap: calc(var(--gap-row) * 1px) calc(var(--gap-col) * 1px);
  }
  @media screen and (max-width: 767px) {
    .c-flex {
      gap: calc(var(--sp-gap-row) / 375 * 100vw) calc(var(--sp-gap-col) / 375 * 100vw);
    }
  }
  .c-flex__item-custom[style*="--w"] {
    flex: 1 1 var(--w);
  }
  @media screen and (max-width: 767px) {
    .c-flex__item-custom-sp[style*="--sp-w"] {
      flex: 1 1 var(--sp-w);
    }
  }
  .c-flex__item-auto {
    flex: 1 1 auto;
  }
  .c-flex.-inline-flex {
    display: inline-flex;
  }
  .c-flex.-nowrap {
    flex-wrap: nowrap;
  }
  .c-flex.-center {
    justify-content: center;
  }
  @media screen and (max-width: 767px) {
    .c-flex.-sp-column {
      flex-direction: column;
    }
  }
}
/* ========================================
  grid
======================================== */
@layer component {
  .c-grid {
    display: grid;
    gap: calc(var(--gap-row) * 1px) calc(var(--gap-col) * 1px);
  }
  @media screen and (max-width: 767px) {
    .c-grid {
      gap: calc(0.2666666667 * var(--sp-gap-row) * 1vw) calc(0.2666666667 * var(--sp-gap-col) * 1vw);
    }
  }
  .c-grid__span2-subgrid {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: 0;
  }
  .c-grid.-inline-grid {
    display: inline-grid;
  }
  .c-grid.-autofit {
    --w: 370px;
    grid-template-columns: repeat(auto-fit, minmax(var(--w), auto));
  }
  @media screen and (max-width: 767px) {
    .c-grid.-autofit {
      --sp-w: 100vw;
      grid-template-columns: repeat(auto-fit, minmax(calc(0.2666666667 * var(--sp-w) * 1vw), auto));
    }
  }
  .c-grid.-autofill-pc {
    --w: 370px;
    grid-template-columns: repeat(auto-fill, var(--w));
  }
  @media screen and (max-width: 767px) {
    .c-grid.-autofill-pc {
      grid-template-columns: 1fr;
    }
  }
  .c-grid.-col2 {
    grid-template-columns: repeat(2, 1fr);
  }
  @media screen and (min-width: 768px) {
    .c-grid.-col2-pc {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  .c-grid.-col2-custom {
    grid-template-columns: 1fr var(--w);
  }
  @media screen and (max-width: 767px) {
    .c-grid.-col2-custom {
      grid-template-columns: 1fr calc(0.2666666667 * var(--sp-w) * 1vw);
    }
  }
  @media screen and (min-width: 768px) {
    .c-grid.-col2-custom-pc {
      grid-template-columns: 1fr var(--w);
    }
  }
  .c-grid.-col2-custom-rev {
    grid-template-columns: var(--w) 1fr;
  }
  @media screen and (max-width: 767px) {
    .c-grid.-col2-custom-rev {
      grid-template-columns: calc(0.2666666667 * var(--sp-w) * 1vw) 1fr;
    }
  }
  @media screen and (min-width: 768px) {
    .c-grid.-col2-custom-rev-pc {
      grid-template-columns: var(--w) 1fr;
    }
  }
  .c-grid.-col3 {
    grid-template-columns: repeat(3, 1fr);
  }
  @media screen and (min-width: 768px) {
    .c-grid.-col3-pc {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  .order-1 {
    order: 1;
  }
  @media screen and (min-width: 768px) {
    .order-1-pc {
      order: 1;
    }
  }
  .order-2 {
    order: 2;
  }
  @media screen and (min-width: 768px) {
    .order-2-pc {
      order: 2;
    }
  }
  .col-span-2 {
    grid-column: span 2;
  }
  @media screen and (min-width: 768px) {
    .col-span-2-pc {
      grid-column: span 2;
    }
  }
  @media screen and (max-width: 767px) {
    .col-span-2-sp {
      grid-column: span 2;
    }
  }
}
/* ========================================
  list
======================================== */
@layer component {
  .c-list-01 {
    list-style: disc;
    list-style-position: inside;
  }
  .c-list-01 > li > ul {
    list-style: circle;
  }
  .c-list-01 > li > ul > li > ul {
    margin-top: 1em;
    list-style: square;
  }
  .c-list-01 > li ul {
    padding-left: 2.5em;
    margin-top: 0.5em;
  }
  .c-list-01 > li ul li {
    margin-top: 0.25em;
  }
  .c-list-disc > li {
    padding-left: 1em;
    text-indent: -1em;
  }
  .c-list-disc > li::before {
    margin-right: 0.5em;
    content: "・";
  }
  .c-list-disc > li * {
    text-indent: 0;
  }
  .c-list-disc > li * > li,
  .c-list-disc > li * .c-note {
    padding-left: 0;
  }
  .c-list-disc.-space {
    display: grid;
    gap: 1em;
  }
  .c-list-disc-lg > li {
    padding-left: 1em;
    text-indent: -1em;
  }
  .c-list-disc-lg > li::before {
    content: "●";
  }
  .c-list-disc-lg > li * {
    text-indent: 0;
  }
  .c-list-disc-lg > li > li,
  .c-list-disc-lg > li .c-note {
    padding-left: 0;
  }
  .c-list-disc-lg.-green > li::before {
    color: var(--colorPrimary);
  }
  .c-list-disc-lg.-blue > li::before {
    color: var(--colorBlue);
  }
  .c-list-disc-lg.-pink > li::before {
    color: var(--colorPink);
  }
  .c-list-asterisk > li {
    padding-left: 1em;
    text-indent: -1em;
  }
  .c-list-asterisk > li::before {
    content: "※";
  }
  .c-list-dia > li {
    padding-left: 1.5em;
    text-indent: -1.5em;
  }
  .c-list-dia > li::before {
    margin-right: 0.5em;
    content: "◆";
  }
  .c-list-dia-02 > li {
    padding-left: 1.5em;
    text-indent: -1.5em;
  }
  .c-list-dia-02 > li::before {
    margin-right: 0.5em;
    content: "◇";
  }
  .c-list-star > li {
    padding-left: 1.5em;
    text-indent: -1.5em;
  }
  .c-list-star > li::before {
    margin-right: 0.5em;
    content: "★";
  }
  .c-list-decimal {
    list-style-position: inside;
    list-style-type: decimal;
  }
  .c-list-decimal > li {
    padding-left: 1.3em;
    text-indent: -1.3em;
  }
  .c-list-circle > li {
    padding-left: 1.5em;
    text-indent: -1.5em;
  }
  .c-list-circle > li::before {
    position: relative;
    top: 0.1em;
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 0.5em;
    content: "";
    border: 2px solid var(--colorPrimary);
    border-radius: 50%;
  }
  .c-list-circle-02 > li {
    padding-left: 1.5em;
    text-indent: -1.5em;
  }
  .c-list-circle-02 > li::before {
    margin-right: 0.5em;
    content: "o";
  }
  .c-list-circle-num {
    list-style: none;
    counter-reset: my-counter;
  }
  .c-list-circle-num > li {
    position: relative;
    padding-left: 1.3em;
  }
  .c-list-circle-num > li::before, .c-list-circle-num > li::after {
    position: absolute;
    display: grid;
    place-items: center;
    width: 1em;
    height: 1em;
  }
  .c-list-circle-num > li::before {
    top: 0.75em;
    left: 0.3em;
    font-size: 0.7em;
    line-height: 1;
    content: counter(my-counter);
    counter-increment: my-counter;
  }
  .c-list-circle-num > li::after {
    top: 0.4em;
    left: 0;
    box-sizing: border-box;
    content: "";
    border: 1px solid #000;
    border-radius: 50%;
  }
  .c-list-num-01 {
    list-style: none;
    counter-reset: my-counter;
  }
  .c-list-num-01 > li {
    position: relative;
    padding-left: 1.2em;
    text-indent: -1.2em;
  }
  .c-list-num-01 > li::before {
    margin-right: 0.3em;
    content: counter(my-counter) ".";
    counter-increment: my-counter;
  }
  .c-list-num-01 > li * {
    text-indent: 0;
  }
  .c-list-num-01 > li > li,
  .c-list-num-01 > li .c-note {
    padding-left: 0;
  }
  .c-list-num-01.-pink > li::before {
    color: var(--colorPink);
  }
  .c-list-num-02 {
    list-style: none;
    counter-reset: my-counter;
  }
  .c-list-num-02 > li {
    position: relative;
    padding-left: 1.5em;
    text-indent: -1.5em;
  }
  .c-list-num-02 > li::before {
    margin-right: 0.1em;
    content: "(" counter(my-counter) ")";
    counter-increment: my-counter;
  }
  .c-list-square > li {
    padding-left: 1.5em;
    text-indent: -1.5em;
  }
  .c-list-square > li::before {
    margin-right: 0.5em;
    content: "□";
  }
}
/* ========================================
  margin
======================================== */
@layer component {
  .c-mt-5 {
    margin-top: 5px;
  }
  @media screen and (max-width: 767px) {
    .c-mt-5 {
      margin-top: 1.3333333333vw;
    }
  }
  .c-mt-10 {
    margin-top: 10px;
  }
  @media screen and (max-width: 767px) {
    .c-mt-10 {
      margin-top: 2.6666666667vw;
    }
  }
  .c-mt-15 {
    margin-top: 15px;
  }
  @media screen and (max-width: 767px) {
    .c-mt-15 {
      margin-top: 4vw;
    }
  }
  .c-mt-20 {
    margin-top: 20px;
  }
  @media screen and (max-width: 767px) {
    .c-mt-20 {
      margin-top: 5.3333333333vw;
    }
  }
  .c-mt-25 {
    margin-top: 25px;
  }
  @media screen and (max-width: 767px) {
    .c-mt-25 {
      margin-top: 6.6666666667vw;
    }
  }
  .c-mt-30 {
    margin-top: 30px;
  }
  @media screen and (max-width: 767px) {
    .c-mt-30 {
      margin-top: 8vw;
    }
  }
  .c-mt-35 {
    margin-top: 35px;
  }
  @media screen and (max-width: 767px) {
    .c-mt-35 {
      margin-top: 9.3333333333vw;
    }
  }
  .c-mt-40 {
    margin-top: 40px;
  }
  @media screen and (max-width: 767px) {
    .c-mt-40 {
      margin-top: 10.6666666667vw;
    }
  }
  .c-mt-45 {
    margin-top: 45px;
  }
  @media screen and (max-width: 767px) {
    .c-mt-45 {
      margin-top: 12vw;
    }
  }
  .c-mt-50 {
    margin-top: 50px;
  }
  @media screen and (max-width: 767px) {
    .c-mt-50 {
      margin-top: 13.3333333333vw;
    }
  }
  .c-mt-55 {
    margin-top: 55px;
  }
  @media screen and (max-width: 767px) {
    .c-mt-55 {
      margin-top: 14.6666666667vw;
    }
  }
  .c-mt-60 {
    margin-top: 60px;
  }
  @media screen and (max-width: 767px) {
    .c-mt-60 {
      margin-top: 8vw;
    }
  }
  .c-mt-65 {
    margin-top: 65px;
  }
  @media screen and (max-width: 767px) {
    .c-mt-65 {
      margin-top: 8.6666666667vw;
    }
  }
  .c-mt-70 {
    margin-top: 70px;
  }
  @media screen and (max-width: 767px) {
    .c-mt-70 {
      margin-top: 9.3333333333vw;
    }
  }
  .c-mt-75 {
    margin-top: 75px;
  }
  @media screen and (max-width: 767px) {
    .c-mt-75 {
      margin-top: 10vw;
    }
  }
  .c-mt-80 {
    margin-top: 80px;
  }
  @media screen and (max-width: 767px) {
    .c-mt-80 {
      margin-top: 10.6666666667vw;
    }
  }
  .c-mt-85 {
    margin-top: 85px;
  }
  @media screen and (max-width: 767px) {
    .c-mt-85 {
      margin-top: 11.3333333333vw;
    }
  }
  .c-mt-90 {
    margin-top: 90px;
  }
  @media screen and (max-width: 767px) {
    .c-mt-90 {
      margin-top: 12vw;
    }
  }
  .c-mt-95 {
    margin-top: 95px;
  }
  @media screen and (max-width: 767px) {
    .c-mt-95 {
      margin-top: 12.6666666667vw;
    }
  }
  .c-mt-100 {
    margin-top: 100px;
  }
  @media screen and (max-width: 767px) {
    .c-mt-100 {
      margin-top: 13.3333333333vw;
    }
  }
  .c-mt-105 {
    margin-top: 105px;
  }
  @media screen and (max-width: 767px) {
    .c-mt-105 {
      margin-top: 14vw;
    }
  }
  .c-mt-110 {
    margin-top: 110px;
  }
  @media screen and (max-width: 767px) {
    .c-mt-110 {
      margin-top: 14.6666666667vw;
    }
  }
  .c-mt-115 {
    margin-top: 115px;
  }
  @media screen and (max-width: 767px) {
    .c-mt-115 {
      margin-top: 15.3333333333vw;
    }
  }
  .c-mt-120 {
    margin-top: 120px;
  }
  @media screen and (max-width: 767px) {
    .c-mt-120 {
      margin-top: 16vw;
    }
  }
  .c-mt-125 {
    margin-top: 125px;
  }
  @media screen and (max-width: 767px) {
    .c-mt-125 {
      margin-top: 16.6666666667vw;
    }
  }
  .c-mt-130 {
    margin-top: 130px;
  }
  @media screen and (max-width: 767px) {
    .c-mt-130 {
      margin-top: 17.3333333333vw;
    }
  }
  .c-mt-135 {
    margin-top: 135px;
  }
  @media screen and (max-width: 767px) {
    .c-mt-135 {
      margin-top: 18vw;
    }
  }
  .c-mt-140 {
    margin-top: 140px;
  }
  @media screen and (max-width: 767px) {
    .c-mt-140 {
      margin-top: 18.6666666667vw;
    }
  }
  .c-mt-145 {
    margin-top: 145px;
  }
  @media screen and (max-width: 767px) {
    .c-mt-145 {
      margin-top: 19.3333333333vw;
    }
  }
  .c-mt-150 {
    margin-top: 150px;
  }
  @media screen and (max-width: 767px) {
    .c-mt-150 {
      margin-top: 20vw;
    }
  }
  .c-mt-1em {
    margin-top: 1em;
  }
  .c-mt-2em {
    margin-top: 2em;
  }
  .c-ml-1em {
    margin-left: 1em;
  }
  .c-margin-inline-auto {
    margin-inline: auto;
  }
  .c-ttl-mb-01 {
    margin-bottom: 20px;
  }
  @media screen and (max-width: 767px) {
    .c-ttl-mb-01 {
      margin-bottom: 2.6666666667vw;
    }
  }
  .c-ttl-mb-02 {
    margin-bottom: 70px;
  }
  @media screen and (max-width: 767px) {
    .c-ttl-mb-02 {
      margin-bottom: 10.6666666667vw;
    }
  }
  .c-ttl-mb-03 {
    margin-bottom: 95px;
  }
  @media screen and (max-width: 767px) {
    .c-ttl-mb-03 {
      margin-bottom: 10.6666666667vw;
    }
  }
  .c-pl-1em {
    padding-left: 1em;
  }
  @media screen and (min-width: 768px) {
    .c-pl-1em-pc {
      padding-left: 1em;
    }
  }
  @media screen and (min-width: 768px) {
    .c-padding-inline-per-5-pc {
      padding-inline: 5%;
    }
  }
}
/*========================================
  container
========================================*/
@layer component {
  .c-content-wrap {
    width: min(100%, var(--container-w));
  }
  .c-content-wrap-md {
    width: min(100%, var(--container-md-w));
  }
  .c-content-wrap-sm {
    width: min(100%, var(--container-sm-w));
  }
  .c-content-wrap-xs {
    width: var(--container-xs-w);
  }
  @media screen and (max-width: 767px) {
    .c-content-wrap-xs {
      width: 100%;
    }
  }
  .c-content-wrap-xxs {
    width: var(--container-xxs-w);
  }
  @media screen and (max-width: 767px) {
    .c-content-wrap-xxs {
      width: 100%;
    }
  }
}
/*========================================
  note
========================================*/
@layer component {
  .c-note {
    text-indent: -1.1em;
    padding-left: 1.1em;
  }
  .c-note:before {
    content: "※";
  }
}
/*========================================
  img
========================================*/
@layer component {
  .c-img-full {
    width: 100%;
  }
  @media screen and (max-width: 767px) {
    .c-img-sp-full {
      width: 100%;
    }
  }
}
/* ========================================
  link
======================================== */
@layer component {
  .c-link-blank, .c-link-pink-underline, .c-link-green, .c-link-blue, .c-link-black, .c-link {
    text-underline-offset: 3px;
  }
  @media (any-hover: hover) {
    .c-link-blank, .c-link-pink-underline, .c-link-green, .c-link-blue, .c-link-black, .c-link {
      transition: opacity 0.3s;
    }
    .c-link-blank:hover, .c-link-pink-underline:hover, .c-link-green:hover, .c-link-blue:hover, .c-link-black:hover, .c-link:hover {
      text-decoration: underline;
      opacity: 0.7;
    }
  }
  .c-link {
    color: var(--colorRed);
  }
  .c-link-black {
    color: var(--main);
  }
  .c-link-blue {
    color: #0071af;
  }
  .c-link-green {
    color: var(--colorPrimary);
  }
  .c-link-pink-underline {
    color: var(--colorPink);
    text-decoration: underline;
  }
  @media (any-hover: hover) {
    .c-link-pink-underline:hover {
      text-decoration: none;
    }
  }
  .c-link-blank {
    padding-right: 1.5em;
    background: url("../img/common/icon/icon_blank.svg") top 50% right 0/0.8em 0.8em no-repeat;
  }
  .c-link-media__img {
    overflow: hidden;
  }
  .c-link-media__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  @media (any-hover: hover) {
    .c-link-media .c-link-media__img img {
      transition: 0.5s;
    }
    .c-link-media:hover {
      text-decoration: underline;
    }
    .c-link-media:hover .c-link-media__img img {
      transform: scale(1.1);
    }
  }
  @media (any-hover: hover) {
    .c-link-alpha {
      transition: 0.5s;
      transition-property: opacity;
    }
    .c-link-alpha:hover {
      opacity: 0.7;
    }
  }
  .c-not-link {
    pointer-events: none;
    cursor: not-allowed;
  }
}
/* ========================================
  underline-offset
======================================== */
@layer component {
  .c-underline {
    text-decoration: underline;
  }
}
/*========================================
  underline-offset
========================================*/
@layer component {
  .c-txt-ul-offset-10 {
    text-underline-offset: 10px;
  }
}
/*========================================
  indent
========================================*/
@layer component {
  .c-indent-01 {
    text-indent: -1em;
    padding-left: 1em;
  }
  .c-indent-02 {
    text-indent: -1.3em;
    padding-left: 1.3em;
  }
}
/*========================================
  frame
========================================*/
@layer component {
  .c-frame-gray {
    background-color: #eaeaea;
    padding: 20px;
  }
}
/*========================================
  float-box
========================================*/
@layer component {
  @media screen and (min-width: 768px) {
    .c-float-box.c-float-box--pc .c-float-box__img {
      float: left;
      margin: 0 40px 40px 0;
    }
  }
  @media screen and (max-width: 767px) {
    .c-float-box.c-float-box--pc .c-float-box__img + .c-float-box__txt {
      margin-top: 5.3333333333vw;
    }
  }
}
/* ========================================
  iframe
======================================== */
@layer component {
  .c-iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
}
/* ========================================
  accordion
======================================== */
@layer project {
  .p-acc-01 summary {
    display: inline-flex;
    gap: 1em;
    align-items: center;
  }
  .p-acc-01 summary .c-icon-circle-arrow-down {
    width: 1.2em;
    height: 1.2em;
    background-color: var(--colorPrimary);
    border-color: var(--colorPrimary);
    transition: transform 0.5s;
  }
  .p-acc-01 summary .c-icon-circle-arrow-down::before {
    background-color: #fff;
  }
  .p-acc-01.is-open summary .c-icon-circle-arrow-down {
    transform: rotate(-180deg);
  }
}
/* ========================================
  パンくず
======================================== */
@layer project {
  .p-breadcrumb {
    width: 100%;
    border-bottom: 48px solid rgba(0, 136, 87, 0.1);
  }
  .p-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 15px 0;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
  }
  @media screen and (max-width: 767px) {
    .p-breadcrumb__list {
      padding: 2.6666666667vw 0;
      font-size: 3.2vw;
      border-width: 2.6666666667vw;
    }
  }
  .p-breadcrumb__list > li {
    position: relative;
  }
  .p-breadcrumb__list > li:nth-of-type(n + 2) {
    padding-left: 2em;
  }
  .p-breadcrumb__list > li:nth-of-type(n + 2)::before {
    position: absolute;
    top: 50%;
    left: 0.5em;
    display: block;
    width: 0.5em;
    height: 0.5em;
    margin-top: -0.1em;
    content: "";
    border-top: 1px solid #808080;
    border-right: 1px solid #808080;
    transform: rotate(45deg) translateY(-50%);
  }
  .p-breadcrumb__list > li a {
    position: relative;
  }
  .p-breadcrumb__list > li a::before {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 0;
    height: 1px;
    content: "";
    background-color: var(--main);
    transition: width 0.5s;
  }
  @media (any-hover: hover) {
    .p-breadcrumb__list > li a:hover::before {
      width: 100%;
    }
  }
  .p-breadcrumb.-no-border {
    border-bottom: none;
  }
}
/* ========================================
  ボタン
======================================== */
@layer project {
  .p-gnav-main__list {
    display: flex;
    gap: 6px;
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__list {
      flex-direction: column;
      gap: 20px;
      padding: 30px 0 35px 25px;
    }
  }
  @media screen and (max-width: 767px) {
    .p-gnav-main__list {
      gap: 8.5333333333vw;
      padding: 10.6666666667vw 0 9.3333333333vw 6.6666666667vw;
    }
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__list + .p-gnav-main__list {
      border-top: 1px solid #a5a5a5;
    }
  }
  .p-gnav-main__item {
    position: relative;
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__item {
      display: grid;
      grid-template: "link  ..... toggle" "child child child "/1fr 0 max-content;
    }
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__link {
      display: grid;
      grid-area: link;
      grid-template: "icon  ..... txt   ..... arrow"/45px 25px 1fr 0 50px;
      align-items: center;
      padding: 10px;
      border-radius: 5px 0 0 5px;
    }
  }
  @media screen and (max-width: 767px) {
    .p-gnav-main__link {
      grid-template-columns: 12vw 6.6666666667vw 1fr 0 13.3333333333vw;
      padding: 2.6666666667vw 0;
    }
  }
  @media screen and (any-hover: hover) and (max-width: 1340px) {
    .p-gnav-main__link {
      transition: background-color 0.3s;
    }
    .p-gnav-main__link:hover {
      background-color: rgba(0, 136, 87, 0.5);
    }
  }
  .p-gnav-main__txt {
    grid-area: txt;
    padding: 5px 15px;
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__txt {
      padding: 0;
      line-height: 1.5;
    }
  }
  @media screen and (max-width: 767px) {
    .p-gnav-main__txt {
      font-size: 3.7333333333vw;
    }
  }
  .p-gnav-main__txt-en {
    display: none;
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__txt-en {
      display: block;
      margin-top: 5px;
      font-size: 1rem;
      color: #808080;
      letter-spacing: 0.1em;
    }
  }
  @media screen and (max-width: 767px) {
    .p-gnav-main__txt-en {
      margin-top: 1.3333333333vw;
      font-size: 2.6666666667vw;
    }
  }
  .p-gnav-main__icon {
    display: none;
    grid-area: icon;
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__icon {
      display: block;
      text-align: center;
    }
  }
  .p-gnav-main__icon img[src$="icon_ambulatory.svg"] {
    aspect-ratio: 1/1;
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__icon img[src$="icon_ambulatory.svg"] {
      width: 29px;
    }
  }
  @media screen and (max-width: 767px) {
    .p-gnav-main__icon img[src$="icon_ambulatory.svg"] {
      width: 7.7333333333vw;
    }
  }
  .p-gnav-main__icon img[src$="icon_hospitalization.svg"] {
    aspect-ratio: 34/23;
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__icon img[src$="icon_hospitalization.svg"] {
      width: 34px;
    }
  }
  @media screen and (max-width: 767px) {
    .p-gnav-main__icon img[src$="icon_hospitalization.svg"] {
      width: 9.0666666667vw;
    }
  }
  .p-gnav-main__icon img[src$="icon_dialysis.svg"] {
    aspect-ratio: 1/1;
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__icon img[src$="icon_dialysis.svg"] {
      width: 27px;
    }
  }
  @media screen and (max-width: 767px) {
    .p-gnav-main__icon img[src$="icon_dialysis.svg"] {
      width: 7.2vw;
    }
  }
  .p-gnav-main__icon img[src$="icon_medical_checkup.svg"] {
    aspect-ratio: 29/25;
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__icon img[src$="icon_medical_checkup.svg"] {
      width: 29px;
    }
  }
  @media screen and (max-width: 767px) {
    .p-gnav-main__icon img[src$="icon_medical_checkup.svg"] {
      width: 7.7333333333vw;
    }
  }
  .p-gnav-main__icon img[src$="icon_rehabilitation.svg"] {
    aspect-ratio: 26/29;
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__icon img[src$="icon_rehabilitation.svg"] {
      width: 26px;
    }
  }
  @media screen and (max-width: 767px) {
    .p-gnav-main__icon img[src$="icon_rehabilitation.svg"] {
      width: 6.9333333333vw;
    }
  }
  .p-gnav-main__icon img[src$="icon_nursing_department.svg"] {
    aspect-ratio: 30/27;
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__icon img[src$="icon_nursing_department.svg"] {
      width: 30px;
    }
  }
  @media screen and (max-width: 767px) {
    .p-gnav-main__icon img[src$="icon_nursing_department.svg"] {
      width: 8vw;
    }
  }
  .p-gnav-main__icon img[src$="icon_about.svg"] {
    aspect-ratio: 1/1;
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__icon img[src$="icon_about.svg"] {
      width: 29px;
    }
  }
  @media screen and (max-width: 767px) {
    .p-gnav-main__icon img[src$="icon_about.svg"] {
      width: 7.7333333333vw;
    }
  }
  .p-gnav-main__arrow-wrap {
    display: none;
    grid-area: arrow;
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__arrow-wrap {
      display: grid;
      place-items: center;
    }
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__arrow {
      --w: 22px;
      --h: 22px;
    }
  }
  @media screen and (max-width: 767px) {
    .p-gnav-main__arrow {
      --w: calc(15 / 375 * 100vw);
      --h: calc(15 / 375 * 100vw);
    }
  }
  .p-gnav-main__toggle-wrap {
    display: none;
    grid-area: toggle;
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__toggle-wrap {
      display: grid;
      place-items: center;
      width: 52px;
      border-left: 1px solid #a5a5a5;
    }
  }
  @media screen and (max-width: 767px) {
    .p-gnav-main__toggle-wrap {
      width: 13.8666666667vw;
    }
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__toggle {
      display: grid;
      place-items: center;
      width: 100%;
      height: 100%;
      background-color: transparent;
      border: none;
    }
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__toggle.is-active .p-gnav-main__toggle-icon {
      border-color: #fff;
    }
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__toggle.is-active .p-gnav-main__toggle-icon::after {
      transform: rotate(0);
    }
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__toggle-icon {
      position: relative;
      width: 16px;
      height: 16px;
      border: 1px solid #000;
      border-radius: 50%;
      transition: border-color 0.3s;
    }
  }
  @media screen and (max-width: 767px) {
    .p-gnav-main__toggle-icon {
      width: 4vw;
      height: 4vw;
    }
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__toggle-icon::before, .p-gnav-main__toggle-icon::after {
      position: absolute;
      inset: 0;
      display: block;
      width: 50%;
      height: 1px;
      margin: auto;
      content: "";
      background-color: #000;
    }
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__toggle-icon::after {
      transform: rotate(-90deg);
      transition: transform 0.3s;
    }
  }
  .p-gnav-main__child-wrap {
    position: relative;
    grid-area: child;
  }
  @media screen and (min-width: 1341px) {
    .p-gnav-main__child-wrap {
      position: absolute;
      top: 45px;
      left: -270px;
      z-index: 3;
      visibility: hidden;
      opacity: 0;
      transform: translate3d(0, 10px, 0);
      transition: opacity 0.3s, transform 0.3s;
    }
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__child-wrap {
      display: none;
    }
  }
  @media screen and (min-width: 1341px) {
    .p-gnav-main__child-wrap::before {
      position: absolute;
      top: -20px;
      left: 50%;
      z-index: -1;
      display: block;
      width: 100%;
      height: 30px;
      content: "";
      transform: translateX(-50%);
    }
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__list-a {
      display: grid;
      gap: 10px;
      padding: 22px 25px;
      border-top: 1px solid #a5a5a5;
    }
  }
  @media screen and (max-width: 767px) {
    .p-gnav-main__list-a {
      gap: 2.6666666667vw;
      padding: 5.8666666667vw 6.6666666667vw;
    }
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__link-a {
      display: grid;
      grid-template-columns: 40px 1fr;
      gap: 28px;
      padding: 10px 0;
      font-size: 1.4rem;
      font-weight: 300;
      letter-spacing: 0.1em;
      border-radius: 5px;
    }
  }
  @media screen and (max-width: 767px) {
    .p-gnav-main__link-a {
      grid-template-columns: 10.6666666667vw 1fr;
      gap: 7.4666666667vw;
      padding: 2.6666666667vw 0;
      font-size: 3.7333333333vw;
    }
  }
  @media (any-hover: hover) {
    .p-gnav-main__link-a {
      transition: background-color 0.3s;
    }
    .p-gnav-main__link-a:hover {
      background-color: rgba(0, 136, 87, 0.5);
    }
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__icon-a {
      display: grid;
      place-items: center;
    }
  }
  .p-gnav-main__icon-a img[src$="icon_calendar.svg"] {
    aspect-ratio: 21/19;
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__icon-a img[src$="icon_calendar.svg"] {
      width: 21px;
    }
  }
  @media screen and (max-width: 767px) {
    .p-gnav-main__icon-a img[src$="icon_calendar.svg"] {
      width: 5.6vw;
    }
  }
  .p-gnav-main__icon-a img[src$="icon_pin.svg"] {
    aspect-ratio: 12/18;
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__icon-a img[src$="icon_pin.svg"] {
      width: 12px;
    }
  }
  @media screen and (max-width: 767px) {
    .p-gnav-main__icon-a img[src$="icon_pin.svg"] {
      width: 3.2vw;
    }
  }
  .p-gnav-main__icon-a img[src$="icon_tel.svg"] {
    aspect-ratio: 13/18;
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__icon-a img[src$="icon_tel.svg"] {
      width: 13px;
    }
  }
  @media screen and (max-width: 767px) {
    .p-gnav-main__icon-a img[src$="icon_tel.svg"] {
      width: 3.4666666667vw;
    }
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__list-b {
      display: grid;
      gap: 10px;
      padding: 37px 25px;
      border-top: 1px solid #a5a5a5;
    }
  }
  @media screen and (max-width: 767px) {
    .p-gnav-main__list-b {
      gap: 6.6666666667vw;
      padding: 9.8666666667vw 6.6666666667vw;
    }
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__link-b {
      position: relative;
      display: block;
      padding: 10px 0 10px 68px;
      font-size: 1.4rem;
      font-weight: 300;
      letter-spacing: 0.1em;
      border-radius: 5px;
    }
  }
  @media screen and (max-width: 767px) {
    .p-gnav-main__link-b {
      padding: 2.6666666667vw 0 2.6666666667vw 18.1333333333vw;
      font-size: 3.7333333333vw;
    }
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__link-b::before {
      position: absolute;
      top: 1.2em;
      left: 1em;
      display: block;
      width: 0.6em;
      height: 0.6em;
      content: "";
      border-top: 1px solid #000;
      border-right: 1px solid #000;
      transform: rotate(45deg);
    }
  }
  @media (any-hover: hover) {
    .p-gnav-main__link-b {
      transition: background-color 0.3s;
    }
    .p-gnav-main__link-b:hover {
      background-color: rgba(0, 136, 87, 0.5);
    }
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__info {
      display: grid;
      gap: 20px;
      padding: 30px 10px 50px 40px;
      border-top: 1px solid #a5a5a5;
    }
  }
  @media screen and (max-width: 767px) {
    .p-gnav-main__info {
      gap: 8vw;
      padding: 9.3333333333vw 2.6666666667vw 13.3333333333vw 10.4vw;
    }
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__info dt,
    .p-gnav-main__info dd {
      font-size: 1.4rem;
      font-weight: 300;
      letter-spacing: 0.1em;
    }
  }
  @media screen and (max-width: 767px) {
    .p-gnav-main__info dt,
    .p-gnav-main__info dd {
      font-size: 3.7333333333vw;
    }
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__info dt {
      color: var(--colorPrimary);
    }
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-main__info dd {
      margin-top: 0.5em;
    }
  }
  @media screen and (min-width: 1341px) {
    .p-gnav-main__item.is-active .p-gnav-main__txt {
      color: #fff;
      background-color: var(--colorPrimary);
    }
  }
  @media screen and (min-width: 1341px) {
    .p-gnav-main__item.is-active .p-gnav-main__child-wrap {
      visibility: visible;
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  @media screen and (max-width: 767px) {
    .habilis .p-gnav-main__list {
      gap: 2.6666666667vw;
    }
  }
  @media screen and (any-hover: hover) and (max-width: 1340px) {
    .habilis .p-gnav-main__link:hover {
      background-color: rgba(33, 49, 116, 0.5);
    }
  }
  @media screen and (max-width: 767px) {
    .habilis .p-gnav-main__icon img {
      width: auto;
    }
  }
  .habilis .p-gnav-main__icon img[src$="icon_01.svg"] {
    aspect-ratio: 1;
  }
  @media screen and (max-width: 767px) {
    .habilis .p-gnav-main__icon img[src$="icon_01.svg"] {
      height: 4em;
    }
  }
  .habilis .p-gnav-main__icon img[src$="icon_02.svg"] {
    aspect-ratio: 47/53;
  }
  @media screen and (max-width: 767px) {
    .habilis .p-gnav-main__icon img[src$="icon_02.svg"] {
      height: 4em;
    }
  }
  .habilis .p-gnav-main__icon img[src$="icon_03.svg"] {
    aspect-ratio: 56/44;
  }
  @media screen and (max-width: 767px) {
    .habilis .p-gnav-main__icon img[src$="icon_03.svg"] {
      height: 3em;
    }
  }
  .habilis .p-gnav-main__icon img[src$="icon_04.svg"] {
    aspect-ratio: 54/46;
  }
  @media screen and (max-width: 767px) {
    .habilis .p-gnav-main__icon img[src$="icon_04.svg"] {
      height: 3em;
    }
  }
  .habilis .p-gnav-main__icon img[src$="icon_06.svg"] {
    aspect-ratio: 45/59;
  }
  @media screen and (max-width: 767px) {
    .habilis .p-gnav-main__icon img[src$="icon_06.svg"] {
      height: 3em;
    }
  }
  .habilis .p-gnav-main__icon img[src$="icon_07.svg"] {
    aspect-ratio: 49/45;
  }
  @media screen and (max-width: 767px) {
    .habilis .p-gnav-main__icon img[src$="icon_07.svg"] {
      height: 4em;
    }
  }
  .habilis .p-gnav-main__icon img[src$="icon_08.svg"] {
    aspect-ratio: 52/43;
  }
  @media screen and (max-width: 767px) {
    .habilis .p-gnav-main__icon img[src$="icon_08.svg"] {
      height: 4em;
    }
  }
  .habilis .p-gnav-main__icon img[src$="icon_09.svg"] {
    aspect-ratio: 44/42;
  }
  @media screen and (max-width: 767px) {
    .habilis .p-gnav-main__icon img[src$="icon_09.svg"] {
      height: 3em;
    }
  }
  .habilis .p-gnav-main__icon img[src$="icon_10.svg"] {
    aspect-ratio: 53/43;
  }
  @media screen and (max-width: 767px) {
    .habilis .p-gnav-main__icon img[src$="icon_10.svg"] {
      height: 3em;
    }
  }
  .habilis .p-gnav-main__icon img[src$="icon_11.svg"] {
    aspect-ratio: 34/38;
  }
  @media screen and (max-width: 767px) {
    .habilis .p-gnav-main__icon img[src$="icon_11.svg"] {
      height: 3em;
    }
  }
  @media screen and (min-width: 1341px) {
    .habilis .p-gnav-main__item.is-active .p-gnav-main__txt {
      background-color: var(--colorBlue);
    }
  }
  @media screen and (max-width: 767px) {
    .habilis .p-gnav-main .p-gnav-main__icon img[src$="icon_01.svg"] {
      height: 10.4vw;
    }
  }
  @media screen and (max-width: 767px) {
    .habilis .p-gnav-main .p-gnav-main__icon img[src$="icon_02.svg"] {
      height: 9.3333333333vw;
    }
  }
  @media screen and (max-width: 767px) {
    .habilis .p-gnav-main .p-gnav-main__icon img[src$="icon_03.svg"] {
      height: 8.5333333333vw;
    }
  }
  @media screen and (max-width: 767px) {
    .habilis .p-gnav-main .p-gnav-main__icon img[src$="icon_04.svg"] {
      height: 9.8666666667vw;
    }
  }
  @media screen and (max-width: 767px) {
    .habilis .p-gnav-main .p-gnav-main__icon img[src$="icon_05.svg"] {
      height: 7.7333333333vw;
    }
  }
  @media screen and (min-width: 1341px) {
    .p-gnav-child {
      width: 755px;
      overflow: hidden;
      background-color: #fff;
      border-radius: 5px;
      box-shadow: 5px 5px 16px rgba(0, 0, 0, 0.2);
    }
  }
  .p-gnav-child__head {
    width: 100%;
    height: 170px;
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-child__head {
      display: none;
    }
  }
  @media screen and (min-width: 1341px) {
    .p-gnav-child__head-link {
      position: relative;
      display: block;
      width: inherit;
      height: inherit;
    }
  }
  @media screen and (min-width: 1341px) {
    .p-gnav-child__bg-img {
      width: inherit;
      height: inherit;
    }
  }
  @media screen and (min-width: 1341px) {
    .p-gnav-child__bg-img::before {
      position: absolute;
      top: 0;
      left: 0;
      display: block;
      width: inherit;
      height: inherit;
      content: "";
      background-image: linear-gradient(to right, rgba(0, 136, 87, 0.6), transparent 50%, rgba(0, 136, 87, 0.6) 50%, rgba(0, 136, 87, 0.6) 100%);
      background-position: 1% 50%;
      background-size: 210% auto;
      transition: all 0.5s;
    }
  }
  @media screen and (min-width: 1341px) {
    .p-gnav-child__bg-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
  }
  @media screen and (min-width: 1341px) {
    .p-gnav-child__ttl-wrap {
      position: absolute;
      top: 0;
      bottom: 0;
      z-index: 2;
      display: grid;
      align-content: center;
      padding-left: 40px;
      margin: auto;
      letter-spacing: 0.1em;
    }
  }
  @media screen and (min-width: 1341px) {
    .p-gnav-child__ttl {
      font-size: 2rem;
      font-weight: 500;
      color: #fff;
    }
  }
  @media screen and (min-width: 1341px) {
    .p-gnav-child__en-ttl {
      font-size: 1.2rem;
      color: #fff;
    }
  }
  .p-gnav-child__body {
    padding: 50px 40px;
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-child__body {
      padding: 20px 15px 10px;
    }
  }
  @media screen and (max-width: 767px) {
    .p-gnav-child__body {
      padding: 5.3333333333vw 4vw 2.6666666667vw;
    }
  }
  .p-gnav-child__list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 10px;
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-child__list {
      gap: 10px;
    }
  }
  @media screen and (max-width: 767px) {
    .p-gnav-child__list {
      gap: 2.6666666667vw;
    }
  }
  .p-gnav-child__list + .p-gnav-child__list {
    margin-top: 30px;
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-child__list + .p-gnav-child__list {
      margin-top: 0;
    }
  }
  .p-gnav-child__item {
    width: calc((100% - 20px) / 3);
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-child__item {
      width: 100%;
    }
  }
  .p-gnav-child__link {
    position: relative;
    display: block;
    padding: 5px 0.5em 5px 2em;
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-child__link {
      padding: 10px 4em;
      font-size: 1.4rem;
      font-weight: 300;
      letter-spacing: 0.1em;
    }
  }
  @media screen and (max-width: 767px) {
    .p-gnav-child__link {
      padding: 2.6666666667vw 4em;
      font-size: 3.7333333333vw;
    }
  }
  @media (any-hover: hover) {
    .p-gnav-child__link:hover .p-gnav-child__txt {
      background-size: 100% 2px;
    }
  }
  .p-gnav-child__arrow {
    position: absolute;
    top: 0.6em;
    left: 0;
    line-height: 1;
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-child__arrow {
      top: 1.3em;
    }
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-child__arrow::before {
      display: block;
      width: 0.6em;
      height: 0.6em;
      content: "";
      border-top: 1px solid #000;
      border-right: 1px solid #000;
      transform: rotate(45deg);
    }
  }
  .p-gnav-child__arrow svg {
    width: 0.7em;
    height: 0.7em;
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-child__arrow svg {
      display: none;
    }
  }
  .p-gnav-child__txt {
    position: relative;
    background: linear-gradient(var(--colorPrimary), var(--colorPrimary)) 0 100%/0 2px no-repeat;
    transition: 0.3s;
    transition-property: background;
  }
  @media screen and (min-width: 768px) {
    .p-gnav-child__txt {
      padding-bottom: 4px;
    }
  }
  @media (any-hover: hover) {
    .p-gnav-child__head:hover .p-gnav-child__bg-img::before {
      background-position: 99% 50%;
    }
  }
  .p-gnav-sub__list {
    display: flex;
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-sub__list {
      gap: 20px;
    }
  }
  @media screen and (max-width: 767px) {
    .p-gnav-sub__list {
      gap: 2.6666666667vw;
    }
  }
  @media screen and (min-width: 1341px) {
    .p-gnav-sub__item {
      border-left: 1px solid #4d4d4d;
    }
  }
  .p-gnav-sub__link {
    display: grid;
    gap: 10px;
    place-items: center;
    width: 125px;
  }
  @media screen and (max-width: 1340px) {
    .p-gnav-sub__link {
      width: auto;
    }
  }
  @media screen and (max-width: 767px) {
    .p-gnav-sub__link {
      gap: 1.6vw;
    }
  }
  @media (any-hover: hover) {
    .p-gnav-sub__link:hover .p-gnav-sub__icon .default-icon {
      opacity: 0;
    }
    .p-gnav-sub__link:hover .p-gnav-sub__icon .hvr-icon {
      opacity: 1;
    }
    .p-gnav-sub__link:hover .p-gnav-sub__txt {
      color: var(--colorPrimary);
    }
  }
  .p-gnav-sub__icon {
    position: relative;
    line-height: 1;
  }
  @media screen and (max-width: 767px) {
    .p-gnav-sub__icon img {
      height: 4.2666666667vw;
    }
  }
  .p-gnav-sub__icon .default-icon {
    transition: opacity 0.3s;
  }
  .p-gnav-sub__icon .hvr-icon {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .p-gnav-sub__txt {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.1em;
    transition: color 0.3s;
  }
  @media screen and (max-width: 767px) {
    .p-gnav-sub__txt {
      font-size: 1.8666666667vw;
    }
  }
  @media screen and (min-width: 768px) {
    .habilis .p-gnav-sub__link {
      width: auto;
      padding-inline: 40px;
    }
  }
  @media (any-hover: hover) {
    .habilis .p-gnav-sub__link:hover .p-gnav-sub__txt {
      color: var(--colorBlue);
    }
  }
}
/* ========================================
  nav
======================================== */
@layer project {
  .p-nav__list li {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    gap: 0;
    line-height: 1.6;
  }
  @media (any-hover: hover) {
    .p-nav-02__ttl a {
      transition: 0.3s;
      transition-property: opacity;
    }
    .p-nav-02__ttl a:hover {
      opacity: 0.7;
    }
  }
  .p-nav-02__list > li + li {
    margin-top: 1.35em;
  }
  .p-nav-02__list > li > ul {
    margin-top: 0.2em;
  }
  .p-nav-02__list > li > ul > li {
    padding-left: 1em;
  }
  .p-nav-02__list > li > ul > li + li {
    margin-top: 0.2em;
  }
  .p-nav-02__link {
    position: relative;
    display: inline-grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
    transition: color 0.3s;
  }
  .p-nav-02__link::before {
    font-size: 0.6em;
    content: "▶︎";
  }
  .p-nav-02__link span {
    position: relative;
    background: linear-gradient(var(--colorPrimary), var(--colorPrimary)) 0 100%/0 1px no-repeat;
    transition: background 0.3s;
  }
  @media (any-hover: hover) {
    .p-nav-02__link:hover {
      color: var(--colorPrimary);
    }
    .p-nav-02__link:hover::before {
      border-color: transparent transparent transparent var(--colorPrimary);
    }
    .p-nav-02__link:hover span {
      background-size: 100% 1px;
    }
  }
}
/* ========================================
  ttl
======================================== */
@layer project {
  .p-ttl-01 {
    padding-bottom: 0.7em;
    letter-spacing: 0.1em;
    border-bottom: 1px solid #000;
  }
  @media screen and (max-width: 767px) {
    .p-ttl-01 {
      padding-bottom: 0.3em;
    }
  }
  .p-ttl-01.-sm {
    padding-bottom: 0.3em;
  }
  .p-ttl-01.-border-color-gray {
    border-color: #e5e5e5;
  }
  .p-ttl-01.-color-blue {
    color: var(--colorBlue);
    border-color: var(--colorBlue);
  }
  .p-ttl-01.-disc {
    position: relative;
  }
  .p-ttl-01.-disc::before {
    display: inline-block;
    width: 0.8em;
    height: 0.8em;
    margin-right: 0.5em;
    content: "";
    background-color: currentcolor;
    border-radius: 50%;
  }
  .p-ttl-02 {
    font-family: var(--serif);
    font-weight: 600;
    letter-spacing: 0.135em;
  }
  .p-ttl-03 {
    padding-inline: 10px;
    background-color: rgba(0, 136, 87, 0.1);
  }
  @media screen and (max-width: 767px) {
    .p-ttl-03 {
      padding-inline: 2.6666666667vw;
    }
  }
  .p-ttl-04 {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px;
    align-items: center;
    letter-spacing: 0.1em;
  }
  @media screen and (max-width: 767px) {
    .p-ttl-04 {
      gap: 4vw;
    }
  }
  .p-ttl-04__icon {
    display: grid;
    align-items: center;
  }
  @media screen and (max-width: 767px) {
    .p-ttl-04__icon img {
      width: auto;
      height: 8vw;
    }
  }
  .p-ttl-04.-border {
    padding-bottom: 0.5em;
    border-bottom: 1px solid #000;
  }
  .p-ttl-04.-circle-icon {
    gap: 0.2em;
  }
  .p-ttl-04.-circle-icon::before {
    position: relative;
    top: 0.1em;
    display: block;
    width: 1em;
    height: 1em;
    content: "";
    border: 1px solid var(--colorPrimary);
    border-radius: 50%;
  }
  .p-ttl-04.-circle-icon-main {
    gap: 0.2em;
  }
  .p-ttl-04.-circle-icon-main::before {
    position: relative;
    top: 0.1em;
    display: block;
    width: 1em;
    height: 1em;
    content: "";
    border: 1px solid var(--main);
    border-radius: 50%;
  }
}
/* ========================================
  pickup archive
======================================== */
@layer project {
  .p-archive__inner {
    --container-w: 1215px;
    padding-block: 60px;
  }
  @media screen and (max-width: 767px) {
    .p-archive__inner {
      padding-block: 2.4rem;
    }
  }
  .p-archive__main-ttl {
    font-family: var(--serif);
    font-size: 3.4rem;
    font-weight: 600;
  }
  @media screen and (max-width: 767px) {
    .p-archive__main-ttl {
      font-size: 2rem;
    }
  }
  .p-archive__list {
    margin-top: 25px;
  }
  @media screen and (max-width: 767px) {
    .p-archive__list {
      margin-top: 1.4rem;
    }
  }
  .p-archive__list > li {
    border-top: 1px solid #808080;
  }
  .p-archive__list > li:last-of-type {
    border-bottom: 1px solid #808080;
  }
  .p-archive__item {
    border-top: 1px solid #e5e5e5;
  }
  .p-archive__item:last-of-type {
    border-bottom: 1px solid #e5e5e5;
  }
  .p-archive__meta {
    display: grid;
  }
  @media screen and (min-width: 768px) {
    .p-archive__meta.--new {
      grid-template-rows: max-content auto;
      margin-top: calc((11px + 0.2em) * -1);
    }
  }
  .p-archive__new {
    width: max-content;
    padding: 0.2em 1em;
    font-size: 1.1rem;
    line-height: 1;
    color: #fff;
    background-color: var(--colorPrimary);
    border-radius: 100vmax;
  }
  .p-archive__link {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 50px;
    padding: 25px 0;
  }
  @media screen and (max-width: 767px) {
    .p-archive__link {
      grid-template-columns: 1fr;
      gap: 0;
      padding: 1.4rem 0;
      font-size: 1.2rem;
    }
  }
  .p-archive__link.-important {
    color: var(--colorRed);
  }
  @media (any-hover: hover) {
    .p-archive__link {
      transition: color 0.3s;
    }
    .p-archive__link:hover {
      color: var(--colorPrimary);
    }
  }
  .p-archive__ttl {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
/* ========================================
  pickup single
======================================== */
@layer project {
  .p-single__inner {
    --container-w: 1225px;
    padding-block: 75px;
  }
  @media screen and (max-width: 767px) {
    .p-single__inner {
      padding-block: 13.3333333333vw;
    }
  }
  .p-single__meta {
    display: flex;
    gap: 30px;
    align-items: center;
    line-height: 1;
  }
  .p-single__meta.-habilis-blog {
    position: relative;
    display: grid;
    grid-template-columns: 8em 1fr;
    gap: 0;
    padding-bottom: 0.7em;
  }
  .p-single__meta.-habilis-blog::after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    content: "";
    background-image: linear-gradient(to right, var(--main) 8em, #e5e5e5 8em);
  }
  .p-single__meta.-habilis-blog .p-single__ttl {
    font-size: var(--text-xl);
  }
  .p-single__category {
    padding-left: 30px;
    border-left: 1px solid var(--main);
  }
  .p-single__category.-important {
    color: var(--colorRed);
  }
  .p-single__ttl {
    font-size: 3rem;
  }
  @media screen and (max-width: 767px) {
    .p-single__ttl {
      font-size: 6.4vw;
    }
  }
}
/* ========================================
  page-header
======================================== */
@layer project {
  .p-page-header {
    position: relative;
  }
  .p-page-header__inner {
    position: relative;
    z-index: 2;
    height: inherit;
    padding-block: 70px 95px;
  }
  @media screen and (max-width: 767px) {
    .p-page-header__inner {
      padding-block: 10.6666666667vw 13.3333333333vw;
    }
  }
  .p-page-header__ttl {
    font-family: var(--serif);
    font-size: clamp(3.2rem, 3.125vw, 4.5rem);
    font-weight: 600;
    color: #4d4d4d;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.15), 0 0 6px rgba(255, 255, 255, 0.15), 0 0 6px rgba(255, 255, 255, 0.15), 0 0 6px rgba(255, 255, 255, 0.15), 0 0 6px rgba(255, 255, 255, 0.15), 0 0 6px rgba(255, 255, 255, 0.15), 0 0 6px rgba(255, 255, 255, 0.15), 0 0 6px rgba(255, 255, 255, 0.15), 0 0 6px rgba(255, 255, 255, 0.15), 0 0 6px rgba(255, 255, 255, 0.15), 0 0 6px rgba(255, 255, 255, 0.15), 0 0 6px rgba(255, 255, 255, 0.15), 0 0 6px rgba(255, 255, 255, 0.15), 0 0 6px rgba(255, 255, 255, 0.15), 0 0 6px rgba(255, 255, 255, 0.15), 0 0 6px rgba(255, 255, 255, 0.15);
  }
  @media screen and (max-width: 767px) {
    .p-page-header__ttl {
      top: inherit;
      bottom: 2.6666666667vw;
      left: 5.3333333333vw;
      font-size: 7.4666666667vw;
    }
  }
  .p-page-header__lead {
    margin-top: clamp(40px, 10.7638888889vw, 155px);
    font-size: clamp(1.4rem, 1.1805555556vw, 1.7rem);
    font-weight: 300;
    line-height: 2.35;
    letter-spacing: 0.245em;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.3), 0 0 6px rgba(255, 255, 255, 0.3), 0 0 6px rgba(255, 255, 255, 0.3), 0 0 6px rgba(255, 255, 255, 0.3), 0 0 6px rgba(255, 255, 255, 0.3), 0 0 6px rgba(255, 255, 255, 0.3), 0 0 6px rgba(255, 255, 255, 0.3), 0 0 6px rgba(255, 255, 255, 0.3), 0 0 6px rgba(255, 255, 255, 0.3), 0 0 6px rgba(255, 255, 255, 0.3), 0 0 6px rgba(255, 255, 255, 0.3), 0 0 6px rgba(255, 255, 255, 0.3), 0 0 6px rgba(255, 255, 255, 0.3), 0 0 6px rgba(255, 255, 255, 0.3), 0 0 6px rgba(255, 255, 255, 0.3), 0 0 6px rgba(255, 255, 255, 0.3);
  }
  .p-page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .p-page-header__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }
  .p-page-header__bg.-hospital img {
    object-position: bottom 40% right 0;
  }
}
/* ========================================
  page-content
======================================== */
@layer project {
  .p-page-content__inner {
    padding-block: 75px;
  }
  @media screen and (max-width: 767px) {
    .p-page-content__inner {
      padding-block: 8vw;
    }
  }
}
/* ========================================
  page-top
======================================== */
@layer project {
  .p-page-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 4;
    transform: translateY(200%);
    transition: 0.5s;
    transition-property: transform;
  }
  @media screen and (max-width: 767px) {
    .p-page-top {
      right: 2.6666666667vw;
      bottom: 2.6666666667vw;
    }
  }
  .p-page-top.is-show {
    transform: translateX(0);
  }
  .p-page-top__btn {
    position: relative;
    width: 50px;
    height: 50px;
    padding: 0;
    margin: 0;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid var(--main);
    border-radius: 50%;
  }
  @media screen and (max-width: 767px) {
    .p-page-top__btn {
      width: 10.6666666667vw;
      height: 10.6666666667vw;
    }
  }
  .p-page-top__btn::before {
    position: absolute;
    inset: 0.4em 0 0;
    display: block;
    width: 25%;
    height: 25%;
    margin: auto;
    content: "";
    border-top: 1px solid var(--main);
    border-right: 1px solid var(--main);
    transform: rotate(-45deg);
  }
  @media screen and (max-width: 767px) {
    .p-page-top__btn::before {
      top: 0.3em;
    }
  }
  @media (any-hover: hover) {
    .p-page-top__btn {
      transition: 0.5s;
      transition-property: background;
    }
    .p-page-top__btn::before {
      transition: 0.5s;
      transition-property: border-color;
    }
    .p-page-top__btn:hover {
      background-color: var(--main);
    }
    .p-page-top__btn:hover::before {
      border-color: #fff;
    }
  }
}
/* ========================================
  panel
======================================== */
@layer project {
  .p-panel-01 {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
  }
  @media screen and (max-width: 767px) {
    .p-panel-01 {
      display: grid;
      grid-template-columns: 36.2666666667vw 1fr;
      min-height: 19.2vw;
      border-radius: 2.1333333333vw;
      box-shadow: 1.3333333333vw 1.3333333333vw 1.3333333333vw rgba(0, 0, 0, 0.1);
    }
  }
  .p-panel-01__img img {
    width: 100%;
    height: 100%;
    aspect-ratio: 240/165;
    object-fit: cover;
  }
  @media screen and (max-width: 767px) {
    .p-panel-01__img img {
      aspect-ratio: 136/72;
    }
  }
  .p-panel-01__body {
    position: relative;
    min-height: 66px;
    padding: 0 26px 10px;
    background-color: #fff;
  }
  @media screen and (max-width: 767px) {
    .p-panel-01__body {
      display: grid;
      place-items: center;
      padding: 2.6666666667vw;
    }
  }
  @media screen and (min-width: 768px) {
    .p-panel-01__body::before, .p-panel-01__body::after {
      position: absolute;
      display: block;
      content: "";
    }
  }
  @media screen and (min-width: 768px) {
    .p-panel-01__body::before {
      top: -30px;
      width: calc(100% - 52px);
      height: 31px;
      background-color: #fff;
      border-radius: 10px 10px 0 0;
    }
  }
  @media screen and (min-width: 768px) {
    .p-panel-01__body::after {
      top: -26px;
      left: 0;
      width: 100%;
      height: 26px;
      background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2217.726%22%20height%3D%2217.725%22%20viewBox%3D%220%200%2017.726%2017.725%22%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip-path%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_115%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%20115%22%20width%3D%2217.726%22%20height%3D%2217.725%22%20transform%3D%22translate(205.013%2013.435)%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_95%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2095%22%20transform%3D%22translate(-205.013%20-13.435)%22%3E%20%3Cg%20id%3D%22%E3%83%9E%E3%82%B9%E3%82%AF%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_6%22%20data-name%3D%22%E3%83%9E%E3%82%B9%E3%82%AF%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%206%22%20clip-path%3D%22url(%23clip-path)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_19%22%20data-name%3D%22%E3%83%91%E3%82%B9%2019%22%20d%3D%22M213.014%2C31.143a8.023%2C8.023%2C0%2C0%2C1-8-8V8a8.024%2C8.024%2C0%2C0%2C0-8-8H25.726a8.024%2C8.024%2C0%2C0%2C0-8%2C8V23.106a8.024%2C8.024%2C0%2C0%2C1-8%2C8H0V201.494a8.024%2C8.024%2C0%2C0%2C0%2C8%2C8H214.74a8.024%2C8.024%2C0%2C0%2C0%2C8-8V31.143Z%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E") right top/26px 26px no-repeat, url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_95%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2095%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2217.726%22%20height%3D%2217.725%22%20viewBox%3D%220%200%2017.726%2017.725%22%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22clip-path%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_115%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%20115%22%20width%3D%2217.726%22%20height%3D%2217.725%22%20transform%3D%22translate(0)%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3Cg%20id%3D%22%E3%83%9E%E3%82%B9%E3%82%AF%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_6%22%20data-name%3D%22%E3%83%9E%E3%82%B9%E3%82%AF%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%206%22%20transform%3D%22translate(0)%22%20clip-path%3D%22url(%23clip-path)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_19%22%20data-name%3D%22%E3%83%91%E3%82%B9%2019%22%20d%3D%22M9.727%2C31.143a8.023%2C8.023%2C0%2C0%2C0%2C8-8V8a8.024%2C8.024%2C0%2C0%2C1%2C8-8H197.015a8.024%2C8.024%2C0%2C0%2C1%2C8%2C8V23.106a8.024%2C8.024%2C0%2C0%2C0%2C8%2C8h9.725V201.494a8.024%2C8.024%2C0%2C0%2C1-8%2C8H8a8.024%2C8.024%2C0%2C0%2C1-8-8V31.143Z%22%20transform%3D%22translate(-0.002%20-13.435)%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E") left top/26px 26px no-repeat;
    }
  }
  .p-panel-01__ttl {
    position: relative;
    z-index: 2;
    display: grid;
    place-content: center;
    height: 56px;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    letter-spacing: 0.125em;
  }
  @media screen and (min-width: 768px) {
    .p-panel-01__ttl {
      transform: translateY(-10px);
    }
  }
  @media screen and (max-width: 767px) {
    .p-panel-01__ttl {
      font-size: 4.2666666667vw;
    }
  }
  .p-panel-01__ttl span {
    display: block;
  }
  .p-panel-01__ttl .txt-sm {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
  }
  @media screen and (min-width: 768px) {
    .p-panel-01__ttl .txt-sm {
      margin-bottom: 0.3em;
    }
  }
  @media screen and (max-width: 767px) {
    .p-panel-01__ttl .txt-sm {
      font-size: 3.2vw;
    }
  }
  @media (any-hover: hover) {
    .p-panel-01 .home-facilities-panel__img {
      transition: 0.5s;
      transition-property: filter;
    }
    .p-panel-01::before {
      position: absolute;
      top: 50%;
      left: 50%;
      z-index: 1;
      display: block;
      width: 1px;
      height: 1px;
      content: "";
      background: linear-gradient(45deg, #008857, #ffd700);
      border-radius: 50%;
      opacity: 0;
      transform: translate(-50%, -50%);
      transition: width 0.5s, height 0.5s, opacity 0.3s;
    }
    .p-panel-01:hover .home-facilities-panel__img {
      filter: brightness(110%) blur(5px);
    }
    .p-panel-01:hover::before {
      width: 40em;
      height: 40em;
      opacity: 0.5;
    }
  }
  .p-panel-02 img {
    width: 100%;
  }
  .p-panel-02__img + .p-panel-02__ttl {
    margin-top: 15px;
  }
  @media screen and (max-width: 767px) {
    .p-panel-02__img + .p-panel-02__ttl {
      margin-top: 4vw;
    }
  }
  .p-panel-02__ttl {
    font-weight: 500;
    color: var(--colorPrimary);
  }
  .p-panel-02__ttl + .p-panel-02__txt {
    margin-top: 5px;
  }
  @media screen and (max-width: 767px) {
    .p-panel-02__ttl + .p-panel-02__txt {
      margin-top: 1.3333333333vw;
    }
  }
  .p-panel-02__txt {
    line-height: 1.7;
  }
  .p-panel-list-01 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 77px 66px;
  }
  @media screen and (max-width: 767px) {
    .p-panel-list-01 {
      grid-template-columns: 1fr;
      gap: 4.2666666667vw;
    }
  }
}
/* ========================================
  btn
======================================== */
@layer project {
  .p-btn-02, .p-btn-01 {
    display: inline-grid;
    align-items: center;
  }
  .p-btn-01 {
    display: grid;
    place-items: center;
    min-height: 35px;
    padding: 5px 10px;
    color: var(--colorPrimary);
    border: 1px solid var(--colorPrimary);
    border-radius: 5px;
  }
  @media screen and (max-width: 767px) {
    .p-btn-01 {
      margin-inline: auto;
    }
  }
  @media (any-hover: hover) {
    .p-btn-01 {
      transition: 0.5s;
      transition-property: background, color;
    }
    .p-btn-01:hover {
      color: #fff;
      background-color: var(--colorPrimary);
    }
  }
  .p-btn-01.-w-custom {
    width: min(100%, var(--w));
  }
  .p-btn-01.-lg {
    min-height: 62px;
    padding-inline: 20px;
  }
  @media screen and (max-width: 767px) {
    .p-btn-01.-lg {
      min-height: 9.3333333333vw;
      padding-inline: 5.3333333333vw;
    }
  }
  .p-btn-01.-color-blue {
    color: var(--colorBlue);
    border: 1px solid var(--colorBlue);
  }
  @media (any-hover: hover) {
    .p-btn-01.-color-blue:hover {
      color: #fff;
      background-color: var(--colorBlue);
    }
  }
  .p-btn-01.-color-blue-02 {
    color: #fff;
    background-color: var(--colorBlue);
    border: 1px solid var(--colorBlue);
  }
  @media (any-hover: hover) {
    .p-btn-01.-color-blue-02 {
      transition-property: background, color;
    }
    .p-btn-01.-color-blue-02:hover {
      color: var(--colorBlue);
      background-color: #fff;
    }
  }
  .p-btn-01.-color-green {
    color: #fff;
    background-color: var(--colorPrimary);
    border: 1px solid var(--colorPrimary);
  }
  @media (any-hover: hover) {
    .p-btn-01.-color-green {
      transition-property: background, color;
    }
    .p-btn-01.-color-green:hover {
      color: var(--colorPrimary);
      background-color: #fff;
    }
  }
  .p-btn-02 {
    width: min(100%, var(--w, 226px));
    min-height: 50px;
    color: #fff;
    background-color: var(--colorPrimary);
    border: 1px solid var(--colorPrimary);
    border-radius: 100vmax;
  }
  @media (any-hover: hover) {
    .p-btn-02 {
      transition: 0.5s;
      transition-property: background, color;
    }
    .p-btn-02:hover {
      color: var(--colorPrimary);
      background-color: #fff;
    }
  }
  .p-btn-wrap-01 {
    max-width: var(--container-sm-w);
    margin-top: 70px;
  }
  @media screen and (max-width: 767px) {
    .p-btn-wrap-01 {
      margin-top: 13.3333333333vw;
    }
  }
}
/*========================================
  img
========================================*/
@layer project {
  .p-img-detail__img img {
    width: 100%;
    height: auto;
  }
  .p-img-detail__caption {
    margin-top: 0.5em;
    margin-inline: -1em;
    text-align: center;
  }
  .p-img-detail-02__img img {
    width: 100%;
    height: auto;
  }
  .p-img-detail-02__caption {
    text-align: left;
  }
  .p-img-detail-02__caption + .p-img-detail-02__img {
    margin-top: 0.5em;
  }
  .p-imgs-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, 183px);
    gap: 30px;
  }
  @media screen and (max-width: 767px) {
    .p-imgs-group {
      grid-template-columns: repeat(2, 1fr);
      gap: 5.3333333333vw;
    }
  }
  .p-imgs-group + .p-imgs-group {
    margin-top: 50px;
  }
  @media screen and (max-width: 767px) {
    .p-imgs-group + .p-imgs-group {
      margin-top: 5.3333333333vw;
    }
  }
  .p-imgs-group-02 {
    display: grid;
    grid-template-columns: repeat(auto-fill, 280px);
    align-items: end;
    gap: 50px;
  }
  @media screen and (max-width: 767px) {
    .p-imgs-group-02 {
      grid-template-columns: repeat(2, 1fr);
      gap: 5.3333333333vw;
    }
  }
}
/* ========================================
  panel
======================================== */
@layer project {
  .p-table-01 {
    width: 100%;
  }
  .p-table-01 th,
  .p-table-01 td {
    line-height: 1.6;
    text-align: center;
  }
  .p-table-01 thead {
    border-bottom: 1px solid #dedede;
  }
  .p-table-01 thead th {
    font-weight: 300;
    background-color: #dbebe5;
  }
  @media screen and (max-width: 767px) {
    .p-table-01 thead th {
      padding: 2.6666666667vw;
    }
  }
  .p-table-01 thead th:first-child {
    position: sticky;
    left: 0;
  }
  .p-table-01 tbody tr {
    border-bottom: 1px solid #dedede;
  }
  .p-table-01 tbody tr th,
  .p-table-01 tbody tr td {
    padding: 10px 20px;
    font-weight: 300;
  }
  @media screen and (max-width: 767px) {
    .p-table-01 tbody tr th,
    .p-table-01 tbody tr td {
      padding: 2.6666666667vw;
    }
  }
  .p-table-01 tbody tr th {
    position: sticky;
    left: 0;
    background-color: #eaeaea;
  }
  .p-table-01.-medical-hours-01 thead tr th {
    width: 11.4285714286%;
  }
  @media screen and (max-width: 767px) {
    .p-table-01.-medical-hours-01 thead tr th {
      width: 12.4285714286%;
    }
  }
  .p-table-01.-medical-hours-01 thead tr th:first-child {
    width: 20%;
  }
  @media screen and (max-width: 767px) {
    .p-table-01.-medical-hours-01 thead tr th:first-child {
      width: 13%;
    }
  }
  .p-table-01.-medical-hours-02 thead tr th {
    width: 12.8333333333%;
  }
  @media screen and (max-width: 767px) {
    .p-table-01.-medical-hours-02 thead tr th {
      width: 11.5714285714%;
    }
  }
  .p-table-01.-medical-hours-02 thead tr th:first-child {
    width: 17%;
  }
  @media screen and (max-width: 767px) {
    .p-table-01.-medical-hours-02 thead tr th:first-child {
      width: 13%;
    }
  }
  .p-table-01.-medical-hours-02 thead tr th:nth-child(2) {
    width: 6%;
  }
  .p-table-01.-medical-hours-02 tbody td {
    padding: 10px 5px;
  }
  .p-table-01.-medical-hours-02 tbody td + td {
    border-left: 1px solid #dedede;
  }
  .p-table-01.-medical-hours-03 thead tr th {
    width: 12%;
  }
  .p-table-01.-medical-hours-03 thead tr th:first-child {
    width: 16%;
  }
  .p-table-01.-medical-hours-03 tbody td {
    padding: 10px 5px;
  }
  .p-table-01.-schedule thead tr th + th {
    border-left: 2px dashed #e5e5e5;
  }
  .p-table-01.-schedule tbody tr th,
  .p-table-01.-schedule tbody tr td {
    padding: 10px 80px;
    text-align: left;
  }
  .p-table-01.-schedule tbody tr th {
    background-color: transparent;
  }
  .p-table-01.-schedule tbody tr th + td {
    border-left: 2px dashed #e5e5e5;
  }
  .p-table-01.-schedule tbody tr td + td {
    border-left: 2px dashed #e5e5e5;
  }
  .p-table-01.-simple-border thead {
    border-bottom: 1px solid var(--main);
  }
  .p-table-01.-simple-border thead tr th {
    padding: 10px 20px;
  }
  .p-table-01.-simple-border thead tr th + th {
    border-left: 1px solid var(--main);
  }
  .p-table-01.-simple-border tbody tr {
    border-bottom: 1px solid var(--main);
  }
  .p-table-01.-simple-border tbody tr:last-child {
    border-bottom: none;
  }
  .p-table-01.-simple-border tbody tr th {
    background-color: transparent;
  }
  .p-table-01.-simple-border tbody tr th + th {
    border-left: 1px solid var(--main);
  }
  .p-table-01.-simple-border tbody tr th + td {
    border-left: 1px solid var(--main);
  }
  .p-table-01.-simple-border tbody tr td + td {
    border-left: 1px solid var(--main);
  }
  .p-table-01.-no-sticky thead th:first-child {
    position: static;
  }
  .p-table-01.-no-sticky tbody tr th {
    position: static;
  }
  .p-table-01.-color-pink thead tr th {
    background-color: #ffeae9;
  }
  .p-table-01.-border {
    border: 2px solid #e5e5e5;
  }
  .p-table-01.-border thead tr th + th {
    border-left: 2px solid #e5e5e5;
  }
  .p-table-01.-border tbody tr td + td {
    border-left: 2px solid #e5e5e5;
  }
  .p-table-01.-dotted-border {
    border-top: 1px solid var(--main);
    border-bottom: 1px solid var(--main);
  }
  .p-table-01.-dotted-border tbody tr {
    border-bottom: 1px dashed var(--main);
  }
  .p-table-01.-dotted-border tbody tr:last-child {
    border-bottom: none;
  }
  .p-table-01.-simple-border-td-left-none tbody tr th {
    background-color: transparent;
  }
  .p-table-01.-simple-border-td-left-none tbody tr th + td {
    border-left: 2px solid #e5e5e5;
  }
  .p-table-01.-simple-border-td-left-none tbody tr td + td {
    border-left: 0;
  }
  .p-table-01.-ver-al-top th,
  .p-table-01.-ver-al-top td {
    vertical-align: top;
  }
  @media screen and (min-width: 768px) {
    .p-table-01.-w-auto-pc {
      width: auto;
    }
  }
  .p-table-02 {
    width: 100%;
    border-top: 1px solid #a9a9a9;
  }
  .p-table-02 tbody tr {
    border-bottom: 1px solid #a9a9a9;
  }
  .p-table-02 tbody tr th,
  .p-table-02 tbody tr td {
    padding: 10px 20px;
    line-height: 1.75;
  }
  @media screen and (max-width: 767px) {
    .p-table-02 tbody tr th,
    .p-table-02 tbody tr td {
      display: block;
      padding: 2.6666666667vw 5.3333333333vw;
    }
  }
  .p-table-02 tbody tr th {
    font-weight: 300;
    text-align: left;
    background-color: rgba(219, 235, 229, 0.5);
  }
  .p-table-03 {
    width: 100%;
    border: 1px solid var(--main);
  }
  .p-table-03 thead tr th {
    font-weight: 400;
  }
  .p-table-03 thead tr th + th {
    border-left: 1px solid var(--main);
  }
  .p-table-03 thead + tbody {
    border-top: 1px solid var(--main);
  }
  .p-table-03 tbody tr th,
  .p-table-03 tbody tr td {
    height: 77px;
    padding: 20px;
    vertical-align: center;
  }
  .p-table-03 tbody tr th {
    font-weight: 400;
    text-align: center;
  }
  .p-table-03 tbody tr th + th {
    border-left: 1px solid var(--main);
  }
  .p-table-03 tbody tr td {
    background-color: #fff;
    border-left: 1px solid var(--main);
  }
  .p-table-03 tbody tr + tr {
    border-top: 1px solid var(--main);
  }
  .p-table-border-radius {
    overflow: hidden;
    border: 1px solid var(--main);
    border-radius: 10px;
  }
  .p-table-scroll {
    --w: 800;
    overflow-y: hidden !important;
  }
  @media screen and (max-width: 767px) {
    .p-table-scroll {
      --sp-w: 800;
    }
  }
  .p-table-scroll table {
    width: calc(var(--w) * 1px);
  }
  @media screen and (max-width: 767px) {
    .p-table-scroll table {
      width: calc(var(--sp-w) / 375 * 100vw);
    }
  }
  .t-border-left {
    border-left: 1px solid var(--main);
  }
  .t-ver-al-top {
    vertical-align: top;
  }
  .t-ver-al-mid {
    vertical-align: middle;
  }
}
/* ========================================
  dl
======================================== */
@layer project {
  .p-dl-01 div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
  }
  @media screen and (max-width: 767px) {
    .p-dl-01 div {
      gap: 2.6666666667vw;
    }
  }
  .p-dl-01 div dt::after {
    content: ":";
  }
  .p-dl-01.-no-colon div {
    gap: 20px;
  }
  @media screen and (max-width: 767px) {
    .p-dl-01.-no-colon div {
      gap: 5.3333333333vw;
    }
  }
  .p-dl-01.-no-colon div dt::after {
    content: "";
  }
  .p-dl-dotted-line > div {
    padding-block: 40px;
    border-bottom: 1px solid var(--main);
  }
  @media screen and (max-width: 767px) {
    .p-dl-dotted-line > div {
      padding-block: 5.3333333333vw;
    }
  }
  .p-dl-dotted-line > div:nth-child(1) {
    border-top: 1px solid var(--main);
  }
  .p-dl-dotted-line.-top-border-none > div:nth-child(1) {
    border-top: none;
  }
}
/*========================================
  content-block
========================================*/
@layer project {
  .p-content-block-01 {
    display: grid;
    grid-template-columns: 1fr max-content;
    grid-template-rows: max-content 1fr;
    grid-auto-rows: 1fr;
    gap: 0 55px;
  }
  @media screen and (max-width: 767px) {
    .p-content-block-01 {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(2, max-content) 1fr;
      gap: 0;
    }
  }
  @media screen and (min-width: 768px) {
    .p-content-block-01__img {
      grid-row: span 2;
      grid-column: 2;
    }
  }
  .p-content-block-01__ttl {
    font-weight: 500;
  }
  @media screen and (min-width: 768px) {
    .p-content-block-01__ttl {
      grid-row: 1;
      grid-column: 1;
    }
  }
  .p-content-block-01__txt {
    margin-top: 10px;
  }
  @media screen and (min-width: 768px) {
    .p-content-block-01__txt {
      grid-row: 2;
      grid-column: 1;
    }
  }
  @media screen and (max-width: 767px) {
    .p-content-block-01__txt {
      margin-top: 2.6666666667vw;
    }
  }
  .p-content-block-01__txt .br-custom {
    display: block;
  }
  @media screen and (max-width: 1400px) {
    .p-content-block-01__txt .br-custom {
      display: none;
    }
  }
  .p-content-block-01__txt + .p-content-block-01__img {
    margin-top: 20px;
  }
  @media screen and (max-width: 767px) {
    .p-content-block-01__txt + .p-content-block-01__img {
      margin-top: 5.3333333333vw;
    }
  }
  .p-content-block-02 {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 30px;
  }
  @media screen and (max-width: 767px) {
    .p-content-block-02 {
      grid-template-columns: 1fr;
      gap: 2.6666666667vw;
    }
  }
}
/*========================================
  attention
========================================*/
@layer project {
  .p-attention-01 {
    display: inline-grid;
    align-items: center;
    position: relative;
    border: 3px solid rgba(255, 96, 103, 0.6);
    background-color: rgba(255, 96, 103, 0.1);
    width: 100%;
    min-height: 75px;
    padding: 5px 5px 5px 5em;
    line-height: 1.1;
  }
  @media screen and (max-width: 767px) {
    .p-attention-01 {
      min-height: 9.3333333333vw;
      padding: 2.6666666667vw 2.6666666667vw 2.6666666667vw 2.2em;
    }
  }
  .p-attention-01__txt {
    text-align: center;
    font-size: 3.3rem;
    letter-spacing: 0.115em;
    color: var(--colorRed);
  }
  @media screen and (max-width: 767px) {
    .p-attention-01__txt {
      font-size: 5.3333333333vw;
    }
  }
  .p-attention-01__txt:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 1.3em;
    background: url(../img/common/icon/icon_arrow_red.svg) 50%/contain no-repeat;
    width: 0.45em;
    height: 0.7em;
    margin: auto;
  }
  @media screen and (max-width: 767px) {
    .p-attention-01__txt:before {
      left: 0.8em;
    }
  }
}
/*========================================
  tel
========================================*/
@layer project {
  .p-tel-01 {
    display: grid;
    grid-template-columns: 155px 1fr;
    gap: 30px;
  }
  @media screen and (max-width: 767px) {
    .p-tel-01 {
      grid-template-columns: 1fr;
      gap: 2.6666666667vw;
      border: 1px solid #000;
      padding: 2.6666666667vw 5.3333333333vw;
    }
  }
  .p-tel-01 dt, .p-tel-01 dd {
    font-size: 3.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
  }
  @media screen and (max-width: 767px) {
    .p-tel-01 dt, .p-tel-01 dd {
      text-align: center;
      font-size: 6.4vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-tel-01 dt {
      border-bottom: 1px dotted #000;
      padding-bottom: 1.3333333333vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-tel-01 dd {
      line-height: 1.5;
    }
  }
}
/* ========================================
  faq
======================================== */
@layer project {
  .p-faq {
    padding: 30px 35px;
    border-radius: 10px;
  }
  @media screen and (max-width: 767px) {
    .p-faq {
      padding: 5.3333333333vw 4vw;
    }
  }
  .p-faq + .p-faq {
    margin-top: 50px;
  }
  @media screen and (max-width: 767px) {
    .p-faq + .p-faq {
      margin-top: 10.6666666667vw;
    }
  }
  .p-faq__head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    padding-inline: 15px 30px;
  }
  @media screen and (max-width: 767px) {
    .p-faq__head {
      gap: 5.3333333333vw;
      padding-inline: 0;
    }
  }
  .p-faq__q {
    font-weight: 400;
    line-height: 1.4;
  }
  .p-faq__q::before {
    display: block;
    margin-bottom: 10px;
    font-size: 3.2rem;
    line-height: 1;
    content: "Q.";
  }
  @media screen and (max-width: 767px) {
    .p-faq__q::before {
      margin-bottom: 2.6666666667vw;
      font-size: 5.8666666667vw;
    }
  }
  .p-faq__a {
    padding: 15px 20px;
    margin-top: 20px;
    background-color: #fff;
    border-radius: 10px;
  }
  @media screen and (max-width: 767px) {
    .p-faq__a {
      padding: 4vw 5.3333333333vw;
      margin-top: 5.3333333333vw;
    }
  }
  .p-faq__a::before {
    display: block;
    margin-bottom: 10px;
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1;
    content: "A.";
  }
  @media screen and (max-width: 767px) {
    .p-faq__a::before {
      margin-bottom: 2.6666666667vw;
      font-size: 5.8666666667vw;
    }
  }
  .p-faq__icon {
    display: block;
    height: auto;
  }
  .p-faq__icon.-men-01 {
    width: 95px;
    aspect-ratio: 95/89;
    background: url("../img/common/icon/icon_men_01.webp") center/contain no-repeat;
  }
  @media screen and (max-width: 767px) {
    .p-faq__icon.-men-01 {
      width: 25.3333333333vw;
    }
  }
  .p-faq__icon.-men-02 {
    width: 95px;
    aspect-ratio: 95/89;
    background: url("../img/common/icon/icon_men_02.webp") center/contain no-repeat;
  }
  @media screen and (max-width: 767px) {
    .p-faq__icon.-men-02 {
      width: 25.3333333333vw;
    }
  }
  .p-faq__icon.-men-03 {
    width: 95px;
    aspect-ratio: 95/89;
    background: url("../img/common/icon/icon_men_03.webp") center/contain no-repeat;
  }
  @media screen and (max-width: 767px) {
    .p-faq__icon.-men-03 {
      width: 25.3333333333vw;
    }
  }
  .p-faq__icon.-women-01 {
    width: 97px;
    aspect-ratio: 97/100;
    background: url("../img/common/icon/icon_women_01.webp") center/contain no-repeat;
  }
  @media screen and (max-width: 767px) {
    .p-faq__icon.-women-01 {
      width: 25.8666666667vw;
    }
  }
  .p-faq__icon.-women-02 {
    width: 77px;
    aspect-ratio: 77/85;
    background: url("../img/common/icon/icon_women_02.webp") center/contain no-repeat;
  }
  @media screen and (max-width: 767px) {
    .p-faq__icon.-women-02 {
      width: 20.5333333333vw;
    }
  }
  .p-faq.-bg-blue {
    background-color: rgba(169, 210, 233, 0.6);
  }
  .p-faq.-bg-blue-02 {
    background-color: rgba(209, 229, 242, 0.5);
  }
  .p-faq.-bg-green {
    background-color: rgba(219, 235, 229, 0.6);
  }
  .p-faq.-bg-green-02 {
    background-color: rgba(209, 242, 227, 0.5);
  }
  .p-faq.-bg-orange {
    background-color: rgba(243, 193, 166, 0.5);
  }
  .p-faq.-bg-yellow {
    background-color: rgba(255, 240, 217, 0.6);
  }
  .p-faq.-bg-pink {
    background-color: rgba(255, 228, 238, 0.5);
  }
  .p-faq-group + .p-faq-group {
    padding-top: 40px;
    margin-top: 45px;
    border-top: 1px solid #e5e5e5;
  }
  @media screen and (max-width: 767px) {
    .p-faq-group + .p-faq-group {
      padding-top: 10.6666666667vw;
      margin-top: 12vw;
    }
  }
}
/* ========================================
  form
======================================== */
@layer project {
  fieldset {
    padding: 0;
    border: none;
  }
  .p-form__inner {
    padding: 55px 35px;
    border-radius: 10px;
  }
  @media screen and (max-width: 767px) {
    .p-form__inner {
      width: 100%;
      padding: 10.6666666667vw 5.3333333333vw;
    }
  }
  .p-form__group + .p-form__group {
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid #666;
  }
  @media screen and (max-width: 767px) {
    .p-form__group + .p-form__group {
      padding-top: 10.6666666667vw;
      margin-top: 10.6666666667vw;
    }
  }
  .p-form__row {
    display: flex;
    align-items: start;
    width: 100%;
  }
  @media screen and (max-width: 767px) {
    .p-form__row {
      flex-direction: column;
      gap: 1em;
    }
  }
  .p-form__row fieldset {
    display: contents;
  }
  .p-form__row fieldset > legend {
    width: 200px;
  }
  @media screen and (max-width: 767px) {
    .p-form__row fieldset > legend {
      width: 100%;
    }
  }
  .p-form__row fieldset > div {
    width: calc(100% - 200px);
  }
  @media screen and (max-width: 767px) {
    .p-form__row fieldset > div {
      width: 100%;
    }
  }
  .p-form__row > .p-form__label {
    width: 200px;
  }
  @media screen and (max-width: 767px) {
    .p-form__row > .p-form__label {
      width: 100%;
    }
  }
  .p-form__row > .p-form__input {
    width: calc(100% - 200px);
  }
  @media screen and (max-width: 767px) {
    .p-form__row > .p-form__input {
      width: 100%;
    }
  }
  .p-form__row + .p-form__row {
    margin-top: 15px;
  }
  .p-form__label {
    display: flex;
    flex-wrap: wrap;
    gap: 0 5px;
    align-items: center;
    font-weight: 700;
  }
  @media screen and (max-width: 767px) {
    .p-form__label {
      gap: 0 1.3333333333vw;
    }
  }
  .p-form__label.-adjust {
    padding-top: 0.5em;
  }
  .p-form__required {
    padding: 0.3em 0.7em;
    font-size: 0.8rem;
    line-height: 1;
    color: #fff;
    background-color: var(--colorRed);
    border-radius: 4px;
  }
  .p-form__input input[type=text],
  .p-form__input input[type=email],
  .p-form__input input[type=tel],
  .p-form__input select,
  .p-form__input textarea {
    width: 100%;
    padding: 0.2em 1em;
    border: none;
    border-radius: 3px;
  }
  .p-form__input input[type=text]::placeholder,
  .p-form__input input[type=email]::placeholder,
  .p-form__input input[type=tel]::placeholder,
  .p-form__input select::placeholder,
  .p-form__input textarea::placeholder {
    color: #c2c2c2;
  }
  .p-form__input input[type=text],
  .p-form__input input[type=email],
  .p-form__input input[type=tel],
  .p-form__input select {
    height: 40px;
  }
  @media screen and (max-width: 767px) {
    .p-form__input input[type=text],
    .p-form__input input[type=email],
    .p-form__input input[type=tel],
    .p-form__input select {
      height: 10.6666666667vw;
    }
  }
  .p-form__input textarea {
    height: 230px;
    resize: vertical;
  }
  @media screen and (max-width: 767px) {
    .p-form__input textarea {
      height: 61.3333333333vw;
    }
  }
  .p-form__input select {
    appearance: none;
    cursor: pointer;
  }
  .p-form__input input[type=checkbox] + label,
  .p-form__input input[type=radio] + label {
    cursor: pointer;
  }
  @media screen and (min-width: 768px) {
    .p-form__input input[name=your-name],
    .p-form__input input[name=your-kana],
    .p-form__input input[type=tel] {
      width: 232px;
    }
  }
  .p-form__phone {
    display: flex;
    gap: 0 5px;
    align-items: center;
  }
  @media screen and (min-width: 768px) {
    .p-form__phone input[type=tel] {
      width: 70px;
    }
  }
  .p-form__agree {
    padding-block: 40px;
    margin-top: 40px;
    border-top: 1px solid #666;
    border-bottom: 1px solid #666;
  }
  @media screen and (max-width: 767px) {
    .p-form__agree {
      padding-block: 5.3333333333vw;
      margin-top: 10.6666666667vw;
    }
  }
  .p-form__agree label {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    font-weight: 400;
  }
  @media screen and (max-width: 767px) {
    .p-form__agree label {
      gap: 1.3333333333vw;
      margin-top: 2.6666666667vw;
    }
  }
  .p-form__submit-btn {
    position: relative;
    margin-top: 70px;
    text-align: center;
  }
  @media screen and (max-width: 767px) {
    .p-form__submit-btn {
      margin-top: 10.6666666667vw;
    }
  }
  .p-form__submit-btn input {
    width: 168px;
    height: 33px;
    color: #fff;
    background-color: #333;
    border: none;
    border-radius: 3px;
  }
  @media screen and (max-width: 767px) {
    .p-form__submit-btn input {
      width: 44.8vw;
      height: 8.8vw;
    }
  }
  .p-form__submit-btn input:disabled {
    cursor: not-allowed;
    opacity: 0.5;
  }
  .p-form__submit-btn .wpcf7-spinner {
    position: absolute !important;
    inset-inline: 0;
    bottom: -2em;
    margin: auto !important;
  }
  .p-form.-green .p-form__inner {
    background-color: #dbebe5;
  }
  .p-form.-green .p-form__required {
    background-color: var(--colorPrimary);
  }
  .p-form.-blue .p-form__inner {
    background-color: rgba(134, 215, 238, 0.2);
  }
  .p-form.-blue .p-form__required {
    background-color: var(--colorBlue);
  }
  .p-form .wpcf7-radio {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em 1em;
  }
  .p-form .wpcf7-list-item {
    margin: 0 !important;
  }
}
.wpcf7-response-output {
  opacity: 0;
}

.grecaptcha-badge {
  bottom: 95px !important;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .grecaptcha-badge {
    bottom: 20vw !important;
  }
}

@layer project {
  .p-pagination {
    --item-size: 50px;
    --item-gap: 10px;
    margin-top: 3.75rem;
    text-align: center;
  }
  @media screen and (max-width: 767px) {
    .p-pagination {
      --item-size: 8vw;
      margin-top: 13.3333333333vw;
      font-size: 4.2666666667vw;
    }
  }
  .p-pagination__current {
    font-size: 1.8rem;
  }
  @media screen and (max-width: 767px) {
    .p-pagination__current {
      font-size: 2.6666666667vw;
    }
  }
  .p-pagination__items {
    position: relative;
    display: inline-flex;
    gap: var(--item-gap);
    align-items: center;
    margin-top: 35px;
  }
  @media screen and (max-width: 767px) {
    .p-pagination__items {
      gap: 2.6666666667vw;
    }
  }
  .p-pagination__item {
    font-size: 1.4rem;
    font-weight: 300;
  }
  @media screen and (max-width: 767px) {
    .p-pagination__item {
      font-size: 2.6666666667vw;
    }
  }
  .p-pagination__item.is-current {
    font-weight: 700;
  }
  .p-pagination__item.is-current .page-numbers {
    background-color: #d2d2d2;
  }
  .p-pagination__item.first, .p-pagination__item.last, .p-pagination__item.prev, .p-pagination__item.next {
    position: absolute;
  }
  .p-pagination__item.first {
    left: calc((var(--item-size) * 2 + var(--item-gap) * 2) * -1);
  }
  .p-pagination__item.last {
    right: calc((var(--item-size) * 2 + var(--item-gap) * 2) * -1);
  }
  .p-pagination__item.prev {
    left: calc((var(--item-size) * 1 + var(--item-gap)) * -1);
  }
  .p-pagination__item.next {
    right: calc((var(--item-size) * 1 + var(--item-gap)) * -1);
  }
  .p-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--item-size);
    height: var(--item-size);
    border: 1px solid #d2d2d2;
    border-radius: 5px;
  }
  @media (any-hover: hover) {
    .p-pagination .page-numbers[href] {
      transition: color 0.3s;
    }
  }
  .p-pagination-single {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 45px;
    margin-top: 80px;
    font-size: 1.5rem;
    font-weight: 300;
    border-top: 1px solid var(--main);
  }
  @media screen and (max-width: 767px) {
    .p-pagination-single {
      padding-top: 8vw;
      margin-top: 16vw;
      font-size: 2.6666666667vw;
    }
  }
  .p-pagination-single__item a {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    min-width: 123px;
    height: 40px;
    padding: 5px;
    border: 1px solid var(--main);
    border-radius: 5px;
  }
  @media screen and (max-width: 767px) {
    .p-pagination-single__item a {
      gap: 2.6666666667vw;
      min-width: 24vw;
      height: 8vw;
      padding: 1.3333333333vw;
    }
  }
  @media (any-hover: hover) {
    .p-pagination-single__item a {
      transition: 0.5s;
      transition-property: background, color;
    }
    .p-pagination-single__item a .c-icon-arrow {
      transition: 0.5s;
      transition-property: background;
    }
    .p-pagination-single__item a:hover {
      color: #fff;
      background-color: var(--main);
    }
    .p-pagination-single__item a:hover .c-icon-arrow {
      background-color: #fff;
    }
  }
  .p-pagination-single__item.prev, .p-pagination-single__item.next {
    position: absolute;
  }
  .p-pagination-single__item.prev .c-icon-arrow, .p-pagination-single__item.next .c-icon-arrow {
    width: 0.7em;
    background-color: var(--main);
  }
  .p-pagination-single__item.prev {
    left: 0;
  }
  .p-pagination-single__item.next {
    right: 0;
  }
}
/* ========================================
  editor
======================================== */
@layer project {
  .p-edtr {
    word-break: break-all;
  }
  .p-edtr h2 {
    margin: 40px 0;
    font-size: var(--text-size2);
    font-weight: 700;
  }
  @media screen and (max-width: 767px) {
    .p-edtr h2 {
      margin: 10.6666666667vw 0;
    }
  }
  .p-edtr h3 {
    margin: 40px 0;
    font-size: var(--text-size3);
    font-weight: 700;
  }
  @media screen and (max-width: 767px) {
    .p-edtr h3 {
      margin: 10.6666666667vw 0;
    }
  }
  .p-edtr h4 {
    margin: 40px 0;
    font-size: var(--text-size4);
    font-weight: 700;
  }
  @media screen and (max-width: 767px) {
    .p-edtr h4 {
      margin: 10.6666666667vw 0;
    }
  }
  .p-edtr h5 {
    margin: 40px 0;
    font-size: var(--text-size5);
    font-weight: 700;
  }
  @media screen and (max-width: 767px) {
    .p-edtr h5 {
      margin: 10.6666666667vw 0;
    }
  }
  .p-edtr h6 {
    margin: 40px 0;
    font-size: var(--text-size6);
    font-weight: 700;
  }
  @media screen and (max-width: 767px) {
    .p-edtr h6 {
      margin: 10.6666666667vw 0;
    }
  }
  .p-edtr h2 {
    padding-left: 0.5em;
    border-left: 4px solid var(--colorPrimary);
  }
  .p-edtr h3 {
    padding: 10px;
    border-color: rgba(0, 136, 87, 0.6);
    border-radius: 10px;
  }
  .p-edtr p,
  .p-edtr ul,
  .p-edtr ol,
  .p-edtr dl,
  .p-edtr table,
  .p-edtr figure {
    margin-block: 20px;
  }
  @media screen and (max-width: 767px) {
    .p-edtr p,
    .p-edtr ul,
    .p-edtr ol,
    .p-edtr dl,
    .p-edtr table,
    .p-edtr figure {
      margin-block: 5.3333333333vw;
    }
  }
  .p-edtr p {
    line-height: 2;
    letter-spacing: 0.1em;
  }
  .p-edtr a {
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  @media (any-hover: hover) {
    .p-edtr a {
      transition: 0.3s;
      transition-property: opacity;
    }
    .p-edtr a:hover {
      text-decoration: none;
      opacity: 0.7;
    }
  }
  .p-edtr a[target=_blank] {
    padding-right: 1.5em;
    background: url("../img/common/icon/icon_blank.svg") top 50% right 0/0.8em 0.8em no-repeat;
  }
  .p-edtr a[href$=".pdf"] {
    padding-right: 1.2em;
    background: linear-gradient(var(--colorPrimary), var(--colorPrimary)) 0 100%/0 1px no-repeat, url("../img/common/icon/icon_pdf_red.svg") center right/1em 1em no-repeat;
  }
  .p-edtr ul {
    margin: 40px 0;
    list-style: disc;
    list-style-position: inside;
  }
  @media screen and (max-width: 767px) {
    .p-edtr ul {
      margin: 10.6666666667vw 0;
    }
  }
  .p-edtr ul > li > ul {
    list-style: circle;
  }
  .p-edtr ul > li > ul > li > ul {
    margin-top: 1em;
    list-style: square;
  }
  .p-edtr ul > li ul {
    padding-left: 1.5em;
    margin-top: 0.5em;
  }
  .p-edtr ul > li ul li {
    margin-top: 0.25em;
  }
  .p-edtr ol {
    margin: 40px 0;
    counter-reset: item;
  }
  @media screen and (max-width: 767px) {
    .p-edtr ol {
      margin: 10.6666666667vw 0;
    }
  }
  .p-edtr ol li {
    display: block;
  }
  .p-edtr ol li::before {
    margin-right: 0.5em;
    content: counters(item, "-") ".";
    counter-increment: item;
  }
  .p-edtr ol li ol {
    padding-left: 1.5em;
    margin: 0.5em 0 0;
  }
  .p-edtr ol li ol li {
    margin-top: 0.25em;
  }
  .p-edtr table {
    margin: 40px 0;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
  }
  @media screen and (max-width: 767px) {
    .p-edtr table {
      margin: 10.6666666667vw 0;
    }
  }
  .p-edtr table thead tr,
  .p-edtr table tbody tr {
    border-right: 1px solid #000;
    border-left: 1px solid #000;
  }
  .p-edtr table thead tr th,
  .p-edtr table thead tr td,
  .p-edtr table tbody tr th,
  .p-edtr table tbody tr td {
    padding: 10px 20px;
    font-weight: 300;
    text-align: center;
  }
  @media screen and (max-width: 767px) {
    .p-edtr table thead tr th,
    .p-edtr table thead tr td,
    .p-edtr table tbody tr th,
    .p-edtr table tbody tr td {
      padding: 2.6666666667vw;
    }
  }
  .p-edtr table thead tr {
    border-bottom: 1px solid #000;
  }
  .p-edtr table thead tr th + th {
    border-left: 1px solid #000;
  }
  .p-edtr table tbody tr + tr {
    border-top: 1px solid #000;
  }
  .p-edtr table tbody tr th {
    text-align: left;
  }
  .p-edtr table tbody tr th + th {
    border-left: 1px solid #000;
  }
  .p-edtr table tbody tr th + td {
    border-left: 1px solid #000;
  }
  .p-edtr table tbody tr td + td {
    border-left: 1px solid #000;
  }
  .p-edtr .wp-block-image {
    margin: 40px 0;
  }
  @media screen and (max-width: 767px) {
    .p-edtr .wp-block-image {
      margin: 10.6666666667vw 0;
    }
  }
  .p-edtr .is-layout-flex,
  .p-edtr .wp-block-gallery-is-layout-flex {
    display: flex;
  }
  .p-edtr hr {
    height: 2px;
    background-color: #e4e4e4;
    border: none;
  }
}
/* ========================================
  ページリンク
======================================== */
@layer project {
  .p-page-link__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  @media screen and (max-width: 1200px) {
    .p-page-link__list {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media screen and (max-width: 767px) {
    .p-page-link__list {
      grid-template-columns: 1fr;
    }
  }
  .p-page-link__list li {
    border-bottom: 1px solid #acacac;
  }
  .p-page-link__list li a {
    display: block;
    padding-inline: 50px;
    font-size: 2rem;
    letter-spacing: 0.09em;
  }
  @media screen and (max-width: 767px) {
    .p-page-link__list li a {
      padding-inline: 0;
      font-size: 3.7333333333vw;
    }
  }
  @media (any-hover: hover) {
    .p-page-link__list li a .p-page-link__main-txt span:not([class=c-icon-circle-arrow]) {
      position: relative;
      background: linear-gradient(var(--colorPrimary), var(--colorPrimary)) 0 100%/0 1px no-repeat;
      transition: background-size 0.3s;
    }
    .p-page-link__list li a:hover .p-page-link__main-txt span:not([class=c-icon-circle-arrow]) {
      background-size: 100% 1px;
    }
  }
  .p-page-link__main-txt {
    display: inline-grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    color: var(--colorPrimary);
  }
  @media screen and (max-width: 767px) {
    .p-page-link__main-txt {
      gap: 2.6666666667vw;
      font-size: 4.8vw;
    }
  }
  .p-page-link__main-txt .c-icon-circle-arrow {
    position: relative;
    top: 0.4em;
  }
  .p-page-link__sub-txt {
    padding-left: 30px;
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0.04em;
  }
  @media screen and (max-width: 767px) {
    .p-page-link__sub-txt {
      font-size: 3.4666666667vw;
    }
  }
  .p-page-link.-hospital .p-page-link__list li {
    padding-block: 0 60px;
  }
  @media screen and (min-width: 1201px) {
    .p-page-link.-hospital .p-page-link__list li:nth-child(n+4) {
      padding-block: 80px;
    }
    .p-page-link.-hospital .p-page-link__list li:nth-last-child(-n+2) {
      padding-block: 80px 0;
      border-color: transparent;
    }
  }
  @media screen and (min-width: 768px) and (max-width: 1200px) {
    .p-page-link.-hospital .p-page-link__list li:nth-child(n+3) {
      padding-block: 80px;
    }
    .p-page-link.-hospital .p-page-link__list li:last-child {
      padding-block: 80px 0;
      border-color: transparent;
    }
  }
  @media screen and (max-width: 767px) {
    .p-page-link.-hospital .p-page-link__list li {
      padding-block: 5.3333333333vw;
    }
    .p-page-link.-hospital .p-page-link__list li:last-child {
      border-color: transparent;
    }
  }
}
/* ========================================
  挨拶
======================================== */
@layer project {
  .p-greeting {
    display: grid;
    grid-template-columns: auto 1fr;
    padding-bottom: 45px;
    border-bottom: 9px solid #dbebe5;
  }
  @media screen and (max-width: 991px) {
    .p-greeting {
      grid-template-columns: 1fr;
      gap: 40px;
      justify-content: center;
    }
  }
  .p-greeting__ttl {
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 2.1;
    color: var(--colorPrimary);
  }
  @media screen and (max-width: 767px) {
    .p-greeting__ttl {
      font-size: 6.4vw;
    }
  }
  .p-greeting__img {
    padding-top: 20px;
  }
  @media screen and (max-width: 991px) {
    .p-greeting__img {
      width: max-content;
      margin: auto;
    }
  }
  @media screen and (max-width: 767px) {
    .p-greeting__img {
      width: 70%;
      margin-inline: auto;
    }
  }
  .p-greeting__img img {
    border-radius: 10px;
  }
  .p-greeting__txt-wrap {
    display: grid;
    grid-template-rows: 1fr auto;
    width: min(100%, 460px);
  }
  @media screen and (min-width: 992px) {
    .p-greeting__txt-wrap {
      justify-self: end;
    }
  }
  @media screen and (max-width: 991px) {
    .p-greeting__txt-wrap {
      width: max-content;
      margin: auto;
    }
  }
  .p-greeting__name-wrap {
    display: flex;
    gap: 20px;
    align-items: end;
    margin-top: 40px;
    font-family: var(--serif);
    line-height: 1;
  }
  @media screen and (max-width: 767px) {
    .p-greeting__name-wrap {
      gap: 2.6666666667vw;
      margin-top: 5.3333333333vw;
    }
  }
  .p-greeting__position {
    font-size: 2.4rem;
  }
  @media screen and (max-width: 767px) {
    .p-greeting__position {
      font-size: 4.2666666667vw;
    }
  }
  .p-greeting__name {
    font-size: 3.2rem;
  }
  @media screen and (max-width: 767px) {
    .p-greeting__name {
      font-size: 5.3333333333vw;
    }
  }
  @media screen and (min-width: 992px) {
    .p-greeting.-rev {
      grid-template-columns: 1fr auto;
    }
  }
  @media screen and (min-width: 992px) {
    .p-greeting.-rev .p-greeting__img {
      order: 1;
    }
  }
  .p-greeting.-rev .p-greeting__txt-wrap {
    justify-self: start;
  }
}
/* ========================================
  profile
======================================== */
@layer project {
  .p-profile__group + .p-profile__group {
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid #dcdcdc;
  }
  @media screen and (max-width: 767px) {
    .p-profile__group + .p-profile__group {
      padding-top: 10.6666666667vw;
      margin-top: 21.3333333333vw;
    }
  }
  .p-profile__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
  }
  @media screen and (max-width: 767px) {
    .p-profile__list {
      grid-template-columns: 1fr;
      gap: 21.3333333333vw;
    }
  }
  .p-profile__item {
    display: grid;
    grid-template-columns: 128px 1fr;
    gap: 20px;
  }
  @media screen and (max-width: 767px) {
    .p-profile__item {
      flex: 0 0 100%;
      grid-template-columns: 1fr;
      gap: 5.3333333333vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-profile__img {
      width: 40%;
      margin-inline: auto;
    }
  }
  .p-profile__img img {
    border-radius: 5px;
  }
}
/* ========================================
  contact
======================================== */
@layer project {
  .p-contact {
    padding: 20px;
    text-align: center;
    border: 2px solid #e5e5e5;
    border-radius: 5px;
  }
  @media screen and (max-width: 767px) {
    .p-contact {
      padding: 5.3333333333vw 2.6666666667vw;
    }
  }
  .p-contact__sttl {
    padding: 0.4em 1em;
    line-height: 1;
    border: 1px solid var(--main);
  }
  .p-contact.-mammography {
    border-color: #f4b2cf;
    border-width: 3px;
  }
  .p-contact-02 {
    padding: 20px;
  }
  @media screen and (max-width: 767px) {
    .p-contact-02 {
      padding: 5.3333333333vw;
    }
  }
}
/* ========================================
  message
======================================== */
@layer project {
  .p-message {
    padding: 30px 35px;
    border-radius: 10px;
  }
  @media screen and (max-width: 767px) {
    .p-message {
      padding: 5.3333333333vw 4vw;
    }
  }
  .p-message + .p-message {
    margin-top: 50px;
  }
  @media screen and (max-width: 767px) {
    .p-message + .p-message {
      margin-top: 10.6666666667vw;
    }
  }
  .p-message__head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: end;
  }
  @media screen and (max-width: 767px) {
    .p-message__head {
      gap: 5.3333333333vw;
    }
  }
  .p-message__content {
    padding: 15px 20px;
    margin-top: 20px;
    background-color: #fff;
    border-radius: 10px;
  }
  @media screen and (max-width: 767px) {
    .p-message__content {
      padding: 4vw 5.3333333333vw;
      margin-top: 5.3333333333vw;
    }
  }
  .p-message__icon {
    display: block;
    height: auto;
  }
  .p-message__icon.-men-01 {
    width: 95px;
    aspect-ratio: 95/89;
    background: url("../img/common/icon/icon_men_04.webp") center/contain no-repeat;
  }
  @media screen and (max-width: 767px) {
    .p-message__icon.-men-01 {
      width: 25.3333333333vw;
    }
  }
  .p-message__icon.-women-01 {
    width: 83px;
    aspect-ratio: 83/91;
    background: url("../img/common/icon/icon_women_03.webp") center/contain no-repeat;
  }
  @media screen and (max-width: 767px) {
    .p-message__icon.-women-01 {
      width: 22.1333333333vw;
    }
  }
  .p-message.-bg-green {
    background-color: rgba(219, 235, 229, 0.5);
  }
}
/* ========================================
  box
======================================== */
@layer project {
  .p-box {
    border: 2px solid #e5e5e5;
  }
  .p-box__item {
    padding: 10px;
    border-top: 2px solid #e5e5e5;
  }
  @media screen and (max-width: 767px) {
    .p-box__item {
      padding: 2.6666666667vw;
    }
  }
  .p-box-set {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  }
  .p-box-set__head {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }
  .p-box-set__head > p {
    padding: 5px;
  }
  .p-box-set__body {
    padding: 20px;
    border-top: 1px solid var(--colorPrimary);
  }
}
/******************************
* color
******************************/
@layer utilities {
  .u-color-white {
    color: #fff;
  }
  .u-color-main {
    color: var(--main);
  }
  .u-color-green {
    color: var(--colorPrimary);
  }
  .u-color-blue {
    color: var(--colorBlue);
  }
  .u-color-red {
    color: #ff6067;
  }
  .u-color-pink {
    color: var(--colorPink);
  }
}
/******************************
* color
******************************/
@layer utilities {
  .u-bg-green {
    background-color: var(--colorPrimary);
  }
  .u-bg-lightGreen {
    background-color: rgba(0, 136, 87, 0.1);
  }
  .u-bg-lightGreen−02 {
    background-color: rgba(219, 235, 229, 0.2);
  }
  .u-bg-lightPink {
    background-color: #ffeae9;
  }
  .u-bg-lightYellow {
    background-color: rgba(255, 240, 217, 0.5);
  }
  .u-bg-lightBlue {
    background-color: rgba(178, 223, 242, 0.5);
  }
}
/******************************
* width
******************************/
@layer utilities {
  .u-w-per-5 {
    width: calc(5 * 1%);
  }
  @media screen and (min-width: 768px) {
    .u-PC-w-per-5 {
      width: calc(5 * 1%);
    }
  }
  @media screen and (max-width: 767px) {
    .u-SP-w-per-5 {
      width: calc(5 * 1%);
    }
  }
  .u-w-per-10 {
    width: calc(10 * 1%);
  }
  @media screen and (min-width: 768px) {
    .u-PC-w-per-10 {
      width: calc(10 * 1%);
    }
  }
  @media screen and (max-width: 767px) {
    .u-SP-w-per-10 {
      width: calc(10 * 1%);
    }
  }
  .u-w-per-15 {
    width: calc(15 * 1%);
  }
  @media screen and (min-width: 768px) {
    .u-PC-w-per-15 {
      width: calc(15 * 1%);
    }
  }
  @media screen and (max-width: 767px) {
    .u-SP-w-per-15 {
      width: calc(15 * 1%);
    }
  }
  .u-w-per-20 {
    width: calc(20 * 1%);
  }
  @media screen and (min-width: 768px) {
    .u-PC-w-per-20 {
      width: calc(20 * 1%);
    }
  }
  @media screen and (max-width: 767px) {
    .u-SP-w-per-20 {
      width: calc(20 * 1%);
    }
  }
  .u-w-per-25 {
    width: calc(25 * 1%);
  }
  @media screen and (min-width: 768px) {
    .u-PC-w-per-25 {
      width: calc(25 * 1%);
    }
  }
  @media screen and (max-width: 767px) {
    .u-SP-w-per-25 {
      width: calc(25 * 1%);
    }
  }
  .u-w-per-30 {
    width: calc(30 * 1%);
  }
  @media screen and (min-width: 768px) {
    .u-PC-w-per-30 {
      width: calc(30 * 1%);
    }
  }
  @media screen and (max-width: 767px) {
    .u-SP-w-per-30 {
      width: calc(30 * 1%);
    }
  }
  .u-w-per-35 {
    width: calc(35 * 1%);
  }
  @media screen and (min-width: 768px) {
    .u-PC-w-per-35 {
      width: calc(35 * 1%);
    }
  }
  @media screen and (max-width: 767px) {
    .u-SP-w-per-35 {
      width: calc(35 * 1%);
    }
  }
  .u-w-per-40 {
    width: calc(40 * 1%);
  }
  @media screen and (min-width: 768px) {
    .u-PC-w-per-40 {
      width: calc(40 * 1%);
    }
  }
  @media screen and (max-width: 767px) {
    .u-SP-w-per-40 {
      width: calc(40 * 1%);
    }
  }
  .u-w-per-45 {
    width: calc(45 * 1%);
  }
  @media screen and (min-width: 768px) {
    .u-PC-w-per-45 {
      width: calc(45 * 1%);
    }
  }
  @media screen and (max-width: 767px) {
    .u-SP-w-per-45 {
      width: calc(45 * 1%);
    }
  }
  .u-w-per-50 {
    width: calc(50 * 1%);
  }
  @media screen and (min-width: 768px) {
    .u-PC-w-per-50 {
      width: calc(50 * 1%);
    }
  }
  @media screen and (max-width: 767px) {
    .u-SP-w-per-50 {
      width: calc(50 * 1%);
    }
  }
  .u-w-per-55 {
    width: calc(55 * 1%);
  }
  @media screen and (min-width: 768px) {
    .u-PC-w-per-55 {
      width: calc(55 * 1%);
    }
  }
  @media screen and (max-width: 767px) {
    .u-SP-w-per-55 {
      width: calc(55 * 1%);
    }
  }
  .u-w-per-60 {
    width: calc(60 * 1%);
  }
  @media screen and (min-width: 768px) {
    .u-PC-w-per-60 {
      width: calc(60 * 1%);
    }
  }
  @media screen and (max-width: 767px) {
    .u-SP-w-per-60 {
      width: calc(60 * 1%);
    }
  }
  .u-w-per-65 {
    width: calc(65 * 1%);
  }
  @media screen and (min-width: 768px) {
    .u-PC-w-per-65 {
      width: calc(65 * 1%);
    }
  }
  @media screen and (max-width: 767px) {
    .u-SP-w-per-65 {
      width: calc(65 * 1%);
    }
  }
  .u-w-per-70 {
    width: calc(70 * 1%);
  }
  @media screen and (min-width: 768px) {
    .u-PC-w-per-70 {
      width: calc(70 * 1%);
    }
  }
  @media screen and (max-width: 767px) {
    .u-SP-w-per-70 {
      width: calc(70 * 1%);
    }
  }
  .u-w-per-75 {
    width: calc(75 * 1%);
  }
  @media screen and (min-width: 768px) {
    .u-PC-w-per-75 {
      width: calc(75 * 1%);
    }
  }
  @media screen and (max-width: 767px) {
    .u-SP-w-per-75 {
      width: calc(75 * 1%);
    }
  }
  .u-w-per-80 {
    width: calc(80 * 1%);
  }
  @media screen and (min-width: 768px) {
    .u-PC-w-per-80 {
      width: calc(80 * 1%);
    }
  }
  @media screen and (max-width: 767px) {
    .u-SP-w-per-80 {
      width: calc(80 * 1%);
    }
  }
  .u-w-per-85 {
    width: calc(85 * 1%);
  }
  @media screen and (min-width: 768px) {
    .u-PC-w-per-85 {
      width: calc(85 * 1%);
    }
  }
  @media screen and (max-width: 767px) {
    .u-SP-w-per-85 {
      width: calc(85 * 1%);
    }
  }
  .u-w-per-90 {
    width: calc(90 * 1%);
  }
  @media screen and (min-width: 768px) {
    .u-PC-w-per-90 {
      width: calc(90 * 1%);
    }
  }
  @media screen and (max-width: 767px) {
    .u-SP-w-per-90 {
      width: calc(90 * 1%);
    }
  }
  .u-w-per-95 {
    width: calc(95 * 1%);
  }
  @media screen and (min-width: 768px) {
    .u-PC-w-per-95 {
      width: calc(95 * 1%);
    }
  }
  @media screen and (max-width: 767px) {
    .u-SP-w-per-95 {
      width: calc(95 * 1%);
    }
  }
  .u-w-per-100 {
    width: calc(100 * 1%);
  }
  @media screen and (min-width: 768px) {
    .u-PC-w-per-100 {
      width: calc(100 * 1%);
    }
  }
  @media screen and (max-width: 767px) {
    .u-SP-w-per-100 {
      width: calc(100 * 1%);
    }
  }
}
/******************************
* font family
******************************/
@layer utilities {
  .u-ff-sans-serif {
    font-family: var(--sans-serif);
  }
  .u-ff-serif {
    font-family: var(--serif);
  }
  .u-ff-marugo {
    font-family: var(--marugo);
  }
  .u-ff-en {
    font-family: var(--en-sans);
  }
}
/******************************
* font size
******************************/
@layer utilities {
  .u-fs-11 {
    font-size: 1.1rem;
  }
  .u-fs-12 {
    font-size: 1.2rem;
  }
  .u-fs-13 {
    font-size: 1.3rem;
  }
  .u-fs-14 {
    font-size: 1.4rem;
  }
  .u-fs-15 {
    font-size: 1.5rem;
  }
  .u-fs-16 {
    font-size: 1.6rem;
  }
  .u-fs-17 {
    font-size: 1.7rem;
  }
  .u-fs-18 {
    font-size: 1.8rem;
  }
  .u-fs-19 {
    font-size: 1.9rem;
  }
  .u-fs-20 {
    font-size: 2rem;
  }
  .u-fs-21 {
    font-size: 2.1rem;
  }
  .u-fs-22 {
    font-size: 2.2rem;
  }
  .u-fs-23 {
    font-size: 2.3rem;
  }
  .u-fs-24 {
    font-size: 2.4rem;
  }
  .u-fs-25 {
    font-size: 2.5rem;
  }
  .u-fs-26 {
    font-size: 2.6rem;
  }
  .u-fs-27 {
    font-size: 2.7rem;
  }
  .u-fs-28 {
    font-size: 2.8rem;
  }
  .u-fs-29 {
    font-size: 2.9rem;
  }
  .u-fs-30 {
    font-size: 3rem;
  }
  @media screen and (max-width: 767px) {
    .u-SP-fs-1 {
      font-size: 1vw;
    }
    .u-SP-fs-2 {
      font-size: 2vw;
    }
    .u-SP-fs-3 {
      font-size: 3vw;
    }
    .u-SP-fs-4 {
      font-size: 4vw;
    }
    .u-SP-fs-5 {
      font-size: 5vw;
    }
    .u-SP-fs-6 {
      font-size: 6vw;
    }
    .u-SP-fs-7 {
      font-size: 7vw;
    }
    .u-SP-fs-8 {
      font-size: 8vw;
    }
    .u-SP-fs-9 {
      font-size: 9vw;
    }
    .u-SP-fs-10 {
      font-size: 10vw;
    }
    .u-SP-fs-11 {
      font-size: 11vw;
    }
    .u-SP-fs-12 {
      font-size: 12vw;
    }
    .u-SP-fs-13 {
      font-size: 13vw;
    }
    .u-SP-fs-14 {
      font-size: 14vw;
    }
    .u-SP-fs-15 {
      font-size: 15vw;
    }
    .u-SP-fs-16 {
      font-size: 16vw;
    }
    .u-SP-fs-17 {
      font-size: 17vw;
    }
    .u-SP-fs-18 {
      font-size: 18vw;
    }
    .u-SP-fs-19 {
      font-size: 19vw;
    }
    .u-SP-fs-20 {
      font-size: 20vw;
    }
    .u-SP-fs-21 {
      font-size: 21vw;
    }
    .u-SP-fs-22 {
      font-size: 22vw;
    }
    .u-SP-fs-23 {
      font-size: 23vw;
    }
    .u-SP-fs-24 {
      font-size: 24vw;
    }
    .u-SP-fs-25 {
      font-size: 25vw;
    }
    .u-SP-fs-26 {
      font-size: 26vw;
    }
    .u-SP-fs-27 {
      font-size: 27vw;
    }
    .u-SP-fs-28 {
      font-size: 28vw;
    }
    .u-SP-fs-29 {
      font-size: 29vw;
    }
    .u-SP-fs-30 {
      font-size: 30vw;
    }
  }
}
/******************************
* font weight
******************************/
.u-fw-700 {
  font-weight: 700;
}

.u-fw-600 {
  font-weight: 600;
}

.u-fw-500 {
  font-weight: 500;
}

.u-fw-400 {
  font-weight: 400;
}

.u-fw-300 {
  font-weight: 300;
}

@layer utilities {
  .u-lh-1 {
    line-height: 1;
  }
  .u-lh-12 {
    line-height: 1.2;
  }
  .u-lh-14 {
    line-height: 1.4;
  }
  .u-lh-15 {
    line-height: 1.5;
  }
  .u-lh-16 {
    line-height: 1.6;
  }
  .u-lh-17 {
    line-height: 1.7;
  }
  .u-lh-18 {
    line-height: 1.8;
  }
  .u-lh-19 {
    line-height: 1.9;
  }
  .u-lh-20 {
    line-height: 2;
  }
  .u-lh-22 {
    line-height: 2.2;
  }
  @media screen and (min-width: 768px) {
    .u-lh-pc-14 {
      line-height: 1.4;
    }
    .u-lh-pc-15 {
      line-height: 1.5;
    }
    .u-lh-pc-16 {
      line-height: 1.6;
    }
    .u-lh-pc-17 {
      line-height: 1.7;
    }
    .u-lh-pc-18 {
      line-height: 1.8;
    }
    .u-lh-pc-20 {
      line-height: 2;
    }
    .u-lh-pc-22 {
      line-height: 2.2;
    }
  }
  @media screen and (max-width: 767px) {
    .u-lh-sp-14 {
      line-height: 1.4;
    }
    .u-lh-sp-15 {
      line-height: 1.5;
    }
    .u-lh-sp-16 {
      line-height: 1.6;
    }
    .u-lh-sp-17 {
      line-height: 1.7;
    }
    .u-lh-sp-18 {
      line-height: 1.8;
    }
    .u-lh-sp-20 {
      line-height: 2;
    }
    .u-lh-sp-22 {
      line-height: 2.2;
    }
  }
}
/*========================================
 * hidden
 *
 * クラス : u-hidden-{MQ}
========================================*/
@layer utilities {
  @media screen and (max-width: 767px) {
    .u-hidden-ltSP {
      display: none;
    }
  }
  @media screen and (max-width: 991px) {
    .u-hidden-ltTAB {
      display: none;
    }
  }
  @media screen and (max-width: 1340px) {
    .u-hidden-ltMid {
      display: none;
    }
  }
  @media screen and (min-width: 768px) {
    .u-hidden-gtTAB {
      display: none;
    }
  }
  @media screen and (min-width: 1341px) {
    .u-hidden-gtMid {
      display: none;
    }
  }
  @media screen and (min-width: 992px) {
    .u-hidden-gtPC {
      display: none;
    }
  }
}
/*========================================
 * スクリーンリーダーテキスト
========================================*/
@layer utilities {
  .screen-reader-text,
  .u-screen-reader {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
  }
}
/*========================================
 * text-align
========================================*/
@layer utilities {
  .u-ta-left {
    text-align: left;
  }
  .u-ta-center {
    text-align: center;
  }
  .u-ta-right {
    text-align: right;
  }
  @media screen and (max-width: 767px) {
    .u-SP-ta-left {
      text-align: left;
    }
    .u-SP-ta-center {
      text-align: center;
    }
    .u-SP-ta-right {
      text-align: right;
    }
  }
}
/* ========================================
 * align-items
======================================== */
@layer utilities {
  .u-ai-start {
    align-items: flex-start;
  }
  @media screen and (min-width: 768px) {
    .u-PC-ai-start {
      align-items: flex-start;
    }
  }
  @media screen and (max-width: 767px) {
    .u-SP-ai-start {
      align-items: flex-start;
    }
  }
  .u-ai-end {
    align-items: flex-end;
  }
  @media screen and (min-width: 768px) {
    .u-PC-ai-end {
      align-items: flex-end;
    }
  }
  @media screen and (max-width: 767px) {
    .u-SP-ai-end {
      align-items: flex-end;
    }
  }
  .u-ai-center {
    align-items: center;
  }
  @media screen and (min-width: 768px) {
    .u-PC-ai-center {
      align-items: center;
    }
  }
  @media screen and (max-width: 767px) {
    .u-SP-ai-center {
      align-items: center;
    }
  }
  .u-ai-baseline {
    align-items: baseline;
  }
  @media screen and (min-width: 768px) {
    .u-PC-ai-baseline {
      align-items: baseline;
    }
  }
  @media screen and (max-width: 767px) {
    .u-SP-ai-baseline {
      align-items: baseline;
    }
  }
  .u-ai-stretch {
    align-items: stretch;
  }
  @media screen and (min-width: 768px) {
    .u-PC-ai-stretch {
      align-items: stretch;
    }
  }
  @media screen and (max-width: 767px) {
    .u-SP-ai-stretch {
      align-items: stretch;
    }
  }
}
/* ========================================
 * align-self
======================================== */
@layer utilities {
  .u-as-start {
    align-self: flex-start;
  }
  @media screen and (min-width: 768px) {
    .u-PC-as-start {
      align-self: flex-start;
    }
  }
  @media screen and (max-width: 767px) {
    .u-SP-as-start {
      align-self: flex-start;
    }
  }
  .u-as-end {
    align-self: flex-end;
  }
  @media screen and (min-width: 768px) {
    .u-PC-as-end {
      align-self: flex-end;
    }
  }
  @media screen and (max-width: 767px) {
    .u-SP-as-end {
      align-self: flex-end;
    }
  }
  .u-as-center {
    align-self: center;
  }
  @media screen and (min-width: 768px) {
    .u-PC-as-center {
      align-self: center;
    }
  }
  @media screen and (max-width: 767px) {
    .u-SP-as-center {
      align-self: center;
    }
  }
  .u-as-baseline {
    align-self: baseline;
  }
  @media screen and (min-width: 768px) {
    .u-PC-as-baseline {
      align-self: baseline;
    }
  }
  @media screen and (max-width: 767px) {
    .u-SP-as-baseline {
      align-self: baseline;
    }
  }
  .u-as-stretch {
    align-self: stretch;
  }
  @media screen and (min-width: 768px) {
    .u-PC-as-stretch {
      align-self: stretch;
    }
  }
  @media screen and (max-width: 767px) {
    .u-SP-as-stretch {
      align-self: stretch;
    }
  }
}
/* ========================================
 * justify-content
======================================== */
@layer utilities {
  .u-jc-start {
    justify-content: flex-start;
  }
  @media screen and (max-width: 767px) {
    .u-jc-sp-start {
      justify-content: flex-start;
    }
  }
  .u-jc-end {
    justify-content: flex-end;
  }
  @media screen and (max-width: 767px) {
    .u-jc-sp-end {
      justify-content: flex-end;
    }
  }
  .u-jc-center {
    justify-content: center;
  }
  @media screen and (max-width: 767px) {
    .u-jc-sp-center {
      justify-content: center;
    }
  }
  .u-jc-space-between {
    justify-content: space-between;
  }
  @media screen and (max-width: 767px) {
    .u-jc-sp-space-between {
      justify-content: space-between;
    }
  }
  .u-jc-space-around {
    justify-content: space-around;
  }
  @media screen and (max-width: 767px) {
    .u-jc-sp-space-around {
      justify-content: space-around;
    }
  }
  .u-jc-space-evenly {
    justify-content: space-evenly;
  }
  @media screen and (max-width: 767px) {
    .u-jc-sp-space-evenly {
      justify-content: space-evenly;
    }
  }
}