@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap");
/* レイアウトのためのCSS */
body {
  overflow-x: hidden;
  /*  background: #fccf00;*/
  font-family: "Zen Maru Gothic", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  letter-spacing: 0.1em;
  padding: 0;
  margin: 0;
}
body.all_view header {
  display: none;
}
body.all_view main {
  min-height: 100vh;
}
body.all_view .l-result {
  height: 100vh;
}

header {
  background-color: #E9536F;
  padding: 24px 16px;
}
@media (max-width: 1024px) {
  header {
    padding: 0;
  }
}

.l-header {
  margin: auto;
  max-width: 1120px;
  width: 100%;
}
.l-header__list {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 70px;
}
@media (max-width: 1024px) {
  .l-header__list {
    gap: 0;
  }
}
.l-header__list--button {
  width: 300px;
  color: #FFF;
  border: solid 2px #fff;
  border-radius: 16px;
  background-color: #F0879B;
  font-size: 18px;
  text-align: center;
  padding: 14px 4px;
  cursor: pointer;
  position: relative;
}
@media (max-width: 1024px) {
  .l-header__list--button {
    border: unset;
    border-radius: 0;
    width: 33.3333333333%;
    height: 60px;
    padding: 14px 4px 14px 8px;
    font-size: 16px;
  }
}
.l-header__list--button.active {
  background-color: #E9536F;
}
@media (max-width: 1024px) {
  .l-header__list--button.active::after {
    border-left: 16px solid #E9536F;
  }
}
.l-header__list--button::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #F3A8B6;
  border-right: 0;
  top: 50%;
  right: -48px;
  transform: translateY(-50%);
  z-index: 1;
}
@media (max-width: 1024px) {
  .l-header__list--button::after {
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 16px solid #F0879B;
    right: -15px;
    z-index: 2;
  }
}
.l-header__list--button::before {
  content: "";
}
@media (max-width: 1024px) {
  .l-header__list--button::before {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    top: -4px;
    border-top: 34px solid transparent;
    border-bottom: 34px solid transparent;
    border-left: 18px solid #FFF;
    border-right: 0;
    right: -18px;
    z-index: 1;
  }
}
.l-header__list--button:last-child::after {
  display: none;
}

main {
  min-height: calc(100vh - 106px);
  margin: auto;
  position: relative;
  background-image: url(../img/dots_red.png);
}
@media (max-width: 1024px) {
  main {
    min-height: calc(100vh - 60px);
    background-size: 75px;
  }
}

.l-main {
  max-width: 1120px;
  width: calc(100% - 40px);
  margin: auto;
  min-height: calc(100vh - 118px);
  background-color: rgba(255, 255, 255, 0.96);
  position: relative;
}
@media (max-width: 1024px) {
  .l-main {
    min-height: calc(100vh - 70px);
  }
}

.back_btn {
  position: fixed;
  cursor: pointer;
  left: calc(50% - 516px);
  bottom: 12px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 100;
}
@media (max-width: 1024px) {
  .back_btn {
    left: 20px;
    bottom: 12px;
  }
}
@media (max-width: 828px) {
  .back_btn {
    bottom: 112px;
  }
}
.back_btn:hover span {
  background-color: #FFF;
}
.back_btn:hover span::after {
  border-right: 16px solid #E9536F;
}
.back_btn span {
  display: block;
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #E9536F;
  border: solid 2px #E9536F;
  margin: 8px 0 0 8px;
}
.back_btn span::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 16px solid #fff;
  border-left: 0;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
}

@media (max-width: 828px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media (max-width: 828px) {
  .sp {
    display: block !important;
  }
}

/* loginModal, targetModal */
.loginModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 700;
}
.loginModal > div.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  width: 95%;
  padding: 25px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 5px 0px rgba(0, 0, 0, 0.2);
  z-index: 750;
  font-size: 1.2rem;
  color: #444;
  max-width: 600px;
  box-sizing: border-box;
}
.loginModal > div.content h2 {
  font-size: 1.4rem;
  color: #607d8b;
}
.loginModal > div.content h1 {
  font-size: 20px;
  color: #333;
}
.loginModal > div.cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  opacity: 0.25;
  z-index: 710;
  cursor: pointer;
}
.loginModal .btn {
  position: relative;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 50px;
  font-size: 14px;
  cursor: pointer;
}
.loginModal .btn:hover {
  opacity: 0.7;
}
.loginModal .btn-sm {
  width: 33% !important;
  height: 36px !important;
  max-width: 180px;
}
.loginModal .btn--blue {
  background-color: #539ff5;
  border: 1px solid #539ff5;
  color: #fff;
}
.loginModal .btn--green {
  background-color: #16be82;
  border: 1px solid #16be82;
  color: #fff;
}

