@charset "UTF-8";
/* Header
========================================================================== */
.header,
.header-blur,
.header-white,
.header-wrap {
  width: 92vw;
  min-height: 48px;
  border-radius: 24px;
  margin: 0 auto;
}

.header-wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.header {
  z-index: 99999;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translate(-50%, 0);
}

.header-blur {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-white {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #1B2C26;
  padding: 0 30px;
}

.header-primary {
  margin: 0;
}

@media screen and (min-width: 750px) {
  .header,
  .header-blur,
  .header-white,
  .header-wrap {
    min-height: 80px;
    border-radius: 40px;
  }
  .header-primary {
    margin: 0 0 0 16px;
  }
}
/* Header Logo */
.header__logo-wrap {
  z-index: 10;
  width: 100%;
}

.header__logo {
  height: 5vw;
  line-height: 0;
}

@media screen and (min-width: 750px) {
  .header__logo {
    height: 1.9vw;
  }
}
/* header-nav
========================================================================== */
.nav {
  max-width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #EFEDE2;
  border-radius: 25px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1215686275);
}

.nav summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0 1em;
  font-weight: 600;
  cursor: pointer;
}

.nav summary::-webkit-details-marker {
  display: none;
}

.nav summary .nav-btn-wrap {
  z-index: 10;
  display: inline-block;
  position: absolute;
  right: 20px;
  cursor: pointer;
  height: 20px;
}

/*=============================
.nav-btn
=============================*/
.nav-btn {
  position: relative;
  width: 19px;
  height: 17px;
  cursor: pointer;
}

.nav-btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #2A367D;
  border-radius: 2px;
}

.nav-btn, .nav-btn span {
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}

.nav-btn span:nth-of-type(1) {
  top: 0;
}

.nav-btn span:nth-of-type(2) {
  top: 8px;
}

.nav-btn span:nth-of-type(3) {
  bottom: 0;
}

/*=============================
.nav-btn open
=============================*/
.nav[open] summary .nav-btn span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}

.nav[open] summary .nav-btn span:nth-of-type(2) {
  opacity: 0;
}

.nav[open] summary .nav-btn span:nth-of-type(3) {
  -webkit-transform: translateY(-7x) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
}

.nav .sub-nav {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0.2em 1em 1em;
  color: #333333;
  transition: transform 0.5s, opacity 0.5s;
}

.nav[open] .sub-nav {
  transform: none;
  opacity: 1;
}

@media screen and (min-width: 750px) {
  .nav {
    border-radius: 40px;
  }
  .nav summary .nav-btn-wrap {
    right: 50px;
  }
  .nav summary {
    padding: 0 2em;
  }
  .nav summary .nav-btn {
    width: 80px;
  }
  .nav summary .nav-btn span {
    top: -12px;
    font-size: 1.2rem;
    line-height: 27px;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  .nav summary .nav-btn:before {
    top: 15px;
  }
  .nav summary .nav-btn:after {
    bottom: 15px;
  }
  .nav .sub-nav {
    display: none;
  }
  .nav summary .header__nav .header__nav-txt {
    opacity: 1 !important;
  }
}
/* sub-nav */
.sub-nav__list-wrap {
  padding: 60px 0;
  letter-spacing: 0.15em;
}

.sub-nav__list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  font-size: 2rem;
  gap: 20px 0;
}
.sub-nav__list li {
  text-align: center;
}
.sub-nav__list li:hover a {
  color: #C3038F;
}

@media screen and (min-width: 750px) {
  .sub-nav__list {
    flex-direction: row;
    font-size: 2rem;
    letter-spacing: 0.2em;
  }
  .sub-nav__list li::before {
    content: "";
    padding: 0 10px;
  }
  .sub-nav__list li::after {
    content: "｜";
    padding: 0 10px;
  }
  .sub-nav__list li:last-child:after {
    content: "";
  }
}
/* head　category */
.header__nav {
  z-index: 10;
  font-size: 1.2rem;
  text-align: center;
  white-space: nowrap;
}

