@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}

html,
*::before,
*::after {
  box-sizing: border-box;
}

main {
  display: block;
}
main a {
  text-decoration: none !important;
}

input,
input:focus,
textarea:focus {
  outline: 0;
  border-radius: 0;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=submit],
input[type=button],
input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-clear-button,
textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

select {
  outline: none;
  text-indent: 0.01px;
  text-overflow: "";
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}

select option {
  background-color: #fff;
  color: #333;
}

select::-ms-expand {
  display: none;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #828c9a;
}

img {
  vertical-align: bottom;
  border: none;
  max-width: 100%;
  height: auto;
}

iframe {
  max-width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

table {
  border-collapse: collapse;
}

/*///////////////////////////////////////////////////
//
//            ▼ ベース設定 ▼
//
///////////////////////////////////////////////////*/
BODY {
  color: #383636;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  line-height: 2;
  scroll-behavior: smooth;
}

.font-cormorant {
  font-family: "Cormorant Infant", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.font-Courgette {
  font-family: Courgette;
}

a {
  color: #000;
}

#wrapper {
  display: flex;
  background: url(../img/pc_bg.jpg) repeat center/cover;
  background-attachment: fixed;
  /* ★ 背景を固定する */
  color: var(--black, #383636);
  position: relative;
  justify-content: center;
}
@media screen and (min-width: 768px) and (max-width: 1025.999px) {
  #wrapper {
    justify-content: center;
  }
}

#main-wrapper {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  height: auto;
  position: relative;
  background: url(../img/wrapper_bg.jpg) repeat center/cover;
}
@media screen and (min-width: 768px) {
  #main-wrapper {
    position: relative;
    margin: 0;
    flex-shrink: 0;
  }
}

.hamburgerMenu-btn {
  transition: opacity 0.6s;
  opacity: 0;
  top: 3%;
  right: 5%;
  position: fixed;
  border: none;
  background: none;
  z-index: 100;
  pointer-events: auto;
  height: -moz-fit-content;
  height: fit-content;
}
.hamburgerMenu-btn.is-visible {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .hamburgerMenu-btn {
    display: none;
  }
}

.frame_tt {
  display: contents;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .frame_tt {
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    height: 100%;
    left: 0;
    margin: auto;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
  }
}
.frame_tt-in {
  display: contents;
}
@media screen and (min-width: 768px) {
  .frame_tt-in {
    align-items: flex-start;
    top: 0;
    display: flex;
    height: 100vh;
    left: 0;
    position: sticky;
    width: 100%;
  }
}

.to-top-btn {
  bottom: 1%;
  right: 5%;
  border: none;
  background: none;
  z-index: 100;
  pointer-events: auto;
  position: fixed;
  transition: opacity 0.6s;
  opacity: 0;
}
.to-top-btn.is-visible {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .to-top-btn {
    position: relative;
    right: -87%;
    bottom: -90%;
  }
}

.frame_sc {
  display: none;
}
@media screen and (min-width: 768px) {
  .frame_sc {
    display: flex;
    flex-direction: column;
    height: 100%;
    left: 0;
    margin: auto;
    width: 450px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
  }
}
@media screen and (min-width: 768px) {
  .frame_sc-in {
    align-items: flex-start;
    top: 0;
    display: flex;
    height: 100vh;
    left: 0;
    position: sticky;
    width: 100%;
  }
}

.main-wrapper-scroll {
  display: none;
}
@media screen and (min-width: 768px) {
  .main-wrapper-scroll {
    display: block;
    position: relative;
    margin-left: auto;
    top: 250px;
    right: -7%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279.999px) {
  .main-wrapper-scroll {
    display: none;
  }
}

.frame_kr {
  display: none;
}
@media screen and (min-width: 768px) {
  .frame_kr {
    display: flex;
    flex-direction: column;
    height: 100%;
    left: 0;
    margin: auto;
    width: 450px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
  }
}

.main-wrapper-bg-wrap {
  display: none;
}
@media screen and (min-width: 768px) {
  .main-wrapper-bg-wrap.top {
    align-items: flex-start;
    top: 0;
    display: flex;
    height: 100vh;
    left: 0;
    position: sticky;
    width: 100%;
  }
  .main-wrapper-bg-wrap.bottom {
    display: flex;
    height: 100vh;
    left: 0;
    position: sticky;
    width: 100%;
    align-items: flex-end;
    bottom: 0;
    margin-top: auto;
  }
}

@media screen and (min-width: 768px) {
  #fair-wrapper {
    width: 38.385vw;
    display: flex;
    align-items: start;
    justify-content: center;
    position: sticky;
    padding-top: 14vh;
    top: 0;
    height: 100vh;
  }
}

@media screen and (min-width: 768px) {
  #wedingVenue-wrapper {
    width: 38.385vw;
    display: flex;
    align-items: start;
    justify-content: center;
    position: sticky;
    top: 0;
    padding-top: 14vh;
    height: 100vh;
  }
}

section,
.section {
  width: 100%;
  height: auto;
  position: relative;
}

.l_container {
  width: 95%;
  margin: 0 auto;
  max-width: 1680px;
}

.container {
  width: 90%;
  margin: 0 auto;
  max-width: 1280px;
}

.m_container {
  width: 90%;
  margin: 0 auto;
  max-width: 1080px;
}

