/* CSS Document */

/*--------------------------------
共通
--------------------------------*/
:root {
  --hover-opacity: 0.6;
  --transition: .5s;
  --main-color: #A8CC53;
  --sub-color: #C1DB82;
  --modal-color: #E7465A;
  --leading-trim: calc((1em - 1lh) / 2);
}

@supports not (top: 1lh) {
  :root {
    --leading-trim: 0px;
  }
}

html{
  font-size: clamp(8px, 2.66666666666666vw, 10px);
}

body{
	line-height: 1.3;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', 'MS PGothic', sans-serif;
  letter-spacing: 0.05em;
}

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

#main {
  width: 100%;
  margin: 0 auto;
}

#main .image {
  width: 100%;
  height: auto;
}

#wrapper .pc_appear {
  display: block;
}
#wrapper .sp_appear {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  a img:hover{
    opacity: var(--hover-opacity);
    transition: var(--transition);
  }
}

/* contents
--------------------------------*/
.contents {
  margin: 0 auto;
  background: var(--main-color);
  padding-block-end: min(120px, calc(120 / 2000 * 100%));
  overflow: hidden;
}

.contents:nth-of-type(2n) {
  background: var(--sub-color);
}

.contents::before {
  content: "";
  display: block;
  width: 100%;
  height: clamp(20px, 2vw, 40px);
  background: url('../img/bg-color_1.png'), var(--sub-color);
  background-size: contain;
  background-position: center;
  background-repeat: repeat-x;
}

.contents:nth-of-type(2n)::before {
  background: url('../img/bg-color_2.png'), var(--main-color);
  background-size: contain;
  background-repeat: repeat-x;
}

.contents__inner {
  max-width: 1280px;
  width: 92%;
  margin-inline: auto;
  position: relative;
}

.contents__title {
  margin-block: min(80px, calc(80 / 1280 * 100%)) min(60px, calc(60 / 1280 * 100%));
  text-align: center;
}

/* main-visual
--------------------------------*/
.main-visual {
  position: relative;
  text-align: center;
  background-color: var(--sub-color);
}

/* shop
--------------------------------*/
.shop__contents {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: clamp(20px, 2.734375vw, 35px);
  row-gap: clamp(15px, 2.34375vw, 30px);
}

.shop__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 5px solid #000;
  border-radius: 999px;
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  .shop__item:hover{
    opacity: var(--hover-opacity);
    transition: var(--transition);
  }
}

.shop__item img{
  cursor: pointer;
}

.shop__item.fashion {
  border-color: #F795C6;
}

.shop__item.goods {
  border-color: #6FB863;
}

.shop__item.gourmet {
  border-color: #E19E2B;
}

.shop__item.service {
  border-color: #84B4E3;
}

.shop__btn {
  width: 77%;
}

