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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}

body,
h1,
h2,
h3,
h4,
h5,
p,
ul,
li,
dl,
dt,
dd,
button {
  display: block;
  padding: 0;
  margin: 0;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

button {
  border: none;
}

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

/* slick共通指定 */
.slick-track {
  display: flex;
}
.slick-slide {
  float: unset;
  height: auto;
}
.slick-arrow {
  position: absolute;
  top: calc(50% - 10.5px);
  z-index: 10;
  width: 30px;
  height: 30px;
  overflow: hidden;
  text-indent: 100%;
  cursor: pointer;
}
.slick-arrow.slick-disabled {
  display: none !important;
}
.slick-prev {
  left: 5px;
  background: url(../img/icn_arrow-left.png) no-repeat center/contain;
}
@media (min-width: 768px) {
  .slick-prev {
    left: 30px;
  }
}
.slick-next {
  right: 5px;
  background: url(../img/icn_arrow-right.png) no-repeat center/contain;
}
@media (min-width: 768px) {
  .slick-next {
    right: 30px;
  }
}

.inner {
  padding-right: 15px;
  padding-left: 15px;
}
@media (min-width: 768px) {
  .inner {
    width: min(100%, 1140px);
    padding-right: 30px;
    padding-left: 30px;
    margin-right: auto;
    margin-left: auto;
  }
}

/* ボタンスタイル */
.btn--fill {
  display: grid;
  place-items: center;
  height: 69px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background-color: #488ff9;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .btn--fill {
    width: min(100%, 517px);
    height: 104px;
    margin: auto;
    font-size: 1.6875rem;
    letter-spacing: 0.02em;
    border-radius: 20px;
  }
}
.btn--outline {
  display: grid;
  place-items: center;
  width: 250px;
  height: 55px;
  margin-right: auto;
  margin-left: auto;
  font-size: 0.875rem;
  font-weight: 700;
  color: #488ff9;
  border: 1px solid;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .btn--outline {
    width: 380px;
    height: 83px;
    font-size: 1.3125rem;
    border-width: 2px;
    border-radius: 20px;
  }
}

