@charset "UTF-8";
/**** lity **********************/
@import url("https://fonts.googleapis.com/css2?family=League+Gothic&family=Noto+Sans+JP:wght@100..900&display=swap");
body .lity {
  background: rgba(255, 255, 255, 0.8);
}

.lity-content {
  padding: 4% 3%;
  background-color: #ffffff;
}

.lity-image img {
  height: 85vh;

  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 769px) {
  .lity-image img {
    height: auto;
  }
}

.lity {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

/* ///////////////////////////// */
@font-face {
  font-weight: normal;
  font-style: normal;
  font-family: "LINE SEED";
  src: url("../font/LINESeedJP_OTF_Rg.woff") format("woff"),
    url("../font/LINESeedJP_OTF_Rg.woff2") format("woff2");
}
@font-face {
  font-weight: bold;
  font-style: normal;
  font-family: "LINE SEED";
  src: url("../font/LINESeedJP_OTF_Bd.woff") format("woff"),
    url("../font/LINESeedJP_OTF_Bd.woff2") format("woff2");
}
@font-face {
  font-weight: 900;
  font-style: normal;
  font-family: "LINE SEED";
  src: url("../font/LINESeedJP_OTF_Eb.woff") format("woff"),
    url("../font/LINESeedJP_OTF_Eb.woff2") format("woff2");
}

/* ///// variable ///////////////////////////////// */
:root {
  --f-font-base: "Noto Sans JP", sans-serif;
  --f-font-02: "LINE SEED", sans-serif;
  --f-font-03: "League Gothic", sans-serif;
  /* bg */
  --bg: #b19b96;
  --bg-main: #2d71b6;
  --bg-cont: #ffffff;
  /* color */
  --c-txt-base: #000000;
  --c-01: #d2b57c;
  --c-01-con: #ffffff;
  --c-02: #00003d;
  --c-02-con: #ffffff;
  --c-03: #8276a4;
  --c-03-con: #ffffff;
}

/* ///// founfation /////////////////////////////////  ****/

main * {
  box-sizing: border-box;
  color: var(--c-txt-base);
  word-break: keep-all;
  letter-spacing: 0.1rem;
  font-weight: 400;
  font-size: clamp(14px, 1.6vw, 25px);
  font-family: var(--f-font-base);
  line-height: 1.6;

  overflow-wrap: break-word;
  font-feature-settings: "palt";
}

/* ///// layout /////////////////////////////////  ****/
.l_body,
footer {
  margin-left: auto;
  width: 85%;
}
@media (max-width: 769px) {
  .l_body,
  footer {
    width: 100%;
  }
}

.l_body {
  background-color: var(--bg);
}

.l_main {
  background-color: var(--bg-main);
}

.l_main,
.l_width_main {
  position: relative;
  margin: 0 auto;
  width: min(100%, 2000px);
}

.l_width_full {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.l_cont {
  position: relative;
  z-index: 1;
  padding: 4.8em 0 5.2em;
  background: var(--bg-cont);
}
@media (max-width: 769px) {
  .l_cont {
    padding: 2.4em 0 2.6em;
  }
}

[class*="l_continner"] {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
  text-align: center;
}
[class*="l_continner"] > div {
  width: 100%;
}

.l_continner {
  width: 74.4%;
}

.l_continner-l {
  width: 84.9%;
}

@media (max-width: 769px) {
  [class*="l_continner"] {
    width: 95%;
  }
}
/* ///// component ///////////////////////////////// */
/**** text **********************/
/* text-size */
.c_txts-xs {
  font-size: clamp(10px, 1.2vw, 18px);
}

.c_txts-s {
  font-size: clamp(12px, 1.4vw, 21px);
}

.c_txts-l {
  font-size: clamp(18px, 2.1vw, 35px);
}

.c_txts-xl {
  font-size: clamp(18px, 2.5vw, 42px);
}

.c_txts-xl {
  font-size: clamp(22px, 3vw, 50px);
}

.c_txts-xxl {
  font-size: clamp(24px, 3.5vw, 60px);
}

.c_txts-xxxl {
  font-size: clamp(24px, 7.7vw, 130px);
}
/* text-weight */
.c_txts-fw-bold {
  font-weight: bold;
}
.c_txts-fw-extraBold {
  font-weight: 900;
}

/**** ttl **********************/
[class*="c_ttl_cate"] {
  display: flex;
  position: relative;
  z-index: 2;
  align-items: baseline;
  justify-content: center;
  background-color: var(--c-01);
  color: var(--c-01-con);
  letter-spacing: 0;
  font-weight: 900;
  font-family: var(--f-font-02);
  line-height: 1;
}

.c_ttl_cate-l {
  gap: 0.48em;
  padding: 1.12em 1.57em 0.95em;
  text-align: center;
  letter-spacing: 0.1em;
}
.c_ttl_cate-l span {
  color: var(--c-01-con);
  font-weight: inherit;
  font-size: 0.7em;
}
@media (max-width: 769px) {
  .c_ttl_cate-l {
    display: flex;
    gap: 0.2em;
    align-items: center;
    flex-direction: column;
  }
}

/* ///// project ///////////////////////////////// */
/**** topimg **********************/
.p_top {
  position: relative;
}

.p_top_btn {
  position: absolute;
  top: 4.9%;
  right: 2.2%;
  width: 13%;
}

/**** summary **********************/
.summary-wrapper {
  padding-inline: clamp(1rem, -3.364rem + 9.09vw, 8rem);
  @media (max-width: 769px) {
    padding-inline: 1rem;
    max-width: 400px;
    margin-inline: auto;
  }
}
.p_summary_map {
  margin: 3em 0;
  width: 100.2%;
  height: 14.48em;
}

.p_summary_btn_akiba {
  position: relative;
}
.p_summary_btn_akiba > div {
  position: absolute;
  top: 36.5%;
  left: 7%;
  width: 17%;
}
.p_summary_btn_akiba > div a {
  line-height: 0;
}
.p_summary_info {
  display: grid;
  grid-template-columns: 24ch 1fr;
  text-align: left;
  gap: 2rem;
  @media (max-width: 769px) {
    grid-template-columns: 100%;
    text-align: center;
  }
}
.p_summary_title {
  padding-inline-start: 1.5rem;
  font-family: var(--f-font-02);
  font-size: clamp(1.1875rem, -0.0228rem + 2.5183vw, 3.125rem);
  @media (max-width: 769px) {
    padding-inline-start: 0rem;
  }
}
.p_summary_content {
  display: grid;
  grid-template-columns: max-content max-content;
  column-gap: 1.5rem;
  font-family: var(--f-font-02);
  font-size: clamp(1.1875rem, -0.0228rem + 2.5183vw, 3.125rem);
  & span {
    font-family: var(--f-font-02);
    font-size: clamp(1.1875rem, -0.0228rem + 2.5183vw, 3.125rem);
  }
  @media (max-width: 1025px) {
    grid-template-columns: max-content;
  }
  @media (max-width: 769px) {
    place-content: center;
    place-items: center;
    grid-template-columns: max-content;
  }
}
.p_summary_detail {
  grid-column: 2/-1;
  font-weight: bold;
  color: #333;
  & li:not(:last-child) {
    margin-bottom: 0.5rem;
  }
  @media (max-width: 769px) {
    grid-column: 1/-1;
    word-break: normal;
    font-size: 12px;
  }
}

.p_summary_detail_list-content {
  margin-inline-start: 2rem;
  text-indent: -1.6rem;
  font-size: clamp(0.875rem, 0.2503rem + 1.2998vw, 1.875rem);
  font-weight: bold;
  color: #333;
  &::before {
    position: relative;
    top: 2px;
    left: -6px;
    display: inline-block;
    width: 18px;
    height: 18px;
    content: "";
    background: black;
  }
  @media (max-width: 769px) {
    margin-inline-start: 4rem;
    font-size: 12px;
    text-indent: -1rem;
    text-align: left;
    &::before {
      position: relative;
      top: 2px;
      left: -6px;
      display: inline-block;
      width: 12px;
      height: 12px;
      content: "";
      background: black;
    }
  }
}
.p_summary_notice {
  display: grid;
  grid-template-columns: 150px 1fr;
  text-align: left;
  gap: 2rem;
  max-width: 100%;
  @media (max-width: 769px) {
    grid-template-columns: 100%;
    text-align: center;
    gap: 1rem;
  }
}
.p_summary_notice-number {
  width: 100px;
  @media (max-width: 769px) {
    width: 50px;
  }
}
.p_summary_notice-text {
  padding-inline-start: 1.5rem;
  grid-column: 1/-1;
  font-weight: bold;
  color: #333;
  & li:not(:last-child) {
    margin-bottom: 0.5rem;
  }
  @media (max-width: 769px) {
    grid-column: 1/-1;
    word-break: break-all;
    text-align: left;
    font-size: 12px;
    padding-inline-start: 0rem;
    padding-block-start: 1rem;
  }
}
.p_summary_link {
  color: #d2b57c;
  font-weight: bold;
  &:hover {
    filter: brightness(10%) saturate(200%);
  }
}
.p_hr {
  border-top: 1px dashed #8c8b8b;
  margin-block: 3rem;
}

/**** goods **********************/
.goods-wrapper {
  display: flex;
  gap: 2rem;
  padding: 0 2rem;
  @media (max-width: 769px) {
    flex-direction: column;
    padding-inline: 2rem;
    max-width: 400px;
    margin-inline: auto;
  }
}
.goods-item {
  position: relative;
}
.comingsoon::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5764705882);
  content: "";
}
.comingsoon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #ffffff;
  content: "準備中";
  letter-spacing: 0.2em;
  font-size: 1.5em;
  transform: translate(-50%, -50%);
}

