@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Noto+Sans+JP:wght@400;700&display=swap");
body {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: white;
  font-family: "MS PGothic", sans-serif;
}

h1,
h2,
h3,
h4,
p {
  font-family: "MS PGothic", sans-serif;
}

html {
  padding: 0;
  width: 100% !important;
  margin: 0 !important;
  height: 100% !important;
}

html::-webkit-scrollbar {
  display: none;
}

style {
  margin: 0 !important;
}

a {
  display: block !important;
  text-decoration: none !important;
}

img {
  display: block;
  width: 100%;
}

* {
  background-repeat: no-repeat;
  box-sizing: border-box;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

ul {
  padding-left: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

input,
textarea {
  border: 0;
}

/**********************************
header
***********************************/
.h-space {
  height: 80px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  width: 100%;
  height: 80px;
  background: linear-gradient(90deg, #edf0f3, #e7e7e8);
  color: #161616;
  font-family: "Inter", "Noto Sans JP", sans-serif;
}
.site-header, .site-header * {
  box-sizing: border-box;
}
.site-header a:focus-visible,
.site-header button:focus-visible {
  outline: 2px solid #003a6b;
  outline-offset: 2px;
}
.site-header__logo {
  flex-shrink: 0;
  width: clamp(240px, 18.75vw, 360px);
}
.site-header__nav {
  align-self: stretch;
  margin-left: auto;
  margin-right: clamp(24px, 12.3vw, 236px);
}
.site-header__list, .site-header__sub {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-header__list {
  display: flex;
  gap: clamp(32px, 5.42vw, 104px);
  height: 100%;
}
.site-header__link {
  position: relative;
  display: flex !important;
  align-items: center;
  height: 100%;
  font: inherit;
  font-size: clamp(16px, 1.04vw, 20px);
  color: #161616;
  white-space: nowrap;
}
.site-header__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #eddc3e;
  opacity: 0;
}
.site-header__item:hover > .site-header__link, .site-header__item.is-current > .site-header__link, .site-header__item.is-open > .site-header__link {
  color: #003a6b;
}
.site-header__item:hover > .site-header__link::after, .site-header__item.is-current > .site-header__link::after, .site-header__item.is-open > .site-header__link::after {
  opacity: 1;
}
.site-header__sub {
  position: absolute;
  top: 100%;
  right: 0;
  display: none;
  padding: 34px 48px 33px 76px;
  background: #e8e9eb;
}
.site-header__item--sub:hover .site-header__sub, .site-header__item--sub.is-open .site-header__sub {
  display: block;
}
.site-header__sub-item a {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  color: #161616;
  white-space: nowrap;
}
.site-header__sub-item a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -21px;
  width: 3px;
  height: 12px;
  background: #eddc3e;
  transform: translateY(-50%);
  opacity: 0;
}
.site-header__sub-item:hover a::before, .site-header__sub-item.is-current a::before {
  opacity: 1;
}

/**********************************
body
***********************************/
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate(0, 100%);
    width: 100%;
  }
  100% {
    opacity: 1;
    width: 100%;
    transform: translate(0);
  }
}
/**************************************
footer
***************************************/
.site-footer {
  margin-top: 10%;
  color: #000;
  font-family: "Inter", "Noto Sans JP", sans-serif;
}
.site-footer, .site-footer * {
  box-sizing: border-box;
}
.site-footer a {
  color: inherit;
}
.site-footer__main {
  display: grid;
  grid-template-columns: auto auto 1fr;
  grid-template-areas: "logo address nav" "sns address nav";
  align-items: start;
  -moz-column-gap: clamp(24px, 3.75vw, 72px);
       column-gap: clamp(24px, 3.75vw, 72px);
  padding: 86px clamp(24px, 4.1vw, 79px) 41px clamp(24px, 4.27vw, 82px);
  background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url("../../src/home/foot-bg.webp");
  background-position: center;
  background-size: cover;
}
.site-footer__logo {
  grid-area: logo;
  width: clamp(240px, 18.75vw, 360px);
  margin-top: 4px;
}
.site-footer__address {
  grid-area: address;
  font-size: clamp(16px, 1.04vw, 20px);
  font-style: normal;
  line-height: 1.15;
}
.site-footer__address-block {
  display: block;
}
.site-footer__address-block + .site-footer__address-block {
  margin-top: 1.15em;
}
.site-footer__nav {
  grid-area: nav;
  justify-self: end;
}
.site-footer__list, .site-footer__info-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer__list {
  display: flex;
  gap: clamp(32px, 5.42vw, 104px);
  font-size: clamp(16px, 1.04vw, 20px);
  line-height: 1.15;
  white-space: nowrap;
}
.site-footer__item a {
  position: relative;
}
.site-footer__item a::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -5px;
  left: -10px;
  height: 1px;
  background: #eddc3e;
  opacity: 0;
}
.site-footer__item:hover a::after, .site-footer__item.is-current a::after {
  opacity: 1;
}
.site-footer__sns {
  grid-area: sns;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 65px;
  margin-left: 20px;
}
.site-footer__sns-link--x {
  width: 40px;
}
.site-footer__sns-link--instagram {
  width: 42px;
}
.site-footer__sns-link--youtube {
  width: 52px;
}
.site-footer__info {
  border-top: 1px solid #eddc3e;
  background: #fff;
}
.site-footer__info-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px clamp(24px, 4.32vw, 83px);
  min-height: 79px;
  padding: 12px 24px;
  font-size: clamp(13px, 0.73vw, 14px);
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media (max-width: 1200px) {
  .h-space {
    height: 52px;
  }
  .site-header {
    height: 52px;
  }
  .site-header__logo {
    width: 142px;
    margin-left: 8px;
  }
  .site-header__nav {
    display: none;
  }
  .site-footer__main {
    grid-template-columns: auto auto;
    grid-template-areas: "nav nav" "logo address" "sns sns";
    justify-content: center;
    -moz-column-gap: 32px;
         column-gap: 32px;
    padding: 28px 20px 18px;
  }
  .site-footer__logo {
    width: 142px;
    margin-top: 1px;
  }
  .site-footer__address {
    font-size: 10px;
    line-height: 12px;
  }
  .site-footer__address-block + .site-footer__address-block {
    margin-top: 6px;
  }
  .site-footer__nav {
    justify-self: center;
    margin-bottom: 39px;
  }
  .site-footer__list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 24px;
    font-size: 11px;
    line-height: 16px;
  }
  .site-footer__item a::after {
    right: -4px;
    bottom: -6px;
    left: -4px;
  }
  .site-footer__sns {
    justify-self: center;
    gap: 15px;
    margin-top: 16px;
    margin-left: 0;
  }
  .site-footer__sns-link--x {
    width: 21px;
  }
  .site-footer__sns-link--instagram {
    width: 22px;
  }
  .site-footer__sns-link--youtube {
    width: 27px;
  }
  .site-footer__info-list {
    flex-direction: column;
    gap: 0;
    min-height: 0;
    padding: 23px 20px 21px;
    font-size: 10px;
    line-height: 20px;
    text-align: center;
  }
}
@media (max-width: 700px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .site-footer__main {
    grid-template-columns: auto auto 1fr;
    grid-template-areas: "nav nav nav" "logo address ." "sns sns sns";
    justify-content: normal;
  }
}

/*# sourceMappingURL=index.css.map */