@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
html {
  background: #fff;
}
html.is-open {
  overflow: hidden;
}

body.no-scroll {
  overflow: hidden;
}
body.is-fixed {
  overflow: hidden;
}

a {
  color: #000;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
div,
dl,
dt,
dd,
p {
  padding: 0;
  margin: 0;
}

ul,
ol,
li {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

img {
  vertical-align: bottom;
}

t- figure {
  padding: 0;
  margin: 0;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}

input[type=number] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}

.l-main {
  line-height: 1.7;
}

svg,
img {
  max-width: 100%;
}

@media (--mobile) {
  html,
  body {
    width: 100%;
    height: 100%;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  div,
  dl,
  dt,
  dd,
  p {
    padding: 0;
    margin: 0;
  }
  img {
    max-width: 100%;
    max-height: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) {
  [href*="tel:"] {
    pointer-events: none;
  }
  .sp {
    display: none !important;
  }
}
.l-main {
  height: 2000px;
}

.c-header {
  width: 100%;
  height: 90px;
  max-width: 1400px;
  padding: 0 20px;
  background: #FFF;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  font-family: "Noto Sans JP", sans-serif;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .c-header {
    max-width: inherit;
    padding: 0 20px;
    height: 64px;
  }
}
.c-header__logo {
  width: 240px;
  display: block;
}
@media screen and (max-width: 1024px) {
  .c-header__logo {
    width: 170px;
  }
}
.c-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-header-menu {
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .c-header-menu {
    position: fixed;
    width: 100%;
    left: 0;
    top: 90px;
    padding: 0 35px;
    opacity: 0;
    transform: translateX(100%);
    transition: 0.3s all;
  }
  .is-open .c-header-menu {
    opacity: 1;
    transform: translateX(0);
  }
}
.c-header-menu__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (min-width: 1025px) {
  .c-header-menu__nav {
    height: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .c-header-menu__nav {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .c-header-menu__nav > li {
    position: relative;
    height: 100%;
  }
}
.c-header-menu__nav > li > a, .c-header-menu__nav > li > span {
  color: #000;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0;
}
@media screen and (min-width: 1025px) {
  .c-header-menu__nav > li > a, .c-header-menu__nav > li > span {
    cursor: pointer;
    display: flex;
    align-items: center;
    -moz-column-gap: 6px;
         column-gap: 6px;
    height: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .c-header-menu__nav > li > a svg, .c-header-menu__nav > li > span svg {
    display: none;
  }
}
.c-header-menu__nav > li > a a, .c-header-menu__nav > li > span a {
  color: #000;
}
.c-header-menu__nav > li > a {
  position: relative;
  transition: 0.3s all;
}
@media screen and (min-width: 1025px) {
  .c-header-menu__nav > li > a:hover {
    color: #013E98;
  }
  .c-header-menu__nav > li > a:hover:before {
    opacity: 1;
  }
}
.c-header-menu__nav > li > a::before {
  content: "";
  width: 100%;
  height: 3px;
  background: #013E98;
  position: absolute;
  left: 0;
  bottom: 3px;
  transition: 0.3s all;
  opacity: 0;
}
.c-header-menu__mega {
  display: flex;
  flex-direction: column;
  row-gap: 7px;
}
@media screen and (min-width: 1025px) {
  .c-header-menu__mega {
    position: absolute;
    top: 100%;
    left: 0;
    background: #013E98;
    padding: 15px 10px;
    min-width: 160px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: 0.3s all;
    box-shadow: 0px 3px 5px 0px rgba(1, 62, 152, 0.4);
  }
}
@media screen and (max-width: 1024px) {
  .c-header-menu__mega {
    margin-top: 10px;
    padding-left: 10px;
  }
}
.c-header-menu__mega.is-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.c-header-menu__mega li a {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .c-header-menu__mega li a {
    position: relative;
    font-size: 15px;
    color: #9C9C9C;
    padding-left: 22px;
  }
  .c-header-menu__mega li a::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 1px;
    background: #9C9C9C;
    left: 0;
    top: 10px;
  }
}
.c-header-menu__subnav {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 18px;
       column-gap: 18px;
  row-gap: 20px;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  .c-header-menu__subnav {
    display: none;
  }
}
.c-header-menu__subnav .c-sublink {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background: #013E98;
  font-size: 16px;
  color: #FFF;
  font-weight: 500;
}
.c-header-menu__subnav .c-subnav {
  font-size: 14px;
  color: #9C9C9C;
}
.c-header-menu__subnav > li {
  width: 100%;
}
.c-header-menu__subnav > li:last-child {
  grid-column: span 2;
  text-align: center;
}
.c-header-drawer {
  position: fixed;
  width: 30px;
  height: 30px;
  right: 20px;
}
@media screen and (min-width: 1025px) {
  .c-header-drawer {
    display: none;
  }
}
.c-header-drawer > span {
  width: 100%;
  position: absolute;
  height: 1.5px;
  background: #013E98;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s all;
}
.c-header-drawer > span:first-of-type {
  transform: translate(-50%, -50%) translateY(-10px);
}
.c-header-drawer > span:last-of-type {
  transform: translate(-50%, -50%) translateY(10px);
}
.is-open .c-header-drawer > span:first-of-type {
  transform: translate(-50%, -50%) rotate(35deg);
}
.is-open .c-header-drawer > span:nth-of-type(2) {
  opacity: 0;
}
.is-open .c-header-drawer > span:last-of-type {
  transform: translate(-50%, -50%) rotate(-35deg);
}

@media screen and (min-width: 1025px) {
  .c-header-bg {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .c-header-bg {
    display: block;
    width: 100%;
    height: 100dvh;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    transition: 0.3s all;
  }
  .is-open .c-header-bg {
    opacity: 1;
  }
}

.c-footer {
  background: #FFF;
  width: 100%;
  padding: 50px 0 0 0;
}
.c-footer-top {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .c-footer-top {
    max-width: inherit;
    flex-direction: column;
    row-gap: 45px;
  }
}
.c-footer-top__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
}
@media screen and (max-width: 1024px) {
  .c-footer-top__left {
    row-gap: 20px;
  }
}
.c-footer-top__left > ul {
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.c-footer-top__logo {
  display: block;
  width: 240px;
}
@media screen and (max-width: 1024px) {
  .c-footer-top__logo {
    width: 200px;
  }
}
.c-footer-top__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-footer-top__nav {
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media screen and (max-width: 1024px) {
  .c-footer-top__nav {
    display: grid;
    grid-template-columns: max-content max-content;
    justify-content: center;
    -moz-column-gap: 40px;
         column-gap: 40px;
    row-gap: 20px;
  }
}
.c-footer-top__nav > ul {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
@media screen and (max-width: 1024px) {
  .c-footer-top__nav > ul:nth-child(n+3) {
    padding-top: 20px;
    border-top: 1px solid #9C9C9C;
    grid-column: span 2;
  }
}
.c-footer-top__nav > ul li a {
  font-size: 15px;
  font-weight: 400;
  color: #000;
}
.c-footer-bottom {
  max-width: 1400px;
  margin: 50px auto 0 auto;
  border-top: 1px solid #9C9C9C;
  padding: 15px 0;
  text-align: center;
  color: #9C9C9C;
  font-size: 12px;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .c-footer-bottom {
    max-width: inherit;
    margin: 0 auto;
    border-top: none;
    padding: 40px 0 15px 0;
  }
}/*# sourceMappingURL=common-renew.css.map */