@media (max-width: 769px) {
  .comingsoon::after {
    font-size: 1em;
  }
}
/**** benefit **********************/
.p_benefit_wrapper {
  padding-inline: 4rem;
  text-align: center;
  @media (max-width: 769px) {
    padding-inline: 1rem;
    max-width: 400px;
    margin-inline: auto;
  }
}
.benefit__item {
  display: grid;
  grid-template-columns: 90%;
  place-content: center;
  place-items: center;
  margin-inline: clamp(2rem, -1.748rem + 7.8vw, 8rem);
  &:first-child {
    margin-bottom: 8rem;
  }
  @media (max-width: 769px) {
    margin-inline: 0rem;
    &:first-child {
      margin-bottom: 4rem;
    }
  }
}
.benefit__title {
  font-family: var(--f-font-02);
  font-size: clamp(1.375rem, -0.031rem + 2.92vw, 3.625rem);
  font-weight: 700;
  background-color: #00003d;
  color: white;
  text-align: center;
  padding-inline: 4rem;
  width: 100%;
  @media (max-width: 769px) {
    padding-inline: 0rem;
  }
}

.benefit__image {
  padding-block: 3rem;
  width: 80%;
  text-align: center;
  @media (max-width: 769px) {
    width: 100%;
    padding-block: 2rem;
  }
}

