/*-----------------------------------------------------
	container
-----------------------------------------------------*/
.l-container, .l-container--narrow {
  width: 92%;
  margin: 0 auto;
  max-width: 75rem;
}
.l-container--narrow {
  max-width: 62.5rem;
}

/*-----------------------------------------------------
	header (~768px)
-----------------------------------------------------*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3.75rem;
  z-index: 100;
  background-color: #fff;
}
.l-header__inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.l-header__logo {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 9.875rem;
  height: 0.633125rem;
  z-index: 99;
  line-height: 0;
}
.l-header__logo img {
  width: 100%;
  height: 100%;
  filter: brightness(0) saturate(100%) invert(7%) sepia(9%) saturate(6610%) hue-rotate(221deg) brightness(100%) contrast(89%);
}
.l-header__button {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99;
  width: 3.75rem;
  height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-header__button i {
  width: 1.40625rem;
  height: 0.625rem;
  border-top: 2px solid #221D35;
  border-bottom: 2px solid #221D35;
  position: relative;
}
.l-header__button i::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #221D35;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.l-header__background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease 0s;
}
.l-header__background.is-open {
  opacity: 1;
  pointer-events: auto;
}
.l-header__nav {
  position: fixed;
  width: 18.75rem;
  height: 100dvh;
  top: 0;
  right: -18.75rem;
  z-index: 100;
  transition: right 0.6s ease 0s;
  overflow-y: scroll;
  color: #444;
  line-height: 1;
}
.l-header__nav.is-open {
  right: 0;
}
.l-header__nav a {
  text-decoration: none;
}
.l-header__nav span {
  cursor: pointer;
}
.l-header__nav-wrapper {
  position: fixed;
  width: 18.75rem;
  height: 100dvh;
  top: 0;
  right: -18.75rem;
  z-index: 101;
  transition: right 0.6s ease 0s;
  box-sizing: border-box;
  padding: 0rem 1.875rem 3.125rem 1.875rem;
  background-color: #fff;
  transition: right 0.6s ease 0s;
  overflow-y: scroll;
}
.l-header__nav-wrapper.is-open {
  right: 0;
}
.l-header__nav-wrapper.lv1 {
  position: relative;
  right: 0;
}
.l-header__nav-header {
  position: sticky;
  top: 0;
  right: 0;
  margin-left: -1.875rem;
  width: 18.75rem;
  height: 3.125rem;
  background-color: #fff;
}
.l-header__nav-name {
  color: #777;
  font-size: 1.125rem;
  position: absolute;
  top: 1.25rem;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  font-weight: 700;
}
.l-header__nav-closer {
  position: absolute;
  top: 0.625rem;
  left: 0.9375rem;
  width: 1.0625rem;
  height: 1.0625rem;
  background: url(../images/close.svg) center center no-repeat;
  background-size: contain;
}
.l-header__nav-title {
  font-size: 1.125rem;
  font-weight: 700;
  padding: 0.5em 0;
  margin-bottom: 0.75em;
  border-bottom: 1px solid #000;
  color: #000;
}
.l-header__nav-subtitle {
  font-size: 0.875rem;
  font-weight: 700;
  margin: 1em 0 0.75em;
  color: #000;
}
.l-header__nav-list {
  margin-bottom: 0.625rem;
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
  row-gap: 1em;
  color: #444;
  margin-left: 1em;
}
.l-header__nav-list ul {
  font-size: 0.75rem;
  margin-top: 0.5em;
  display: flex;
  flex-direction: column;
  row-gap: 0.5em;
  margin-left: 1em;
  color: #666;
}
.l-header__nav .l-header__nav-wrapper.lv1 .l-header__nav-list {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.l-header__nav .l-header__nav-wrapper.lv1 .l-header__nav-item {
  position: relative;
}
.l-header__nav .l-header__nav-wrapper.lv1 .l-header__nav-item a {
  display: inline-flex;
  flex-direction: column;
  row-gap: 0.3125rem;
}
.l-header__nav .l-header__nav-wrapper.lv1 .l-header__nav-item a strong {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.l-header__nav .l-header__nav-wrapper.lv1 .l-header__nav-item a span {
  font-size: 0.875rem;
}

/*-----------------------------------------------------
	header (~1300px)
-----------------------------------------------------*/
@media (min-width: 768px) {
  .l-header {
    height: 5rem;
  }
  .l-header__inner {
    position: relative;
    width: 92%;
    max-width: 75rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .l-header__logo {
    position: static;
    width: 20.625rem;
    height: 1.321875rem;
    margin-left: 0;
  }
  .l-header__button {
    display: none;
  }
  .l-header__background {
    display: none !important;
  }
  .l-header__nav {
    position: static;
    width: 50rem;
    height: 100%;
    transition: none;
    overflow: auto;
  }
  .l-header__nav-wrapper {
    position: fixed;
    width: 100%;
    height: auto;
    top: 5rem;
    right: 0;
    padding: 2.5rem 0rem;
    overflow-y: auto;
    clip-path: inset(0 0 100% 0);
    pointer-events: none;
    transition: clip-path 0.6s ease 0s;
  }
  .l-header__nav-wrapper.is-open {
    clip-path: inset(0 0 0 0);
    pointer-events: auto;
  }
  .l-header__nav-inner {
    width: 92%;
    max-width: 62.5rem;
    display: flex;
    justify-content: space-between;
    -moz-column-gap: 3.125rem;
         column-gap: 3.125rem;
    margin: 0 auto;
  }
  .l-header__nav-container {
    flex: 1;
  }
  .l-header__nav-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 92%;
    max-width: 75rem;
    pointer-events: none;
    background-color: transparent;
    margin: 0 auto;
  }
  .l-header__nav-name {
    display: none;
  }
  .l-header__nav-closer {
    position: absolute;
    top: 1.25rem;
    left: auto;
    right: 1.25rem;
    width: 1.6875rem;
    height: 1.6875rem;
    pointer-events: auto;
    z-index: 101;
    cursor: pointer;
  }
  .l-header__nav-title {
    font-size: 1.25rem;
    padding: 0.5em 0;
    margin-bottom: 0.75em;
  }
  .l-header__nav-subtitle {
    font-size: 1rem;
    margin: 1em 0 0.75em;
  }
  .l-header__nav-list {
    margin-bottom: 2.5rem;
    font-size: 1rem;
    row-gap: 1em;
    color: #000;
    margin-left: 1.5em;
  }
  .l-header__nav-list ul {
    font-size: 0.875rem;
    margin-top: 0.5em;
    row-gap: 0.5em;
    margin-left: 0;
    color: #666;
  }
  .l-header__nav .l-header__nav-wrapper.lv1 {
    position: static;
    padding: 0;
    clip-path: inset(0 0 0 0);
    pointer-events: auto;
    height: 100%;
  }
  .l-header__nav .l-header__nav-wrapper.lv1 .l-header__nav-header {
    display: none;
  }
  .l-header__nav .l-header__nav-wrapper.lv1 .l-header__nav-list {
    display: flex;
    flex-direction: row;
    margin: 0;
    height: 100%;
    overflow-y: hidden;
    -moz-column-gap: 4.125rem;
         column-gap: 4.125rem;
    justify-content: center;
  }
  .l-header__nav .l-header__nav-wrapper.lv1 .l-header__nav-item {
    height: 100%;
  }
  .l-header__nav .l-header__nav-wrapper.lv1 .l-header__nav-item a {
    display: inline-flex;
    height: 100%;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 0.3125rem;
    transition: color 0.4s ease 0s;
  }
  .l-header__nav .l-header__nav-wrapper.lv1 .l-header__nav-item a strong {
    font-size: 1.125rem;
    font-weight: 700;
  }
  .l-header__nav .l-header__nav-wrapper.lv1 .l-header__nav-item a span {
    font-size: 0.75rem;
  }
  .l-header__nav .l-header__nav-wrapper.lv1 .l-header__nav-item a::after {
    content: "";
    width: 0;
    height: 0.1875rem;
    background-color: #ff1900;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: width 0.4s ease 0s;
  }
  .l-header__nav .l-header__nav-wrapper.lv1 .l-header__nav-item a:hover, .l-header__nav .l-header__nav-wrapper.lv1 .l-header__nav-item a.is-active {
    color: #ff1900;
  }
  .l-header__nav .l-header__nav-wrapper.lv1 .l-header__nav-item a:hover::after, .l-header__nav .l-header__nav-wrapper.lv1 .l-header__nav-item a.is-active::after {
    width: 100%;
  }
  .l-header__nav .l-header__nav-wrapper.lv3 .l-header__nav-container:nth-child(2) {
    margin-top: calc(3.4375rem + 1px);
  }
  .l-header__nav .l-header__nav-wrapper.lv3 .l-header__nav-container:nth-child(2) .l-header__nav-title {
    position: relative;
  }
  .l-header__nav .l-header__nav-wrapper.lv3 .l-header__nav-container:nth-child(2) .l-header__nav-title::after {
    content: "";
    width: calc(200% + 3.125rem);
    height: 1px;
    background-color: #000;
    position: absolute;
    bottom: -1px;
    left: 0;
  }
  .l-header__nav .l-header__nav-wrapper.lv3 .l-header__nav-container:nth-child(3) {
    margin-top: calc(6.875rem + 2px);
  }
  .l-header__nav .l-header__nav-wrapper.lv3 .l-header__nav-list {
    margin-bottom: 1.25rem;
  }
}
/*-----------------------------------------------------
	header (1300px~)
-----------------------------------------------------*/
/* # 
-----------------------------------------------------*/
/*-----------------------------------------------------
	main (~768px)
-----------------------------------------------------*/
.l-main {
  padding-top: 3.75rem;
}

