@charset "UTF-8";
/* ---------------------------------
  Reset CSS
--------------------------------- */
*, ::before, ::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, p, a {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  text-decoration: none;
}

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

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

button {
  cursor: pointer;
  text-align: inherit;
}

img, svg, video, canvas, picture {
  display: block;
  max-width: 100%;
  height: auto;
}

fieldset {
  margin: 0;
  padding: 0.35em 0.625em 0.75em;
  border: 1px solid #a0a0a0;
}
fieldset legend {
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}
.header--faded {
  opacity: 0;
  pointer-events: none;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 20px;
}
.header__logo a {
  display: inline-block;
}
.header__logo-img {
  max-width: 160px;
  height: auto;
}

.global-nav--pc {
  display: none;
}

.menu-toggle {
  position: relative;
  width: 30px;
  height: 25px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1010;
}
.menu-toggle__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #111;
  transition: all 0.3s ease-in-out;
}
.menu-toggle__bar--top {
  top: 0;
}
.menu-toggle__bar--middle {
  top: 11px;
}
.menu-toggle__bar--bottom {
  top: 22px;
}
.menu-toggle--active .menu-toggle__bar--top {
  transform: translateY(11px) rotate(45deg);
}
.menu-toggle--active .menu-toggle__bar--middle {
  opacity: 0;
}
.menu-toggle--active .menu-toggle__bar--bottom {
  transform: translateY(-11px) rotate(-45deg);
}

.global-nav--sp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: none;
  z-index: 1005;
  transform: translateX(-100%);
  transition: transform 0.3s ease-out;
  padding-top: 80px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.global-nav--sp--open {
  display: flex;
  transform: translateX(0);
}
.global-nav--sp ul {
  padding: 0 40px;
}
.global-nav--sp li {
  border-bottom: 1px solid #eee;
}
.global-nav--sp__item-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  font-size: 1rem;
  text-align: left;
  color: #333;
  transition: background-color 0.2s;
}
.global-nav--sp__item-link:hover {
  background-color: #f5f5f5;
}
.global-nav--sp__item-link::after {
  content: "";
  display: block;
  width: 8px;
  height: 14px;
  background-image: url(../img/common/n-icon_02.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.global-nav--sp__contact-wrapper {
  padding: 0 40px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 50px;
  padding-bottom: 40px;
}
.global-nav--sp__contact-button {
  display: inline-block;
  background-color: #05c1ea;
  color: white;
  padding: 12px 24px;
  border-radius: 9999px;
  font-size: 1.2rem;
  font-weight: normal;
  width: 100%;
  max-width: 300px;
  transition: background-color 0.2s;
}
.global-nav--sp__contact-button:hover {
  background-color: #05c1ea;
}

.footer {
  background-color: #eee;
}
.footer__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 44px 20px;
}
.footer__logo-img {
  max-width: 60px;
}

.global-footer--nav__list {
  padding: 22px 0 0;
}
.global-footer--nav__item {
  margin-bottom: 0.6rem;
}
.global-footer--nav__item--bottom {
  margin-bottom: 0.6rem;
}
.global-footer--nav__item-link {
  font-size: 13px;
  font-weight: 500;
  color: #333;
}

.footer-icons {
  display: flex;
  flex-direction: row-reverse;
  margin-bottom: 22px;
}
.footer-icons__item-img {
  max-width: 70px;
}
.footer-icons__item:last-child {
  margin-right: 1rem;
}

.cta {
  background-color: #1e293b;
  margin-top: 88px;
}
.cta__inner {
  max-width: 1320px;
  text-align: center;
  margin: 0 auto;
  padding: 30px 20px 36px;
}
.cta__item {
  color: #fff;
}
.cta__item--heading {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-shadow: 0 0 12px rgba(34, 211, 238, 0.6);
}
.cta__item--text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-shadow: 0 0 12px rgba(34, 211, 238, 0.6);
}
.cta__item--link {
  font-weight: 700;
  margin-top: 20px;
}
.cta__item--link a {
  display: block;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.5), 0 0 25px rgba(34, 211, 238, 0.3), inset 0 0 10px rgba(34, 211, 238, 0.4);
  border-radius: 4px;
  font-size: 1rem;
  color: #00b5de;
}
.cta__item--contact {
  width: 60%;
  margin: 0 auto;
  padding: 0.5rem;
}
.cta__item--tel {
  width: 60%;
  margin: 20px auto 0;
  padding: 0.5rem;
}

