/*====================================
	Variables
====================================*/
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Light.otf") format("opentype");
  font-weight: 300;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Regular.otf") format("opentype");
  font-weight: normal;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Medium.otf") format("opentype");
  font-weight: 500;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Bold.otf") format("opentype");
  font-weight: bold;
}
/*====================================
	Variables
====================================*/
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Light.otf") format("opentype");
  font-weight: 300;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Regular.otf") format("opentype");
  font-weight: normal;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Medium.otf") format("opentype");
  font-weight: 500;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Bold.otf") format("opentype");
  font-weight: bold;
}
/*====================================
	General
====================================*/
body {
  font-family: "NotoSansJP", sans-serif;
  font-size: 14px;
  letter-spacing: 0.1rem;
}

body * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

.text-center {
  text-align: center !important;
}

@media screen and (min-width: 1024px) {
  html {
    font-size: 14px;
  }
}
/*====================================
	Variables
====================================*/
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Light.otf") format("opentype");
  font-weight: 300;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Regular.otf") format("opentype");
  font-weight: normal;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Medium.otf") format("opentype");
  font-weight: 500;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Bold.otf") format("opentype");
  font-weight: bold;
}
.container {
  height: 100%;
  min-height: calc(100vh - 64px);
  padding: 16px 16px 48px 16px;
  max-width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  .container {
    height: 100%;
    width: 800px;
    padding: 16px;
    max-width: 100%;
    margin: 0 auto;
  }
}
.header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: #E993B5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 16px;
}
.header__logo {
  width: 64px;
  height: auto;
}

.hamburger {
  position: relative;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  z-index: 1000;
}

.hamburger span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  right: 0;
  height: 2px;
  background: #fff;
}

.hamburger span:nth-of-type(1) {
  top: 15px;
  width: 50%;
}

.hamburger span:nth-of-type(2) {
  top: 23px;
  width: 50%;
}

.hamburger span:nth-of-type(3) {
  top: 31px;
  width: 25%;
}

.hamburger.active span:nth-of-type(1) {
  top: 18px;
  -webkit-transform: translateY(6px) rotate(-135deg);
          transform: translateY(6px) rotate(-135deg);
  width: 50%;
}

.hamburger.active span:nth-of-type(2) {
  opacity: 0;
}

.hamburger.active span:nth-of-type(3) {
  top: 30px;
  -webkit-transform: translateY(-6px) rotate(135deg);
          transform: translateY(-6px) rotate(135deg);
  width: 50%;
}

.hamburger-modal {
  z-index: 2;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  display: none;
}

.hamburger-menu {
  position: fixed;
  top: 0;
  left: 0;
  padding: 80px 0 0;
  width: 100vw;
  height: auto;
  background: #fff;
  z-index: 5;
  display: none;
  border-radius: 0 0 10px 10px;
}
.hamburger-menu__title {
  padding: 0 16px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.hamburger-menu-category-list {
  display: none;
}
.hamburger-menu-category-list__back-link {
  padding-left: 16px;
  color: #000;
  font-weight: 500;
}

.hamburger-menu-list {
  list-style: none;
  margin-top: 24px;
}
.hamburger-menu-list__item {
  padding: 12px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #efefef;
}
.hamburger-menu-list__item:last-of-type {
  border-bottom: 0;
}
.hamburger-menu-list__link {
  color: #000;
  font-size: 14px;
  font-weight: bold;
  padding-left: 16px;
  width: 100%;
}
.hamburger-menu-list__arrow {
  padding-right: 16px;
}

.footer {
  padding: 0 16px;
  background: #E993B5;
  height: 64px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}
.footer__icon a {
  text-align: center;
  display: inline-block;
  padding: 0 8px;
  border-right: 1px solid #fff;
}
.footer__icon a:nth-of-type(1) {
  padding-right: 12px;
}
.footer__icon a:nth-of-type(2) {
  padding-right: 12px;
}
.footer__icon a:nth-of-type(3) {
  padding-left: 12px;
  padding-right: 0;
  border: none;
}
.footer__icon img {
  width: 18px;
  height: 18px;
}

.menu-title {
  text-align: center;
  font-size: 20px;
}

.link-btn-wrap {
  text-align: center;
}
.link-btn-wrap__btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  width: 220px;
  background: #C64D7C;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  padding: 4px 0;
  display: inline-block;
  border-radius: 3px;
  letter-spacing: 2px;
}
.link-btn-wrap__btn.disabled {
  background: #AFAFAF;
}