.benefit__text {
  font-size: clamp(0.938rem, -0.039rem + 2.03vw, 2.5rem);
  text-align: center;
}

.benefit__text--accent {
  color: #8276a4;
  font-size: clamp(0.938rem, -0.039rem + 2.03vw, 2.5rem);
  font-weight: 700;
}
.benefit__descriptiopn {
  padding-inline: 1rem;
  margin-block: 6rem;
  font-size: clamp(0.875rem, 0.016rem + 1.79vw, 2.25rem);
  text-align: left;
  display: inline-block;
  @media (max-width: 769px) {
    margin-block: 2rem;
  }
}

.benefit__target {
  background-color: rgba(210, 181, 124, 0.1);
  color: #d2b57c;
  text-align: center;
  padding-block: 1rem;
  margin-block-end: 2rem;
  font-size: clamp(0.938rem, -0.039rem + 2.03vw, 2.5rem);
  width: 80%;
  margin-inline: auto;
  @media (max-width: 769px) {
    width: 100%;
  }
}

.benefit__notice {
  font-size: clamp(0.75rem, 0.008rem + 1.54vw, 1.938rem);
  text-align: center;
}

/**** gallery **********************/
.gallery-wrapper {
  padding-inline: 4rem;
  @media (max-width: 769px) {
    padding-inline: 2rem;
    max-width: 400px;
    margin-inline: auto;
  }
}

