@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
/* ======================================
  Reset / Base
====================================== */
* {
  box-sizing: border-box;
}

html {
  font-size: 14px;
  line-height: 2.3571428571;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  word-wrap: break-word;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-weight: 400;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

a {
  background-color: transparent;
  text-decoration: none;
}
a:active {
  outline-width: 0;
}
a:hover {
  outline-width: 0;
  opacity: 0.8;
  transition: 0.3s;
}

img,
svg,
video {
  max-width: 100%;
  vertical-align: top;
}

img {
  border-style: none;
  height: auto;
}

/* ======================================
  Utility
====================================== */
.pc-only,
.pc {
  display: block;
}

.sp {
  display: none;
}

.italic {
  font-style: italic;
}

.orange {
  color: #f47836;
}

.font12 {
  font-size: 12px;
}

/* ======================================
  Header
====================================== */
#header {
  background-color: #fff !important;
  background-image: linear-gradient(to bottom, #ffffff 0%, #ffffff 100%) !important;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 80px;
  background-image: url(../images/header-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  transform: translateY(0);
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 14px 0;
}
.l-header__inner .logo {
  display: flex;
  align-self: center;
  position: relative;
  width: 88px;
  height: 52px;
}
.l-header__inner .logo__image {
  display: flex;
  width: 100%;
  height: 100%;
}
.l-header__inner .logo__main {
  display: block;
  width: 354px;
}
.l-header__inner .logo__japan {
  display: block;
  width: 44px;
  margin-top: 10px;
  margin-left: 10px;
}
.l-header__inner .logo__japan img {
  width: 99%;
}

/* Header title */
.l-header__title {
  display: flex;
  align-items: center;
}
.l-header__title dt {
  font-size: 11px;
  color: #000;
}
.l-header__title dd {
  max-width: 300px;
  margin-left: 25px;
}

/* ======================================
  Footer
====================================== */
footer {
  height: 128px;
  font-weight: 300;
  letter-spacing: 0.125em;
  font-feature-settings: "palt" 1;
}

/* ======================================
  Media Queries
====================================== */
@media (min-width: 768px) and (max-width: 1441px) {
  .l-header__inner {
    padding: 14px 0;
  }
}
@media (max-width: 750px) {
  .l-header__inner .logo__image {
    margin-top: 0;
  }
  .l-header {
    height: 40px;
    width: 100%;
    max-width: 100%;
  }
  .l-header__inner {
    padding: 4.5px 12px;
    width: 100%;
    max-width: 100%;
    height: 100%;
  }
  .l-header__title .logo__image {
    width: 57.5px;
  }
  .l-header__inner .logo {
    width: 50.7px;
    height: 30px;
  }
}
@media (max-width: 500px) {
  .pc-only {
    display: none;
  }
  .l-header {
    height: 40px;
  }
}/*# sourceMappingURL=style.css.map */