@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  background: transparent;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
}

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

@font-face {
  font-family: "Sculpin"; /* サイト内で呼び出すときの名前（任意） */
  src: url("fonts/Sculpin-Bold.otf") format("opentype"); /* ★formatはopentypeにする */
  font-weight: bold; /* 太字フォントであることを定義 */
  font-display: swap;
}
#base .inner h1 {
  font-size: 140%;
  color: #ff6666;
}
#base .inner p {
  color: #58595b;
}

.body {
  background: linear-gradient(to bottom, #ffeee1, #fedfc5);
}

#base {
  max-width: 768px;
  margin: 0 auto;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "游ゴシック", sans-serif;
}
#base .inner {
  margin: 0 auto;
  padding-bottom: 100px;
  background-image: linear-gradient(135deg, #ffd1dc, #f2c3b3, #ffd1dc);
}
#base .inner .innerbox {
  padding: 0 5%;
}

.slider {
  padding: 0 0 5%;
}

.slider .slick-slide {
  margin-right: 16px;
}

.slider .slick-slide img {
  width: 100%;
  height: auto !important;
  -o-object-fit: cover;
     object-fit: cover;
}

.scrollanime {
  /*ここで全体のアニメーション秒数を設定*/
  transition: all ease 1.5s;
  /*出現前は全て透明に*/
  opacity: 0;
}

/*classに応じて出現前の位置や大きさを設定*/
.toUp {
  transform: translateY(50px);
}

.toDown {
  transform: translateY(-50px);
}

.toLeft {
  transform: translateX(50px);
}

.toRight {
  transform: translateX(-50px);
}

.toBig {
  transform: scale(0.8);
}

/*画面に入った後は元の位置や大きさに戻る*/
.fadeIn.scrollanime {
  opacity: 1;
}

.fadeIn.toUp {
  transform: translateY(0);
}

.fadeIn.toDown {
  transform: translateY(0);
}

.fadeIn.toLeft {
  transform: translateX(0);
}

.fadeIn.toRight {
  transform: translateX(0);
}

.fadeIn.toBig {
  transform: scale(1);
}

#base .inner .maintxt {
  margin: 15% auto;
  padding: 0 5%;
}
#base .inner .maintxt .maintxtbox {
  background-color: rgba(255, 255, 255, 0.3);
  width: 100%;
  padding: 5% 5%;
  border-radius: 15px;
}
#base .inner .maintxt .maintxtbox h1 {
  margin-bottom: 8%;
  font-weight: 700;
}
@media (min-width: 768px) {
  #base .inner .maintxt .maintxtbox h1 {
    font-size: 170%;
  }
}
#base .inner .maintxt .maintxtbox p {
  margin-bottom: 10%;
  font-size: 100%;
  line-height: 1.6;
}
@media (min-width: 768px) {
  #base .inner .maintxt .maintxtbox p {
    font-size: 120%;
    line-height: 1.7;
  }
}

.lineupmain {
  color: #ffffff;
}
.lineupmain h2 {
  text-align: center;
  line-height: 1.4;
  font-family: "Sculpin", sans-serif;
  font-weight: bold;
  font-size: 140%;
}
.lineupmain h2 span {
  font-size: 100%;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "游ゴシック", sans-serif;
}

