@charset "UTF-8";
/*** The new CSS Reset - version 1.0.0 (last updated 8.7.2021) ***/
/* ブラウザのUAスタイルシートのすべてのスタイルを削除します、displayは除く */
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}

/* box-sizingの優先値 */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* リストのスタイル（箇条書き・番号）を削除します */
ol,
ul {
  list-style: none;
}

/* 画像がコンテナを超えないようにするため */
video,
img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* テーブルのセル間のスペースを削除します */
table {
  border-collapse: collapse;
}

button,
a {
  cursor: pointer;
}

figure {
  margin: 0;
}

:root {
  --textBlack: #1D2228;
  --textWhite: #fff;
  --primary: #C7002A;
  --bg: #F7EBDE;
  --cntBg: #302F2F;
  --gray: #7D95A7;
  --red: #FF0000;
  --white: #fff;
  --bgDark: #F9EAD6;
  --line: #06C755;
  --tel: #E6B15F;
  --gold: #C79F62;
}

.trans {
  -webkit-transition: 0.6s ease-in;
  transition: 0.6s ease-in;
}
.trans.is-hdn {
  opacity: 0;
}

body {
  overflow-x: clip;
  margin: 0 auto;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif !important;
  -webkit-text-size-adjust: 100%;
  font-weight: 400;
  word-wrap: break-word;
  color: var(--textBlack);
  background-color: var(--bg);
}

@media screen and (max-width: 842px) {
  .is-pc {
    display: none;
  }
}

.is-sp {
  display: none;
}
@media screen and (max-width: 842px) {
  .is-sp {
    display: block;
  }
}

h2.title {
  position: relative;
  margin-top: 34px;
}
h2.title .en {
  position: absolute;
  top: -34px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  color: #252525;
  text-align: center;
  font-family: Oswald;
  font-size: 70px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 70px */
  letter-spacing: 4.9px;
  opacity: 0.5;
  mix-blend-mode: screen;
  z-index: 5;
}
h2.title .ja {
  position: relative;
  z-index: 15;
  -webkit-transform: translateZ(1px);
          transform: translateZ(1px);
}
h2.title .ja img {
  position: relative;
  z-index: 15;
}

.wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  z-index: 15;
}

.fixed_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}
@media screen and (max-width: 414px) {
  .fixed_bg {
    display: none;
  }
}
.fixed_bg img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom center;
     object-position: bottom center;
  width: 100%;
  height: 100%;
}

main {
  position: relative;
  /* 中央の要素 */
  width: 100%;
  max-width: 480px;
  min-height: 100dvh;
  margin-left: auto;
  background-color: var(--white);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; /* 余白を均等に分配 */
  z-index: 15;
}
@media screen and (max-width: 1375px) {
  main {
    margin: 0 auto;
  }
}

.block-left {
  position: sticky;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: calc((100% - 480px) / 2);
  height: 100dvh;
}
@media screen and (max-width: 1200px) {
  .block-left {
    display: none;
  }
}

.block-right {
  position: sticky;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: calc((100% - 480px) / 2);
  height: 100dvh;
}
@media screen and (max-width: 1375px) {
  .block-right {
    display: none;
  }
}

picture {
  display: block;
}
picture img {
  width: 100%;
}

img.is--pc,
br.is--pc {
  display: inline;
}
@media screen and (max-width: 834px) {
  img.is--pc,
  br.is--pc {
    display: none;
  }
}
img.is--sp,
br.is--sp {
  display: none;
}
@media screen and (max-width: 834px) {
  img.is--sp,
  br.is--sp {
    display: inline;
  }
}
img.is--mob,
br.is--mob {
  display: none;
}
@media screen and (max-width: 414px) {
  img.is--mob,
  br.is--mob {
    display: inline;
  }
}

span.dvs {
  display: inline-block;
}

.hov-opacity-70 {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (hover: hover) {
  .hov-opacity-70:hover {
    opacity: 0.7;
  }
}

.green-shadow {
  -webkit-box-shadow: 0px 0px 12px 0px var(--line), 0px 1px 4px 0px rgba(0, 0, 0, 0.45) inset;
          box-shadow: 0px 0px 12px 0px var(--line), 0px 1px 4px 0px rgba(0, 0, 0, 0.45) inset;
}

.orange-shadow {
  -webkit-box-shadow: 0px 0px 12px 0px #E6B15F, 0px 1px 4px 0px rgba(0, 0, 0, 0.45) inset;
          box-shadow: 0px 0px 12px 0px #E6B15F, 0px 1px 4px 0px rgba(0, 0, 0, 0.45) inset;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  padding: 8px;
  background-color: var(--white);
  z-index: 1000;
}
.header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header_logo {
  display: block;
  height: 48px;
  margin-left: 8px;
}
.header_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media screen and (max-width: 1200px) {
  .header_button {
    gap: 4px;
  }
}
.header_button .buttonbox {
  width: 128px;
}

.footer {
  background-color: var(--bg);
}
.footer_inner {
  padding: 26px 0;
}
.footer_logo .image {
  width: 150px;
  margin: 0 auto;
}
.footer_logo .image img {
  width: 100%;
  height: auto;
}
.footer_logo .storename {
  margin-top: 10px;
  color: #410F1F;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(15px, 1.1875vw + 0.2rem, 19px);
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.05px;
}
.footer_content {
  padding: 16px 0;
  background-color: #64DAD2;
}
.footer_content .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--white);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(11px, 0.875vw + 0.2rem, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.77px;
}

.block-left .left_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.block-left .left_content .image {
  width: 230px;
}

.block-right .right {
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  width: 100%;
  max-width: 443px;
  padding: 87px 0;
}
.block-right .right .image {
  max-width: 184px;
  margin: 0 auto 50px;
}
.block-right .right_content .menulist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px 0;
  width: 100%;
  max-width: 270px;
  margin: 0 auto;
}
.block-right .right_content .menulist .listitem {
  -webkit-transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (hover: hover) {
  .block-right .right_content .menulist .listitem:hover a span {
    color: #F35484;
  }
}
.block-right .right_content .menulist .listitem.current {
  opacity: 1;
}
.block-right .right_content .menulist .listitem.current a {
  padding-left: 24px;
}
.block-right .right_content .menulist .listitem.current a::before {
  opacity: 1;
  visibility: visible;
}
.block-right .right_content .menulist .listitem.current a span {
  color: #F35484;
}
.block-right .right_content .menulist .listitem a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 12px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.block-right .right_content .menulist .listitem a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 12px;
  height: 15px;
  background-image: url("../img/common/ico_menu_arrow.svg");
  background-size: contain;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
}
.block-right .right_content .menulist .listitem a .en {
  color: #410F1F;
  font-family: "Oswald";
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.12px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.block-right .right_content .menulist .listitem a .ja {
  color: #410F1F;
  font-family: "Zen Maru Gothic";
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 1.19px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}