.header__nav-txt {
  display: none;
  line-height: 34px;
  font-size: 2rem;
}
.header__nav-txt:not(:last-child) {
  border-right: 1px solid #000;
}
.header__nav-txt a {
  display: block;
  padding: 0 25px 0 25px;
}
.header__nav-txt:hover a {
  color: #C3038F;
}

@media screen and (min-width: 1120px) {
  .header__nav-txt {
    display: block;
  }
}
/* Main
========================================================================== */
.main {
  width: 100%;
  overflow-x: hidden;
}

/* about us
========================================================================== */
.about__wrap {
  display: flex;
  justify-content: flex-end;
}

.about {
  margin-top: 44px;
  width: 95vw;
  background: transparent linear-gradient(90deg, #D0F0FF 0%, #EFEDE2 100%) 0% 0% no-repeat padding-box;
  border-radius: 48px 0px 0px 0px;
  padding: 44px 0;
}

.about__head {
  width: 79vw;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.0784313725);
  border-radius: 36px;
  padding: 50px 20px;
  text-align: center;
  margin-left: -5vw;
}

.about-logo__wrap {
  margin: 0;
  line-height: 0;
}

.about-logo {
  width: 100%;
}

.about-day__wrap {
  display: flex;
  justify-content: center;
  margin: 20px 0 20px;
}

.about-day {
  color: #C3038F;
  font-size: 2.5rem;
  line-height: 21px;
  border-bottom: 2px solid #C3038F;
  flex-basis: auto;
}
.about-day span {
  font-size: 1.3rem;
  padding: 0 3px;
}

.about__body {
  margin-top: 40px;
  text-align: center;
  margin-left: -5vw;
}

.about-title {
  font-size: 3rem;
  line-height: 30px;
  color: #1D2088;
}
.about-title span {
  display: block;
  font-size: 1.4rem;
  color: #000;
}

