@charset "utf-8";

:root {
  --bgColor: #ffab00;
  --bgFusuya: #e8382f;
  --bgLong: #0076a9;
  --color: #333;
  --colorW: #fff;
  --colorRed: #b1596b;
  --colorP: #ab94bc;
  --fontBodoni: "BodoniMO Pro Bold";
  --fontA1GR: "A1 Gothic R";
}

.fca_cat-hero {
  overflow: visible;
}

.sr_page-shopping-result__free {
  overflow: visible;
}

.catalog_san .fca_page-shop-home__keyword {
  margin-top: 0;
}

.fsc_gfooter__breadcrumb {
  margin-top: 0;
}

.laughrees_lh {
  background-color: var(--bgColor);
  background-image: url(../images/bg.png);
  background-size: 798px auto;
  background-attachment: fixed;
  color: var(--color);
  font-feature-settings: "palt";
  font-variant-ligatures: no-common-ligatures;
  line-height: 1;
  letter-spacing: 0.05em;
  margin: 0 calc(50% - 50vw);
  margin-bottom: 1px;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  padding-bottom: 50px;
  position: relative;
  width: 100vw;
}

.laughrees_lh * {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.laughrees_lh a {
  text-decoration: none;
}

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

.laughree-body_lh {
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 2208px;
  position: relative;
}

.item-lists_lh {
  margin-top: 90px;
  max-width: 784px;
  width: 100%;
  width: 35.507246376%;
  width: 30%;
}

.item-list_lh {
  background-color: #fff;
  border: 4px solid #000;
  border-radius: 26px;
  margin-left: 76px;
  margin-left: 9.693877551%;
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  top: 90px;
  width: 573px;
  width: 73.086734693%;
}

.laughree-headers_lh {
  margin-top: 155px;
  max-width: 784px;
  width: 100%;
  width: 35.507246376%;
}

.laughree-header_lh {
  position: -webkit-sticky;
  position: sticky;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}

.laughree-header__image_lh {
  opacity: 0;
  transition: opacity 0.2s ease;
  width: 78.443877551%;
}

.laughree-header__image_lh.visible {
  opacity: 1;
}

.laughrees-main_lh {
  margin-inline: auto;
  max-width: 640px;
  min-width: 500px;
  padding-top: 55px;
  padding-top: 2.490942028%;
  width: 28.985507246%;
}

.laughrees-main__header_lh {
  position: relative;
}

.laughree-title_lh {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 76.875%;
  z-index: 1;
}

.laughree-mainimage_lh {
  margin-inline: auto;
  width: 85.78125%;
}

.anniversary_lh {
  max-width: 183px;
  position: absolute;
  left: 5px;
  top: 22.821576763%;
  width: 28.59375%;
}

.btn-item-list_lh {
  cursor: pointer;
  margin-inline: auto;
  margin-top: 30px;
  margin-top: 4.87012987%;
  width: 96.25%;
}

.laughrees-main__text_lh {
  position: absolute;
  left: 26px;
  left: 4.6875%;
  bottom: 40px;
  width: 50.625%;
}

.laughrees-about_lh {
  position: relative;
}

.laughrees-about__title_lh {
  margin-inline: auto;
  margin-top: 10px;
  width: 91.71875%;
}

.laughrees-about__btn_lh {
  cursor: pointer;
  position: absolute;
  bottom: 16.074766355%;
  left: 50%;
  transform: translateX(-50%);
  width: 68.75%;
}

.lineup_lh {
  background-color: #fff;
  border: 4px solid #000;
  border-radius: 28px;
  box-sizing: content-box;
  margin-inline: auto;
  margin-top: 40px;
  margin-top: 6.153846153%;
  padding-bottom: 40px;
  padding-bottom: 6.153846153%;
  position: relative;
  width: 88.75%;
}

.lineup_lh::before,
.lineup_lh::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 80.985915492%;
}

.lineup_lh::before {
  background-color: #fff;
  height: 5px;
}

.lineup_lh::after {
  background-color: var(--bgColor);
  height: 3px;
}

.lineup-title_lh {
  margin-inline: auto;
  margin-bottom: 45px;
  margin-top: -20px;
  position: relative;
  z-index: 1;
  width: 77.464788732%;
}

.lineup-items_lh {
  margin-left: 3.52112675%;
  width: 87.147887323%;
}

.lineup-item_lh {
  cursor: pointer;
  width: 100%;
}

.lineup-item_lh {
  opacity: 0;
}

.lineup-item_lh.animate {
  opacity: 1;
  -webkit-animation: bounceIn 0.6s ease-in forwards;
  animation: bounceIn 0.6s ease-in forwards;
}

