@charset "UTF-8";
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
/*--------------------------------------*
* ベースカラー
*--------------------------------------*/
/*--------------------------------------*
* フォント
*--------------------------------------*/
/*--------------------------------------*
* ブレイクポイント
*--------------------------------------*/
/*--------------------------------------*
* vw変換(SP用)
*--------------------------------------*/
/*--------------------------------------*
* vw変換(PC用)
*--------------------------------------*/
/*--------------------------------------*
* デフォルトスタイル
*--------------------------------------*/
html,
body {
  width: 100%;
  font-size: 16px;
  margin: 0 auto;
  font-family: "zen-kaku-gothic-new", sans-serif; /* R:400,M:500 */
  scroll-behavior: smooth;
}

img,
video,
object {
  width: 100%;
  border: none;
  display: block;
  pointer-events: none;
}

@media screen and (min-width: 769px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .pcNone {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pcNone {
    display: block;
  }
}

@media print {
  img {
    display: none;
  }
}
/*--------------------------------------*
* aタグ
*--------------------------------------*/
a {
  display: block;
  text-decoration: none;
  color: #000;
}
@media screen and (min-width: 769px) {
  a {
    transition: opacity 0.4s;
  }
  a:hover {
    opacity: 0.6;
  }
}
a[href=""] {
  pointer-events: none;
}

/*--------------------------------------*
* ローディング
*--------------------------------------*/
#loading-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 999;
}