.gallery__description {
  text-align: center;
  font-size: clamp(0.875rem, 0.016rem + 1.79vw, 2.25rem);
  font-weight: 700;
  margin-block-end: clamp(4rem, 1.501rem + 5.2vw, 8rem);
  @media (max-width: 769px) {
    margin-block-end: 2rem;
  }
}

.gallery__box {
  display: flex;
  gap: 4rem;
  margin-block: 4rem;
  &.reverse {
    flex-direction: row-reverse;
  }
  @media (max-width: 769px) {
    flex-direction: column;
    gap: 2rem;
    &.reverse {
      flex-direction: column;
    }
  }
}

.gallery__image {
  flex: 1;
}

.gallery__image--multiple {
  display: flex;
  flex: 1;
  align-items: flex-start;
  gap: 1rem;
  & img {
    min-width: 0;
  }
}
.gallery__text__wrapper {
  flex: 1;
}
.gallery__title {
  color: #d2b57c;
  font-size: clamp(1.938rem, -0.054rem + 4.14vw, 5.125rem);
  font-weight: 900;
  border-bottom: 16px solid currentColor;
}

.gallery__text {
  font-size: clamp(0.875rem, 0.016rem + 1.79vw, 2.25rem);
  font-weight: bold;
  word-break: normal;
  padding-block-start: 2rem;
}

/**** sign **********************/
.sign-wrapper {
  display: grid;
  grid-template-columns: 1fr 3fr;
  padding-inline: clamp(2rem, -1.748rem + 7.8vw, 8rem);
  row-gap: 1rem;
  column-gap: 4rem;
  @media (max-width: 769px) {
    grid-template-columns: 1fr;
    padding-inline: 2rem;
    column-gap: 0rem;
    max-width: 400px;
    margin-inline: auto;
  }
}

.sign__title {
  font-size: clamp(0.875rem, 0.016rem + 1.79vw, 2.25rem);
  font-weight: 900;
  &.accent {
    color: #8276a4;
  }
  &.distant {
    margin-block-start: 6rem;
  }
  @media (max-width: 769px) {
    margin-block-start: 0.5rem;
    &.distant {
      margin-block-start: 3rem;
    }
  }
}

.sign__text {
  font-size: clamp(0.875rem, 0.016rem + 1.79vw, 2.25rem);
  @media (max-width: 769px) {
    word-break: normal;
  }
}
.sign__winner {
  padding-block-start: 1rem;
  padding-inline: 4rem;
  grid-column: 1 / -1;
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(7, auto);
  @media (max-width: 769px) {
    padding-inline: 0rem;
  }
}

.sign__winner__list {
  font-size: clamp(0.813rem, -0.046rem + 1.79vw, 2.188rem);
  font-weight: 700;
}
.sign__notice {
  grid-column: 1/-1;
  color: #cd0012;
  font-size: clamp(0.813rem, -0.046rem + 1.79vw, 2.188rem);
  margin-block-start: 3rem;
  @media (max-width: 769px) {
    margin-block-start: 2rem;
    margin-block-end: 2rem;
    word-break: normal;
  }
}
.sign__notice--indent {
  color: currentColor;
  font-size: clamp(0.813rem, -0.046rem + 1.79vw, 2.188rem);
  text-indent: -1em;
  padding-left: 1em;
  display: block;
}
/**** shop-benefit **********************/
.shop-benefit__wrapper {
  padding-inline: clamp(2rem, -1.748rem + 7.8vw, 8rem);
  text-align: center;
  @media (max-width: 769px) {
    padding-inline: 2rem;
    max-width: 400px;
    margin-inline: auto;
  }
}

