@charset "UTF-8";
/*-----------------------------------------
    color
-----------------------------------------*/
/*-----------------------------------------
    font
-----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
/*-----------------------------------------
    メディアクエリ
-----------------------------------------*/
/*-----------------------------------------

リセット

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

html,
body {
  padding: 0;
  margin: 0;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 62.5%;
}

@media screen and (min-width: 768px) and (max-width: 1440px) {
  html {
    font-size: 0.625vw;
  }
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
  font-weight: normal;
}

/*-----------------------------------------

全体指定

----------------------------------------*/
.inner {
  max-width: 1060px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .inner {
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

body {
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  background: #fff;
  color: #333333;
}

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

a {
  color: inherit;
  text-decoration: none;
}

li {
  list-style: none;
}

.header {
  width: 100%;
  height: 77px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
}

@media (max-width: 767px) {
  .header {
    width: 100%;
    height: 73px;
    background: transparent;
  }
}

.header__nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

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

.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-nav li {
  font-size: 18px;
}

.header-nav li:not(:first-child) {
  margin-left: 7.5vmax;
}

.header-nav a {
  display: block;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
}

.header-nav a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 1240px) {
  .header-nav li {
    font-size: 16px;
  }
  .header-nav li:not(:first-child) {
    margin-left: 4.5vmax;
  }
}

.header__sns {
  position: absolute;
  top: 50%;
  right: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1rem;
}

@media (max-width: 767px) {
  .header__sns {
    display: none;
  }
}

.header__sns li:not(:first-child) {
  margin-left: 4rem;
}

.header__sns a {
  display: block;
  width: 32px;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
}

.header__sns a:hover {
  opacity: 0.6;
}

/*-----------------------------------------
    //drawer
-----------------------------------------*/
.drawer__icon {
  position: fixed;
  top: 1.7rem;
  right: 1rem;
  z-index: 101;
  width: 4rem;
  height: 4rem;
  background: #fff;
  cursor: pointer;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  display: none;
}

@media (max-width: 767px) {
  .drawer__icon {
    display: block;
  }
}

.drawer__icon.is-active span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  left: -0.5rem;
  top: 1rem;
}

.drawer__icon.is-active span:nth-child(2) {
  display: none;
}

.drawer__icon.is-active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  left: -0.5rem;
  top: 1rem;
}

.drawer__bars {
  width: 3rem;
  height: 3rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.9rem;
  position: relative;
  cursor: pointer;
}

.drawer__bars span {
  width: 100%;
  height: 0.2rem;
  background: #707070;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}

.drawer__bars span:nth-child(1) {
  top: 0;
}

.drawer__bars span:nth-child(2) {
  top: 1rem;
}

.drawer__bars span:nth-child(3) {
  top: 2rem;
}

.drawer__content {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 73px;
  right: 0;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
  overflow-y: scroll;
}

.drawer__content--inner {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  z-index: 99;
}

.drawer-nav {
  text-align: center;
}

.drawer-nav li {
  font-size: 20px;
  border-bottom: 1px solid #333333;
}

.drawer-nav a {
  padding: 2rem 0;
  display: block;
}

.drawer__content--sns {
  margin-top: 6rem;
  text-align: center;
}

.drawer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2rem;
}

.drawer__sns li:not(:first-child) {
  margin-left: 2rem;
}

.drawer__sns a {
  width: 40px;
}

.drawer__sns a img {
  width: 40px;
}

/*-----------------------------------------
mv
-----------------------------------------*/
.mv {
  margin-top: 77px;
}

@media (max-width: 767px) {
  .mv {
    margin-top: 73px;
  }
}

.mv-content {
  vertical-align: bottom;
  line-height: 1.0em;
}

.pc-only {
  display: block;
}

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

.sp-960 {
  display: none;
}

@media screen and (max-width: 960px) {
  .sp-960 {
    display: block;
  }
}

.sp-only {
  display: none;
}

