/* Using DartSASS(scss) */
/*
HEADER
MAIN CONTENTS
FOOTER
TO PAGE TOP BUTTON
*/
html {
  background-color: var(--color-bg);
  overflow-x: hidden;
  position: relative;
  scroll-behavior: smooth;
}

body {
  color: var(--color-primary);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2;
  overflow-x: hidden;
  position: relative;
  word-break: break-all;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
}

a:link,
a:visited {
  color: var(--color-prime);
  transition: all 0.2s ease-in-out;
}

a:active,
a:hover {
  text-decoration: none;
}

/* HEADER ==================== */
#header {
  padding: 40px 0 0;
  width: 100%;
  height: 180px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#header h1 {
  margin: 0 auto;
  width: 130px;
  height: 140px;
}
#header h1 a {
  background: url(../img/logo_white.svg) center top no-repeat;
  background-size: 130px auto;
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 410px) {
  #header h1 {
    width: 140px;
    height: 150px;
  }
  #header h1 a {
    background-size: 140px auto;
  }
}
@media screen and (min-width: 720px) {
  #header {
    padding: 50px 0 0;
  }
  #header h1 {
    width: 200px;
    height: 215px;
  }
  #header h1 a {
    background-size: 200px auto;
  }
}
@media screen and (min-width: 1200px) {
  #header {
    display: flex;
    justify-content: space-between;
    padding: 48px 2.5% 0;
    height: 123px;
  }
  #header h1 {
    margin: 0;
    width: 406px;
    height: 75px;
  }
  #header h1 a {
    background: url(../img/logo_white_horizontal.svg) center top no-repeat;
    background-size: auto 75px;
    width: 406px;
    height: 75px;
  }
}

#nav {
  background-color: transparent;
  width: 100%;
  height: 100dvh;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  transition: var(--transition-all);
  z-index: 50;
}
@media screen and (min-width: 1200px) {
  #nav {
    width: auto;
    height: auto;
    visibility: visible;
    opacity: 1;
    position: relative;
  }
}
#nav.open {
  background-color: rgba(0, 0, 0, 0.9);
  visibility: visible;
  opacity: 1;
  transition: var(--transition-all);
}
#nav.open .nav__list {
  transform: translateX(0);
}

.nav__list {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: flex-start;
  row-gap: 18px;
  height: 100dvh;
  padding: 60px 0;
  transform: translateX(100%);
  transition: transform 0.3s;
}
.nav__list li {
  display: inline-block;
  height: 56px;
}
.nav__list a {
  border: 1px solid var(--color-primary);
  border-right: none;
  border-top-left-radius: 28px;
  border-bottom-left-radius: 28px;
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 53px;
  padding: 0 24px;
  text-decoration: none;
  height: 56px;
}
.nav__list a.nav__sns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav__list a.nav__sns img {
  width: 23px;
  aspect-ratio: 1;
}
@media screen and (min-width: 720px) {
  .nav__list {
    padding-top: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .nav__list {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 0;
    height: auto;
    padding: 14px 0 0;
    transform: translateX(0);
  }
  .nav__list li {
    height: 46px;
  }
  .nav__list a {
    border: var(--border-white);
    border-radius: 23px;
    font-size: 1.3rem;
    line-height: 44px;
    padding: 0 20px;
    height: 46px;
  }
  .nav__list a.nav__sns {
    padding: 0;
    width: 46px;
  }
}
@media screen and (min-width: 1600px) {
  .nav__list {
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
@media (any-hover: hover) {
  .nav__list li a:hover {
    transform: var(--link-transform-scale);
  }
}

#drawer-btn {
  background-color: transparent;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  transition: var(--transition-all);
  width: 46px;
  aspect-ratio: 1;
}
#drawer-btn img {
  margin: auto;
}
#drawer-btn.open {
  display: none;
}
#drawer-btn.scroll-bg {
  background-color: rgba(0, 0, 0, 0.7);
}
@media screen and (min-width: 720px) {
  #drawer-btn {
    top: 30px;
    right: 30px;
    width: 56px;
  }
}
@media screen and (min-width: 1200px) {
  #drawer-btn {
    display: none;
  }
}

/* MAIN CONTENTS ==================== */
main {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 0;
}