.shop-benefit__description {
  text-align: center;
  font-size: clamp(0.875rem, 0.016rem + 1.79vw, 2.25rem);
  font-weight: 700;
}

.shop-benefit__item__wrapper {
  display: flex;
  gap: 3rem;
  @media (max-width: 769px) {
    flex-direction: column;
    gap: 0rem;
  }
}

.shop-benefit__item {
  flex: 1;
  margin-block-start: 6rem;
  margin-block-end: 4rem;
  @media (max-width: 769px) {
    margin-block-start: 2rem;
    margin-block-end: 2rem;
    &:first-child {
      margin-block-end: 0rem;
    }
  }
}

.shop-benefit__title {
  font-family: var(--f-font-02);
  font-size: clamp(1.063rem, -0.07rem + 2.36vw, 2.875rem);
  font-weight: 700;
  background-color: #00003d;
  color: white;
  text-align: center;
  width: 100%;
}

.shop-benefit__image {
  padding-block: 3rem;
  text-align: center;
  @media (max-width: 769px) {
    padding-block: 1rem;
  }
}

.shop-benefit__text {
  font-size: clamp(0.75rem, -0.031rem + 1.62vw, 2rem);
  text-align: center;
}

.shop-benefit__text--accent {
  color: #8276a4;
  font-size: clamp(0.75rem, -0.031rem + 1.62vw, 2rem);
  font-weight: 700;
}

.shop-benefit__notice {
  font-size: clamp(0.75rem, 0.008rem + 1.54vw, 1.938rem);
  text-align: center;
  font-weight: 700;
}

/**** footer **********************/
footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 2.32em 0 3.28em;
  background-color: var(--c-02);
  color: var(--c-02-con);
}
footer .p_footer_logo {
  width: 15%;
}
footer p {
  margin-top: 1.28em;
  color: inherit;
}

/* ///// nav ///////////////////////////////// */
/* color */
:root {
  --nav_bg: #d2b57c;
  --nav_clausearea: #ffffff67;
  --nav_color: #00003d;
  --nav_shikiri: #ffffff;
}

@media (max-width: 769px) {
  [id^="n-"]:target {
    scroll-margin: 40px;
  }
}

@media (max-width: 769px) {
  .l_body {
    padding-top: 40px;
  }
}
/* menu */
.l_gnav_wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 15%;
  height: 100%;
  border-right: none;
  border-left: none;
  background-color: var(--nav_bg);
}

@media (max-width: 769px) {
  .l_gnav_wrap {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    border: none;
    background-color: initial;
    pointer-events: none;
  }
  main:has(#p_gnav_sp_trigger:checked) {
    z-index: 3;
  }
}
.l_gnav_inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

@media (max-width: 769px) {
  .l_gnav_inner {
    display: block;
    position: sticky;
    top: 0;
    right: 0;
    width: 100vw;
    height: 40px;
    transition: 0.5s;
    pointer-events: auto;
  }
}
.l_gnav {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  padding: 3em 0 2em;
  width: 100%;
  height: 100%;
  background-color: var(--nav_bg);
  transition: 0.5s;
}

@media (max-width: 769px) {
  .l_gnav {
    display: flex;
    position: fixed;
    top: 0;
    left: 100%;
    margin-left: 30%;
    padding-top: 25%;
    width: 70%;
    pointer-events: auto;
  }
}
.l_gnav_menu {
  display: flex;
  gap: 2rem;
  flex-direction: column;
}

.l_gnav_menu span {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
}

@media (max-width: 769px) {
  .l_gnav_menu span:not(:first-child) {
    margin-left: 0;
  }
}
.l_gnav_menu span a {
  margin-left: 1%;
  padding-left: 1%;
  color: var(--nav_color);
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.1vw;
  font-weight: 900;
  font-size: clamp(14px, 1.5vw, 25px);
  font-family: var(--f-font-02);
  line-height: 1;
}