@media (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.sp-only2 {
  display: none;
}

@media screen and (max-width: 400px) {
  .sp-only2 {
    display: block;
  }
}

/*-----------------------------------------
    section-title
-----------------------------------------*/
.section__head {
  width: max(45.2rem,330px);
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .section__head {
    width: max(33rem,330px);
  }
}

@media screen and (max-width: 540px) {
  .section__head {
    width: 98%;
  }
}

.to-top {
  position: fixed;
  right: 2rem;
  bottom: 10rem;
  z-index: 20;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}

@media (max-width: 767px) {
  .to-top {
    right: 0.5rem;
    bottom: 5rem;
  }
}

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

.to-top .to-top__icon img {
  width: 5.2em;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}

.to-top .to-top__icon img:hover {
  opacity: .7;
}

@media (max-width: 767px) {
  .to-top .to-top__icon img {
    width: 4.2em;
  }
}

.footer {
  width: 100%;
  height: 80px;
  background: #FDFDE5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__copy {
  text-align: center;
  font-size: 14px;
}

/*-----------------------------------------
    about
-----------------------------------------*/
.about {
  position: relative;
  padding-bottom: 25rem;
  -webkit-transform: translateX(0px) translateY(-22px);
          transform: translateX(0px) translateY(-22px);
}

@media (max-width: 767px) {
  .about {
    padding-bottom: 19rem;
  }
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: url(../images/bg_top.png) no-repeat top center/contain;
  z-index: -1;
}

.about::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: url(../images/bg_bottom.png) no-repeat bottom center/cover;
  z-index: -1;
}

.about__bg {
  background: url(../images/bg_sakura.png) repeat-y top center/contain;
}

@media screen and (max-width: 960px) {
  .about__bg {
    background: url(../images/bg_sakura.png) repeat-y top center/contain;
  }
}

.about-info {
  padding-top: 12rem;
}

@media (max-width: 767px) {
  .about-info {
    padding-top: 6rem;
  }
}

.about-info__inner {
  max-width: 1120px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .about-info__inner {
    width: 100%;
  }
}

.about-info__content {
  margin-top: 1.4rem;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  padding: 5% 2.2% 5% 3.5%;
  position: relative;
  background: #fff;
}

.about-info__content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 20px 20px rgba(0, 0, 0, 0.16);
          box-shadow: 0 20px 20px rgba(0, 0, 0, 0.16);
  z-index: -1;
}

.about-info__content p {
  font-size: max(2.4rem,18px);
  letter-spacing: 0.01rem;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .about-info__content p {
    font-size: 18px;
  }
}

@supports (-webkit-filter: blur(30px)) {
  .about-info__content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(110deg, #A4E6F9, #9FDDCA, #E7F1C9, #A1C1DE 100%);
    -webkit-filter: blur(30px);
    filter: blur(30px);
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-box-shadow: none;
            box-shadow: none;
    z-index: -1;
  }
  @media (max-width: 767px) {
    .about-info__content::before {
      -webkit-filter: blur(20px);
      filter: blur(20px);
    }
  }
}

@media screen and (max-width: 540px) {
  .about-info__content {
    margin-top: 1rem;
    padding: 5%;
  }
  .about-info__content p {
    font-size: 16px;
  }
}

.about-info-bg {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}

/*----------------- about-days -------------------*/
.about-days {
  margin-top: 13rem;
}

@media screen and (max-width: 600px) {
  .about-days {
    margin-top: 5rem;
  }
}

.about-days__inner {
  max-width: 1120px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .about-days__inner {
    width: 100%;
  }
}

.about-days__content {
  margin-top: 2rem;
  position: relative;
  background: #fff;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.about-days__content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 20px 20px rgba(0, 0, 0, 0.16);
          box-shadow: 0 20px 20px rgba(0, 0, 0, 0.16);
  z-index: -1;
}

@supports (-webkit-filter: blur(30px)) {
  .about-days__content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(110deg, #99DFF4FF, #FEFA98, #F1ADCF, #9398C2 100%);
    -webkit-filter: blur(30px);
    filter: blur(30px);
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-box-shadow: none;
            box-shadow: none;
    z-index: -1;
  }
  @media (max-width: 767px) {
    .about-days__content::before {
      -webkit-filter: blur(20px);
      filter: blur(20px);
    }
  }
}

@media screen and (max-width: 540px) {
  .about-days__content {
    margin-top: 1rem;
  }
}

.about-days__lists {
  max-width: 1000px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 10% 0;
}

@media (max-width: 767px) {
  .about-days__lists {
    padding: 11% 0;
    width: 100%;
  }
}

.about-days__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about-days__list:not(:first-child) {
  margin-top: 7rem;
}

@media (max-width: 767px) {
  .about-days__list:not(:first-child) {
    margin-top: 5rem;
  }
}

