@charset "UTF-8";
@layer resets {
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  :where([hidden]:not([hidden=until-found])) {
    display: none !important;
  }
  :where(html) {
    overflow-x: hidden;
    -webkit-text-size-adjust: none;
    color-scheme: dark light;
    -moz-tab-size: 2;
    -o-tab-size: 2;
    tab-size: 2;
    scrollbar-gutter: stable;
    interpolate-size: allow-keywords;
    line-height: 1.5;
    scroll-padding-top: 3em;
    scroll-behavior: smooth;
    min-width: 225px;
  }
  :where(html:has(dialog:modal[open])) {
    overflow: clip;
  }
  :where(body) {
    line-height: inherit;
    font-family: var(--font-min);
    -webkit-font-smoothing: antialiased;
    font-size: clamp(var(--font-size-min), var(--font-size-mid), var(--font-size-max));
    color: #fff;
    background-color: #000;
    position: relative;
  }
  :where(body).active {
    overflow: hidden;
  }
  article {
    overflow-x: hidden;
  }
  :where(section) {
    position: relative;
  }
  :where(input, button, textarea, select) {
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    word-spacing: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
  }
  :where(button) {
    all: unset;
  }
  :where(textarea) {
    resize: vertical;
    resize: block;
  }
  :where(button, label, select, summary, [role=button], [role=option]) {
    cursor: pointer;
  }
  :where(:disabled, label:has(> :disabled, + disabled)) {
    cursor: not-allowed;
  }
  :where(a) {
    color: inherit;
    text-underline-offset: 0.2ex;
    text-decoration: none;
  }
  :where(ul, ol) {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  :where(blockquote, q) {
    quotes: none;
  }
  :where(blockquote:before, blockquote:after, q:before, q:after) {
    content: "";
    content: none;
  }
  :where(table) {
    border-collapse: collapse;
    border-spacing: 0;
  }
  :where(img, picture, svg, video) {
    max-inline-size: 100%;
    block-size: auto;
    display: block;
    vertical-align: middle;
  }
  :where(dialog, [popover]) {
    border: none;
    background: none;
    color: inherit;
    inset: unset;
    max-width: unset;
    max-height: unset;
    overflow: unset;
  }
  :where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
    display: none !important;
  }
  :where(:focus-visible) {
    outline: 3px solid CanvasText;
    box-shadow: 0 0 0 5px Canvas;
    outline-offset: 1px;
  }
  :where(:focus-visible, :target) {
    scroll-margin-block: 8vh;
  }
  :where(.visually-hidden:not(:focus-within, :active)) {
    clip-path: inset(50%) !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden !important;
    position: absolute !important;
    white-space: nowrap !important;
    border: 0 !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    user-select: none !important;
  }
  :where(fieldset, legend) {
    display: block;
    float: none;
    min-width: auto;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: normal;
    font-style: normal;
    font-size: 100%;
    font-family: inherit;
    line-height: inherit;
  }
  :where(a) {
    text-decoration: none;
    transition: 0.3s;
    opacity: 1;
    display: inline-block;
  }
  :where(a):active {
    transform: scale(0.95);
  }
  :where(a):hover {
    opacity: 0.6;
  }
}
@layer setting {
  :root {
    /* フォント関連 */
    --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Sans", "游ゴシック Mediu", YuGothic, YuGothicM, "メイリオ", meiryo, sans-serif;
    --font-min: "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    --font-en: "Jost", sans-serif;
    --font-begas: "Bebas Neue", cursive;
    /* レイアウト */
    --container-width: 1200px;
    --container-width-p: 90%;
    --section-padding: 2em 0;
    /* 色 */
    --color1: #ecf1f7;
    --color2: #222;
    /* フォントサイズclamp */
    --font-size-min: 8px;
    --font-size-mid: 1vw;
    --font-size-max: 16px;
  }
  @media screen and (max-width: 768px) {
    :root {
      --font-size-min: 9px;
      --font-size-mid: 4.5dvw;
      --font-size-max: 14px;
    }
  }
}
@layer layouts {
  /* アコーディオン */
  :where(.accordion-area) {
    list-style: none;
    width: 100%;
    margin: 0 auto;
  }
  :where(.accordion-area) li {
    background-color: #fff;
    border-radius: 0.8em;
    padding: 3% 6%;
  }
  :where(.accordion-area) li + li {
    margin-top: 1em;
  }
  :where(.accordion-area) :where(.title) {
    position: relative;
    transition: all 0.5s ease;
    margin: 0;
    padding-left: 1.4em;
  }
  :where(.accordion-area) :where(.title):before {
    display: block;
    position: absolute;
    content: "";
    left: 0;
    top: 1.46em;
    width: 1.1em;
    height: 1.1em;
    transform: translateY(-50%);
    background: url("../img/icon3.webp") no-repeat center/contain;
  }
  :where(.accordion-area) :where(.title) :where(span) {
    cursor: pointer;
    display: inline-block;
    padding: 0.7em 0;
    width: 100%;
    position: relative;
    letter-spacing: 0.1em;
    font-weight: 700;
    width: 100%;
    padding-right: 1.3em;
  }
  :where(.accordion-area) :where(.title) :where(span):before, :where(.accordion-area) :where(.title) :where(span):after {
    content: "";
    height: 3px;
    width: 1.1em;
    display: block;
    position: absolute;
    right: 0;
    top: 0.1em;
    bottom: 0;
    margin: auto;
    background-size: 90%;
    background-position: center;
    transform: rotate(0deg);
    transition: 0.3s;
    background-color: #FC0C79;
  }
  :where(.accordion-area) :where(.title) :where(span):before {
    transform: rotate(-90deg);
  }
  :where(.accordion-area) .title.close span::before {
    transform: rotate(0deg);
  }
  :where(.accordion-area) .abox {
    display: none;
    font-size: 1.1em;
  }
  :where(.frame) {
    width: var(--container-width-p);
    max-width: var(--container-width);
    margin-inline: auto;
    position: relative;
  }
  :where(.flex) {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
  section + section {
    margin-top: 7em;
  }
  @media screen and (max-width: 768px) {
    section + section {
      margin-top: 5.5em;
    }
  }
  h2.common_title {
    text-align: center;
    font-weight: 100;
    font-size: 1.7em;
    margin: 0 auto 3.5em;
  }
  h2.common_title span {
    font-size: 1.3em;
    display: block;
    padding-bottom: 0.7em;
    letter-spacing: 0.1em;
    position: relative;
  }
  h2.common_title span:before {
    display: block;
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
    width: 80%;
    height: auto;
    aspect-ratio: 39/1;
    background: url("../img/title_border1.webp") no-repeat center/contain;
  }
  h2.common_title i {
    letter-spacing: 0.2em;
    font-size: 0.8em;
  }
  @media screen and (max-width: 768px) {
    h2.common_title {
      font-size: 1.5em;
      margin: 0 auto 1.5em;
    }
    h2.common_title span {
      font-size: 1.2em;
      padding-bottom: 0.2em;
    }
    h2.common_title span:before {
      width: 100%;
    }
  }
  i {
    font-style: normal;
  }
  ol {
    margin: 0.5em 0;
  }
  ol li {
    padding: 0.2em 0 0.2em 1.2em;
    position: relative;
    letter-spacing: 0.05em;
  }
  ol li:before {
    display: block;
    position: absolute;
    content: "・";
    left: 0;
    top: 1em;
    width: 1em;
    height: 1em;
    line-height: 1em;
    transform: translateY(-50%);
  }
  p {
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
  .headline {
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  .headline span {
    display: inline-block;
  }
  #loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  #loadingOverlay svg {
    width: 300px;
    /* 好きなサイズに調整 */
  }
  @media screen and (max-width: 768px) {
    #loadingOverlay svg {
      width: 50%;
    }
  }
  body.loading {
    overflow: hidden;
    height: 100dvh;
  }
  header {
    position: absolute;
    z-index: 2;
    width: 100%;
    top: 0;
    left: 0;
  }
  header .frame {
    max-width: 1800px;
  }
  header .logo {
    width: 25%;
    max-width: 250px;
  }
  @media screen and (max-width: 768px) {
    header .logo {
      width: 50%;
    }
  }
  header .flex {
    padding: 1.5em 0;
  }
  header .flex > ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 58%;
    max-width: 900px;
  }
  header .flex > ul li a {
    padding: 0.5em 0.8em;
    letter-spacing: 0.1em;
    text-align: center;
    position: relative;
    transition: 0.6s ease;
  }
  header .flex > ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 1px;
    background: #555;
    transition: width 0.3s ease;
  }
  header .flex > ul li a:hover {
    letter-spacing: 0.15em;
  }
  header .flex > ul li a:hover::after {
    width: 100%;
  }
  @media screen and (max-width: 768px) {
    header .flex > ul {
      display: none;
    }
  }
  #kv {
    background: url("../img/kv.webp") no-repeat center/cover;
  }
  @media screen and (max-width: 768px) {
    #kv {
      background: url("../img/kv_sp.webp") no-repeat center/cover;
    }
  }
  #kv .frame {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
    padding: 24% 0 26%;
  }
  @media screen and (max-width: 768px) {
    #kv .frame {
      height: 100dvh;
    }
  }
  #kv h1 {
    font-size: 1em;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-top: 0.6em;
  }
  #kv h2 {
    font-weight: 500;
    letter-spacing: 0.1em;
    font-size: 2.1em;
    letter-spacing: 0.2em;
    padding-left: 1em;
  }
  #kv h2 span:nth-child(3), #kv h2 span:nth-child(5), #kv h2 span:nth-child(6), #kv h2 span:nth-child(9), #kv h2 span:nth-child(11), #kv h2 span:nth-child(12) {
    font-size: 0.8em;
  }
  @media screen and (max-width: 768px) {
    #kv h1 {
      font-size: 0.8em;
      padding-left: 0.8em;
      margin-top: 0.3em;
    }
    #kv h2 {
      font-size: 1.4em;
    }
  }
  #vision {
    position: relative;
  }
  #vision .bg {
    position: absolute;
    z-index: 0;
    left: 0;
    bottom: 0;
    width: 40%;
    height: auto;
  }
  @media screen and (max-width: 768px) {
    #vision .bg {
      width: 130%;
    }
  }
  #vision p {
    text-align: center;
    line-height: 3;
    font-size: 1.2em;
    padding: 0 0 14%;
  }
  @media screen and (max-width: 768px) {
    #vision p {
      font-size: 1em;
      letter-spacing: 0.02em;
      padding-bottom: 40%;
    }
  }
  #service {
    position: relative;
  }
  #service .frame {
    z-index: 2;
  }
  #service .bg {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 82%;
    display: block;
    margin-top: 12%;
  }
  #service .bg img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  #service .in {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #service .in + .in {
    margin-top: 5%;
  }
  #service .in.re {
    flex-direction: row-reverse;
  }
  #service .in figure,
  #service .in .txt {
    width: 48%;
  }
  @media screen and (max-width: 768px) {
    #service .in {
      flex-direction: column;
    }
    #service .in + .in {
      margin-top: 10%;
    }
    #service .in.re {
      flex-direction: column;
    }
    #service .in figure,
    #service .in .txt {
      width: 100%;
    }
    #service .in .txt {
      margin-top: 4%;
    }
  }
  #service .in h3 {
    position: relative;
    padding: 1.8em 0 0.45em;
    font-size: 1.5em;
    letter-spacing: 0.12em;
    font-weight: 400;
    margin-bottom: 1em;
  }
  #service .in h3:before {
    display: block;
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 3.5em;
    height: 1.3em;
  }
  #service .in h3:after {
    display: block;
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 12em;
    height: 1.3em;
    background: url("../img/title_border2.webp") no-repeat bottom/contain;
  }
  @media screen and (max-width: 768px) {
    #service .in h3:after {
      width: 100%;
    }
  }
  #service .in:nth-child(2) h3:before {
    background: url("../img/step1.webp") no-repeat center/contain;
  }
  #service .in:nth-child(3) h3:before {
    background: url("../img/step2.webp") no-repeat center/contain;
  }
  #service .in:nth-child(4) h3:before {
    background: url("../img/step3.webp") no-repeat center/contain;
  }
  #whyus .flex {
    align-items: center;
  }
  #whyus .flex figure,
  #whyus .flex .txt {
    width: 48%;
  }
  #whyus .flex h3 {
    font-weight: 400;
    line-height: 1.3;
    position: relative;
    padding: 0 0 0.6em;
    font-size: 1.15em;
    margin-bottom: 0.6em;
    letter-spacing: 0.07em;
  }
  #whyus .flex h3 span {
    font-size: 0.85em;
  }
  #whyus .flex h3 b {
    display: block;
    font-weight: 400;
  }
  #whyus .flex h3 i {
    display: block;
    font-size: 1.9em;
    letter-spacing: 0.15em;
  }
  #whyus .flex h3:after {
    display: block;
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 80%;
    height: 1.3em;
    background: url("../img/title_border3.webp") no-repeat bottom/contain;
  }
  #whyus .flex h4,
  #whyus .flex p {
    padding-left: 2.5rem;
  }
  #whyus .flex h4 {
    margin-top: 1.3em;
    font-weight: 400;
    font-size: 1.4em;
    margin-bottom: 0.2em;
    position: relative;
    letter-spacing: 0.1em;
  }
  #whyus .flex h4:before {
    display: block;
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    width: 1.2em;
    height: 1.2em;
    transform: translateY(-50%);
    background: url("../img/icon1.webp") no-repeat center/contain;
  }
  @media screen and (max-width: 768px) {
    #whyus .flex {
      flex-direction: column;
    }
    #whyus .flex figure,
    #whyus .flex .txt {
      width: 100%;
    }
    #whyus .flex .txt {
      margin-top: 12%;
    }
    #whyus .flex h3 {
      text-align: center;
    }
    #whyus .flex h3:after {
      width: 100%;
    }
  }
  #message figure,
  #message .txt {
    width: 48%;
  }
  #message .txt {
    position: relative;
  }
  #message .txt .name {
    position: absolute;
    right: 0;
    bottom: 0;
    text-align: right;
  }
  #message .txt .name span {
    font-size: 1.3em;
    letter-spacing: 0.07em;
  }
  #message .txt p {
    line-height: 1.8;
    font-size: 1.1em;
  }
  #message .txt p + p {
    margin-top: 1.5em;
  }
  @media screen and (max-width: 768px) {
    #message .txt p {
      font-size: 1em;
    }
  }
  @media screen and (max-width: 768px) {
    #message .flex {
      flex-direction: column;
    }
    #message figure,
    #message .txt {
      width: 100%;
    }
    #message .txt {
      margin-bottom: 12%;
    }
    #message .txt .name {
      position: relative;
      margin-top: 18%;
    }
  }
  #access .flex {
    width: 65%;
    margin: 0 auto;
  }
  #access .logo_box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 50%;
  }
  #access .logo_box figure {
    width: 6.5em;
  }
  #access .logo_box p {
    font-size: 1.4em;
    padding-left: 10%;
  }
  #access .logo_box p span {
    font-size: 1.3em;
    padding-left: 0.5em;
    letter-spacing: 0.06em;
  }
  @media screen and (max-width: 768px) {
    #access .flex {
      width: 100%;
      flex-direction: column;
    }
    #access .logo_box {
      width: 100%;
      margin-bottom: 8%;
      justify-content: center;
    }
    #access .logo_box figure {
      width: 4.5em;
    }
    #access .logo_box p {
      font-size: 1.15em;
      padding-left: 5%;
    }
    #access .txt {
      font-size: 0.9em;
    }
    #access .txt p {
      text-align: center;
    }
  }
  #access .txt p {
    font-size: 1.2em;
  }
  #access .txt p + p {
    margin-top: 1.2em;
  }
  #access .map {
    margin-top: 2em;
  }
  #access .map iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 3/1;
  }
  @media screen and (max-width: 768px) {
    #access .map iframe {
      aspect-ratio: 3/2;
    }
  }
  #contact {
    text-align: center;
  }
  #contact p {
    font-size: 1.5em;
    margin-bottom: 3em;
  }
  @media screen and (max-width: 768px) {
    #contact p {
      font-size: 1.2em;
    }
  }
  #contact a.btn1 {
    display: block;
    width: 80%;
    max-width: 350px;
    margin: 0 auto;
  }
  #recruit {
    padding-bottom: 5em;
    position: relative;
  }
  #recruit .frame {
    position: relative;
    z-index: 2;
  }
  #recruit table {
    width: 38em;
    margin: 4em auto;
  }
  #recruit table th {
    vertical-align: top;
    text-align: left;
    width: 12em;
    padding: 1em 0;
    letter-spacing: 0.07em;
    font-weight: 400;
  }
  #recruit table td {
    padding: 1em 0;
  }
  @media screen and (max-width: 768px) {
    #recruit table {
      width: 100%;
    }
    #recruit table th {
      display: block;
      width: 100%;
      text-align: center;
      font-size: 1.2em;
      padding: 2em 0 0.5em;
    }
    #recruit table td {
      display: block;
      font-size: 0.92em;
    }
  }
  #recruit ol {
    margin: 0;
  }
  #recruit ol li:first-child {
    padding-top: 0;
  }
  #recruit .bg {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
  }
  #recruit .bg img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  #recruit p {
    text-align: center;
    font-size: 1.2em;
  }
  @media screen and (max-width: 768px) {
    #recruit p {
      font-size: 1em;
    }
    #recruit p + p {
      margin-top: 1.5em;
    }
  }
  footer {
    padding: 5.5em 0;
    text-align: center;
    font-size: 0.7em;
  }
}
@layer modules {
  /* ハンバーガーメニュー構造・配置 */
  .hamburger {
    display: none;
    margin: auto 0;
    cursor: pointer;
    text-align: center;
    width: 9.2%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  @media screen and (max-width: 768px) {
    .hamburger {
      display: flex;
    }
  }
  nav.globalMenuSp {
    position: fixed;
    z-index: 15;
    top: 0;
    right: 0;
    background: black;
    transform: translateX(120%);
    transition: all 0.6s;
    width: 100%;
    height: 100vh;
    max-width: 450px;
    background-size: 100% auto, auto;
    background-position: top center;
  }
  nav.globalMenuSp ul {
    width: 88%;
    margin: 0 auto;
    padding: 6em 0 2em;
  }
  nav.globalMenuSp ul li a {
    color: #fff;
    padding: 0.7em 5% 0.7em 2em;
    font-size: 1.2em;
    width: 100%;
    position: relative;
  }
  nav.globalMenuSp ul li a:before {
    display: block;
    position: absolute;
    content: "";
    left: 0px;
    top: 50%;
    width: 1.2em;
    height: 1.2em;
    transform: translateY(-50%);
    background: url(../img/icon1.webp) center center/contain no-repeat;
  }
  nav.globalMenuSp .close_menu {
    width: 3em;
    height: 3em;
    top: 10px;
    right: 10px;
    position: absolute;
    cursor: pointer;
  }
  nav.globalMenuSp .close_menu:before, nav.globalMenuSp .close_menu:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 70%;
    background: #fff;
  }
  nav.globalMenuSp .close_menu:before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  nav.globalMenuSp .close_menu:after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  nav.globalMenuSp.active {
    transform: translateX(0%);
  }
}
@layer utilities {
  @media screen and (max-width: 768px) {
    .pc {
      display: none !important;
    }
  }
  .sp {
    display: none !important;
  }
  @media screen and (max-width: 768px) {
    .sp {
      display: block !important;
    }
  }
}