@charset "UTF-8";
html {
  font-size: clamp(5px, 1vw, 10px);
}
@media (max-width: 500px) {
  html {
    font-size: clamp(0px, 2vw, 10px);
  }
}

body {
  font-family: "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-feature-settings: "palt";
  line-height: 1.7;
  letter-spacing: 0.2em;
  background: #0C3572;
}

p {
  margin-top: -7px;
  font-size: 16px;
  color: #666;
}

#header,
#menu,
#navi,
#main,
#footer {
  margin: 0 auto;
  max-width: 1000px;
}

#headerWrapper {
  background: #0C3572;
}

#header {
  position: relative;
  padding: 1.2rem;
  text-align: center;
  color: white;
}
@media (max-width: 500px) {
  #header {
    text-align: left;
  }
}
#header .Copy {
  font-size: 1.4rem;
  letter-spacing: 0.4em;
}
@media (max-width: 500px) {
  #header .Copy {
    margin-bottom: 0.4rem;
    font-size: 1.2rem;
  }
}
#header .Logo {
  width: 50%;
}
@media (max-width: 500px) {
  #header .Logo {
    width: 60%;
  }
}
#header .BtnMenu {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 4rem;
  cursor: pointer;
}

#menu {
  padding-right: calc((100vw - 1000px) / 2);
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  background: #0C3572;
  transition: 0.3s;
  z-index: 2001;
}
#menu.active {
  right: 0;
}
#menu .Box {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 16px;
  padding: 24px;
  height: 100%;
  text-align: right;
  line-height: 2.4;
}
#menu .Box .Upper {
  text-align: left;
}
#menu .Box .Upper .Logo {
  margin-bottom: 6px;
  width: 180px;
}
#menu .Box .Upper address {
  font-size: 0.7em;
  line-height: 1.7;
  text-align: right;
}
#menu .Box .Primary .Icon, #menu .Box .Secondary .Icon {
  display: inline;
  margin-right: 6px;
  margin-bottom: 2px;
  width: 16px;
  vertical-align: middle;
}
#menu .Box .Other {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 0.8em;
}

#overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000;
  opacity: 0.8;
  z-index: 2000;
}
#overlay.active {
  display: block;
}

#naviWrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-top: 1px solid white;
  background: #333;
}

#navi {
  display: flex;
  align-items: center;
  color: white;
}
#navi a {
  display: block;
  padding: 12px 0;
  width: 20%;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.2em;
}
#navi a.Active {
  background: #0C3572;
}
@media (max-width: 500px) {
  #navi a {
    padding: 1.5rem 0;
    font-size: 1.5rem;
  }
  #navi a:nth-child(1) {
    width: 12%;
  }
  #navi a:nth-child(2) {
    width: 20%;
  }
  #navi a:nth-child(3) {
    width: 20%;
  }
  #navi a:nth-child(4) {
    width: 36%;
  }
  #navi a:nth-child(5) {
    width: 12%;
  }
}
#navi a .Icon {
  display: none;
  vertical-align: middle;
}
@media (max-width: 500px) {
  #navi a .Icon {
    display: inline;
    width: 2rem;
  }
}
@media (max-width: 500px) {
  #navi a .Omit {
    display: none;
  }
}

#mainWrapper {
  background: #f3f3f3;
}

#main {
  padding-bottom: 4.8rem;
  background: white;
}

#contents {
  display: flex;
  flex-direction: column;
  gap: 9.6rem;
  padding: 0 3.6rem;
}
@media (max-width: 500px) {
  #contents {
    padding: 0 1.2rem;
  }
}

#footerWrapper {
  background: #0C3572;
}
@media (max-width: 500px) {
  #footerWrapper {
    display: none;
  }
}

#footer {
  padding: clamp(12px, 2.4vw, 24px);
  color: white;
}
#footer .Top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.6rem;
  padding-bottom: 3.6rem;
  border-bottom: 1px solid #ccc;
}
#footer .Top .Left {
  width: 36%;
}
#footer .Top .Left .Copy {
  margin-bottom: 0.6rem;
  width: 100%;
  font-size: 1.3rem;
  text-align: center;
  letter-spacing: 0.4em;
}
#footer .Top .Right {
  display: flex;
  gap: 3rem;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.2em;
}
#footer .Top .Right .Link li {
  cursor: pointer;
}
#footer .Top .Right .Link li a {
  padding-left: 0.6rem;
  border-left: 0.6rem solid transparent;
}
#footer .Top .Right .Link li:hover a {
  border-left-color: white;
}
#footer .Bottom {
  text-align: center;
  letter-spacing: 0.2em;
}
#footer .Bottom .Address {
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
}
#footer .Bottom .Copyright {
  font-size: 1.4rem;
}

.preparation p {
  padding: 96px 0;
  text-align: center;
}/*# sourceMappingURL=common.css.map */