@media screen and (max-width: 960px) {
  .about-days__list {
    display: block;
    width: 330px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 600px) {
  .about-days__list {
    width: 80%;
  }
}

.about-days__shop-name {
  font-weight: 700;
}

@media screen and (max-width: 960px) {
  .about-days__shop-name {
    text-align: center;
  }
}

.about-days__dl {
  margin: 0;
  margin-left: 9rem;
  position: relative;
}

.about-days__dl::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.1rem;
  height: 10rem;
  background: url(../images/line.png) no-repeat center center/contain;
}

@media screen and (max-width: 960px) {
  .about-days__dl {
    margin-left: 0;
    margin-top: 6rem;
  }
  .about-days__dl::after {
    left: 50%;
    right: 0;
    top: -8rem;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

@media screen and (max-width: 960px) {
  .about-days__dl {
    font-size: 14px;
  }
}

@media screen and (max-width: 540px) {
  .about-days__dl {
    font-size: 12px;
  }
}

.about-days__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about-days__row:not(:first-child) {
  margin-top: 0.5rem;
}

@media (max-width: 767px) {
  .about-days__row:not(:first-child) {
    margin-top: 1.2rem;
  }
}

.about-days__dt {
  margin: 0;
  width: max(9rem,100px);
}

@media (max-width: 767px) {
  .about-days__dt {
    width: 7rem;
  }
}

.about-days__dd {
  margin: 0;
}

.about-days__dd a {
  text-decoration: underline;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
}

.about-days__dd a:hover {
  opacity: 0.6;
}

.about-days-bg {
  position: absolute;
  z-index: -1;
  top: -4%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}

/*----------------- about-shop -------------------*/
.about-shop {
  margin-top: 13rem;
}

@media (max-width: 767px) {
  .about-shop {
    margin-top: 8rem;
  }
}

.about-shop__inner {
  max-width: 1120px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .about-shop__inner {
    width: 100%;
  }
}

.about-shop__content {
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  padding: 5.5% 0;
  position: relative;
  background: #fff;
}

@media (max-width: 767px) {
  .about-shop__content {
    padding: 15% 3% 28%;
    margin-top: 3rem;
    line-height: 1.8;
  }
}

.about-shop__content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 20px 20px rgba(0, 0, 0, 0.16);
          box-shadow: 0 20px 20px rgba(0, 0, 0, 0.16);
  z-index: -1;
}

@supports (-webkit-filter: blur(30px)) {
  .about-shop__content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(110deg, #99DFF4FF, #FEFA98, #F1ADCF, #9398C2 100%);
    -webkit-filter: blur(30px);
    filter: blur(30px);
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-box-shadow: none;
            box-shadow: none;
    z-index: -1;
  }
  @media (max-width: 767px) {
    .about-shop__content::before {
      -webkit-filter: blur(20px);
      filter: blur(20px);
    }
  }
}

.about-shop__content-inner {
  margin-left: auto;
  margin-right: auto;
  width: 71.5%;
}

@media (max-width: 767px) {
  .about-shop__content-inner {
    width: 95%;
  }
}

.about-shop__dl {
  margin: 0;
}

@media (max-width: 767px) {
  .about-shop__dl {
    font-size: 14px;
    max-width: 334px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 540px) {
  .about-shop__dl {
    font-size: 12px;
  }
}

.about-shop__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
}

.about-shop__row:not(:first-child) {
  margin-top: 0.7rem;
}

.about-shop__dt {
  margin: 0;
  width: max(13.2rem,130px);
}

@media (max-width: 767px) {
  .about-shop__dt {
    width: max(10rem,120px);
  }
}

@media screen and (max-width: 540px) {
  .about-shop__dt {
    width: 10rem;
  }
}

.about-shop__dd {
  margin: 0;
}

.about-shop__caption {
  margin-top: 3.5rem;
  letter-spacing: -0.02rem;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .about-shop__caption {
    font-size: 14px;
  }
}

.about-shop__attention {
  margin-top: 4rem;
  font-size: 14px;
}

@media (max-width: 767px) {
  .about-shop__attention {
    font-size: 12px;
    line-height: 2;
  }
}

.about-shop__attention-p:not(:first-child) {
  margin-top: 1rem;
}

.about-shop__attention-p a {
  text-decoration: underline;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
}

.about-shop__attention-p a:hover {
  opacity: 0.6;
}

.about-shop__banner {
  margin-top: 4.3rem;
  width: 63%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .about-shop__banner {
    width: 90%;
  }
}

.about-shop__banner a {
  display: block;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
}

.about-shop__banner a:hover {
  opacity: 0.6;
}

.about-shop__banner--attention {
  margin-top: 1rem;
}

.about-shop__banner--attention-p {
  font-size: 14px;
}

@media (max-width: 767px) {
  .about-shop__banner--attention-p {
    font-size: 12px;
  }
}

.about-shop-bg {
  position: absolute;
  z-index: -1;
  top: -4%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}

/*-----------------------------------------
twitter
-----------------------------------------*/
.twitter {
  margin-top: 12rem;
}

@media screen and (max-width: 1024px) {
  .twitter {
    margin-top: 22rem;
  }
}

@media screen and (max-width: 767px) {
  .twitter {
    margin-top: 4rem;
  }
}

.twitter__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  width: 82%;
}