.copyright {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid #111;
  padding: 0.8rem 0 0;
}
.copyright__logo-img {
  display: block;
  max-width: 160px;
}
.copyright p {
  font-size: 11px;
  color: #333;
  margin: 0.4rem 0 0 0;
}

/* スクロールアニメーションの初期状態（透過して下に配置） */
.js-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 表示準備が整った際の状態（不透明にして元の位置へ） */
.js-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-content-wrapper {
  padding-top: 78px;
}

@media (min-width: 1040px) {
  .page-content-wrapper {
    padding-top: 94px;
  }
  .menu-toggle,
  .global-nav--sp {
    display: none !important;
  }
  .header__inner {
    padding: 22px 20px;
  }
  .global-nav--pc {
    display: block;
  }
  .global-nav--pc__list {
    display: flex;
    align-items: center;
  }
  .global-nav--pc__item-link:not(.global-nav--pc__link--contact) {
    position: relative;
    padding: 10px 15px;
    font-size: 0.95rem;
    font-weight: bold;
    color: #333;
    border-radius: 4px;
    transition: color 0.3s;
  }
  .global-nav--pc__item-link:not(.global-nav--pc__link--contact):hover {
    color: #05c1ea;
    background-color: transparent;
  }
  .global-nav--pc__item-link:not(.global-nav--pc__link--contact):hover::after {
    width: calc(100% - 30px);
  }
  .global-nav--pc__item-link:not(.global-nav--pc__link--contact)::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #05c1ea;
    transform: translateX(-50%);
    transition: width 0.3s ease-in-out;
  }
  .global-nav--pc__item--contact {
    margin-left: 10px;
  }
  .global-nav--pc__item--contact .global-nav--pc__link {
    padding: 11px 22px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    background-color: #05c1ea;
    border-radius: 9999px;
  }
  .global-nav--pc__item--contact .global-nav--pc__link:hover {
    background-color: #217c95;
  }
  .footer__inner {
    padding: 88px 20px;
  }
  .footer__logo-img {
    max-width: 80px;
  }
  .global-footer--nav__list {
    padding: 33px 0 0;
  }
  .global-footer--nav__item {
    margin-bottom: 1rem;
  }
  .global-footer--nav__item--bottom {
    margin-bottom: 0;
  }
  .global-footer--nav__item-link {
    font-size: 1rem;
  }
  .footer-icons {
    margin-bottom: 44px;
  }
  .footer-icons__item-img {
    max-width: 90px;
  }
  .cta {
    margin-top: 132px;
  }
  .cta__inner {
    padding: 60px 20px 66px;
  }
  .cta__item--heading {
    font-size: 1.25rem;
  }
  .cta__item--text {
    font-size: 1rem;
  }
  .cta__item--link {
    margin-top: 40px;
  }
  .cta__item--contact {
    width: 40%;
  }
  .cta__item--tel {
    width: 40%;
    margin: 30px auto 0;
  }
  .copyright {
    flex-direction: row;
    padding: 1rem 0 0;
  }
  .copyright__logo-img {
    max-width: 220px;
  }
  .copyright p {
    font-size: 13px;
    margin: 0 0 0 0.6rem;
  }
}
@media (min-width: 1120px) {
  .page-content-wrapper {
    padding-top: 117px;
  }
  .header__logo-img {
    max-width: 240px;
  }
}/*# sourceMappingURL=main.css.map */