.lineup-item_lh:nth-child(odd) {
  margin-left: auto;
  width: 94.545454545%;
}

.lineup-item_lh:nth-child(even) {
  margin-top: 20px;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  20% {
    transform: scale(1.1);
  }
  40% {
    transform: scale(0.9);
  }
  60% {
    opacity: 1;
    transform: scale(1.03);
  }
  80% {
    transform: scale(0.97);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  20% {
    transform: scale(1.1);
  }
  40% {
    transform: scale(0.9);
  }
  60% {
    opacity: 1;
    transform: scale(1.03);
  }
  80% {
    transform: scale(0.97);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.look-items_lh {
  margin-inline: auto;
  margin-top: 90px;
  margin-top: 14.0625%;
  width: 73.4375%;
}

.funbook_hl {
  margin-top: 35px;
  margin-top: 5.46875%;
}

.funbook-item_hl {
  margin-inline: auto;
  overflow: hidden;
  opacity: 0;
  position: relative;
  transition: all 0.3s ease;
  transform-origin: center;
  z-index: 0;
}

.funbook-item_hl.vol5_lh {
  background-image: url(../images/funbook_bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 91.71875%;
  z-index: 10;
}

.funbook-item_hl.vol4_lh {
  width: 93.75%;
  z-index: 9;
}

.funbook-item_hl.mayurika--01_lh {
  background-image: url(../images/funbook_bg_02.png);
  background-size: 100%;
  background-repeat: no-repeat;
  margin-top: 20px;
  width: 91.875%;
  z-index: 8;
}

.funbook-item_hl.mayurika--02_lh {
  background-image: url(../images/funbook_bg_03.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 91.71875%;
  z-index: 7;
}

.funbook-item_hl.fusuya--01_lh {
  background-image: url(../images/funbook_bg_04.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 91.875%;
  z-index: 6;
}

.funbook-item_hl.fusuya--02_lh {
  background-image: url(../images/funbook_bg_05.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 91.71875%;
  z-index: 5;
}

.funbook-item_hl.nanamagari--01_lh {
  background-image: url(../images/funbook_bg_06.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 91.71875%;
  z-index: 4;
}

.funbook-item_hl.file--01_lh {
  background-image: url(../images/funbook_bg_07.png);
  background-size: 100%;
  background-repeat: no-repeat;
  margin-top: 30px;
  width: 91.875%;
  z-index: 3;
}

.funbook-item_hl.fifth--01_lh {
  background-image: url(../images/fifth_bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
  margin-top: 25px;
  transform: none !important;
  width: 90.625%;
  z-index: 2;
}

.funbook-item_hl:nth-child(odd) {
  transform: translate(-50px, -50px) rotate(1.4deg);
}

.funbook-item_hl:nth-child(even) {
  transform: translate(50px, -50px) rotate(-1.4deg);
}

.funbook-item_hl.vol5_lh:before {
  content: "";
  display: block;
  padding-top: 168.994889267%;
}

.funbook-item_hl.mayurika--01_lh:before {
  content: "";
  display: block;
  padding-top: 168.87755102%;
}

.funbook-item_hl.mayurika--02_lh:before {
  content: "";
  display: block;
  padding-top: 169.165247018%;
}

.funbook-item_hl.fusuya--01_lh:before {
  content: "";
  display: block;
  padding-top: 168.87755102%;
}

.funbook-item_hl.fusuya--02_lh:before {
  content: "";
  display: block;
  padding-top: 169.165247018%;
}

.funbook-item_hl.nanamagari--01_lh:before {
  content: "";
  display: block;
  padding-top: 169.165247018%;
}

.funbook-item_hl.file--01_lh:before {
  content: "";
  display: block;
  padding-top: 168.87755102%;
}

.funbook-item_hl.fifth--01_lh:before {
  content: "";
  display: block;
  padding-top: 293.620689655%;
}

.funbook-item_hl:nth-child(odd).animate {
  opacity: 1;
  transform: translate(0, 0) rotate(2deg);
}

.funbook-item_hl:nth-child(even).animate {
  opacity: 1;
  transform: translate(0, 0) rotate(-2deg);
}

.funbook__link_hl {
  display: block;
  height: 100%;
  width: 100%;
}

.vol5_lh .funbook__link_hl {
  padding-top: 45px;
  padding-top: 7.666098807%;
  position: absolute;
  left: 0;
  top: 0;
}

.mayurika--01_lh .funbook__link_hl {
  padding-top: 45px;
  padding-top: 7.653061224%;
  position: absolute;
  left: 0;
  top: 0;
}

.mayurika--02_lh .funbook__link_hl {
  padding-top: 45px;
  padding-top: 7.666098807%;
  position: absolute;
  left: 0;
  top: 0;
}

.fusuya--01_lh .funbook__link_hl {
  padding-top: 45px;
  padding-top: 7.653061224%;
  position: absolute;
  left: 0;
  top: 0;
}

.fusuya--02_lh .funbook__link_hl {
  padding-top: 45px;
  padding-top: 7.666098807%;
  position: absolute;
  left: 0;
  top: 0;
}

.nanamagari--01_lh .funbook__link_hl {
  padding-top: 50px;
  padding-top: 8.517887563%;
  position: absolute;
  left: 0;
  top: 0;
}

.file--01_lh .funbook__link_hl {
  padding-top: 70px;
  padding-top: 11.904761904%;
  position: absolute;
  left: 0;
  top: 0;
}

.fifth--01_lh .funbook__link_hl {
  padding-top: 130px;
  padding-top: 22.413793103%;
  position: absolute;
  left: 0;
  top: 0;
}

.funbook-title_hl {
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.vol5_lh .funbook-title_hl {
  width: 81.090289608%;
}

.mayurika--01_lh .funbook-title_hl {
  width: 85.034013605%;
}

.mayurika--02_lh .funbook-title_hl {
  width: 81.771720613%;
}

.fusuya--01_lh .funbook-title_hl {
  width: 68.707482993%;
}

.fusuya--02_lh .funbook-title_hl {
  width: 63.032367972%;
}

.nanamagari--01_lh .funbook-title_hl {
  width: 76.320275572%;
}

.file--01_lh .funbook-title_hl {
  width: 90.136054421%;
}

.fifth--01_lh .funbook-title_hl {
  width: 78.275862068%;
}

.fifth--01_lh .funbook-subtitle_hl {
  margin-inline: auto;
  margin-top: 10px;
  width: 57.931034482%;
}

.funbook-image_hl {
  margin-inline: auto;
  position: relative;
}

.funbook-image_hl:before {
  content: "";
  display: block;
}

.vol5_lh .funbook-image_hl {
  border: 4px solid var(--bgColor);
  margin-top: -50px;
  margin-top: -8.517887563%;
  width: 78.534923339%;
}

.laughree-mainimage_lh.funbook-image_hl:before {
  content: "";
  display: block;
  padding-top: 175.912408759%;
}

.vol5_lh .funbook-image_hl:before {
  padding-top: 147.939262472%;
}

.mayurika--01_lh .funbook-image_hl {
  margin-top: -90px;
  margin-top: -15.306122448%;
  width: 80.952380952%;
}

.mayurika--01_lh .funbook-image_hl:before {
  padding-top: 147.268907563%;
}

.mayurika--02_lh .funbook-image_hl {
  margin-top: -110px;
  margin-top: -18.73935264%;
  width: 82.964224872%;
}

.mayurika--02_lh .funbook-image_hl:before {
  padding-top: 148.049281314%;
}

.fusuya--01_lh .funbook-image_hl {
  margin-top: -60px;
  margin-top: -10.204081632%;
  width: 80.44217687%;
}

.fusuya--01_lh .funbook-image_hl:before {
  padding-top: 147.357293868%;
}

.fusuya--02_lh .funbook-image_hl {
  margin-top: -100px;
  margin-top: -17.035775%;
  width: 81.771720613%;
}

.fusuya--02_lh .funbook-image_hl:before {
  padding-top: 146.875%;
}

.nanamagari--01_lh .funbook-image_hl {
  margin-top: -140px;
  margin-top: -23.850085178%;
  width: 86.371379897%;
}

.nanamagari--01_lh .funbook-image_hl:before {
  padding-top: 169.165247018%;
}

.file--01_lh .funbook-image_hl {
  border: 4px solid var(--bgColor);
  margin-top: -10px;
  width: 78.231292517%;
}

.file--01_lh .funbook-image_hl:before {
  padding-top: 148.04347826%;
}

.fifth--01_lh .funbook-image_hl {
  border: 4px solid var(--bgLong);
  margin-top: 20px;
  width: 62.068965517%;
}

.fifth--01_lh .funbook-image_hl:before {
  padding-top: 133.333333333%;
}

.funbook-image__image_hl {
  position: absolute;
  top: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.funbook-image__image_hl.active {
  opacity: 1;
}

.funbook-check_hl {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 36.11584327%;
}

.funbook-otoku_hl {
  position: absolute;
  left: 0;
  bottom: 9.063444108%;
  width: 40.885860306%;
}

.funbook-hidden_lh {
  background-color: #fff;
  border-radius: 12px;
  padding-bottom: 10px;
  padding-top: 10px;
  position: absolute;
  bottom: -100%;
  transition: bottom 0.5s ease;
  width: 100%;
}

.fusuya_lh .funbook-hidden_lh {
  border: 3px solid var(--bgFusuya);
}

.file_lh .funbook-hidden_lh {
  border: 3px solid var(--bgColor);
}

.funbook-hidden_lh.visible {
  bottom: 0;
}

.funbook-hidden__items_lh {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.funbook-hidden__item_lh {
  position: relative;
  width: 31.655844155%;
  z-index: 0;
}

.funbook-hidden__item_lh:nth-of-type(4) {
  width: 94.967532467%;
}

.fusuya_lh .funbook-hidden__item_lh:nth-of-type(4)::before {
  background-color: var(--bgFusuya);
  content: "";
  height: 3px;
  position: absolute;
  left: 0;
  top: 15px;
  width: 100%;
  z-index: -1;
}

.funbook-hidden__closed_lh {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: -70px;
  top: -17.1%;
  width: 17.094017094%;
}

.fifth-item_lh {
  margin-inline: auto;
  width: 75.862068965%;
}

.fifth-banner_lh {
  cursor: pointer;
  margin-inline: auto;
  margin-top: 10px;
  width: 80.689655172%;
}

.laughrees-btn_lh {
  margin-inline: auto;
  margin-top: 16px;
  margin-top: 2.5%;
  width: 80.3125%;
}

/*----------------------------------
	cat 12 - SNS
----------------------------------*/

.quiz_lh {
  margin-inline: auto;
  margin-top: 60px;
  margin-top: 9.375%;
  padding-top: 70px;
  padding-top: 10.9375%;
  position: relative;
  width: 89.375%;
  z-index: 0;
}

.quiz_lh::before {
  background-color: #000;
  content: "";
  height: 3px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.inner_lh {
  background-color: #fff;
  border: 4px solid #000;
  border-radius: 17px;
  position: relative;
}

.inner_lh::after {
  background-color: #000;
  border-radius: 17px;
  content: "";
  height: 100%;
  position: absolute;
  left: 9px;
  top: 8px;
  width: 100%;
  z-index: -1;
}

#quiz_cover {
  padding-bottom: 40px;
  padding-bottom: 6.993006993%;
}

.quiz_lh .mainTitle_lh {
  margin-inline: auto;
  margin-top: -18px;
  margin-top: -3.191489361%;
  width: 73.076923076%;
}

.quiz_lh .mainSummary_lh {
  margin-inline: auto;
  margin-top: 36px;
  margin-top: 6.293706293%;
  width: 69.93006993%;
}

.quiz_lh .start_lh {
  margin-inline: auto;
  margin-top: 36px;
  margin-top: 6.293706293%;
  width: 45.454545454%;
}

/* quiz */

.quiz_lh .inner_lh .quiz_container {
  padding: 0;
}
.inner_lh .quiz_container {
  border-radius: 13px;
  overflow: hidden;
}
.quiz_container img {
  vertical-align: top;
}
.choices_area {
  position: relative;
}
.choices {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
}

.sosial-title_lh {
  margin-inline: auto;
  margin-top: 40px;
  margin-top: 6.25%;
  width: 24.0625%;
}

.sosial-subtitle_lh {
  margin-inline: auto;
  margin-top: 25px;
  margin-top: 3.90625%;
  width: 42.8125%;
}

.social-btn_lh {
  margin-inline: auto;
  margin-top: 30px;
  margin-top: 4.6875%;
  width: 51.25%;
}

.social-share_lh {
  margin-inline: auto;
  margin-top: 36px;
  margin-top: 5.625%;
  width: 81.25%;
}

.footer-logo_lh {
  margin-inline: auto;
  margin-top: 20px;
  margin-top: 3.125%;
  width: 62.5%;
}

.menu_lh {
  display: none;
  position: fixed;
  right: 10px;
  transition: all 0.3s ease;
  width: 64px;
  z-index: 10;
}

.sp {
  display: none;
}

@media not all and (min-width: 1070px) {
  .laughrees_lh {
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }

  .laughree-body_lh {
    display: block;
  }

  .item-lists_lh {
    display: none;
  }

  .laughree-headers_lh {
    display: none;
  }
}

@media not all and (min-width: 768px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .laughrees-main_lh {
    contain: layout;
    min-width: 100%;
  }
}