.l-button-top {
  display: none;
}

/*-----------------------------------------------------
	main (768px~)
-----------------------------------------------------*/
@media (min-width: 768px) {
  .l-main {
    padding-top: 5rem;
    overflow-x: clip;
  }
  .l-button-top {
    display: block;
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    background: url(../images/arrow.svg) center center no-repeat #fff;
    background-size: 0.9375rem;
    position: sticky;
    bottom: -4.375rem;
    margin: -4.375rem max(4%, 50% - 37.5rem) 1.25rem auto;
    box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
    text-decoration: none;
    text-indent: -9999px;
    overflow: hidden;
    transition: transform 0.4s ease 0s, box-shadow 0.4s ease 0s, bottom 0.6s ease 0s;
  }
  .l-button-top:hover {
    transform: translateY(0.125rem);
    box-shadow: 0 0.125rem 0.125rem rgba(0, 0, 0, 0.5);
  }
  .l-button-top.is-scroll {
    bottom: 1.25rem;
  }
}
/*-----------------------------------------------------
	footer (~768px)
-----------------------------------------------------*/
.l-footer__sns {
  border-top: 1px solid #ccc;
  padding: 0.9375rem 0;
  line-height: 0;
}
.l-footer__sns-list {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 4.6875rem;
       column-gap: 4.6875rem;
}
.l-footer__sns-item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  text-decoration: none;
  transition: opacity 0.4s ease 0s;
}
.l-footer__sns-item a:hover {
  opacity: 0.75;
}
.l-footer__sns-item a img {
  width: 2.1875rem;
  height: auto;
}
.l-footer__sns-item a span {
  display: none;
}
.l-footer__wrapper {
  background: url(../images/bg01.png) right 3.125rem bottom no-repeat #221D35;
  background-size: 96%;
  padding: 2.1875rem 0 0.9375rem;
  color: #fff;
}
.l-footer__inner {
  width: 92%;
  margin: 0 auto;
}
.l-footer__nav {
  width: 19.53125rem;
  margin: 0 auto 2.5rem;
  display: flex;
  justify-content: space-between;
}
.l-footer__list {
  display: flex;
  flex-direction: column;
  row-gap: 0.625rem;
  font-size: 1rem;
  font-weight: 500;
}
.l-footer__list:nth-child(2) {
  font-weight: 300;
}
.l-footer__list a {
  text-decoration: none;
}
.l-footer__copy {
  font-size: 0.75rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  font-weight: 300;
  text-align: center;
}

/*-----------------------------------------------------
	footer (768px~)
-----------------------------------------------------*/
@media (min-width: 768px) {
  .l-footer__sns {
    padding: 1.875rem 0;
  }
  .l-footer__sns-list {
    -moz-column-gap: 5.3125rem;
         column-gap: 5.3125rem;
  }
  .l-footer__sns-item a:hover {
    opacity: 0.75;
  }
  .l-footer__sns-item a img {
    width: 2.1875rem;
    height: auto;
  }
  .l-footer__sns-item a span {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
  }
  .l-footer__wrapper {
    background-position: left calc(50% + 15.625rem) bottom;
    background-size: contain;
    padding: 2.8125rem 0 1.5625rem;
  }
  .l-footer__inner {
    max-width: 53.125rem;
  }
  .l-footer__nav {
    width: 22.5rem;
    margin-left: 0;
    margin-bottom: 2.1875rem;
  }
  .l-footer__copy {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
  }
}/*# sourceMappingURL=layout.css.map */