.lineup .lineuplist .linenuplistimg {
  position: relative;
  padding: 0 10%;
  margin: 10% 0;
}
.lineup .lineuplist .linenuplistimg img.imgre2 {
  position: absolute;
  top: 45%;
  right: 5%;
  max-width: 30%;
}
.lineup .lineuplist p {
  display: block;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
}
.lineup .lineuptxt {
  background-color: rgba(255, 255, 255, 0.3);
  width: 90%;
  padding: 8% 4% 10% 4%;
  border-radius: 15px;
  margin: 8% auto;
}
.lineup .lineuptxt h3 {
  color: #ff6666;
  font-size: 140%;
  font-weight: 700;
  text-align: center;
  padding: 0 2% 5%;
}
@media (min-width: 768px) {
  .lineup .lineuptxt h3 {
    font-size: 170%;
  }
}
.lineup .lineuptxt p {
  color: #58595b;
  font-size: 100%;
  line-height: 1.6;
  margin: 2% 0 10%;
}
@media (min-width: 768px) {
  .lineup .lineuptxt p {
    font-size: 120%;
  }
}
.lineup .lineuptxt .point {
  margin-top: 5%;
}
.lineup .lineuptxt .point dl {
  display: flex;
  align-items: center;
  margin-bottom: 2.5%;
  background-color: #f7c873;
  border-radius: 50px;
  padding: 0 4% 2%;
  border: 1px solid #fb6f48;
}
.lineup .lineuptxt .point dl dt {
  width: 8%;
  padding-top: 2%;
}
.lineup .lineuptxt .point dl dd {
  width: 90%;
  font-size: 100%;
  font-weight: 700;
  padding: 2% 0 0 2%;
}
@media (min-width: 768px) {
  .lineup .lineuptxt .point dl dd {
    font-size: 120%;
  }
}
.lineup .lineuptxt .gelitem {
  text-align: center;
  font-weight: 700;
  max-width: 500px;
  margin: 0 auto;
}
.lineup .lineuptxt .gelitem img {
  margin: 10% auto 5%;
}
.lineup .lineuptxt .gelitem p {
  color: #ffffff;
  margin-bottom: 5%;
}
.lineup .lineuptxt .gelitem p span {
  display: inline-block;
  background-color: #f9c2dd;
  border: solid 1px #ffe5f1;
  padding: 3px 8px;
  font-size: 0.8rem;
  border-radius: 4px;
  margin-top: 5px;
}
.lineup a {
  display: block;
  padding: 5%;
  width: 90%;
  margin: 0 auto;
  border-radius: 15px;
  background-color: #ff6666;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 0 #cc5252;
  transition: all 0.2s;
  font-weight: 700;
  font-size: 110%;
}
@media (min-width: 768px) {
  .lineup a {
    width: 80%;
    font-size: 140%;
  }
}
.lineup a:hover {
  background-color: #ff8080;
  transform: translateY(2px);
  box-shadow: 0 2px 0 #cc5252;
}

.fragrance {
  margin: 2% auto 10%;
  background-color: rgba(255, 255, 255, 0.3);
  width: 90%;
  padding: 10% 5%;
  border-radius: 15px;
}
.fragrance h2 {
  text-align: center;
  line-height: 1.4;
  font-family: "Sculpin", sans-serif;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10%;
  font-size: 140%;
}
.fragrance h2 span {
  font-size: 100%;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "游ゴシック", sans-serif;
}
.fragrance h3 {
  margin: 8% 0 10%;
  font-weight: 700;
  font-size: 140%;
  color: #ff6666;
  text-align: center;
}
@media (min-width: 768px) {
  .fragrance h3 {
    font-size: 170%;
  }
}
.fragrance p {
  color: #58595b;
  font-size: 100%;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .fragrance p {
    font-size: 120%;
  }
}

.set {
  width: 90%;
  margin: 10% auto;
  padding: 5%;
  text-align: center;
  color: #ffffff;
}
.set figure {
  width: 70%;
  margin: 5% auto;
  padding: 2.5%;
  background-color: rgba(255, 255, 255, 0.6);
}
.set h2 {
  font-weight: 700;
  font-size: 140%;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .set h2 {
    font-size: 170%;
    line-height: 1.5;
  }
}
.set p {
  margin: 2% 0 3%;
  color: #58595b;
  font-size: 100%;
}
@media (min-width: 768px) {
  .set p {
    font-size: 120%;
  }
}
.set p span {
  font-weight: 700;
  color: rgb(253, 75, 75);
}
.set a {
  display: block;
  padding: 5%;
  width: 90%;
  margin: 0 auto;
  border-radius: 15px;
  background-color: #ff6666;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 0 #cc5252;
  transition: all 0.2s;
  font-weight: 700;
  font-size: 110%;
}
@media (min-width: 768px) {
  .set a {
    width: 70%;
    font-size: 140%;
  }
}
.set a:hover {
  background-color: #ff8080;
  transform: translateY(2px);
  box-shadow: 0 2px 0 #cc5252;
}

.pitem {
  margin: 5% 0 10%;
  padding: 5% 5%;
}
.pitem ul {
  margin: 5% auto 10%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
.pitem ul li {
  width: 30%;
}
.pitem ul li:last-child {
  width: 35%;
}
.pitem ul li:first-child {
  align-self: end;
}/*# sourceMappingURL=style.css.map */