@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: 0em;
    scroll-behavior: smooth;
    min-width: 320px;
  }
  :where(html:has(dialog:modal[open])) {
    overflow: clip;
  }
  :where(body) {
    line-height: inherit;
    font-family: var(--font-jp);
    -webkit-font-smoothing: antialiased;
    font-size: clamp(var(--font-size-min), var(--font-size-mid), var(--font-size-max));
    color: #000000;
    background-color: #fff;
    font-optical-sizing: auto;
  }
  :where(body).active {
    height: 100%;
    overflow: hidden;
  }
  :where(section) {
    position: relative;
    overflow-x: hidden;
  }
  :where(input, button, textarea, select) {
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    word-spacing: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    background-color: #fff;
  }
  :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: 0vh;
  }
  :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-en: "Roboto Condensed", sans-serif;
    /* レイアウト */
    --font-base: 16px;
    --container-width: 1000px;
    --container-width-p: 92%;
    --section-padding: 2em 0;
    /* 色 */
    --color1: #ecf1f7;
    --color2: #222;
    /* フォントサイズclamp */
    --font-size-min: 9px;
    --font-size-mid: calc(var(--font-base) / var(--container-width) * 100vw);
    --font-size-max: 16px;
  }
  @media screen and (max-width: 768px) {
    :root {
      --font-size-mid: calc((var(--font-base) / var(--container-width) * 100vw) * 1.55);
    }
  }
}
@layer layouts {
  :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;
  }
  h2 {
    font-family: var(--font-en);
    font-weight: 900;
    color: #00a365;
    font-size: 2.4em;
    letter-spacing: 0.15em;
    padding: 0 0 0.8em;
  }
  .kvbg {
    background: url("../img/kv.webp") no-repeat center/cover;
    aspect-ratio: 1800/963;
    max-width: 1920px;
    margin-inline: auto;
  }
  header {
    width: 100%;
  }
  header a.logo {
    display: block;
    margin-inline: auto;
    padding: 2.6% 0 3%;
  }
  header a.logo img {
    width: 15%;
    max-width: 220px;
    display: block;
    margin-inline: auto;
  }
  @media screen and (max-width: 768px) {
    header a.logo {
      padding: 3% 0 0;
    }
    header a.logo img {
      width: 31%;
    }
  }
  header .nav_pc {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  @media screen and (max-width: 768px) {
    header .nav_pc {
      display: none;
    }
  }
  header .nav_pc a {
    padding: 0.5em 2em;
    text-align: center;
    color: #00a365;
    font-family: var(--font-en);
    font-weight: 900;
    letter-spacing: 0.02em;
    font-size: 1.3em;
    letter-spacing: 0.1em;
  }
  #service {
    background-color: rgba(0, 163, 101, 0.2);
    padding: 3.2em 0;
  }
  @media screen and (max-width: 768px) {
    #service {
      padding: 2.3em 0 2.7em;
    }
  }
  #service nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  #service nav a {
    width: 18%;
  }
  @media screen and (max-width: 768px) {
    #service nav {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3%;
    }
    #service nav a {
      width: 100%;
    }
  }
  #about {
    padding: 3.2em 0;
  }
  @media screen and (max-width: 768px) {
    #about {
      padding: 2.3em 0 2.7em;
    }
  }
  #about .box {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #about .box + .box {
    margin-top: 2em;
  }
  #about .box .txt {
    width: 46%;
    padding-left: 5%;
  }
  @media screen and (max-width: 768px) {
    #about .box .txt {
      width: 48%;
      padding-left: 0;
    }
  }
  #about .box figure {
    width: 48%;
  }
  #about .box h3 {
    font-weight: 900;
    font-size: 1.7em;
    margin-bottom: 0.5em;
  }
  @media screen and (max-width: 768px) {
    #about .box h3 {
      font-size: 1.6em;
    }
  }
  #about .box p {
    font-size: 1.3em;
    font-weight: 600;
  }
  @media screen and (max-width: 768px) {
    #about .box p {
      font-size: 1.2em;
    }
  }
  .bg {
    background-color: rgba(0, 163, 101, 0.2);
  }
  #company {
    padding: 3.2em 0;
  }
  @media screen and (max-width: 768px) {
    #company {
      padding: 2.3em 0 2.7em;
    }
  }
  #company table {
    width: 80%;
    margin-inline: auto;
  }
  #company table th,
  #company table td {
    font-weight: 600;
    font-size: 1.3em;
    padding: 0.4em 0;
  }
  @media screen and (max-width: 768px) {
    #company table th,
    #company table td {
      padding: 0.4em 0;
    }
  }
  #company table th {
    text-align: justify;
    -moz-text-align-last: justify;
         text-align-last: justify;
    width: 5.8em;
    vertical-align: top;
  }
  #company table td {
    padding-left: 1.5em;
    letter-spacing: 0.04em;
  }
  @media screen and (max-width: 768px) {
    #company table td {
      letter-spacing: 0.02em;
    }
  }
  @media screen and (max-width: 768px) {
    #company table {
      width: 100%;
    }
  }
  #access {
    padding: 3.2em 0;
  }
  @media screen and (max-width: 768px) {
    #access {
      padding: 2.3em 0 2.7em;
    }
  }
  #access .map {
    width: 80%;
    margin-inline: auto;
  }
  #access .map iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 77/35;
  }
  @media screen and (max-width: 768px) {
    #access .map iframe {
      aspect-ratio: 3/2;
    }
  }
  @media screen and (max-width: 768px) {
    #access .map {
      width: 100%;
    }
  }
  #contact {
    padding: 3.2em 0;
  }
  @media screen and (max-width: 768px) {
    #contact {
      padding: 2.3em 0 2.7em;
    }
  }
  #contact .box {
    width: 80%;
    margin-inline: auto;
  }
  @media screen and (max-width: 768px) {
    #contact .box {
      width: 100%;
    }
  }
  #contact .form-group + .form-group {
    margin-top: 1.5em;
  }
  #contact h3 {
    text-align: center;
    margin-bottom: 3em;
    font-size: 1.4em;
  }
  @media screen and (max-width: 768px) {
    #contact h3 {
      margin: 3em auto 1.5em;
      font-size: 1.7em;
    }
  }
  #contact input,
  #contact textarea {
    border: 1px solid #000;
    padding: 0.4em 0.8em;
    font-size: 1.2em;
    display: block;
    width: 100%;
  }
  @media screen and (max-width: 768px) {
    #contact input,
    #contact textarea {
      padding: 0.8em;
    }
  }
  #contact textarea {
    height: 12em;
  }
  #contact p.info {
    text-align: center;
    font-size: 0.9em;
    font-weight: 500;
  }
  @media screen and (max-width: 768px) {
    #contact p.info {
      font-size: 1.1em;
    }
  }
  #contact label {
    display: block;
    padding-bottom: 0.4em;
    font-weight: 600;
    font-size: 1.2em;
  }
  @media screen and (max-width: 768px) {
    #contact label {
      font-size: 1.4em;
    }
  }
  #contact label span {
    color: #e60012;
  }
  #contact a.sub, #contact input[type=submit], #contact input[type=button] {
    display: block;
    margin: 2em auto 2em;
    background-color: #00a365;
    color: #fff;
    text-align: center;
    font-size: 1.3em;
    letter-spacing: 0.04em;
    max-width: 11em;
    font-weight: 600;
    border: 0px;
    padding: 0.7em;
  }
  @media screen and (max-width: 768px) {
    #contact a.sub, #contact input[type=submit], #contact input[type=button] {
      font-size: 1.6em;
      letter-spacing: 0.08em;
    }
  }
  #contact input[type=button] {
    background-color: #5f5f5f;
  }
  footer {
    background-color: rgba(0, 163, 101, 0.4);
    text-align: center;
    padding: 1.6em 0;
  }
}
@layer modules {
  /* ハンバーガーメニュー構造・配置 */
  .hamburger {
    display: none;
  }
  @media screen and (max-width: 768px) {
    .hamburger {
      display: flex;
    }
  }
  .hamburger {
    margin: auto 0;
    cursor: pointer;
    text-align: center;
    width: 9.2%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 4em;
    height: 4em;
    transform: translate(50%, -50%);
    top: calc(2em + 2vw);
    right: calc(2em + 2vw);
    z-index: 20;
  }
  nav.globalMenuSp {
    position: fixed;
    z-index: 25;
    top: 0;
    right: 0;
    background: white;
    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 .logo-menu {
    width: 35%;
    margin: 16% auto 0;
    display: block;
  }
  nav.globalMenuSp ul {
    padding: 6em 0 2em;
    margin-inline: auto;
    width: 18em;
  }
  nav.globalMenuSp ul li a {
    line-height: 1;
    font-family: var(--font-en);
    font-size: 1.3em;
    border-bottom: 1px dotted #00a365;
    color: #00a365;
    padding: 1em;
    font-size: 1.6em;
    letter-spacing: 0.2em;
    font-weight: 900;
    width: 100%;
    text-align: center;
  }
  nav.globalMenuSp .close_menu {
    width: 3em;
    height: 3em;
    transform: translate(50%, -50%);
    top: calc(2em + 2vw);
    right: calc(2em + 2vw);
    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: #00a365;
  }
  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%);
  }
  .mail_box p {
    text-align: center;
  }
  .formTable {
    width: 80%;
    margin: 2em auto;
  }
  .formTable th,
  .formTable td {
    font-weight: 600;
    font-size: 1.1em;
    padding: 0.4em 0;
  }
  @media screen and (max-width: 768px) {
    .formTable th,
    .formTable td {
      padding: 0.4em 0;
    }
  }
  .formTable th {
    text-align: justify;
    -moz-text-align-last: justify;
         text-align-last: justify;
    width: 8em;
    vertical-align: top;
  }
  .formTable td {
    padding-left: 1.5em;
    letter-spacing: 0.04em;
  }
  @media screen and (max-width: 768px) {
    .formTable td {
      letter-spacing: 0.02em;
    }
  }
  @media screen and (max-width: 768px) {
    .formTable {
      width: 100%;
    }
  }
}
@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;
    }
  }
}