/* ヘッダー */
.header {
  background: linear-gradient(105deg, #70bbdd 30%, #e58ba3 70%);
}

/* 流れる文字 */
.loop__area {
  display: flex;
  align-items: center;
  height: 35px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .loop__area {
    justify-content: center;
    height: 56px;
  }
}
.loop__content {
  display: inline-block;
  padding-left: 100%;
  font-size: 0.8125rem;
  font-style: italic;
  font-feature-settings: "palt";
  color: #fff;
  letter-spacing: 0.22em;
  white-space: nowrap;
  animation: loop 20s infinite linear;
}
@media (min-width: 768px) {
  .loop__content {
    padding-left: 0;
    font-size: 1rem;
    animation: none;
  }
}

@keyframes loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* フッター */
.footer {
  padding-top: 35px;
  padding-bottom: 25px;
}
@media (min-width: 768px) {
  .footer {
    padding-top: 70px;
  }
}
.footer .logo__wrapper {
  display: flex;
  gap: 0 25px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .footer .logo__wrapper {
    gap: 0 40px;
    margin-bottom: 30px;
  }
}
.footer .logo__liveshopping {
  width: 137px;
}
@media (min-width: 768px) {
  .footer .logo__liveshopping {
    width: 206px;
  }
}
.footer .logo__livemini {
  width: 89px;
}
@media (min-width: 768px) {
  .footer .logo__livemini {
    width: 134px;
  }
}
.footer .btn--outline {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .footer .btn--outline {
    margin-bottom: 35px;
  }
}
.footer .copyright {
  display: block;
  font-size: 0.5625rem;
  color: #9d9d9d;
  text-align: center;
}
@media (min-width: 768px) {
  .footer .copyright {
    font-size: 0.875rem;
  }
}

.main {
  overflow: hidden;
}

/* タイトル */
.main__title {
  margin-top: 25px;
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 2.1875rem;
  line-height: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .main__title {
    margin-top: 45px;
    font-size: 3.3125rem;
  }
}
.main__title a {
  color: #000;
}

/* カテゴリ表記 */
.cat_beauty {
  color: #eb6b8b;
}
.cat_beauty::before {
  background: url(../img/icn_beauty.png) no-repeat center/contain;
}
.cat_health {
  color: #64b853;
}
.cat_health::before {
  background: url(../img/icn_health.png) no-repeat center/contain;
}
.cat_life {
  color: #4ea5c3;
}
.cat_life::before {
  background: url(../img/icn_life.png) no-repeat center/contain;
}
.cat_live {
  color: #bd33ae;
}
.cat_live::before {
  background: url(../img/icn_live.png) no-repeat center/contain;
}

/* カード要素 */
.card {
  position: relative;
  height: 100%;
  border: 1px solid #706c6c;
  border-radius: 10px;
}
.card:has(.card__link--article:hover) {
  opacity: 0.5;
}
@media (min-width: 768px) {
  .card {
    border-radius: 20px;
  }
}
.card__link--article {
  color: #000;
}
.card__link--article::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  content: "";
}
.card__link--tag {
  display: inline-block;
  font-size: 0.6875rem;
  color: #7e7e7e;
}
@media (min-width: 768px) {
  .card__link--tag {
    font-size: 1.03125rem;
  }
}
.card__link--tag:not(:last-child)::after {
  content: ", ";
}
.card__thumb {
  overflow: hidden;
  border-radius: 9px 9px 0 0;
}
@media (min-width: 768px) {
  .card__thumb {
    border-radius: 19px 19px 0 0;
  }
}
.card__text {
  padding: 5px 10px 12px;
}
@media (min-width: 768px) {
  .card__text {
    padding: 5px 15px 15px;
  }
}
.card__category {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0 0.1em;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 7px;
  margin-left: auto;
  font-size: min(3vw, 0.875rem);
  line-height: 1.2;
}
@media (min-width: 768px) {
  .card__category {
    grid-template-columns: 30px 1fr;
    font-size: 1.21875rem;
  }
}
.card__category::before {
  display: block;
  width: 20px;
  height: 20px;
  content: "";
}
@media (min-width: 768px) {
  .card__category::before {
    width: 30px;
    height: 30px;
  }
}
.card__title {
  margin-bottom: 5px;
  font-size: 0.875rem;
  line-height: 1.3571428571;
}
@media (min-width: 768px) {
  .card__title {
    font-size: 1.3125rem;
  }
}
.card__tags {
  display: flex;
  flex-wrap: wrap;
}
.card__publish {
  font-size: 0.6875rem;
  color: #7e7e7e;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .card__publish {
    font-size: 1.03125rem;
  }
}

/* アーカイブ一覧 */
.archive .nodata {
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .archive .nodata {
    font-size: 1.125rem;
  }
}
.archive__title {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .archive__title {
    margin-bottom: 15px;
    font-size: 1.6875rem;
  }
}
.archive__title::before {
  display: block;
  width: 27px;
  height: 24px;
  margin-right: 8px;
  content: "";
  background: url(../img/icn_nikukyu.png) no-repeat center/contain;
}
@media (min-width: 768px) {
  .archive__title::before {
    width: 42px;
    height: 37px;
    margin-right: 12px;
  }
}

/* ポップアップ */
.popupInfo {
  position: fixed;
  right: 5px;
  bottom: 5px;
  z-index: 100;
  width: min(100% - 10px, 365px);
  padding: 25px 22px;
  pointer-events: none;
  background-color: rgba(0, 11, 27, 0.8);
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .popupInfo {
    width: 438.4px;
    padding: 32px 24px 24px;
    border-radius: 20px;
  }
}
.popupInfo.show {
  pointer-events: visible;
  opacity: 1;
}
.popupInfo__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 15px;
  cursor: pointer;
  background-color: transparent;
}
@media (min-width: 768px) {
  .popupInfo__close {
    top: 16px;
    right: 16px;
    width: 18.4px;
  }
}