@media (max-width: 769px) {
  .l_gnav_menu span a {
    text-align: center;
    font-size: 1.4rem;
    line-height: 1;
  }
}
.l_gnav_menu span a:hover {
  opacity: 0.5;
  transition: 0.3s;
}

@media (max-width: 769px) {
  .l_gnav_menu span img {
    width: auto;
    height: 30px;
  }
}
.l_gnav_footer {
  text-align: center;
}
.l_gnav_footer > .sns_btn {
  display: flex;
  gap: 0.2em;
  justify-content: center;
}
.l_gnav_footer > .sns_btn a {
  width: 15%;
}
.l_gnav_footer .l_gnav_footer_logo {
  display: inline-block;
  margin-top: 0.5em;
  width: 40%;
}

/* sp */
@media (max-width: 769px) {
  header {
    padding-top: 50px;
  }
  /* 閉じ状態 */
  .l_gnav_sp_headarea {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 40px;
    width: 100%;
    background-color: var(--nav_bg);
    transition: 0.5s;
  }
  /* ハンバーガーマーク */
  .p_gnav_sp_btn {
    display: flex;
    position: relative;
    z-index: 1;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
    height: 40px;
  }
  .p_gnav_sp_btn span,
  .p_gnav_sp_btn span::before,
  .p_gnav_sp_btn span::after {
    display: block;
    margin-right: 10px;
    width: 25px;
    height: 3px;
    border-radius: 3px;
    background-color: var(--nav_color);
    transition: 0.3s;
  }
  .p_gnav_sp_btn span::before,
  .p_gnav_sp_btn span::after {
    position: absolute;
    content: "";
  }
  .p_gnav_sp_btn span::before {
    top: 10px;
  }
  .p_gnav_sp_btn span::after {
    top: 28px;
  }
  /* 閉じるマーク */
  .l_gnav_inner:has(#p_gnav_sp_trigger:checked) .l_gnav_sp_head {
    opacity: 0;
  }
  .l_gnav_inner:has(#p_gnav_sp_trigger:checked)
    :is(.l_gnav_sp_headarea, .p_gnav_sp_btn span) {
    background-color: initial;
  }
  .l_gnav_inner:has(#p_gnav_sp_trigger:checked) .p_gnav_sp_btn span::before,
  .l_gnav_inner:has(#p_gnav_sp_trigger:checked) .p_gnav_sp_btn span::after {
    top: 25px;
    right: 0;
  }
  .l_gnav_inner:has(#p_gnav_sp_trigger:checked) .p_gnav_sp_btn span::before {
    transform: rotate(45deg);
  }
  .l_gnav_inner:has(#p_gnav_sp_trigger:checked) .p_gnav_sp_btn span::after {
    transform: rotate(-45deg);
  }
  /* 閉じるマーク位置 */
  .l_gnav_inner:has(#p_gnav_sp_trigger:checked) .p_gnav_sp_btn {
    position: fixed;
    top: 0;
    right: 0;
    background-color: inherit;
  }
  /* 閉じるエリア */
  .l_gnav_inner:has(#p_gnav_sp_trigger:checked) .l_gnav_spclausearea {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--nav_clausearea);
    opacity: 1;
    transition: 0.5s;

    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
  }
  /* メニュー開閉アニメーション用 */
  .l_gnav_inner:has(#p_gnav_sp_trigger:checked) .l_gnav {
    left: 0;
  }
}
/* チェックボックス非表示 */
#p_gnav_sp_trigger {
  display: none;
}

/* ///// responsive ///////////////////////////////// */
.sp {
  display: none;
}

.pc {
  display: block;
}

.br_pc {
  display: block;
}

@media (max-width: 769px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .br {
    display: block;
  }
  .br_pc {
    display: none;
  }
}
/* ///// utility ///////////////////////////////// */
.align-self-center {
  align-self: center;
}
/* /////////////////////////////////////////////////// */
