@charset "UTF-8";
@media screen and (max-width: 480.98px) {
  :root {
    --viewport-type: sm;
  }
}
@media screen and (min-width: 481px) and (max-width: 960.98px) {
  :root {
    --viewport-type: md;
  }
}
@media screen and (min-width: 961px) and (max-width: 1199.98px) {
  :root {
    --viewport-type: lg;
  }
}
@media print, screen and (min-width: 1200px) {
  :root {
    --viewport-type: xl;
  }
}
@keyframes __fadeIn {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
@keyframes __fadeOut {
  0% {
    visibility: visible;
    opacity: 1;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}
body {
  overflow-y: scroll;
}
body::after {
  content: "";
  display: block;
  background: url("../images/loading.gif") no-repeat 50% 50% #FFF;
  width: 26px;
  height: 26px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: fixed;
  opacity: 0;
}
body.is-loading {
  position: fixed;
}
body.is-loading::after {
  animation: __fadeIn 1000ms ease 1000ms forwards;
}
body.is-loading #Container {
  pointer-events: none;
  opacity: 0;
}
body.is-loaded #Container {
  animation: __fadeIn 1000ms forwards;
}

/* 非表示用（画面サイズ小） */
@media screen and (max-width: 480.98px) {
  .u-none-sm {
    display: none;
  }
}

/* 非表示用（画面サイズ中） */
@media screen and (min-width: 481px) and (max-width: 960.98px) {
  .u-none-md {
    display: none;
  }
}

/* 非表示用（画面サイズ大） */
@media screen and (min-width: 961px) and (max-width: 1199.98px) {
  .u-none-lg {
    display: none;
  }
}

/* 非表示用（画面サイズ特大） */
@media print, screen and (min-width: 1200px) {
  .u-none-xl {
    display: none;
  }
}

/* ページ内スクロールリンク用アンカー位置調整 */
@media screen and (max-width: 960.98px) {
  .c-page-anchor {
    scroll-margin-top: clamp(56px, calc(56px + (24 * max(0px, ((100dvw - 384px) / (384))))), 80px);
  }
}
@media print, screen and (min-width: 961px) {
  .c-page-anchor {
    scroll-margin-top: 80px;
  }
}

#Container {
  min-width: 320px;
  position: relative;
}

