@charset "UTF-8";
/* ▼▼▼ top
====================================================== */
#main {
  padding-bottom: 45px;
}

/* 共通セクションタイトル */
.top_sec_ttl {
  font-size: 26px;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 1em;
}
.top_sec_ttl .sub {
  display: block;
  text-align: center;
  font-size: 0.5em;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 5px;
}
@media screen and (min-width: 769px) {
  .top_sec_ttl {
    font-size: 30px;
    margin-bottom: 1.5em;
  }
  .top_sec_ttl .sub {
    margin-top: 10px;
  }
}

/* ▼ mv_area
--------------------------------------- */
@media screen and (min-width: 769px) {
  #mv {
    padding: 68px 0 45px;
  }
  #mv::before {
    content: "";
    max-width: 880px;
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, rgb(244, 205, 229) 0%, rgb(244, 206, 229) 10%, rgb(237, 236, 250) 50%, rgb(143, 200, 240) 100%);
    position: absolute;
    top: 0;
    left: 0;
  }
  .main_slide {
    overflow: hidden;
    max-width: calc(100% - 160px);
    margin: 0 0 0 auto;
  }
  .main_slide .swiper-wrapper .swiper-slide {
    max-width: 550px;
  }
}
.swiper-pagination {
  position: relative;
  top: auto !important;
  bottom: 0 !important;
  margin-top: 5px;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin: 0 5px;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background: #B71F59;
}
@media screen and (min-width: 769px) {
  .swiper-pagination {
    margin-top: 25px;
  }
  .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 10px !important;
  }
}

/* ▼ Opening Hours
--------------------------------------- */
#hours {
  padding: 30px 0 50px;
}
#hours .top_sec_ttl:before {
  content: "";
  display: inline-block;
  background: url(../img/en/top/icon_hours.svg) center/contain no-repeat;
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
#hours .hours_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 75%;
  margin: auto;
}
#hours .hours_list dt {
  width: 45%;
}
#hours .hours_list dd {
  width: auto;
}
@media screen and (min-width: 769px) {
  #hours {
    padding: 60px 0;
  }
  #hours .top_sec_ttl:before {
    width: 32px;
    height: 32px;
    margin-right: 14px;
    vertical-align: text-bottom;
  }
  #hours .hours_list {
    max-width: 300px;
    margin: auto;
  }
  #hours .hours_list dt,
  #hours .hours_list dd {
    width: 50%;
  }
}

/* ▼ SEARCH
--------------------------------------- */
#shop {
  padding: 0 20px 35px;
}
#shop:before {
  content: "";
  background: linear-gradient(54deg, rgb(255, 247, 203) 0%, rgb(197, 232, 240) 75%, rgb(206, 246, 255) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 15px);
}
#shop .shop_cat_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 15px;
}
#shop .shop_cat_list li {
  font-size: 13px;
  line-height: 1.42;
  letter-spacing: 0.05em;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #fff;
  width: 100%;
  height: 100%;
  min-height: 140px;
  position: relative;
  padding: 90px 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#shop .shop_cat_list li:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -40%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 36px;
  height: 36px;
}
#shop .shop_cat_list li.link_shopguide:before {
  background-image: url(../img/icon_shopguide.svg);
}
#shop .shop_cat_list li.link_restaurant:before {
  background-image: url(../img/icon_restaurant.svg);
}
#shop .shop_cat_list li.link_souvenirs:before {
  background-image: url(../img/en/top/icon_souvenirs.svg);
}
#shop .shop_cat_list li.link_clinic-others:before {
  background-image: url(../img/en/top/icon_clinic-othres.svg);
}
#shop .shop_cat_list li:after {
  content: "";
  display: inline-block;
  border: 3px solid #151515;
  border-left-color: transparent;
  border-top-color: transparent;
  width: 0;
  height: 0;
  position: absolute;
  right: 4px;
  bottom: 4px;
}
#shop .sub_cat_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 10px;
}
#shop .sub_cat_list li a {
  font-size: 12px;
  line-height: 1.4;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
}
#shop .sub_cat_list li a.current {
  color: #D41265;
}
@media screen and (min-width: 769px) {
  #shop {
    padding: 0 20px 60px;
    /*&:before {
      height: calc(100% - 25px);
    }*/
  }
  #shop .shop_cat_list {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 60px auto 40px;
  }
  #shop .shop_cat_list li {
    cursor: pointer;
    font-size: 17px;
    padding: 90px 0 15px;
  }
  #shop .sub_cat_list li a {
    font-size: 14px;
  }
}

