@charset "utf-8";
/* Custom Properties */
:root {
  --color-primary: #1f71ed;
  --color-bgBlue: #ebf3f7;
  --color-bgDarkGray: #e6e6e6;
  --color-bgLightGray: #f3f3f3;
  --color-frame: #e4e4e4;
  --color-border: #d2d2d2;
  --color-mainText: #222;
  --color-subText: #808080;
  --color-white: #fff;
  --color-goo: #c33;
  --color-docomo: #d00e31;
  --color-hot: #e56e17;
  --color-bgHeadline: #ebf3ff;
  --color-bgFollow: #ebf5f3;
  --color-bgFollowDark: #dfe8e6;
  --color-good: #ed1f78;
  --color-placeholder: #b5b5b5;
  --height-navbarSP: 5.8rem;
  --height-navbarPC: 7.6rem;
  --space-small: 1rem;
  --space-inner: 1.4rem;
  --fontSize-small: 1.2rem;
  --fontSize-middle: 1.4rem;
  --fontSize-large: 1.6rem;
  --maxHeight-closedArticleBody: calc(1.7em * 11);
  --maxWidth-topPageContainer: 1696px;
  --maxWidth-commonContainer: 1024px;
  --transition-hover: all .1s ease-in-out;
  --z-index-navbar: 10000;
  --z-index-contextMenu: 9999;
  --z-index-dialog: 10001;
}

/* OverWrite */
html,body {
  font-size: 10px;
  line-height: 1.4;
}

a,
a:visited {
  color: inherit;
}

button {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: inherit;
  cursor: pointer;
  margin: 0;
  padding: 0;
  outline: none;
}

/**********
  Layout
**********/