/***************/
/* .headerArea */
/***************/
.headerArea {
  background-color: #000;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.headerArea .l-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 960.98px) {
  .headerArea .l-wrapper {
    height: clamp(56px, calc(56px + (24 * max(0px, ((100dvw - 384px) / (384))))), 80px);
    padding: 0 clamp(6px, calc(6px + (6 * max(0px, ((100dvw - 384px) / (384))))), 12px) 0 clamp(24px, calc(24px + (6 * max(0px, ((100dvw - 384px) / (384))))), 30px);
  }
}
@media print, screen and (min-width: 961px) {
  .headerArea .l-wrapper {
    max-width: 1080px;
    height: 80px;
    margin: 0 auto;
    padding: 0 30px;
  }
}
.headerArea #SiteID {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 960.98px) {
  .headerArea #SiteID img {
    width: clamp(113px, calc(113px + (37 * max(0px, ((100dvw - 384px) / (384))))), 150px);
  }
}
@media print, screen and (min-width: 961px) {
  .headerArea #SiteID img {
    width: 150px;
  }
}
@media screen and (max-width: 960.98px) {
  .headerArea .headerArea_nav {
    width: 100%;
    height: clamp(56px, calc(56px + (24 * max(0px, ((100dvw - 384px) / (384))))), 80px);
  }
}
@media screen and (max-width: 960.98px) {
  .headerArea .headerArea_nav .l-drawer-button {
    font-size: clamp(0.8rem, calc(8px + (6 * max(0px, ((100dvw - 320px) / (280))))), 1.4rem);
    position: absolute;
    z-index: 3000;
    background: transparent;
    width: clamp(56px, calc(56px + (24 * max(0px, ((100dvw - 384px) / (384))))), 80px);
    height: clamp(56px, calc(56px + (24 * max(0px, ((100dvw - 384px) / (384))))), 80px);
    top: 0;
    right: 0;
    border: none;
    box-sizing: border-box;
    pointer-events: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .headerArea .headerArea_nav .l-drawer-button .l-icon {
    display: block;
    width: 2.8em;
    height: 2.2em;
    margin-top: 0.2em;
    position: relative;
  }
  .headerArea .headerArea_nav .l-drawer-button .l-icon > span {
    font-size: clamp(0.8rem, calc(8px + (6 * max(0px, ((100dvw - 320px) / (280))))), 1.4rem);
    width: 2.8em;
    height: 0.2em;
    background: #FFF;
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    transition: 0.2s;
    transform: translate(-50%, -50%);
  }
  .headerArea .headerArea_nav .l-drawer-button .l-icon::before, .headerArea .headerArea_nav .l-drawer-button .l-icon::after {
    background: #FFF;
    width: 2.8em;
    height: 0.2em;
    display: block;
    position: absolute;
    left: 0;
    content: "";
    transition: 0.3s;
    will-change: transform;
  }
  .headerArea .headerArea_nav .l-drawer-button .l-icon::before {
    top: 0;
  }
  .headerArea .headerArea_nav .l-drawer-button .l-icon::after {
    bottom: 0;
  }
}
@media print, screen and (min-width: 961px) {
  .headerArea .headerArea_nav .l-drawer-button {
    display: none;
  }
}
@media screen and (max-width: 1199.98px) {
  .headerArea .headerArea_nav .l-drawer-button.is-opened span {
    background: transparent;
  }
  .headerArea .headerArea_nav .l-drawer-button.is-opened span::before {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
  .headerArea .headerArea_nav .l-drawer-button.is-opened span::after {
    bottom: 50%;
    transform: translateY(50%) rotate(-135deg);
  }
}
@media screen and (max-width: 960.98px) {
  .headerArea .headerArea_nav .headerArea_nav_list {
    position: absolute;
    top: clamp(56px, calc(56px + (24 * max(0px, ((100dvw - 384px) / (384))))), 80px);
    right: 0;
    width: 100%;
    max-width: 480px;
    max-height: calc(100vh - clamp(56px, calc(56px + (24 * max(0px, ((100dvw - 384px) / (384))))), 80px));
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.85);
    padding: 0 clamp(0px, calc(0px + (52 * max(0px, ((100dvw - 0px) / (768))))), 52px);
    overflow-y: scroll;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transform: translateY(-2em);
  }
}
@media print, screen and (min-width: 961px) {
  .headerArea .headerArea_nav .headerArea_nav_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: clamp(0px, calc(0px + (46 * max(0px, ((100dvw - 0px) / (1300))))), 46px);
  }
}
.headerArea .headerArea_nav .headerArea_nav_list.is-opened {
  transition: transform 400ms, opacity 400ms;
}
@media screen and (max-width: 1199.98px) {
  .headerArea .headerArea_nav .headerArea_nav_list.is-opened {
    visibility: visible;
    opacity: 1;
    transform: translateY(-1px);
  }
}
.headerArea .headerArea_nav .headerArea_nav_list a {
  font-size: 1.6rem;
  color: #FFF;
}
@media screen and (max-width: 960.98px) {
  .headerArea .headerArea_nav .headerArea_nav_list a {
    display: block;
    padding: clamp(0px, calc(0px + (28 * max(0px, ((100dvw - 0px) / (384))))), 28px) 0;
    border-top: 1px solid #FFF;
  }
}
@media (hover: hover) and (pointer: fine) {
  .headerArea .headerArea_nav .headerArea_nav_list a span.c-hover-line {
    background: linear-gradient(currentColor, currentColor) 50% 100%/0% 1px no-repeat;
    transition: background 400ms cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
    padding-bottom: 0.2em;
  }
  .headerArea .headerArea_nav .headerArea_nav_list a:hover span.c-hover-line {
    background: linear-gradient(currentColor, currentColor) 50% 100%/100% 1px no-repeat;
  }
}
.headerArea .headerArea_nav .headerArea_nav_list a.is-current span.c-hover-line {
  background: linear-gradient(currentColor, currentColor) 50% 100%/100% 1px no-repeat;
  padding-bottom: 0.2em;
}
@media screen and (max-width: 960.98px) {
  .headerArea .headerArea_nav .headerArea_nav_list li:first-child a {
    border-top: none;
  }
}
.headerArea .headerArea_nav .headerArea_nav_list img {
  width: auto;
}
@media screen and (max-width: 960.98px) {
  .headerArea .headerArea_nav .headerArea_nav_list img {
    height: 10.5px;
  }
}
@media print, screen and (min-width: 961px) {
  .headerArea .headerArea_nav .headerArea_nav_list img {
    height: clamp(0px, calc(0px + (9.88 * max(0px, ((100dvw - 0px) / (1080))))), 9.88px);
  }
}
.headerArea .l-overlay {
  visibility: hidden;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.6);
  width: 100dvw;
  height: calc(100vh - clamp(56px, calc(56px + (24 * max(0px, ((100dvw - 384px) / (384))))), 80px));
  position: fixed;
  top: clamp(56px, calc(56px + (24 * max(0px, ((100dvw - 384px) / (384))))), 80px);
  left: 0;
  transition: opacity 400ms;
}
.headerArea .l-overlay.is-visible {
  visibility: visible;
  opacity: 1;
}