/* ▼ FLOOR GUIDE
--------------------------------------- */
#floor {
  padding: 40px 0 0;
}
#floor .floormap_all {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  margin-bottom: 25px;
  text-align: center;
  padding: 5px 10px;
}
#floor .area_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}
#floor .area_list li {
  background-color: #fff;
  border: 1px solid #C1C1C1;
  text-align: center;
  padding: 12px 30px;
  font-size: 12px;
  line-height: 1.42;
  cursor: pointer;
}
#floor .area_list li.active {
  background-color: #716F6F;
  color: #fff;
  border-color: #716F6F;
}
#floor .area_list li span {
  display: block;
  text-align: center;
}
#floor .floor_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
#floor .floor_list li {
  background-color: #fff;
  border: 1px solid #707070;
  padding: 3px 5px;
  font-size: 16px;
  color: #707070;
  line-height: 1.5;
  letter-spacing: 0.05em;
  cursor: pointer;
}
#floor .floor_list li.active {
  background-color: #716F6F;
  color: #fff;
  border-color: #716F6F;
}
#floor .floormap_area {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  position: relative;
  padding: 10px;
}
#floor .floormap_area .zoom_btn {
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: absolute;
  bottom: 13px;
  right: 13px;
  z-index: 10;
}
#floor .floormap_area .zoom_btn button {
  width: 26px;
  height: 26px;
}
#floor .floor_shop_wrap {
  padding: 40px 30px 40px 0;
  margin-top: 24px;
  position: relative;
}
#floor .floor_shop_wrap:before {
  content: "";
  width: calc(100% + 20px);
  height: 100%;
  background: linear-gradient(52deg, rgb(244, 205, 229) 0%, rgb(237, 236, 250) 45%, rgb(143, 200, 240) 100%);
  position: absolute;
  top: 0;
  left: -20px;
  z-index: -1;
  opacity: 0.4;
}
#floor .floor_shop_wrap dl {
  display: flex;
  align-items: center;
  gap: 14px;
}
#floor .floor_shop_wrap dl:not(:last-child) {
  border-bottom: 1px solid #ccc;
  margin-bottom: 16px;
  padding-bottom: 16px;
}
#floor .floor_shop_wrap dl dt {
  color: #fff;
  background-color: #707070;
  font-size: 16px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}
#floor .floor_shop_wrap dl dd {
  width: calc(100% - 54px);
  line-height: 1.2;
  display: flex;
  align-items: center;
}
#floor .floor_shop_wrap dl dd span {
  max-width: 50px;
  margin-right: 10px;
}
@media screen and (min-width: 769px) {
  #floor {
    padding: 60px 0;
  }
  #floor .floormap_all {
    padding: 30px 50px;
    margin-bottom: 40px;
  }
  #floor .area_list {
    grid-template-columns: repeat(4, 1fr);
  }
  #floor .area_list li {
    font-size: 17px;
    padding: 13px;
    display: grid;
    place-content: center;
  }
  #floor .area_list li span {
    font-size: 13px;
    text-align: center;
  }
  #floor .floormap_area {
    padding: 20px 30px;
  }
  #floor .floor_list {
    gap: 30px;
    margin-bottom: 60px;
  }
  #floor .floor_list li {
    padding: 3px 10px;
    font-size: 23px;
    line-height: 1.42;
  }
  #floor .floor_shop_wrap {
    padding: 50px 60px;
    margin-top: 40px;
  }
  #floor .floor_shop_wrap:before {
    width: 100%;
    left: 0;
  }
  #floor .floor_shop_wrap dl dt {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
  #floor .floor_shop_wrap dl dd {
    width: calc(100% - 74px);
  }
}

/* ▼ SERVICE
--------------------------------------- */
#service {
  padding: 30px 0 0;
}
#service .inner_box {
  padding: 0 20px;
}
#service .inner_box:not(:last-child) {
  margin-bottom: 40px;
}
#service .inner_box .sub_ttl {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  padding: 6px 14px;
  margin-bottom: 14px;
  background: linear-gradient(70deg, rgb(255, 247, 203) 0%, rgb(197, 232, 240) 90%, rgb(206, 246, 255) 100%);
}
#service .inner_box p {
  color: #505050;
}
#service .inner_box p.img {
  margin-top: 1.25em;
}
#service .inner_box p.img.bdr {
  border: 1px solid #D9D9D9;
  padding: 10px 5px;
}
#service .inner_box a.btn {
  font-size: 15px;
  margin-top: 28px;
  max-width: calc(100% - 40px);
}
#service .inner_box a.btn span {
  display: inline-block;
  max-width: 80px;
}
#service .inner_box .list {
  color: #505050;
  margin-top: 12px;
}
#service .inner_box .list li {
  border-top: 1px solid #707070;
  padding: 12px 0;
}
#service .inner_box .list li em {
  font-style: normal;
  font-weight: 500;
  color: #151515;
}
#service .inner_box .list li > .flex {
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
#service .inner_box .list li > .flex p:first-child {
  width: 60px;
}
#service .inner_box .list li > .flex p:last-child {
  width: calc(100% - 80px);
}
#service .inner_box .howto {
  border: 1px solid #D41265;
  padding: 13px 16px;
}
#service .inner_box .howto .close,
#service .inner_box .howto .open {
  color: #D41265;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  position: relative;
  cursor: pointer;
}
#service .inner_box .howto .close:after,
#service .inner_box .howto .open:after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1px solid;
  border-bottom: 1px solid;
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%) rotate(45deg);
}
#service .inner_box .howto .open:after {
  transform: translateY(0%) rotate(-135deg);
}
#service .inner_box .howto .howto_step {
  display: none;
  margin-top: 13px;
}
#service .inner_box .howto .howto_step dl {
  padding: 16px 0;
  border-top: 1px solid #D41265;
}
#service .inner_box .howto .howto_step dl dt {
  color: #D41265;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}
