@charset "UTF-8";

.pc {
  display: block;
}

.sp {
  display: none;
}

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

  .sp {
    display: block;
  }
}

/* =========================================================
reset
========================================================= */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: inherit;
  text-decoration: none;
  display: block;
}

/* =========================================================
base
========================================================= */
html {
  scroll-padding-top: 100px;
  font-size: 62.5%;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: auto;
  overflow-x: hidden;
}

main {
  background-color: #f9f9f9;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.6;
  color: #333333;
  overflow-x: hidden;
  scroll-behavior: smooth;
  width: 500px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 5px 2px 8px 5px rgb(185 185 185 / 30%);
}

@media screen and (max-width: 550px) {
  body {
    min-width: 100vw;
  }
}

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

a {
  color: #333;
  text-decoration: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.bold {
  font-weight: 700;
}

figure {
  line-height: 0;
}

a:hover {
  opacity: 0.6;
  transition: opacity 0.2s ease-in-out;
}

.mb5 {
  margin-bottom: 5px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb60 {
  margin-bottom: 60px;
}

/* =========================================================
layout
========================================================= */

body {
  background-attachment: fixed;
}

body:before {
  position:fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index:-1;
  width:2000px;
  height:3050px;
  background:url("../images/bg.jpg") no-repeat #FCF8F8;
  -webkit-background-size:contain;
  background-size:contain;
  content:"";
}

.cont-wrap {
  width: 95%;
  text-align: center;
  margin: auto;
}

@media screen and (max-width: 550px) {
  main {
    width: 100%;
  }
}

.main {
  width: 100%;
  /* max-width: 500px; */
  margin: 0 auto;
  background: #fff;
  position: relative;
}

@media screen and (max-width: 550px) {
  .body-wrap {
    width: 100vw;
  }
}

.body-wrap {
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;

}

/*Google Chrome、Safariへの対応*/
.body-wrap::-webkit-scrollbar {
  display: none;
}

.mv p {
  margin: 5px 15px;
  line-height: 1.4;
}


/* =========================================================
header
========================================================= */
header .logo {
  text-align: center;
  background: #fff;
  padding: 2px 0 3px;
    width: 120px;
}

/* =========================================================
day
========================================================= */
.day-wrap {
  padding: 0px;
}

.day-inner {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.day-txt {
  position: absolute;
  bottom: 14%;
  right: 11.5%;
  width: 10%;
  font-size: 32px;
  font-weight: 900;
  color: #e33b42;
  line-height: 1;
  letter-spacing: 1px;
}

.day-miniArea {
  width: 100%;
  background: #c6b7d8;
  padding: 20px;
  text-align: center;
}

.day-miniArea_wrap {
  border: 2px solid #fff;
  padding: 20px;
  font-size: clamp(24px, 2vw, 26px);
  color: #fff;
  font-family: "HonokaShinMaru", sans-serif;
  line-height: 1.5;
}

.day-miniArea_wrap .js_CountdownDay {
  /* font-size: clamp(40px, 4vw, 50px);
  line-height: 1; */
}

.day-miniArea_sub {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 10px;
  background-color: #fff;
  color: #333;
  border-radius: 10px;
  font-size: clamp(22px, 2vw, 24px);
}

@media screen and (max-width: 550px) {
  .day-txt {
    bottom: 13%;
    font-size: clamp(14px, 6vw, 40px);
  }

  .day-miniArea {
    /* font-size: min(4vw, 30px); */
  }

  .day-miniArea {
    padding: 15px;
  }

  .day-miniArea_wrap {
    padding: 20px;
  }

  .day-miniArea_sub {
    padding: 5px 20px;
    /* font-size: clamp(22px, 3vw, 36px); */
  }
}

/* =========================================================
mv cta
========================================================= */

.mv img {
  width: 100%;
  display: block;
}

.pznt_txt {
  text-align: left;
  font-size: 7px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.pznt_txt a {
  display: inline;
  color: #0000ff;
}

.mv {
  position: relative;
}

.mv span {
  position: absolute;
  width: 100%;
  height: 19%;
  bottom: 0;
  left: 0;
  cursor: pointer;
}

/* =========================================================
common parts
========================================================= */

.btn_reservation {
  margin: 0 auto 5%;
}

.btn a {
  width: 90%;
  margin: auto;
}

.btn a:hover {
  opacity: 1 !important;
  transform: scale(0.97, 0.97);
  /* ボタンを小さくする */
  transition: transform 0.2s ease-in-out;
  /* アニメーション効果 */

}

/* ----------------------------------------------------
    フローティング
---------------------------------------------------- */
.floating_btn {
  display: flex;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.5);
  /* position: sticky; */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 0 0;
  z-index: 1000;
  opacity: 0;
  /* 初期は非表示 */
  pointer-events: none;
  /* 非表示中はクリック不可 */
  transition: opacity 0.4s ease;
}


.floating_btn .btn {
  padding: 0;
  width: 42rem;
}

/* JSで追加されるクラス */
.floating_btn.show {
  opacity: 1;
  pointer-events: auto;
}

.floating_btn a {
  margin: 0;
  width: 100%;
}

@media screen and (max-width: 550px) {
  .floating_btn .btn {
    width: 80%;
  }
}

/* =========================================================
pznt
========================================================= */
.pznt {
    position: relative;
}

.pznt .btn {
  position: absolute;
  top: 81%;
  bottom: auto;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}


/* =========================================================
free
========================================================= */
.free .slick-dots {
  display: none !important;
}

.free .slick-dotted.slick-slider{
	margin-bottom: 0;
}


/* =========================================================
plan
========================================================= */
.plan .slick-dots {
  display: none !important;
}

.plan .slick-dotted.slick-slider{
	margin-bottom: 0;
}


/* =========================================================
furisode
========================================================= */

.furisode {
  position: relative;
}


.furisode .slider03 .slick-next {
  top: 37%;
}

.furisode .slider03 .slick-prev {
  top: 37%;
}


.furisode .slide-item {
  position: relative;
  padding: 0;
}
.furisode a.modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.furisode a.modal .all01 {
    position: absolute;
    width: 54%;
    top: 36%;
    left: 27%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.furisode a.modal .all02 {
  position: absolute;
  width: 49%;
  top: 35%;
  left: 28%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.furisode a.modal .all03 {
  position: absolute;
  width: 50%;
  top: 40%;
  left: 29%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.furisode a.modal .all04 {
  position: absolute;
  width: 47%;
  top: 35%;
  left: 30%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.furisode a.modal .all05 {
  position: absolute;
  width: 48%;
  top: 36%;
  left: 28%;
  transform: translate(-50%, -50%);
  z-index: 3;
}


.furisode a.modal img {
  width: 100%;
}

.furisode .btn {
  position: absolute;
  top: 80%;
  bottom: auto;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}

.furisode .slick-dots {
  display: none !important;
}

.furisode .slick-dotted.slick-slider {
  margin-bottom: 0;
}


/* =========================================================
furisode modal
========================================================= */

.furisode-modal-items {
  display: none;
}


/* =========================================================
benefits_early
========================================================= */
.benefits {
padding: 0 0 28px;
  background-image: url(../images/benefits-bg.jpg);
  background-size: 110% auto;
  background-repeat: no-repeat;
  background-position: top center;
}

.benefits h2 {
  margin-bottom: -55px;
  left: -13px;
  top: 18px;
}

@media screen and (max-width: 550px) {
  .benefits h2 {
    margin-bottom: -12vw;
	top: 3vw;
  }
}

.notes_txt {
  font-size: 12px;
  text-align: left;
  margin-top: 8px;
}

@media screen and (max-width: 550px) {
.notes_txt {
  font-size: 2.4vw;
}
}


.benefits .day-txt {
  position: absolute;
  bottom: 22%;
  right: 9%;
  width: 15%;
  font-size: 36px;
  font-weight: 700;
  color: #e33b42;
  line-height: 1;
  letter-spacing: 1px;
}

@media screen and (max-width: 550px) {
  .benefits .day-txt {
    font-size: 7.6vw;
  }
}

/* =========================================================
Special-event
========================================================= */

.Special-event_ttl {
  background-color: #fffef4;
  padding-bottom: 40px;
}

.Sevent_ttl {
  padding: 5% 0 0;
}

.ttl_event1 img {
  width: 99%;
}

.btn02 {
  position: relative;
}

.event_cta {
  width: 76%;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}

@media screen and (max-width: 550px) {
  .Sevent_ttl .kaisai {
    width: 40%;
  }
}

.cta {
  position: relative;
}

.cta .btn {
  width: 85%;
  position: absolute;
  bottom: 24%;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}

.collection .cont-wrap {
  position: absolute;
  top: 75%;
  left: 0;
  right: 0;
  margin: auto;
}

.movie_cont {
  margin-top: -0.1vw;
  position: relative;
}

.movie {
  position: absolute;
  bottom: 5%;
  left: 0;
  right: 0;
  margin: auto;

}

.movie video {
  border-radius: 20px;
  width: 90%;
}

.event1 h2 {
  position: relative;
}

.event1_01 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.event1 .notes_txt {
  margin-left: 20px;
}

.event1 {
  position: relative;
}

.event1 .btn {
  position: absolute;
  top: 90%;
  bottom: auto;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}

.event2 .slider01{
position: relative;
}

.event2 .slider01_inner {
  width: 100%;
  position: absolute;
  top: 12%;
  bottom: 0;
  left: 0;
  right: 0;
}

.event2 .slider01 .slick-dots {
  display: none !important;
}


.event2 .slider01 .slick-prev {
  top: 47%;
  left: 1%;
  opacity: 0.6;
  width: 30px;
  height: 30px;
}

.event2 .slider01 .slick-next {
  top: 47%;
  right: 0;
  opacity: 0.6;
  width: 30px;
  height: 30px;
}

.event3 {
  position: relative;
}

.ev3_btn{
  position: absolute;
  display: flex;
  top: 15.5%;
  right: 0;
  left: 0;
  margin: auto;
}

.ev3_btn img{
  width: 100%;
}

.ev3_im1{
position: absolute;
  top: 18%;
  right: 0;
  left: 0;
  margin: auto;
}
.ev3_im2{
position: absolute;
  top: 33.5%;
  right: 0;
  left: 0;
  margin: auto;
}

.ev04_1 {
  margin-top: -24%;
}

.ev4_cont {
  padding: 20px 0;
  background-color: #faf4f3;
}

.ev4_cont p {
  margin-bottom: 20px;
}

.fami-sup {
  margin-top: -20px;
}


/* =========================================================
collection .slider01
========================================================= */
.collection {
  position: relative;
}

.collection .slider01_wrap {
  position: absolute;
  bottom: 24%;
  left: 0;
  right: 0;
  margin: auto;
}


.collection .slider01 {
  width: 100%;
  margin: 0 auto 0;
  overflow: visible;
}

.slider01_inner {
  width: 95%;
  margin: auto;
}

.slider01 .slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

.slider01 .slick-slider .slick-list {
  margin-bottom: 0px;
}

.slider01 .slick-dots {
  position: static;
  width: 94%;
  margin: 4% auto 0;
  padding-bottom: 15px;
}


.slider01 .slick-dots li.slick-current button::before,
.slider01 .slick-dots li.slick-active button::before {
  background: #f94876;
}

.slider01 .slick-dots li {
  margin: 0 5px;
}

.slider01 .slick-prev {
  top: 47%;
  left: -1%;
  width: 30px;
  height: 30px;
}

.slider01 .slick-next {
  top: 47%;
  right: -1%;
  width: 30px;
  height: 30px;
}

.collection .btn02 {
  position: absolute;
  bottom: 1.5%;
  left: 0;
  right: 0;
}

.slide-item {
  position: relative;
}

.collection .slide-item .btn02 {
  position: absolute;
  width: 38%;
  bottom: 2%;
  left: 2%;
  filter: drop-shadow(0px 0px 5px #5b233442);
}

.collection .btn {
  position: absolute;
  top: 87%;
  bottom: auto;
  left: 0;
  right: 0;
  margin: auto;
}

/* =========================================================
reason
========================================================= */

.reason_btn {
  width: 90%;
  margin: 0 auto 8% auto;
}

/* アコーディオン */
.reason_ttl {
  position: relative;
  margin-bottom: clamp(20px, 3.5vw, 25px);
}

.reason .icn_area {
  width: 3%;
  height: 3%;
  display: flex;
  position: absolute;
  bottom: 30%;
  right: 4.5%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.reason .icn__plus::before,
.reason .icn__plus::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1.5px;
  background: #b9964c;
}

.reason .icn__plus::before {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.reason .icn__plus.is_active::before {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.reason .aco_contents {
  display: none;
}

/* =========================================================
voice
========================================================= */
.voice{
  position: relative;
}

.voice .slider03 {
  position: absolute;
  top:19%;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin-top: 0;
  margin-right: auto;
  margin-left: auto;
}

.voice .slider03 .slide-item {
  padding: 0 12px;
}

.voice .slider-for {
  margin-bottom: 16.5% !important;
}

.voice-btn {
  width: 60%;
  margin: 0 auto 10% auto;
}


/* =========================================================
voice slider03
========================================================= */
.voice h2 {
  width: 100%;
  text-align: center;
}


.slider03 .slick-dots li.slick-current button::before,
.slider03 .slick-dots li.slick-active button::before {
  background: #c89526;
}

.slider03 .slick-dots li {
  margin: 0 5px;
}

.slider03 .slick-prev {
  top: 45%;
  width: clamp(32px, 4vw, 40px);
  height: clamp(32px, 4vw, 40px);
}

.slider03 .slick-next {
  top: 45%;
  width: clamp(32px, 4vw, 40px);
  height: clamp(32px, 4vw, 40px);
}

/* =========================================================
faq
========================================================= */

.faq h2 {
  width: 60%;
  text-align: center;
  margin: auto;
}

.faq-list {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 10%;
}

.faq-list dt {
  position: relative;
  margin-top: 5%;
  cursor: pointer;
}

.faq-list dt:first-child {
  margin-top: 0;
}

.faq .icn_area {
  display: flex;
  position: absolute;
  top: 50%;
  right: 4%;
  width: 4%;
  height: 38%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  align-items: center;
  justify-content: center;
}

.faq .icn__plus::before,
.faq .icn__plus::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: #534741;
}

.faq .icn__plus::before {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.faq .icn__plus.is_active::before {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.faq .aco_contents {
  display: none;
  width: 90%;
  text-align: center;
  margin: auto;
  margin-top: 10px;
  font-size: 14px;
}

.faq .aco_contents p {
  text-align: left;
}


/* =========================================================
scroll animation
========================================================= */
.scrollactive {
  opacity: 0;
  transition: 0.6s ease all;
  position: relative;
  transform: translateY(20px);
}

.scrollactive.scaleactive {
  transform: translateY(0) scale(1.2);
}

.scrollactive.active,
.scrollactive.show {
  opacity: 1;
  transform: translateY(0);
}

.scrollactive.active.scaleactive,
.scrollactive.show.scaleactive {
  opacity: 1;
  transform: scale(1);
}

.scrollactive.delay-2s {
  transition-delay: 0.2s;
}

.scrollactive.delay-4s {
  transition-delay: 0.4s;
}

.scrollactive.delay-6s {
  transition-delay: 0.6s;
}

.scrollactive.delay-8s {
  transition-delay: 0.8s;
}

/* =========================================================
slider
========================================================= */
.slick-slider {
  /* height: 570.6666666667px; */
  position: relative;
  margin-bottom: 0;
}


.slick-list {
  margin: 0;
}

.slick-dots {
  bottom: -15px;
}

.slick-dots li {
  width: 8px !important;
  height: 8px !important;
  margin: 0 3px;
}

.slick-dots li button {
  width: 8px;
  height: 8px;
  padding: 0;
}

.slick-dots li button::before {
  content: "";
  background-color: #535353;
  opacity: 1;
  font-size: 5px;
  line-height: 5px;
  width: 7px;
  height: 7px;
  margin: 0;
  border-radius: 50%;
}

.slick-dots li.slick-current button::before,
.slick-dots li.slick-active button::before {
  background-color: #c89526;
  opacity: 1;
}

.slick-next {
  position: absolute;
  top: 43.75%;
  right: 4.5%;
  z-index: 100;
  transform: translate(0%, -50%);
  width: 25px;
  height: 25px;
}


.slick-next img {
  width: 100%;
  height: 100%;
}

.slick-next::before {
  display: none;
}

.slick-prev {
  position: absolute;
  top: 43.75%;
  left: 4.5%;
  z-index: 100;
  transform: translate(0%, -50%);
  width: 25px;
  height: 25px;
}

.slick-prev img {
  width: 100%;
  height: 100%;
}

.arrow_box .slick-prev {
  left: 2%;
}

.arrow_box .slick-next {
  right: 2%;
}

.dots_box .slick-dots {
  bottom: 15px;
}

.slick-prev::before {
  display: none;
}

.slide-item {
  padding: 0 8px;
}

@media screen and (max-width: 799px) {
  .slide-item {
    padding: 0 2vw;
  }

  .slick-next {
    right: 1.5vw;
  }

  .slick-prev {
    left: 1.5vw;
  }
}

.slide-item img {
  width: 100%;
}

.slider-notes-head {
  font-size: 13.8666666667px;
  text-align: center;
  font-weight: 500;
  padding-bottom: 5.3333333333px;
  padding-top: 10.6666666667px;
}

.slider-notes-head span {
  font-size: 16px;
  font-weight: 700;
  color: #485e8b;
}

@media screen and (max-width: 799px) {
  .slider-notes-head {
    font-size: 3.4666666667vw;
    padding-bottom: 1.3333333333vw;
    padding-top: 2.6666666667vw;
  }

  .slider-notes-head span {
    font-size: 4vw;
  }
}



/* =========================================================
shoplist
========================================================= */
section.shoplist {
  padding: 5% 0 13%;
  font-weight: 500;
}

.shoplist h2 {
  width: 50%;
  text-align: center;
  margin: auto;
}

section.shoplist .s_note {
  font-size: 18px;
  text-align: center;
  margin-top: 4%;
  line-height: 1.5;
}

.shop-list-head p {
  text-align: left;
  margin-left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 550px) {
  section.shoplist .s_note {
    font-size: 3.5vw;
  }
}

.shoplist-ttl-wrap {
  width: 100%;
  padding: 0 0 27px 0;
}

.shoplist-ttl-inner .campaign-ttl {
  padding-bottom: 10.6666666667px;
}

@media screen and (max-width: 799px) {
  .shoplist-ttl-inner .campaign-ttl {
    padding-bottom: 4vw;
  }
}

.shoplist-sub-ttl {
  width: 213.3333333333px;
  margin: 0 auto;
}

@media screen and (max-width: 799px) {
  .shoplist-sub-ttl {
    width: 53.3333333333vw;
  }
}

.shoplist-ttl-txt {
  font-size: 14.9333333333px;
  padding: 0;
  text-align: center;
  line-height: 1.8em;
}

@media screen and (max-width: 799px) {
  .shoplist-ttl-txt {
    font-size: 13px;
    padding: 0;
  }
}

.shop-list {
  margin: 8% auto 0;
  padding: 0 7.5%;
}

.shop-list-item {
  font-weight: 400;
  font-size: 14.9333333333px;
}

@media screen and (max-width: 799px) {
  .shop-list-item {
    font-size: 3.7333333333vw;
  }
}

.shop-list-item:last-child {
  margin-bottom: 0;
  border-bottom: solid #161616 1px;
}

.shop-list-head {
  padding: 4.1% 0 4.4% 2.8%;
  border-top: solid #161616 1px;
  line-height: 1.4;
  cursor: pointer;
}

.shop-list-head::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: -0.2em;
  content: "";
}

.shop-list-head::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: -0.2em;
  content: "";
}

.shop-list-head-txt {
  display: inline-block;
  width: 336px;
  font-size: clamp(15px, 5vw, 20px);
  font-weight: 500;
}

.shop-list-head-icon {
  display: inline;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  float: right;
  height: 26px;
  width: 20px;
}

.shop-list-head-icon span::before,
.shop-list-head-icon span::after {
  display: inline;
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  width: 100%;
  height: 1px;
  margin: -4% 0 0 -90%;
  vertical-align: middle;
  background: #161616;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media screen and (max-width: 799px) {

  .shop-list-head-icon span::before,
  .shop-list-head-icon span::after {
    margin: -4% 0 0;
    width: 2vw;
    height: 0.27vw;
  }
}

.shop-list-head-icon span::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.open .shop-list-head-icon span::before {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.open .shop-list-head-icon span::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.shop-list-in-list-wrap {
  display: none;
  border-top: solid #161616 1px;
}

ul.shop-list-in-list {
  padding: 0 2%;
}

.shop-list-in-list-item {
  border-bottom: 1px solid #d9d9d9;
  padding: 3.7% 0 5%;
  display: flex;
  justify-content: space-between;
}

.shop-list-in-list-item:last-child {
  border-bottom: none;
}

.shop-list-in-list-ttl {
  font-weight: 700;
  border-bottom: 1px solid #161616;
  color: #161616;
  padding-bottom: 5px;
  display: inline-block;
  margin-bottom: 10.6666666667px;
  font-size: clamp(15px, 3vw, 18px);
}

.shop-list-in-list-ttl::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: -0.35em;
  content: "";
}

.shop-list-in-list-ttl::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: -0.35em;
  content: "";
}

@media screen and (max-width: 799px) {
  .shop-list-in-list-ttl {
    margin-bottom: 2.6666666667vw;
    padding-bottom: 0.6666666667vw;
    border-bottom: 0.1333333333vw solid #161616;
  }
}

.shop-list-in-list-txt-box {
  width: 66.7%;
}

.shop-list-in-list-btn-wrap {
  width: 28.3%;
}

.shop-list-in-list-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 17/11;
  color: #ee7b6f;
  border: 1px solid #ee7b6f;
  border-radius: 10px;
  font-size: clamp(12.5px, 3vw, 17px);
  line-height: 1.17;
  gap: 7%;
  margin-top: 1%;
}

.shop-list-in-list-btn::before {
  content: "";
  width: 30px;
  height: 30px;
  background: url("../images/icon_calendar.png") 0 0 no-repeat;
  background-size: contain;
}

.shop-list-in-list-btn:hover {
  background: #ee7b6f;
  color: #fff;
  opacity: 1;
}

.shop-list-in-list-btn:hover::before {
  background-image: url("../images/icon_calendar_wh.png");
}

@media screen and (max-width: 799px) {
  .shop-list-in-list-btn {
    border-radius: 2.5vw;
  }

  .shop-list-in-list-btn::before {
    width: 6vw;
    height: 6vw;
  }
}

.shop-list-in-list-btn .fa-phone-alt {
  display: none;
  font-size: 13px;
  color: #ff5096;
}

@media screen and (max-width: 799px) {
  .shop-list-in-list-btn .fa-phone-alt {
    font-size: 3.25vw;
  }
}

.shop-list-in-list-txt {
  width: 100%;
  font-size: clamp(12.5px, 3.5vw, 18px);
}

.shop-list-in-list-txt::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: -0.35em;
  content: "";
}

.shop-list-in-list-txt::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: -0.35em;
  content: "";
}

@media screen and (max-width: 799px) {
  .shop-list-in-list-txt {
    padding-bottom: 2.6666666667vw;
  }
}

.shop-list-in-list-txt-red {
  width: 100%;
  font-size: 8.5333333333px;
  color: #485e8b;
  font-weight: 700;
  font-feature-settings: "palt";
}

@media screen and (max-width: 799px) {
  .shop-list-in-list-txt-red {
    font-size: 3.2vw;
    padding-bottom: 2.6666666667vw;
  }
}

@media screen and (min-width: 800px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/* =========================================================
footer
========================================================= */
.footer-content {
  padding: 5.5% 0 39% 0;
  /* background: linear-gradient(to top, #9fb0c7, #e5dce2,#fff); */
  background-color: #ee7b6f;
}

.footer-info {
  text-align: center;
  font-size: clamp(13px, 3vw, 17px);
}

.footer-info a {
  color: #fff;
  text-decoration: underline;
  transition: 0.5s;
  display: inline-block;
  margin: 0 clamp(20px, 3.5vw, 25px);
}

.footer-info a:hover {
  text-decoration: none;
}

.footer-copy {
  font-size: 13px;
  text-align: center;
  color: #fff;
  margin-top: 10px;
}

@media screen and (max-width: 799px) {
  .footer-content {
    padding: 5.5% 0 39% 0;
  }
}

  /* retina用 ----------------------------------------------- */ 
@media screen and (min-width: 736px) and (-webkit-min-device-pixel-ratio: 2), screen and (min-width: 736px) and (min-resolution: 2dppx) {
	
body:before {
  background:url("../images/bg@2x.jpg");
  background-size: contain;
}

.shop-list-in-list-btn::before {
  background-image: url("../images/icon_calendar@2x.png");
  background-size: contain;
}

.shop-list-in-list-btn:hover::before {
  background-image: url("../images/icon_calendar_wh@2x.png");
  background-size: contain;
}
	
.benefits {
  background-image: url(../images/benefits-bg@2x.jpg);
  background-size: contain;
  background-size: 110% auto;
}
	
}