@media screen and (max-width: 800px) {
  .twitter__content {
    display: block;
  }
}

@media screen and (max-width: 800px) {
  .twitter__content {
    width: 100%;
  }
}

.twitter__left {
  position: relative;
  text-align: center;
  width: 53rem;
  max-width: 530px;
  height: 458px;
  background: url(../images/bg_twitter.png) no-repeat center center/cover;
}

@media screen and (max-width: 800px) {
  .twitter__left {
    max-height: 458px;
    width: 432px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 380px) {
  .twitter__left {
    height: 33rem;
    max-height: 330px;
    width: 432px;
  }
}

.twitter__left--content {
  position: absolute;
  top: 52%;
  left: 50%;
  width: 90%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.twitter__left--lead {
  font-size: 21px;
  letter-spacing: 0.08rem;
  line-height: 1.8;
}

@media screen and (max-width: 960px) {
  .twitter__left--lead {
    font-size: 18px;
  }
}

.twitter__left--link {
  margin-top: 5rem;
}

.twitter__left--link a {
  font-size: 20px;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  text-decoration: underline;
}

.twitter__left--link a span {
  font-size: 14px;
}

.twitter__left--link a:hover {
  opacity: 0.6;
}

.twitter__left--p {
  font-size: 14px;
}

@media (max-width: 767px) {
  .twitter__left--p {
    font-size: 18px;
  }
}

.twitter__right {
  margin-left: auto;
}

@media screen and (max-width: 1024px) {
  .twitter__right {
    width: 90%;
    margin-right: auto;
  }
  .twitter__right > .twitter-timeline {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}

/*-----------------------------------------
benefit
-----------------------------------------*/
.benefit {
  padding-top: 13rem;
  padding-bottom: 19rem;
  margin-top: -14rem;
  width: 100%;
  height: 100%;
  background: url(../images/bg_paper.png) no-repeat top center/cover;
  -webkit-transform: translateX(0px) translateY(-22px);
          transform: translateX(0px) translateY(-22px);
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .benefit {
    padding-top: 7rem;
    padding-bottom: 10rem;
    background: url(../images/sp-bg_paper.png) no-repeat top center/cover;
  }
}

@media screen and (max-width: 960px) {
  .benefit {
    padding-top: 7rem;
    padding-bottom: 10rem;
    background: url(../images/bg_paper.png) no-repeat top center/cover;
  }
}

.benefit__content {
  margin-top: 1rem;
  max-width: 1000px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  padding: 3% 3% 1%;
}

.benefit__lead {
  text-align: center;
  font-size: 18px;
}

.benefit__img--big {
  width: 44.6%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media (max-width: 767px) {
  .benefit__img--big {
    width: 100%;
  }
}

.benefit__img--big a {
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}

.benefit__img--big a:hover {
  opacity: 0.6;
}

.benefit__img {
  width: 89%;
  margin-top: 2.7rem;
  margin-left: auto;
  margin-right: auto;
}

.benefit__img a {
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}

.benefit__img a:hover {
  opacity: 0.6;
}

/*-----------------------------------------
item
-----------------------------------------*/
.item {
  margin-top: -20rem;
  padding-top: 20rem;
  padding-bottom: 11rem;
  width: 100%;
  position: relative;
  -webkit-transform: translateX(0px) translateY(7px);
          transform: translateX(0px) translateY(7px);
}

.item::before {
  content: "";
  position: absolute;
  top: -20rem;
  width: 100%;
  height: 55%;
  background: url(../images/bg_star.png) no-repeat top center/cover;
  z-index: -1;
}

.item::after {
  content: "";
  position: absolute;
  bottom: 9px;
  width: 100%;
  height: 50%;
  background: url(../images/bg_star.png) no-repeat bottom center/cover;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  z-index: -1;
}

@media (max-width: 767px) {
  .item {
    padding-top: 22.5rem;
    padding-bottom: 18rem;
  }
  .item::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/sp-bg_star.png) no-repeat top center/cover;
    z-index: -1;
  }
  .item::after {
    display: none;
  }
}

.item-anchor {
  padding-top: 10rem;
}

@media (max-width: 767px) {
  .item-anchor {
    padding-top: 1.5rem;
  }
}

.item__inner {
  max-width: 1000px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.item__content {
  position: relative;
  background: #fff;
  padding: 1.7rem 2rem 2.4rem;
  z-index: 1;
}

.item-lists {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  -webkit-column-gap: 1.9rem;
          column-gap: 1.9rem;
  row-gap: 2.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 1240px) {
  .item-lists {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  .item-lists {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.item-list {
  position: relative;
}

.item-list a {
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
}

.item-list a:hover {
  opacity: 0.6;
}

/*.item-list__release {
  text-align: center;
  margin-bottom: 1rem;
  color: #fff;
  -webkit-text-stroke: 0.8px #CA2323;
}

@media (max-width: 767px) {
  .item-list__release {
    font-size: 2rem;
  }
}

@media screen and (min-width: 1441px) {
  .item-list__release {
    margin-bottom: 15px;
  }
}*/
.item-list__release {
  text-align: center;
  margin-bottom: 1rem;
}

.item-list__release p {
  color: #fff;
  background: #CA2323;
  display: inline-block;
  padding: 1px 15px;
  font-size: 13px;
}

@media (max-width: 767px) {
  .item-list__release p {
    font-size: 15px;
    margin-bottom: 1rem;
  }
}

@media screen and (min-width: 1441px) {
  .item-list__release .item-list__release {
    margin-bottom: 14px;
  }
}


.item-list__attention {
  line-height: 1.2;
  background: #FDFDE5;
}

.item-list__attention p {
  text-align: center;
  font-size: 14px;
}

@media (max-width: 767px) {
  .item-list__attention p {
    font-size: 16px;
  }
}

.item-list__body {
  margin-top: 1.6rem;
  text-align: center;
}

.item-list__body--item-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.08rem;
}

@media (max-width: 767px) {
  .item-list__body--item-name {
    font-size: 18px;
  }
}

.item-list__body--price {
  font-size: 14px;
}

.item-list__body--price span {
  font-size: 10px;
}

@media (max-width: 767px) {
  .item-list__body--price span {
    font-size: 12px;
  }
}

.reserve-label {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #CA2323;
  color: #fff;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  font-size: 12px;
  line-height: 1.2;
  top: 0%;
  left: 0%;
  /*-----------------------------------------
        2022/10/17 z-index: 2; 追記
    -----------------------------------------*/
  z-index: 2;
}

@media screen and (max-width: 1240px) {
  .reserve-label {
    width: 80px;
    height: 80px;
    font-size: 20px;
    line-height: 1.2;
    top: 0%;
    left: 0%;
  }
}

/*-----------------------------------------
     2022/10/17 修正 ここから
-----------------------------------------*/
.reserve-label-2 {
  width: 60px;
  height: 60px;
  text-align: center;
}

@media screen and (max-width: 1240px) {
  .reserve-label-2 {
    width: 80px;
    height: 80px;
    font-size: 16px;
  }
}

/*-----------------------------------------
     2022/10/17 修正 ここまで
-----------------------------------------*/
/*-----------------------------------------
attention
-----------------------------------------*/
.attention {
  padding-top: 7.4rem;
}

@media (max-width: 767px) {
  .attention {
    padding-top: 3rem;
  }
}

.attention__inner {
  max-width: 1000px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.attention__content {
  margin-top: 0.4rem;
  background: #fff;
  padding: 2.1% 4.4% 1.6%;
}

@media screen and (max-width: 960px) {
  .attention__content {
    margin-top: 3rem;
    padding: 6%;
  }
}

@media screen and (max-width: 767px) {
  .attention__content {
    padding: 10%;
  }
}

.attention-li {
  font-size: 14px;
  line-height: 1.8;
  list-style: disc;
}

@media (max-width: 767px) {
  .attention-li {
    margin-top: 2rem;
  }
}
/*# sourceMappingURL=style.css.map */