#service .inner_box .howto .howto_step dl dt .num {
  display: inline-block;
  background-color: #D41265;
  color: #fff;
  text-align: center;
  width: 20px;
  height: 20px;
  line-height: 18px;
}
#service .inner_box .howto .howto_step dl dt span:last-child {
  width: calc(100% - 28px);
  line-height: 1.42;
}
#service .inner_box .howto .howto_step dl dd.flex {
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
#service .inner_box .howto .howto_step dl dd button {
  background-color: #D41265;
  color: #fff;
  padding: 8px 14px;
  border-radius: 5px;
  box-shadow: 3px 3px 0 rgba(159, 123, 133, 0.3);
  width: 100%;
}
#service .inner_box .howto .howto_step .attention_txt {
  background-color: #E877A7;
  margin: 0 -16px -13px;
  padding: 14px 22px;
}
#service .inner_box .howto .howto_step .attention_txt p {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}
#service .inner_box .howto .howto_step .attention_txt .ttl {
  font-size: 15px;
  text-align: center;
  margin-bottom: 4px;
}
#service .inner_box .list_box {
  border: 1px solid #D9D9D9;
  padding: 12px 14px;
  margin: 16px 0;
}
#service .inner_box .list_box h4 {
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 12px;
  margin-bottom: 12px;
}
#service .inner_box .list_box ul li {
  font-weight: 500;
  padding-left: 1em;
  text-indent: -1em;
}
#service .inner_box .list_box ul li:before {
  content: "・";
  color: #D41265;
}
@media screen and (min-width: 769px) {
  #service {
    padding: 30px 0;
  }
  #service .inner_box {
    display: inline-block;
    width: 49%;
    vertical-align: top;
  }
  #service .inner_box:last-child {
    display: block;
    width: 100%;
  }
  #service .inner_box:last-child .list_box {
    width: 100%;
    max-width: 320px;
    margin: 30px 20px 0;
    display: inline-block;
    vertical-align: bottom;
  }
  #service .inner_box:last-child .list_box ul li {
    font-size: 15px;
  }
  #service .inner_box:last-child .img {
    display: inline-block;
    width: 100%;
    max-width: calc(100% - 380px);
    vertical-align: bottom;
    margin-bottom: 0;
  }
  #service .inner_box .sub_ttl {
    font-size: 18px;
    padding: 20px 24px;
    margin-bottom: 30px;
  }
  #service .inner_box > p {
    padding: 0 20px;
  }
  #service .inner_box .img {
    text-align: center;
    margin-bottom: 30px;
  }
  #service .inner_box a.btn {
    max-width: 300px;
  }
  #service .inner_box .list {
    margin-top: 16px;
  }
  #service .inner_box .list li {
    padding: 20px 0;
    margin: 0 20px;
  }
  #service .inner_box .howto {
    padding: 20px 30px;
  }
  #service .inner_box .howto .howto_step {
    margin-top: 16px;
  }
  #service .inner_box .howto .howto_step dl {
    padding: 25px 0;
  }
  #service .inner_box .howto .howto_step dl dd.flex {
    gap: 16px;
    margin: 16px 0 0;
  }
  #service .inner_box .howto .howto_step dl dd.flex button {
    padding: 14px;
  }
  #service .inner_box .howto .howto_step .attention_txt {
    margin: 0 -30px -20px;
    padding: 30px;
  }
  #service .inner_box .howto .howto_step .attention_txt .ttl {
    font-size: 17px;
  }
  #service .inner_box .howto .howto_step .attention_txt p {
    font-size: 14px;
  }
}