/* 次回配信予定 */
.nextLive {
  display: grid;
  grid-template-columns: 1fr 1.29fr;
  gap: 0 12px;
}
@media (min-width: 768px) {
  .nextLive {
    gap: 0 20px;
  }
}
.nextLive__label, .nextLive__title {
  font-size: 1rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .nextLive__label, .nextLive__title {
    font-size: 1.2rem;
  }
}
.nextLive__label {
  display: flex;
  gap: 0 7px;
  align-items: center;
  padding-left: 5px;
  margin-bottom: 10px;
  color: #db669b;
}
@media (min-width: 768px) {
  .nextLive__label {
    gap: 0 10px;
  }
}
.nextLive__label::before {
  display: block;
  width: 35px;
  height: 32px;
  content: "";
  background: url(../img/icn_clock.png) no-repeat center/contain;
}
@media (min-width: 768px) {
  .nextLive__label::before {
    width: 41.6px;
    height: 37.6px;
  }
}
.nextLive__title, .nextLive__date {
  color: #fff;
}
.nextLive__title {
  margin-bottom: 5px;
  line-height: 1.4375;
}
@media (min-width: 768px) {
  .nextLive__title {
    line-height: 1.4583333333;
  }
}
.nextLive__date {
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .nextLive__date {
    font-size: 1.05rem;
  }
}

/* ワンケルポスト */
.wankeru {
  position: relative;
  padding-top: 80px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .wankeru {
    width: min(100%, 720px);
    padding-top: 130px;
    margin-right: auto;
    margin-bottom: 80px;
    margin-left: auto;
  }
}
.wankeru__illust {
  position: absolute;
  top: 23px;
  right: 0;
  left: 0;
  width: 67px;
  margin: auto;
}
@media (min-width: 768px) {
  .wankeru__illust {
    top: 40px;
    width: 101px;
  }
}
.wankeru__box {
  padding: 30px 20px;
  background-color: #dde5f0;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .wankeru__box {
    padding: 45px 30px;
    border-radius: 20px;
  }
  .wankeru__box__inner {
    width: min(100%, 450px);
    margin: auto;
  }
}
.wankeru__title {
  margin-bottom: 15px;
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .wankeru__title {
    font-size: 2.25rem;
  }
}
.wankeru__text {
  margin-bottom: 15px;
  font-size: 0.875rem;
  line-height: 1.3571428571;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .wankeru__text {
    font-size: 1.3125rem;
    line-height: 1.9047619048;
  }
}

/* FANCL LIVE */
.fanclLive {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .fanclLive {
    width: min(100%, 720px);
    margin-right: auto;
    margin-left: auto;
  }
}
.fanclLive__banner {
  position: relative;
  display: grid;
  gap: 10px 0;
  place-content: center;
  height: 86px;
  padding-right: 60px;
  padding-bottom: 3px;
  padding-left: 80px;
  margin-bottom: 35px;
  color: #fff;
  background: url(../img/logo_livechannel.png) no-repeat left 3px center/88px, #ea6da5;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .fanclLive__banner {
    width: min(100%, 517px);
    height: 130px;
    padding-right: 0;
    padding-left: 30px;
    margin: 0 auto 80px;
    background-size: 132px;
    border-radius: 20px;
  }
}
.fanclLive__banner::after {
  position: absolute;
  right: -11px;
  bottom: 0;
  width: 56px;
  height: 56px;
  content: "";
  background: url(../img/illu_wankeru_deco.png) no-repeat center/contain;
}
@media (min-width: 768px) {
  .fanclLive__banner::after {
    width: 84px;
    height: 84px;
  }
}
.fanclLive__bnrTxt--main, .fanclLive__bnrTxt--sub {
  font-weight: 700;
  line-height: 1;
}
.fanclLive__bnrTxt--main {
  font-size: 1.75rem;
}
@media (min-width: 768px) {
  .fanclLive__bnrTxt--main {
    font-size: 2.625rem;
  }
}
.fanclLive__bnrTxt--sub {
  font-size: 1rem;
}
@media (min-width: 768px) {
  .fanclLive__bnrTxt--sub {
    font-size: 1.5rem;
  }
}
.fanclLive__title {
  margin-bottom: 15px;
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .fanclLive__title {
    font-size: 1.6875rem;
    text-align: left;
  }
}
.fanclLive__text {
  font-size: 0.875rem;
  line-height: 1.9285714286;
  text-align: justify;
}
@media (min-width: 768px) {
  .fanclLive__text {
    font-size: 1rem;
    line-height: 1.9294790343;
  }
}