/* seminarModal */
.seminarModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 700;
}
.seminarModal .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  width: 95%;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 5px 0px rgba(0, 0, 0, 0.2);
  z-index: 750;
  font-size: 1.2rem;
  color: #444;
  max-width: 540px;
  box-sizing: border-box;
}
.seminarModal .content h1 {
  font-size: 20px;
  color: #FFF;
  background-color: #31A274;
  text-align: center;
  margin: 0;
  padding: 8px;
  border-radius: 14px 14px 0 0;
}
.seminarModal .content__box {
  padding: 20px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 828px) {
  .seminarModal .content__box {
    flex-wrap: wrap;
  }
}
.seminarModal .content__box--img {
  text-align: center;
}
@media (max-width: 828px) {
  .seminarModal .content__box--img {
    width: 100%;
  }
}
.seminarModal .content__box--img img {
  max-height: 160px;
}
.seminarModal .content__box--text {
  font-size: 16px;
  font-weight: bold;
}
.seminarModal .content__box--text h2 {
  margin: 0 0 24px;
  font-size: 18px;
  color: #E9536F;
}
.seminarModal .content__box--text h2 span {
  font-size: 22px;
  margin-right: 4px;
}
.seminarModal .content__btn {
  padding: 0 20px 20px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 16px;
}
.seminarModal .content__btn .btn {
  position: relative;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 50px;
  font-size: 14px;
  cursor: pointer;
}
.seminarModal .content__btn .btn-sm {
  width: 33% !important;
  height: 36px !important;
  max-width: 180px;
}
.seminarModal .content__btn .btn--red {
  background-color: #E9536F;
  border: 2px solid #E9536F;
  color: #fff;
}
.seminarModal .content__btn .btn--red:hover {
  color: #E9536F;
  background-color: #fff;
}
.seminarModal .content__btn .btn--gray {
  background-color: #666;
  border: 2px solid #666;
  color: #fff;
}
.seminarModal .content__btn .btn--gray:hover {
  color: #666;
  background-color: #fff;
}
.seminarModal .cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  opacity: 0.25;
  z-index: 100;
  cursor: pointer;
}

/* セミナー右下 */
.l-catch {
  position: absolute;
  bottom: 24px;
  right: -32px;
  z-index: 10;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .l-catch {
    right: 0;
  }
}
.l-catch:hover {
  opacity: 0.7;
}
.l-catch__container {
  display: flex;
  align-items: flex-end;
}
.l-catch__text {
  background-color: #E9536F;
  color: #FFF;
  height: fit-content;
  padding: 8px 40px 8px 24px;
  font-weight: bold;
  border-radius: 32px 0 0 32px;
  font-size: 14px;
  position: relative;
  box-sizing: border-box;
}
@media (max-width: 828px) {
  .l-catch__text {
    padding: 8px 20px 8px 12px;
    border-radius: 24px 0 0 24px;
    width: calc(100% - 96px);
    font-size: 13px;
  }
  .l-catch__text br {
    display: none;
  }
}
.l-catch__text::after {
  content: "";
  position: absolute;
  background-color: #E9536F;
  width: 65px;
  height: 100%;
  right: -63px;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 828px) {
  .l-catch__text::after {
    width: 49px;
    right: -47px;
  }
}
.l-catch__text span {
  font-size: 20px;
  margin-right: 4px;
}
@media (max-width: 828px) {
  .l-catch__text span {
    font-size: 16px;
  }
}
.l-catch__text .play_btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  z-index: 1;
}
@media (max-width: 828px) {
  .l-catch__text .play_btn {
    width: 24px;
    height: 24px;
    right: 2px;
  }
}
.l-catch__text .play_btn span {
  display: block;
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #FFF;
  margin: 0;
}
@media (max-width: 828px) {
  .l-catch__text .play_btn span {
    width: 24px;
    height: 24px;
  }
}
.l-catch__text .play_btn span::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #31A274;
  border-right: 0;
  top: 50%;
  right: 45%;
  transform: translate(50%, -50%);
}
@media (max-width: 828px) {
  .l-catch__text .play_btn span::after {
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #31A274;
  }
}
.l-catch__img {
  width: 144px;
}
@media (max-width: 828px) {
  .l-catch__img {
    width: 96px;
  }
}
.l-catch__img img {
  width: 100%;
  border-radius: 50%;
  border: 3px solid #E9536F;
  vertical-align: bottom;
  box-sizing: border-box;
}

.l-message {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 92%;
  max-width: 400px;
}
.l-message div {
  padding: 8px 12px;
  border-radius: 2px;
  background-color: #D6EBE2;
  box-shadow: 0 0 3px 1px;
}
.l-message div span {
  font-size: 18px;
}

.l-schedule {
  text-align: center;
  margin-top: 60px;
  padding-bottom: 120px;
}
.l-schedule img {
  width: 90%;
  max-width: 360px;
  border: solid 3px #EE8C2A;
}