/*-------------------
* コンテンツのスタイル
-------------------*/
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
/*--------------------------------------*
* FV
*--------------------------------------*/
.fv {
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .fv__img {
    width: 22.9166666667vw;
  }
}
@media screen and (min-width: 769px) {
  .fv__img__wrapper {
    width: 22.9166666667vw;
    position: absolute;
    top: 53%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 768px) {
  .fv__img__wrapper .item-1 {
    width: 39.4666666667vw;
    top: -17.6vw;
    right: -19.7333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .fv__img__wrapper .item-1 {
    width: 12.9166666667vw;
    top: -5.625vw;
    right: -6.4583333333vw;
  }
}
@media screen and (max-width: 768px) {
  .fv__img__wrapper .item-2 {
    width: 23.7333333333vw;
    left: -18.6666666667vw;
    bottom: -10.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .fv__img__wrapper .item-2 {
    width: 7.7777777778vw;
    left: -4.9305555556vw;
    bottom: 0.7638888889vw;
  }
}
@media screen and (min-width: 769px) {
  .fv__img__wrapper .item-3 {
    width: 13.6805555556vw;
    top: -4.4444444444vw;
    left: -4.2361111111vw;
  }
}
@media screen and (max-width: 768px) {
  .fv__title {
    margin: -8.8vw auto 0;
  }
}
@media screen and (max-width: 768px) {
  .fv__title__en {
    width: 59.7333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .fv__title__en {
    width: 21.1111111111vw;
  }
}
@media screen and (max-width: 768px) {
  .fv__title__ja {
    width: 56vw;
    margin: 2.6666666667vw auto 0;
  }
}
@media screen and (min-width: 769px) {
  .fv__title__ja {
    width: 19.6527777778vw;
    margin: 0.8333333333vw auto 0;
  }
}

/*--------------------------------------*
* 基本設定
*--------------------------------------*/
/*-------------------
* コンテンツのスタイル
-------------------*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.opacity {
  opacity: 0;
}

@keyframes maskLeft {
  0% {
    mask-position: left;
    -webkit-mask-position: left;
  }
  100% {
    mask-position: right;
    -webkit-mask-position: right;
  }
}
@keyframes maskRight {
  0% {
    mask-position: right;
    -webkit-mask-position: right;
  }
  100% {
    mask-position: left;
    -webkit-mask-position: left;
  }
}
.mask_left {
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.mask_right {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.mask_full {
  clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
figure.zoom {
  overflow: hidden;
}

/* fadeIn */
.fadeIn {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.fadeIn.is-show {
  opacity: 1;
}

.fadeUp {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.fadeUp.is-show {
  opacity: 1;
  transform: none;
}

.fadeLeft {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.6s ease;
}
.fadeLeft.is-show {
  opacity: 1;
  transform: none;
}

.fadeDown {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.6s ease;
}
.fadeDown.is-show {
  opacity: 1;
  transform: none;
}

.fadeIn__stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s ease;
}

.fadeIn__stagger > *:nth-child(1) {
  transition-delay: 0.2s;
}

.fadeIn__stagger > *:nth-child(2) {
  transition-delay: 0.4s;
}

.fadeIn__stagger > *:nth-child(3) {
  transition-delay: 0.6s;
}

.fadeIn__stagger > *:nth-child(4) {
  transition-delay: 0.8s;
}

.fadeIn__stagger.is-show > * {
  opacity: 1;
  transform: none;
}

.pw_footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.pw_footer a,
.pw_footer p {
  outline: none;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  color: inherit;
  vertical-align: baseline;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.pw_footer {
  background: linear-gradient(to bottom, transparent 6.8vw, #ea5206 6.8vw);
  padding: 0 7% 15%;
  margin-top: calc(-2% - 4.7vw);
}

.pw_footer img {
  width: 100%;
}

@media screen and (min-width: 1100px) {
  .pw_footer {
    background: linear-gradient(to bottom, transparent 40px, #ea5206 40px);
    padding: 0 0 80px;
    margin-top: -40px;
  }
}
@media screen and (min-width: 1100px) {
  .pw_footer .footer_pcflex_container {
    display: flex;
    max-width: 1060px;
    margin: 0 auto;
    gap: 30px;
    align-items: flex-start;
  }
}
@media screen and (min-width: 1100px) {
  .pw_footer .footer_pcflex_container .footer_pcflex,
  .pw_footer .footer_pcflex_container .footer_bnr {
    width: 33.3333333333%;
  }
}
.pw_footer ul {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  padding-bottom: 8%;
}

.pw_footer ul li {
  width: 50%;
  margin-top: 5%;
}

.pw_footer ul li a {
  display: flex;
  color: #fdfad9;
  align-items: flex-start;
  gap: 5px;
}

.pw_footer ul li a p {
  font-family: "century-gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 5.6vw;
  line-height: 1;
}

@media screen and (min-width: 1100px) {
  .pw_footer ul li a p {
    font-size: 21px;
  }
}
.pw_footer ul li a p span {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2.6666666667vw;
  margin-top: 5%;
  display: block;
}

@media screen and (min-width: 1100px) {
  .pw_footer ul li a p span {
    font-size: 10px;
  }
}
.pw_footer ul li a img {
  width: 3.5vw;
  margin-top: 2%;
}

@media screen and (min-width: 1100px) {
  .pw_footer ul li a img {
    width: 13px;
    margin-top: 4px;
  }
}
.pw_footer ul li span {
  color: #fff;
}

.pw_footer .f_title {
  font-family: "century-gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 5.6vw;
  text-align: center;
  position: relative;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 10%;
  padding: 4% 20%;
  color: #672d0c;
}

@media screen and (min-width: 1100px) {
  .pw_footer .f_title {
    font-size: 20px;
    padding: 28px 6%;
    margin: 0 auto 50px;
  }
}
.pw_footer .f_title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-image: url(../assets/images/pw_footer/cate_t_back1.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
}

.pw_footer .menu_cate_title {
  font-size: 10px;
  color: #ffaa7f;
  border-bottom: 1px solid #ffaa7f;
  padding-bottom: 1%;
  font-family: "century-gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.pw_footer .footer_bnr {
  display: flex;
  color: #fff;
  gap: 5%;
  margin: 5% auto;
  font-size: 11px;
}

.footer_bnr p {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 500;
  font-style: normal;
}

@media screen and (min-width: 1100px) {
  .pw_footer .footer_bnr {
    margin: 0;
  }
}
.pw_footer .footer_bnr p {
  margin-top: 3%;
}

@media screen and (min-width: 1100px) {
  .pc_flex {
    display: flex;
    align-items: flex-start;
  }
  .pc_flex .fv,
  .pc_flex .index,
  .pc_flex .wrapper {
    width: 33.3333333333%;
  }
  .pc_flex .fv {
    order: 1;
  }
  .pc_flex .wrapper {
    order: 2;
    margin-top: 50px;
  }
  .pc_flex .index {
    order: 3;
  }
  .pc_flex .fv,
  .pc_flex .index {
    position: sticky;
    top: 50px;
    height: calc(100vh - 50px);
  }
}
/*--------------------------------------*
* セクション共通
*--------------------------------------*/
.content {
  overflow: clip;
}

main {
  overflow: clip; /* 変更なし */
}

.main__wrapper {
  opacity: 0;
}

img {
  pointer-events: none;
  height: auto;
}

@media print {
  img {
    display: none;
  }
}
/*--------------------------------------*
説明文
*--------------------------------------*/
@media screen and (max-width: 768px) {
  .description {
    margin-top: 15.4666666667vw;
    padding-bottom: 20.8vw;
  }
  .description__wrapper__text {
    text-align: center;
    font-weight: 500;
    line-height: 2;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .description__wrapper__text {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .description__wrapper {
    width: 28.0555555556vw;
    margin: 4.1666666667vw auto 0;
  }
  .description__wrapper__text {
    text-align: center;
    line-height: 2;
    font-size: 0.9722222222vw;
  }
}

/*--------------------------------------*
プレゼント
*--------------------------------------*/
.present {
  background-color: #fff;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .present {
    padding: 30.6666666667vw 0;
  }
}
@media screen and (min-width: 769px) {
  .present {
    padding: 8.6111111111vw 0;
  }
}
.present__wrapper {
  border: solid 1px #000;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .present__wrapper {
    width: 85.6vw;
  }
}
@media screen and (min-width: 769px) {
  .present__wrapper {
    width: 35.8333333333vw;
  }
}
.present__wrapper__title .obi {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .present__wrapper__title .obi {
    width: 56vw;
    margin-top: 11.4666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .present__wrapper__title .obi {
    width: 14.5833333333vw;
    margin-top: 2.9166666667vw;
  }
}
.present__wrapper__title .title {
  text-align: center;
  font-family: "ogg", sans-serif; /* L:300 */
}
@media screen and (max-width: 768px) {
  .present__wrapper__title .title {
    font-size: 8vw;
    padding-top: 3.2vw;
    padding-bottom: 13.8666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .present__wrapper__title .title {
    font-size: 2.7777777778vw;
    font-size: 2.7777777778vw;
    padding: 0.8333333333vw 0 2.9166666667vw;
  }
}
.present__wrapper__item__title {
  font-family: "ogg", sans-serif; /* L:300 */
  text-align: center;
}
@media screen and (max-width: 768px) {
  .present__wrapper__item__title {
    font-size: 6.4vw;
    margin-bottom: 2.1333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .present__wrapper__item__title {
    font-size: 2.0833333333vw;
    margin-bottom: 0.4861111111vw;
  }
}
.present__wrapper__item__text {
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .present__wrapper__item__text {
    font-size: 3.2vw;
    width: 74.6666666667vw;
    margin: 0 auto 10.1333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .present__wrapper__item__text {
    font-size: 1.0416666667vw;
    line-height: 2;
    width: 23.8194444444vw;
    margin: 0 auto 2.7777777778vw;
  }
}
.present__wrapper__btn {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .present__wrapper__btn {
    padding-bottom: 8vw;
  }
}
@media screen and (min-width: 769px) {
  .present__wrapper__btn {
    padding-bottom: 3.4722222222vw;
  }
}
.present__wrapper__btn a {
  display: inline-block;
  text-decoration: underline;
  text-align: right;
  color: #3075d6;
}
@media screen and (max-width: 768px) {
  .present__wrapper__btn a {
    font-size: 3.7333333333vw;
    padding-right: 5.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .present__wrapper__btn a {
    font-size: 1.1111111111vw;
    padding-right: 2.7777777778vw;
  }
}

/*--------------------------------------*
目次
*--------------------------------------*/
.index {
  background-color: #fff;
}
.index__wrapper {
  background-image: url(../assets/images/graph_paper.webp);
  background-position: center;
  background-size: cover;
  background-repeat: repeat;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .index__wrapper .index__inner {
    position: relative;
  }
  .index__wrapper .index__inner .wave-txt {
    padding-top: 8vw;
  }
  .index__wrapper .index__inner .wave-txt .text {
    font-size: 8vw;
    transform: rotate(-8deg);
    font-family: "ogg", sans-serif; /* L:300 */
    margin-left: 8vw;
  }
  .index__wrapper .index__inner .wave-txt .wave {
    width: 82.6666666667vw;
  }
  .index__wrapper .index__inner .green {
    width: 50.9333333333vw;
    margin-top: 5.8666666667vw;
    margin-left: 4.2666666667vw;
  }
  .index__wrapper .index__inner .sky {
    width: 63.7333333333vw;
    margin-top: 22.1333333333vw;
    margin-left: 1.0666666667vw;
    padding-bottom: 4.5333333333vw;
  }
  .index__wrapper .index__inner .beach {
    width: 50.4vw;
    position: absolute;
    top: 83.4666666667vw;
    right: 1.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .index__wrapper {
    height: 100vh;
    position: sticky;
    top: 0;
  }
  .index__wrapper .index__inner {
    position: relative;
    height: 100vh;
  }
  .index__wrapper .index__inner .wave-txt {
    position: absolute;
    top: 5%;
  }
  .index__wrapper .index__inner .wave-txt .text {
    font-size: 2.0833333333vw;
    transform: rotate(-8deg);
    font-family: "ogg", sans-serif; /* L:300 */
    margin-left: 4.8611111111vw;
  }
  .index__wrapper .index__inner .wave-txt .wave {
    width: 27.4305555556vw;
    margin: 0.3472222222vw 0 0 -3.2638888889vw;
  }
  .index__wrapper .index__inner .green {
    width: 13.2638888889vw;
    position: absolute;
    top: 22%;
    left: 2.7777777778vw;
    left: 2.7777777778vw;
  }
  .index__wrapper .index__inner .sky {
    position: absolute;
    width: 17.4305555556vw;
    top: 57%;
    left: 6.25vw;
  }
  .index__wrapper .index__inner .beach {
    width: 13.8888888889vw;
    position: absolute;
    top: 30%;
    right: 2.8472222222vw;
  }
}

/*--------------------------------------*
PC
*--------------------------------------*/
@media screen and (min-width: 769px) {
  .content-outer {
    position: relative;
  }
  /* 横並びレイアウト */
  .pc-flex {
    display: grid;
    grid-template-columns: 34.0277777778vw 65.9722222222vw;
  }
  .pc-flex .index {
    position: sticky;
    top: 0;
  }
  .pc-index {
    height: 100vh;
  }
  .pc-index__wrapper {
    position: relative;
    height: 100vh;
  }
  .pc-index__wrapper a:hover {
    opacity: 1;
  }
}
/*--------------------------------------*
sec共通
*--------------------------------------*/
@media screen and (max-width: 768px) {
  .sec {
    padding-bottom: 19.7333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec {
    padding-bottom: 11.1111111111vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__wrapper {
    width: 48.6111111111vw;
    margin: 0 auto;
  }
}
.sec h3 {
  font-family: "ogg", sans-serif; /* L:300 */
}
@media screen and (max-width: 768px) {
  .sec h3 {
    padding-top: 14.1333333333vw;
    padding-left: 6.6666666667vw;
    margin-bottom: 5.8666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec h3 {
    padding-top: 4.4444444444vw;
    margin-bottom: 1.7361111111vw;
  }
}
@media screen and (max-width: 768px) {
  .sec h3 .picnic {
    font-size: 8vw;
  }
}
@media screen and (min-width: 769px) {
  .sec h3 .picnic {
    font-size: 2.9861111111vw;
  }
}
@media screen and (max-width: 768px) {
  .sec h3 .place {
    font-size: 10.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec h3 .place {
    font-size: 4.0277777778vw;
  }
}
@media screen and (max-width: 768px) {
  .sec h3 .place .small {
    font-size: 6.4vw;
  }
}
.sec .main-img {
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sec .main-img {
    width: 70.1333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec .main-img {
    width: 26.5972222222vw;
    margin-bottom: 3.8194444444vw;
  }
}
.sec .img-area h4 {
  font-family: "ogg", sans-serif; /* L:300 */
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec .img-area h4 {
    font-size: 5.3333333333vw;
    margin-bottom: 6.4vw;
  }
}
@media screen and (min-width: 769px) {
  .sec .img-area h4 {
    font-size: 2.0833333333vw;
    margin-bottom: 2.0833333333vw;
  }
}
.sec .img-area .like {
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec .img-area .like {
    margin-bottom: 21.8666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec .img-area .like {
    margin-bottom: 5.5555555556vw;
  }
}
.sec .img-area .like__img {
  position: absolute;
}
.sec .img-area .like-img-bg {
  transition: 0.6s ease;
  filter: blur(5px);
}
.sec .img-area .like-img-bg.on {
  filter: blur(0);
}
.sec .img-area .like-img {
  opacity: 0;
  transition: 0.6s ease;
  transform: translateX(20px);
}
.sec .img-area .like-img.on {
  opacity: 1;
  transform: translate(0);
}
@media screen and (max-width: 768px) {
  .sec .img-area .like .text {
    font-size: 3.2vw;
    margin-left: 5.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec .img-area .like .text {
    font-size: 0.9722222222vw;
    margin-top: 6.9444444444vw;
  }
}
@media screen and (max-width: 768px) {
  .sec .img-area .like .other-item-credit {
    width: 85.3333333333vw;
    margin-top: 1.3333333333vw;
    margin-left: 5.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec .img-area .like .other-item-credit {
    width: 48.6111111111vw;
  }
}
.sec .img-area .like .other-item-credit .item-credit__list__item {
  display: inline;
}
.sec .img-area .like .other-item-credit .item-credit__list__item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 10px;
}
.sec .img-area .like .other-item-credit .item-credit__list__item a {
  white-space: normal;
  word-break: break-all;
  overflow-wrap: break-word;
  display: inline;
}
.sec .img-area .like .other-item-credit .item-credit__list__item a p {
  display: inline;
  border-bottom: solid 0.5px #000;
  line-height: 2.5;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sec .img-area .like .other-item-credit .item-credit__list__item a p {
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 769px) {
  .sec .img-area .like .other-item-credit .item-credit__list__item a p {
    font-size: 0.9722222222vw;
  }
}
.sec .img-area .like .other-item-credit .item-credit__list__item a p .item {
  flex: 1;
  min-width: 0;
}

/*--------------------------------------*
クレジット
*--------------------------------------*/
@media screen and (max-width: 768px) {
  .credit {
    margin-top: 16vw;
  }
}
.credit__list {
  display: grid;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .credit__list {
    gap: 4.2666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .credit__list {
    grid-template-columns: 21.6666666667vw 21.6666666667vw;
    gap: 0.6944444444vw 5.1388888889vw;
  }
}
.credit__list__item a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.credit__list__item a .img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}
@media screen and (max-width: 768px) {
  .credit__list__item a .img img {
    width: 12.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .credit__list__item a .img img {
    width: 3.2986111111vw;
  }
}
.credit__list__item a .credit__text {
  line-height: 1.5555555556;
  font-weight: 500;
  font-size: 11px;
}
@media screen and (max-width: 768px) {
  .credit__list__item a .credit__text {
    width: 52vw;
    margin-left: 2.6666666667vw;
    margin-right: 6.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .credit__list__item a .credit__text {
    width: 13.5416666667vw;
    margin-left: 0.6944444444vw;
  }
}
.credit__list__item a .credit__text p {
  white-space: nowrap; /* 横幅のMAXに達しても改行しない */
  overflow: hidden; /* 溢れた部分を隠す */
  text-overflow: ellipsis; /* 「…」と省略 */
  -webkit-text-overflow: ellipsis; /* Safari用 */
  -o-text-overflow: ellipsis; /* Opera用 */
}
@media screen and (max-width: 768px) {
  .credit__list__item a .credit__text p {
    width: 52vw;
  }
}
@media screen and (min-width: 769px) {
  .credit__list__item a .credit__text p {
    width: 13.5416666667vw;
  }
}
.credit__list__item a .btn {
  position: relative;
  border: solid 0.5px #000;
}
@media screen and (max-width: 768px) {
  .credit__list__item a .btn {
    width: 11.2vw;
    height: 5.3333333333vw;
    border-radius: 5.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .credit__list__item a .btn {
    width: 2.9166666667vw;
    height: 1.3888888889vw;
    border-radius: 1.3888888889vw;
  }
}
.credit__list__item a .btn p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "ogg", sans-serif; /* L:300 */
}
@media screen and (max-width: 768px) {
  .credit__list__item a .btn p {
    font-size: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .credit__list__item a .btn p {
    font-size: 0.6944444444vw;
  }
}

/*--------------------------------------*
recommendクレジット
*--------------------------------------*/
.recommend h5 {
  font-family: "ogg", sans-serif; /* L:300 */
  text-align: center;
}
@media screen and (max-width: 768px) {
  .recommend h5 {
    font-size: 5.3333333333vw;
    margin-top: 21.8666666667vw;
    margin-bottom: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .recommend h5 {
    font-size: 2.0138888889vw;
    margin-top: 5.5555555556vw;
    margin: 5.5555555556vw 0 2.2222222222vw;
  }
}
@media screen and (min-width: 769px) {
  .recommend__credit {
    width: 40.2777777778vw;
    margin: 0 auto;
  }
}
.recommend__credit__list {
  display: flex;
  overflow-x: scroll;
  overflow-y: hidden;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .recommend__credit__list {
    gap: 0.2666666667vw;
    padding-bottom: 5.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .recommend__credit__list {
    gap: 0.1388888889vw;
    padding-bottom: 1.4756944444vw;
  }
}
.recommend__credit__list::before {
  content: "";
}
@media screen and (max-width: 768px) {
  .recommend__credit__list::before {
    flex: 0 0 3.2vw;
  }
}
.recommend__credit__list::after {
  content: "";
}
@media screen and (max-width: 768px) {
  .recommend__credit__list::after {
    flex: 0 0 3.2vw;
  }
}
.recommend__credit__list::-webkit-scrollbar {
  background: transparent;
  height: 3px;
}
.recommend__credit__list::-webkit-scrollbar-thumb {
  width: 10px;
}
.recommend__credit__list::-webkit-scrollbar-track {
  padding-top: 15px;
}
.recommend__credit__list li {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .recommend__credit__list li a {
    width: 26.4vw;
  }
}
@media screen and (min-width: 769px) {
  .recommend__credit__list li a {
    width: 10vw;
  }
}
.recommend__credit__list li a p {
  line-height: 1.3636363636;
}
@media screen and (max-width: 768px) {
  .recommend__credit__list li a p {
    font-size: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .recommend__credit__list li a p {
    line-height: 1.5714285714;
    font-size: 14px;
  }
}
.recommend__credit__list li a p .zetaAjax_coupon {
  display: none;
}
.recommend__credit__list li a p.zetaAjax_brand {
  margin: 5px auto 0;
}
@media screen and (max-width: 768px) {
  .recommend__credit__list li a p.zetaAjax_brand {
    width: 25.8666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .recommend__credit__list li a p.zetaAjax_brand {
    width: 9.8611111111vw;
  }
}
.recommend__credit__list li a p.zetaAjax_name {
  margin: 0 auto;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 制限したい行数が3の場合 */
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .recommend__credit__list li a p.zetaAjax_name {
    width: 25.8666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .recommend__credit__list li a p.zetaAjax_name {
    width: 9.8611111111vw;
  }
}
.recommend__credit__list li a .flex {
  margin: 0 auto;
  display: flex;
}
@media screen and (max-width: 768px) {
  .recommend__credit__list li a .flex {
    width: 25.8666666667vw;
    gap: 0.8vw;
  }
}
@media screen and (min-width: 769px) {
  .recommend__credit__list li a .flex {
    width: 9.8611111111vw;
    gap: 0.3472222222vw;
  }
}
.recommend__credit__list li a .flex .zetaAjax_proper::before {
  content: "¥";
  display: inline-block;
}
.recommend__credit__list li a .flex .zetaAjax_sale {
  color: red;
}
.recommend__credit__list li a .flex .zetaAjax_sale::before {
  content: "¥";
  display: inline-block;
}
.recommend__credit__list li a .flex .zetaAjax_off {
  color: red;
}
.recommend__credit__list li a .flex .zetaAjax_off::before {
  content: "(";
  display: inline-block;
}
.recommend__credit__list li a .flex .zetaAjax_off::after {
  content: ")";
  display: inline-block;
}
.recommend__credit__list li.zetaAjax_proper__onSale .zetaAjax_proper {
  -webkit-text-decoration: line-through red;
          text-decoration: line-through red;
}
.recommend__all {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .recommend__all {
    margin-top: 6.1333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .recommend__all {
    margin-top: 2.0833333333vw;
  }
}
.recommend__all a {
  display: inline-block;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .recommend__all a {
    font-size: 3.2vw;
    margin-right: 4.2666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .recommend__all a {
    font-size: 0.9722222222vw;
    margin-right: 4.1666666667vw;
  }
}

/*--------------------------------------*
sec__green
*--------------------------------------*/
.sec__green {
  background-color: #f6fff0;
  position: relative;
  z-index: 1;
}
.sec__green h3 .place {
  color: #32be16;
}
.sec__green .main-img .item {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .sec__green .main-img .item.item-1 {
    width: 39.4666666667vw;
    top: -17.6vw;
    right: -19.7333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__green .main-img .item.item-1 {
    width: 15vw;
    top: -6.6666666667vw;
    right: -7.5vw;
    width: 15vw;
    top: -6.6666666667vw;
    right: -7.5vw;
  }
}
.sec__green .main-img .item.item-2 {
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .sec__green .main-img .item.item-2 {
    width: 23.7333333333vw;
    left: -21.0666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__green .main-img .item.item-2 {
    width: 9.0277777778vw;
    left: -8.0555555556vw;
    width: 9.0277777778vw;
    left: -8.0555555556vw;
  }
}
.sec__green .credit__list__item a .btn {
  background-color: #c1ffc8;
}
@media screen and (max-width: 768px) {
  .sec__green .img-area {
    margin-top: 18.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__green .img-area {
    margin-top: 9.7222222222vw;
    margin-top: 9.7222222222vw;
  }
}
.sec__green .img-area .img-1__area {
  position: relative;
}
.sec__green .img-area .img-1__area .item-bg {
  opacity: 0;
  transition: 0.6s ease;
}
@media screen and (max-width: 768px) {
  .sec__green .img-area .img-1__area .item-bg {
    width: 146.9333333333vw;
    margin-left: -44.5333333333vw;
    margin-bottom: 17.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__green .img-area .img-1__area .item-bg {
    width: 38.2638888889vw;
    margin-left: -5.0694444444vw;
    margin-bottom: 4.1666666667vw;
    width: 38.2638888889vw;
    margin-left: -5.0694444444vw;
    margin-bottom: 4.1666666667vw;
  }
}
.sec__green .img-area .img-1__area .item-1 {
  position: absolute;
  opacity: 0;
  transition: 0.6s 0.2s ease;
}
@media screen and (max-width: 768px) {
  .sec__green .img-area .img-1__area .item-1 {
    width: 39.2vw;
    top: -5.6vw;
    right: -1.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__green .img-area .img-1__area .item-1 {
    width: 10.6944444444vw;
    top: -4.0277777778vw;
    right: 18.0555555556vw;
    width: 10.6944444444vw;
    top: -4.0277777778vw;
    right: 18.0555555556vw;
  }
}
.sec__green .img-area .img-1__area .img-1 {
  position: absolute;
  z-index: 5;
  opacity: 0;
  transition: 0.6s 0.4s ease;
  transform: translateX(20px);
}
@media screen and (max-width: 768px) {
  .sec__green .img-area .img-1__area .img-1 {
    width: 59.2vw;
    top: 17.8666666667vw;
    left: 12.5333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__green .img-area .img-1__area .img-1 {
    width: 16.3194444444vw;
    top: 3.75vw;
    left: 3.6111111111vw;
    width: 16.3194444444vw;
    top: 3.75vw;
    left: 3.6111111111vw;
  }
}
.sec__green .img-area .img-1__area .item-2 {
  position: absolute;
  opacity: 0;
  transition: 0.6s 0.2s ease;
}
@media screen and (max-width: 768px) {
  .sec__green .img-area .img-1__area .item-2 {
    width: 49.8666666667vw;
    top: 61.0666666667vw;
    left: -10.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__green .img-area .img-1__area .item-2 {
    width: 13.6111111111vw;
    top: 17.3611111111vw;
    left: -3.6805555556vw;
    width: 13.6111111111vw;
    top: 17.3611111111vw;
    left: -3.6805555556vw;
  }
}
.sec__green .img-area .img-1__area .item-3 {
  position: absolute;
  opacity: 0;
  transition: 0.6s 0.2s ease;
}
@media screen and (max-width: 768px) {
  .sec__green .img-area .img-1__area .item-3 {
    width: 39.4666666667vw;
    top: 53.8666666667vw;
    right: -9.6vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__green .img-area .img-1__area .item-3 {
    width: 10.7638888889vw;
    top: 13.125vw;
    right: 15.8333333333vw;
    width: 10.7638888889vw;
    top: 13.125vw;
    right: 15.8333333333vw;
  }
}
.sec__green .img-area .img-1__area.is-show .item-bg,
.sec__green .img-area .img-1__area.is-show .item-1,
.sec__green .img-area .img-1__area.is-show .item-2,
.sec__green .img-area .img-1__area.is-show .item-3 {
  opacity: 1;
}
.sec__green .img-area .img-1__area.is-show .img-1 {
  transform: translate(0);
  opacity: 1;
}
.sec__green .img-area .img-2__area {
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec__green .img-area .img-2__area {
    margin-bottom: 8.5333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__green .img-area .img-2__area {
    margin-bottom: 1.3888888889vw;
    margin-bottom: 1.3888888889vw;
  }
}
.sec__green .img-area .img-2__area .img-2 {
  opacity: 0;
  transform: translateX(-20px);
  transition: 0.6s ease;
}
@media screen and (max-width: 768px) {
  .sec__green .img-area .img-2__area .img-2 {
    margin-left: 11.2vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__green .img-area .img-2__area .img-2 {
    width: 45.4861111111vw;
    width: 45.4861111111vw;
    margin-left: auto;
  }
}
.sec__green .img-area .img-2__area .img-2.on {
  transform: translateX(0);
  opacity: 1;
}
.sec__green .img-area .img-2__area .illust-1 {
  opacity: 0;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .sec__green .img-area .img-2__area .illust-1 {
    width: 13.0666666667vw;
    top: 34.6666666667vw;
    left: 31.4666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__green .img-area .img-2__area .illust-1 {
    width: 6.6666666667vw;
    top: 17.7777777778vw;
    left: 13.5416666667vw;
    width: 6.6666666667vw;
    top: 17.7777777778vw;
    left: 13.5416666667vw;
  }
}
.sec__green .img-area .img-2__area .illust-1.on.anim-popin {
  animation: popIn 0.6s 0.6s forwards;
}
.sec__green .img-area .img-3__area {
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec__green .img-area .img-3__area {
    margin-bottom: 141.6vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__green .img-area .img-3__area {
    margin-bottom: 48.9583333333vw;
    margin-bottom: 48.9583333333vw;
  }
}
.sec__green .img-area .img-3__area .img-3 {
  opacity: 0;
  transition: 0.6s ease;
  transform: translateY(20px);
}
@media screen and (max-width: 768px) {
  .sec__green .img-area .img-3__area .img-3 {
    width: 89.3333333333vw;
    margin-left: -13.6vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__green .img-area .img-3__area .img-3 {
    width: 23.9583333333vw;
    margin-left: 9.1666666667vw;
    width: 23.9583333333vw;
    margin-left: 9.1666666667vw;
  }
}
.sec__green .img-area .img-3__area .img-3.on {
  transform: translate(0);
  opacity: 1;
}
.sec__green .img-area .img-3__area .item-4 {
  position: absolute;
  opacity: 0;
  transition: 0.6s ease;
}
@media screen and (max-width: 768px) {
  .sec__green .img-area .img-3__area .item-4 {
    width: 53.8666666667vw;
    top: 3.4666666667vw;
    right: -16.5333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__green .img-area .img-3__area .item-4 {
    width: 14.7916666667vw;
    width: 14.7916666667vw;
    top: 0;
    right: 4.375vw;
    right: 4.375vw;
  }
}
.sec__green .img-area .img-3__area .item-4.on {
  opacity: 1;
}
.sec__green .img-area .img-3__area .illust-2 {
  position: absolute;
  opacity: 0;
  transition: 0.6s ease;
}
@media screen and (max-width: 768px) {
  .sec__green .img-area .img-3__area .illust-2 {
    width: 31.4666666667vw;
    top: 36.8vw;
    right: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__green .img-area .img-3__area .illust-2 {
    width: 7.7083333333vw;
    top: 9.4444444444vw;
    right: 9.8611111111vw;
    width: 7.7083333333vw;
    top: 9.4444444444vw;
    right: 9.8611111111vw;
  }
}
.sec__green .img-area .img-3__area .illust-2.on {
  opacity: 1;
}
.sec__green .img-area .img-3__area .img-4 {
  position: absolute;
  z-index: 1;
  opacity: 0;
  transition: 0.6s ease;
  transform: translateX(-20px);
}
@media screen and (max-width: 768px) {
  .sec__green .img-area .img-3__area .img-4 {
    width: 91.7333333333vw;
    top: 58.9333333333vw;
    right: -15.7333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__green .img-area .img-3__area .img-4 {
    width: 25vw;
    top: 19.3055555556vw;
    right: 3.9583333333vw;
    width: 25vw;
    top: 19.3055555556vw;
    right: 3.9583333333vw;
  }
}
.sec__green .img-area .img-3__area .img-4.on {
  transform: translate(0);
  opacity: 1;
}
.sec__green .img-area .img-3__area .item-5 {
  position: absolute;
  z-index: 0;
  opacity: 0;
  transition: 0.6s ease;
  transform: translateX(20px);
}
@media screen and (max-width: 768px) {
  .sec__green .img-area .img-3__area .item-5 {
    width: 113.0666666667vw;
    top: 87.7333333333vw;
    left: -42.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__green .img-area .img-3__area .item-5 {
    width: 31.25vw;
    top: 23.8194444444vw;
    left: -1.3888888889vw;
    width: 31.25vw;
    top: 23.8194444444vw;
    left: -1.3888888889vw;
  }
}
.sec__green .img-area .img-3__area .item-5.on {
  transform: translate(0);
  opacity: 1;
}
.sec__green .img-area .img-3__area .img-5 {
  position: absolute;
  z-index: 3;
  opacity: 0;
  transition: 0.6s ease;
  transform: translateY(20px);
}
@media screen and (max-width: 768px) {
  .sec__green .img-area .img-3__area .img-5 {
    width: 74.6666666667vw;
    top: 144.5333333333vw;
    left: 12.2666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__green .img-area .img-3__area .img-5 {
    width: 23.6111111111vw;
    top: 42.3611111111vw;
    left: 12.0138888889vw;
    width: 23.6111111111vw;
    top: 42.3611111111vw;
    left: 12.0138888889vw;
  }
}
.sec__green .img-area .img-3__area .img-5.on {
  opacity: 1;
  transform: translate(0);
}
.sec__green .img-area .img-3__area .illust-3 {
  position: absolute;
  z-index: 3;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .sec__green .img-area .img-3__area .illust-3 {
    width: 16.2666666667vw;
    top: 202.6666666667vw;
    right: 24.8vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__green .img-area .img-3__area .illust-3 {
    width: 5.0694444444vw;
    top: 61.1111111111vw;
    right: 16.5972222222vw;
    width: 5.0694444444vw;
    top: 61.1111111111vw;
    right: 16.5972222222vw;
  }
}
.sec__green h4 {
  color: #32be16;
}
@media screen and (max-width: 768px) {
  .sec__green .like-img-bg {
    width: 129.8666666667vw;
    margin-left: -40.2666666667vw;
    margin-bottom: 5.3333333333vw;
  }
}
.sec__green .like-img {
  position: absolute;
  transform: translateX(20px);
}
@media screen and (max-width: 768px) {
  .sec__green .like-img {
    width: 106.9333333333vw;
    top: 13.3333333333vw;
    left: -5.6vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__green .like-img {
    width: 43.4027777778vw;
    top: 8.8194444444vw;
    left: 4.4444444444vw;
    width: 43.4027777778vw;
    top: 8.8194444444vw;
    left: 4.4444444444vw;
  }
}
.sec__green .recommend h5 {
  color: #32be16;
}
.sec__green .recommend__credit__list::-webkit-scrollbar-thumb {
  background-color: #eaf4e3;
}

/*--------------------------------------*
sec__sky
*--------------------------------------*/
.sec__sky {
  background-color: #fff5f2;
  position: relative;
  z-index: 1;
}
.sec__sky h3 .place {
  color: #d6a49a;
}
@media screen and (max-width: 768px) {
  .sec__sky .main-img {
    width: 100%;
  }
}
.sec__sky .credit__list__item a .btn {
  background-color: #ffcaec;
}
@media screen and (max-width: 768px) {
  .sec__sky .img-area {
    margin-top: 45.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__sky .img-area {
    margin-top: 15.6944444444vw;
    margin-top: 15.6944444444vw;
  }
}
.sec__sky .img-area .img-1__area {
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec__sky .img-area .img-1__area {
    margin-bottom: 103.4666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__sky .img-area .img-1__area {
    margin-bottom: 40.2777777778vw;
    margin-bottom: 40.2777777778vw;
  }
}
.sec__sky .img-area .img-1__area .img-bg {
  opacity: 0;
  transition: 0.6s ease;
}
@media screen and (max-width: 768px) {
  .sec__sky .img-area .img-1__area .img-bg {
    width: 86.1333333333vw;
    margin-left: auto;
    margin-right: -1.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__sky .img-area .img-1__area .img-bg {
    width: 30.9027777778vw;
    margin-left: 11.9444444444vw;
    width: 30.9027777778vw;
    margin-left: 11.9444444444vw;
  }
}
.sec__sky .img-area .img-1__area .img-bg.on {
  opacity: 1;
}
.sec__sky .img-area .img-1__area .img-1 {
  position: absolute;
  z-index: 5;
  opacity: 0;
  transition: 0.6s ease;
  transform: translateX(-20px);
}
@media screen and (max-width: 768px) {
  .sec__sky .img-area .img-1__area .img-1 {
    width: 72.5333333333vw;
    top: -25.0666666667vw;
    left: -2.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__sky .img-area .img-1__area .img-1 {
    width: 25.2777777778vw;
    top: -8.9583333333vw;
    left: 1.7361111111vw;
    width: 25.2777777778vw;
    top: -8.9583333333vw;
    left: 1.7361111111vw;
  }
}
.sec__sky .img-area .img-1__area .img-1.on {
  opacity: 1;
  transform: translate(0);
}
.sec__sky .img-area .img-1__area .illust-area {
  position: absolute;
  opacity: 0;
  transition: 0.6s ease;
  transform-origin: bottom center;
}
@media screen and (max-width: 768px) {
  .sec__sky .img-area .img-1__area .illust-area {
    top: -12.2666666667vw;
    left: 53.3333333333vw;
    width: 35.2vw;
    height: 72vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__sky .img-area .img-1__area .illust-area {
    top: -2.3611111111vw;
    left: 22.2222222222vw;
    width: 13.1944444444vw;
    height: 24.7222222222vw;
    top: -2.3611111111vw;
    left: 22.2222222222vw;
    width: 13.1944444444vw;
    height: 24.7222222222vw;
  }
}
.sec__sky .img-area .img-1__area .illust-area__wrapper {
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec__sky .img-area .img-1__area .illust-area__wrapper {
    width: 35.2vw;
    height: 73.8666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__sky .img-area .img-1__area .illust-area__wrapper {
    width: 13.1944444444vw;
    height: 24.7222222222vw;
    width: 13.1944444444vw;
    height: 24.7222222222vw;
  }
}
.sec__sky .img-area .img-1__area .illust-area__wrapper .illust-1 {
  position: absolute;
  z-index: 5;
  top: 2%;
  left: 65%;
  transform-origin: 50% 110%;
  animation: topWobble 3s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .sec__sky .img-area .img-1__area .illust-area__wrapper .illust-1 {
    width: 19.4666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__sky .img-area .img-1__area .illust-area__wrapper .illust-1 {
    width: 5.0694444444vw;
    width: 5.0694444444vw;
  }
}
.sec__sky .img-area .img-1__area .illust-area__wrapper .illust-2 {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 48%;
  transform: translateX(-50%);
  animation: bottomWobble 3s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .sec__sky .img-area .img-1__area .illust-area__wrapper .illust-2 {
    width: 36.5333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__sky .img-area .img-1__area .illust-area__wrapper .illust-2 {
    width: 13.125vw;
    width: 13.125vw;
  }
}
.sec__sky .img-area .img-1__area .illust-area.on {
  opacity: 1;
}
.sec__sky .img-area .img-1__area .img-2 {
  opacity: 0;
  transition: 0.6s ease;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .sec__sky .img-area .img-1__area .img-2 {
    width: 110.4vw;
    bottom: -67.7333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__sky .img-area .img-1__area .img-2 {
    width: 44.4444444444vw;
    top: 19.4444444444vw;
    width: 44.4444444444vw;
    top: 19.4444444444vw;
  }
}
.sec__sky .img-area .img-3__area {
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec__sky .img-area .img-3__area {
    margin-bottom: 43.4666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__sky .img-area .img-3__area {
    margin-bottom: 19.3055555556vw;
    margin-bottom: 19.3055555556vw;
  }
}
.sec__sky .img-area .img-3__area .img-3 {
  opacity: 0;
  transition: 0.6s ease;
  transform: translateY(20px);
}
@media screen and (max-width: 768px) {
  .sec__sky .img-area .img-3__area .img-3 {
    width: 100vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__sky .img-area .img-3__area .img-3 {
    width: 43.6111111111vw;
    width: 43.6111111111vw;
    margin: 0 auto;
  }
}
.sec__sky .img-area .img-3__area .img-3.on {
  opacity: 1;
  transform: translateY(0);
}
.sec__sky .img-area .img-3__area .item-1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  opacity: 0;
  transition: 0.6s ease;
}
@media screen and (max-width: 768px) {
  .sec__sky .img-area .img-3__area .item-1 {
    width: 87.4666666667vw;
    top: -18.1333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__sky .img-area .img-3__area .item-1 {
    width: 31.4583333333vw;
    top: -7.0833333333vw;
    width: 31.4583333333vw;
    top: -7.0833333333vw;
  }
}
.sec__sky .img-area .img-3__area .item-1.on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.sec__sky .img-area .img-4__area {
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec__sky .img-area .img-4__area {
    margin-bottom: 37.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__sky .img-area .img-4__area {
    margin-bottom: 16.6666666667vw;
    margin-bottom: 16.6666666667vw;
  }
}
.sec__sky .img-area .img-4__area .img-4 {
  margin: 0 auto;
  position: relative;
  z-index: 5;
  opacity: 0;
  transition: 0.6s ease;
}
@media screen and (max-width: 768px) {
  .sec__sky .img-area .img-4__area .img-4 {
    width: 49.0666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__sky .img-area .img-4__area .img-4 {
    width: 17.5694444444vw;
    width: 17.5694444444vw;
  }
}
.sec__sky .img-area .img-4__area .img-4.on {
  opacity: 1;
}
.sec__sky .img-area .img-4__area .item-2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  transition: 0.6s ease;
}
@media screen and (max-width: 768px) {
  .sec__sky .img-area .img-4__area .item-2 {
    width: 68.5333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__sky .img-area .img-4__area .item-2 {
    width: 24.5833333333vw;
    width: 24.5833333333vw;
  }
}
.sec__sky .img-area .img-4__area .item-2.on {
  opacity: 1;
}
.sec__sky .img-area .img-4__area .item-5 {
  opacity: 0;
  transition: 1s ease;
}
.sec__sky .img-area .img-4__area .item-5.on {
  opacity: 1;
}
.sec__sky .img-area .img-4__area .item-5 .circle {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: 0;
  transition: all 6s linear;
  background-color: #fb9292;
}
.sec__sky h4 {
  color: #d6a49a;
}
@media screen and (max-width: 768px) {
  .sec__sky .like-img-bg {
    width: 129.8666666667vw;
    margin-left: 12.5333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
.sec__sky .like-img {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .sec__sky .like-img {
    width: 101.0666666667vw;
    top: 13.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__sky .like-img {
    width: 40.5555555556vw;
    top: 3.4722222222vw;
    left: 4.1666666667vw;
    width: 40.5555555556vw;
    top: 3.4722222222vw;
    left: 4.1666666667vw;
  }
}
.sec__sky .recommend h5 {
  color: #d6a49a;
}
.sec__sky .recommend__credit__list::-webkit-scrollbar-thumb {
  background-color: #f8ece9;
}

/*--------------------------------------*
sec__beach
*--------------------------------------*/
.sec__beach {
  padding-bottom: 0;
}
@media screen and (min-width: 769px) {
  .sec__beach {
    background-color: #e1ecff;
    position: relative;
    z-index: 0;
  }
}
.sec__beach.sec__beach__bg:before {
  content: "";
  display: block;
  background-image: url(../assets/images/3_6.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  z-index: -1;
  height: 100vh;
}
@media screen and (min-width: 769px) {
  .sec__beach.sec__beach__bg:before {
    width: 37.3611111111vw;
    height: 69.8611111111vw;
    right: 14.0277777778vw;
    width: 37.3611111111vw;
    height: 69.8611111111vw;
    right: 14.0277777778vw;
  }
}
.sec__beach__wrapper {
  background-color: #e1ecff;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .sec__beach__wrapper {
    padding-bottom: 56vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__beach__wrapper {
    padding-bottom: 19.0972222222vw;
    padding-bottom: 19.0972222222vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__beach__wrapper__inner {
    width: 48.6111111111vw;
    width: 48.6111111111vw;
    margin: 0 auto;
  }
}
.sec__beach h3 .place {
  color: #7183e5;
}
.sec__beach .main-img .item {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .sec__beach .main-img .item.item-1 {
    width: 94.6666666667vw;
    top: -12.2666666667vw;
    left: -61.0666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__beach .main-img .item.item-1 {
    width: 28.125vw;
    top: -1.5972222222vw;
    left: -14.9305555556vw;
    width: 28.125vw;
    top: -1.5972222222vw;
    left: -14.9305555556vw;
  }
}
@media screen and (max-width: 768px) {
  .sec__beach .main-img .item.item-2 {
    width: 37.3333333333vw;
    top: -10.1333333333vw;
    right: -24.2666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__beach .main-img .item.item-2 {
    width: 13.0555555556vw;
    top: -0.8333333333vw;
    right: -9.5138888889vw;
    width: 13.0555555556vw;
    top: -0.8333333333vw;
    right: -9.5138888889vw;
  }
}
.sec__beach .credit__list__item a .btn {
  background-color: #aab7ff;
}
.sec__beach .img-area .img-1__area {
  position: relative;
  background-color: #e1ecff;
}
.sec__beach .img-area .img-1__area .img-bg {
  opacity: 0;
  transition: 0.6s ease;
}
@media screen and (max-width: 768px) {
  .sec__beach .img-area .img-1__area .img-bg {
    width: 125.0666666667vw;
    margin-left: -8.8vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__beach .img-area .img-1__area .img-bg {
    width: 36.5277777778vw;
    width: 36.5277777778vw;
    margin: 0 auto;
  }
}
.sec__beach .img-area .img-1__area .img-bg.on {
  opacity: 1;
}
.sec__beach .img-area .img-1__area .img-1_1 {
  position: absolute;
  opacity: 0;
  transition: 0.6s ease;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sec__beach .img-area .img-1__area .img-1_1 {
    width: 64.5333333333vw;
    top: -35.4666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__beach .img-area .img-1__area .img-1_1 {
    width: 18.75vw;
    top: -10.4166666667vw;
    left: 15vw;
    width: 18.75vw;
    top: -10.4166666667vw;
    left: 15vw;
  }
}
.sec__beach .img-area .img-1__area .img-1_1.on {
  opacity: 1;
}
.sec__beach .img-area .img-1__area .img-1_2 {
  position: absolute;
  opacity: 0;
  transition: 0.6s ease;
  z-index: 1;
  right: 0;
}
@media screen and (max-width: 768px) {
  .sec__beach .img-area .img-1__area .img-1_2 {
    width: 64.5333333333vw;
    top: 60.8vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__beach .img-area .img-1__area .img-1_2 {
    width: 18.75vw;
    top: 17.5694444444vw;
    right: 15.2777777778vw;
    width: 18.75vw;
    top: 17.5694444444vw;
    right: 15.2777777778vw;
  }
}
.sec__beach .img-area .img-1__area .img-1_2.on {
  opacity: 1;
}
.sec__beach .img-area .img-1__area .illust-1 {
  position: absolute;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .sec__beach .img-area .img-1__area .illust-1 {
    width: 14.9333333333vw;
    top: 17.0666666667vw;
    left: 70.9333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__beach .img-area .img-1__area .illust-1 {
    width: 3.8194444444vw;
    top: 6.0416666667vw;
    left: 36.6666666667vw;
    width: 3.8194444444vw;
    top: 6.0416666667vw;
    left: 36.6666666667vw;
  }
}
.sec__beach .img-area .img-2__area {
  position: relative;
  background-color: #e1ecff;
}
@media screen and (max-width: 768px) {
  .sec__beach .img-area .img-2__area {
    padding-top: 26.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__beach .img-area .img-2__area {
    padding-top: 10.9722222222vw;
    padding-top: 10.9722222222vw;
  }
}
.sec__beach .img-area .img-2__area .img-2 {
  position: relative;
  z-index: 5;
  opacity: 0;
  transition: 0.6s ease;
}
@media screen and (max-width: 768px) {
  .sec__beach .img-area .img-2__area .img-2 {
    width: 71.4666666667vw;
    margin-left: -16vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__beach .img-area .img-2__area .img-2 {
    width: 23.3333333333vw;
    margin-left: 7.9861111111vw;
    width: 23.3333333333vw;
    margin-left: 7.9861111111vw;
  }
}
.sec__beach .img-area .img-2__area .img-2.on {
  opacity: 1;
}
.sec__beach .img-area .img-2__area .img-2 .anim-rotateR {
  animation: none;
}
.sec__beach .img-area .img-2__area .item-1 {
  position: absolute;
  z-index: 1;
  opacity: 0;
  transition: 0.6s ease;
}
@media screen and (max-width: 768px) {
  .sec__beach .img-area .img-2__area .item-1 {
    width: 98.4vw;
    top: -12.2666666667vw;
    right: -40.2666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__beach .img-area .img-2__area .item-1 {
    width: 25.6944444444vw;
    top: -2.5694444444vw;
    right: 4.5138888889vw;
    width: 25.6944444444vw;
    top: -2.5694444444vw;
    right: 4.5138888889vw;
  }
}
.sec__beach .img-area .img-2__area .item-1.on {
  opacity: 1;
}
.sec__beach .img-area .img-2__area .item-2 {
  position: absolute;
  z-index: 1;
  opacity: 0;
  transition: 0.6s ease;
}
@media screen and (max-width: 768px) {
  .sec__beach .img-area .img-2__area .item-2 {
    width: 52.8vw;
    top: 98.6666666667vw;
    right: 0;
  }
}
@media screen and (min-width: 769px) {
  .sec__beach .img-area .img-2__area .item-2 {
    width: 18.2638888889vw;
    top: 29.375vw;
    right: 8.75vw;
    width: 18.2638888889vw;
    top: 29.375vw;
    right: 8.75vw;
  }
}
.sec__beach .img-area .img-2__area .item-2.on {
  opacity: 1;
}
.sec__beach .img-area .img-2__area .illust-2 {
  position: absolute;
  z-index: 5;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .sec__beach .img-area .img-2__area .illust-2 {
    width: 42.6666666667vw;
    top: 88.8vw;
    left: 48.2666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__beach .img-area .img-2__area .illust-2 {
    width: 13.4027777778vw;
    top: 26.25vw;
    right: 16.4583333333vw;
    width: 13.4027777778vw;
    top: 26.25vw;
    right: 16.4583333333vw;
  }
}
.sec__beach .img-area .img-3 {
  background-color: #e1ecff;
}
.sec__beach .img-area .img-3 img {
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .sec__beach .img-area .img-3 img {
    padding-top: 14.1333333333vw;
    width: 120.5333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__beach .img-area .img-3 img {
    width: 36.9444444444vw;
    margin-left: 17.6388888889vw;
    width: 36.9444444444vw;
    margin-left: 17.6388888889vw;
  }
}
.sec__beach .img-area .img-4__area {
  position: relative;
  background-color: #e1ecff;
}
@media screen and (max-width: 768px) {
  .sec__beach .img-area .img-4__area {
    padding-bottom: 37.8666666667vw;
  }
}
.sec__beach .img-area .img-4__area .img-4 {
  position: relative;
  z-index: 0;
  opacity: 0;
  transition: 0.6s ease;
}
@media screen and (max-width: 768px) {
  .sec__beach .img-area .img-4__area .img-4 {
    width: 77.3333333333vw;
    margin-top: -21.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__beach .img-area .img-4__area .img-4 {
    width: 24.3055555556vw;
    margin-top: -7.4305555556vw;
    margin-left: 8.8888888889vw;
    padding-bottom: 15.9722222222vw;
    width: 24.3055555556vw;
    margin-top: -7.4305555556vw;
    margin-left: 8.8888888889vw;
    padding-bottom: 15.9722222222vw;
  }
}
.sec__beach .img-area .img-4__area .img-4.on {
  opacity: 1;
}
.sec__beach .img-area .img-4__area .item-3 {
  position: absolute;
  z-index: 1;
  opacity: 0;
  transition: 0.6s ease;
}
@media screen and (max-width: 768px) {
  .sec__beach .img-area .img-4__area .item-3 {
    width: 37.0666666667vw;
    top: 21.3333333333vw;
    right: 1.8666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__beach .img-area .img-4__area .item-3 {
    width: 11.6666666667vw;
    top: 9.375vw;
    left: 28.6805555556vw;
    width: 11.6666666667vw;
    top: 9.375vw;
    left: 28.6805555556vw;
  }
}
.sec__beach .img-area .img-4__area .item-3.on {
  opacity: 1;
}
.sec__beach .img-area .img-4__area .illust-3 {
  position: absolute;
  z-index: 1;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .sec__beach .img-area .img-4__area .illust-3 {
    width: 21.0666666667vw;
    top: 88.8vw;
    left: 20vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__beach .img-area .img-4__area .illust-3 {
    width: 6.5972222222vw;
    top: 27.9166666667vw;
    left: 15.1388888889vw;
    width: 6.5972222222vw;
    top: 27.9166666667vw;
    left: 15.1388888889vw;
  }
}
.sec__beach .img-area .img-4__area .illust-4 {
  position: absolute;
  z-index: 1;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .sec__beach .img-area .img-4__area .illust-4 {
    width: 33.0666666667vw;
    top: 92vw;
    right: 10.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__beach .img-area .img-4__area .illust-4 {
    width: 10.2777777778vw;
    top: 28.9583333333vw;
    right: 29.0277777778vw;
    width: 10.2777777778vw;
    top: 28.9583333333vw;
    right: 29.0277777778vw;
  }
}
.sec__beach .img-area .img-4__area .item-4 {
  position: absolute;
  z-index: 1;
  left: 0;
  opacity: 0;
  transition: 0.6s ease;
}
@media screen and (max-width: 768px) {
  .sec__beach .img-area .img-4__area .item-4 {
    width: 43.7333333333vw;
    top: 109.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__beach .img-area .img-4__area .item-4 {
    width: 13.75vw;
    bottom: 9.0277777778vw;
    left: 8.8888888889vw;
    width: 13.75vw;
    bottom: 9.0277777778vw;
    left: 8.8888888889vw;
  }
}
.sec__beach .img-area .img-4__area .item-4.on {
  opacity: 1;
}
.sec__beach .img-area .img-5 {
  height: 100vh;
}
.sec__beach h4 {
  color: #7183e5;
  background-color: #e1ecff;
  margin-bottom: 0 !important;
}
@media screen and (max-width: 768px) {
  .sec__beach h4 {
    padding-top: 34.1333333333vw;
    padding-bottom: 5.8666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__beach h4 {
    padding-top: 8.1944444444vw;
    padding-bottom: 2.7777777778vw;
    padding-top: 8.1944444444vw;
    padding-bottom: 2.7777777778vw;
  }
}
.sec__beach .like {
  background-color: #e1ecff;
  margin-bottom: 0 !important;
}
@media screen and (max-width: 768px) {
  .sec__beach .like {
    padding-bottom: 21.8666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__beach .like {
    padding-bottom: 5.9722222222vw;
    padding-bottom: 5.9722222222vw;
  }
}
@media screen and (max-width: 768px) {
  .sec__beach .like-img-bg {
    width: 129.8666666667vw;
    margin-left: -37.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__beach .like-img-bg {
    width: 48.6111111111vw;
    width: 48.6111111111vw;
    margin: 0 auto;
    padding-bottom: 4.8611111111vw;
    padding-bottom: 4.8611111111vw;
  }
}
.sec__beach .like-img {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .sec__beach .like-img {
    width: 109.3333333333vw;
    top: -1.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__beach .like-img {
    width: 48.6111111111vw;
    top: -0.8333333333vw;
    left: 10.8333333333vw;
    width: 48.6111111111vw;
    top: -0.8333333333vw;
    left: 10.8333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .sec__beach .like .text {
    margin-top: 4.5333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__beach .like .text {
    width: 48.6111111111vw;
    margin: 0 auto 0.6944444444vw;
    width: 48.6111111111vw;
    margin: 0 auto 0.6944444444vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__beach .like .other-item-credit {
    margin: 0 auto;
  }
}
.sec__beach .recommend {
  background-color: #e1ecff;
}
@media screen and (max-width: 768px) {
  .sec__beach .recommend {
    padding-bottom: 26.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__beach .recommend {
    padding-bottom: 6.9444444444vw;
    width: 48.6111111111vw;
    margin: 0 auto;
  }
}
.sec__beach .recommend h5 {
  color: #7183e5;
  margin-top: 0 !important;
}
@media screen and (max-width: 768px) {
  .sec__beach .recommend h5 {
    padding-top: 21.8666666667vw;
  }
}
.sec__beach .recommend__credit__list::-webkit-scrollbar-thumb {
  background-color: #dbe5f6;
}
.sec__beach .item-btn {
  background-color: #e1ecff;
}
@media screen and (max-width: 768px) {
  .sec__beach .item-btn {
    padding-bottom: 31.4666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__beach .item-btn {
    padding-bottom: 10.7638888889vw;
    padding-bottom: 10.7638888889vw;
  }
}
.sec__beach .item-btn a {
  display: block;
  background-color: #fff;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sec__beach .item-btn a {
    width: 72.2666666667vw;
    height: 12.8vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__beach .item-btn a {
    width: 25.1388888889vw;
    height: 4.4444444444vw;
    width: 25.1388888889vw;
    height: 4.4444444444vw;
  }
}
.sec__beach .item-btn a p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  .sec__beach .item-btn a p {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__beach .item-btn a p {
    font-size: 1.25vw;
    font-size: 1.25vw;
  }
}

/*--------------------------------------*
キャンペーン、プレゼント、イベント、プロフィール
*--------------------------------------*/
.other-area {
  background-color: #e6dce0;
  position: relative;
  background-image: url(../assets/images/noise.webp);
  background-position: center;
  background-repeat: repeat;
}
@media screen and (max-width: 768px) {
  .other-area {
    padding-top: 16.8vw;
    padding-bottom: 29.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area {
    padding-top: 5.9027777778vw;
    padding-bottom: 10.4166666667vw;
    padding-top: 5.9027777778vw;
    padding-bottom: 10.4166666667vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .campaign {
    width: 39.9305555556vw;
    width: 39.9305555556vw;
    margin: 0 auto;
  }
}
.other-area .campaign__title .obi {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .other-area .campaign__title .obi {
    width: 56.2666666667vw;
    margin-bottom: 3.4666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .campaign__title .obi {
    width: 20vw;
    margin-bottom: 1.1805555556vw;
    width: 20vw;
    margin-bottom: 1.1805555556vw;
  }
}
.other-area .campaign__title p {
  text-align: center;
}
.other-area .campaign__title .title {
  font-family: "ogg", sans-serif; /* L:300 */
}
@media screen and (max-width: 768px) {
  .other-area .campaign__title .title {
    font-size: 8vw;
    margin-bottom: 2.9333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .campaign__title .title {
    font-size: 2.8472222222vw;
    margin-bottom: 1.6666666667vw;
    font-size: 2.8472222222vw;
    margin-bottom: 1.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .other-area .campaign__title .text {
    font-size: 3.7333333333vw;
    margin-bottom: 7.2vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .campaign__title .text {
    font-size: 1.3194444444vw;
    margin-bottom: 2.5vw;
    font-size: 1.3194444444vw;
    margin-bottom: 2.5vw;
  }
}
.other-area .campaign__1 {
  border: dashed 1px #000;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .other-area .campaign__1 {
    width: 91.4666666667vw;
  }
}
.other-area .campaign__1__title {
  line-height: 1.2083333333;
  font-family: "ogg", sans-serif; /* L:300 */
  text-align: center;
}
@media screen and (max-width: 768px) {
  .other-area .campaign__1__title {
    font-size: 6.4vw;
    padding-top: 9.6vw;
    margin-bottom: 8vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .campaign__1__title {
    font-size: 2.2222222222vw;
    padding-top: 3.4027777778vw;
    margin-bottom: 2.7777777778vw;
    font-size: 2.2222222222vw;
    padding-top: 3.4027777778vw;
    margin-bottom: 2.7777777778vw;
  }
}
.other-area .campaign__1__text {
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .other-area .campaign__1__text {
    font-size: 3.2vw;
    margin-bottom: 8vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .campaign__1__text {
    font-size: 1.1111111111vw;
    margin-bottom: 2.6388888889vw;
    font-size: 1.1111111111vw;
    margin-bottom: 2.6388888889vw;
  }
}
.other-area .campaign__1__sticker {
  display: grid;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .other-area .campaign__1__sticker {
    grid-template-columns: 40vw 40vw;
    gap: 5.3333333333vw;
    margin-bottom: 8vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .campaign__1__sticker {
    grid-template-columns: 14.1666666667vw 14.1666666667vw;
    gap: 1.875vw;
    margin-bottom: 2.7777777778vw;
    grid-template-columns: 14.1666666667vw 14.1666666667vw;
    gap: 1.875vw;
    margin-bottom: 2.7777777778vw;
  }
}
.other-area .campaign__1__sticker__item .text {
  line-height: 1.6363636364;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .other-area .campaign__1__sticker__item .text {
    font-size: 2.9333333333vw;
    margin-top: 3.4666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .campaign__1__sticker__item .text {
    font-size: 1.0416666667vw;
    margin-top: 1.3888888889vw;
    font-size: 1.0416666667vw;
    margin-top: 1.3888888889vw;
  }
}
.other-area .campaign__1__text-2 {
  line-height: 2.1818181818;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .other-area .campaign__1__text-2 {
    font-size: 2.9333333333vw;
    width: 74.9333333333vw;
    padding-bottom: 8vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .campaign__1__text-2 {
    font-size: 1.0416666667vw;
    width: 26.5972222222vw;
    padding-bottom: 2.9861111111vw;
    font-size: 1.0416666667vw;
    width: 26.5972222222vw;
    padding-bottom: 2.9861111111vw;
  }
}
.other-area .present-2 {
  border: dashed 1px #000;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .other-area .present-2 {
    width: 91.4666666667vw;
    margin-top: 10.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .present-2 {
    margin-top: 3.75vw;
    margin-top: 3.75vw;
  }
}
.other-area .present-2__title {
  text-align: center;
  font-family: "ogg", sans-serif; /* L:300 */
  line-height: 1.2083333333;
}
@media screen and (max-width: 768px) {
  .other-area .present-2__title {
    font-size: 6.4vw;
    padding-top: 13.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .present-2__title {
    font-size: 2.2222222222vw;
    padding-top: 4.7222222222vw;
    font-size: 2.2222222222vw;
    padding-top: 4.7222222222vw;
  }
}
.other-area .present-2__text {
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .other-area .present-2__text {
    font-size: 3.2vw;
    margin-top: 8vw;
    margin-bottom: 10.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .present-2__text {
    font-size: 1.1111111111vw;
    margin-top: 2.7777777778vw;
    margin-bottom: 3.6111111111vw;
    font-size: 1.1111111111vw;
    margin-top: 2.7777777778vw;
    margin-bottom: 3.6111111111vw;
  }
}
.other-area .present-2__img {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .other-area .present-2__img {
    width: 75.2vw;
    margin-bottom: 18.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .present-2__img {
    width: 26.6666666667vw;
    margin-bottom: 6.6666666667vw;
    width: 26.6666666667vw;
    margin-bottom: 6.6666666667vw;
  }
}
.other-area .present-2__img__item .text {
  line-height: 2.1818181818;
}
@media screen and (max-width: 768px) {
  .other-area .present-2__img__item .text {
    font-size: 2.9333333333vw;
    margin-top: 4.8vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .present-2__img__item .text {
    font-size: 1.0416666667vw;
    margin-top: 1.7361111111vw;
    font-size: 1.0416666667vw;
    margin-top: 1.7361111111vw;
  }
}
.other-area .present-2__text-2__title {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .other-area .present-2__text-2__title {
    font-size: 4.2666666667vw;
    margin-bottom: 8vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .present-2__text-2__title {
    font-size: 1.5277777778vw;
    margin-bottom: 2.7777777778vw;
    font-size: 1.5277777778vw;
    margin-bottom: 2.7777777778vw;
  }
}
.other-area .present-2__text-2 .step {
  display: grid;
}
@media screen and (max-width: 768px) {
  .other-area .present-2__text-2 .step {
    gap: 3.2vw;
    margin-bottom: 7.2vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .present-2__text-2 .step {
    gap: 1.1111111111vw;
    margin-bottom: 2.5694444444vw;
    gap: 1.1111111111vw;
    margin-bottom: 2.5694444444vw;
  }
}
.other-area .present-2__text-2 .step-list {
  display: grid;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .other-area .present-2__text-2 .step-list {
    grid-template-columns: 19.7333333333vw 44vw;
    gap: 3.7333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .present-2__text-2 .step-list {
    grid-template-columns: 6.9444444444vw 15.6944444444vw;
    gap: 1.3888888889vw;
    grid-template-columns: 6.9444444444vw 15.6944444444vw;
    gap: 1.3888888889vw;
  }
}
.other-area .present-2__text-2 .step-list__text {
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .other-area .present-2__text-2 .step-list__text {
    font-size: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .present-2__text-2 .step-list__text {
    font-size: 1.3888888889vw;
    font-size: 1.3888888889vw;
  }
}
.other-area .present-2__text-2 .step-list__text a {
  color: #7392d8;
  text-decoration: underline;
  display: inline-block;
  font-weight: 500;
}
.other-area .present-2__text-2 .step-list .arrow {
  width: 0px;
  height: 0px;
  grid-column: 1/3;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .other-area .present-2__text-2 .step-list .arrow {
    border-top: 3.7333333333vw solid #000;
    border-right: 1.8666666667vw solid transparent;
    border-left: 1.8666666667vw solid transparent;
    border-bottom: 1.8666666667vw solid transparent;
  }
}
@media screen and (min-width: 769px) {
  .other-area .present-2__text-2 .step-list .arrow {
    border-top: 1.3888888889vw solid #000;
    border-right: 0.6944444444vw solid transparent;
    border-left: 0.6944444444vw solid transparent;
    border-bottom: 0.6944444444vw solid transparent;
    border-top: 1.3888888889vw solid #000;
    border-right: 0.6944444444vw solid transparent;
    border-left: 0.6944444444vw solid transparent;
    border-bottom: 0.6944444444vw solid transparent;
  }
}
.other-area .present-2__text-2 .precautions {
  line-height: 2.1818181818;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .other-area .present-2__text-2 .precautions {
    font-size: 2.9333333333vw;
    width: 70.1333333333vw;
    margin-bottom: 12vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .present-2__text-2 .precautions {
    font-size: 1.0416666667vw;
    width: 23.9583333333vw;
    margin-bottom: 4.1666666667vw;
    font-size: 1.0416666667vw;
    width: 23.9583333333vw;
    margin-bottom: 4.1666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .other-area .present-2__text-2 .period.period-1 {
    margin-bottom: 13.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .present-2__text-2 .period.period-1 {
    margin-bottom: 4.8611111111vw;
    margin-bottom: 4.8611111111vw;
  }
}
@media screen and (max-width: 768px) {
  .other-area .present-2__text-2 .period.period-2 {
    padding-bottom: 13.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .present-2__text-2 .period.period-2 {
    padding-bottom: 4.8611111111vw;
    padding-bottom: 4.8611111111vw;
  }
}
.other-area .present-2__text-2 .period__title {
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .other-area .present-2__text-2 .period__title {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .present-2__text-2 .period__title {
    font-size: 1.5277777778vw;
    font-size: 1.5277777778vw;
  }
}
.other-area .present-2__text-2 .period__text {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .other-area .present-2__text-2 .period__text {
    font-size: 4vw;
    margin-top: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .present-2__text-2 .period__text {
    font-size: 1.3888888889vw;
    margin-top: 1.0416666667vw;
    font-size: 1.3888888889vw;
    margin-top: 1.0416666667vw;
  }
}
@media screen and (max-width: 768px) {
  .other-area .present-2__text-2 .period__text span {
    font-size: 3.4666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .present-2__text-2 .period__text span {
    font-size: 1.1805555556vw;
    font-size: 1.1805555556vw;
  }
}
.other-area .present-2__text-2__bottom-text {
  text-align: center;
  line-height: 1.8461538462;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .other-area .present-2__text-2__bottom-text {
    font-size: 3.4666666667vw;
    width: 68.5333333333vw;
    padding-bottom: 13.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .present-2__text-2__bottom-text {
    font-size: 0.9722222222vw;
    width: 23.9583333333vw;
    padding-bottom: 6.9444444444vw;
    font-size: 0.9722222222vw;
    width: 23.9583333333vw;
    padding-bottom: 6.9444444444vw;
  }
}
.other-area .event {
  border: dashed 1px #000;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .other-area .event {
    width: 91.4666666667vw;
    margin-top: 10.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .event {
    margin-top: 2.7777777778vw;
    margin-top: 2.7777777778vw;
  }
}
.other-area .event__title .obi {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .other-area .event__title .obi {
    width: 56.2666666667vw;
    padding-top: 13.3333333333vw;
    margin-bottom: 3.4666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .event__title .obi {
    width: 20vw;
    padding-top: 4.4444444444vw;
    margin-bottom: 1.1805555556vw;
    width: 20vw;
    padding-top: 4.4444444444vw;
    margin-bottom: 1.1805555556vw;
  }
}
.other-area .event__title p {
  text-align: center;
}
.other-area .event__title .title {
  font-family: "ogg", sans-serif; /* L:300 */
}
@media screen and (max-width: 768px) {
  .other-area .event__title .title {
    font-size: 8vw;
    margin-bottom: 2.9333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .event__title .title {
    font-size: 2.8472222222vw;
    margin-bottom: 1.6666666667vw;
    font-size: 2.8472222222vw;
    margin-bottom: 1.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .other-area .event__title .text {
    font-size: 3.7333333333vw;
    margin-bottom: 7.2vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .event__title .text {
    font-size: 1.3194444444vw;
    margin-bottom: 2.5vw;
    font-size: 1.3194444444vw;
    margin-bottom: 2.5vw;
  }
}
.other-area .event__text {
  text-align: center;
  line-height: 2.3333333333;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .other-area .event__text {
    font-size: 3.2vw;
    width: 80vw;
    margin-bottom: 8vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .event__text {
    font-size: 1.1111111111vw;
    width: 28.4027777778vw;
    margin-bottom: 2.9166666667vw;
    font-size: 1.1111111111vw;
    width: 28.4027777778vw;
    margin-bottom: 2.9166666667vw;
  }
}
.other-area .event__img {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .other-area .event__img {
    width: 72vw;
    margin-bottom: 9.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .event__img {
    width: 25.5555555556vw;
    margin-bottom: 3.1944444444vw;
    width: 25.5555555556vw;
    margin-bottom: 3.1944444444vw;
  }
}
.other-area .event__img img {
  border-radius: 50%;
}
.other-area .event__table {
  display: grid;
}
@media screen and (max-width: 768px) {
  .other-area .event__table {
    grid-template-columns: 16vw 66.6666666667vw;
    margin-left: 9.3333333333vw;
    margin-bottom: 13.3333333333vw;
    -moz-column-gap: 1.6vw;
         column-gap: 1.6vw;
    row-gap: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .event__table {
    grid-template-columns: 5.6944444444vw 23.6111111111vw;
    margin-left: 6.4583333333vw;
    margin-bottom: 4.1666666667vw;
    -moz-column-gap: 0.5555555556vw;
         column-gap: 0.5555555556vw;
    row-gap: 1.3888888889vw;
    grid-template-columns: 5.6944444444vw 23.6111111111vw;
    margin-left: 6.4583333333vw;
    margin-bottom: 4.1666666667vw;
    column-gap: 0.5555555556vw;
    row-gap: 1.3888888889vw;
  }
}
.other-area .event__table__text {
  line-height: 1.8333333333;
}
@media screen and (max-width: 768px) {
  .other-area .event__table__text {
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .event__table__text {
    font-size: 1.1111111111vw;
    font-size: 1.1111111111vw;
  }
}
.other-area .event__table__text a {
  display: block;
  color: #3075d6;
  text-decoration: underline;
}
.other-area .event .wave-path {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .other-area .event .wave-path {
    width: 71.2vw;
    margin-bottom: 10.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .event .wave-path {
    width: 25.2777777778vw;
    margin-bottom: 4.0277777778vw;
    width: 25.2777777778vw;
    margin-bottom: 4.0277777778vw;
  }
}
.other-area .event .profile__title {
  font-family: "ogg", sans-serif; /* L:300 */
  text-align: center;
  line-height: 1.3076923077;
}
@media screen and (max-width: 768px) {
  .other-area .event .profile__title {
    font-size: 6.9333333333vw;
    margin-bottom: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .event .profile__title {
    font-size: 2.4305555556vw;
    margin-bottom: 1.3888888889vw;
    font-size: 2.4305555556vw;
    margin-bottom: 1.3888888889vw;
  }
}
@media screen and (max-width: 768px) {
  .other-area .event .profile__title span {
    font-size: 5.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .event .profile__title span {
    font-size: 1.875vw;
  }
}
.other-area .event .profile__img {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .other-area .event .profile__img {
    width: 36vw;
    margin-bottom: 8vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .event .profile__img {
    width: 12.8472222222vw;
    margin-bottom: 2.7777777778vw;
    width: 12.8472222222vw;
    margin-bottom: 2.7777777778vw;
  }
}
.other-area .event .profile__text {
  margin: 0 auto;
  line-height: 2.3333333333;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .other-area .event .profile__text {
    font-size: 3.2vw;
    width: 80vw;
    margin-bottom: 21.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .event .profile__text {
    font-size: 13px;
    width: 28.4027777778vw;
    margin-bottom: 7.5vw;
    width: 28.4027777778vw;
    margin-bottom: 7.5vw;
  }
}
.other-area .event .profile .loveone__title {
  font-family: "ogg", sans-serif; /* L:300 */
  text-align: center;
}
@media screen and (max-width: 768px) {
  .other-area .event .profile .loveone__title {
    font-size: 5.3333333333vw;
    margin-bottom: 8vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .event .profile .loveone__title {
    font-size: 1.875vw;
    margin-bottom: 3.4722222222vw;
    font-size: 1.875vw;
    margin-bottom: 3.4722222222vw;
  }
}
.other-area .event .profile .loveone__img {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .other-area .event .profile .loveone__img {
    gap: 6.4vw;
    margin-bottom: 9.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .event .profile .loveone__img {
    gap: 2.2222222222vw;
    margin-bottom: 3.4722222222vw;
    gap: 2.2222222222vw;
    margin-bottom: 3.4722222222vw;
  }
}
@media screen and (max-width: 768px) {
  .other-area .event .profile .loveone__img .img {
    width: 14.1333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .event .profile .loveone__img .img {
    width: 5vw;
    width: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .other-area .event .profile .loveone__img .img:last-child {
    width: 18.9333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .event .profile .loveone__img .img:last-child {
    width: 6.6666666667vw;
    width: 6.6666666667vw;
  }
}
.other-area .event .profile .loveone__text {
  margin: 0 auto;
  text-align: center;
  line-height: 2.3333333333;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .other-area .event .profile .loveone__text {
    width: 80vw;
    font-size: 3.2vw;
    padding-bottom: 16vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .event .profile .loveone__text {
    width: 28.4027777778vw;
    width: 28.4027777778vw;
    font-size: 13px;
    padding-bottom: 5.6944444444vw;
    padding-bottom: 5.6944444444vw;
  }
}
.other-area .kawaeirina {
  border: dashed 1px #000;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .other-area .kawaeirina {
    width: 91.4666666667vw;
    margin-top: 10.6666666667vw;
    padding-top: 13.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .kawaeirina {
    margin-top: 2.7777777778vw;
    padding-top: 4.7222222222vw;
    margin-top: 2.7777777778vw;
    padding-top: 4.7222222222vw;
  }
}
.other-area .kawaeirina__title {
  font-family: "ogg", sans-serif; /* L:300 */
  text-align: center;
  line-height: 1.3076923077;
}
@media screen and (max-width: 768px) {
  .other-area .kawaeirina__title {
    font-size: 6.9333333333vw;
    margin-bottom: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .kawaeirina__title {
    font-size: 2.4305555556vw;
    margin-bottom: 1.875vw;
    font-size: 2.4305555556vw;
    margin-bottom: 1.875vw;
  }
}
@media screen and (max-width: 768px) {
  .other-area .kawaeirina__title span {
    font-size: 5.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .kawaeirina__title span {
    font-size: 1.875vw;
    font-size: 1.875vw;
  }
}
.other-area .kawaeirina__img {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .other-area .kawaeirina__img {
    width: 36vw;
    margin-bottom: 8vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .kawaeirina__img {
    width: 12.7777777778vw;
    margin-bottom: 2.7777777778vw;
    width: 12.7777777778vw;
    margin-bottom: 2.7777777778vw;
  }
}
.other-area .kawaeirina__text {
  margin: 0 auto;
  line-height: 2.3333333333;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .other-area .kawaeirina__text {
    font-size: 3.2vw;
    width: 80vw;
    padding-bottom: 16vw;
  }
}
@media screen and (min-width: 769px) {
  .other-area .kawaeirina__text {
    font-size: 13px;
    width: 28.4027777778vw;
    padding-bottom: 5.6944444444vw;
    width: 28.4027777778vw;
    padding-bottom: 5.6944444444vw;
  }
}

.creditAjax_price__sale {
  color: red;
}

.creditAjax_price__sale::before {
  content: "¥";
}

.creditAjax_link.creditAjax__saleOn .proper {
  text-decoration: line-through;
}

.js-clip {
  position: relative;
  text-transform: uppercase;
  transition: all 0.8s ease;
  clip-path: inset(0 100% 0 0);
}
.js-clip.is-show {
  clip-path: inset(0);
}

.js-zoomIn {
  overflow: clip;
}
.js-zoomIn img {
  transition: transform 1.5s ease, opacity 1s ease;
  opacity: 0;
  transform: scale(1);
}
.js-zoomIn.is-show img {
  opacity: 1;
  transform: scale(1.1);
}

.js-zoomOut {
  overflow: clip;
}
.js-zoomOut img {
  transition: transform 2s ease, opacity 1s ease;
  opacity: 0;
  transform: scale(1.2);
}
.js-zoomOut.is-show img {
  opacity: 1;
  transform: scale(1);
}

.zoom-in img {
  animation: imgScale 2.1s linear forwards;
}

@keyframes imgScale {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}
.anim-fluffy.on {
  animation: animFluffy 3s infinite;
}

@keyframes animFluffy {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.on .anim-rotateUp {
  animation: animRotateUp 0.6s linear forwards;
}

@keyframes animRotateUp {
  0% {
    transform: rotateY(0deg) translateY(20px);
  }
  100% {
    transform: rotateY(360deg) translateY(0);
  }
}
.on .anim-rotateR {
  animation: animRotateR 0.6s linear forwards !important;
}

@keyframes animRotateR {
  0% {
    transform: rotateY(-180deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
.on .anim-rotateL {
  animation: animRotateL 0.6s linear forwards;
}

@keyframes animRotateL {
  0% {
    transform: rotateY(-180deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
.anim-popin.on {
  animation: popIn 0.6s forwards;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  60% {
    opacity: 1;
    transform: scale(1.08);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* 上のラブオネ */
@keyframes topWobble {
  0% {
    transform: translateX(-50%) rotate(0deg);
  }
  20% {
    transform: translateX(-50%) rotate(-7deg);
  }
  40% {
    transform: translateX(-50%) rotate(6deg);
  }
  60% {
    transform: translateX(-50%) rotate(-5deg);
  }
  80% {
    transform: translateX(-50%) rotate(4deg);
  }
  100% {
    transform: translateX(-50%) rotate(0deg);
  }
}
/* 下のアイス */
@keyframes bottomWobble {
  0% {
    transform: translateX(-50%) translateX(0px);
  }
  25% {
    transform: translateX(-50%) translateX(4px);
  }
  50% {
    transform: translateX(-50%) translateX(-3px);
  }
  75% {
    transform: translateX(-50%) translateX(2px);
  }
  100% {
    transform: translateX(-50%) translateX(0px);
  }
}/*# sourceMappingURL=style.css.map */