.about__store__wrap {
  margin-top: 30px;
  width: 79vw;
  max-width: 1070px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.about__store {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  display: flex;
}

.about__store-img {
  width: 154px;
}
.about__store-img img {
  border-radius: 16px;
}

.about__store-content {
  width: calc(100% - 154px);
  padding: 3px 0;
  text-align: center;
}
.about__store-content div {
  line-height: 0;
}

.maxvalu-logo1 img {
  height: 25px;
  margin: 20px 0 10px;
}

.maxvalu-logo2 img {
  height: 33px;
  margin-bottom: 20px;
}

.daiei-logo1 img {
  height: 25px;
  margin: 5px 0;
}

.daiei-logo2 img {
  height: 21px;
  margin-bottom: 5px;
}

.daiei-logo3 img {
  height: 14px;
  margin-bottom: 10px;
}

.daiei-logo4 img {
  height: 14px;
  margin-bottom: 10px;
}

.peacock-logo1 img {
  height: 69px;
  margin: 20px 0 20px;
}

.about__store-txt {
  font-size: 1.1rem;
  line-height: 14px;
}

@media screen and (min-width: 750px) {
  .about {
    margin-top: 59px;
    width: 97vw;
    padding: 80px 0;
  }
  .about__head {
    width: 78vw;
    border-radius: 48px;
    padding: 60px;
    margin-left: -3vw;
  }
  .about-logo {
    height: 3.23vw;
  }
  .about-day__wrap {
    margin: 30px 0 20px;
  }
  .about-day {
    font-size: 4.5rem;
    line-height: 38px;
    border-bottom: 4px solid #C3038F;
  }
  .about-day span {
    font-size: 2.1rem;
    padding: 0 3px;
  }
  .about__body {
    margin-top: 60px;
    margin-left: -3vw;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .about-title {
    width: 100%;
    font-size: 4.2rem;
    line-height: 42px;
  }
  .about-title span {
    font-size: 1.8rem;
  }
  .about__store__wrap {
    margin-top: -50px;
    width: 73.5vw;
    background-image: url(../img/about-back.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2vw;
  }
  .about__store {
    border-radius: 24px;
    width: 17.9vw;
    max-width: 260px;
    flex-wrap: wrap;
  }
  .about__store:nth-child(1) {
    margin-top: max(10vw, 148px);
  }
  .about__store:nth-child(2) {
    margin-top: max(5vw, 74px);
  }
  .about__store-img {
    width: 100%;
  }
  .about__store-img img {
    border-radius: 24px 24px 24px 0px;
  }
  .about__store-content {
    width: 100%;
    padding: 0 20px 40px;
  }
  .maxvalu-logo1 img {
    height: 3.4vw;
    max-height: 49px;
    margin: 40px 0 30px;
  }
  .maxvalu-logo2 img {
    height: 4.5vw;
    max-height: 65px;
    margin-bottom: 30px;
  }
  .daiei-logo1 img {
    height: 3.4vw;
    max-height: 49px;
    margin: 20px 0 10px;
  }
  .daiei-logo2 img {
    height: 2.7vw;
    max-height: 40px;
    margin-bottom: 10px;
  }
  .daiei-logo3 img {
    height: 1.8vw;
    max-height: 26px;
    margin-bottom: 20px;
  }
  .daiei-logo4 img {
    height: 1.9vw;
    max-height: 27px;
    margin-bottom: 30px;
  }
  .peacock-logo1 img {
    height: 8vw;
    max-height: 117px;
    margin: 40px 0 50px;
  }
  .about__store-txt {
    font-size: 1.4rem;
  }
}
/* promotion
========================================================================== */
#promotion {
  margin-bottom: 21.3vw;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.promotion__headline {
  width: 100%;
  background-image: url(../img/promotion-back-sp.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  justify-content: center;
  height: 53.3vw;
  margin: 0;
}
.promotion__headline p {
  margin-top: 13.3vw;
  width: 89vw;
  color: #fff;
  font-size: 3rem;
  line-height: 30px;
  text-align: right;
}
.promotion__headline p span {
  display: block;
  font-size: 1.4rem;
  line-height: 23px;
}

.promotion__banner__wrap {
  width: 89vw;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: -18.7vw;
  gap: 5vw;
  margin-bottom: 80px;
  padding-top: 30px;
  box-sizing: border-box;
  overflow: hidden;
}

.fadein {
  opacity: 0;
  transform: translate(0, 30px);
  transition: all 1.5s;
}
.fadein.scrollin {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

.promotion__banner-a, .promotion__banner-b {
  width: 100%;
  background: #EFEDE2;
  border-radius: 4.3vw;
}

.promotion__banner-a {
  display: flex;
}
.promotion__banner-a-img {
  width: 60%;
}
.promotion__banner-a-img img {
  border-radius: 4.3vw;
}
.promotion__banner-a-txt__wrap {
  width: 40%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 4vw;
  gap: 0.4vw;
}
.promotion__banner-a-title {
  font-size: 1.6rem;
  line-height: 24px;
  color: #1D2088;
}
.promotion__banner-a-txt {
  font-size: 1.2rem;
  line-height: 18px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 12;
  overflow: hidden;
  max-height: 188px;
}

.promotion__banner-b-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: #1D2088;
  aspect-ratio: 335/188;
  text-align: center;
  line-height: 24px;
}
.promotion__banner-b-img img {
  border-radius: 4.3vw;
  border: 1px solid #707070;
}

.goodbuy {
  width: 100%;
}

.goodbuy__headline {
  text-align: center;
  font-size: 2.4rem;
  line-height: 36px;
  color: #C3038F;
  margin-bottom: 5.3vw;
}

.goodbuy__wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8vw;
}

.goodbuy-a {
  width: 100%;
  background-image: url(../img/goodbuy-a-back-sp.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  aspect-ratio: 375/628;
}

.goodbuy-b {
  width: 100%;
  background-image: url(../img/goodbuy-b-back-sp.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  aspect-ratio: 375/628;
}

.goodbuy-inner {
  display: flex;
  justify-content: center;
  align-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  padding: 13.3vw 0 0;
}

.goodbuy-title {
  width: 89vw;
  display: flex;
  justify-content: center;
  align-items: baseline;
  background: #C3038F;
  border: 3px solid #fff;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  border-radius: 27px;
}
.goodbuy-title span {
  font-size: 2.3rem;
}

.goodbuy-item {
  width: 71.5vw;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10.7vw;
  aspect-ratio: 372/523;
  background: #fff;
  border-radius: 4.3vw;
  color: #1D2088;
  font-size: 2.4rem;
}
.goodbuy-item img {
  border-radius: 4.3vw;
  width: 100%;
}

.goodbuy-price__wrap {
  margin-top: -34.4vw;
  width: 100%;
  background-image: url(../img/goodbuy-a-price-back.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  aspect-ratio: 543/345;
}

.goodbuy-name {
  margin-top: 18vw;
  margin-left: 25.3vw;
  font-size: 1.2rem;
  line-height: 22px;
}

.goodbuy-price {
  margin-right: 25vw;
  margin-top: -4vw;
  text-align: right;
  font-size: 2.3rem;
  letter-spacing: -0.05em;
}
.goodbuy-price span {
  font-size: 5.6rem;
  line-height: 73px;
}

.goodbuy-pretax {
  margin-top: -4vw;
  margin-right: 25vw;
  text-align: right;
}

@media screen and (min-width: 550px) {
  .goodbuy-name {
    margin-top: 18vw;
    margin-left: 25.3vw;
    width: 35vw;
    font-size: 2.5rem;
    line-height: 30px;
  }
  .goodbuy-price {
    margin-right: 25vw;
    margin-top: -2vw;
    font-size: 2.3rem;
  }
  .goodbuy-price span {
    font-size: 8rem;
    line-height: 120px;
  }
  .goodbuy-pretax {
    margin-top: -4vw;
    margin-right: 25vw;
    text-align: right;
  }
}
@media screen and (min-width: 750px) {
  #promotion {
    margin-bottom: 10.3vw;
  }
  .promotion__headline {
    background-image: url(../img/promotion-back.png);
    height: 24.31vw;
  }
  .promotion__headline p {
    margin-top: 6.7vw;
    width: 78vw;
    font-size: 4.2rem;
    line-height: 42px;
  }
  .promotion__headline p span {
    font-size: 1.8rem;
    line-height: 32px;
  }
  .promotion__banner__wrap {
    width: 78vw;
    margin-top: -7.9vw;
    gap: 2vw;
    flex-wrap: wrap;
  }
  .promotion__banner-a, .promotion__banner-b {
    width: calc((100% - 2vw) / 2);
    border-radius: 1.65vw;
  }
  .promotion__banner-a-txt__wrap {
    padding: 2vw;
  }
  .promotion__banner-a-img img {
    border-radius: 1.65vw;
  }
  .promotion__banner-a-title {
    font-size: 2.4rem;
    line-height: 33px;
  }
  .promotion__banner-a-txt {
    font-size: 1.6rem;
    line-height: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 9;
    overflow: hidden;
    max-height: 218px;
  }
  .promotion__banner-b-img img {
    border-radius: 1.65vw;
    border: 1px solid #707070;
  }
}
@media screen and (min-width: 900px) {
  .goodbuy__headline {
    font-size: 3.4rem;
    margin-bottom: 2.1vw;
  }
  .goodbuy__wrap {
    width: 100%;
    flex-wrap: nowrap;
    gap: 2.1vw;
  }
  .goodbuy-a {
    display: flex;
    justify-content: flex-end;
    width: 50%;
    background-image: url(../img/goodbuy-a-back.png);
    aspect-ratio: 712/766;
  }
  .goodbuy-b {
    display: flex;
    justify-content: flex-start;
    width: 50%;
    background-image: url(../img/goodbuy-b-back.png);
    aspect-ratio: 712/766;
  }
  .goodbuy-inner {
    width: 100%;
    padding: 2.5vw 0 0;
  }
  .goodbuy-title {
    width: 90%;
    font-size: 2rem;
    border-radius: 38px;
    height: 75px;
  }
  .goodbuy-title span {
    font-size: 3.2rem;
  }
  .goodbuy-item {
    width: 25.6vw;
    margin-top: 2.1vw;
    border-radius: 1.65vw;
    font-size: 2.8rem;
  }
  .goodbuy-item img {
    border-radius: 1.65vw;
  }
  .goodbuy-price__wrap {
    width: 80%;
    margin-top: -21vw;
  }
  .goodbuy-price-txt__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 7vw 9vw 2vw;
  }
  .goodbuy-name {
    margin: 0;
    width: 18vw;
    font-size: 1.8rem;
    line-height: 18px;
  }
  .goodbuy-price {
    width: 100%;
    margin: 0;
    font-size: 3rem;
    line-height: 30px;
    letter-spacing: -0.05em;
    text-align: right;
  }
  .goodbuy-price span {
    font-size: 7rem;
    line-height: 60px;
  }
  .goodbuy-pretax {
    width: 100%;
    margin: 0;
    font-size: 1.4rem;
    line-height: 14px;
    text-align: right;
  }
}
@media screen and (min-width: 1200px) {
  .goodbuy__headline {
    font-size: 3.4rem;
    margin-bottom: 2.1vw;
  }
  .goodbuy__wrap {
    width: 100%;
    flex-wrap: nowrap;
    gap: 2.1vw;
  }
  .goodbuy-a {
    display: flex;
    justify-content: flex-end;
    width: 50%;
    background-image: url(../img/goodbuy-a-back.png);
    aspect-ratio: 712/766;
  }
  .goodbuy-b {
    display: flex;
    justify-content: flex-start;
    width: 50%;
    background-image: url(../img/goodbuy-b-back.png);
    aspect-ratio: 712/766;
  }
  .goodbuy-inner {
    width: 77%;
    padding: 2.5vw 0 0;
  }
  .goodbuy-title {
    width: 32.5vw;
    font-size: 2rem;
    border-radius: 38px;
    height: 75px;
  }
  .goodbuy-title span {
    font-size: 3.2rem;
  }
  .goodbuy-item {
    width: 25.6vw;
    margin-top: 2.1vw;
    border-radius: 1.65vw;
    font-size: 2.8rem;
  }
  .goodbuy-item img {
    border-radius: 1.65vw;
  }
  .goodbuy-price__wrap {
    width: 100%;
    margin-top: -17vw;
  }
  .goodbuy-price-txt__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 7.5vw 10vw 2vw 9vw;
  }
  .goodbuy-name {
    margin: 0;
    width: 100%;
    font-size: 2.2rem;
    line-height: 22px;
  }
  .goodbuy-price {
    width: 100%;
    margin: 0;
    font-size: 3.6rem;
    line-height: 36px;
    letter-spacing: -0.05em;
    text-align: right;
  }
  .goodbuy-price span {
    font-size: 7.5rem;
    line-height: 70px;
  }
  .goodbuy-pretax {
    width: 100%;
    margin: 0;
    line-height: 14px;
    text-align: right;
  }
}
/* AEON FOOD STYLE
========================================================================== */
#foodstyle {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 26.7vw;
}

.foodstyle__headline {
  width: 100%;
  background-image: url(../img/foodstyle-back-sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  height: 53.3vw;
  margin: 0;
}
.foodstyle__headline .foodstyle-logo {
  width: 87vw;
  display: block;
  text-align: center;
  font-size: 2.4rem;
  color: #fff;
  text-align: center;
  line-height: 24px;
  padding: 14.7vw 0 0;
  letter-spacing: 0.2rem;
}
.foodstyle__headline .foodstyle-logo span {
  display: block;
  background: rgba(255, 255, 255, 0.8);
  padding: 3vw 4.3vw;
  border-radius: 4.3vw;
  margin-bottom: 4vw;
}
.foodstyle__headline .foodstyle-logo span img {
  height: 8vw;
}

.foodstyle {
  margin-top: 10.7vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  width: 89vw;
  gap: 10.7vw;
}
.foodstyle-txt {
  font-size: 1.8rem;
  line-height: 36px;
  font-weight: 400;
}
.foodstyle-img {
  width: 100%;
}
.foodstyle-img img {
  border-radius: 9.6vw;
}

@media screen and (min-width: 1200px) {
  #foodstyle {
    margin-bottom: 10.8vw;
  }
  .foodstyle__headline {
    height: 18.6vw;
    background-image: url(../img/foodstyle-back.png);
  }
  .foodstyle__headline .foodstyle-logo {
    width: 50vw;
    padding: 3.8vw 0 0;
    font-size: 4.2rem;
    line-height: 42px;
  }
  .foodstyle__headline .foodstyle-logo span {
    margin-bottom: 1.5vw;
    padding: 2vw 3.5vw;
    border-radius: 1.65vw;
  }
  .foodstyle__headline .foodstyle-logo span img {
    height: 3.2vw;
  }
  .foodstyle {
    margin-top: 4vw;
    flex-wrap: nowrap;
    width: 71vw;
    gap: 2.7vw;
  }
  .foodstyle-txt {
    font-size: 2.4rem;
    line-height: 48px;
  }
  .foodstyle-img {
    width: 33vw;
  }
  .foodstyle-img img {
    border-radius: 3vw;
  }
}
/* STORE
========================================================================== */
#store {
  background: transparent linear-gradient(90deg, #D0F0FF 0%, #EFEDE2 100%) 0% 0% no-repeat padding-box;
  padding: 26.7vw 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.store__headline {
  width: 100%;
  color: #1D2088;
  font-size: 3rem;
  line-height: 30px;
  text-align: center;
  margin: 0 0 13.3vw;
}
.store__headline span {
  display: block;
  color: #000;
  font-size: 1.4rem;
  line-height: 23px;
}

.store__wrap {
  width: 89vw;
  display: flex;
  flex-wrap: wrap;
  gap: 5vw;
}

.store02-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5vw;
}

.store01, .store02, .store03 {
  background: #fff;
  width: 100%;
  border-radius: 0 4.3vw 4.3vw 4.3vw;
}

.store01 {
  background-image: url(../img/store01-img.svg);
  background-size: calc(100% - 10.8vw) auto;
  background-repeat: no-repeat;
  background-position: center bottom 5.4vw;
  padding-bottom: 44vw;
}

.store02 {
  background-image: url(../img/store02-img.svg);
  background-size: 38vw auto;
  background-repeat: no-repeat;
  background-position: right 5.4vw bottom 5.4vw;
}

.store03 {
  background-image: url(../img/store03-img.svg);
  background-size: 32.5vw auto;
  background-repeat: no-repeat;
  background-position: right 5.4vw top 2vw;
}

.store-tab {
  width: 42.6vw;
  background: #1D2088;
  color: #fff;
  font-size: 1.4rem;
  line-height: 38px;
  border-radius: 0 0 4.3vw 4.3vw;
  padding-left: 5vw;
}

.store-txt .cap {
  display: block;
  font-size: 2.1rem;
}
.store-txt p {
  display: inline;
  font-size: 2.8rem;
  background: #fff;
}
.store-txt p .number {
  font-size: 6rem;
  line-height: 55px;
  color: #1D2088;
  background: #fff;
}
.store-txt .notes {
  font-size: 1.2rem;
  padding-left: 2vw;
  line-height: 12px;
}

.store01 .store-txt {
  padding: 3vw 5.4vw 3vw;
}

.store02 {
  background-position: right 5.4vw top 5.4vw;
}
.store02 .store-txt {
  padding: 3vw 5.4vw 5.4vw;
}
.store02 .store-txt .notes {
  margin-top: 1vw;
  display: block;
  padding-left: 0;
}

.store03 .store-txt {
  padding: 8vw 5.4vw 5.4vw;
}
.store03 .store-txt .notes {
  margin-top: 1vw;
  display: block;
  padding-left: 0;
}

.srore-img {
  padding: 0 5.4vw 5.4vw;
}
.srore-img img:nth-child(2) {
  margin-top: 5vw;
}

.store02 .srore-img {
  margin-top: -5vw;
  margin-right: 0;
}

@media screen and (min-width: 750px) {
  .store02 {
    background-size: 16.1vw auto;
    background-position: right 2.1vw bottom 2.1vw;
  }
}
@media screen and (min-width: 1200px) {
  #store {
    padding: 10.3vw;
  }
  .store__headline {
    width: 87vw;
    font-size: 4.2rem;
    line-height: 42px;
    text-align: left;
    margin: 0 0 2.1vw;
  }
  .store__headline span {
    font-size: 1.8rem;
    line-height: 32px;
  }
  .store__wrap {
    flex-wrap: nowrap;
    gap: 2vw;
  }
  .store02-wrap {
    gap: 2vw;
    width: calc((100% - 2vw) / 2);
  }
  .store01, .store02, .store03 {
    border-radius: 0 1.6vw 1.6vw 1.6vw;
  }
  .store01 {
    width: calc((100% - 2vw) / 2);
    padding-bottom: 20vw;
    background-size: calc(100% - 3.2vw) auto;
    background-position: center bottom 2.1vw;
  }
  .store02 {
    background-size: 16.1vw auto;
    background-position: right 2.1vw bottom 2.1vw;
  }
  .store03 {
    background-size: 13.7vw auto;
    background-position: right 2.1vw top 2vw;
  }
  .store-tab {
    width: 16.5vw;
    font-size: 2rem;
    line-height: 56px;
    border-radius: 0 0 1.6vw 1.6vw;
    padding-left: 2vw;
  }
  .store-txt .cap {
    font-size: 3.6rem;
  }
  .store-txt p {
    font-size: 4.8rem;
    line-height: 48px;
  }
  .store-txt p .number {
    font-size: 10.2rem;
    line-height: 85px;
  }
  .store-txt .notes {
    font-size: 1.6rem;
    padding-left: 1vw;
    line-height: 30px;
  }
  .store01 .store-txt {
    padding: 0 2.1vw 2.1vw;
  }
  .store02 .store-txt {
    padding: 1vw 2.1vw 2.1vw;
  }
  .store02 .store-txt .notes {
    display: block;
    padding-left: 0;
  }
  .store03 .store-txt {
    padding: 3vw 2.1vw 2.1vw;
  }
  .store03 .store-txt .notes {
    display: block;
    padding-left: 0;
  }
  .srore-img {
    padding: 0 2.1vw 2.1vw;
  }
  .srore-img img {
    width: 100%;
  }
}
/* footer
========================================================================== */
.footer {
  background: #1D2088;
  padding: 16vw 0 6vw;
}
.footer__logo {
  margin: 0 auto;
  width: 87vw;
  text-align: center;
}
.footer__txt {
  text-align: center;
  color: #fff;
  font-weight: 400;
  font-size: 1.6rem;
  margin-top: 13vw;
}

@media screen and (min-width: 750px) {
  .footer {
    padding: 4.5vw 0 1vw;
  }
  .footer__logo {
    height: 3.7vw;
  }
  .footer__txt {
    font-size: 1.6rem;
    margin-top: 3.5vw;
  }
}
/* 追従ボタン
========================================================================== */
/*--.float_btn {
  display: block;
  position: -webkit-sticky;
  position: sticky;
  z-index: 99990;
  top: 47vw;
  right: 1.6vw;
  width: 120px;
  height: 120px;
  background-image: url(../img/float_btn.png);
  background-size: contain;
  background-repeat:  no-repeat;
  background-position: center center;
  text-indent: 100%;
  white-space: nowrap;
  visibility: hidden;
}--*/
.float_btn {
  position: fixed;
  z-index: 99990;
  bottom: 2vw;
  right: 1.6vw;
  width: 120px;
  height: 120px;
  background-image: url(../img/float_btn.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.float_btn.is-show {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 750px) {
  .float_btn {
    bottom: 1vw;
    right: 5.5vw;
    width: 160px;
    height: 160px;
  }
}/*# sourceMappingURL=common.css.map */