.pagination {
  text-align: center;
}
.pagination .page-numbers {
  display: inline-block;
  margin-right: 8px;
  font-weight: bold;
  color: #000;
}
.pagination .page-numbers:last-child {
  margin-right: 0;
}
.pagination .page-numbers.current {
  padding-left: 1.2px;
  background: #C64D7C;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 24px;
  color: #fff;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-64 {
  margin-top: 64px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

/*====================================
	Variables
====================================*/
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Light.otf") format("opentype");
  font-weight: 300;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Regular.otf") format("opentype");
  font-weight: normal;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Medium.otf") format("opentype");
  font-weight: 500;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Bold.otf") format("opentype");
  font-weight: bold;
}
.top-menu {
  width: 100vw;
  height: 100vh;
  display: grid;
  grid-template-rows: auto auto auto;
  grid-template-columns: 50vw 50vw;
}

.top-menu-panel {
  padding: 16px 12px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-menu-panel__heading {
  margin-top: 4px;
  font-size: 18px;
}
.top-menu-panel__text {
  margin-top: 8px;
  font-size: 11px;
}
.top-menu-panel__arrow {
  margin-top: 4px;
}
.top-menu-panel:nth-of-type(1) {
  padding: 40px 0;
  background: #F17A72;
  grid-column: 1/3;
}
.top-menu-panel:nth-of-type(2) {
  background: #55B1E0;
}
.top-menu-panel:nth-of-type(3) {
  background: #ECC34F;
}
.top-menu-panel:nth-of-type(4) {
  background: #78BCAF;
}
.top-menu-panel:nth-of-type(5) {
  background: #31647F;
}

/*====================================
	Variables
====================================*/
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Light.otf") format("opentype");
  font-weight: 300;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Regular.otf") format("opentype");
  font-weight: normal;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Medium.otf") format("opentype");
  font-weight: 500;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Bold.otf") format("opentype");
  font-weight: bold;
}
.article-box {
  color: #000;
  display: block;
  width: 100%;
  height: auto;
  padding: 32px 0;
  border-bottom: 1px solid #efefef;
}
.article-box__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.article-box__cat {
  background: #9E9E9E;
  margin-right: 8px;
  font-size: 11px;
  font-weight: bold;
  color: #fff;
  padding: 2px 8px;
}
.article-box__cat.cat1 {
  background: #03A9F4;
}
.article-box__cat.cat2 {
  background: #E53935;
}
.article-box__cat.cat3 {
  background: #E67E22;
}
.article-box__cat.cat4 {
  background: #00897B;
}
.article-box__date {
  font-size: 12px;
  font-weight: 500;
  color: #AFAFAF;
  letter-spacing: 0;
}
.article-box__thumbnail {
  margin-top: 8px;
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
.article-box__title {
  margin-top: 8px;
  font-size: 15px;
  font-weight: bold;
}

.article-box.single {
  border-bottom: none;
}
.article-box.single .article-box__meta {
  margin-top: 8px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.article-box.single .article-box__thumbnail {
  margin-top: 8px;
}

.article img {
  margin-top: 24px;
  width: 100%;
  height: auto;
}
.article h2, .article h3 {
  font-size: 14px;
  margin-top: 40px;
}
.article h2 {
  padding-bottom: 8px;
  border-bottom: 1px solid #E993B5;
}
.article h3 {
  padding-left: 8px;
  border-left: 4px solid #E993B5;
}
.article p {
  margin-top: 24px;
  font-size: 13px;
  line-height: 1.8;
}

.share-btn {
  margin-top: 48px;
  text-align: center;
}
.share-btn__heading {
  font-size: 11px;
  font-weight: bold;
}
.share-btn__list {
  margin-top: 8px;
}
.share-btn__list a {
  display: inline-block;
  margin-right: 8px;
}
.share-btn__list a:last-of-type {
  margin-right: 0;
}

.next-prev {
  width: 100%;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.next-prev__link {
  color: #000;
  text-decoration: underline;
}

/*====================================
	Variables
====================================*/
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Light.otf") format("opentype");
  font-weight: 300;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Regular.otf") format("opentype");
  font-weight: normal;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Medium.otf") format("opentype");
  font-weight: 500;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Bold.otf") format("opentype");
  font-weight: bold;
}
.quiz-box {
  position: relative;
  border: 1px solid #000;
  padding: 24px 24px 32px;
  border-radius: 3px;
}
.quiz-box__number {
  position: absolute;
  display: inline-block;
  top: -12px;
  left: -12px;
  width: 40px;
  height: 40px;
  background: #E993B5;
  color: #fff;
  text-align: center;
  line-height: 40px;
  border-radius: 40px;
}
.quiz-box__text {
  text-align: justify;
}

.quiz-form {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}
.quiz-form__radio-label {
  display: block;
  margin-top: 24px;
}
.quiz-form__radio {
  display: none;
}
.quiz-form__radio-text:before {
  content: "";
  position: relative;
  top: 2.5px;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  border-width: 1px;
  border-style: solid;
  border-radius: 50%;
  padding: 2px;
  background-clip: content-box;
}
.quiz-form__radio:not(:checked) + .quiz-form__radio-text:before {
  border-color: #000;
}
.quiz-form__radio:checked + .quiz-form__radio-text:before {
  border-color: #C64D7C;
  background-color: #C64D7C;
}

.quiz-result {
  text-align: center;
}

.quiz-result-box__numerator {
  color: #C64D7C;
  font-size: 32px;
  font-weight: bold;
}

.quiz-result-img {
  margin-top: 16px;
  width: 100%;
  height: auto;
}

.quiz-result-text h2 {
  margin-top: 16px;
  color: #C64D7C;
  font-weight: bold;
  font-size: 18px;
}
.quiz-result-text p {
  text-align: left;
  margin-top: 16px;
  text-align: justify;
}

/*====================================
	Variables
====================================*/
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Light.otf") format("opentype");
  font-weight: 300;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Regular.otf") format("opentype");
  font-weight: normal;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Medium.otf") format("opentype");
  font-weight: 500;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Bold.otf") format("opentype");
  font-weight: bold;
}
.faq-content {
  margin-top: 16px;
  background: #fff;
  padding: 16px 16px;
  border: 1px solid #000;
  border-radius: 10px;
  cursor: pointer;
}
.faq-content__text-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.faq-content__text-box-answer {
  display: none;
}
.faq-content__icon {
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  color: #C64D7C;
  width: 32px;
  height: 32px;
  text-align: center;
  border-radius: 32px;
  line-height: 32px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.faq-content__icon.answer {
  color: #000;
}
.faq-content__text {
  margin: 0 auto 0 12px;
  padding-top: 4px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.35;
}
.faq-content__toggle {
  -webkit-transform: translateY(4px) rotate(-90deg);
          transform: translateY(4px) rotate(-90deg);
  width: 24px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.faq-content__toggle.active {
  -webkit-transform: translateY(4px) rotate(90deg);
          transform: translateY(4px) rotate(90deg);
}

/*====================================
	Variables
====================================*/
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Light.otf") format("opentype");
  font-weight: 300;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Regular.otf") format("opentype");
  font-weight: normal;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Medium.otf") format("opentype");
  font-weight: 500;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Bold.otf") format("opentype");
  font-weight: bold;
}
.trivia-list {
  margin-top: 16px;
}
.trivia-list__item {
  list-style: none;
}
.trivia-list__link {
  border-bottom: 1px solid #efefef;
  padding: 16px 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #000;
}
.trivia-list__img {
  margin-right: 16px;
  width: 56px;
  height: 56px;
  border-radius: 56px;
  -o-object-fit: cover;
     object-fit: cover;
}
.trivia-list__text {
  font-weight: 500;
}

.trivia-search {
  margin-top: 32px;
  text-align: right;
}

.trivia-search__select {
  overflow: hidden;
  width: 120px;
  margin-left: auto;
}

.trivia-search__select select {
  width: 100px;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  padding: 4px 40px 2px 4px;
  letter-spacing: 1px;
  color: #000;
}

.trivia-search__select select::-ms-expand {
  display: none;
}

.trivia-search__select {
  position: relative;
  border: 1px solid #AFAFAF;
  border-radius: 4px;
}

.trivia-search__select::before {
  position: absolute;
  top: 50%;
  right: 8px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #fff;
  pointer-events: none;
}

.trivia-search__select::after {
  content: "";
  position: absolute;
  background: #E993B5;
  width: 24px;
  height: 100%;
  right: 0;
  top: 0;
  z-index: -1;
}

.trivia-article-box {
  text-align: center;
  padding: 24px 0;
  border-bottom: 1px solid #efefef;
}
.trivia-article-box__img {
  background: url(../../assets/images/dummy.png);
  background-size: cover;
  background-position: center;
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 280px;
  margin: 0 auto;
}
.trivia-article-box__img::after {
  content: url(../../assets/images/overlay.png);
  position: absolute;
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 284px;
  height: 280px;
}
.trivia-article-box__heading {
  position: relative;
  width: 90%;
  margin: -40px auto 0;
  font-size: 18px;
  color: #E993B5;
}