@charset "UTF-8";
/* ==========================================================================
   Reset - Destyle.css をベースにしたリセット設定
   ========================================================================== */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img,
embed,
object,
video {
  vertical-align: middle;
  max-width: 100%;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  padding: 0;
  border-radius: 0;
  color: inherit;
  background-color: transparent;
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

textarea {
  overflow: auto;
  resize: vertical;
}

table {
  text-align: left;
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  vertical-align: inherit;
  text-align: inherit;
}

canvas {
  display: inline-block;
}

[hidden] {
  display: none;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #333;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

.l-header {
  width: 100%;
  background-color: #fff;
}
.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 4%;
}
.l-header__logo {
  width: 240px;
}
.l-header__logo img {
  width: 100%;
  height: auto;
  display: block;
}
.l-header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.l-header__nav a {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a3a3a;
  letter-spacing: 0.05em;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.l-header__nav a:hover {
  color: #007bff;
}

.p-home-maintenance {
  width: 100%;
  line-height: 0;
}
.p-home-maintenance img {
  width: 100%;
  height: auto;
  display: block;
}

.l-main {
  padding: 0;
  margin: 0;
}

.c-hamburger {
  position: relative;
  width: 44px;
  height: 44px;
  z-index: 1000;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .c-hamburger {
    display: none;
  }
}
.c-hamburger__line {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 1px;
  background-color: #1a3a3a;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.c-hamburger__line::before, .c-hamburger__line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: inherit;
  -webkit-transition: inherit;
  transition: inherit;
}
.c-hamburger__line::before {
  top: -8px;
}
.c-hamburger__line::after {
  top: 8px;
}
.c-hamburger.is-active .c-hamburger__line {
  background-color: transparent;
}
.c-hamburger.is-active .c-hamburger__line::before {
  -webkit-transform: translateY(8px) rotate(45deg);
          transform: translateY(8px) rotate(45deg);
  background-color: #fff;
}
.c-hamburger.is-active .c-hamburger__line::after {
  -webkit-transform: translateY(-8px) rotate(-45deg);
          transform: translateY(-8px) rotate(-45deg);
  background-color: #fff;
}

.p-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(26, 58, 58, 0.95);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-drawer.is-open {
  opacity: 1;
  visibility: visible;
}
.p-drawer__nav ul {
  text-align: center;
}
.p-drawer__nav li {
  margin-bottom: 30px;
  overflow: hidden;
}
.p-drawer__nav a {
  color: #fff;
  display: block;
  text-decoration: none;
}
.p-drawer__nav a .u-en {
  display: block;
  font-size: 2rem;
  font-family: serif;
  letter-spacing: 0.1em;
}
.p-drawer__nav a .u-ja {
  display: block;
  font-size: 0.75rem;
  margin-top: 5px;
  opacity: 0.6;
}/*# sourceMappingURL=style.css.map */