/* サポート環境 */
@media (min-width: 768px) {
  .support {
    width: min(100%, 720px);
    margin: auto;
  }
}
.support__title--lv2 {
  margin-bottom: 25px;
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .support__title--lv2 {
    font-size: 1.6875rem;
    text-align: left;
  }
}
.support__title--lv3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .support__title--lv3 {
    font-size: 1.125rem;
  }
}
.support__dlist {
  line-height: 1.3571428571;
}
.support__dlist dt,
.support__dlist dd {
  display: inline;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .support__dlist dt,
.support__dlist dd {
    font-size: 1rem;
  }
}
.support__dlist dt:not(:first-of-type) {
  margin-left: 1em;
}
.support__list {
  line-height: 1.3571428571;
}
.support__list li {
  display: inline;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .support__list li {
    font-size: 1rem;
  }
}
.support__list li:not(:last-child)::after {
  content: "／";
}
.support__caption {
  margin-top: 0.2em;
  font-size: 0.875rem;
  line-height: 1.3571428571;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .support__caption {
    font-size: 1rem;
  }
}

.tagList__wrapper {
  position: relative;
}
.tagList__wrapper::before, .tagList__wrapper::after {
  position: absolute;
  top: calc(50% - 10.5px);
  z-index: 10;
  width: 21px;
  height: 21px;
  pointer-events: none;
  content: "";
}
@media (min-width: 768px) {
  .tagList__wrapper::before, .tagList__wrapper::after {
    content: none;
  }
}
@keyframes arrow-left {
  from {
    transform: translateX(-5px);
  }
  to {
    transform: translateX(5px);
  }
}
@keyframes fadeout {
  to {
    opacity: 0;
  }
}
.tagList__wrapper::after {
  right: 0;
  background: url(../img/icn_arrow-right.png) no-repeat center/contain;
  animation: arrow-left 1.2s ease infinite, fadeout 0.5s 3s ease forwards;
}

.tagBtn {
  height: 43px;
  padding-right: 15px;
  padding-left: 15px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #706c6c;
  border-radius: 10px;
}
.tagBtn__wrapper {
  display: flex;
  gap: 0 5px;
  padding-right: 15px;
  padding-left: 15px;
  margin-top: 25px;
  margin-right: -15px;
  margin-left: -15px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tagBtn__wrapper::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .tagBtn__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: min(100%, 1080px);
    padding-right: 0;
    padding-left: 0;
    margin-top: 45px;
    margin-right: auto;
    margin-left: auto;
    overflow: unset;
  }
}
.tagBtn__wrapper.noslide {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(100%, 1080px);
  margin-right: auto;
  margin-left: auto;
}
.tagBtn__wrapper .slick-list {
  padding-right: 15px;
  padding-left: 15px;
}
@media (min-width: 768px) {
  .tagBtn__wrapper .slick-list {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media (min-width: 1140px) {
  .tagBtn__wrapper .slick-list {
    padding-right: calc((100svw - 1080px) / 2);
    padding-left: calc((100svw - 1080px) / 2);
  }
}
.tagBtn__wrapper .slick-track {
  gap: 0 5px;
}
@media (min-width: 768px) {
  .tagBtn__wrapper .slick-track {
    gap: 0 8px;
  }
}
.tagBtn__wrapper .slick-arrow {
  width: 21px;
  height: 21px;
}
@media (min-width: 768px) {
  .tagBtn {
    height: 65px;
    padding-right: 20px;
    padding-left: 20px;
    font-size: 1.3125rem;
    border-width: 2px;
    border-radius: 20px;
  }
}
.tagBtn.current, .tagBtn:hover {
  background-color: #dde5f0;
  border-color: transparent;
}
.slick-initialized .tagBtn {
  display: block;
}

.archive__title {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .archive__title {
    margin-top: 60px;
  }
}
.archive__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 768px) {
  .archive__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.btn__wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 25px auto 20px;
}
@media (min-width: 768px) {
  .btn__wrapper {
    gap: 40px;
  }
}
.btn__wrapper .btn--outline {
  margin: 0;
}
.btn--outline--black {
  color: #000;
}