/***************/
/* .footerArea */
/***************/
.footerArea {
  background-color: #000;
}
@media screen and (max-width: 960.98px) {
  .footerArea {
    padding: clamp(0px, calc(0px + (70 * max(0px, ((100dvw - 0px) / (768))))), 70px) 0 clamp(0px, calc(0px + (80 * max(0px, ((100dvw - 0px) / (768))))), 80px);
  }
}
@media print, screen and (min-width: 961px) {
  .footerArea {
    padding: clamp(0px, calc(0px + (50 * max(0px, ((100dvw - 0px) / (1200))))), 50px) 0;
  }
}
.footerArea .l-link-pagetop {
  width: clamp(0px, calc(0px + (46 * max(0px, ((100dvw - 0px) / (384))))), 46px);
  height: clamp(0px, calc(0px + (46 * max(0px, ((100dvw - 0px) / (384))))), 46px);
  visibility: hidden;
  opacity: 0;
  border-radius: 50%;
  position: fixed;
  right: clamp(0px, calc(0px + (30 * max(0px, ((100dvw - 0px) / (768))))), 30px);
  bottom: clamp(0px, calc(0px + (30 * max(0px, ((100dvw - 0px) / (768))))), 30px);
  transition: background-color 400ms, opacity 400ms, visibility 400ms;
  background-color: #111111;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .footerArea .l-link-pagetop:hover {
    background-color: #222222;
  }
}
.footerArea .l-link-pagetop.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.footerArea .l-link-pagetop img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: clamp(0px, calc(0px + (14 * max(0px, ((100dvw - 0px) / (384))))), 14px);
}
.footerArea .l-wrapper {
  display: flex;
}
@media screen and (max-width: 960.98px) {
  .footerArea .l-wrapper {
    flex-direction: column;
    row-gap: clamp(0px, calc(0px + (60 * max(0px, ((100dvw - 0px) / (768))))), 60px);
    padding: 0 clamp(0px, calc(0px + (50 * max(0px, ((100dvw - 0px) / (768))))), 50px);
  }
}
@media print, screen and (min-width: 961px) {
  .footerArea .l-wrapper {
    justify-content: space-between;
    width: clamp(0px, calc(0px + (1000 * max(0px, ((100dvw - 0px) / (1200))))), 1000px);
    margin: 0 auto;
  }
}
.footerArea .footerArea_address {
  color: #FFF;
  font-style: normal;
  text-align: left;
}
@media screen and (max-width: 960.98px) {
  .footerArea .footerArea_address .footerArea_address_name {
    width: clamp(169px, calc(169px + (144 * max(0px, ((100dvw - 384px) / (384))))), 313px);
  }
}
@media print, screen and (min-width: 961px) {
  .footerArea .footerArea_address .footerArea_address_name {
    width: 313px;
  }
}
.footerArea .footerArea_address .footerArea_address_address {
  font-size: clamp(1.1rem, calc(11px + (3 * max(0px, ((100dvw - 384px) / (384))))), 1.4rem);
  line-height: 1.6;
  letter-spacing: 0.15em;
  margin-top: 1em;
}
.footerArea .footerArea_instagram {
  color: #FFF;
  font-size: clamp(1.2rem, calc(12px + (2 * max(0px, ((100dvw - 384px) / (384))))), 1.4rem);
  text-decoration: none;
  letter-spacing: 0.15em;
  border: 1px solid #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: start;
  padding: 0.5em 1em 0.5em 0.5em;
  box-sizing: border-box;
  transition: background-color 400ms;
  position: relative;
}
@media screen and (max-width: 960.98px) {
  .footerArea .footerArea_instagram {
    width: clamp(0px, calc(0px + (250 * max(0px, ((100dvw - 0px) / (768))))), 250px);
    height: clamp(0px, calc(0px + (62 * max(0px, ((100dvw - 0px) / (768))))), 62px);
    column-gap: clamp(0px, calc(0px + (12 * max(0px, ((100dvw - 0px) / (768))))), 12px);
  }
}
@media print, screen and (min-width: 961px) {
  .footerArea .footerArea_instagram {
    width: 200px;
    height: 50px;
    column-gap: 12px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footerArea .footerArea_instagram:hover {
    background-color: #222222;
  }
}
.footerArea .footerArea_instagram::after {
  content: "";
  background: url("../images/icon-forward.svg") no-repeat 0 0/contain;
  display: block;
  position: absolute;
  top: 50%;
  right: 0.4em;
  transform: translate(0, -50%) rotate(-90deg);
}
@media screen and (max-width: 960.98px) {
  .footerArea .footerArea_instagram::after {
    width: 0.68em;
    height: 0.68em;
  }
}
@media print, screen and (min-width: 961px) {
  .footerArea .footerArea_instagram::after {
    width: 1em;
    height: 1em;
  }
}
@media screen and (max-width: 960.98px) {
  .footerArea .footerArea_instagram img {
    width: clamp(0px, calc(0px + (32 * max(0px, ((100dvw - 0px) / (768))))), 32px);
  }
}
@media print, screen and (min-width: 961px) {
  .footerArea .footerArea_instagram img {
    width: 32px;
  }
}
.footerArea .l-copyright {
  color: #FFF;
  font-size: clamp(0.92rem, calc(9.2px + (4.8 * max(0px, ((100dvw - 384px) / (384))))), 1.4rem);
  line-height: 1.6;
  letter-spacing: 0.15em;
  text-align: center;
  margin-top: clamp(0px, calc(0px + (60 * max(0px, ((100dvw - 0px) / (768))))), 60px);
}

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