.s_container {
  width: 90%;
  margin: 0 auto;
  max-width: 960px;
}

.is_sp {
  display: none;
}

.is_tab {
  display: none;
}

.objectCover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  font-family: "object-fit: cover;object-position: 50% 50%;";
}

.objectContain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  font-family: "object-fit: contain;object-position: 50% 50%;";
}

.point_reader {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

/*///////////////////////////////////////////////////
//
//            ▼ 上書き ▼
//
///////////////////////////////////////////////////*/
DIV#secondArea {
  display: none;
}

DIV#contentsTitle {
  display: none;
}

DIV#mainBg {
  width: 100%;
}

DIV#contents {
  width: 100%;
  margin: 0;
  padding: 0;
  background-image: none;
}

DIV#contents H3 {
  font-weight: bold;
  line-height: 150%;
  margin: 0;
  background-image: none;
  padding: 0;
  color: var(--black, #383636);
}

UL {
  margin: 0;
}

DIV#contents H2 {
  background-image: none;
  border-bottom: none;
  padding: 0;
  color: var(--black, #383636);
}

DIV#contents DIV.detailTitle,
DIV#contents H3 {
  margin: 0;
  background-image: none;
  padding: 0;
  border-bottom: none;
  color: var(--black, #383636);
}

BODY.cke_show_borders OL,
BODY.cke_show_borders UL,
BODY.cke_show_borders TABLE,
DIV#contents P,
DIV#contents OL,
DIV#contents UL,
DIV#contents TABLE {
  margin-bottom: 0;
}

BODY.cke_show_borders H1,
BODY.cke_show_borders H2,
BODY.cke_show_borders H3,
BODY.cke_show_borders H4,
BODY.cke_show_borders H5,
BODY.cke_show_borders H6,
DIV#contents H1,
DIV#contents H2,
DIV#contents H3,
DIV#contents H4,
DIV#contents H5,
DIV#contents H6 {
  margin-bottom: 0;
}