/* 点滅アニメーションの定義 */
@keyframes blinking {
  0% {
    width: 16px;
    height: 16px;
  }
  100% {
    width: 40px;
    height: 40px;
  }
}
.loading {
  position: absolute;
  width: 40px;
  height: 40px;
  opacity: 0.9;
  background-color: #E9536F;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  border-radius: 50%;
  animation: blinking 1s ease-in-out infinite alternate;
}

@keyframes ui-spinner-rotate-right {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(180deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes ui-spinner-rotate-left {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes ui-spinner-rotate-right {
  0% {
    -webkit-transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(180deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
  }
  75% {
    -webkit-transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes ui-spinner-rotate-left {
  0% {
    -webkit-transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
  }
  75% {
    -webkit-transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
.l-select {
  padding-top: 60px;
  opacity: 0;
  transition: 0.2s;
}
.l-select.active {
  opacity: 1;
}
.l-select__container {
  margin: auto;
  max-width: 560px;
}
.l-select__list {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  max-width: 460px;
  margin: auto;
  padding: 20px;
}
@media (max-width: 828px) {
  .l-select__list {
    max-width: 460px;
    width: calc(100% - 40px);
  }
}
.l-select__list--button {
  width: 100%;
  color: #FFF;
  border: none;
  border-radius: 32px;
  padding: 32px 24px;
  font-size: 32px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  border: solid 4px;
  position: relative;
}
@media (max-width: 828px) {
  .l-select__list--button {
    font-size: 24px;
    padding: 32px 16px;
  }
}
.l-select__list--button span {
  font-size: 64px;
  margin-right: 8px;
}
@media (max-width: 828px) {
  .l-select__list--button span {
    font-size: 48px;
  }
}
.l-select__list--button.mbti {
  background-color: #546FE8;
  border-color: #546FE8;
}
.l-select__list--button.mbti:hover {
  border-color: #193acf;
}
.l-select__list--button.theme {
  background-color: #E8C354;
  border-color: #E8C354;
}
.l-select__list--button.theme:hover {
  border-color: #c59811;
}

.l-modal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1000;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 0.4s ease-out;
}
.l-modal.show {
  display: block;
  opacity: 1;
}
.l-modal__inner {
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 100;
}
.l-modal__inner::before {
  content: "✕";
  position: absolute;
  top: calc(50% - 220px);
  right: calc(50% - 280px);
  color: #FFF;
  font-size: 24px;
  z-index: 101;
  font-weight: bold;
}
@media (max-width: 540px) {
  .l-modal__inner::before {
    top: 30%;
    right: 20px;
  }
}
.l-modal__container iframe {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  max-width: calc(100vw - 16px);
  width: 560px;
  aspect-ratio: 560/315;
}

.l-mbti {
  opacity: 0;
  transition: 0.2s;
  padding: 10px 16px;
  position: relative;
  height: calc(100vh - 138px);
  overflow: auto;
}
@media (max-width: 1024px) {
  .l-mbti {
    padding: 10px 10px;
    height: calc(100vh - 90px);
  }
}
.l-mbti::-webkit-scrollbar {
  width: 12px;
}
.l-mbti::-webkit-scrollbar-thumb {
  background: #E9536F;
  border-radius: 8px;
}
.l-mbti::-webkit-scrollbar-track {
  background: #FFF;
  border: solid 1px #E9536F;
  border-radius: 8px;
}
.l-mbti.active {
  opacity: 1;
}
.l-mbti__title {
  font-size: 32px;
  font-weight: bold;
  color: #546FE8;
}
@media (max-width: 828px) {
  .l-mbti__title {
    font-size: 24px;
  }
}
.l-mbti__container {
  margin: auto;
  max-width: 920px;
  padding-bottom: 140px;
  padding-left: 60px;
}
@media (max-width: 1024px) {
  .l-mbti__container {
    padding-left: 0px;
    padding-bottom: 180px;
  }
}
.l-mbti__container.result_box {
  width: 100%;
  padding-left: 0;
  padding-right: 8px;
  box-sizing: border-box;
}
.l-mbti__container.result_box .l-mbti__title {
  font-size: 24px;
}
@media (max-width: 828px) {
  .l-mbti__container.result_box .l-mbti__title {
    font-size: 18px;
  }
}
.l-mbti__container.result_box .l-mbti__block {
  margin-top: 24px;
}
.l-mbti__container.result_box .l-mbti__block--title {
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 828px) {
  .l-mbti__container.result_box .l-mbti__block--title {
    font-size: 18px;
  }
}
.l-mbti__container.result_box .l-mbti__block--list {
  gap: 16px 12px;
}
.l-mbti__container.result_box .l-mbti__block--list .type {
  width: 144px;
  height: 128px;
  background-size: 120px;
  background-position: center top -8px;
}
@media (max-width: 828px) {
  .l-mbti__container.result_box .l-mbti__block--list .type {
    width: calc(50% - 16px);
    height: 153px;
    background-size: 144px;
  }
}
.l-mbti__container.result_box .l-mbti__block--list .type span {
  font-size: 15px;
}
@media (max-width: 828px) {
  .l-mbti__container.result_box .l-mbti__block--list .type span {
    font-size: 14px;
  }
}
.l-mbti__block {
  margin-top: 32px;
}
@media (max-width: 828px) {
  .l-mbti__block {
    margin-top: 20px;
  }
}
.l-mbti__block.analysis {
  color: #85609A;
}
.l-mbti__block.analysis .l-mbti__block--list .type {
  background-color: #E6E1E8;
  border-color: #E6E1E8;
}
.l-mbti__block.analysis .l-mbti__block--list .type:hover {
  border-color: #85609A;
}
.l-mbti__block.diplomacy {
  color: #31A274;
}
.l-mbti__block.diplomacy .l-mbti__block--list .type {
  background-color: #D6EBE2;
  border-color: #D6EBE2;
}
.l-mbti__block.diplomacy .l-mbti__block--list .type:hover {
  border-color: #31A274;
}
.l-mbti__block.guardian {
  color: #4195B1;
}
.l-mbti__block.guardian .l-mbti__block--list .type {
  background-color: #D9EAF1;
  border-color: #D9EAF1;
}
.l-mbti__block.guardian .l-mbti__block--list .type:hover {
  border-color: #4195B1;
}
.l-mbti__block.explorer {
  color: #DEA01A;
}
.l-mbti__block.explorer .l-mbti__block--list .type {
  background-color: #F8EBD8;
  border-color: #F8EBD8;
}
.l-mbti__block.explorer .l-mbti__block--list .type:hover {
  border-color: #DEA01A;
}
.l-mbti__block--title {
  font-size: 32px;
  font-weight: bold;
}
@media (max-width: 828px) {
  .l-mbti__block--title {
    font-size: 24px;
  }
}
.l-mbti__block--list {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 24px;
  margin-top: 16px;
}
.l-mbti__block--list .type {
  width: 200px;
  height: 180px;
  background-size: 162px;
  background-position: center top -8px;
  background-repeat: no-repeat;
  border-radius: 32px;
  cursor: pointer;
  display: table;
  border: solid 2px;
}
@media (max-width: 828px) {
  .l-mbti__block--list .type {
    width: calc(50% - 16px);
    height: 153px;
    background-size: 144px;
  }
}
.l-mbti__block--list .type span {
  font-size: 18px;
  font-weight: bold;
  display: table-cell;
  vertical-align: bottom;
  text-align: center;
  padding-bottom: 4px;
}
@media (max-width: 828px) {
  .l-mbti__block--list .type span {
    font-size: 16px;
  }
}
.l-mbti__block--list .type.intj {
  background-image: url(../img/mbti/intj.jpg);
}
.l-mbti__block--list .type.intp {
  background-image: url(../img/mbti/intp.jpg);
}
.l-mbti__block--list .type.entj {
  background-image: url(../img/mbti/entj.jpg);
}
.l-mbti__block--list .type.entp {
  background-image: url(../img/mbti/entp.jpg);
}
.l-mbti__block--list .type.infj {
  background-image: url(../img/mbti/infj.jpg);
}
.l-mbti__block--list .type.infp {
  background-image: url(../img/mbti/infp.jpg);
}
.l-mbti__block--list .type.enfj {
  background-image: url(../img/mbti/enfj.jpg);
}
.l-mbti__block--list .type.enfp {
  background-image: url(../img/mbti/enfp.jpg);
}
.l-mbti__block--list .type.istj {
  background-image: url(../img/mbti/istj.jpg);
}
.l-mbti__block--list .type.isfj {
  background-image: url(../img/mbti/isfj.jpg);
}
.l-mbti__block--list .type.estj {
  background-image: url(../img/mbti/estj.jpg);
}
.l-mbti__block--list .type.esfj {
  background-image: url(../img/mbti/esfj.jpg);
}
.l-mbti__block--list .type.istp {
  background-image: url(../img/mbti/istp.jpg);
}
.l-mbti__block--list .type.isfp {
  background-image: url(../img/mbti/isfp.jpg);
}
.l-mbti__block--list .type.estp {
  background-image: url(../img/mbti/estp.jpg);
}
.l-mbti__block--list .type.esfp {
  background-image: url(../img/mbti/esfp.jpg);
}

.l-theme {
  opacity: 0;
  transition: 0.2s;
  padding: 10px 16px;
  position: relative;
  height: calc(100vh - 138px);
  overflow: auto;
}
@media (max-width: 1024px) {
  .l-theme {
    padding: 10px 10px;
    height: calc(100vh - 90px);
  }
}
.l-theme::-webkit-scrollbar {
  width: 12px;
}
.l-theme::-webkit-scrollbar-thumb {
  background: #E9536F;
  border-radius: 8px;
}
.l-theme::-webkit-scrollbar-track {
  background: #FFF;
  border: solid 1px #E9536F;
  border-radius: 8px;
}
.l-theme.active {
  opacity: 1;
}
.l-theme__title {
  font-size: 32px;
  font-weight: bold;
  color: #E8C354;
}
@media (max-width: 828px) {
  .l-theme__title {
    font-size: 24px;
  }
}
.l-theme__container {
  margin: auto;
  max-width: 920px;
  padding-bottom: 140px;
  padding-left: 60px;
}
@media (max-width: 1024px) {
  .l-theme__container {
    padding-left: 0px;
    padding-bottom: 180px;
  }
}
.l-theme__container.result_box {
  width: 100%;
  padding-left: 0;
  padding-right: 8px;
  box-sizing: border-box;
}
.l-theme__container.result_box .l-theme__title {
  font-size: 24px;
}
@media (max-width: 828px) {
  .l-theme__container.result_box .l-theme__title {
    font-size: 18px;
  }
}
.l-theme__container.result_box .l-theme__block {
  margin-top: 24px;
}
.l-theme__container.result_box .l-theme__block--title {
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 828px) {
  .l-theme__container.result_box .l-theme__block--title {
    font-size: 18px;
  }
}
.l-theme__container.result_box .l-theme__block--list {
  gap: 16px;
}
.l-theme__container.result_box .l-theme__block--list .type {
  width: 100%;
  height: 80px;
  background-size: 48px;
  background-position: left 4px center;
}
@media (max-width: 828px) {
  .l-theme__container.result_box .l-theme__block--list .type {
    width: calc(50% - 16px);
    height: 153px;
    background-size: 144px;
  }
}
.l-theme__container.result_box .l-theme__block--list .type span {
  font-size: 15px;
  padding: 0px 4px 0px 60px;
}
@media (max-width: 828px) {
  .l-theme__container.result_box .l-theme__block--list .type span {
    font-size: 14px;
  }
}
.l-theme__block {
  margin-top: 32px;
}
@media (max-width: 828px) {
  .l-theme__block {
    margin-top: 20px;
  }
}
.l-theme__block.rewarding {
  color: #85609A;
}
.l-theme__block.rewarding .l-theme__block--list .type {
  background-color: #E6E1E8;
  border-color: #E6E1E8;
}
.l-theme__block.rewarding .l-theme__block--list .type:hover {
  border-color: #85609A;
}
.l-theme__block.culture {
  color: #31A274;
}
.l-theme__block.culture .l-theme__block--list .type {
  background-color: #D6EBE2;
  border-color: #D6EBE2;
}
.l-theme__block.culture .l-theme__block--list .type:hover {
  border-color: #31A274;
}
.l-theme__block.style {
  color: #EE8C2A;
}
.l-theme__block.style .l-theme__block--list .type {
  background-color: #FFEFDF;
  border-color: #FFEFDF;
}
.l-theme__block.style .l-theme__block--list .type:hover {
  border-color: #EE8C2A;
}
.l-theme__block--title {
  font-size: 32px;
  font-weight: bold;
}
@media (max-width: 828px) {
  .l-theme__block--title {
    font-size: 24px;
  }
}
.l-theme__block--list {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 24px;
  margin-top: 16px;
}
.l-theme__block--list .type {
  width: calc(33.3333333333% - 20px);
  height: 112px;
  background-size: 80px;
  background-position: left 8px center;
  background-repeat: no-repeat;
  border-radius: 32px;
  cursor: pointer;
  display: table;
  padding: 8px 0;
  height: 112px;
  border: solid 2px;
}
@media (max-width: 1024px) {
  .l-theme__block--list .type {
    width: calc(50% - 16px);
  }
}
@media (max-width: 828px) {
  .l-theme__block--list .type {
    width: 100%;
    height: 90px;
    background-size: 72px;
  }
}
.l-theme__block--list .type span {
  font-size: 18px;
  font-weight: bold;
  display: table-cell;
  vertical-align: middle;
  padding: 0px 8px 0px 100px;
}
@media (max-width: 828px) {
  .l-theme__block--list .type span {
    font-size: 16px;
    padding: 0px 8px 0px 92px;
  }
}
.l-theme__block--list .type.theme_a1 {
  background-image: url(../img/theme/theme_a1.png);
}
.l-theme__block--list .type.theme_a2 {
  background-image: url(../img/theme/theme_a2.png);
}
.l-theme__block--list .type.theme_a3 {
  background-image: url(../img/theme/theme_a3.png);
}
.l-theme__block--list .type.theme_a4 {
  background-image: url(../img/theme/theme_a4.png);
}
.l-theme__block--list .type.theme_a5 {
  background-image: url(../img/theme/theme_a5.png);
}
.l-theme__block--list .type.theme_a6 {
  background-image: url(../img/theme/theme_a6.png);
}
.l-theme__block--list .type.theme_b1 {
  background-image: url(../img/theme/theme_b1.png);
}
.l-theme__block--list .type.theme_b2 {
  background-image: url(../img/theme/theme_b2.png);
}
.l-theme__block--list .type.theme_b3 {
  background-image: url(../img/theme/theme_b3.png);
}
.l-theme__block--list .type.theme_b4 {
  background-image: url(../img/theme/theme_b4.png);
}
.l-theme__block--list .type.theme_b5 {
  background-image: url(../img/theme/theme_b5.png);
}
.l-theme__block--list .type.theme_b6 {
  background-image: url(../img/theme/theme_b6.png);
}
.l-theme__block--list .type.theme_c1 {
  background-image: url(../img/theme/theme_c1.png);
}
.l-theme__block--list .type.theme_c2 {
  background-image: url(../img/theme/theme_c2.png);
}
.l-theme__block--list .type.theme_c3 {
  background-image: url(../img/theme/theme_c3.png);
}
.l-theme__block--list .type.theme_c4 {
  background-image: url(../img/theme/theme_c4.png);
}
.l-theme__block--list .type.theme_c5 {
  background-image: url(../img/theme/theme_c5.png);
}
.l-theme__block--list .type.theme_c6 {
  background-image: url(../img/theme/theme_c6.png);
}

.l-result {
  opacity: 0;
  transition: 0.2s;
  padding: 20px 16px 40px;
  position: relative;
  height: calc(100vh - 108px);
  overflow: auto;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .l-result {
    height: calc(100vh - 60px);
  }
}
@media (max-width: 828px) {
  .l-result {
    padding: 10px 10px;
    height: calc(100vh - 60px);
  }
}
.l-result::-webkit-scrollbar {
  width: 12px;
}
.l-result::-webkit-scrollbar-thumb {
  background: #E9536F;
  border-radius: 8px;
}
.l-result::-webkit-scrollbar-track {
  background: #FFF;
  border: solid 1px #E9536F;
  border-radius: 8px;
}
.l-result.active {
  opacity: 1;
}
.l-result__title {
  color: #E9536F;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media (max-width: 828px) {
  .l-result__title {
    font-size: 20px;
  }
}
.l-result__box {
  display: flex;
  gap: 32px;
}
.l-result__box--menu {
  width: 240px;
  height: calc(100vh - 158px);
  overflow: auto;
}
@media (max-width: 1024px) {
  .l-result__box--menu {
    display: none;
  }
}
.l-result__box--menu::-webkit-scrollbar {
  width: 12px;
}
.l-result__box--menu::-webkit-scrollbar-thumb {
  background: #546FE8;
  border-radius: 8px;
}
.l-result__box--menu::-webkit-scrollbar-track {
  background: #FFF;
  border: solid 1px #546FE8;
  border-radius: 8px;
}
.l-result__box--menu.theme::-webkit-scrollbar-thumb {
  background: #E8C354;
}
.l-result__box--menu.theme::-webkit-scrollbar-track {
  border: solid 1px #E8C354;
}
.l-result__box--contents {
  width: calc(100% - 240px - 16px);
  /*padding-bottom: 60px;*/
  padding: 0 8px;
  height: calc(100vh - 128px);
  overflow: auto;
}
@media (max-width: 1024px) {
  .l-result__box--contents {
    width: 100%;
    height: calc(100vh - 80px);
  }
}
.l-result__box--contents::-webkit-scrollbar {
  width: 12px;
}
.l-result__box--contents::-webkit-scrollbar-thumb {
  background: #E9536F;
  border-radius: 8px;
}
.l-result__box--contents::-webkit-scrollbar-track {
  background: #FFF;
  border: solid 1px #E9536F;
  border-radius: 8px;
}
.l-result__head--title {
  display: none;
}
.l-result__head--title.active {
  display: table;
}
.l-result__head--title.mbti {
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 828px) {
  .l-result__head--title.mbti {
    font-size: 16px;
  }
}
.l-result__head--title.mbti.analysis {
  color: #85609A;
}
.l-result__head--title.mbti.analysis .img {
  background-color: #E6E1E8;
}
.l-result__head--title.mbti.diplomacy {
  color: #31A274;
}
.l-result__head--title.mbti.diplomacy .img {
  background-color: #D6EBE2;
}
.l-result__head--title.mbti.guardian {
  color: #4195B1;
}
.l-result__head--title.mbti.guardian .img {
  background-color: #D9EAF1;
}
.l-result__head--title.mbti.explorer {
  color: #DEA01A;
}
.l-result__head--title.mbti.explorer .img {
  background-color: #F8EBD8;
}
.l-result__head--title.mbti .img {
  display: table-cell;
  width: 140px;
  height: 132px;
  background-size: 120px;
  background-position: center top -4px;
  background-repeat: no-repeat;
  border-radius: 8px;
  font-size: 14px;
  vertical-align: bottom;
  text-align: center;
  padding-bottom: 2px;
}
@media (max-width: 828px) {
  .l-result__head--title.mbti .img {
    width: 140px;
    height: 90px;
    background-size: 80px;
  }
}
.l-result__head--title.mbti .img.intj {
  background-image: url(../img/mbti/intj.jpg);
}
.l-result__head--title.mbti .img.intp {
  background-image: url(../img/mbti/intp.jpg);
}
.l-result__head--title.mbti .img.entj {
  background-image: url(../img/mbti/entj.jpg);
}
.l-result__head--title.mbti .img.entp {
  background-image: url(../img/mbti/entp.jpg);
}
.l-result__head--title.mbti .img.infj {
  background-image: url(../img/mbti/infj.jpg);
}
.l-result__head--title.mbti .img.infp {
  background-image: url(../img/mbti/infp.jpg);
}
.l-result__head--title.mbti .img.enfj {
  background-image: url(../img/mbti/enfj.jpg);
}
.l-result__head--title.mbti .img.enfp {
  background-image: url(../img/mbti/enfp.jpg);
}
.l-result__head--title.mbti .img.istj {
  background-image: url(../img/mbti/istj.jpg);
}
.l-result__head--title.mbti .img.isfj {
  background-image: url(../img/mbti/isfj.jpg);
}
.l-result__head--title.mbti .img.estj {
  background-image: url(../img/mbti/estj.jpg);
}
.l-result__head--title.mbti .img.esfj {
  background-image: url(../img/mbti/esfj.jpg);
}
.l-result__head--title.mbti .img.istp {
  background-image: url(../img/mbti/istp.jpg);
}
.l-result__head--title.mbti .img.isfp {
  background-image: url(../img/mbti/isfp.jpg);
}
.l-result__head--title.mbti .img.estp {
  background-image: url(../img/mbti/estp.jpg);
}
.l-result__head--title.mbti .img.esfp {
  background-image: url(../img/mbti/esfp.jpg);
}
.l-result__head--title.mbti .text {
  display: table-cell;
  vertical-align: bottom;
  padding-left: 16px;
}
@media (max-width: 828px) {
  .l-result__head--title.mbti .text {
    padding-left: 8px;
  }
}
.l-result__head--title.theme {
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
}
.l-result__head--title.theme.rewarding {
  color: #85609A;
  background-color: #E6E1E8;
}
.l-result__head--title.theme.culture {
  color: #31A274;
  background-color: #D6EBE2;
}
.l-result__head--title.theme.style {
  color: #EE8C2A;
  background-color: #FFEFDF;
}
.l-result__head--title.theme .img {
  background-size: 80px;
  background-position: center;
  background-repeat: no-repeat;
  display: table-cell;
  width: 120px;
  height: 110px;
  vertical-align: middle;
  text-align: center;
}
@media (max-width: 828px) {
  .l-result__head--title.theme .img {
    width: 100px;
    height: 90px;
  }
}
.l-result__head--title.theme .img.theme_a1 {
  background-image: url(../img/theme/theme_a1.png);
}
.l-result__head--title.theme .img.theme_a2 {
  background-image: url(../img/theme/theme_a2.png);
}
.l-result__head--title.theme .img.theme_a3 {
  background-image: url(../img/theme/theme_a3.png);
}
.l-result__head--title.theme .img.theme_a4 {
  background-image: url(../img/theme/theme_a4.png);
}
.l-result__head--title.theme .img.theme_a5 {
  background-image: url(../img/theme/theme_a5.png);
}
.l-result__head--title.theme .img.theme_a6 {
  background-image: url(../img/theme/theme_a6.png);
}
.l-result__head--title.theme .img.theme_b1 {
  background-image: url(../img/theme/theme_b1.png);
}
.l-result__head--title.theme .img.theme_b2 {
  background-image: url(../img/theme/theme_b2.png);
}
.l-result__head--title.theme .img.theme_b3 {
  background-image: url(../img/theme/theme_b3.png);
}
.l-result__head--title.theme .img.theme_b4 {
  background-image: url(../img/theme/theme_b4.png);
}
.l-result__head--title.theme .img.theme_b5 {
  background-image: url(../img/theme/theme_b5.png);
}
.l-result__head--title.theme .img.theme_b6 {
  background-image: url(../img/theme/theme_b6.png);
}
.l-result__head--title.theme .img.theme_c1 {
  background-image: url(../img/theme/theme_c1.png);
}
.l-result__head--title.theme .img.theme_c2 {
  background-image: url(../img/theme/theme_c2.png);
}
.l-result__head--title.theme .img.theme_c3 {
  background-image: url(../img/theme/theme_c3.png);
}
.l-result__head--title.theme .img.theme_c4 {
  background-image: url(../img/theme/theme_c4.png);
}
.l-result__head--title.theme .img.theme_c5 {
  background-image: url(../img/theme/theme_c5.png);
}
.l-result__head--title.theme .img.theme_c6 {
  background-image: url(../img/theme/theme_c6.png);
}
.l-result__head--title.theme .text {
  display: table-cell;
  vertical-align: middle;
  padding-left: 8px;
  font-size: 16px;
  width: 240px;
}
@media (max-width: 828px) {
  .l-result__head--title.theme .text {
    max-width: 240px;
    padding: 0 10px;
    width: calc(100% - 120px);
  }
}
.l-result__container {
  margin: auto;
}
@media (max-width: 1024px) {
  .l-result__container {
    padding-left: 0;
  }
}
@media (max-width: 828px) {
  .l-result__container {
    padding-left: 0;
  }
}
.l-result__list {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 96px 48px;
  justify-content: space-between;
  position: relative;
  padding-bottom: 180px;
}
@media (max-width: 1024px) {
  .l-result__list {
    gap: 96px 32px;
  }
}
@media (max-width: 828px) {
  .l-result__list {
    margin-top: 40px;
    gap: 40px;
    padding-bottom: 0px;
  }
}
.l-result__list .tag span.analysis {
  color: #85609A;
}
.l-result__list .tag span.diplomacy {
  color: #31A274;
}
.l-result__list .tag span.guardian {
  color: #4195B1;
}
.l-result__list .tag span.explorer {
  color: #DEA01A;
}
.l-result__list .tag span.rewarding {
  color: #85609A;
}
.l-result__list .tag span.culture {
  color: #31A274;
}
.l-result__list .tag span.style {
  color: #EE8C2A;
}
.l-result__list.all_view {
  padding-bottom: 0px;
}
.l-result__block {
  width: calc(50% - 24px);
  background-color: #F8F3F4;
  border-radius: 8px;
  padding: 16px;
  position: relative;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .l-result__block {
    width: calc(50% - 16px);
  }
}
@media (max-width: 828px) {
  .l-result__block {
    width: 100%;
    padding: 16px 10px;
  }
}
.l-result__block:nth-child(even)::after {
  content: "";
  position: absolute;
  width: calc(200% + 48px);
  height: 4px;
  right: 0;
  bottom: -48px;
  background-image: url(../img/dashed_red.png);
  background-repeat: repeat;
  background-size: 24px;
}
@media (max-width: 828px) {
  .l-result__block:nth-child(even)::after {
    display: none;
  }
}
.l-result__block:last-child::after {
  display: none;
}
.l-result__block--head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.l-result__block--head .img {
  width: calc(100% - 108px);
  height: 162px;
}
@media (max-width: 828px) {
  .l-result__block--head .img {
    height: 150px;
  }
}
.l-result__block--head .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left top;
}
.l-result__block--head .btn button {
  background-color: #E9536F;
  color: #FFF;
  font-size: 16px;
  border-radius: 16px;
  border: unset;
  padding: 4px 20px;
  font-weight: bold;
  cursor: pointer;
  border: solid 2px #E9536F;
}
.l-result__block--head .btn button:hover {
  background-color: #FFF;
  color: #E9536F;
}
.l-result__block--tag {
  font-size: 15px;
  font-weight: bold;
  position: relative;
}
.l-result__block--tag.all {
  display: none;
  padding: 4px 0;
  margin-top: 4px;
  z-index: 1;
}
.l-result__block--tag.all::before {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.7);
  width: calc(100% + 32px);
  height: 100%;
  top: 0;
  left: -16px;
  z-index: -1;
}
@media (max-width: 828px) {
  .l-result__block--tag.all::before {
    left: -10px;
    width: calc(100% + 20px);
  }
}
.l-result__block--tag.all.view {
  display: block;
}
.l-result__block--tag .tag {
  margin-top: 6px;
}
.l-result__block--tag .tag:first-child {
  margin-top: 0;
}
.l-result__block--tag .tag span {
  font-size: 18px;
  padding: 0 2px;
}
.l-result__block--tag .tag::before {
  content: "#";
}
.l-result__block--tagbtn {
  margin-top: 12px;
  text-align: center;
}
.l-result__block--tagbtn button {
  background-color: #FFF;
  color: #E9536F;
  border: solid 2px #E9536F;
  border-radius: 16px;
  padding: 4px;
  font-weight: bold;
  width: 140px;
  cursor: pointer;
}
.l-result__block--company {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  display: inline-block;
  text-decoration: underline;
  text-decoration-color: #F0879B;
  text-decoration-thickness: 3px;
  margin-bottom: 4px;
}
.l-result__block--recruit {
  display: flex;
  gap: 8px 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.l-result__block--recruit span {
  width: 48px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  padding: 2px 4px;
  color: #FFF;
  background-color: #666;
}
.l-result__block--recruit span.college {
  background-color: #E9536F;
}
.l-result__block--recruit span.junior_college {
  background-color: #EE8C2A;
}
.l-result__block--recruit span.technical {
  background-color: #DEA01A;
}
.l-result__block--recruit span.vocational {
  background-color: #31A274;
}
.l-result__block--recruit span.international {
  background-color: #4195B1;
}
.l-result__block--recruit span.graduated {
  background-color: #85609A;
}/*# sourceMappingURL=floor_style.css.map */