h2 {
  font-family: var(--gfont-jp-serif), serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 720px) {
  h2 {
    font-size: 3.4rem;
  }
}

#bottom__nav-wrap {
  padding: 200px 0;
}
#bottom__nav-logo {
  margin: 0 auto;
  width: 200px;
  height: 214px;
}
#bottom__nav-logo a {
  background: url(../img/logo_white.svg) center top no-repeat;
  background-size: 200px auto;
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
@media (any-hover: hover) {
  #bottom__nav-logo a:hover {
    transform: scale(1.05);
  }
}
@media screen and (min-width: 720px) {
  #bottom__nav-logo {
    width: 390px;
    height: 420px;
  }
  #bottom__nav-logo a {
    background-size: 390px auto;
  }
}
#bottom__nav .nav__list {
  display: none;
}
@media screen and (min-width: 1200px) {
  #bottom__nav-wrap {
    padding: 240px 0 130px;
  }
  #bottom__nav .nav__list {
    display: flex;
    justify-content: center;
    padding: 140px 0 0;
  }
}

/* FOOTER ==================== */
#footer {
  color: var(--color-bg);
  background-color: var(--color-primary);
  padding: 40px 0;
}
#footer__inner {
  position: relative;
}
#footer__nav {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding: 0 var(--padding-rl-sp) 40px;
}
#footer__nav li {
  text-align: center;
}
#footer__nav a {
  background: url(../img/icon_external-link_black.svg) right 16px center no-repeat;
  background-size: 12px auto;
  border: 1px solid var(--color-bg);
  border-radius: 19px;
  color: var(--color-bg);
  display: inline-block;
  line-height: 36px;
  padding: 0 40px 0 20px;
  text-align: center;
  text-decoration: none;
  transition: var(--transition-all);
  min-width: 300px;
  height: 38px;
}
@media (any-hover: hover) {
  #footer__nav a:hover {
    transform: var(--link-transform-scale);
  }
}
#footer__copyright {
  border-top: 1px solid #ddd;
  padding-top: 24px;
  text-align: center;
}
@media screen and (min-width: 720px) {
  #footer {
    padding: 70px 0;
  }
  #footer__nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    -moz-column-gap: 24px;
         column-gap: 24px;
    padding-bottom: 70px;
  }
  #footer__nav a {
    min-width: auto;
  }
  #footer__copyright {
    padding-top: 40px;
  }
}
@media screen and (min-width: 1200px) {
  #footer {
    padding: 70px var(--padding-rl-sp) 100px;
  }
  #footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #footer__nav {
    justify-content: flex-start;
    padding: 0;
    max-width: 600px;
  }
  #footer__copyright {
    border: none;
    padding: 0;
  }
}
@media screen and (min-width: 1600px) {
  #footer__inner {
    margin: 0 auto;
    width: var(--width-pc);
  }
}

/* TO PAGE TOP BUTTON ==================== */
#page-top {
  mix-blend-mode: exclusion;
  position: fixed;
  right: 20px;
  opacity: 0;
  transition: var(--transition-opacity);
  width: 40px;
  height: 96px;
}
@media screen and (min-width: 720px) {
  #page-top {
    right: 30px;
  }
}
@media screen and (min-width: 1200px) {
  #page-top {
    right: 2.5%;
  }
}
#page-top::before {
  background-color: var(--color-primary);
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 46px;
  transform: translateX(-50%);
  width: 1px;
  height: 49px;
}
#page-top::after {
  border-top: var(--border-white);
  border-right: var(--border-white);
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 12px;
  transform-origin: top right;
  transform: rotate(-45deg);
  width: 8px;
  aspect-ratio: 1;
}
#page-top a {
  color: var(--color-primary);
  display: block;
  font-size: 1.2rem;
  padding-top: 76px;
  text-align: center;
  text-decoration: none;
  transition: var(--transition-all);
  width: 100%;
  height: 96px;
}
@media (any-hover: hover) {
  #page-top a:hover {
    transform: var(--link-transform-scale);
  }
}
#page-top a::before {
  border: var(--border-white);
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  bottom: 20px;
  width: 40px;
  aspect-ratio: 1;
}/*# sourceMappingURL=layout.css.map */