.pagettl2,
DIV.smtEntryDetail .pagettl2,
h3 {
  display: block;
  border: none;
  padding: 0;
  background: none;
  margin-bottom: 0;
  color: var(--black, #383636);
}

.smtEntryDetail p {
  margin-bottom: 0;
  color: var(--black, #383636);
}

DIV.smtEntryDetail h3 {
  margin: 0;
}

DIV.smtEntryDetail a {
  color: var(--pink, #D38585);
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  DIV.smtEntryDetail .pagettl3,
  DIV.smtEntryDetail h3 {
    font-size: 17px !important;
  }
}

/*///////////////////////////////////////////////////
//
//            ▼ 共通 ▼
//
///////////////////////////////////////////////////*/
.c-petal {
  position: absolute;
}

.c-orn--right {
  transform: scaleX(-1);
}

p {
  font-size: 13.5px;
  font-weight: 400;
  line-height: 160%;
  /* 22.4px */
  letter-spacing: 0.28px;
}
@media screen and (min-width: 768px) {
  p {
    font-size: 15px;
  }
}

.c__title-group {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.c__title-group-label {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 160%;
  /* 22.4px */
  letter-spacing: 0.28px;
}
@media screen and (min-width: 768px) {
  .c__title-group-label {
    font-size: 16px;
  }
}
.c__title-group-main {
  color: var(--black, #383636);
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 160%;
  /* 38.4px */
  letter-spacing: 0.48px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c__title-group-main {
    font-size: 28px;
  }
}
.c__title-group-main::before {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 50%;
  width: 100%;
  height: 8px;
  z-index: -1;
  transform: translate(-50%, -50%);
  background: #E19999;
}

@media screen and (min-width: 768px) {
  button {
    cursor: pointer;
  }
}

@media screen and (min-width: 768px) {
  a {
    transition: opacity 0.3s;
  }
  a:hover {
    opacity: 0.7;
  }
}

/*///////////////////////////////////////////////////
//
//            ▼ 対象式場一覧 ▼
//
///////////////////////////////////////////////////*/
.wedingVenue {
  display: none;
}
@media screen and (min-width: 768px) {
  .wedingVenue {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 360px;
  }
  .wedingVenue-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 22px;
    font-size: min(1.1vw, 1.3rem) !important;
    font-weight: 600;
    line-height: 160%;
    /* 35.2px */
    letter-spacing: 0.44px;
    height: 4.0833vw;
  }
  .wedingVenue-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: min(3.61vw, 41px);
  }
  .wedingVenue-list-item {
    border-radius: 4.5px;
    position: relative;
  }
  .wedingVenue-list-item::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    clip-path: polygon(0% 100%, 100% 0%, 0% 0%);
    border-radius: 0 4.5px 0 0;
    top: -1%;
    left: -1%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .wedingVenue-list-item .orn {
    position: absolute;
    top: 4%;
    left: -24%;
    z-index: 1;
    color: var(--black, #383636);
    text-align: right;
    -webkit-text-stroke-width: 0.1px;
    -webkit-text-stroke-color: var(--black, #383636);
    font-family: Zeyada;
    font-size: 20.35px;
    font-weight: 400;
    line-height: 100%;
    /* 20.35px */
    letter-spacing: 1.018px;
    width: 52px;
    text-align: end;
    white-space: nowrap;
  }
  .wedingVenue-list-item button {
    width: 100%;
    border: none;
    background: none;
  }
  .wedingVenue-list-item button img {
    width: 100%;
    max-width: 214px;
  }
  .wedingVenue-list-item button hgroup {
    padding: 5px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
  }
  .wedingVenue-list-item button hgroup h3 {
    font-size: 18px;
    font-size: min(1vw, 1.1rem) !important;
    font-weight: 500;
    line-height: 150%;
    /* 28.424px */
    letter-spacing: 0.379px;
  }
  .wedingVenue-list-item button hgroup h3 span {
    font-size: 13px;
    font-size: min(0.8vw, 0.8rem);
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.268px;
  }
  .wedingVenue-list-item button hgroup svg {
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
  }
  .wedingVenue-list-item.kanto {
    border: 3px solid var(--pink, #D38585);
  }
  .wedingVenue-list-item.kanto::before {
    background: var(--pink, #D38585);
  }
  .wedingVenue-list-item.kanto button hgroup {
    background: rgba(211, 133, 133, 0.14) !important;
  }
  .wedingVenue-list-item.kanto button hgroup svg {
    color: var(--pink, #D38585);
  }
  .wedingVenue-list-item.tokai {
    border: 3px solid #E9CFC2;
  }
  .wedingVenue-list-item.tokai::before {
    background: #E9CFC2;
  }
  .wedingVenue-list-item.tokai button hgroup {
    background: rgba(233, 207, 194, 0.14) !important;
  }
  .wedingVenue-list-item.tokai button hgroup svg {
    color: #E9CFC2;
  }
  .wedingVenue-list-item.kansai {
    border: 3px solid #C2D0E9;
  }
  .wedingVenue-list-item.kansai::before {
    background: #C2D0E9;
  }
  .wedingVenue-list-item.kansai button hgroup {
    background: rgba(194, 208, 233, 0.14) !important;
  }
  .wedingVenue-list-item.kansai button hgroup svg {
    color: #C2D0E9;
  }
  .wedingVenue-list-item.all {
    border: 3px solid #BCE4C0;
  }
  .wedingVenue-list-item.all::before {
    background: #BCE4C0;
  }
  .wedingVenue-list-item.all button hgroup {
    background: rgba(194, 233, 197, 0.14);
  }
  .wedingVenue-list-item.all button hgroup svg {
    color: #BCE4C0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279.999px) {
  .wedingVenue {
    width: 63%;
  }
  .wedingVenue-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: min(1.61vw, 41px);
  }
  .wedingVenue-list-item {
    width: 100%;
  }
  .wedingVenue-list button img {
    height: 100px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/*///////////////////////////////////////////////////
//
//            ▼ 4大特典 がもらえる結婚式場のイチオシフェアをさっそくチェック！ ▼
//
///////////////////////////////////////////////////*/
.fair {
  display: none;
}
@media screen and (min-width: 768px) {
  .fair {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 70%;
    max-width: 400px;
  }
  .fair__title {
    font-size: min(1.1vw, 1.3rem) !important;
    font-weight: 600;
    line-height: 160%;
    letter-spacing: 0.44px;
    text-align: center;
  }
  .fair__title span {
    color: var(--pink, #D38585);
  }
  .fair__title span.font-cormorant {
    font-size: min(3vw, 51px);
    letter-spacing: 1.02px;
  }
  .fair__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .fair__list-item {
    width: 100%;
  }
  .fair__list-item a {
    width: 100%;
    position: relative;
    display: flex;
    padding: 14px 10px 8px 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    border-radius: 10px;
    color: var(--black, #383636);
  }
  .fair__list-item-arrow-wrap {
    position: absolute;
    width: 62px;
    height: 62px;
    background: #333;
    /* 好きな色 */
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
    border-radius: 0 10px 0 0;
    top: 0%;
    right: 0%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .fair__list-item-arrow-wrap svg {
    position: relative;
    top: -19%;
    left: 19%;
    background: none;
    fill: none;
  }
  .fair__list-item-title {
    font-size: min(0.9vw, 1.1rem) !important;
    font-weight: 700;
    line-height: 150%;
    /* 31.5px */
    letter-spacing: 0.42px;
    padding-right: 34px;
  }
  .fair__list-item-discription {
    font-size: min(0.8vw, 0.88rem) !important;
    font-weight: 500;
    line-height: 160%;
    /* 25.6px */
    color: var(--black, #383636);
    letter-spacing: 0.32px;
  }
  .fair__list-item.kanto a {
    border: 1px solid var(--pink, #D38585);
    background: #EADDDD;
  }
  .fair__list-item.kanto .fair__list-item-arrow-wrap {
    background: var(--pink, #D38585);
  }
  .fair__list-item.tokai a {
    border: 1px solid #E9CFC2;
    background: #ECE9E7;
  }
  .fair__list-item.tokai a .fair__list-item-arrow-wrap {
    background: #E9CFC2;
  }
  .fair__list-item.kansai a {
    border: 1px solid #C2D0E9;
    background: #E9EBEE;
  }
  .fair__list-item.kansai a .fair__list-item-arrow-wrap {
    background: #C2D0E9;
  }
  .fair__note {
    font-size: 14px;
    font-size: min(0.8vw, 0.9rem);
    font-weight: 500;
    line-height: 150%;
    /* 21px */
    letter-spacing: 0.28px;
    text-align: justify;
    width: 100%;
  }
}

/*///////////////////////////////////////////////////
//
//            ▼ mv ▼
//
///////////////////////////////////////////////////*/
@media screen and (min-width: 768px) {
  .mv {
    margin-top: 28px;
  }
}
.mv__bg {
  width: 100%;
}
.mv__title-group {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 88%;
  margin-inline: auto;
  padding: 7px 0 9px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.65);
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
}
.mv__title-group-orn {
  width: 18px;
  height: 21px;
  white-space: nowrap;
}
.mv__title-group-label {
  display: flex;
  align-items: center;
  gap: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink, #D38585) !important;
  font-size: 14px;
  font-weight: 500;
  line-height: 155%;
  /* 21.7px */
  letter-spacing: 0.28px;
}
@media screen and (min-width: 768px) {
  .mv__title-group-label {
    font-size: 16px;
  }
}
.mv__title-group-main {
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  line-height: 155%;
  /* 26.35px */
  letter-spacing: 0.34px;
}
@media screen and (min-width: 768px) {
  .mv__title-group-main {
    font-size: 20px;
  }
}
.mv__banner-wrapper {
  width: 92%;
  height: 110px;
  margin-inline: auto;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  perspective: 1000px;
  /* 奥行き必要 */
}
@media screen and (min-width: 768px) {
  .mv__banner-wrapper {
    height: 122px;
  }
}
.mv__banner {
  width: 100%;
  border-radius: 4px;
  border: 1.5px solid var(--pink, #D38585);
  background: #F5F5F5;
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  opacity: 0;
  transform: rotateX(-90deg);
  transition: transform 0.8s ease, opacity 0.3s ease;
}
.mv__banner.is-active {
  opacity: 1;
  transform: rotateX(0deg);
}
.mv__banner.is-leave {
  opacity: 0;
  transform: rotateX(90deg);
}
.mv__banner .petal01 {
  top: -28%;
  right: -3%;
}
.mv__banner-check {
  position: absolute;
  top: -16%;
  left: -4%;
  z-index: 1;
}
.mv__banner-note {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  height: 100%;
}
.mv__banner-title {
  display: flex;
  padding: 2px 0 2px 60px !important;
  justify-content: center;
  align-items: center;
  border-radius: 4px 4px 0 0;
  background: var(--white, #FFF);
  color: var(--pink, #D38585);
  font-size: 13px;
  font-weight: 600;
  line-height: 155%;
  /* 20.15px */
}
@media screen and (min-width: 768px) {
  .mv__banner-title {
    font-size: 16px;
  }
}
.mv__banner-box {
  padding: 8px 8px 2px 84px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.mv__banner-box-text {
  font-size: 13px;
  font-weight: 600;
  line-height: 140%;
  /* 18.2px */
}
@media screen and (min-width: 768px) {
  .mv__banner-box-text {
    font-size: 15px;
  }
}
.mv__banner-box-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mv__banner-box-inner-price {
  color: var(--pink, #D38585);
  -webkit-text-stroke-width: 0.46px;
  -webkit-text-stroke-color: var(--pink, #D38585);
  font-size: 50px;
  font-style: italic;
  font-weight: 700;
  line-height: 100%;
  /* 56.598px */
  letter-spacing: -0.566px;
}
@media screen and (min-width: 768px) {
  .mv__banner-box-inner-price {
    font-size: 64px;
    position: relative;
    top: -5px;
  }
}
.mv__banner-box-inner-price.small {
  font-size: 49.7px;
}
@media screen and (min-width: 768px) {
  .mv__banner-box-inner-price.small {
    font-size: 60px;
  }
}
.mv__banner-box-inner-unit {
  margin-left: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .mv__banner-box-inner-unit {
    margin-left: 6px;
    position: relative;
    top: -3px;
  }
}
.mv__banner-box-inner-unit span:first-of-type {
  padding-top: 1px;
  padding-left: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink, #D38585);
  font-size: 11.5px;
  font-weight: 600;
  line-height: 125%;
  /* 14.375px */
  letter-spacing: 0.23px;
  width: 32px;
  height: 18px;
  background: url(../img/bubble.png) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .mv__banner-box-inner-unit span:first-of-type {
    width: 36px;
    height: 22px;
    font-size: 13.5px;
  }
}
.mv__banner-box-inner-unit span:last-of-type {
  margin-top: 3px;
  padding-left: 4px;
  color: var(--pink, #D38585);
  text-align: center;
  font-size: 14.8px;
  font-weight: 600;
  line-height: 125%;
  /* 18.53px */
  letter-spacing: 0.296px;
}
@media screen and (min-width: 768px) {
  .mv__banner-box-inner-unit span:last-of-type {
    font-size: 16.8px;
  }
}
.mv__banner-box-inner-unit span:last-of-type.small {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .mv__banner-box-inner-unit span:last-of-type.small {
    font-size: 14px;
  }
}
.mv__banner-box-inner-present {
  margin-left: 4px;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 160%;
}
@media screen and (min-width: 768px) {
  .mv__banner-box-inner-present {
    margin-left: 6px;
    position: relative;
    top: -3px;
  }
}
.mv__banner-box-inner-present.small {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .mv__banner-box-inner-present.small {
    font-size: 14px;
  }
}

/*///////////////////////////////////////////////////
//
//            ▼ 4大特典 ▼
//
///////////////////////////////////////////////////*/
.benefit {
  padding: 0 1rem;
  padding-top: 100px;
  overflow: hidden;
}
.benefit .petal01 {
  top: 0%;
  transform: translateY(70px);
  left: 8%;
}
.benefit .petal02 {
  top: 0%;
  left: 85%;
  transform: translateY(120px);
}
.benefit .petal03 {
  top: 0%;
  transform: translateY(420px);
  left: -5%;
}
.benefit .petal04 {
  bottom: 2%;
  left: -4%;
  transform: scaleX(-1) translateY(-30px);
}
.benefit .petal05 {
  bottom: 0%;
  transform: translateY(-90px);
  left: 88%;
}
.benefit .petal-blur01 {
  top: 0%;
  left: 78%;
  transform: translateY(52px);
}
.benefit .petal-blur02 {
  top: 0%;
  left: 4%;
  transform: translateY(198px);
}
.benefit__title-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.benefit__title-group-label {
  font-size: 22px;
  font-weight: 400;
  line-height: 160%;
  /* 26.792px */
  letter-spacing: 0.335px;
}
@media screen and (min-width: 768px) {
  .benefit__title-group-label {
    font-size: 18px;
  }
}
.benefit__title-group-orn {
  width: 15.549px;
  height: 19.137px;
}
.benefit__title-group-main {
  position: relative;
  z-index: 1;
  margin-top: -8px;
  position: relative;
  z-index: 1;
}
.benefit__title-group-main span:first-of-type {
  font-size: 21.5px;
  font-weight: 600;
  line-height: 160%;
  /* 35.008px */
  letter-spacing: 0.438px;
}
@media screen and (min-width: 768px) {
  .benefit__title-group-main span:first-of-type {
    font-size: 24px;
  }
}
.benefit__title-group-main span:nth-of-type(2) {
  color: var(--pink, #D38585);
  -webkit-text-stroke-width: 0.91px;
  -webkit-text-stroke-color: var(--pink, #D38585);
  font-size: 74px;
  font-style: italic;
  font-weight: 700;
  line-height: 100%;
  /* 74px */
  letter-spacing: 1.48px;
  margin-inline: 5px;
}
@media screen and (min-width: 768px) {
  .benefit__title-group-main span:nth-of-type(2) {
    font-size: 78px;
  }
}
.benefit__title-group-main span:last-of-type {
  font-size: 34px;
  font-weight: 500;
  line-height: 160%;
  /* 54.203px */
  letter-spacing: 0.678px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .benefit__title-group-main span:last-of-type {
    font-size: 38px;
  }
}
.benefit__title-group-main span:last-of-type::before {
  content: "";
  position: absolute;
  bottom: -20%;
  left: 50%;
  width: 100%;
  height: 9px;
  z-index: -1;
  transform: translate(-50%, -50%);
  background: var(--pink, #D38585);
}
.benefit__tablist-wrap {
  margin-top: 56px;
  position: relative;
  z-index: 1;
}
.benefit__tablist-wrap .benefit__tablist {
  display: flex;
  width: 100%;
}
.benefit__tab {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 7px 1px 5px;
  border-radius: 8px 8px 0 0;
  border: solid var(--pink, #D38585);
  border-width: 1px 0 1px 1px;
  background: #EDEDED;
  position: relative;
}
@media screen and (min-width: 768px) {
  .benefit__tab {
    border-width: 2px 0 2px 2px;
  }
}
.benefit__tab svg {
  color: var(--black, #383636) !important;
}
.benefit__tab-bubble {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translate(-50%, -100%);
}
@media screen and (min-width: 768px) {
  .benefit__tab-bubble {
    width: 100px;
  }
}
.benefit__tab:last-of-type {
  border-width: 1px;
}
@media screen and (min-width: 768px) {
  .benefit__tab:last-of-type {
    border-width: 2px;
  }
}
.benefit__tab.is-active {
  color: var(--pink, #D38585);
  border-bottom: 0;
  background: var(--white, #FFF);
  color: var(--pink, #D38585);
}
.benefit__tab.is-active .benefit__tab-text {
  color: var(--pink, #D38585);
}
.benefit__tab-text {
  text-align: center;
  font-size: 9.8px;
  font-weight: 500;
  line-height: 160%;
  color: var(--black, #383636);
  /* 16px */
}
@media screen and (min-width: 768px) {
  .benefit__tab-text {
    font-size: 12px;
  }
}
.benefit__tab-panel {
  display: none;
  width: 100%;
  border-radius: 0 0 8px 8px;
  border-right: 1px solid var(--pink, #D38585);
  border-bottom: 1px solid var(--pink, #D38585);
  border-left: 1px solid var(--pink, #D38585);
  background: var(--white, #FFF);
  padding: 14px 22px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.benefit__tab-panel.is-active {
  display: flex;
}
@media screen and (min-width: 768px) {
  .benefit__tab-panel {
    border-right: 2px solid var(--pink, #D38585);
    border-bottom: 2px solid var(--pink, #D38585);
    border-left: 2px solid var(--pink, #D38585);
  }
}
.benefit__tab-panel-title {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 160%;
  /* 24px */
  letter-spacing: 0.3px;
}
@media screen and (min-width: 768px) {
  .benefit__tab-panel-title {
    font-size: 17px;
  }
}
.benefit__tab-panel-img {
  border-radius: 3px;
  width: 100%;
}
.benefit__tab-panel-text {
  font-weight: 400;
  line-height: 160%;
}
.benefit__note {
  margin-top: 13px;
  font-size: 12px;
  font-weight: 300;
  line-height: 160%;
  /* 19.2px */
  letter-spacing: 0.24px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .benefit__note {
    font-size: 14px;
  }
}

/*///////////////////////////////////////////////////
//
//            ▼ ピックアップ会場 ▼
//
///////////////////////////////////////////////////*/
.pickup {
  margin-top: 28px;
  background: url(../img/pickUp_bg.jpg) repeat center/cover;
  padding: 30px 0;
  overflow: hidden;
}
.pickup__description {
  margin-top: 18px;
  padding: 0 1rem !important;
}
.pickup__slider-wrap {
  margin-top: 22px;
  padding-left: 1rem;
  display: flex;
  align-items: center;
  gap: 11px;
  will-change: transform;
}
.pickup__slider {
  position: relative;
  display: flex;
  flex: 0 0 310px;
  /* スライド幅を固定 */
  padding: 14px 18px 18px 18px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  border: 1.5px solid var(--pink, #D38585);
  background: var(--white, #FFF);
}
@media screen and (min-width: 768px) {
  .pickup__slider {
    flex: 0 0 320px;
  }
}
.pickup__slider-title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 41px;
  text-align: center;
  font-size: 17px !important;
  font-weight: 500;
  line-height: 140%;
  /* 23.8px */
  letter-spacing: 0.34px;
}
@media screen and (min-width: 768px) {
  .pickup__slider-title {
    font-size: 19px !important;
  }
}
.pickup__slider-bth {
  position: absolute;
  top: 105px;
  right: 25px;
  background: none;
  border: none;
}
.pickup__slider-map {
  margin-top: 6px;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 160%;
  /* 20.8px */
  letter-spacing: 0.26px;
}
@media screen and (min-width: 768px) {
  .pickup__slider-map {
    font-size: 15px;
  }
}
.pickup__slider-img {
  border-radius: 12px;
}
.pickup__slider-link-wrap {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
}
.pickup__slider-link-wrap .pickup__slider-link {
  display: flex;
  padding: 14px 5px;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
  border-radius: 8px;
  /* 19.6px */
  letter-spacing: 0.28px;
  border: 1.5px solid var(--pink, #D38585);
}
@media screen and (min-width: 768px) {
  .pickup__slider-link-wrap .pickup__slider-link {
    font-size: 15px;
  }
}
.pickup__slider-link-wrap .pickup__slider-link:first-of-type {
  background: var(--pink, #D38585);
  color: var(--white, #FFF);
}
.pickup__slider-link-wrap .pickup__slider-link:last-of-type {
  background: var(--white, #FFF);
  color: var(--pink, #D38585);
}
.pickup__slider-category-wrap {
  display: flex;
  align-items: center;
  gap: 7px;
  align-self: stretch;
}
.pickup__slider-category {
  display: flex;
  padding: 3px 3px 3px 2px;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.pickup__slider-category svg {
  display: flex;
  width: 16px;
  height: 16px;
  padding: 2.831px 2.464px 2.295px 2.2px;
  justify-content: center;
  align-items: center;
  background: var(--pink, #D38585);
  border-radius: 100vmax;
  color: var(--white, #FFF);
}
.pickup__slider-category span {
  font-size: 10px;
  font-weight: 600;
  line-height: 160%;
  /* 16px */
  letter-spacing: 0.2px;
}
@media screen and (min-width: 768px) {
  .pickup__slider-category span {
    font-size: 10.5px;
  }
}
.pickup__slider-pagenation {
  margin-top: 10px;
  text-align: center;
  color: var(--pink, #D38585);
  font-size: 12px;
  font-weight: 600;
  line-height: 160%;
  /* 19.2px */
  letter-spacing: 0.24px;
}
.pickup-modal-wrap {
  background: rgba(232, 232, 232, 0.63);
  -webkit-backdrop-filter: blur(5.8000001907px);
          backdrop-filter: blur(5.8000001907px);
  position: fixed;
  height: 100vh;
  width: 100%;
  max-width: 450px;
  z-index: 200;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
  justify-content: flex-start;
  display: flex;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
  /* 中央寄せではなく左揃え */
}
.pickup-modal-wrap.show {
  visibility: visible;
  opacity: 1;
}
.pickup-modal {
  width: 83%;
  max-width: 310px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
}
.pickup-modal__slider-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
  gap: 10px;
  align-items: stretch;
}
.pickup-modal__slider-in {
  width: 100%;
  flex: 0 0 310px;
  padding: 0 5px;
}
.pickup-modal__slider {
  padding: 14px 15px;
  gap: 0px;
  background: url(../img/pickUp_bg.jpg) repeat center/cover;
  border: 1.5px solid var(--white, #FFF);
  margin: 0;
  transition: transform 0.5s ease;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .pickup-modal__slider {
    padding: 14px 10px;
  }
}
.pickup-modal__slider.active {
  opacity: 1;
  pointer-events: auto;
}
.pickup-modal__slider.prev-slide {
  transform: translateX(-100%);
}
.pickup-modal__slider.current-slide {
  transform: translateX(0);
}
.pickup-modal__slider .pickup__slider-category-wrap {
  margin-top: 10px;
}
.pickup-modal__slider .pickup__slider-description {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}
@media screen and (min-width: 768px) {
  .pickup-modal__slider .pickup__slider-description {
    font-size: 15px;
  }
}
.pickup-modal__slider-link-wrap {
  margin-top: auto;
}
.pickup-modal__slider-btn {
  top: -11px;
  right: -5px;
  z-index: 10;
}
.pickup-modal__slider-img {
  height: 164px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 10px;
}
.pickup-modal__slider-arrow {
  position: absolute;
  top: 50%;
  left: 3%;
  transform: scaleX(-1);
  z-index: 2;
  color: var(--pink, #D38585);
}
.pickup-modal__slider-arrow.mirror {
  transform: scaleX(1);
  right: 3%;
  left: auto;
}
@media screen and (min-width: 768px) {
  .pickup-modal__slider-arrow {
    cursor: pointer;
    width: 18px;
    height: 21px;
  }
}

/*///////////////////////////////////////////////////
//
//            ▼ 対象会場 ▼
//
///////////////////////////////////////////////////*/
.venues {
  padding: 0 1rem;
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
  .venues {
    padding: 0 2rem;
    padding-top: 30px;
  }
}
.venues .petal-blur01 {
  top: 0%;
  left: 71%;
}
.venues__category-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.venues__category-area-title, .venues__category-charm-title {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  line-height: 160%;
  /* 19.2px */
  letter-spacing: 0.24px;
}
@media screen and (min-width: 768px) {
  .venues__category-area-title, .venues__category-charm-title {
    font-size: 16px;
  }
}
.venues__category-area-tabList, .venues__category-charm-tabList {
  margin-top: 10px;
  display: flex;
  gap: 8px;
}
.venues__category-area-tabList li {
  width: 25%;
}
.venues__category-area-tabList li button {
  display: flex;
  padding: 8px 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 5px;
  border: 1px solid var(--pink, #D38585);
  background: var(--white, #FFF);
  color: var(--pink, #D38585);
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  /* 22.4px */
  letter-spacing: 0.32px;
}
@media screen and (min-width: 768px) {
  .venues__category-area-tabList li button {
    font-size: 20px;
    padding: 10px 10px;
  }
}
.venues__category-area-tabList li button.active {
  background: var(--pink, #D38585);
  color: var(--white, #FFF);
}
.venues__category-charm-tabList li {
  width: 33.33%;
}
.venues__category-charm-tabList li button {
  width: 100%;
  display: flex;
  padding: 5px 0;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 100vmax;
  border: 1px solid var(--pink, #D38585);
  background: var(--white, #FFF);
}
@media screen and (min-width: 768px) {
  .venues__category-charm-tabList li button {
    padding: 8px 0;
  }
}
.venues__category-charm-tabList li button svg {
  display: flex;
  width: 19px;
  height: 19px;
  padding: 3px 2px 2px 2px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 100vmax;
  border: 0.95px solid var(--pink, #D38585);
  background: var(--pink, #D38585);
  color: var(--white, #FFF);
}
@media screen and (min-width: 768px) {
  .venues__category-charm-tabList li button svg {
    width: 22px;
    height: 22px;
  }
}
.venues__category-charm-tabList li button span {
  color: var(--pink, #D38585);
  font-size: 13px;
  font-weight: 600;
  line-height: 100%;
  /* 20.8px */
  letter-spacing: 0.26px;
}
@media screen and (min-width: 768px) {
  .venues__category-charm-tabList li button span {
    font-size: 15px;
  }
}
.venues__category-charm-tabList li button.active {
  background: var(--pink, #D38585);
}
.venues__category-charm-tabList li button.active svg {
  background: var(--white, #FFF);
  color: var(--pink, #D38585);
}
.venues__category-charm-tabList li button.active span {
  color: var(--white, #FFF);
}
.venues__list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.venues__card {
  display: flex;
  padding: 16px 13px 18px;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 12px;
  background: url(../img/pickUp_bg.jpg) repeat center/cover;
}
@media screen and (min-width: 768px) {
  .venues__card {
    padding: 20px 13px 18px;
  }
}
.venues__card-title {
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 17px !important;
  font-weight: 500;
  line-height: 140%;
  /* 23.8px */
  letter-spacing: 0.34px;
}
@media screen and (min-width: 768px) {
  .venues__card-title {
    font-size: 20px;
  }
}
.venues__card-map {
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 160%;
  /* 20.8px */
  letter-spacing: 0.26px;
}
.venues__card-img-link {
  border-radius: 12px;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .venues__card-img-link {
    font-size: 20px;
  }
  .venues__card-img-link:hover {
    opacity: 1;
  }
  .venues__card-img-link:hover .venues__card-img {
    transform: scale(1.03);
  }
}
.venues__card-img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .venues__card-img {
    transition: transform 0.3s;
  }
}
.venues__card-category-wrap {
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 7px;
  width: 100%;
}
.venues__card-category-wrap span {
  font-size: 11px;
  font-weight: 600;
  line-height: 160%;
  /* 17.6px */
  letter-spacing: 0.22px;
}
@media screen and (min-width: 768px) {
  .venues__card-category-wrap span {
    font-size: 13px;
  }
}
.venues__card-category {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.venues__card-category-icon {
  display: flex;
  width: 18px;
  height: 18px;
  padding: 3px 2px 2px;
  justify-content: center;
  align-items: center;
  border-radius: 100vmax;
  background: var(--pink, #D38585);
  color: var(--white, #FFF);
}
@media screen and (min-width: 768px) {
  .venues__card-category-icon {
    width: 18px;
    height: 18px;
  }
}
.venues__card-category span {
  font-size: 12px;
  /* 19.2px */
  letter-spacing: 0.24px;
}
@media screen and (min-width: 768px) {
  .venues__card-category span {
    font-size: 13px;
  }
}
.venues__card-description {
  width: 100%;
  font-weight: 500;
  line-height: 180%;
  /* 23.4px */
  letter-spacing: 0.26px;
}
.venues__card-link-wrap {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
}
.venues__card-link-wrap .venues__card-link {
  display: flex;
  padding: 14px 5px;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
  border-radius: 8px;
  /* 19.6px */
  letter-spacing: 0.28px;
  border: 1.5px solid var(--pink, #D38585);
}
@media screen and (min-width: 768px) {
  .venues__card-link-wrap .venues__card-link {
    font-size: 16px;
  }
}
.venues__card-link-wrap .venues__card-link:first-of-type {
  background: var(--pink, #D38585);
  color: var(--white, #FFF);
}
.venues__card-link-wrap .venues__card-link:last-of-type {
  background: var(--white, #FFF);
  color: var(--pink, #D38585);
}

/*///////////////////////////////////////////////////
//
//            ▼ キャンペーン参加方法 ▼
//
///////////////////////////////////////////////////*/
.campaign {
  padding: 0 1rem;
  padding-bottom: 58px;
  padding-top: 54px;
}
@media screen and (min-width: 768px) {
  .campaign {
    padding: 0 2rem;
    padding-top: 54px;
    padding-bottom: 108px;
  }
}
.campaign__description {
  margin-top: 16px;
}
.campaign__note {
  margin-top: 9px;
  font-size: 12px;
  font-weight: 300;
  line-height: 160%;
  /* 19.2px */
  letter-spacing: 0.24px;
}
@media screen and (min-width: 768px) {
  .campaign__note {
    font-size: 14px;
  }
}
.campaign__flow {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.campaign__flow-item {
  display: flex;
  padding: 12px 24px 14px 24px;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  border: 1.5px solid var(--pink, #D38585);
  background: var(--white, #FFF);
}
.campaign__flow-item-title {
  margin-top: 8px !important;
  text-align: center;
  font-size: 18px !important;
  font-weight: 600;
  line-height: 160%;
  /* 28.8px */
  letter-spacing: 0.36px;
}
@media screen and (min-width: 768px) {
  .campaign__flow-item-title {
    font-size: 20px !important;
  }
}
.campaign__flow-item-img {
  margin-top: 10px;
}
.campaign__flow-item-description {
  margin-top: 14px !important;
}
.campaign__link {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}
.campaign__link-item {
  width: 100%;
}
.campaign__link-item a, .campaign__link-item button {
  width: 100%;
  display: flex;
  padding: 17px 15px;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  height: 76px;
  border: 1.5px solid var(--pink, #D38585);
  background: var(--white, #FFF);
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  /* 22.4px */
  letter-spacing: 0.32px;
  color: var(--pink, #D38585);
}
@media screen and (min-width: 768px) {
  .campaign__link-item a, .campaign__link-item button {
    font-size: 18px;
  }
}
.campaign__link-item-arrow {
  color: var(--pink, #D38585);
}
@media screen and (min-width: 768px) {
  .campaign__link-item-arrow {
    width: 20px;
    height: 22px;
  }
}
.campaign__link-item:first-of-type {
  color: var(--white, #FFF);
}
.campaign__link-item:first-of-type a {
  background: var(--pink, #D38585);
  color: var(--white, #FFF);
}
.campaign__link-item:first-of-type .campaign__link-item-arrow {
  color: var(--white, #FFF);
}

/*///////////////////////////////////////////////////
//
//            ▼ ハンバーガーメニュー ▼
//
///////////////////////////////////////////////////*/
.hamburgerMenu__title-group-label {
  font-size: 17px !important;
}
.hamburgerMenu__list-wrap {
  display: none;
  /* 初期は非表示 */
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 100%;
  max-width: 450px;
  height: 100svh;
  background: rgba(232, 232, 232, 0.63);
  -webkit-backdrop-filter: blur(5.8000001907px);
          backdrop-filter: blur(5.8000001907px);
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}
.hamburgerMenu__list-wrap.is-open {
  display: flex;
}
.hamburgerMenu__btn {
  position: absolute;
  top: -6px;
  right: -6px;
  background: none;
  border: none;
}
.hamburgerMenu__list {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 300px;
  padding: 27px 18px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  border-radius: 12px;
  background: var(--white, #FFF);
}
.hamburgerMenu__list ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}
.hamburgerMenu__list ul li {
  align-self: stretch;
  border-bottom: 1px solid var(--black, #383636);
}
.hamburgerMenu__list ul li button {
  display: flex;
  padding: 0 8px 11px 8px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  color: var(--black, #383636);
  font-size: 15px;
  font-weight: 400;
  line-height: 160%;
  /* 24px */
  letter-spacing: 0.3px;
  width: 100%;
  background: none;
  border: none;
}/*# sourceMappingURL=style.css.map */