/* Navbar */
.navbar {
  background: var(--color-white);
  box-shadow: 0 2px 4px 0 rgba(0,0,0,.14);
  box-sizing: border-box;
  margin-bottom: 1.6rem;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-index-navbar);
}
.navbar__inner {
  align-items: center;
  background: var(--color-white);
  display: flex;
  flex-wrap: wrap;
  position: relative;
  justify-content: space-between;
}
.navbar__logo {
  flex-grow: 0;
  order: 0;
  padding: var(--space-small);
  text-align: center;
}
.navbar__btn {
  align-items: center;
  background: 50% 50% no-repeat;
  border-radius: 50%;
  cursor: pointer;
  color: var(--color-mainText);
  display: flex;
  justify-content: center;
  height: 4rem;
  width: 4rem;
}
.navbar__btn__label {
  display: block;
  overflow: hidden;
  height: 0;
  width: 0;
  visibility: hidden;
}
.navbar__btn::after {
  background-color: currentColor;
  background-repeat: no-repeat;
  content: "";
  display: block;
  mask-type: alpha;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.navbar__btn--navi.is-notify {
  position: relative;
}
.navbar__btn--navi.is-notify::before {
  background: url(/topics/img/icon-bell-notify.svg);
  background-size: contain;
  content: "";
  display: block;
  position: absolute;
  top: .6rem;
  right: .4rem;
  height: 1.8rem;
  width: 1.6rem;
  z-index: 1;
}
.navbar__btn--navi.is-active {
  background-color: var(--color-bgLightGray);
}
.navbar__btn--navi::after {
  -webkit-mask-image: url(../img/icon-navi.svg);
  mask-image: url(../img/icon-navi.svg);
  height: 1.6rem;
  width: 1.8rem;
}
.navbar__btn--account::after {
  -webkit-mask-image: url(../img/icon-account.svg);
  mask-image: url(../img/icon-account.svg);
  height: 2.6rem;
  width: 2.6rem;
}
.navbar__btn--account.is-active {
  background-color: var(--color-bgLightGray);
}
.navbar__btn--account.is-active::after {
  color: var(--color-subText);
}
.navbar__btn--account .navbar__btn__name,
.navbar__btn--account .navbar__btn__point {
  display: none;
}

.navbar__navi {
  order: 0;
}
.navbar__navi__inbox {
  box-sizing: border-box;
  display: none;
  font-size: 1.4rem;
  overflow: auto;
  position: absolute;
  top: 100%;
  right: 0;
  max-height: calc(100vh - var(--height-navbarSP));
  max-width: 85vw;
  width: 320px;
  z-index: 2;
}
.navbar__navi__inner {
  animation: slideInRtoL .3s cubic-bezier(0.215, 0.610, 0.355, 1.000);
  background: var(--color-white);
  box-sizing: border-box;
  max-height: 100%;
  overflow: hidden;
  padding-top: 2.4rem;
}
.navbar__navi__item a {
  color: var(--color-mainText);
  display: block;
  font-size: 1.3rem;
  line-height: 1.4;
  padding: 1rem 1.4rem;
}
.navbar__navi__item a:hover {
  text-decoration: none;
}
.navbar__navi__item:last-child {
  margin-bottom: 0;
}
.navbar__navi__copy {
  font-size: 1.6rem;
   line-height: 1;
   padding: 1.6rem 2.4rem;
   text-align: center;
 }
 .navbar__navi__copy + .navbar__navi__copy {
   border-top: 1px solid var(--color-frame);
 }
 .navbar__navi__heading {
   align-items: center;
   color: var(--color-mainText);
   display: flex;
   font-size: var(--fontSize-large);
   font-weight: 600;
   margin-bottom: .8rem;
 }
 .navbar__navi__heading.is-inset {
   margin-left: 1.4rem;
   margin-right: 1.4rem;
 }
 .navbar__navi__headingIcon {
   margin-top: -.1em;
   margin-left: .4rem;
 }
 .navbar__navi__info {
   border-bottom: 1px solid var(--color-frame);
   color: var(--color-mainText);
   padding: 2.4rem 1.6rem;
 }
 .navbar__navi__service {
   padding: 2.4rem 0 1.6rem;
 }
 .navbar__navi__serviceLink {
   align-items: flex-start;
   display: flex;
   padding: 1rem 1.4rem;
 }
 .navbar__navi__serviceLink:hover {
   text-decoration: none;
 }
 .navbar__navi__serviceIcon {
   flex-shrink: 0;
   margin-right: .4rem;
   height: auto;
   width: 30px;
 }
 .navbar__navi__serviceName {
  color: var(--color-mainText);
  flex-grow: 1;
  font-size: 1.5rem;
  line-height: 1.4;
}
.navbar__navi__service + .navbar__navi__service {
  padding-top: 1.6rem;
  position: relative;
}
.navbar__navi__service + .navbar__navi__service::before {
  border-top: 1px dashed var(--color-frame);
  content: "";
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 2.4rem;
  height: 0;
  width: calc(100% - 2.4rem * 2);
}
.navbar__navi__foot {
  background: var(--color-bgLightGray);
  border-top: 1px solid var(--color-frame);
  border-bottom: 1px solid var(--color-frame);
  padding: 1.6rem 0 .6rem;
}
.navbar__navi__footHead {
  color: var(--color-mainText);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 1.4rem .8rem;
}
.navbar__tools {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 0;
  padding: var(--space-small);
  padding-left: 0;
  position: relative;
  justify-content: flex-end;
  height: var(--height-navbarSP);
}
.navbar__category {
  box-sizing: border-box;
  padding: 0 0 var(--space-small);
  overflow: auto;
  scrollbar-width: none;
  width: 100%;
}
.navbar__category::-webkit-scrollbar {
  display: none;
}
.navbar__category__list {
  display: flex;
  flex-shrink: 0;
}
.navbar__category__item {
  flex-shrink: 0;
  font-size: 1.4rem;
  margin-right: .6rem;
}
.navbar__category__item .btn.btn--pill {
  min-width: 6rem;
}
.navbar__category__item:last-child {
  margin-right: 0;
}
.navbar__bg {
  animation: fadeIn .3s ease-in-out;
  background: rgba(0, 0, 0, .5);
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  height: calc(100vh - var(--height-navbarSP));
  width: 100vw;
  z-index: 1;
}
.navbar.is-active .navbar__bg,
.navbar.is-active .navbar__navi__inbox {
  display: block;
}
.navbar__account {
  margin-left: .8rem;
  position: relative;
}
.navbar__account__inbox {
  background: var(--color-white);
  border: 1px solid var(--color-frame);
  border-radius: 3px;
  box-shadow: 0 0 4px 0 rgba(0,0,0,.07);
  box-sizing: border-box;
  display: none;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: auto;
  padding: 2.4rem 1.6rem;
  position: absolute;
  top: 100%;
  right: 0;
  max-width: calc(100vw - var(--space-small) * 2 - 4.5rem);
  max-height: calc(100vh - var(--height-navbarPC));
  width: 320px;
}
.navbar__account__inbox.is-active {
  display: flex;
}
.navbar__account__btn {
  display: flex;
  font-size: 1.2rem;
  justify-content: flex-end;
  margin-top: 2rem;
  width: 100%;
}
.navbar__account__btn + .navbar__account__btn {
  margin-top: 1.4rem;
}
.navbar__account__name {
  align-items: center;
  display: flex;
  font-size: 1.4rem;
}
.navbar__account__name:hover {
  text-decoration: none;
}
.navbar__account__name::before {
  background: url(../img/icon-account-fill.svg) 50% 50% no-repeat;
  background-size: contain;
  content: "";
  flex-shrink: 0;
  margin-right: .6rem;
  height: 2rem;
  width: 2rem;
}
.navbar__account__name span {
  line-height: 1;
  margin-top: .1rem;
}
.navbar__account__name i {
  font-size: 1.2rem;
  font-style: normal;
  margin-left: .2rem;
}
.navbar__account__point {
  align-items: baseline;
  display: flex;
  font-size: 1.2rem;
  margin-left: auto;
}
.navbar__account__point::before {
  align-self: center;
  background: url(/topics/img/icon-dpoint.svg) 50% 50% no-repeat;
  background-size: contain;
  content: "";
  margin-right: .6rem;
  height: 1.6rem;
  width: 1.6rem;
}
.navbar__account__point__number {
  font-size: 1.4rem;
  font-weight: 700;
}
.navbar__account__login {
  margin-right: .7rem;
}
.navbar__account__login .btn.btn--primary {
  font-size: 1.2rem;
  padding: .8rem 1.2rem;
}
.navbar__account__setting {
  border-top: 1px solid var(--color-frame);
  color: var(--color-mainText);
  flex-grow: 1;
  margin-top: 2rem;
  padding-top: 2rem;
}
.navbar__account__settingTtl {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: .8rem;
}
.navbar__account__settingLink {
  align-items: flex-start;
  display: flex;
  font-size: 1.4rem;
  line-height: 1.4;
  padding: 1rem 1rem 1rem 0;
}
.navbar__account__settingLink:hover {
  text-decoration: none;
}
.navbar__account__settingLink img {
  flex-shrink: 0;
  margin-right: .4rem;
  height: 20px;
  width: 30px;
}
.navbar__search {
  border: 1px solid var(--color-subText);
  border-radius: 10rem;
  display: flex;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 0;
  max-width: 28rem;
}
.navbar__search__input {
  background: transparent;
  border: 0;
  box-sizing: border-box;
  color: var(--color-mainText);
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 0;
  font-size: 1.2rem;
  line-height: 1;
  padding: .9rem 1.4rem;
  height: 3rem;
  width: 0;
}
.navbar__search__input:active,
.navbar__search__input:focus,
.navbar__search__input:focus-visible {
  outline: none;
}
.navbar__search__input::placeholder {
  color: var(--color-placeholder);
}
.navbar__search__submit {
  align-items: center;
  border: 0;
  color: var(--color-subText);
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  width: 4rem;
}
.navbar__search__submit i {
  overflow: hidden;
  height: 0;
  width: 0;
  visibility: hidden;
}
.navbar__search__submit::before {
  background-color: currentColor;
  background-repeat: no-repeat;
  -webkit-mask-image: url(/topics/img/icon-search.svg);
  mask-image: url(/topics/img/icon-search.svg);
  -webkit-mask-type: alpha;
  mask-type: alpha;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  content: "";
  display: block;
  height: 1.6rem;
  width: 1.6rem;
}
.navbar__categoryWrapper {
  overflow: hidden;
  margin: 0 var(--space-small);
}
.navbar__category__prev,
.navbar__category__next {
  display: none;
}
@media (max-width: 1023px) {
  .navbar__btn--navi.is-active::after {
    color: var(--color-subText);
    -webkit-mask-image: url(../img/icon-close.svg);
    mask-image: url(../img/icon-close.svg);
  }
}
@media (min-width: 1024px) {
  .navbar__logo {
    padding: 0;
  }
  .navbar__logo img {
    height: 3.2rem;
    width: 6.2rem;
  }
  .navbar__inner {
    box-sizing: border-box;
    flex-wrap: nowrap;
    padding: 1.4rem 2.4rem;
    height: var(--height-navbarPC);
  }
  .navbar__btn {
    transition: var(--transition-hover);
  }
  .navbar__btn:hover,
  .navbar__btn.is-active {
    background-color: var(--color-bgDarkGray);
  }
  .navbar__btn--navi {
    height: 4rem;
    width: 4rem;
  }
  .navbar__btn--navi.is-notify::before {
    right: .2rem;
  }
  .navbar__btn--setting {
    height: 4rem;
    width: 4rem;
  }
  .navbar__btn--account {
    border-radius: 3rem;
    padding: 0 .8rem;
    height: 4rem;
    width: auto;
  }
  .navbar__btn--account.is-active::after {
    color: var(--color-mainText);
  }
  .navbar__btn--account .navbar__btn__name,
  .navbar__btn--account .navbar__btn__point {
    display: block;
    order: 1;
  }
  .navbar__btn--account .navbar__btn__point__number {
    display: inline-flex;
    font-size: 1.4rem;
    font-weight: 700;
    margin-left: .8rem;
    margin-right: .2rem;
    vertical-align: middle;
  }
  .navbar__btn--account .navbar__btn__point__number::before {
    background: url(../img/icon-dpoint.svg) 50% 50% no-repeat;
    background-size: contain;
    content: "";
    flex-shrink: 0;
    margin-right: .3rem;
    height: 1.6rem;
    width: 1.6rem;
  }
  .navbar__btn--account::after {
    height: 2.5rem;
    width: 2.5rem;
    order: 0;
  }
  .navbar__tools {
    flex-direction: row;
    flex-shrink: 0;
    justify-content: flex-end;
    order: 2;
    height: auto;
    padding: 0;
    position: static;
  }
  .navbar__account {
    align-items: center;
    display: flex;
    font-size: 1.4rem;
    margin-left: 1.5rem;
    position: relative;
  }
  .navbar__account__inbox {
    top: calc(100% + .8rem);
  }
  .navbar__account__login {
    margin-right: 1.4rem;
  }
  .navbar__account__login .btn.btn--primary {
    font-size: 1.4rem;
    padding: 1.2rem 1.7rem;
  }
  .navbar__account__btn {
    font-size: 1.3rem;
  }
  .navbar__account__btn + .navbar__account__btn {
    margin-top: 1.2rem;
  }
  .navbar__account__name {
    font-size: 1.6rem;
    transition: var(--transition-hover);
  }
  .navbar__account__name i {
    font-size: 1.4rem;
  }
  .navbar__account__name:hover {
    opacity: .8;
  }
  .navbar__account__point::before {
    height: 2rem;
    width: 2rem;
  }
  .navbar__account__point__number {
    font-size: 1.6rem;
  }
  .navbar__account__settingLink {
    font-size: 1.6rem;
    padding: 1rem .8rem;
  }
  .navbar__account__settingLink:hover {
    background-color: var(--color-bgLightGray);
  }
  .navbar__category {
    display: flex;
    padding: 0;
    order: 1;
    width: auto;
  }
  .navbar__category__item .btn.btn--pill {
    padding: 1.1rem 1.9rem;
    min-width: 8.2rem;
  }
  .navbar__category__item .btn.btn--pill:hover {
  	cursor:pointer;
  }
  .navbar__navi {
    margin-left: .8rem;
  }
  .navbar__navi__inbox {
    max-height: calc(100vh - var(--height-navbarPC));
    width: 36rem;
  }
  .navbar__navi__item a {
    display: block;
    font-size: 1.4rem;
    padding: 1rem 2.4rem;
    transition: var(--transition-hover);
  }
  .navbar__navi__item a:hover {
    background-color: var(--color-bgDarkGray);
  }
  .navbar__navi__copy {
    font-size: 1.6rem;
  }
  .navbar__navi__heading.is-inset {
    margin-left: 2.4rem;
    margin-right: 2.4rem;
  }
  .navbar__navi__serviceLink {
    padding: 1rem 2.4rem;
    transition: var(--transition-hover);
  }
  .navbar__navi__serviceLink:hover {
    background-color: var(--color-bgLightGray);
  }
  .navbar__navi__foot {
    padding: 2.4rem 0;
  }
  .navbar__navi__footHead {
    font-size: var(--fontSize-large);
    margin: 0 2.4rem .8rem;
  }
  .navbar__bg {
    height: calc(100vh - var(--height-navbarPC));
  }
  .navbar__search {
    background-color: var(--color-subText);
    overflow: hidden;
  }
  .navbar__search__input {
    background-color: var(--color-white);
    font-size: 1.4rem;
    min-width: 15rem;
    padding: 1.2rem 1.6rem;
    height: 3.8rem;
  }
  .navbar__search__submit {
    background-color: var(--color-subText);
    color: var(--color-white);
    cursor: pointer;
    width: 4.6rem;
  }
  .navbar__search__submit::before {
    height: 1.8rem;
    width: 1.8rem;
  }
  .navbar__categoryWrapper {
    margin: 0 3rem;
    position: relative;
  }
  .navbar__category__prev,
  .navbar__category__next {
    background: rgba(0, 0, 0, .4) url(../img/icon-arrow-w.svg) 50% 50% no-repeat;
    background-size: 10px auto;
    display: none;
    overflow: hidden;
    position: absolute;
    top: 0;
    height: 100%;
    text-indent: -99rem;
    width: 2.6rem;
  }
  .navbar__category__prev.is-active,
  .navbar__category__next.is-active {
    display: block;
  }
  .navbar__category__prev {
    left: 0;
    transform: scaleX(-1);
  }
  .navbar__category__next {
    right: 0;
  }
}
@media (min-width: 1696px) {
  .navbar__categoryWrapper {
    margin-left: 6.6rem;
    margin-right: 6.6rem;
  }
}
/* Container */
.container {
  margin-left: auto;
  margin-right: auto;
}
.container--topPage {
  max-width: var(--maxWidth-topPageContainer);
}
.container--common {
  max-width: var(--maxWidth-commonContainer);
}
@media (min-width: 769px) {
  .container {
    box-sizing: border-box;
    padding-left: 1.4rem;
    padding-right: 1.4rem;
    width: 100%;
  }
}

/* ContainerMenu */
.containerMenu {
  background: var(--color-white);
  border-top: 1px solid var(--color-frame);
  border-bottom: 1px solid var(--color-frame);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-index-contextMenu);
}
.containerMenu__title {
  display: none;
}
.containerMenu__list {
  display: flex;
  font-size: 1.2rem;
  height: 5.6rem;
}
.containerMenu__item {
  display: flex;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 0;
  position: relative;
}
.containerMenu__item::before {
  background: var(--color-frame);
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 3.2rem;
  width: 1px;
}
.containerMenu__item:first-child:before {
  display: none;
}
.containerMenu__link {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.containerMenu__link:hover {
  text-decoration: none;
}
.containerMenu__link::before {
  background: 50% 50% no-repeat;
  background-size: contain;
  content: "";
  display: block;
  margin-right: .6rem;
  height: 1.8rem;
  width: 1.8rem;
}
.containerMenu__link.is-follow::before {
  background-image: url(../img/icon-setting-follow.svg);
}
.containerMenu__link.is-hashTag::before {
  background-image: url(../img/icon-setting-hashTag.svg);
}
.containerMenu__link.is-current {
  color: var(--color-primary);
}
.containerMenu__link.is-follow.is-current::before {
  background-image: url(../img/icon-setting-follow-active.svg);
}
.containerMenu__link.is-hashTag.is-current::before {
  background-image: url(../img/icon-setting-hashTag-active.svg);
}
@media (max-width: 1023px) {
  body:has(.containerMenu:not(.is-pcOnly)) {
    padding-bottom: 5.6rem;
  }
  .containerMenu.is-pcOnly {
    display: none;
  }
}
@media (min-width: 1024px) {
  .containerMenu {
    border: 0;
    position: static;
    flex-shrink: 0;
    flex-grow: 1;
    flex-basis: 258px;
    max-width: 258px;
  }
  .containerMenu__inner {
    padding-left: 3rem;
  }
  .containerMenu__title {
    display: block;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 3.2rem;
    margin-bottom: 1.6rem;
  }
  .containerMenu__list {
    display: block;
    font-size: 1.6rem;
    height: auto;
  }
  .containerMenu__item {
    align-items: flex-start;
    padding: 1.6rem 0;
  }
  .containerMenu__item::before {
    display: none;
  }
  .containerMenu__link {
    justify-content: flex-start;
    transition: var(--transition-hover);
    width: auto;
  }
  .containerMenu__link:hover {
    opacity: .8;
  }
  .containerMenu__link.is-current {
    font-weight: 600;
  }
  .containerMenu__link::before {
    margin-right: 1rem;
    height: 2rem;
    width: 2rem;
  }
}

/* containerWrapper */
@media (min-width: 1024px) {
  .containerWrapper {
    display: flex;
    flex-direction: row-reverse;
  }
  .containerWrapper.is-pseudo3col::before {
    content: "";
    display: block;
    flex-grow: 1;
    max-width: 258px;
  }
  .containerWrapper:has(.commonTitle) {
    margin-top: -1.6rem;
  }
}

/* Footer */
.footer {
  margin-top: 7.3rem;
  text-align: center;
}
.footer__copy {
  background: var(--color-bgLightGray);
  border-top: 1px solid var(--color-frame);
  font-size: 1.6rem;
  padding: 2.2rem;
}
.footer__ci {
  background: var(--color-white);
  padding: 3.2rem;
}

/********************
 Component
********************/
/* Btn */
.btn {
  background: var(--color-bgLightGray);
  border: 1px solid transparent;
  box-sizing: border-box;
  color: var(--color-mainText)!important;
  display: inline-block;
  font-size: inherit;
  font-weight: 400;
  padding: .5em 1.6rem;
  text-align: center;
  vertical-align: top;
}
.btn:hover {
  text-decoration: none;
}
.btn.btn--pill {
  border-radius: 3em;
  line-height: 1;
  padding: .5em 1.5rem;
}
.btn.btn--active {
  background-color: var(--color-primary);
  color: var(--color-white)!important;
  font-weight: 600;
}
.btn.btn--primary {
  background-color: var(--color-primary);
  border-radius: 8px;
  color: var(--color-white)!important;
  font-weight: 700;
  padding: 1.4rem;
  text-align: center;
  width: 100%;
}
.btn.btn--submit {
  background: var(--color-mainText);
  border-radius: 4px;
  color: var(--color-white)!important;
}
.btn.btn--invert {
  background-color: transparent;
}
.btn.btn--outline {
  background: var(--color-white);
  border: 1px solid var(--color-primary);
  border-radius: 8px;
  color: var(--color-primary)!important;
  text-align: center;
  width: 100%;
}
.btn.btn--login {
  background-color: var(--color-docomo);
  border-color: var(--color-docomo);
  border-radius: 5px;
  color: var(--color-white)!important;
  font-weight: 600;
  padding: .734em 1em;
  text-align: center;
  width: 100%;
}
.btn.btn--logout {
  background-color: var(--color-bgLightGray);
  border-color: var(--color-frame);
  border-radius: 5px;
  padding: .734em 1em;
  text-align: center;
  width: 100%;
}
.btn.btn--appeal {
  background-color: var(--color-white);
  border-color: var(--color-mainText);
  border-radius: 5px;
  padding: .734em 1em;
  text-align: center;
  width: 100%;
}
.btn.btn--simple {
  align-items: center;
  background: var(--color-white);
  border: 1px solid var(--color-subText);
  border-radius: 5px;
  color: var(--color-mainText)!important;
  display: flex;
  font-size: 1.2rem;
  justify-content: center;
  line-height: 1;
  padding: 1.2rem;
  text-align: center;
}
.btn.btn--hasRadio {
  align-items: center;
  background: var(--color-white);
  border: 1px solid var(--color-subText);
  border-radius: 10rem;
  display: flex;
  font-size: 1.2rem;
  justify-content: center;
  line-height: 1;
  overflow: hidden;
  padding: 1.2rem;
  position: relative;
  text-align: center;
}
.btn.btn--hasRadio input {
  position: absolute;
  right: 100%;
  bottom: 100%;
}
.btn.btn--hasRadio:has(input:checked) {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white)!important;
}
.btn.btn--hasRadio:has(input:checked)::before {
  background: var(--color-white) url(../img/icon-check.svg) 50% 50% no-repeat;
  background-size: contain;
  border-radius: 50%;
  content: "";
  display: block;
  margin-right: .6rem;
  height: 1.4rem;
  width: 1.4rem;
}
.btn.btn--dpointClub {
  align-items: center;
  background: var(--color-white);
  border: 1px solid var(--color-mainText);
  border-radius: 100px;
  display: flex;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  justify-content: center;
  line-height: 1.2;
  padding: 1.2rem 1.6rem;
  width: 100%;
}
.btn.btn--dpointClub::before {
  background: url(../img/icon-dpoint.svg) 50% 50% no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 1.6rem;
  width: 1.6rem;
}
@media (max-width: 768px) {
  .btn.btn--invert {
    overflow: visible;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 769px) {
  .btn {
    transition: var(--transition-hover);
  }
  .btn:hover {
    text-decoration: none;
  }
  .btn.btn--pill:hover {
    background-color: var(--color-bgDarkGray);
  }
  .btn.btn--active:hover {
    background-color: var(--color-primary);
  }
  .btn.btn--primary {
    background-color: var(--color-primary);
  }
  .btn.btn--primary:hover {
    opacity: .8;
  }
  .btn.btn--submit {
    background: var(--color-mainText);
  }
  .btn.btn--invert:hover {
    background-color: var(--color-bgLightGray);
  }
  .btn.btn--outline:hover {
    background-color: var(--color-white);
    opacity: .8;
  }
  .btn.btn--login:hover {
    opacity: .8;
  }
  .btn.btn--logout:hover {
    background-color: var(--color-bgDarkGray);
  }
  .btn.btn--appeal:hover {
    opacity: .8;
  }
  .btn.btn--simple:hover,.btn.btn--hasRadio:not(:has(input:checked)):hover {
    opacity: .8;
  }
  .btn.btn--dpointClub {
    font-size: 1.4rem;
  }
  .btn.btn--dpointClub:hover {
    opacity: .8;
  }
}

/* Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.3rem;
  line-height: 1.7;
  margin-top: -.4rem;
  margin-bottom: 1.6rem;
}
.tags__tag:not(:last-child) {
  margin-right: 1.4rem;
}
.tags__tag {
  color: var(--color-primary);
}
.tags__tag::before {
  content: "#";
}
.tags__tag a {
  color: inherit;
}
@media (min-width: 769px) {
  .tags {
    font-size: 1.6rem;
    margin-top: -.25rem;
    margin-bottom: 2.15rem;
  }
  .tags__tag:not(:last-child) {
    margin-right: 1.6rem;
  }
}

/* tagsHistory */
.tagsHistory {
  align-items: center;
  background: var(--color-bgLightGray);
  box-sizing: border-box;
  display: flex;
  font-size: 1.3rem;
  margin: 0 0 1.5rem;
  padding: .7rem 1.4rem;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}
.tagsHistory__title,
.tagsHistory__setting {
  flex-shrink: 0;
}
.tagsHistory__title {
  font-weight: 600;
  margin-right: .8rem;
}
.tagsHistory__setting {
  margin-left: 1.4rem;
  position: relative;
  text-decoration: underline;
}
.tagsHistory__setting::after {
  content: "";
  display: block;
  padding: .7rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  height: 100%;
  width: 100%;
}
.tagsHistory__inner {
  align-items: center;
  display: flex;
  flex-grow: 1;
  overflow: auto;
  scrollbar-width: none;
  padding: .7rem 0;
}
.tagsHistory__inner::-webkit-scrollbar {
  display: none;
}
.tagsHistory__list {
  display: flex;
  flex-grow: 1;
  font-size: 1.3rem;
}
.tagsHistory__list li {
  flex-shrink: 0;
  margin-right: .6rem;
  position: relative;
}
.tagsHistory__list li:last-child {
  margin-right: 0;
}
.tagsHistory__list a {
  align-items: center;
  background: var(--color-white);
  border: 1px solid var(--color-frame);
  border-radius: 3rem;
  box-sizing: border-box;
  display: flex;
  padding: .3rem .8rem;
  padding-right: 3.2rem;
  min-height: 2.8rem;
}
.tagsHistory__txt {
  display: block;
  line-height: 1.154;
  max-width: 14.7rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tagsHistory__list a:hover {
  text-decoration: none;
}
.tagsHistory__list a::before {
  content: "#";
}
.tagsHistory__delete {
  box-sizing: content-box;
  display: block;
  font-size: 0px;
  overflow: hidden;
  text-indent: -100rem;
  padding: 0 .8rem;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1.6rem;
}
.tagsHistory__delete::before {
  background: var(--color-frame);
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: .8rem;
  transform: translateY(-50%);
  height: 1.6rem;
  width: 1.6rem;
}
.tagsHistory__delete::after {
  background: url(../img/icon-close.svg) 50% 50% no-repeat;
  background-size: .8rem .8rem;
  content: "";
  position: absolute;
  top: 50%;
  right: .8rem;
  transform: translateY(-50%);
  height: 1.6rem;
  width: 1.6rem;
}
@media (max-width: 768px) {
  body:has(.tagsHistory) .navbar {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .tagsHistory {
    border-radius: 8px;
  }
}
@media (min-width: 1024px) {
  .tagsHistory {
    padding: .4rem 1.6rem;
  }
  .tagsHistory__list a:hover,
  .tagsHistory__delete:hover {
    opacity: .7;
  }
  .tagsHistory__setting:hover {
    text-decoration: none;
  }
  .tagsHistory__inner {
    padding: .4rem 0;
  }
}

/* Icon */
.icon--more::after {
  color: inherit;
  background-color: currentColor;
  background-repeat: no-repeat;
  content: "";
  display: block;
  margin-left: .8rem;
  mask-type: alpha;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: url(../img/icon-more.svg);
  mask-image: url(../img/icon-more.svg);
  height: .6rem;
  width: 1.1rem;
}
.icon--new,
.icon--hot {
  border-radius: 3rem;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  margin-left: .6rem;
  padding: .45rem .8rem;
  transform: scale(.8);
  transform-origin: 0 50%;
}
.icon--new {
  background: var(--color-goo);
}
.icon--hot {
  background: var(--color-hot);
}
.icon--follow {
  background: var(--color-mainText) url(../img/icon-plus.svg) 50% 50% no-repeat;
  background-size: .8em;
  border-radius: .2em;
  display: inline-block;
  margin-bottom: -.15em;
  vertical-align: baseline;
  height: 1em;
  width: 1em;
}

/* Alert */
.alert {
  border: 1px solid var(--color-frame);
  font-size: var(--fontSize-middle);
  line-height: 1.4;
  margin: 0 var(--space-small) 1.4rem;
  padding: var(--space-small) 1.2rem;
}
.alert a {
  text-decoration: underline;
}
@media (min-width: 769px) {
  .alert {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Thumb */
.thumb {
  align-items: center;
  background: var(--color-bgLightGray);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.thumb__image {
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.thumb__image--auto {
  height: auto;
  width: auto;
}

/* Main */
.main {
}

/* Card */
.card {
  background: #fff;
  border-bottom: 1px solid var(--color-frame);
  box-sizing: border-box;
  padding: var(--space-inner);
  position: relative;
  z-index: unset;
}
.card__text {
  font-size: var(--fontSize-middle);
}
.card__title {
  font-size: var(--fontSize-large);
  font-weight: 600;
}
.card__title__sub {
  font-size: var(--fontSize-small);
  font-weight: 400;
  margin-left: .6rem;
  vertical-align: middle;
}
.card__more {
  font-size: var(--fontSize-middle);
  margin-top: var(--space-small);
  text-align: right;
}
.card--news {
  /*animation: fadeIn 1s cubic-bezier(0.230, 1.000, 0.320, 1.000);*/
  padding-bottom: .8rem;
}
.card--headline {
  background-color: var(--color-bgHeadline);
}
.card--follow {
  background-color: var(--color-bgFollow);
}
@media (min-width: 769px) {
  .cardList {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1.2rem;
    margin-right: -1.2rem;
  }
  .card {
    flex-shrink: 0;
    margin: 0 1.2rem 3.2rem;
    padding: 0;
    width: calc(50% - (1.2rem * 2));
  }
  .card--news {
    padding-bottom: .8rem;
  }
  .card--follow {
    border-radius: 8px 8px 0 0;
    padding: 1.2rem 1.4rem;
  }
  .card--sizeW {
    width: calc(100% - (1.2rem * 2));
  }
  .card--headline {
    border-radius: 8px;
    padding: 2.4rem 1.8rem;
  }
  .cardList--3col .card {
    width: calc(33.33% - (1.2rem * 2));
  }
}
@media (min-width: 1024px) {
  .card {
    width: calc(33.33% - (1.2rem * 2));
  }
  .card--sizeW {
    width: calc(100% - (1.2rem * 2));
  }
}
@media (min-width: 1168px) {
  .card {
    width: calc(25% - (1.2rem * 2));
  }
  .card--sizeW {
    width: calc(75% - (1.2rem * 2));
  }
}
@media (min-width: 1480px) {
  .card {
    width: calc(20% - (1.2rem * 2));
  }
  .card--sizeW {
    width: calc(60% - (1.2rem * 2));
  }
  .card__text {
    font-size: 1.6rem;
  }
}

/* Headline */
.headline__heading {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: .8rem;
}
.headline__heading__sub {
  font-size: 1.2rem;
  font-weight: 400;
  margin-left: .6rem;
}
.headline__pickup {
  border-bottom: 1px solid var(--color-frame);
  padding-bottom: var(--space-small);
  position: relative;
}
.headline__pickup:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.headline__pickup .thumb {
  background: var(--color-white);
  margin: 0 0 var(--space-small);
  height: 19.55rem;
  width: 100%;
}
.headline__pickup__thumb img {
  height: auto;
  width: 100%;
}
.headline__pickup__title {
  color: var(--color-mainText);
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.headline__pickup__title:hover {
  text-decoration: none;
}
.headline__pickup__title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.headline__pickup__foot {
  align-items: center;
  color: var(--color-subText);
  display: flex;
  font-size: 1.2rem;
  margin-top: .8rem;
}
.headline__list__item {
  border-top: 1px dashed var(--color-border);
  margin: 0 0 var(--space-small);
  padding: var(--space-small) 0 0;
}
.headline__list__item:last-child {
  margin-bottom: 0;
}
.headline__list__inbox {
  display: flex;
  position: relative;
}
.headline__list__item .thumb {
  flex-shrink: 0;
  margin-left: var(--space-small);
  height: 67.5px;
  width: 120px;
}
.headline__list__detail {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}
.headline__list__title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break:break-all;
}
.headline__list__title:hover {
  text-decoration: none;
}
.headline__list__title::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.headline__list__foot {
  align-items: center;
  display: flex;
}
.headline__list__date {
  color: var(--color-subText);
  font-size: 1.2rem;
}
.headline__list ~ .headline__list {
  margin-top: var(--space-small);
}
@media (min-width: 1024px) {
  .headline {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .headline__heading {
    flex-shrink: 0;
    width: 100%;
  }
  .headline__pickup {
    border: 0;
    padding: 0;
    position: relative;
    transition: var(--transition-hover);
    width: 28.8%;
  }
  .headline__pickup:hover {
    opacity: .8;
  }
  .headline__pickup .thumb {
    margin-bottom: .6rem;
    height: 15.75rem;
  }
  .headline__pickup__title {
    font-size: 1.8rem;
    margin: 0 .8rem 1.25rem;
  }
  .headline__pickup__foot {
    margin: 0 .8rem;
  }
  .headline__list {
    width: 34.15%;
  }
  .headline__list__item {
    padding-top: 1.4rem;
    margin-bottom: 1.4rem;
  }
  .headline__list__item:first-child {
    border-top: 0;
    padding-top: 0;
  }
  .headline__list__inbox {
    transition: var(--transition-hover);
  }
  .headline__list__inbox:hover {
    opacity: .8;
  }
  .headline__list__item .thumb {
    height: 7.2rem;
    width: 12.8rem;
  }
  .headline__list__title {
    font-size: 1.6rem;
  }
  .headline__list__date {
    font-size: 1.1rem;
  }
  .headline__list ~ .headline__list {
    margin-top: 0;
  }
}
/* Size conditionals for headlines */
@media (min-width: 1024px) {
  .card--headline:not(:has(.headline__list + .headline__list)) {
    width: calc(66.66% - (1.2rem * 2));
  }
  .card--headline:not(:has(.headline__list + .headline__list)) .headline__pickup {
    width: 44.6%;
  }
  .card--headline:not(:has(.headline__list + .headline__list)) .headline__list {
    width: 52.8%;
  }
  .card--headline:not(:has(.headline__pickup + .headline__list)) {
    width: calc(33.33% - (1.2rem * 2));
  }
  .card--headline:not(:has(.headline__pickup + .headline__list)) .headline__pickup {
    width: 100%;
  }
}
@media (min-width: 1168px) {
  .card--headline:not(:has(.headline__list + .headline__list)) {
    width: calc(50% - (1.2rem * 2));
  }
  .card--headline:not(:has(.headline__pickup + .headline__list)) {
    width: calc(25% - (1.2rem * 2));
  }
}
@media (min-width: 1480px) {
  .card--headline:not(:has(.headline__list + .headline__list)) {
    width: calc(40% - (1.2rem * 2));
  }
  .card--headline:not(:has(.headline__pickup + .headline__list)) {
    width: calc(20% - (1.2rem * 2));
  }
}
/* News */
.news--new::after,
.news--hot::after {
  border-radius: 3rem;
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
  position: absolute;
  top: calc( var(--space-inner) + var(--space-small));
  left: calc( var(--space-inner) + var(--space-small));
  padding: .45rem .8rem;
}
.news--new::after {
  background: var(--color-goo);
  content: "NEW";
}
.news--hot::after {
  background: var(--color-hot);
  content: "HOT";
}
.news .thumb {
  margin-bottom: 1.4rem;
  aspect-ratio: 16/9;
}
.news__title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: .8rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.news__title:hover {
  text-decoration: none;
}
.news__title::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.news__data {
  align-items: center;
  color: var(--color-subText);
  display: flex;
  font-size: var(--fontSize-small);
}
.news__data__category {
  flex-shrink: 0;
}
.news__data__category .btn {
  border: 0;
  font-size: 1.3rem;
}
.news__data__name {
  font-size: 1.3rem;
  margin-left: 1.6rem;
}
.news__data a {
  position: relative;
  z-index: 2;
}
.news__foot {
  align-items: center;
  display: flex;
  font-size: 1.3rem;
  justify-content: space-between;
  margin-top: .8rem;
}
.news__foot .reaction__btns {
  position: relative;
  z-index: 2;
}
.news__tools {
  display: flex;
}
.news__date {
  color: var(--color-subText);
}
.news__pr {
  align-items: center;
  color: var(--color-subText);
  display: flex;
  font-size: 1.4rem;
  min-height: 3.4rem;
}
.news__pr .pr {
  border: 1px solid var(--color-subText);
  border-radius: 2px;
  color: var(--color-subText);
  display: block;
  font-size: 1rem;
  line-height: 1;
  margin-right: .6rem;
  padding: .4rem .7rem;
}
@media (min-width: 769px) {
  .news {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .news__inbox {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: space-between;
  }
  .news__data {
    margin-bottom: auto;
  }
  .news__data__name {
    margin-left: .4rem;
  }
  .news__title::after {
    transition: var(--transition-hover);
  }
  .news__title:hover::after {
    background: rgba(255,255,255,.2);
  }
  .news__pr {
    min-height: 3rem;
  }
  .news__pr .pr {
    border-radius: 5px;
    padding: .4rem .6rem;
  }
  .news--new::after, .news--hot::after {
    top: var(--space-small);
    left: var(--space-small);
  }
}

/* Follow */
.follow:not(:first-child) {
  margin-top: .8rem;
}
.follow__btn__name::before {
  content: "#";
}
.follow__list--hidden {
  display: none!important;
}
.follow--vertical .follow__list__item {
  border-bottom: 1px dashed var(--color-border);
  margin: 0;
  overflow: hidden;
}
.follow--vertical .follow__list__item:last-child {
  border-bottom-width: 0;
}
.follow--vertical .follow__btn {
  align-items: center;
  background: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  overflow: hidden;
  padding: .8rem;
  width: 100%;
}
.follow--vertical .follow__btn__name {
  display: block;
  flex-grow: 1;
  font-size: 1.4rem;
  margin: 0;
  min-height: 0;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.follow--vertical .follow__btn__label {
  align-items: center;
  background: var(--color-mainText);
  border: 1px solid transparent;
  border-radius: 3em;
  box-sizing: border-box;
  color: var(--color-white);
  display: flex;
  font-size: 1.2rem;
  justify-content: center;
  line-height: 1;
  padding: .6rem .7rem;
  white-space: nowrap;
  min-width: 7.8rem;
}
.follow--vertical .follow__btn__label::after {
  background: url(../img/icon-plus.svg) 50% 50% no-repeat;
  content: "";
  display: block;
  margin-left: .4rem;
  height: 1rem;
  width: 1rem;
}
.follow--vertical .follow__btn--followed .follow__btn__label {
  background: var(--color-bgBlue);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}
.follow--vertical .follow__btn--followed .follow__btn__label::after {
  display: none;
}
.follow--horizontal {
  position: relative;
}
.follow--horizontal .follow__inner {
  /* margin-left: calc(var(--space-inner) * -1);
  margin-right: calc(var(--space-inner) * -1);
  padding-left: var(--space-inner);
  padding-right: var(--space-inner); */
  overflow: auto;
  display: flex;
}
.follow--horizontal .follow__list {
  display: flex;
  flex-shrink: 0;
  margin-right: .8rem;
}
.follow--horizontal .follow__list:last-child {
  margin-right: 0;
}
.follow--horizontal .follow__list__item {
  display: flex;
  margin-right: .8rem;
  padding-bottom: 2px;
}
.follow--horizontal .follow__list__item:last-child {
  margin-right: 0;
}
.follow--horizontal .follow__btn {
  align-items: center;
  background: var(--color-white);
  box-sizing: border-box;
  box-shadow: 2px 2px 4px 0px rgba(0,0,0,.04);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.6rem;
  min-width: 13rem;
}
.follow--horizontal .follow__btn--white {
  background: var(--color-white);
}
.follow--horizontal .follow__btn--gray {
  background: var(--color-bgLightGray);
}
.follow--horizontal .follow__btn__name {
  align-items: center;
  display: flex;
  font-size: 1.4rem;
  flex-grow: 1;
  justify-content: center;
  margin-bottom: 1rem;
  word-break: break-all;
  min-height: 4.4rem;
}
.follow--horizontal .follow__btn__label {
  align-items: center;
  background: var(--color-mainText);
  border: 1px solid var(--color-mainText);
  border-radius: 3em;
  color: var(--color-white);
  display: flex;
  font-size: 1.2rem;
  line-height: 1;
  padding: .6rem .7rem;
  white-space: nowrap;
}
.follow--horizontal .follow__btn__label::after {
  background: url(../img/icon-plus.svg) 50% 50% no-repeat;
  content: "";
  display: block;
  margin-left: .4rem;
  height: 1rem;
  width: 1rem;
}
.follow--horizontal .follow__btn--followed .follow__btn__label {
  background: var(--color-bgBlue);
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.follow--horizontal .follow__btn--followed .follow__btn__label::after {
  display: none;
}
.follow--horizontal .follow__more {
  margin-top: 1.6rem;
}
.follow--pcTopSlider .follow__pager {
  margin: 0;
}
.follow--pcTopSlider .follow__pager__bullet {
  display: none;
}
.follow--pcTopSlider .follow__more {
  margin-top: 1.6rem;
}
.follow__pager {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0;
}
.follow__pager__bullet {
  background: #ccc;
  border-radius: 50%;
  font-size: 0;
  margin: 0 .3rem;
  overflow: hidden;
  text-indent: -5rem;
  height: .6rem;
  width: .6rem;
}
.follow__pager__bullet--active {
  background: #737373;
}
.follow__pager__prev,
.follow__pager__next {
  background: rgba(0,0,0,.4) url(../img/icon-arrow-w.svg) 50% 50% no-repeat;
  background-size: 10px auto;
  border-radius: 0;
  display: block;
  position: absolute;
  top: 5.68rem;
  height: 4rem;
  width: 2.6rem;
}
.follow__pager__prev i,
.follow__pager__next i {
  display: none;
}
.follow__pager__prev {
  transform: translateY(-50%) scaleX(-1);
  left: -1.4rem;
}
.follow__pager__next {
  transform: translateY(-50%);
  right: -1.4rem;
}
.follow__more {
  display: block;
  margin-top: 1.6rem;
  text-align: center;
}
.follow__more__link {
  background: var(--color-white);
  border: 1px solid var(--color-mainText);
  border-radius: 5px;
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  padding: 1rem .8rem;
  text-align: center;
}
.follow__more__link:hover {
  text-decoration: none;
}
.follow__more__btn {
  align-items: center;
  background: var(--color-white);
  border: 1px solid var(--color-mainText);
  border-radius: 5px;
  display: inline-flex;
  font-size: 1.2rem;
  line-height: 1;
  padding: 1rem 1.6rem;
  vertical-align: top;
}
.follow__more__btn::after {
  margin-left: .4rem;
}
.follow__exclude__btn {
  align-items: center;
  background: var(--color-bgLightGray);
  border-radius: 3px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
  line-height: 1;
  margin: 1rem 0 1.6rem;
  padding: 1.4rem .8rem;
  width: 100%;
}
.follow__exclude__label {
  align-items: center;
  background: var(--color-white);
  border: 1px solid var(--color-mainText);
  border-radius: 3em;
  box-sizing: border-box;
  display: flex;
  font-size: 1.2rem;
  justify-content: center;
  line-height: 1;
  padding: .4rem .8rem;
  min-width: 7.8rem;
}
.follow__exclude__label::after {
  background: url(../img/icon-hidden.svg) 50% 50% no-repeat;
  background-size: contain;
  content: "";
  display: block;
  margin-left: .5rem;
  height: 1rem;
  width: 1rem;
}
.follow__exclude__btn--select .follow__exclude__label {
  display: none;
}
.follow__exclude__btn--select::after {
  background-image: url(../img/icon-followed.svg);
  background-color: transparent;
  background-size: 2rem;
  content: "";
  display: block;
  height: 2rem;
  width: 2rem;
}
.follow__btn:not(.follow__btn--followed) .follow__btn__label.follow__btn__label--followed {
  display: none!important;
}
.follow__btn--followed .follow__btn__label.follow__btn__label--toFollow {
  display: none!important;
}
.follow__heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.follow__heading .commonBox__title {
  margin-bottom: 0;
}
.follow__helpBtn {
  align-items: center;
  background-color: var(--color-white);
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  color: var(--color-primary);
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  height: 20px;
  width: 20px;
}
.follow__helpBtn::after {
  background-color: currentColor;
  background-repeat: no-repeat;
  content: "";
  display: block;
  flex-shrink: 0;
  mask-type: alpha;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: url(../img/icon-help.svg);
  mask-image: url(../img/icon-help.svg);
  height: 10px;
  width: 8px;
}
.follow__helpBtn.is-active {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.follow__helpBtn__label {
  display: block;
  overflow: hidden;
  flex-grow: 0;
  flex-basis: 0;
  height: 0;
  width: 0;
}
.follow__contextMenu {
  background: var(--color-white);
  border: 1px solid var(--color-frame);
  border-radius: 8px;
  box-sizing: border-box;
  box-shadow: 1px 1px 4px rgba(53,53,53,.1);
  display: none;
  padding: 1.6rem 1.4rem;
  position: absolute;
  top: 0;
  right: 26px;
  width: calc(100% - 37px);
  overflow: hidden;
  z-index: var(--z-index-contextMenu);
}
.follow__contextMenu__title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: .8rem;
}
.follow__contextMenu__text {
  font-size: 1.2rem;
  line-height: 1.4;
}
.follow__contextMenu.is-active {
  display: block;
}
@media (min-width: 769px) {
  .follow__btn {
    transition: var(--transition-hover);
  }
  .follow--vertical .follow__btn::after {
    background: var(--color-mainText) url(../img/icon-plus.svg) 50% 50% no-repeat;
    background-size: 1.2rem;
    border-radius: 4px;
    content: "";
    display: block;
    flex-shrink: 0;
    margin-left: .4rem;
    height: 2rem;
    width: 2rem;
  }
  .follow--vertical .follow__btn__label {
    background: none;
    padding: 0;
    display: none;
    min-width: 0;
  }
  .follow--vertical .follow__btn__label::after {
    display: none;
  }
  .follow--vertical .follow__btn:hover {
    background: var(--color-bgLightGray);
  }
  .follow--vertical .follow__btn:hover .follow__btn__label {
    color: var(--color-mainText);
    display: block;
    flex-shrink: 0;
  }
  .follow--vertical .follow__btn--followed::after {
    background-image: url(../img/icon-followed.svg);
    background-color: transparent;
    background-size: 2rem;
  }
  .follow--vertical .follow__btn--followed .follow__btn__label {
    border: 0;
    color: inherit;
  }
  .follow--horizontal .follow__inner {
    overflow: hidden;
  }
  .follow--horizontal:has(.follow__pager__prev) {
    position: relative;
  }
  .follow--horizontal .follow__pager__prev,
  .follow--horizontal .follow__pager__next {
    background-size: auto 1.4rem;
    background-color: rgba(0,0,0,.4);
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 50%;
    height: 3rem;
    width: 3rem;
    z-index: 1;
  }
  .follow--horizontal .follow__pager__prev {
    left: 0;
    transform: translate(-50%,-50%) scaleX(-1);
  }
  .follow--horizontal .follow__pager__next {
    right: 0;
    transform: translate(50%,-50%);
  }
  .follow--horizontal .follow__pager__prev:hover,
  .follow--horizontal .follow__pager__next:hover {
    opacity: .8;
  }
  .follow--horizontal .follow__btn:hover {
    opacity: .8;
  }
  .follow--pcTopSlider .follow__inner {
    display: flex;
    overflow: scroll;
    scrollbar-width: none;
  }
  .follow--pcTopSlider .follow__inner::-webkit-scrollbar {
    display: none;
  }
  .follow--pcTopSlider .follow__list {
    display: block;
    flex-shrink: 0;
    margin-right: 3rem;
    width: 100%;
  }
  .follow--pcTopSlider .follow__list__item {
    border-bottom: 1px dashed var(--color-border);
    margin: 0;
    overflow: hidden;
  }
  .follow--pcTopSlider .follow__list__item:last-child {
    border-bottom: 0;
  }
  .follow--pcTopSlider .follow__btn {
    background: none;
    flex-direction: row;
    overflow: hidden;
    padding: .8rem;
    width: 100%;
  }
  .follow--pcTopSlider .follow__btn::after {
    background: var(--color-mainText) url(../img/icon-plus.svg) 50% 50% no-repeat;
    background-size: 1.2rem;
    border-radius: 4px;
    content: "";
    display: block;
    flex-shrink: 0;
    margin-left: .4rem;
    height: 2rem;
    width: 2rem;
  }
  .follow--pcTopSlider .follow__btn__name {
    display: block;
    margin: 0;
    min-height: 0;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .follow--pcTopSlider .follow__btn__label {
    background: none;
    border: 0;
    color: var(--color-mainText);
    display: none;
    padding: 0;
    flex-shrink: 0;
  }
  .follow--pcTopSlider .follow__btn__label::after {
    display: none;
  }
  .follow--pcTopSlider .follow__btn:hover {
    background: var(--color-bgFollowDark);
    opacity: 1;
  }
  .follow--pcTopSlider .follow__btn:hover .follow__btn__label {
    display: block;
  }
  .follow--pcTopSlider .follow__btn--followed::after {
    background-image: url(../img/icon-followed.svg);
    background-color: transparent;
    background-size: 2rem;
  }
  .follow--pcTopSlider .follow__btn--followed .follow__btn__label {
    border: 0;
    color: inherit;
  }
  .follow--pcTopSlider .follow__pager {
    display: flex;
    margin: .9rem 0;
  }
  .follow--pcTopSlider .follow__pager__bullet {
    display: block;
  }
  .follow--pcTopSlider .follow__pager__prev,
  .follow--pcTopSlider .follow__pager__next {
    background: rgba(0,0,0,.6) url(../img/icon-arrow-w.svg) 50% 50% no-repeat;
    background-size: 8px auto;
    border-radius: 0;
    display: block;
    top: 11.8rem;
    height: 2.4rem;
    width: 1.4rem;
  }
  .follow--pcTopSlider .follow__pager__prev {
    transform: translateY(0) scaleX(-1);
    left: -1.4rem;
  }
  .follow--pcTopSlider .follow__pager__next {
    transform: translateY(0);
    right: -1.4rem;
  }
  .follow--pcTopSlider .follow__pager__prev:hover,
  .follow--pcTopSlider .follow__pager__next:hover {
    background-color: rgba(0,0,0,.5);
  }
  .follow--pcTopSlider .follow__more {
    margin-top: .9rem;
  }
  .follow--verticalPc3Col .follow__list {
    display: flex;
    flex-wrap: wrap;
  }
  .follow--verticalPc3Col .follow__list__item {
    flex-shrink: 0;
    margin-right: 1.6rem;
    width: calc((100% - 3.2rem) / 3);
  }
  .follow--verticalPc3Col .follow__list__item:nth-child(3n) {
    margin-right: 0;
  }
  .follow--verticalPc3Col .follow__list__item:last-child {
    border-bottom-width: 1px;
  }
  .follow__more__link,
  .follow__more__btn {
    transition: var(--transition-hover);
  }
  .follow__more__link:hover {
    background-color: var(--color-mainText);
    color: var(--color-white);
  }
  .follow__more__btn:hover {
    background-color: var(--color-mainText);
    color: var(--color-white);
  }
  .follow__exclude__btn {
    font-size: 1.4rem;
    padding-top: .8rem;
    padding-bottom: .8rem;
    transition: var(--transition-hover);
  }
  .follow__exclude__btn:hover {
    opacity: .8;
  }
  .follow__exclude__label {
    background: transparent;
    border: 0;
    border-radius: 0;
    display: none;
    flex-shrink: 0;
    padding: 0;
    min-width: 0;
  }
  .follow__exclude__label::after {
    display: none;
  }
  .follow__exclude__btn:hover .follow__exclude__label {
    display: block;
  }
  .follow__exclude__btn::after {
    background: url(../img/icon-hidden.svg) 50% 50% no-repeat;
    background-size: 1.8rem;
    content: "";
    display: block;
    flex-shrink: 0;
    margin-left: .8rem;
    height: 2rem;
    width: 2rem;
  }
  .follow__exclude__btn--select::after {
    background-image: url(../img/icon-followed.svg);
  }
  .follow__exclude__btn--select:hover {
    opacity: 1;
  }
  .follow__exclude__btn--select:hover .follow__exclude__label {
    display: none;
  }
  .follow__exclude__txt {
    flex-grow: 1;
    text-align: left;
  }
  .follow__pager__prev,
  .follow__pager__next,
  .follow__pager__bullet {
    transition: var(--transition-hover);
  }
  .follow__pager__prev:hover,
  .follow__pager__next:hover,
  .follow__pager__bullet:hover {
    opacity: .8;
  }
  .follow__helpBtn:not(.is-active):hover {
    background: var(--color-primary);
    color: var(--color-white);
  }
  .follow__contextMenu__title {
    font-size: 1.6rem;
  }
  .follow__contextMenu__text {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
@media (min-width: 1024px) {
  .follow__heading.follow__heading--horizontal {
    justify-content: flex-start;
    margin-bottom: 1.6rem;
  }
  .follow__heading.follow__heading--horizontal .follow__helpBtnWrap {
    position: relative;
  }
  .follow__heading.follow__heading--horizontal .follow__helpBtn {
    align-items: center;
    border-radius: 3em;
    margin-left: .8rem;
    padding: .5rem .85rem .5rem 1rem;
    height: auto;
    width: auto;
  }
  .follow__heading.follow__heading--horizontal .follow__helpBtn__label {
    flex-basis: auto;
    font-size: 1.2rem;
    line-height: 1;
    margin-right: .6rem;
    height: auto;
    width: auto;
  }
  .follow__heading.follow__heading--horizontal .follow__contextMenu {
    top: 0;
    left: 100%;
    right: auto;
    max-width: 480px;
    width: 50vw;
  }
  .follow__heading.follow__heading--horizontal .follow__more {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    margin-top: 0;
  }
  .follow__heading.follow__heading--horizontal .follow__more__link {
    font-size: 1.3rem;
    padding: .77rem 4.52rem;
  }
}

/* reaction */
.reaction {
  font-size: 1.3rem;
}
.reaction__btns {
  display: flex;
}
.reaction__btn {
  align-items: center;
  color: var(--color-subText);
  cursor: pointer;
  display: flex;
  padding: .7rem 1rem;
}
.reaction__btn::before {
  background-color: currentColor;
  background-repeat: no-repeat;
  content: "";
  display: block;
  margin-right: .2rem;
  mask-type: alpha;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.reaction__btn--good::before {
  -webkit-mask-image: url(../img/icon-good.svg);
  mask-image: url(../img/icon-good.svg);
  margin-right: .4rem;
  height: 1.8rem;
  width: 2rem;
}
.reaction__btn--bad::before {
  -webkit-mask-image: url(../img/icon-bad.svg);
  mask-image: url(../img/icon-bad.svg);
  height: 2rem;
  width: 2rem;
}
.reaction__btn.active {
  color: var(--color-primary);
}
.reaction__btn--good.active {
  color: var(--color-subText);
}
.reaction__btn--good.active::before {
  -webkit-mask-image: url(../img/icon-goodActive.svg);
  mask-image: url(../img/icon-goodActive.svg);
  color: var(--color-good);
}
.reaction__btn[disabled] {
  cursor: default;
}
.reaction__btn[disabled]:not(.active) {
  opacity: .5;
}
.reaction__menu {
  align-items: center;
  color: var(--color-subText);
  cursor: pointer;
  display: flex;
  justify-content: center;
  height: 3.4rem;
  width: 3.4rem;
}
.reaction__menu::before {
  background-color: currentColor;
  background-repeat: no-repeat;
  content: "";
  display: block;
  mask-type: alpha;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.reaction__menu--share::before {
  -webkit-mask-image: url(../img/icon-share.svg);
  mask-image: url(../img/icon-share.svg);
  height: 2.2rem;
  width: 2.2rem;
}
.reaction__menu--feedback::before {
  -webkit-mask-image: url(../img/icon-feedback.svg);
  mask-image: url(../img/icon-feedback.svg);
  height: 1.4rem;
  width: .4rem;
}
.reaction__menu.reaction__btn--active {
  background: var(--color-bgBlue);
  border-radius: 50%;
  color: var(--color-primary);
}
.reaction__menu__label {
  display: block;
  overflow: hidden;
  height: 0;
  width: 0;
  visibility: hidden;
}
.reaction__contextMenu {
  background: var(--color-white);
  border: 1px solid var(--color-frame);
  border-radius: 8px;
  box-sizing: border-box;
  display: none;
  padding: 1.4rem;
  position: absolute;
  top: auto;
  right: 1.4rem;
  width: calc(100% - 1.4rem);
  max-width: 340px;
  overflow: hidden;
  z-index: var(--z-index-contextMenu);
}
.reaction__contextMenu--active {
  display: block;
}
.reaction__contextMenu__head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.6rem;
}
.reaction__contextMenu__title {
  font-size: 1.6rem;
  font-weight: 700;
}
.reaction__contextMenu__list__item a {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  font-size: 1.4rem;
  min-height: 4rem;
  padding: 1rem .8rem;
}
.reaction__contextMenu__list__item a:hover {
  background: var(--color-bgLightGray);
  text-decoration: none;
}
.reaction__contextMenu__list__item.is-share a::before {
  background: 50% 50% no-repeat;
  background-size: contain;
  content: "";
  display: block;
  margin-right: .2rem;
  height: 2rem;
  width: 3rem;
}
.reaction__contextMenu__list__item.is-fb a::before {
  background-image: url(../img/icon-fb.svg);
  background-size: auto 2rem;
}
.reaction__contextMenu__list__item.is-x a::before {
  background-image: url(../img/icon-x.svg);
  background-size: auto 2rem;
}
.reaction__contextMenu__list__item.is-link a::before {
  background-image: url(../img/icon-link.svg);
  background-size: auto 1rem;
}
.reaction__contextMenu__close {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 2rem;
  width: 2.6rem;
}
.reaction__contextMenu__close::after {
  background: url(../img/icon-close.svg) 50% 50% no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 1.5rem;
  width: 1.5rem;
}
.reaction__contextMenu__close__label {
  display: block;
  overflow: hidden;
  height: 0;
  width: 0;
  visibility: hidden;
}
@media (min-width: 769px) {
  .reaction__btn {
    border-radius: 3em;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
  .reaction__menu {
    border-radius: 50%;
    height: 3rem;
    width: 3rem;
  }
  .reaction__btn,
  .reaction__menu {
    transition: var(--transition-hover);
  }
  .reaction__btn:not([disabled]):hover,
  .reaction__menu:not([disabled]):hover {
    background: var(--color-bgLightGray);
    color: var(--color-subText);
  }
  .reaction__btn.reaction__btn--good:not([disabled]):hover::before {
    color: var(--color-good);
  }
  .reaction__contextMenu {
    right: 0;
    width: 100%;
  }
  .reaction__contextMenu__head {
    margin-bottom: 1.2rem;
  }
  .reaction__contextMenu__list__item a {
    font-size: 1.6rem;
    transition: var(--transition-hover);
  }
  .reaction__contextMenu__list__item.is-share a::before {
    margin-right: .8rem;
    height: 2.4rem;
    width: 3rem;
  }
  .reaction__contextMenu__list__item.is-fb a::before {
    background-size: auto 2.4rem;
  }
  .reaction__contextMenu__list__item.is-x a::before {
    background-size: auto 2.4rem;
  }
  .reaction__contextMenu__list__item.is-link a::before {
    background-size: auto 1.2rem;
  }
}

/* commonTitle */
.commonTitle {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 3.2rem var(--space-inner) 1.6rem;
}
@media (min-width: 1024px) {
  .commonTitle {
    font-size: 2.4rem;
    margin-left: 0;
    margin-right: 0;
  }
}

/* commonBox */
.commonBox {
  background: var(--color-bgLightGray);
  border-radius: 8px;
  margin-bottom: 1.6rem;
  padding: var(--space-inner);
}
.commonBox:last-child {
  margin-bottom: 0;
}
.commonBox__title {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.commonBox__title__sub {
  font-size: var(--fontSize-small);
  font-weight: 400;
  margin-left: .6rem;
  vertical-align: middle;
}
.commonBox__text {
  font-size: 1.4rem;
}
.commonBox__lead {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 1.4rem;
}
.commonBox__inbox {
  background: var(--color-white);
  border-radius: 8px;
  margin: 0 0 1.4rem;
  padding: 1.6rem var(--space-small);
}
.commonBox__inbox:last-child {
  margin-bottom: 0;
}
.commonBox__inbox__title {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
}
.commonBox__inbox__title.is-border {
  border-bottom: 1px solid var(--color-frame);
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
}

@media (min-width: 1024px) {
  .commonBox {
    margin-bottom: 2rem;
    padding: 2.4rem;
  }
  .commonBox__title {
    font-size: 1.8rem;
  }
  .commonBox__title__sub {
    font-size: var(--fontSize-large);
  }
  .commonBox__inbox {
    padding: 2rem;
  }
  .commonBox__lead {
    font-size: 1.6rem;
    margin-bottom: 1.6rem;
  }
}

/* commonInner */
.commonInner {
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0 var(--space-inner) 1.6rem;
}
@media (min-width: 1024px) {
  .commonInner {
    font-size: 1.6rem;
    line-height: 1.4;
    margin: 0 0 2.4rem;
  }
}

/* commonList */
.commonList {
  color: var(--color-mainText);
  font-size: var(--fontSize-middle);
  line-height: 1.4;
}
.commonList__item {
  display: flex;
}
.commonList__item:not(:last-child) {
  margin-bottom: 1rem;
}
.commonList__item::before {
  border: 5px solid transparent;
  border-left-color: var(--color-subText);
  content: "";
  display: block;
  flex-shrink: 0;
  margin-right: 1px;
  transform: translateY(.3em);
  height: 0;
  width: 0;
}
.commonList__link:hover {
  text-decoration: none;
}
.commonList .icon--new {
  display: inline-block;
  font-size: 10px;
  vertical-align: middle;
}
@media (min-width: 1024px) {
  .commonList {
    font-size: var(--fontSize-large);
  }
  .commonList__item:not(:last-child) {
    margin-bottom: 1.4rem;
  }
  .commonList__link:hover {
    opacity: .8;
  }
}

/* search */
.search {
  display: flex;
  width: 100%;
}
.search--maxWidth {
  max-width: 38.2rem;
}
.search__input {
  background: var(--color-white);
  border: 1px solid var(--color-frame);
  border-radius: 4px;
  box-sizing: border-box;
  color: var(--color-mainText);
  flex-grow: 1;
  font-size: 1.4rem;
  outline: none;
  line-height: 1;
  height: 3.6rem;
  margin-right: .8rem;
  padding: 1rem 1.4rem;
}
.search__input::placeholder {
  color: var(--color-subText);
}
.search__btn {
  flex-shrink: 0;
  font-size: 1.4rem;
}
.search__result {
  margin-top: 2rem;
}

/********************
 Article
********************/
.article__section {
  border-bottom: 1px solid var(--color-frame);
  margin-top: 2.4rem;
  padding-left: var(--space-inner);
  padding-right: var(--space-inner);
  padding-bottom: 2.4rem;
}
.article__section:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.article__container {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--maxWidth-commonContainer);
}
.article__head {
  margin-bottom: 1.4rem;
}
.article__title {
  border-bottom: 1px solid var(--color-frame);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1.4rem;
  padding-bottom: 1.6rem;
}
.article__data {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.2rem;
}
.article__data__category {
  margin-right: .6rem;
}
.article__data__category .btn {
  border-color: var(--color-frame);
  font-size: 1.2rem;
  padding-top: .7rem;
  padding-bottom: .7rem;
}
.article__data__name {
  margin-right: .6rem;
}
.article__data__name__logo {
  border: 1px solid var(--color-frame);
  border-radius: 5rem;
  display: block;
  padding: .3rem 1.4rem;
}
.article__data__name__logo img {
  object-fit: contain;
  height: 20px;
  width: auto;
}
.article__data__date {
  color: var(--color-mainText);
  flex-grow: 1;
  margin: .7rem 0;
  text-align: right;
}
.article__thumb {
  margin: 0 0 1.6rem;
}
.article__thumb img {
  background: var(--color-bgLightGray);
  display: block;
  margin: 0 auto;
  max-width: 100%;
  object-fit: contain;
  height: 180px;
  width: 100%;
}
.article__thumb__caption {
  color: var(--color-subText);
  font-size: 1.1rem;
  margin-top: .6rem;
  text-align: center;
}
.article__thumb .article__iframe {
  margin-bottom: 0;
}
.article__body {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 2.4rem;
}
.article__body__inbox a {
  color: var(--color-primary);
}
.article__body__inbox img {
  background: var(--color-bgLightGray);
  display: block;
  margin: 0 auto 1.6rem;
  max-width: 100%;
  object-fit: contain;
  height: 180px;
  width: 100%;
}
.article__body__inbox figure {
  display: block;
  margin: 0 auto 1.6rem;
}
.article__body__inbox figure img {
  margin-bottom: 0;
}
.article__body__inbox figcaption {
  color: var(--color-subText);
  font-size: 1.1rem;
  margin-top: .6rem;
  text-align: center;
}
.article__body__inbox p,
.article__body__inbox ul,
.article__body__inbox ol {
  margin-bottom: 1.6rem;
}
.article__body__inbox ul,
.article__body__inbox ol {
  list-style: revert;
  padding: revert;
}
.article__body__inbox b,
.article__body__inbox strong {
  font-weight: 600;
}
.article__body__inbox h2,
.article__body__inbox h3,
.article__body__inbox h4,
.article__body__inbox h5,
.article__body__inbox h6 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 1.6rem;
  margin-bottom: .6rem;
}
.article__body__inbox > h2:first-child,
.article__body__inbox > h3:first-child,
.article__body__inbox > h4:first-child,
.article__body__inbox > h5:first-child,
.article__body__inbox > h6:first-child {
  margin-top: 0;
}
.article__iframe {
  background-color: var(--color-bgLightGray);
  margin-bottom:  1.6rem;
}
.article__iframe iframe,
.article__body iframe {
  aspect-ratio: 16 / 9;
  display: block;
  margin: 0 auto;
  height: 180px;
  max-width: 100%;
}
.article__body iframe {
  margin-bottom:  1.6rem;
}
.article__foot {
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.article__foot .reaction {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 0;
}
.article__foot .reaction__contextMenu {
  top: 100%;
}
.article__readMore {
  display: none;
  margin-bottom: 2.4rem;
  position: relative;
}
.article__readMore__inner {
  align-items: flex-end;
  background-image: linear-gradient(0deg, rgba(255,255,255,1) 30%, rgba(255,255,255,0) 100%);
  display: flex;
  font-size: 1.4rem;
  height: 20rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.article__readMore__text {
  align-items: center;
  display: flex;
  justify-content: center;
  font-weight: 700;
}
.article__section.article--closed .article__body {
  margin-bottom: 0;
  max-height: var(--maxHeight-closedArticleBody);
  position: relative;
  overflow: hidden;
}
.article__section.article--closed .article__readMore {
  display: block;
}
.article__pr {
  border: 1px solid var(--color-frame);
  border-radius: 8px;
  margin-bottom: 2.5rem;
  overflow: hidden;
}
.article__pr__link:hover {
  text-decoration: none;
}
.article__pr__image {
  align-items: center;
  background: var(--color-bgLightGray);
  display: flex;
  justify-content: center;
  height: 180px;
}
.article__pr__image img {
  display: block;
  max-height: 100%;
  max-width: 100%;
  height: auto;
  width: auto;
}
.article__pr__body {
  background: var(--color-white);
  padding: 1.6rem 1.4rem;
}
.article__pr__text {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: .8rem;
}
.article__pr__name {
  align-items: center;
  color: var(--color-subText);
  display: flex;
  font-size: 1.4rem;
}
.article__pr__name .pr {
  border: 1px solid var(--color-subText);
  border-radius: 5px;
  color: var(--color-subText);
  font-size: 1rem;
  line-height: 1;
  margin-right: .6rem;
  padding: .4rem .6rem;
}
.article__related--hidden {
  display: none;
}
.follow__horizontal--hidden {
  display: none;
}
@media (max-width: 1023px) {
  .article__related {
    position: relative;
  }
  .article__related__inner {
    overflow: auto;
  }
  .article__related__list {
    display: flex;
  }
  .article__related__item {
    flex-shrink: 0;
    margin-right: .8rem;
    padding-bottom: 2px;
    min-height: 88px;
    max-width: 270px;
  }
  .article__related__item:only-child {
    flex-grow: 1;
    max-width: 100%;
  }
  .article__related__item:last-child {
    margin-right: 0;
  }
  .article__related__item a {
    align-items: center;
    background: var(--color-white);
    border-radius: 5px;
    box-sizing: border-box;
    box-shadow: 2px 2px 4px 0px rgba(0,0,0,.04);
    display: flex;
    font-size: 1.3rem;
    line-height: 1.4;
    padding: 1.4rem;
    height: 100%;
    width: 100%;
  }
  .article__related__item a:hover {
    text-decoration: none;
  }
  .article__related__prev,
  .article__related__next {
    background: rgba(0,0,0,.4) url(../img/icon-arrow-w.svg) 50% 50% no-repeat;
    background-size: 10px auto;
    border-radius: 0;
    display: block;
    position: absolute;
    top: 50%;
    height: 4rem;
    width: 2.6rem;
  }
  .article__related__prev i,
  .article__related__next i {
    display: none;
  }
  .article__related__prev {
    transform: translateY(-50%) scaleX(-1);
    left: -1.4rem;
  }
  .article__related__next {
    transform: translateY(-50%);
    right: -1.4rem;
  }
}
@media (min-width: 1024px) {
  .article__section {
    margin-top: 8rem;
    padding-bottom: 8rem;
  }
  .article__head {
    margin-bottom: 1.6rem;
  }
  .article__title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.4;
    padding-bottom: 2.4rem;
    margin-bottom: 1.6rem;
  }
  .article__data,
  .article__data__name {
    font-size: 1.6rem;
  }
  .article__data__category {
    margin-right: 1.4rem;
  }
  .article__data__category .btn {
    font-size: 1.5rem;
    padding-top: .75rem;
    padding-bottom: .75rem;
  }
  .article__data__name__logo {
    line-height: 1;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
  .article__data__name__logo:hover {
    background: var(--color-bgDarkGray);
  }
  .article__thumb {
    margin-bottom: 3.2rem;
  }
  .article__thumb img {
    height: 360px;
  }
  .article__thumb .article__iframe {
    margin-bottom: 0;
  }
  .article__body {
    font-size: 1.8rem;
    line-height: 1.7;
  }
  .article__body__inbox img {
    margin-bottom: 3.2rem;
    height: 360px;
  }
  .article__body__inbox p,
  .article__body__inbox ul,
  .article__body__inbox ol {
    margin-bottom: 3.2rem;
  }
  .article__body__inbox h2,
  .article__body__inbox h3,
  .article__body__inbox h4,
  .article__body__inbox h5,
  .article__body__inbox h6 {
    font-size: 2rem;
    margin-top: 3.2rem;
    margin-bottom: 1.6rem;
  }
 .article__body iframe,
  .article__iframe {
    margin-bottom: 3.2rem;
  }
  .article__body iframe,
  .article__iframe iframe {
    height: 360px;
  }
  .article__foot {
    margin-bottom: 5.6rem;
  }
  .article__foot .reaction__menu {
    height: 4rem;
    width: 4rem;
  }
  .article__foot .reaction__menu--feedback::before {
    height: 2rem;
    width: 5rem;
  }
  .article__readMore__text::after {
    margin-left: 1.6rem;
    height: .9rem;
    width: 1.6rem;
  }
  .article__readMore .btn {
    font-size: 2rem;
    padding: 1.8rem;
  }
  .article__pr {
    border-radius: 0;
    margin-bottom: 4rem;
  }
  .article__pr__link {
    transition: var(--transition-hover);
  }
  .article__pr__link:hover {
    opacity: .8;
  }
  .article__pr__body {
    padding: 1.6rem .8rem;
  }
  .article__pr__text {
    font-size: 2.4rem;
    line-height: 1.6;
    margin-bottom: .8rem;
  }
  .article__pr__name {
    font-size: 1.6rem;
  }
  .article__pr__name .pr {
    font-size: 1.4rem;
    padding: .6rem 1.2rem;
  }
  .article__pr__image {
    height: 360px;
  }
  .article__related__list {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .article__related__item {
    display: flex;
  }
  .article__related__item::before {
    content: "・";
    flex-shrink: 0;
  }
  .article__related__item:not(:last-child) {
    margin-bottom: 1.4rem;
  }
  .article__related__prev,
  .article__related__next {
    display: none;
  }
}

/********************
 Setting
********************/
.setting {

}

/********************
 Dialog
********************/
.dialog {
  align-items: center;
  display: none;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: var(--z-index-dialog);
}
.dialog.is-active {
  animation: fadeIn .3s ease-in-out;
  display: flex;
}
.dialog__bg {
  background-color: rgba(0, 0, 0, .4);
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0;
}
.dialog__inbox {
  background: var(--color-white);
  border-radius: 12px;
  box-sizing: border-box;
  overflow: auto;
  padding: 2.4rem 1.6rem;
  position: relative;
  max-width: 600px;
  max-height: 80%;
  width: 87.154%;
  z-index: 1;
}
.dialog__title {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: .8rem;
  text-align: center;
}
.dialog__text {
  font-size: 1.3rem;
  line-height: 1.5;
}
.dialog__btns {
  display: flex;
  margin-top: 3rem;
  margin-left: -.7rem;
  margin-right: -.7rem;
}
.dialog__btns .btn {
  border-radius: 5px;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0 .7rem;
  padding: .92rem;
}
@media (min-width: 1024px) {
  .dialog__inbox {
    padding: 5rem;
  }
  .dialog__title {
    font-size: 2.2rem;
    margin-bottom: 1.6rem;
  }
  .dialog__text {
    font-size: 1.8rem;
    text-align: center;
  }
  .dialog__btns {
    margin-top: 6.5rem;
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .dialog__btns .btn {
    font-size: 1.8rem;
    margin: 0 1rem;
    padding: 1.06rem;
  }
}

/********************
 Config
********************/
.config__title {
  border-bottom: 1px solid var(--color-frame);
  color: var(--color-mainText);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
}
.config__btns {
  display: flex;
  justify-content: center;
}
.config__btns .btn {
  flex-basis: 0;
  flex-grow: 1;
  margin: 0 5px;
  max-width: 150px;
}
@media (min-width:769px) {
  .config {
    align-items: center;
    display: flex;
  }
  .config__title {
    border: 0;
    font-size: 1.6rem;
    margin: 0 2.4rem 0 0;
    padding: 0;
    flex-shrink: 0;
  }
  .config__btns {
    flex-grow: 1;
    justify-content: flex-start;
  }
  .config__btns .btn {
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1.1;
    margin: 0 1.6rem 0 0;
    padding: .8rem;
    width: 130px;
  }
}

/* docomo services */
.docomo {
  background: var(--color-bgLightGray);
  box-sizing: border-box;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 14px;
  padding: 14px;
}
.docomo__links {
  display: flex;
  gap: 8px;
}
.docomo__linksItem {
  display: flex;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 0;
  width: 100%;
}
.docomo__linksLink {
  align-items: center;
  background: var(--color-white);
  border: 1px solid var(--color-frame);
  border-radius: 4px;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  gap: 6px;
  padding: 10px 14px;
  width: 100%;
}
.docomo__linksLink:hover {
  text-decoration: none;
}
.docomo__linksIcon {
  flex-shrink: 0;
  width: 24px;
}
.docomo__linksName {
  font-size: 1.2rem;
  font-weight: 600;
  flex-grow: 1;
}
.docomo__linksLink.is-external {
  padding-right: 6px;
}
.docomo__linksLink.is-external::after {
  background: url(../img/icon-external.svg) 50% 50% no-repeat;
  background-size: contain;
  content: "";
  flex-shrink: 0;
  height: 10px;
  width: 10px;
}
.docomo__services {
  background: var(--color-white);
  border: 1px solid var(--color-frame);
  border-radius: 4px;
  padding: 15px 0;
}
.docomo__servicesHead {
  border-bottom: 1px solid var(--color-frame);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 14px;
  padding-bottom: 8px;
}
.docomo__servicesCategory {
  align-items: center;
  cursor: pointer;
  display: flex;
  padding: 12px 14px;
  gap: 6px;
}
.docomo__servicesCategory::before {
  background-color: currentColor;
  background-repeat: no-repeat;
  color: var(--color-subText);
  content: "";
  display: block;
  flex-shrink: 0;
  mask-type: alpha;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  height: 20px;
  width: 20px;
}
.docomo__servicesCategory.is-mobile::before {
  -webkit-mask-image: url(../img/docomo/icon-mobile.png);
  mask-image: url(../img/docomo/icon-mobile.png);
}
.docomo__servicesCategory.is-internet::before {
  -webkit-mask-image: url(../img/docomo/icon-internet.png);
  mask-image: url(../img/docomo/icon-internet.png);
}
.docomo__servicesCategory.is-smartLife::before {
  -webkit-mask-image: url(../img/docomo/icon-smartLife.png);
  mask-image: url(../img/docomo/icon-smartLife.png);
}
.docomo__servicesCategory.is-docomoDenki::before {
  -webkit-mask-image: url(../img/docomo/icon-docomoDenki.png);
  mask-image: url(../img/docomo/icon-docomoDenki.png);
}
.docomo__servicesCategoryName {
  font-size: 1.2rem;
  font-weight: 600;
  flex-grow: 1;
}
.docomo__servicesCategoryName br {
  display: none;
}
.docomo__servicesCategory::after {
  background-color: currentColor;
  background-repeat: no-repeat;
  color: var(--color-subText);
  content: "";
  display: block;
  flex-shrink: 0;
  mask-type: alpha;
  -webkit-mask-image: url(../img/docomo/icon-plus.svg);
  mask-image: url(../img/docomo/icon-plus.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  height: 12px;
  width: 12px;
}
.docomo__servicesCategory.is-opened::after {
  -webkit-mask-image: url(../img/docomo/icon-minus.svg);
  mask-image: url(../img/docomo/icon-minus.svg);
}
.docomo__servicesInbox {
  display: none;
}
.docomo__servicesName a {
  align-items: center;
  display: flex;
  font-size: 1.3rem;
  padding: 8px 14px;
}
.docomo__servicesName a:hover {
  text-decoration: none;
}
.docomo__servicesName a::before {
  background: var(--color-primary);
  border-radius: 50%;
  content: "";
  display: block;
  flex-shrink: 0;
  margin-right: 6px;
  height: 4px;
  width: 4px;
}
@media (min-width: 1024px) {
  .docomo {
    background: transparent;
    flex-direction: row;
    margin: 16px 0;
    padding: 0;
  }
  .docomo__links {
    flex-shrink: 0;
  }
  .docomo__linksLink {
    border-radius: 8px;
    padding: 12px 16px;
  }
  .docomo__linksLink:hover {
    background-color: var(--color-bgLightGray);
  }
  .docomo__linksName {
    font-size: 1.2rem;
    font-weight: 400;
    flex-shrink: 0;
  }
  .docomo__linksLink.is-external {
    padding-right: 8px;
  }
  .docomo__linksLink.is-external::after {
    margin-left: 10px;
  }
  .docomo__services {
    background: none;
    border: 0;
    display: flex;
    gap: 8px;
    padding: 0;
  }
  .docomo__servicesHead {
    display: none;
  }
  .docomo__servicesLists {
    display: flex;
    position: relative;
  }
  .docomo__servicesCategory {
    border: 1px solid var(--color-frame);
    border-radius: 8px;
    padding: 8px 8px 8px 14px;
  }
  .docomo__servicesCategory:hover {
    background-color: var(--color-bgLightGray);
  }
  .docomo__servicesCategory::before {
    height: 24px;
    width: 24px;
  }
  .docomo__servicesCategory::after,
  .docomo__servicesCategory.is-opened::after {
    -webkit-mask-image: url(../img/docomo/icon-arrow.svg);
    mask-image: url(../img/docomo/icon-arrow.svg);
  }
  .docomo__servicesCategory::after {
    margin-left: 10px;
    height: 5px;
    width: 8px;
  }
  .docomo__servicesCategory.is-opened {
    background: var(--color-primary);
    border-color: var(--color-primary);
    border-radius: 8px 8px 0 0;
    color: var(--color-white);
    margin-bottom: -8px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .docomo__servicesCategory.is-opened::before {
    color: var(--color-white);
  }
  .docomo__servicesCategory.is-opened::after {
    color: var(--color-white);
    transform: rotate(-180deg);
  }
  .docomo__servicesCategoryName {
    font-size: 1.2rem;
    font-weight: 400;
  }
  .docomo__servicesCategoryName br {
    display: block;
  }
  .docomo__servicesInbox {
    border: 1px solid var(--color-primary);
    border-radius: 0 8px 8px 8px;
    box-sizing: border-box;
    position: absolute;
    top: calc(100% + 8px - 1px);
    left: 0;
    min-width: 100%;
  }
  .docomo__servicesNames {
    box-sizing: border-box;
    display: inline-flex;
    padding: 20px 16px;
    white-space: nowrap;
    max-width: 100vw;
  }
  .docomo__servicesName {
    flex-shrink: 0;
    line-height: 1;
  }
  .docomo__servicesName:not(:last-child) {
    border-right: 1px solid var(--color-frame);
    margin-right: 16px;
    padding-right: 15px;
  }
  .docomo__servicesName a {
    padding: 0;
    overflow: visible;
  }
  .docomo__servicesName a:hover {
    text-decoration: underline;
  }
  .docomo__servicesName a::before {
    margin-right: 4px;
    height: 5px;
    width: 5px;
  }
  .docomo__servicesName a.is-external::after {
    background: url(../img/icon-external.svg) 50% 50% no-repeat;
    background-size: contain;
    content: "";
    flex-shrink: 0;
    margin-left: 6px;
    height: 8px;
    width: 8px;
  }
}
@media (min-width: 1280px) {
  .docomo {
    flex-direction: row;
  }
  .docomo__linksName {
    font-size: 1.5rem;
  }
  .docomo__servicesCategory {
    padding: 12px 8px 12px 14px;
  }
  .docomo__servicesCategoryName {
    font-size: 1.4rem;
  }
  .docomo__servicesCategoryName br {
    display: none;
  }
}
/* Design for ADNW */
.card--adnw {
  border-bottom: 0;
  overflow: hidden;
  display: none;
}
/* Sort for ADNW */
.cardList.has-adnw {
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) {
  .cardList.has-adnw {
    flex-direction: row;
  }
}
@media (min-width: 1696px) {
  .cardList.has-adnw .card {
    order: 3;
  }
  .cardList.has-adnw .card--adnw {
    order: 0;
  }
  .cardList.has-adnw .card--headline + .card,
  .cardList.has-adnw .card--headline + .card + .card {
      order: 1;
  }
  .cardList.has-adnw .card--headline {
    order: 2;
  }
}

/* Adjust for ADNW */
.cardList.has-adnw .card:has(.gooad_rectangle) {
  align-items: flex-start;
  display: flex;
  justify-content: center;
  padding: 1.4rem 0;
  min-width: 300px;
}
@media (min-width: 769px) {
  .cardList.has-adnw .card:has(.gooad_rectangle) {
    padding-top: 0;
  }
}
@media (min-width: 1024px) {
  .cardList.has-adnw .card--adnw {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0 0 1.6rem;
    max-width: 100%;
    width: 100%;
  }
}
@media (min-width: 1168px) {
  .cardList.has-adnw .card--news,
  .cardList.has-adnw .card--follow {
    flex-grow: 1;
    max-width: calc(25% - (1.2rem * 2));
    width: calc(((100% - 300px - 1.2rem * 2) / 3) - 1.2rem * 2);
  }
  .cardList.has-adnw .card--sizeW {
    flex-grow: 1;
    max-width: calc(75% - (1.2rem * 2));
    width: calc(((100% - 300px - 1.2rem * 2)) - 1.2rem * 2);
  }
}
@media (min-width: 1480px) {
  .cardList.has-adnw .card--news,
  .cardList.has-adnw .card--follow {
    max-width: calc(20% - (1.2rem * 2));
    width: calc(((100% - 300px - 1.2rem * 2) / 4) - 1.2rem * 2);
  }
  .cardList.has-adnw .card--sizeW {
    max-width: calc(60% - (1.2rem * 2));
    width: calc(((100% - 300px - 1.2rem * 2) / 4) * 3 - 1.2rem * 2);
  }
}
@media (min-width: 1696px) {
  .cardList.has-adnw .card--adnw {
    margin: 0 1.2rem 3.2rem;
    max-width: calc(60% - (1.2rem * 2));
    width: calc(((100% - 300px - 1.2rem * 2) / 4) * 3 - 1.2rem * 2);
  }
}

/********************
 Utility
********************/
/* font-weight */
.fw--normal {
  font-weight: normal;
}
.fw--bold {
  font-weight: bold;
}
/* color */
.color--important {
  color: var(--color-docomo)!important;
}
.color--subText {
  color: var(--color-subText)!important;
}
/* background-color */
.bgColor--primary {
  background-color: var(--color-primary);
}
.bgColor--secondary {
  background-color: var(--color-bgBlue);
}
.bgColor--gray {
  background-color: var(--color-bgLightGray);
}
.bgColor--primary {
  background-color: var(--color-primary);
}
.bgColor--follow {
  background-color: var(--color-bgFollow);
}
.bgColor--lightBlue{
  background-color: var(--color-bgHeadline);
}
/* margin */
.mt--10 {
  margin-top: 1rem;
}
.mb--10 {
  margin-bottom: 1rem;
}
.mt--20 {
  margin-top: 2rem;
}
.mb--20 {
  margin-bottom: 2rem;
}
/* text-decoration */
.td--underline {
  text-decoration: underline;
}
/* display */
@media (max-width: 1023px) {
  .display--pcOnly {
    display: none;
  }
}
@media (min-width: 1024px) {
  .display--spOnly {
    display: none;
  }
}

/********************
 Animations
********************/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideInRtoL {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}