.shop .contents__inner::before {
  content: "";
  position: absolute;
  display: block;
  left: -350px;
  width: 273px;
  height: 440px;
  top: 100px;
  background: url('../img/ico-flower_l_1.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}


.shop .contents__inner::after {
  content: "";
  position: absolute;
  display: block;
  right: -350px;
  width: 297px;
  height: 404px;
  bottom: -180px;
  background: url('../img/ico-flower_r_1.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}


/* shop modal
--------------------------------*/
.shop-modal__overlay {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.shop-modal__overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.shop-modal {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%);
  width: min(900px, 92%);
  max-height: 90vh;
  max-height: 90svh;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  z-index: 100;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.shop-modal.is-open {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%);
}

/* モーダル ヘッダー */
.shop-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #E8485A;
  padding-block: min(24px, calc(24 / 1280 * 100%));
  padding-inline: min(60px, calc(60 / 1280 * 100%)) min(30px, calc(30 / 1280 * 100%));
}
.shop-modal__floor-name {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.shop-modal__close {
  position: relative;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.shop-modal__close::before,
.shop-modal__close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
.shop-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.shop-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (hover: hover) and (pointer: fine) {
  .shop-modal__close:hover {
    opacity: var(--hover-opacity);
    transition: var(--transition);
  }
}

/* モーダル ボディ */
.shop-modal__body {
  overflow: auto;
  overscroll-behavior: contain;
}
.shop-modal__body-inner {
  display: flex;
  gap: 32px;
  padding-block: min(80px, calc(80 / 1280 * 100%));
  padding-inline: min(60px, calc(60 / 1280 * 100%));
}
.shop-modal__left {
  width: calc(535 / 1152 * 100%);
  display: flex;
  flex-direction: column;
}
.shop-modal__left > *:nth-last-child(2) {
  margin-block-end: 0;
}
.shop-modal__logo {
  display: inline-block;
  text-align: center;
  border: 1px solid #ccc;
  max-width: 240px;
  margin-block-end: min(15px, calc(15 / 240 * 100%));
}
.shop-modal__logo img {
  display: block;
  margin-inline: auto;
}
.shop-modal__category {
  font-size: 1.3rem;
  margin-block-end: min(40px, calc(40 / 535 * 100%));
}
.shop-modal__desc {
  font-size: 1.3rem;
  line-height: calc(30 / 18);
  color: #000;
  margin-block-end: min(20px, calc(20 / 535 * 100%));
}
.shop-modal__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.3rem;
  line-height: calc(30 / 18);
  margin-block-end: min(20px, calc(20 / 535 * 100%));
}
/* .shop-modal__list li::before {
  content: '・';
} */
.shop-modal__link {
  display: flex;
  align-items: center;
  color: var(--modal-color);
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  margin-block-start: min(40px, calc(40 / 535 * 100%));
}
@media (hover: hover) and (pointer: fine) {
  .shop-modal__link:hover{
    opacity: var(--hover-opacity);
    transition: var(--transition);
  }
}
.shop-modal__link::before {
  content: '';
  display: block;
  background: url(../img/icon-shop_bag.svg) no-repeat center;
  background-size: contain;
  width: 18px;
  height: 23.4px;
  margin-inline-end: 8px;
}
.shop-modal__right {
  flex: 1;
}
.shop-modal__right img {
  width: 100%;
  height: auto;
  display: block;
}

/* event
--------------------------------*/
.event__contents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(25px, 2vw, 40px);
  row-gap: clamp(15px, 2.34375vw, 30px);
}

.event__item img{
  box-shadow: 3px 3px 1px 2px rgba(0, 0, 0, 0.1);
}

/* event
--------------------------------*/
.event__contents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(25px, 2vw, 40px);
  row-gap: clamp(15px, 2.34375vw, 30px);
}

.event__item {
  text-align: center;
}

.event .contents__inner::before {
  content: "";
  position: absolute;
  display: block;
  left: -350px;
  width: 297px;
  height: 404px;
  top: -50px;
  background: url('../img/ico-flower_l_2.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.event .contents__inner::after {
  content: "";
  position: absolute;
  display: block;
  right: -350px;
  width: 297px;
  height: 439px;
  bottom: -180px;
  background: url('../img/ico-flower_r_2.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* renewal
--------------------------------*/
.renewal__contents {
  max-width: 1000px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 3.3000000000000003vw, 66px);
}

.renewal__item {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
  background: #fff;
  padding: min(40px, calc(40 / 920 * 100%));
  box-shadow: 3px 3px 1px 2px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.renewal__item-image {
  display: flex;
  width: calc( 400 / 920 * 100%);
}

.renewal__item-discription {
  width: calc( 490 / 920 * 100%);
}

.renewal__item-title {
  font-size: 3rem;
  line-height: calc(38 / 30);
  letter-spacing: 0.05em;
  font-weight: bold;
  color: var(--modal-color);
  margin-block-end: min(15px, calc(15 / 490 * 100%));
}

.renewal__item-text {
  font-size: 1.4rem;
  line-height: calc(24 / 14);
  letter-spacing: 0.05em;
}

.renewal .contents__inner::before {
  content: "";
  position: absolute;
  display: block;
  left: -350px;
  width: 273px;
  height: 439px;
  top: 100px;
  background: url('../img/ico-flower_l_3.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.renewal .contents__inner::after {
  content: "";
  position: absolute;
  display: block;
  right: -350px;
  width: 297px;
  height: 404px;
  bottom: 70px;
  background: url('../img/ico-flower_r_3.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* sns
--------------------------------*/
.sns__discription {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  margin-block-end: min(40px, calc(40 / 1280 * 100%));
}

.sns__title {
  margin-block-end: min(30px, calc(30 / 1280 * 100%));
}

.sns__link {
  max-width: 120px;
}

.sns__icon {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 2.34375vw, 30px);
  margin-block-end: min(60px, calc(60 / 1280 * 100%));
}

.sns__link-btn {
  display: flex;
  justify-content: center;
  margin-block-start: min(30px, calc(30 / 1280 * 100%));
}

/* flaot btn */
.float_btn_area {
  position: fixed;
  width: 90px;
  right: 10px;
  bottom: 41px;
  z-index: 99;
}
.float_btn_item {
  display: none;
  margin-bottom: 20px;
}

.float_btn_item:last-child {
  margin-bottom: 0;
}
.page_top_nav {
  display: none;
  margin-left: auto;
  margin-right: auto;
}
/* float btn */
.float_btn_area_pc {
  display: block;
}
.float_btn_area_sp {
  display: none;
}
/*  footer */
#footerInfo {
  padding-block: 20px;
  padding-inline: 10px;
}
/* top-icon */
#headerSymbol ul {
  display: flex;
  float: right;
}
#headerSymbol li {
  margin-right: 10px;
}
.spCont {
  display: none;
}

.sns .contents__inner::before {
  content: "";
  position: absolute;
  display: block;
  left: -350px;
  width: 297px;
  height: 404px;
  bottom: 20px;
  background: url('../img/ico-flower_l_4.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
