@charset "UTF-8";
/*----------------------------------------
	Reset
----------------------------------------*/
html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp, small,
strike, strong, sub, sup, tt, var, b, u, i, center,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article,
aside, canvas, details, embed, figure, figcaption, footer,
header, hgroup, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  border: 0;
  font-size: 100%;
  font-style: normal;
  font-weight: normal;
  font: inherit;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th, td {
  text-align: left;
  vertical-align: top;
}

img {
  border: none;
  vertical-align: top;
}

/*----------------------------------------
	Vars
----------------------------------------*/
/*----------------------------------------
	fonts
----------------------------------------*/
/*----------------------------------------
	Mediaquery
----------------------------------------*/
/*----------------------------------------
	Base
----------------------------------------*/
html {
  font-size: 14px;
}
@media screen and (min-width: 769px) {
  html {
    font-size: 15px;
  }
}

body {
  position: relative;
  z-index: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: 100%;
  background-color: #fff;
  background-color: #EBF8FF;
  color: #000000;
}
body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/bg_grid.svg");
  background-repeat: repeat;
  background-position: top left;
  background-size: 240px;
  z-index: -1;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
}
body.is-modal-open {
  overflow: hidden;
}

#main {
  background-color: transparent;
  padding: 20px 0 0;
  margin: 0;
  width: auto;
  position: relative;
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  #main {
    padding-top: 40px;
  }
}
#main * {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

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

a {
  text-decoration: none;
  transition: opacity 0.4s ease;
}
a:link, a:visited {
  color: #000000;
}

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

/*----------------------------------------
	Setting
----------------------------------------*/
/* font family */
/*----------------------------------------
	Layout
----------------------------------------*/
.l-limit {
  margin: 0 auto;
  max-width: 640px;
}
@media screen and (min-width: 769px) {
  .l-limit {
    box-sizing: border-box;
    max-width: 1400px;
  }
}

.l-frame {
  width: 94.6666666667%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .l-frame {
    width: 70.3125%;
    min-width: 640px;
    max-width: 900px;
  }
}
.l-frame--s {
  width: 89.3333333333%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .l-frame--s {
    width: 70.3125%;
    min-width: 640px;
    max-width: 900px;
  }
}

@media screen and (min-width: 769px) {
  .l-column {
    display: flex;
    justify-content: space-between;
  }
}
.l-column-both {
  display: flex;
  justify-content: space-between;
}
.l-column--wrap {
  flex-wrap: wrap;
}
.l-column--reverse {
  flex-direction: row-reverse;
}

/*----------------------------------------
	Component
----------------------------------------*/
.c-loading {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 9999;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.c-loading.is-active {
  opacity: 1;
  pointer-events: auto;
}
.c-loading__spinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.25);
  border-top-color: #ffffff;
  animation: c-loading-spin 0.75s linear infinite;
}
@keyframes c-loading-spin {
  to {
    transform: rotate(360deg);
  }
}

.c-toIndex {
  width: 94.6666666667%;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .c-toIndex {
    width: 70.3125%;
    min-width: 640px;
    max-width: 900px;
  }
}
@media screen and (min-width: 1025px) {
  .c-toIndex {
    position: relative;
    width: 89.0625%;
    max-width: 1140px;
  }
}
.c-toIndex:hover a {
  opacity: 1;
}
.c-toIndex:hover span {
  background-color: #008CEE;
  color: #ffffff;
}
.c-toIndex a {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 8px 10px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  box-sizing: border-box;
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .c-toIndex a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    border-radius: 20px;
    grid-template-columns: 1fr;
    width: -moz-fit-content;
    width: fit-content;
    gap: 10px;
    padding: 18px 10px 10px;
    margin-bottom: 0;
  }
}
.c-toIndex img {
  width: 37.6141859215%;
  margin: auto;
  grid-column: 2;
}
@media screen and (min-width: 1025px) {
  .c-toIndex img {
    width: 70px;
    grid-column: inherit;
  }
}
.c-toIndex span {
  font-weight: 700;
  background-color: #F3F3F3;
  color: #008CEE;
  font-size: 12px;
  border-radius: 8px;
  grid-column: 3;
  padding: 1px 16px;
  width: -moz-fit-content;
  width: fit-content;
  justify-self: flex-end;
  display: grid;
  place-items: center;
  transition: all 0.6s ease;
}
@media screen and (min-width: 1025px) {
  .c-toIndex span {
    grid-column: inherit;
    justify-self: center;
  }
}
.c-toIndex + section {
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .c-toIndex + section {
    margin-top: 0;
  }
}

.c-btn {
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
  box-sizing: border-box;
  display: grid;
  place-content: center;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border-radius: 30px;
  text-decoration: none;
}
.c-btn span {
  position: relative;
  font-weight: 700;
  white-space: nowrap;
  color: #008CEE;
}
.c-btn--small {
  height: 36px;
}
.c-btn--small span {
  position: relative;
  font-weight: 700;
  font-size: 11px;
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .c-btn--small span {
    font-size: 13px;
  }
}
.c-btn--more {
  max-width: 140px;
  margin: auto;
}
.c-btn--more span {
  line-height: 1;
  position: relative;
  padding-right: 24px;
}
.c-btn--more span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url(../images/ico_more.svg);
  background-size: contain;
  width: 17px;
  height: 17px;
  background-repeat: no-repeat;
  background-position: center left;
  transition: transform 0.25s ease;
}
.c-btn--region {
  min-width: -moz-fit-content;
  min-width: fit-content;
  transition: transform 0.3s ease;
  height: 50px;
  min-width: 100px;
  border: solid 4px #ffffff;
}
@media screen and (min-width: 1025px) {
  .c-btn--region {
    padding: 13px 10.5px 14px 10.5px;
    height: 62px;
    min-width: 101px;
  }
}
@media screen and (min-width: 1025px) {
  .c-btn--region {
    width: -moz-fit-content;
    width: fit-content;
    min-width: 100px;
  }
}
.c-btn--region span {
  color: #ffffff;
  padding-left: 1.2rem;
  font-size: 13px;
  line-height: 1;
}
@media screen and (min-width: 1025px) {
  .c-btn--region span {
    font-size: 17px;
  }
}
.c-btn--region span::before {
  content: "";
  background-image: url("../images/ico_pin.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 1rem;
  height: 100%;
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  left: 0rem;
  transition: all 0.3s ease;
}
.c-btn--region:hover {
  transform: scale(1.05);
  opacity: 1;
}
.c-btn--region:hover span::before {
  animation-name: bounce;
  transform-origin: center bottom;
  animation-duration: 1s;
  animation-fill-mode: both;
}
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0) translateY(-50%);
  }
  40%, 43% {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -5px, 0) translateY(-50%);
  }
  70% {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -3px, 0) translateY(-50%);
  }
  90% {
    transform: translate3d(0, -1px, 0) translateY(-50%);
  }
}

.c-hero {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 810px;
  margin: 0 0 30px 0;
}
@media screen and (min-width: 769px) {
  .c-hero {
    flex-direction: row;
    justify-content: center;
    gap: 4.4444444444%;
  }
}
@media screen and (min-width: 1025px) {
  .c-hero {
    margin: 0 0 30px 15px;
    min-width: 900px;
    gap: 5.5555555556%;
  }
}
.c-hero__ttl {
  width: -moz-fit-content;
  width: fit-content;
}
.c-hero__ttl p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 769px) {
  .c-hero__ttl p {
    font-size: 16px;
  }
}
@media screen and (min-width: 1025px) {
  .c-hero__ttl p {
    font-size: 18px;
    line-height: 1.75;
  }
}
.c-hero__ttl h1 {
  width: 214px;
  margin: 15px auto 0;
}
@media screen and (min-width: 769px) {
  .c-hero__ttl h1 {
    width: 260px;
    margin: 10px 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .c-hero__ttl h1 {
    width: 320px;
  }
}
.uiturn .c-hero__ttl h1 {
  width: 240px;
}
@media screen and (min-width: 1025px) {
  .uiturn .c-hero__ttl h1 {
    width: 340px;
  }
}
.c-hero__txt {
  flex: 1;
  margin: 16px auto 0;
}
@media screen and (min-width: 769px) {
  .c-hero__txt {
    margin: 0;
    flex: inherit;
  }
}
.c-hero__txt p {
  font-weight: 700;
  font-size: 13px;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 769px) {
  .c-hero__txt p {
    font-size: 14px;
    line-height: 2.4;
  }
}

.c-bottom {
  margin-top: 20px;
  position: relative;
}
@media screen and (min-width: 769px) {
  .c-bottom {
    margin-top: 40px;
  }
}
.real .c-bottom {
  margin-top: 0;
}
.c-bottom__links {
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  gap: 10px;
  z-index: 2;
  justify-content: center;
  width: 91.7333333333%;
}
@media screen and (min-width: 769px) {
  .c-bottom__links {
    width: 100%;
    gap: 20px;
  }
}
.c-bottom__links li {
  background-color: #ffffff;
  padding: 10px 0;
  border-radius: 20px;
  box-sizing: border-box;
  flex: 1;
  max-width: 220px;
}
@media screen and (min-width: 769px) {
  .c-bottom__links li {
    padding: 16px 25px;
  }
}
.c-bottom__links li {
  transition: transform 0.4s ease;
}
.c-bottom__links li:hover {
  transform: scale(1.05);
}
.c-bottom__links li:hover a {
  opacity: 1;
}
.real .c-bottom__links li:first-child {
  display: none;
}
.c-bottom__links li:first-child img {
  width: 44.9101796407%;
  margin: auto;
}
@media screen and (min-width: 1025px) {
  .c-bottom__links li:first-child img {
    width: 76.4705882353%;
  }
}
.uiturn .c-bottom__links li:nth-child(2) {
  display: none;
}
.c-bottom__links li:nth-child(2) img {
  width: 53.8922155689%;
  margin: auto;
}
@media screen and (min-width: 1025px) {
  .c-bottom__links li:nth-child(2) img {
    width: 81.1764705882%;
  }
}
.search .c-bottom__links li:nth-child(3) {
  display: none;
}
.c-bottom__links li:nth-child(3) img {
  width: 59.880239521%;
  margin: auto;
  padding-bottom: 10px;
}
@media screen and (min-width: 1025px) {
  .c-bottom__links li:nth-child(3) img {
    width: 94.1176470588%;
  }
}
.c-bottom__links a {
  height: 100%;
  width: 100%;
  position: relative;
  display: grid;
  place-items: center;
  padding-top: 18px;
  box-sizing: border-box;
}
@media screen and (min-width: 1025px) {
  .c-bottom__links a {
    padding-top: 25px;
  }
}
.c-bottom__links p {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 9px;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 769px) {
  .c-bottom__links p {
    font-size: 12px;
  }
}
.c-carousel__wrap {
  overflow: hidden;
  width: 100%;
}
.c-carousel__track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
}
.c-carousel__track--overlay {
  position: relative;
}
.c-carousel__track--overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(36, 36, 36, 0.5);
  z-index: 1;
}
.c-carousel__item img {
  will-change: transform;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes scroll-top {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes scroll-bottom {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0%);
  }
}
.c-carousel--bottom .c-carousel__track {
  animation: scroll-left 40s linear infinite;
}
.c-carousel--bottom .c-carousel__item {
  width: 52.8vw;
  max-width: 240px;
}
@media screen and (min-width: 769px) {
  .c-carousel--bottom .c-carousel__item {
    width: 22.813vw;
    max-width: 300px;
  }
}
@media screen and (min-width: 1025px) {
  .c-carousel--top01, .c-carousel--top02 {
    position: fixed;
    height: 100vh;
  }
}
@media screen and (min-width: 1025px) {
  .c-carousel--top01 .c-carousel__track, .c-carousel--top02 .c-carousel__track {
    flex-direction: column;
  }
}
.c-carousel--top01 .c-carousel__item, .c-carousel--top02 .c-carousel__item {
  width: 28vw;
  max-width: 140px;
}
@media screen and (min-width: 1025px) {
  .c-carousel--top01 .c-carousel__item, .c-carousel--top02 .c-carousel__item {
    width: 14.867vw;
    max-width: 240px;
  }
}
.c-carousel--top01 {
  margin-top: -30px;
}
@media screen and (min-width: 1025px) {
  .c-carousel--top01 {
    top: 0;
    left: 0;
  }
}
.c-carousel--top01 .c-carousel__track {
  animation: scroll-left 40s linear infinite;
}
@media screen and (min-width: 1025px) {
  .c-carousel--top01 .c-carousel__track {
    animation: scroll-top 40s linear infinite;
  }
}
.c-carousel--top02 {
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 1025px) {
  .c-carousel--top02 {
    left: inherit;
    right: 0;
  }
}
.c-carousel--top02 .c-carousel__track {
  animation: scroll-right 40s linear infinite;
}
@media screen and (min-width: 1025px) {
  .c-carousel--top02 .c-carousel__track {
    animation: scroll-bottom 40s linear infinite;
  }
}

.c-tab {
  overflow-y: hidden;
  overflow-x: scroll;
  padding-top: 15px;
  margin-top: -15px;
  margin-bottom: -1px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .c-tab {
    overflow: visible;
  }
}
.c-tab__logo {
  position: absolute;
  top: 15px;
  right: 10px;
  width: 160px;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .c-tab__logo {
    top: 12px;
    width: 250px;
  }
}
.search-child .c-tab__logo {
  width: 100px;
}
@media screen and (min-width: 769px) {
  .search-child .c-tab__logo {
    width: 170px;
  }
}
.c-tab__inner {
  display: flex;
  gap: 8px;
}
.c-tab__wrap {
  border-radius: 0 20px 20px 20px;
  overflow: hidden;
  padding: 12px;
}
@media screen and (min-width: 769px) {
  .c-tab__wrap {
    border-radius: 0 30px 30px 30px;
    padding: 15px;
  }
}
.c-tab__content {
  display: none;
  position: relative;
}
.c-tab__content.is-active {
  display: block;
}

.c-tab__btn {
  position: relative;
  min-width: 116px;
  width: -moz-fit-content;
  width: fit-content;
  height: 36px;
  padding: 0 18px;
  border-radius: 12px 12px 0 0;
  color: #fff;
  font-weight: bold;
  border: none;
  font-size: 12px;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .c-tab__btn {
    min-width: 136px;
    height: 50px;
    padding: 0 30px;
    border-radius: 18px 18px 0 0;
    font-size: 16px;
  }
}
.c-tab__btn::before {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -7px;
  height: 30px;
  width: 8px;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .c-tab__btn::before {
    right: -8.5px;
    height: 38px;
    width: 9px;
  }
}
.c-tab__btn.blue {
  background-color: #77A9CC;
}
.c-tab__btn.blue::before {
  background-color: #77A9CC;
}
.c-tab__btn.blue.is-active {
  background-color: #008CEE;
}
.c-tab__btn.blue.is-active::before {
  background-color: #008CEE;
}
.c-tab__btn.comingsoon {
  pointer-events: none;
  opacity: 1;
  background-color: #D0D0D0 !important;
  position: relative;
  color: rgba(255, 255, 255, 0.25);
}
.c-tab__btn.comingsoon::before {
  background-color: #D0D0D0 !important;
}
.c-tab__btn.new {
  color: #ffffff;
}
.c-tab__btn.new::after {
  content: "";
  position: absolute;
  background-image: url("../images/real/ico_new.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  top: -14px;
  left: -6px;
  width: 26px;
  height: 26px;
}
@media screen and (min-width: 769px) {
  .c-tab__btn.new::after {
    top: -10px;
    left: -10px;
    width: 38px;
    height: 38px;
  }
}
.real-quiz .c-tab__btn span, .real-voice .c-tab__btn span {
  position: relative;
  padding-left: 26px;
  margin-left: -5px;
}
@media screen and (min-width: 769px) {
  .real-quiz .c-tab__btn span, .real-voice .c-tab__btn span {
    padding-left: 40px;
  }
}
.real-quiz .c-tab__btn span::before, .real-voice .c-tab__btn span::before {
  content: "";
  background-image: url("../images/real/ico_book.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 16.85px;
  height: 16px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0rem;
}
@media screen and (min-width: 769px) {
  .real-quiz .c-tab__btn span::before, .real-voice .c-tab__btn span::before {
    width: 28px;
    height: 26px;
  }
}

button.c-tab__btn {
  cursor: pointer;
}

.c-tab__link {
  border-radius: 20px;
  border: solid 1px #008CEE;
  background-color: #ffffff;
  color: #008CEE;
  text-align: center;
  flex-direction: column;
  margin: auto;
  height: -moz-fit-content;
  height: fit-content;
  cursor: pointer;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding: 17px 32px;
}
@media screen and (min-width: 769px) {
  .c-tab__link {
    padding: 30px 80px;
  }
}
.c-tab__link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  height: 12px;
  width: 8px;
  background-color: #008CEE;
  mask-image: url("../images/ico_arrow.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../images/ico_arrow.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
.c-tab__link small {
  font-size: 12px;
}
@media screen and (min-width: 769px) {
  .c-tab__link small {
    font-size: 14px;
  }
}
.c-tab__link p {
  font-size: 18px;
  margin-top: 6px;
}
@media screen and (min-width: 769px) {
  .c-tab__link p {
    font-size: 22px;
  }
}

.c-content {
  background-color: #ffffff;
  padding: 30px 20px;
}
@media screen and (min-width: 769px) {
  .c-content {
    padding: 40px;
  }
}
@media screen and (min-width: 1025px) {
  .c-content {
    padding: 60px;
  }
}
.c-content:not(.c-tab__wrap) {
  border-radius: 20px;
}
@media screen and (min-width: 769px) {
  .c-content:not(.c-tab__wrap) {
    border-radius: 30px;
  }
}
.c-content__wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 769px) {
  .c-content__wrap {
    gap: 30px;
    flex-direction: row;
    justify-content: space-between;
  }
}
.c-content__lead {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 20px;
  overflow: hidden;
  height: 33px;
}
.c-content__lead img, .c-content__lead svg {
  width: -moz-fit-content;
  width: fit-content;
  height: 11.2px;
  padding: 0 32px 0 20px;
}
.c-content__lead span {
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  height: 100%;
  padding: 0 20px;
  border-radius: 20px;
}
.c-content__head {
  font-weight: 700;
  margin-top: 16px;
  font-size: 26px;
}
@media screen and (min-width: 769px) {
  .c-content__head {
    margin-top: 20px;
  }
}
@media screen and (min-width: 769px) {
  .real-voice .c-content__head {
    font-size: 38px;
  }
}
@media screen and (min-width: 1025px) {
  .real-voice .c-content__head {
    font-size: 46px;
  }
}
@media screen and (min-width: 769px) {
  .real-quiz .c-content__head {
    font-size: 30px;
  }
}
@media screen and (min-width: 1025px) {
  .real-quiz .c-content__head {
    font-size: clamp(32px, 15.922px + 1.569vw, 36px);
  }
}
.c-content__head small {
  font-size: 16px;
}
@media screen and (min-width: 769px) {
  .c-content__head small {
    font-size: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .c-content__head small {
    font-size: 24px;
  }
}
.c-content__head + p {
  font-size: 14px;
  margin-top: 30px;
}
@media screen and (min-width: 769px) {
  .c-content__head + p {
    font-size: 18px;
    margin-top: 40px;
  }
}
.c-content__note {
  margin-top: 30px;
  font-size: 10px;
}
@media screen and (min-width: 769px) {
  .c-content__note {
    margin-top: 40px;
    font-size: 12px;
  }
}

.c-modal {
  position: fixed;
  inset: 0;
  z-index: 1010;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
  overflow: scroll;
}
.c-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.c-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}
.c-modal__close {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .c-modal__close {
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
  }
}
.c-modal__close::before, .c-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: #000000;
  transform-origin: center;
}
.c-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.c-modal__container {
  position: relative;
  z-index: 1;
  width: max(90%, 355px);
  margin: 64px auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 18px 70px;
  box-sizing: border-box;
  overflow: scroll;
}
@media screen and (min-width: 769px) {
  .c-modal__container {
    width: min(90%, 738px);
    border-radius: 20px;
    padding: 80px;
  }
}

[feedin-content] {
  opacity: 0;
}

/*----------------------------------------
	Utility
----------------------------------------*/
.u-hidden {
  display: none;
}

@media screen and (max-width: 768px) {
  .u-hidden-sp {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .u-hidden-pc {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  .u-hidden-lg {
    display: none;
  }
}

.u-left {
  text-align: left;
}

.u-center {
  text-align: center;
}

.u-right {
  text-align: right;
}

.u-red {
  color: red;
}

.u-bg-red {
  background-color: red;
}

/* 
* 余白打ち消しクラス
*/
.u-noRadius {
  border-radius: 0 !important;
}

.u-noMargin {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.u-noMargin-top {
  margin-top: 0 !important;
}

.u-noMargin-bottom {
  margin-bottom: 0 !important;
}

.u-noPadding {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.u-noPadding-top {
  padding-top: 0 !important;
}

.u-noPadding-bottom {
  padding-bottom: 0 !important;
}

/* 
* 余白
*/
.-padding-t {
  padding-top: 10px;
}
.-padding-t.-x2 {
  padding-top: 20px;
}
.-padding-t.-x4 {
  padding-top: 40px;
}
.-padding-t.-x6 {
  padding-top: 60px;
}
.-padding-t.-x8 {
  padding-top: 80px;
}
.-padding-t.-x10 {
  padding-top: 100px;
}

.-padding-b {
  padding-bottom: 10px;
}
.-padding-b.-x2 {
  padding-bottom: 20px;
}
.-padding-b.-x4 {
  padding-bottom: 40px;
}
.-padding-b.-x6 {
  padding-bottom: 60px;
}
.-padding-b.-x8 {
  padding-bottom: 80px;
}
.-padding-b.-x10 {
  padding-bottom: 100px;
}

.-margin-t {
  margin-top: 10px;
}
.-margin-t.-x2 {
  margin-top: 20px;
}
.-margin-t.-x4 {
  margin-top: 40px;
}
.-margin-t.-x6 {
  margin-top: 60px;
}
.-margin-t.-x8 {
  margin-top: 80px;
}
.-margin-t.-x10 {
  margin-top: 100px;
}

.-margin-b {
  margin-bottom: 10px;
}
.-margin-b.-x2 {
  margin-bottom: 20px;
}
.-margin-b.-x4 {
  margin-bottom: 40px;
}
.-margin-b.-x6 {
  margin-bottom: 60px;
}
.-margin-b.-x8 {
  margin-bottom: 80px;
}
.-margin-b.-x10 {
  margin-bottom: 100px;
}

/*----------------------------------------
	Page Home
----------------------------------------*/
.home-index {
  min-height: 100vh;
}
@media screen and (min-width: 769px) {
  .home-index #main {
    margin-top: 0;
  }
}
.home-index #main h1,
.home-index #main h2,
.home-index #main p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.home-index .t-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: calc(100vh - 170px);
}
@media screen and (min-width: 769px) {
  .home-index .t-content {
    padding-bottom: 80px;
  }
}
.home-index section {
  width: 81.3333333333%;
}
@media screen and (min-width: 769px) {
  .home-index section {
    width: 54.6875%;
    min-width: 650px;
  }
}
.home-index .t-content__hero {
  padding-top: 30px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .home-index .t-content__hero {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (min-width: 1025px) {
  .home-index .t-content__hero {
    padding-top: 10px;
  }
}
.home-index .t-content__hero h1 {
  width: 91.8032786885%;
  max-width: 350px;
  margin: auto;
  position: relative;
}
@media screen and (min-width: 769px) {
  .home-index .t-content__hero h1 {
    width: 51.4285714286%;
    max-width: 406px;
    margin: 0;
  }
}
.home-index .t-content__hero h1 .-compass {
  position: absolute;
  top: 0;
  left: 0;
  animation: bounceSpin 3.5s 0.8s ease-in-out;
  transform-origin: 59% 30.7%;
}
@keyframes bounceSpin {
  /* 待機 */
  0% {
    transform: rotate(0deg);
  }
  /* 一回転 */
  15% {
    transform: rotate(-60deg);
  }
  50% {
    transform: rotate(720deg);
  }
  /* 待機 */
  100% {
    transform: rotate(720deg);
  }
}
.home-index .t-content__hero p {
  font-size: 18px;
  text-align: center;
  margin-top: 20px;
  line-height: 27px;
}
@media screen and (min-width: 769px) {
  .home-index .t-content__hero p {
    text-align: left;
    font-size: 32px;
    line-height: 52px;
  }
}
.home-index .t-content__lead {
  margin-top: 50px;
  position: relative;
  box-sizing: border-box;
  padding: 5px 0;
}
@media screen and (min-width: 769px) {
  .home-index .t-content__lead {
    padding: 10px 0;
  }
}
.home-index .t-content__lead::before, .home-index .t-content__lead::after {
  content: "";
  width: 20px;
  height: 100%;
  position: absolute;
  top: 0;
  border-color: #000000;
  border-style: solid;
}
.home-index .t-content__lead::before {
  border-width: 2px 0 2px 2px;
  left: -14px;
}
@media screen and (min-width: 769px) {
  .home-index .t-content__lead::before {
    left: 0;
  }
}
.home-index .t-content__lead::after {
  border-width: 2px 2px 2px 0;
  right: -14px;
}
@media screen and (min-width: 769px) {
  .home-index .t-content__lead::after {
    right: 0;
  }
}
.home-index .t-content__lead * {
  letter-spacing: 0.06em;
}
.home-index .t-content__lead h2 {
  font-size: 16px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .home-index .t-content__lead h2 {
    font-size: 20px;
  }
}
.home-index .t-content__lead p {
  font-size: 13px;
  line-height: 1.75;
  width: 90.4918032787%;
  margin: 12px auto 0;
}
@media screen and (min-width: 769px) {
  .home-index .t-content__lead p {
    font-size: 16px;
    text-align: center;
    margin: 20px auto 0;
  }
}
.home-index .t-content__links {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  .home-index .t-content__links {
    margin-top: 40px;
    margin-bottom: 0px;
  }
}
.home-index .t-content__links li {
  background-color: #ffffff;
  border-radius: 10px;
  border: solid 4px #ffffff;
  box-sizing: border-box;
  transition: border 0.6s ease;
}
@media screen and (min-width: 769px) {
  .home-index .t-content__links li {
    border-radius: 20px;
  }
}
.home-index .t-content__links li::before {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/ico_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 8px;
  height: 12px;
}
@media screen and (min-width: 769px) {
  .home-index .t-content__links li::before {
    right: 25px;
  }
}
.home-index .t-content__links li + li {
  margin-top: 10px;
}
.home-index .t-content__links li {
  position: relative;
}
.home-index .t-content__links li a {
  box-sizing: border-box;
  padding: 12px;
  height: 136px;
  margin-left: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .home-index .t-content__links li a {
    justify-content: center;
    flex-direction: row;
    height: 140px;
    margin-left: 0;
  }
}
.home-index .t-content__links li:hover {
  border-color: #008CEE;
  box-sizing: border-box;
}
.home-index .t-content__links li:hover a {
  opacity: 1;
}
.home-index .t-content__links li:hover span {
  background-color: #008CEE;
  color: #ffffff;
}
.home-index .t-content__links span {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-size: 11px;
  font-weight: 700;
  height: calc(100% - 8px);
  background-color: #EDEDED;
  border-radius: 15px;
  text-align: center;
  padding: 0 2.25px;
  letter-spacing: 0.7em;
  text-align: center;
  transition: all 0.6s ease;
}
@media screen and (min-width: 769px) {
  .home-index .t-content__links span {
    font-size: 14px;
    letter-spacing: 0.6em;
    height: calc(100% - 26px);
    padding: 0 4.5px;
  }
}
.home-index .t-content__links p {
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .home-index .t-content__links p {
    width: 50%;
    margin-left: 40px;
    font-size: 15px;
    letter-spacing: 0.06em;
  }
}
.home-index .t-content__links h2 {
  flex: 1;
  display: grid;
  place-items: center;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .home-index .t-content__links h2 {
    width: 50%;
    margin-left: -68px;
  }
}
.home-index .t-content__links li:nth-child(1) img {
  width: 38.3458646617%;
  width: 102px;
}
@media screen and (min-width: 769px) {
  .home-index .t-content__links li:nth-child(1) img {
    width: 182px;
  }
}
.home-index .t-content__links li:nth-child(2) img {
  width: 41.3533834586%;
  width: 110px;
}
@media screen and (min-width: 769px) {
  .home-index .t-content__links li:nth-child(2) img {
    width: 189px;
  }
}
.home-index .t-content__links li:nth-child(3) img {
  width: 48.8721804511%;
  width: 130px;
}
@media screen and (min-width: 769px) {
  .home-index .t-content__links li:nth-child(3) img {
    width: 208px;
  }
}

.t-map__links li[data-region=hokkaido] a {
  background-color: #77b330;
}

.t-filter[data-region=hokkaido] .t-filter__tabBtn[data-tab=area] {
  background-color: #77b330;
}
.t-filter[data-region=hokkaido] .t-filter__tabBtn[data-tab=area]::before {
  background-color: #77b330;
}
.t-filter[data-region=hokkaido] .t-filter__contents:has(.is-active[data-content=area]) {
  background-color: #77b330;
}

.t-nav__list li[data-region=hokkaido] a {
  background-color: #77b330;
}

.t-map__links li[data-region=koshinetsu] a {
  background-color: #1933bf;
}

.t-filter[data-region=koshinetsu] .t-filter__tabBtn[data-tab=area] {
  background-color: #1933bf;
}
.t-filter[data-region=koshinetsu] .t-filter__tabBtn[data-tab=area]::before {
  background-color: #1933bf;
}
.t-filter[data-region=koshinetsu] .t-filter__contents:has(.is-active[data-content=area]) {
  background-color: #1933bf;
}

.t-nav__list li[data-region=koshinetsu] a {
  background-color: #1933bf;
}

.t-map__links li[data-region=tohoku] a {
  background-color: #53a5e3;
}

.t-filter[data-region=tohoku] .t-filter__tabBtn[data-tab=area] {
  background-color: #53a5e3;
}
.t-filter[data-region=tohoku] .t-filter__tabBtn[data-tab=area]::before {
  background-color: #53a5e3;
}
.t-filter[data-region=tohoku] .t-filter__contents:has(.is-active[data-content=area]) {
  background-color: #53a5e3;
}

.t-nav__list li[data-region=tohoku] a {
  background-color: #53a5e3;
}

.t-map__links li[data-region=hokuriku] a {
  background-color: #1ab7bd;
}

.t-filter[data-region=hokuriku] .t-filter__tabBtn[data-tab=area] {
  background-color: #1ab7bd;
}
.t-filter[data-region=hokuriku] .t-filter__tabBtn[data-tab=area]::before {
  background-color: #1ab7bd;
}
.t-filter[data-region=hokuriku] .t-filter__contents:has(.is-active[data-content=area]) {
  background-color: #1ab7bd;
}

.t-nav__list li[data-region=hokuriku] a {
  background-color: #1ab7bd;
}

.t-map__links li[data-region=kanto] a {
  background-color: #2e5ee0;
}

.t-filter[data-region=kanto] .t-filter__tabBtn[data-tab=area] {
  background-color: #2e5ee0;
}
.t-filter[data-region=kanto] .t-filter__tabBtn[data-tab=area]::before {
  background-color: #2e5ee0;
}
.t-filter[data-region=kanto] .t-filter__contents:has(.is-active[data-content=area]) {
  background-color: #2e5ee0;
}

.t-nav__list li[data-region=kanto] a {
  background-color: #2e5ee0;
}

.t-map__links li[data-region=tokai] a {
  background-color: #b17b45;
}

.t-filter[data-region=tokai] .t-filter__tabBtn[data-tab=area] {
  background-color: #b17b45;
}
.t-filter[data-region=tokai] .t-filter__tabBtn[data-tab=area]::before {
  background-color: #b17b45;
}
.t-filter[data-region=tokai] .t-filter__contents:has(.is-active[data-content=area]) {
  background-color: #b17b45;
}

.t-nav__list li[data-region=tokai] a {
  background-color: #b17b45;
}

.t-map__links li[data-region=kinki] a {
  background-color: #faad0f;
}

.t-filter[data-region=kinki] .t-filter__tabBtn[data-tab=area] {
  background-color: #faad0f;
}
.t-filter[data-region=kinki] .t-filter__tabBtn[data-tab=area]::before {
  background-color: #faad0f;
}
.t-filter[data-region=kinki] .t-filter__contents:has(.is-active[data-content=area]) {
  background-color: #faad0f;
}

.t-nav__list li[data-region=kinki] a {
  background-color: #faad0f;
}

.t-map__links li[data-region=chugoku] a {
  background-color: #d372c0;
}

.t-filter[data-region=chugoku] .t-filter__tabBtn[data-tab=area] {
  background-color: #d372c0;
}
.t-filter[data-region=chugoku] .t-filter__tabBtn[data-tab=area]::before {
  background-color: #d372c0;
}
.t-filter[data-region=chugoku] .t-filter__contents:has(.is-active[data-content=area]) {
  background-color: #d372c0;
}

.t-nav__list li[data-region=chugoku] a {
  background-color: #d372c0;
}

.t-map__links li[data-region=shikoku] a {
  background-color: #96b068;
}

.t-filter[data-region=shikoku] .t-filter__tabBtn[data-tab=area] {
  background-color: #96b068;
}
.t-filter[data-region=shikoku] .t-filter__tabBtn[data-tab=area]::before {
  background-color: #96b068;
}
.t-filter[data-region=shikoku] .t-filter__contents:has(.is-active[data-content=area]) {
  background-color: #96b068;
}

.t-nav__list li[data-region=shikoku] a {
  background-color: #96b068;
}

.t-map__links li[data-region=kyusyu] a {
  background-color: #fa8094;
}

.t-filter[data-region=kyusyu] .t-filter__tabBtn[data-tab=area] {
  background-color: #fa8094;
}
.t-filter[data-region=kyusyu] .t-filter__tabBtn[data-tab=area]::before {
  background-color: #fa8094;
}
.t-filter[data-region=kyusyu] .t-filter__contents:has(.is-active[data-content=area]) {
  background-color: #fa8094;
}

.t-nav__list li[data-region=kyusyu] a {
  background-color: #fa8094;
}

/*----------------------------------------
	search-index
----------------------------------------*/
.search-index #main .t-map__txt * {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.search-index .t-map {
  border: solid 8px #008CEE;
  border-radius: 30px;
  position: relative;
  padding: 15px 15px 20px;
  overflow: hidden;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .search-index .t-map {
    padding: 45px 15px 60px;
    max-width: 620px;
  }
}
@media screen and (min-width: 1025px) {
  .search-index .t-map {
    border: solid 12px #008CEE;
    padding: 14px 6px 0;
    width: 900px;
    max-width: inherit;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.search-index .t-map__txt {
  margin: auto;
  max-width: 420px;
}
@media screen and (min-width: 1025px) {
  .search-index .t-map__txt {
    position: absolute;
    max-width: inherit;
    left: 50px;
    top: 40px;
  }
}
.search-index .t-map__txt h1 {
  font-size: 15px;
  line-height: 23px;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .search-index .t-map__txt h1 {
    font-size: 22px;
    line-height: 32px;
  }
}
@media screen and (min-width: 1025px) {
  .search-index .t-map__txt h1 {
    text-align: left;
  }
}
.search-index .t-map__txt h1 img {
  width: 260px;
  margin: 10px auto 0;
}
@media screen and (min-width: 1025px) {
  .search-index .t-map__txt h1 img {
    margin: 16px 0 0;
    width: 390px;
  }
}
.search-index .t-map__txt p {
  font-size: clamp(12px, 8.939px + 0.816vw, 14px);
  letter-spacing: 0.06em;
  line-height: 1.75;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px 10px 0;
}
@media screen and (min-width: 769px) {
  .search-index .t-map__txt p {
    margin: 32px 0 0;
    font-size: 16px;
  }
}
.search-index .t-map__txt p span {
  margin-left: -0.65rem;
  display: inline-block;
}
.search-index .t-map__links {
  position: relative;
  margin: auto;
  max-width: 420px;
}
@media screen and (min-width: 1025px) {
  .search-index .t-map__links {
    max-width: 800px;
    margin: 0 0 0 auto;
  }
}
.search-index .t-map__links img {
  position: absolute;
  right: -1%;
  top: -145px;
  width: 58%;
  z-index: -1;
}
@media screen and (min-width: 1025px) {
  .search-index .t-map__links img {
    width: 100%;
    margin: 0;
    position: static;
  }
}
.search-index .t-map__links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
  gap: 10px 0;
}
@media screen and (min-width: 1025px) {
  .search-index .t-map__links ul {
    margin-top: 0;
    gap: 18px 0;
    display: block;
  }
}
.search-index .t-map__links li {
  min-width: -moz-fit-content;
  min-width: fit-content;
  width: 30%;
}
@media screen and (min-width: 1025px) {
  .search-index .t-map__links li {
    position: absolute;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 100px;
  }
  .search-index .t-map__links li[data-region=hokkaido] {
    top: 65px;
    right: 105px;
  }
  .search-index .t-map__links li[data-region=tohoku] {
    top: 214px;
    right: 96px;
  }
  .search-index .t-map__links li[data-region=koshinetsu] {
    top: 204px;
    right: 208px;
  }
  .search-index .t-map__links li[data-region=kanto] {
    top: 316px;
    right: 164px;
  }
  .search-index .t-map__links li[data-region=hokuriku] {
    top: 285px;
    right: 274px;
  }
  .search-index .t-map__links li[data-region=tokai] {
    bottom: 86px;
    right: 223px;
  }
  .search-index .t-map__links li[data-region=kinki] {
    bottom: 117px;
    left: 376px;
  }
  .search-index .t-map__links li[data-region=chugoku] {
    bottom: 155px;
    left: 270px;
  }
  .search-index .t-map__links li[data-region=shikoku] {
    bottom: 54px;
    left: 306px;
  }
  .search-index .t-map__links li[data-region=kyusyu] {
    bottom: 56px;
    left: 140px;
  }
}
.search-index .t-map__links li:last-child span {
  font-size: 11px;
}
@media screen and (min-width: 480px) {
  .search-index .t-map__links li:last-child span {
    font-size: 13px;
  }
}
@media screen and (min-width: 1025px) {
  .search-index .t-map__links li:last-child span {
    font-size: 17px;
  }
}

/*----------------------------------------
	search-child
----------------------------------------*/
.search-child .t-filter {
  border-radius: 24px;
  position: relative;
}
.search-child .t-filter__tabBtn {
  opacity: 1;
}
.search-child .t-filter__tabBtn[data-tab=industry] {
  background-color: #008CEE;
}
.search-child .t-filter__tabBtn[data-tab=industry]::before {
  background-color: #008CEE;
}
.search-child .t-filter__contents {
  position: relative;
}
.search-child .t-filter__contents:has(.is-active[data-content=industry]) {
  background-color: #008CEE;
}
.search-child .t-filter__content {
  border-radius: 16px;
  background-color: #ffffff;
}
.search-child .t-filter__content.is-active {
  display: flex;
  padding: 15px 15px 20px;
  gap: 10px;
  flex-direction: row;
}
.search-child .t-filter__subContents {
  overflow: hidden;
  background: #EDEDED;
  border-radius: 0 2px 2px 0;
  width: 100%;
  flex: 1;
}
.search-child .t-filter__subContent {
  visibility: hidden;
  max-height: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.search-child .t-filter__subContent.is-active {
  max-height: -moz-fit-content;
  max-height: fit-content;
  visibility: visible;
  opacity: 1;
  padding: 15px 10px;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .search-child .t-filter__subContent.is-active {
    padding: 20px;
  }
}
.search-child .t-filter__subTab {
  display: flex;
  gap: 10px 15px;
  float: left;
  flex-direction: column;
  justify-content: flex-start;
  width: 85px;
  position: relative;
}
@media screen and (min-width: 769px) {
  .search-child .t-filter__subTab {
    width: 168px;
  }
}
.search-child .t-filter__subTab__bg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #EDEDED;
  width: calc(100% + 10px);
  height: 40px;
  border-radius: 2px 0 0 2px;
  transition: transform 0.4s ease;
  z-index: 0;
}
.search-child .t-filter__subTabBtn {
  display: grid;
  place-content: center;
  background-color: #ffffff;
  height: 40px;
  padding: 0;
  border: 1px solid #B2B2B2;
  font-size: 11px;
  line-height: 1.2;
  color: #006BCD;
  transition: border-color 0.3s;
  text-align: center;
  position: relative;
  cursor: pointer;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .search-child .t-filter__subTabBtn {
    font-size: 14px;
  }
}
.search-child .t-filter__subTabBtn.is-active {
  border-color: transparent;
  background-color: transparent;
}
.search-child .t-filter__checkAll label, .search-child .t-filter__checkList label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.15s;
}
.search-child .t-filter__checkAll label:hover, .search-child .t-filter__checkList label:hover {
  background: #f0f7ff;
}
.search-child .t-filter__checkAll input[type=checkbox], .search-child .t-filter__checkList input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: solid 1px #B2B2B2;
  background-color: #ffffff;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin: 0;
  cursor: pointer;
  position: relative;
}
.search-child .t-filter__checkAll input[type=checkbox]:checked, .search-child .t-filter__checkList input[type=checkbox]:checked {
  border-color: #B2B2B2;
  background-color: #ffffff;
}
.search-child .t-filter__checkAll input[type=checkbox]:checked::after, .search-child .t-filter__checkList input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-color: #006BCD;
}
.search-child .t-filter__checkAll span, .search-child .t-filter__checkList span {
  font-size: 13px;
  line-height: 1.2;
  color: #006BCD;
}
@media screen and (min-width: 769px) {
  .search-child .t-filter__checkAll span, .search-child .t-filter__checkList span {
    font-size: 15px;
  }
}
.search-child .t-filter__checkList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 10px;
}
@media screen and (min-width: 769px) {
  .search-child .t-filter__checkList {
    gap: 14px;
    grid-template-columns: 1fr 1fr;
  }
  .search-child .t-filter__checkList li {
    margin-right: 3px;
  }
}
.search-child .t-count {
  text-align: center;
  font-size: 11px;
  padding-top: 32px;
  margin-top: -20px;
  background-color: #EDEDED;
}
@media screen and (min-width: 769px) {
  .search-child .t-count {
    font-size: 14px;
  }
}
.search-child .t-count p,
.search-child .t-count strong {
  font-weight: 700;
  color: #000000;
}
.search-child .t-count strong {
  font-size: 22px;
  margin: 0 2px;
}
@media screen and (min-width: 769px) {
  .search-child .t-count strong {
    font-size: 24px;
  }
}
.search-child .t-company__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #EDEDED;
  padding: 2px 0 20px;
  border-radius: 0 0 20px 20px;
}
@media screen and (min-width: 769px) {
  .search-child .t-company__list {
    padding: 15px 0 20px;
    gap: 20px;
    border-radius: 0 0 30px 30px;
  }
}
.search-child .t-company__item {
  position: relative;
  background: #fff;
  overflow: hidden;
  border-radius: 20px;
  width: 94.3661971831%;
  margin: auto;
  padding: 20px 20px 15px;
  box-sizing: border-box;
  justify-content: space-between;
  width: 94.3661971831%;
  display: grid;
  grid-template-columns: 61.0169491525% 33.8983050847%;
  grid-template-rows: auto auto;
  grid-auto-flow: row;
  grid-template-areas: "t-company__item-header t-company__item-banner" "t-company__point t-company__point";
}
@media screen and (min-width: 769px) {
  .search-child .t-company__item {
    width: 88.8888888889%;
    padding: 20px 30px 30px;
    grid-template-columns: 70.2702702703% 27.027027027%;
    grid-template-rows: auto auto;
    grid-template-areas: "t-company__item-header t-company__item-banner" "t-company__point t-company__item-banner";
  }
}
.search-child .t-company__item.is-hidden {
  display: none;
}
.search-child .t-company__item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.search-child .t-company__item-header {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: t-company__item-header;
}
.search-child .t-company__name {
  font-size: 13px;
  line-height: 1.25;
  font-weight: 700;
  color: #006BCD;
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  .search-child .t-company__name {
    font-size: 18px;
    line-height: 1.75;
    max-width: 400px;
  }
}
.search-child .t-company__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}
@media screen and (min-width: 769px) {
  .search-child .t-company__meta {
    margin-top: 15px;
  }
}
.search-child .t-company__meta dl {
  display: flex;
  gap: 5px;
}
@media screen and (min-width: 769px) {
  .search-child .t-company__meta dl {
    gap: 15px;
  }
}
.search-child .t-company__meta dl dt {
  background-color: #F3F3F3;
  color: #4A4A4A;
  white-space: nowrap;
  border-radius: 4px;
  font-size: 9px;
  padding: 2px 5px 0px;
  font-weight: 400;
  height: 16px;
}
@media screen and (min-width: 769px) {
  .search-child .t-company__meta dl dt {
    font-size: 12px;
    padding: 6px 12px;
  }
}
.search-child .t-company__meta dl dd {
  font-size: 11px;
}
@media screen and (min-width: 769px) {
  .search-child .t-company__meta dl dd {
    font-size: 14px;
  }
}
.search-child .t-company__item-banner {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: t-company__item-banner;
}
.search-child .t-company__record {
  border: 1px solid #006BCD;
  border-radius: 3px;
  padding: 4px;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 769px) {
  .search-child .t-company__record {
    border: 2px solid #006BCD;
    border-radius: 6px;
    margin-top: 10px;
    padding: 6px;
  }
}
.search-child .t-company__record span {
  font-family: メイリオ, Meiryo, ＭＳ Ｐゴシック, sans-serif;
  font-weight: bold;
  position: relative;
  text-align: center;
  color: #006BCD;
  font-size: 9px;
  line-height: 1.25;
  padding-left: 20px;
  margin-left: 0;
}
@media screen and (min-width: 769px) {
  .search-child .t-company__record span {
    font-size: 14px;
    padding-left: 40px;
    margin-left: -10px;
  }
}
.search-child .t-company__record span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/ico_saiyou.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 17px;
  height: 17px;
}
@media screen and (min-width: 769px) {
  .search-child .t-company__record span::before {
    width: 31px;
    height: 31px;
  }
}
.search-child .t-company__image {
  margin: 5px auto 0;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .search-child .t-company__image {
    margin: 10px 0 0;
    height: 120px;
  }
}
.search-child .t-company__image img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.search-child .t-company__point {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  position: relative;
  grid-area: t-company__point;
  border: 2px solid #006BCD;
  border-radius: 6px;
  margin-top: 16px;
  padding: 10px 15px 15px;
}
@media screen and (min-width: 769px){
  .search-child .t-company__item-header {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .search-child .t-company__item-banner {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 2;
  }
  .search-child .t-company__point {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
}
@media screen and (min-width: 769px) {
  .search-child .t-company__point {
    margin-top: 20px;
    padding: 12px 20px 15px;
    display: flex;
  }
}
.search-child .t-company__point-header {
  position: absolute;
  padding: 0 10px;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: -moz-max-content;
  width: max-content;
  background-color: #ffffff;
}
@media screen and (min-width: 769px) {
  .search-child .t-company__point-header {
    left: 10px;
    transform: inherit;
    padding: 0 6px;
  }
}
.search-child .t-company__point-header span {
  position: relative;
  color: #4A4A4A;
  font-size: 12px;
  font-weight: 700;
  padding-left: 30px;
}
@media screen and (min-width: 769px) {
  .search-child .t-company__point-header span {
    font-size: 13px;
  }
}
.search-child .t-company__point-header span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/ico_point.svg);
  width: 23px;
  height: 17px;
  background-repeat: no-repeat;
  background-position: center left;
}
.search-child .t-company__point-tag {
  margin-top: 6px;
  background: #006BCD;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  border-radius: 6px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .search-child .t-company__point-tag {
    width: 144px;
    height: 44px;
    padding: 0 14px;
    box-sizing: border-box;
  }
}
.search-child .t-company__point-tag span {
  width: 100%;
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .search-child .t-company__point-tag span {
    font-size: 12px;
  }
}
.search-child .t-company__point-text {
  font-size: 13px;
  margin-top: 8px;
  overflow: hidden;
  font-weight: 400;
  color: #006BCD;
}
@media screen and (min-width: 769px) {
  .search-child .t-company__point-text {
    margin: 2px 0 0 20px;
    padding-top: 5px;
    width: calc(100% - 164px);
  }
}
.search-child .t-company__more {
  margin-top: -30px;
  padding: 30px 0 20px;
  background: red;
  border-radius: 0 0 20px 20px;
  background: #EDEDED;
}
.search-child .t-selected {
  background-color: rgba(0, 0, 0, 0.85);
  padding: 11.5px 0;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  transition: transform 0.6s ease;
}
@media screen and (min-width: 769px) {
  .search-child .t-selected {
    padding: 15px 0;
  }
}
.search-child .t-selected.is-hidden {
  transform: translateY(100%);
}
.search-child .t-selected > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 769px) {
  .search-child .t-selected > div {
    gap: 27px;
    flex-direction: row;
  }
}
.search-child .t-selected span {
  background-color: #ffffff;
  font-size: 9px;
  font-weight: 700;
  width: 40px;
  height: 14px;
  padding: 1px 0 0 0;
  display: grid;
  place-items: center;
  position: relative;
  box-sizing: border-box;
  flex: 1;
}
@media screen and (min-width: 769px) {
  .search-child .t-selected span {
    font-size: 12px;
    min-width: 52px;
    max-width: 52px;
    height: 28px;
    padding: 0 0 0 5px;
  }
}
.search-child .t-selected span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 100%;
  height: 5px;
  background-color: #ffffff;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
@media screen and (min-width: 769px) {
  .search-child .t-selected span::after {
    bottom: 0;
    right: -11px;
    width: 11px;
    height: 100%;
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  }
}
.search-child .t-selected__list {
  flex: 1;
  width: 100%;
}
.search-child .t-selected p {
  color: #ffffff;
  font-size: 10px;
  line-height: 12.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 769px) {
  .search-child .t-selected p {
    font-size: 13px;
    line-height: 22.5px;
  }
}
.search-child .t-selected p + p {
  margin-top: 2px;
}
@media screen and (min-width: 769px) {
  .search-child .t-selected p + p {
    margin-top: 5px;
  }
}
.search-child .t-selected strong {
  font-weight: 700;
  color: #ffffff;
}
.search-child .t-nav {
  border: 6px solid #008CEE;
  border-radius: 30px;
  padding: 20px 15px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-top: 20px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .search-child .t-nav {
    border: 8px solid #008CEE;
    padding: 32px;
    gap: 35px;
    flex-direction: row;
    align-items: flex-start;
    margin-top: 60px;
  }
}
.search-child .t-nav__logo {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .search-child .t-nav__logo {
    flex-direction: column;
    justify-content: flex-start;
    width: 25.4854368932%;
    margin-top: 10px;
  }
}
.search-child .t-nav__logo img {
  width: 51.1182108626%;
  max-width: 200px;
  margin-left: 10px;
}
@media screen and (min-width: 769px) {
  .search-child .t-nav__logo img {
    width: 100%;
    max-width: 250px;
  }
}
.search-child .t-nav__logo a {
  max-width: 111px;
  color: #008CEE;
}
@media screen and (min-width: 769px) {
  .search-child .t-nav__logo a {
    margin-top: 15px;
  }
}
.search-child .t-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 6px;
  flex: 1;
}
@media screen and (min-width: 769px) {
  .search-child .t-nav__list {
    gap: 10px 10px;
    justify-content: start;
  }
}
.search-child .t-nav__list li {
  width: 31.9488817891%;
}
@media screen and (min-width: 769px) {
  .search-child .t-nav__list li {
    width: inherit;
  }
}

.c-tab__btn[data-tab=money],
.real-money .t-others .c-tab__btn {
  background-color: #495FAC;
}
.c-tab__btn[data-tab=money]::before,
.real-money .t-others .c-tab__btn::before {
  background-color: #495FAC;
}

.t-contents__articles:has(.c-tab__content[data-content=money].is-active) {
  background-color: #495FAC;
}
.t-contents__articles:has(.c-tab__content[data-content=money].is-active) .t-article__search {
  background-color: #3A52A4;
}
.t-contents__articles:has(.c-tab__content[data-content=money].is-active) .t-article__search li::after {
  background-color: #3A52A4;
}
.t-contents__articles:has(.c-tab__content[data-content=money].is-active) .t-article__search a {
  color: #3A52A4;
}

.c-tab__content[data-content=money] .num,
.c-tab__content[data-content=money] .voice,
.real-money .num,
.real-money .voice {
  background-color: #495FAC;
}
.c-tab__content[data-content=money] .t-article__card--quiz,
.real-money .t-article__card--quiz {
  background-color: #3A52A4;
}
.c-tab__content[data-content=money] .t-article__card--voice,
.real-money .t-article__card--voice {
  color: #3A52A4;
}
.c-tab__content[data-content=money] ul.t-choises li span,
.real-money ul.t-choises li span {
  background-color: #3A52A4;
}
.c-tab__content[data-content=money] ul.t-choises li p,
.real-money ul.t-choises li p {
  color: #3A52A4;
}

.real-money .c-content * {
  color: #3A52A4;
}
.real-money .c-content__lead {
  border: solid 1px #495FAC;
}
.real-money .c-content__lead span {
  background-color: #495FAC;
  color: #ffffff;
}
.real-money .c-content__lead svg path {
  fill: #3A52A4;
}
.real-money .t-content__result,
.real-money .t-content__voice {
  background-color: #3A52A4;
}
.real-money .t-content__result *,
.real-money .t-content__voice * {
  color: #ffffff;
}
.real-money .t-content__result .c-content__note,
.real-money .t-content__voice .c-content__note {
  opacity: 0.7;
}
.real-money .t-content__column__comment {
  background-color: #E9EBF5;
}
.real-money .t-content__desc p {
  background-color: #E9EBF5;
}
.real-money.real-quiz .t-others .c-tab__btn, .real-money.real-voice .t-others .c-tab__btn {
  background-color: #495FAC;
  color: #ffffff;
}
.real-money.real-quiz .t-others .c-tab__btn::before, .real-money.real-voice .t-others .c-tab__btn::before {
  background-color: #495FAC;
}
.real-money.real-quiz .t-others .c-tab__btn span::before, .real-money.real-voice .t-others .c-tab__btn span::before {
  background-image: url("../images/real/ico_book.svg");
}
.real-money.real-quiz .t-others__inner, .real-money.real-voice .t-others__inner {
  background-color: #495FAC;
}
.real-money.real-quiz .t-others__btn, .real-money.real-voice .t-others__btn {
  background-color: #3A52A4;
}
.real-money.real-quiz .c-tab__btn {
  background-color: #3A52A4;
}
.real-money.real-quiz .c-tab__btn::before {
  background-color: #3A52A4;
}
.real-money.real-voice .c-tab__btn {
  background-color: #ffffff;
  color: #3A52A4;
}
.real-money.real-voice .c-tab__btn::before {
  background-color: #ffffff;
}
.real-money.real-voice .c-tab__btn span::before {
  background-image: inherit;
  background-color: #3A52A4;
  mask: url("../images/real/ico_book.svg") no-repeat center/contain;
  -webkit-mask: url("../images/real/ico_book.svg") no-repeat center/contain;
}
.real-money.real-voice .c-content > * {
  color: #3A52A4;
}
.real-money.real-voice .t-content__faq > div > span {
  background-color: #3A52A4;
}
.real-money.real-voice .t-content__faq__q p {
  background-color: #3A52A4;
}
.real-money.real-voice .t-content__faq__q p::after {
  background-color: #3A52A4;
}
.real-money.real-voice .t-content__faq__a p {
  border: solid 4px #3A52A4;
}
.real-money.real-voice .t-content__faq__a p::before {
  border-color: #3A52A4 transparent transparent transparent;
}
.real-money.real-voice .t-content__next {
  background-color: #3A52A4;
}
.real-money.real-voice .t-content__next:hover {
  background-color: #495FAC;
}

.c-tab__btn[data-tab=growth],
.real-growth .t-others .c-tab__btn {
  background-color: #56B4AB;
}
.c-tab__btn[data-tab=growth]::before,
.real-growth .t-others .c-tab__btn::before {
  background-color: #56B4AB;
}

.t-contents__articles:has(.c-tab__content[data-content=growth].is-active) {
  background-color: #56B4AB;
}
.t-contents__articles:has(.c-tab__content[data-content=growth].is-active) .t-article__search {
  background-color: #49A299;
}
.t-contents__articles:has(.c-tab__content[data-content=growth].is-active) .t-article__search li::after {
  background-color: #49A299;
}
.t-contents__articles:has(.c-tab__content[data-content=growth].is-active) .t-article__search a {
  color: #49A299;
}

.c-tab__content[data-content=growth] .num,
.c-tab__content[data-content=growth] .voice,
.real-growth .num,
.real-growth .voice {
  background-color: #56B4AB;
}
.c-tab__content[data-content=growth] .t-article__card--quiz,
.real-growth .t-article__card--quiz {
  background-color: #49A299;
}
.c-tab__content[data-content=growth] .t-article__card--voice,
.real-growth .t-article__card--voice {
  color: #49A299;
}
.c-tab__content[data-content=growth] ul.t-choises li span,
.real-growth ul.t-choises li span {
  background-color: #49A299;
}
.c-tab__content[data-content=growth] ul.t-choises li p,
.real-growth ul.t-choises li p {
  color: #49A299;
}

.real-growth .c-content * {
  color: #49A299;
}
.real-growth .c-content__lead {
  border: solid 1px #56B4AB;
}
.real-growth .c-content__lead span {
  background-color: #56B4AB;
  color: #ffffff;
}
.real-growth .c-content__lead svg path {
  fill: #49A299;
}
.real-growth .t-content__result,
.real-growth .t-content__voice {
  background-color: #49A299;
}
.real-growth .t-content__result *,
.real-growth .t-content__voice * {
  color: #ffffff;
}
.real-growth .t-content__result .c-content__note,
.real-growth .t-content__voice .c-content__note {
  opacity: 0.7;
}
.real-growth .t-content__column__comment {
  background-color: #DEF0EE;
}
.real-growth .t-content__desc p {
  background-color: #DEF0EE;
}
.real-growth.real-quiz .t-others .c-tab__btn, .real-growth.real-voice .t-others .c-tab__btn {
  background-color: #56B4AB;
  color: #ffffff;
}
.real-growth.real-quiz .t-others .c-tab__btn::before, .real-growth.real-voice .t-others .c-tab__btn::before {
  background-color: #56B4AB;
}
.real-growth.real-quiz .t-others .c-tab__btn span::before, .real-growth.real-voice .t-others .c-tab__btn span::before {
  background-image: url("../images/real/ico_book.svg");
}
.real-growth.real-quiz .t-others__inner, .real-growth.real-voice .t-others__inner {
  background-color: #56B4AB;
}
.real-growth.real-quiz .t-others__btn, .real-growth.real-voice .t-others__btn {
  background-color: #49A299;
}
.real-growth.real-quiz .c-tab__btn {
  background-color: #49A299;
}
.real-growth.real-quiz .c-tab__btn::before {
  background-color: #49A299;
}
.real-growth.real-voice .c-tab__btn {
  background-color: #ffffff;
  color: #49A299;
}
.real-growth.real-voice .c-tab__btn::before {
  background-color: #ffffff;
}
.real-growth.real-voice .c-tab__btn span::before {
  background-image: inherit;
  background-color: #49A299;
  mask: url("../images/real/ico_book.svg") no-repeat center/contain;
  -webkit-mask: url("../images/real/ico_book.svg") no-repeat center/contain;
}
.real-growth.real-voice .c-content > * {
  color: #49A299;
}
.real-growth.real-voice .t-content__faq > div > span {
  background-color: #49A299;
}
.real-growth.real-voice .t-content__faq__q p {
  background-color: #49A299;
}
.real-growth.real-voice .t-content__faq__q p::after {
  background-color: #49A299;
}
.real-growth.real-voice .t-content__faq__a p {
  border: solid 4px #49A299;
}
.real-growth.real-voice .t-content__faq__a p::before {
  border-color: #49A299 transparent transparent transparent;
}
.real-growth.real-voice .t-content__next {
  background-color: #49A299;
}
.real-growth.real-voice .t-content__next:hover {
  background-color: #56B4AB;
}

.c-tab__btn[data-tab=career],
.real-career .t-others .c-tab__btn {
  background-color: #56B4AB;
}
.c-tab__btn[data-tab=career]::before,
.real-career .t-others .c-tab__btn::before {
  background-color: #56B4AB;
}

.t-contents__articles:has(.c-tab__content[data-content=career].is-active) {
  background-color: #56B4AB;
}
.t-contents__articles:has(.c-tab__content[data-content=career].is-active) .t-article__search {
  background-color: #3A52A4;
}
.t-contents__articles:has(.c-tab__content[data-content=career].is-active) .t-article__search li::after {
  background-color: #3A52A4;
}
.t-contents__articles:has(.c-tab__content[data-content=career].is-active) .t-article__search a {
  color: #3A52A4;
}

.c-tab__content[data-content=career] .num,
.c-tab__content[data-content=career] .voice,
.real-career .num,
.real-career .voice {
  background-color: #56B4AB;
}
.c-tab__content[data-content=career] .t-article__card--quiz,
.real-career .t-article__card--quiz {
  background-color: #3A52A4;
}
.c-tab__content[data-content=career] .t-article__card--voice,
.real-career .t-article__card--voice {
  color: #3A52A4;
}
.c-tab__content[data-content=career] ul.t-choises li span,
.real-career ul.t-choises li span {
  background-color: #3A52A4;
}
.c-tab__content[data-content=career] ul.t-choises li p,
.real-career ul.t-choises li p {
  color: #3A52A4;
}

.real-career .c-content * {
  color: #3A52A4;
}
.real-career .c-content__lead {
  border: solid 1px #56B4AB;
}
.real-career .c-content__lead span {
  background-color: #56B4AB;
  color: #ffffff;
}
.real-career .c-content__lead svg path {
  fill: #3A52A4;
}
.real-career .t-content__result,
.real-career .t-content__voice {
  background-color: #3A52A4;
}
.real-career .t-content__result *,
.real-career .t-content__voice * {
  color: #ffffff;
}
.real-career .t-content__result .c-content__note,
.real-career .t-content__voice .c-content__note {
  opacity: 0.7;
}
.real-career .t-content__column__comment {
  background-color: #DEF0EE;
}
.real-career .t-content__desc p {
  background-color: #DEF0EE;
}
.real-career.real-quiz .t-others .c-tab__btn, .real-career.real-voice .t-others .c-tab__btn {
  background-color: #56B4AB;
  color: #ffffff;
}
.real-career.real-quiz .t-others .c-tab__btn::before, .real-career.real-voice .t-others .c-tab__btn::before {
  background-color: #56B4AB;
}
.real-career.real-quiz .t-others .c-tab__btn span::before, .real-career.real-voice .t-others .c-tab__btn span::before {
  background-image: url("../images/real/ico_book.svg");
}
.real-career.real-quiz .t-others__inner, .real-career.real-voice .t-others__inner {
  background-color: #56B4AB;
}
.real-career.real-quiz .t-others__btn, .real-career.real-voice .t-others__btn {
  background-color: #3A52A4;
}
.real-career.real-quiz .c-tab__btn {
  background-color: #3A52A4;
}
.real-career.real-quiz .c-tab__btn::before {
  background-color: #3A52A4;
}
.real-career.real-voice .c-tab__btn {
  background-color: #ffffff;
  color: #3A52A4;
}
.real-career.real-voice .c-tab__btn::before {
  background-color: #ffffff;
}
.real-career.real-voice .c-tab__btn span::before {
  background-image: inherit;
  background-color: #3A52A4;
  mask: url("../images/real/ico_book.svg") no-repeat center/contain;
  -webkit-mask: url("../images/real/ico_book.svg") no-repeat center/contain;
}
.real-career.real-voice .c-content > * {
  color: #3A52A4;
}
.real-career.real-voice .t-content__faq > div > span {
  background-color: #3A52A4;
}
.real-career.real-voice .t-content__faq__q p {
  background-color: #3A52A4;
}
.real-career.real-voice .t-content__faq__q p::after {
  background-color: #3A52A4;
}
.real-career.real-voice .t-content__faq__a p {
  border: solid 4px #3A52A4;
}
.real-career.real-voice .t-content__faq__a p::before {
  border-color: #3A52A4 transparent transparent transparent;
}
.real-career.real-voice .t-content__next {
  background-color: #3A52A4;
}
.real-career.real-voice .t-content__next:hover {
  background-color: #56B4AB;
}

.c-tab__btn[data-tab=life],
.real-life .t-others .c-tab__btn {
  background-color: #495FAC;
}
.c-tab__btn[data-tab=life]::before,
.real-life .t-others .c-tab__btn::before {
  background-color: #495FAC;
}

.t-contents__articles:has(.c-tab__content[data-content=life].is-active) {
  background-color: #495FAC;
}
.t-contents__articles:has(.c-tab__content[data-content=life].is-active) .t-article__search {
  background-color: #3A52A4;
}
.t-contents__articles:has(.c-tab__content[data-content=life].is-active) .t-article__search li::after {
  background-color: #3A52A4;
}
.t-contents__articles:has(.c-tab__content[data-content=life].is-active) .t-article__search a {
  color: #3A52A4;
}

.c-tab__content[data-content=life] .num,
.c-tab__content[data-content=life] .voice,
.real-life .num,
.real-life .voice {
  background-color: #495FAC;
}
.c-tab__content[data-content=life] .t-article__card--quiz,
.real-life .t-article__card--quiz {
  background-color: #3A52A4;
}
.c-tab__content[data-content=life] .t-article__card--voice,
.real-life .t-article__card--voice {
  color: #3A52A4;
}
.c-tab__content[data-content=life] ul.t-choises li span,
.real-life ul.t-choises li span {
  background-color: #3A52A4;
}
.c-tab__content[data-content=life] ul.t-choises li p,
.real-life ul.t-choises li p {
  color: #3A52A4;
}

.real-life .c-content * {
  color: #3A52A4;
}
.real-life .c-content__lead {
  border: solid 1px #495FAC;
}
.real-life .c-content__lead span {
  background-color: #495FAC;
  color: #ffffff;
}
.real-life .c-content__lead svg path {
  fill: #3A52A4;
}
.real-life .t-content__result,
.real-life .t-content__voice {
  background-color: #3A52A4;
}
.real-life .t-content__result *,
.real-life .t-content__voice * {
  color: #ffffff;
}
.real-life .t-content__result .c-content__note,
.real-life .t-content__voice .c-content__note {
  opacity: 0.7;
}
.real-life .t-content__column__comment {
  background-color: #E9EBF5;
}
.real-life .t-content__desc p {
  background-color: #E9EBF5;
}
.real-life.real-quiz .t-others .c-tab__btn, .real-life.real-voice .t-others .c-tab__btn {
  background-color: #495FAC;
  color: #ffffff;
}
.real-life.real-quiz .t-others .c-tab__btn::before, .real-life.real-voice .t-others .c-tab__btn::before {
  background-color: #495FAC;
}
.real-life.real-quiz .t-others .c-tab__btn span::before, .real-life.real-voice .t-others .c-tab__btn span::before {
  background-image: url("../images/real/ico_book.svg");
}
.real-life.real-quiz .t-others__inner, .real-life.real-voice .t-others__inner {
  background-color: #495FAC;
}
.real-life.real-quiz .t-others__btn, .real-life.real-voice .t-others__btn {
  background-color: #3A52A4;
}
.real-life.real-quiz .c-tab__btn {
  background-color: #3A52A4;
}
.real-life.real-quiz .c-tab__btn::before {
  background-color: #3A52A4;
}
.real-life.real-voice .c-tab__btn {
  background-color: #ffffff;
  color: #3A52A4;
}
.real-life.real-voice .c-tab__btn::before {
  background-color: #ffffff;
}
.real-life.real-voice .c-tab__btn span::before {
  background-image: inherit;
  background-color: #3A52A4;
  mask: url("../images/real/ico_book.svg") no-repeat center/contain;
  -webkit-mask: url("../images/real/ico_book.svg") no-repeat center/contain;
}
.real-life.real-voice .c-content > * {
  color: #3A52A4;
}
.real-life.real-voice .t-content__faq > div > span {
  background-color: #3A52A4;
}
.real-life.real-voice .t-content__faq__q p {
  background-color: #3A52A4;
}
.real-life.real-voice .t-content__faq__q p::after {
  background-color: #3A52A4;
}
.real-life.real-voice .t-content__faq__a p {
  border: solid 4px #3A52A4;
}
.real-life.real-voice .t-content__faq__a p::before {
  border-color: #3A52A4 transparent transparent transparent;
}
.real-life.real-voice .t-content__next {
  background-color: #3A52A4;
}
.real-life.real-voice .t-content__next:hover {
  background-color: #495FAC;
}

.c-tab__btn[data-tab=itdx],
.real-itdx .t-others .c-tab__btn {
  background-color: #495FAC;
}
.c-tab__btn[data-tab=itdx]::before,
.real-itdx .t-others .c-tab__btn::before {
  background-color: #495FAC;
}

.t-contents__articles:has(.c-tab__content[data-content=itdx].is-active) {
  background-color: #495FAC;
}
.t-contents__articles:has(.c-tab__content[data-content=itdx].is-active) .t-article__search {
  background-color: #3A52A4;
}
.t-contents__articles:has(.c-tab__content[data-content=itdx].is-active) .t-article__search li::after {
  background-color: #3A52A4;
}
.t-contents__articles:has(.c-tab__content[data-content=itdx].is-active) .t-article__search a {
  color: #3A52A4;
}

.c-tab__content[data-content=itdx] .num,
.c-tab__content[data-content=itdx] .voice,
.real-itdx .num,
.real-itdx .voice {
  background-color: #495FAC;
}
.c-tab__content[data-content=itdx] .t-article__card--quiz,
.real-itdx .t-article__card--quiz {
  background-color: #3A52A4;
}
.c-tab__content[data-content=itdx] .t-article__card--voice,
.real-itdx .t-article__card--voice {
  color: #3A52A4;
}
.c-tab__content[data-content=itdx] ul.t-choises li span,
.real-itdx ul.t-choises li span {
  background-color: #3A52A4;
}
.c-tab__content[data-content=itdx] ul.t-choises li p,
.real-itdx ul.t-choises li p {
  color: #3A52A4;
}

.real-itdx .c-content * {
  color: #3A52A4;
}
.real-itdx .c-content__lead {
  border: solid 1px #495FAC;
}
.real-itdx .c-content__lead span {
  background-color: #495FAC;
  color: #ffffff;
}
.real-itdx .c-content__lead svg path {
  fill: #3A52A4;
}
.real-itdx .t-content__result,
.real-itdx .t-content__voice {
  background-color: #3A52A4;
}
.real-itdx .t-content__result *,
.real-itdx .t-content__voice * {
  color: #ffffff;
}
.real-itdx .t-content__result .c-content__note,
.real-itdx .t-content__voice .c-content__note {
  opacity: 0.7;
}
.real-itdx .t-content__column__comment {
  background-color: #E9EBF5;
}
.real-itdx .t-content__desc p {
  background-color: #E9EBF5;
}
.real-itdx.real-quiz .t-others .c-tab__btn, .real-itdx.real-voice .t-others .c-tab__btn {
  background-color: #495FAC;
  color: #ffffff;
}
.real-itdx.real-quiz .t-others .c-tab__btn::before, .real-itdx.real-voice .t-others .c-tab__btn::before {
  background-color: #495FAC;
}
.real-itdx.real-quiz .t-others .c-tab__btn span::before, .real-itdx.real-voice .t-others .c-tab__btn span::before {
  background-image: url("../images/real/ico_book.svg");
}
.real-itdx.real-quiz .t-others__inner, .real-itdx.real-voice .t-others__inner {
  background-color: #495FAC;
}
.real-itdx.real-quiz .t-others__btn, .real-itdx.real-voice .t-others__btn {
  background-color: #3A52A4;
}
.real-itdx.real-quiz .c-tab__btn {
  background-color: #3A52A4;
}
.real-itdx.real-quiz .c-tab__btn::before {
  background-color: #3A52A4;
}
.real-itdx.real-voice .c-tab__btn {
  background-color: #ffffff;
  color: #3A52A4;
}
.real-itdx.real-voice .c-tab__btn::before {
  background-color: #ffffff;
}
.real-itdx.real-voice .c-tab__btn span::before {
  background-image: inherit;
  background-color: #3A52A4;
  mask: url("../images/real/ico_book.svg") no-repeat center/contain;
  -webkit-mask: url("../images/real/ico_book.svg") no-repeat center/contain;
}
.real-itdx.real-voice .c-content > * {
  color: #3A52A4;
}
.real-itdx.real-voice .t-content__faq > div > span {
  background-color: #3A52A4;
}
.real-itdx.real-voice .t-content__faq__q p {
  background-color: #3A52A4;
}
.real-itdx.real-voice .t-content__faq__q p::after {
  background-color: #3A52A4;
}
.real-itdx.real-voice .t-content__faq__a p {
  border: solid 4px #3A52A4;
}
.real-itdx.real-voice .t-content__faq__a p::before {
  border-color: #3A52A4 transparent transparent transparent;
}
.real-itdx.real-voice .t-content__next {
  background-color: #3A52A4;
}
.real-itdx.real-voice .t-content__next:hover {
  background-color: #495FAC;
}

.c-tab__btn[data-tab=community],
.real-community .t-others .c-tab__btn {
  background-color: #495FAC;
}
.c-tab__btn[data-tab=community]::before,
.real-community .t-others .c-tab__btn::before {
  background-color: #495FAC;
}

.t-contents__articles:has(.c-tab__content[data-content=community].is-active) {
  background-color: #495FAC;
}
.t-contents__articles:has(.c-tab__content[data-content=community].is-active) .t-article__search {
  background-color: #3A52A4;
}
.t-contents__articles:has(.c-tab__content[data-content=community].is-active) .t-article__search li::after {
  background-color: #3A52A4;
}
.t-contents__articles:has(.c-tab__content[data-content=community].is-active) .t-article__search a {
  color: #3A52A4;
}

.c-tab__content[data-content=community] .num,
.c-tab__content[data-content=community] .voice,
.real-community .num,
.real-community .voice {
  background-color: #495FAC;
}
.c-tab__content[data-content=community] .t-article__card--quiz,
.real-community .t-article__card--quiz {
  background-color: #3A52A4;
}
.c-tab__content[data-content=community] .t-article__card--voice,
.real-community .t-article__card--voice {
  color: #3A52A4;
}
.c-tab__content[data-content=community] ul.t-choises li span,
.real-community ul.t-choises li span {
  background-color: #3A52A4;
}
.c-tab__content[data-content=community] ul.t-choises li p,
.real-community ul.t-choises li p {
  color: #3A52A4;
}

.real-community .c-content * {
  color: #3A52A4;
}
.real-community .c-content__lead {
  border: solid 1px #495FAC;
}
.real-community .c-content__lead span {
  background-color: #495FAC;
  color: #ffffff;
}
.real-community .c-content__lead svg path {
  fill: #3A52A4;
}
.real-community .t-content__result,
.real-community .t-content__voice {
  background-color: #3A52A4;
}
.real-community .t-content__result *,
.real-community .t-content__voice * {
  color: #ffffff;
}
.real-community .t-content__result .c-content__note,
.real-community .t-content__voice .c-content__note {
  opacity: 0.7;
}
.real-community .t-content__column__comment {
  background-color: #E9EBF5;
}
.real-community .t-content__desc p {
  background-color: #E9EBF5;
}
.real-community.real-quiz .t-others .c-tab__btn, .real-community.real-voice .t-others .c-tab__btn {
  background-color: #495FAC;
  color: #ffffff;
}
.real-community.real-quiz .t-others .c-tab__btn::before, .real-community.real-voice .t-others .c-tab__btn::before {
  background-color: #495FAC;
}
.real-community.real-quiz .t-others .c-tab__btn span::before, .real-community.real-voice .t-others .c-tab__btn span::before {
  background-image: url("../images/real/ico_book.svg");
}
.real-community.real-quiz .t-others__inner, .real-community.real-voice .t-others__inner {
  background-color: #495FAC;
}
.real-community.real-quiz .t-others__btn, .real-community.real-voice .t-others__btn {
  background-color: #3A52A4;
}
.real-community.real-quiz .c-tab__btn {
  background-color: #3A52A4;
}
.real-community.real-quiz .c-tab__btn::before {
  background-color: #3A52A4;
}
.real-community.real-voice .c-tab__btn {
  background-color: #ffffff;
  color: #3A52A4;
}
.real-community.real-voice .c-tab__btn::before {
  background-color: #ffffff;
}
.real-community.real-voice .c-tab__btn span::before {
  background-image: inherit;
  background-color: #3A52A4;
  mask: url("../images/real/ico_book.svg") no-repeat center/contain;
  -webkit-mask: url("../images/real/ico_book.svg") no-repeat center/contain;
}
.real-community.real-voice .c-content > * {
  color: #3A52A4;
}
.real-community.real-voice .t-content__faq > div > span {
  background-color: #3A52A4;
}
.real-community.real-voice .t-content__faq__q p {
  background-color: #3A52A4;
}
.real-community.real-voice .t-content__faq__q p::after {
  background-color: #3A52A4;
}
.real-community.real-voice .t-content__faq__a p {
  border: solid 4px #3A52A4;
}
.real-community.real-voice .t-content__faq__a p::before {
  border-color: #3A52A4 transparent transparent transparent;
}
.real-community.real-voice .t-content__next {
  background-color: #3A52A4;
}
.real-community.real-voice .t-content__next:hover {
  background-color: #495FAC;
}

/*----------------------------------------
	共通
----------------------------------------*/
.real .t-article__card {
  border-radius: 20px;
  padding: 20px 22px 28px;
  position: relative;
  width: 284px;
  min-height: 370px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  margin: auto;
  transition: all 0.4s ease;
}
@media screen and (min-width: 769px) {
  .real .t-article__card {
    margin: 0;
  }
}
.real .t-article__card:hover {
  transform: scale(1.03);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.real .t-article__card .num,
.real .t-article__card .voice {
  height: 27px;
  border-radius: 15px;
  box-sizing: border-box;
}
.real .t-article__card .num {
  width: 68px;
  padding: 8px;
}
.real .t-article__card .voice {
  width: 101px;
  padding: 8.7px;
}
.real .t-article__card span,
.real .t-article__card h3,
.real .t-article__card p,
.real .t-article__card li,
.real .t-article__card small {
  font-weight: 700;
}
.real .t-article__card h3 {
  font-size: 18px;
  margin-top: 10px;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.real .t-article__card h3 small {
  font-size: 11px;
}
.real .t-article__card ul {
  flex: 1;
  align-content: flex-end;
  margin-top: 16px;
}
.real .t-article__card--quiz h3 {
  color: #ffffff;
}
.real .t-article__card--quiz .thum {
  width: 60px;
  position: absolute;
  top: 14px;
  right: 14px;
}
.real .t-article__card--quiz li {
  cursor: pointer;
  transition: all 0.4s ease;
}
.real .t-article__card--quiz li:hover {
  opacity: 0.7;
}
.real .t-article__card--voice {
  background-color: #ffffff;
  padding-bottom: 35px;
}
.real .t-article__card--voice:hover {
  opacity: 0.7;
}
.real .t-article__card--voice a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.real .t-article__card--voice p {
  font-size: 11px;
  margin-top: 12px;
  line-height: 18px;
}
.real .t-article__card--voice .thum {
  flex: 1;
  align-content: flex-end;
  width: 222px;
  -o-object-position: bottom;
  object-position: bottom;
  -o-object-fit: contain;
  object-fit: contain;
  margin: auto auto 0;
}
.real ul.t-choises li {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: grid;
  place-items: center;
  background-color: #ffffff;
  height: 52px;
  border-radius: 32px;
}
.real ul.t-choises li + li {
  margin-top: 10px;
}
.real ul.t-choises li span {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  display: block;
  color: transparent;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: all 0.4s ease;
}
.real ul.t-choises li span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: contain;
  width: 14.5px;
  height: 14.5px;
  background-repeat: no-repeat;
}
.real ul.t-choises li[data-label=A] span::before {
  background-image: url(../images/real/ltr_a.svg);
}
.real ul.t-choises li[data-label=B] span::before {
  background-image: url(../images/real/ltr_b.svg);
}
.real ul.t-choises li[data-label=C] span::before {
  background-image: url(../images/real/ltr_c.svg);
}
.real ul.t-choises p {
  font-size: 18px;
  font-weight: 700;
}
.real ul.t-choises p.small {
  font-size: 14px;
  text-align: center;
}
.real .t-others {
  margin-top: 60px;
}
.real .t-others__inner {
  padding: 30px 0;
}
@media screen and (min-width: 769px) {
  .real .t-others__inner {
    padding: 40px 0;
  }
}
.real .t-others__list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 769px) {
  .real .t-others__list {
    flex-direction: row;
    align-items: stretch;
  }
}
@media screen and (min-width: 1025px) {
  .real .t-others__list {
    gap: 20px;
  }
}
.real .t-others__list li div {
  height: 100%;
}
.real .t-others__btn {
  display: grid;
  place-items: center;
  border-radius: 22px;
  width: 140px;
  height: 44px;
  margin: 30px auto 0;
}
.real .t-others__btn img {
  width: 68px;
}
.real .t-others .t-article__card li {
  height: 50px;
}
.real .t-others .t-article__card li span {
  left: 5px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .real .t-others .t-article__card {
    padding: 20px 16px 28px;
    width: 240px;
    min-height: 320px;
  }
  .real .t-others .t-article__card li {
    height: 45px;
  }
  .real .t-others .t-article__card li span {
    width: 36px;
    height: 36px;
  }
  .real .t-others .t-article__card li span::before {
    width: 14px;
    height: 14px;
  }
  .real .t-others .t-article__card--quiz .thum {
    width: 50px;
  }
  .real .t-others .t-article__card--voice .thum {
    width: 200px;
  }
}

/*----------------------------------------
	INDEX
----------------------------------------*/
.real-index .t-hero {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 810px;
  margin: 0 0 0 auto;
}
@media screen and (min-width: 769px) {
  .real-index .t-hero {
    flex-direction: row;
    justify-content: center;
    gap: 4.4444444444%;
  }
}
@media screen and (min-width: 1025px) {
  .real-index .t-hero {
    min-width: 900px;
    gap: 5.5555555556%;
  }
}
.real-index .t-hero__ttl {
  width: -moz-fit-content;
  width: fit-content;
}
.real-index .t-hero__ttl p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 769px) {
  .real-index .t-hero__ttl p {
    font-size: 17px;
  }
}
@media screen and (min-width: 1025px) {
  .real-index .t-hero__ttl p {
    font-size: 18px;
    line-height: 1.75;
  }
}
.real-index .t-hero__ttl h1 {
  width: 214px;
  margin: 10px auto 0;
}
@media screen and (min-width: 769px) {
  .real-index .t-hero__ttl h1 {
    width: 260px;
    margin: 10px 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .real-index .t-hero__ttl h1 {
    width: 320px;
  }
}
.real-index .t-hero__txt {
  flex: 1;
  margin-top: 20px;
}
@media screen and (min-width: 769px) {
  .real-index .t-hero__txt {
    margin-top: 0;
    flex: inherit;
  }
}
.real-index .t-hero__txt p {
  font-weight: 700;
  font-size: 13px;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 769px) {
  .real-index .t-hero__txt p {
    font-size: 14px;
    line-height: 2.4;
  }
}
.real-index .t-contents__articles {
  position: relative;
  overflow: hidden;
  padding: 30px 0 40px;
}
@media screen and (min-width: 769px) {
  .real-index .t-contents__articles {
    padding: 60px 0 80px;
  }
}
@media screen and (min-width: 1025px) {
  .real-index .t-contents__articles section {
    min-width: 900px;
  }
}
.real-index .t-article__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 10px;
  min-height: 100vh;
}
@media screen and (min-width: 769px) {
  .real-index .t-article__wrap {
    gap: 20px 20px;
  }
}
.real-index .t-article__lead {
  text-align: center;
  width: 578px;
}
@media screen and (min-width: 769px) {
  .real-index .t-article__lead {
    width: 588px;
    text-align: left;
    margin-top: 25px;
  }
}
.real-index .t-article__lead span,
.real-index .t-article__lead h2,
.real-index .t-article__lead p {
  color: #ffffff;
  font-weight: 700;
}
.real-index .t-article__lead > span {
  position: relative;
  font-size: 15px;
  padding-left: 30px;
}
.real-index .t-article__lead > span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../images/real/ico_book.svg);
  background-size: contain;
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
}
@media screen and (min-width: 769px) {
  .real-index .t-article__lead > span {
    padding-left: 58px;
    font-size: 19px;
  }
  .real-index .t-article__lead > span::before {
    width: 42px;
    height: 42px;
  }
}
.real-index .t-article__lead h2 {
  margin-top: 10px;
  font-size: 30px;
}
@media screen and (min-width: 769px) {
  .real-index .t-article__lead h2 {
    margin-top: 20px;
    font-size: 57px;
  }
}
.real-index .t-article__lead p {
  font-size: 13px;
  letter-spacing: 0.06em;
  line-height: 2;
  margin-top: 14px;
  text-align: left;
}
@media screen and (min-width: 769px) {
  .real-index .t-article__lead p {
    font-size: 15px;
  }
}
.real-index .t-article__lead + .t-article__card {
  margin-top: 10px;
}
@media screen and (min-width: 769px) {
  .real-index .t-article__lead + .t-article__card {
    margin-top: 0px;
  }
}
.real-index .t-article__search {
  position: relative;
  border-radius: 20px;
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0px;
  padding-left: 10px;
  padding: 20px 0 25px;
}
@media screen and (min-width: 769px) {
  .real-index .t-article__search {
    padding: 30px 0 38px;
  }
}
.real-index .t-article__search p {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .real-index .t-article__search p {
    font-size: 22px;
  }
}
@media screen and (min-width: 1025px) {
  .real-index .t-article__search p {
    font-size: 24px;
  }
}
.real-index .t-article__search ul {
  margin-top: 20px;
  width: 280px;
}
@media screen and (min-width: 769px) {
  .real-index .t-article__search ul {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 816px;
    width: 95%;
  }
}
.real-index .t-article__search li {
  position: relative;
  background-color: #ffffff;
  display: grid;
  place-items: center;
  height: 64px;
  border-radius: 40px;
  transition: all 0.4s ease;
}
@media screen and (min-width: 769px) {
  .real-index .t-article__search li {
    height: 74px;
    width: 32.4754901961%;
  }
}
.real-index .t-article__search li + li {
  margin-top: 10px;
}
@media screen and (min-width: 769px) {
  .real-index .t-article__search li + li {
    margin-top: 0;
  }
}
.real-index .t-article__search li:hover {
  transform: scale(1.03);
}
.real-index .t-article__search li:hover a {
  opacity: 1;
}
.real-index .t-article__search li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  mask-image: url(../images/real/ico_search.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url(../images/real/ico_search.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
@media screen and (min-width: 769px) {
  .real-index .t-article__search li::after {
    top: 48%;
    width: 26.5px;
    height: 26.5px;
  }
}
.real-index .t-article__search li a {
  font-size: 13px;
  text-align: center;
  font-weight: 700;
  line-height: 17.5px;
}
@media screen and (min-width: 769px) {
  .real-index .t-article__search li a {
    font-size: 14px;
  }
}
.real-index .t-article__note {
  color: #ffffff;
  margin-top: 30px;
  opacity: 0.5;
  font-size: 12px;
}
@media screen and (min-width: 769px) {
  .real-index .t-article__note {
    margin-top: 80px;
    font-size: 14px;
  }
}
.real-index .t-modal {
  position: absolute;
  right: 8px;
  top: 70px;
}
@media screen and (min-width: 769px) {
  .real-index .t-modal {
    top: 16px;
    right: 16px;
  }
}
.real-index .t-modal > * {
  color: #008CEE;
}
.real-index .t-modal__btn {
  display: grid;
  place-items: center;
  border: none;
  background-color: transparent;
  background-image: url("../images/real/ico_modal.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 60px;
  height: 60px;
  font-size: 11px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.real-index .t-modal__btn:hover {
  transform: scale(1.1);
}
@media screen and (min-width: 769px) {
  .real-index .t-modal__btn {
    width: 85px;
    height: 85px;
    font-size: 13px;
  }
}
.real-index .t-modal .c-modal__container > strong {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-weight: 700;
  white-space: nowrap;
  color: #008CEE;
}
.real-index .t-modal .c-modal__container > strong img {
  width: 194px;
}
@media screen and (min-width: 769px) {
  .real-index .t-modal .c-modal__container > strong {
    font-size: 45px;
    gap: 10px;
  }
  .real-index .t-modal .c-modal__container > strong img {
    width: 320px;
  }
}
@media screen and (min-width: 1025px) {
  .real-index .t-modal .c-modal__container > strong {
    font-size: 50px;
  }
  .real-index .t-modal .c-modal__container > strong img {
    width: 360px;
  }
}
.real-index .t-modal__lead {
  display: flex;
  gap: 5px;
  align-items: flex-end;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 0;
  padding-bottom: 5px;
  border-bottom: solid 4px #B2B2B2;
  white-space: nowrap;
}
.real-index .t-modal__lead img {
  height: 24px;
}
@media screen and (min-width: 769px) {
  .real-index .t-modal__lead {
    padding-bottom: 10px;
    margin: 40px auto 0;
    font-size: 21px;
    gap: 10px;
  }
  .real-index .t-modal__lead img {
    height: 40px;
  }
}
.real-index .t-modal__txt {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.045em;
  color: #000000;
}
@media screen and (min-width: 769px) {
  .real-index .t-modal__txt {
    margin-top: 36px;
  }
}
.real-index .t-modal ul {
  margin-top: 26px;
}
@media screen and (min-width: 769px) {
  .real-index .t-modal ul {
    margin-top: 32px;
  }
}
.real-index .t-modal li {
  background-color: #008CEE;
  border-radius: 20px;
  position: relative;
  padding: 46px 4px 4px;
}
@media screen and (min-width: 769px) {
  .real-index .t-modal li {
    padding: 4px;
  }
}
.real-index .t-modal li + li {
  margin-top: 10px;
}
.real-index .t-modal li + li::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 10px;
  background-color: #008CEE;
}
@media screen and (min-width: 769px) {
  .real-index .t-modal li + li {
    margin-top: 36px;
  }
  .real-index .t-modal li + li::before {
    top: -36px;
    width: 8px;
    height: 36px;
  }
}
.real-index .t-modal li > img {
  position: absolute;
  left: 50%;
  top: 15px;
  transform: translateX(-50%);
  height: 14px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 769px) {
  .real-index .t-modal li > img {
    left: 40px;
    top: 50%;
    transform: translateX(0) translateY(-50%);
  }
}
.real-index .t-modal li > div {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px 16px 24px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .real-index .t-modal li > div {
    margin-left: 140px;
    padding: 22px 24px;
    text-align: left;
  }
}
.real-index .t-modal li strong {
  font-size: 18px;
  font-weight: 700;
  position: relative;
  padding-left: 24px;
  color: #008CEE;
}
.real-index .t-modal li strong::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/ico_check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 18.5px;
  height: 14px;
}
.real-index .t-modal li p {
  margin-top: 10px;
  font-size: 14px;
  text-align: left;
  color: #000000;
}
.real-index .t-modal__bottom {
  margin-top: 20px;
  letter-spacing: 0.045em;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .real-index .t-modal__bottom {
    margin-top: 40px;
    font-size: 20px;
  }
}

/*----------------------------------------
	VOICE
----------------------------------------*/
@media screen and (max-width: 768px) {
  .real-voice section {
    padding: 30px 10px;
  }
}
.real-voice h1 {
  margin: 0 10px 0;
}
.real-voice .t-content__profile {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 10px 0;
}
.real-voice .t-content__profile img {
  width: 40px;
}
@media screen and (min-width: 769px) {
  .real-voice .t-content__profile img {
    width: 48px;
  }
}
.real-voice .t-content__profile p {
  font-weight: 500;
  font-size: 10px;
}
@media screen and (min-width: 769px) {
  .real-voice .t-content__profile p {
    font-size: 12px;
  }
}
.real-voice .t-content__profile p a {
  text-decoration: underline;
}
.real-voice .t-content__desc {
  gap: 20px;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
@media screen and (min-width: 769px) {
  .real-voice .t-content__desc {
    margin-top: 32px;
    gap: 52px;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
}
.real-voice .t-content__desc p {
  font-size: 14px;
  line-height: 2;
  border-radius: 15px;
  padding: 20px;
}
@media screen and (min-width: 769px) {
  .real-voice .t-content__desc p {
    width: 43.5897435897%;
    padding: 25px;
  }
}
.real-voice .t-content__desc img {
  margin: auto;
  width: 94.0298507463%;
}
@media screen and (min-width: 769px) {
  .real-voice .t-content__desc img {
    width: 44.8717948718%;
  }
}
.real-voice .t-content__faq {
  margin-top: 40px;
}
.real-voice .t-content__faq > div {
  position: relative;
  box-sizing: border-box;
}
.real-voice .t-content__faq > div > span {
  position: absolute;
  color: transparent;
  top: 0;
  width: 26px;
  height: 26px;
  display: block;
  border-radius: 50%;
}
.real-voice .t-content__faq > div > span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: contain;
  width: 12px;
  height: 11px;
  background-repeat: no-repeat;
}
@media screen and (min-width: 769px) {
  .real-voice .t-content__faq > div > span {
    width: 41px;
    height: 41px;
  }
  .real-voice .t-content__faq > div > span::before {
    width: 21.8px;
    height: 21px;
  }
}
.real-voice .t-content__faq > div p {
  position: relative;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 700;
  box-sizing: border-box;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 769px) {
  .real-voice .t-content__faq > div p {
    font-size: 20px;
  }
}
.real-voice .t-content__faq__q {
  margin-top: 30px;
}
@media screen and (min-width: 769px) {
  .real-voice .t-content__faq__q {
    margin-top: 40px;
  }
}
.real-voice .t-content__faq__q span {
  left: 0;
}
.real-voice .t-content__faq__q span::before {
  background-image: url(../images/real/ltr_q.svg);
}
.real-voice .t-content__faq__q p {
  color: #ffffff;
  margin-right: auto;
  margin-left: 45px;
  border-radius: 0px 10px 10px 10px;
  padding: 12.75px;
}
@media screen and (min-width: 769px) {
  .real-voice .t-content__faq__q p {
    border-radius: 0px 20px 20px 20px;
    margin-left: 70px;
    padding: 18.5px 26px;
  }
}
.real-voice .t-content__faq__q p::after {
  content: "";
  position: absolute;
  left: -16px;
  top: 0;
  display: block;
  width: 16px;
  height: 15px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
}
@media screen and (min-width: 769px) {
  .real-voice .t-content__faq__q p::after {
    left: -23px;
    width: 24px;
    height: 22px;
  }
}
.real-voice .t-content__faq__a {
  margin-top: 20px;
}
@media screen and (min-width: 769px) {
  .real-voice .t-content__faq__a {
    margin-top: 26px;
  }
}
.real-voice .t-content__faq__a span {
  right: 0;
}
.real-voice .t-content__faq__a span::before {
  background-image: url(../images/real/ltr_a.svg);
}
.real-voice .t-content__faq__a p {
  border-radius: 10px 0px 10px 10px;
  margin-right: 45px;
  padding: 10px;
}
.real-voice .t-content__faq__a p::after, .real-voice .t-content__faq__a p::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 16px 0 0;
}
.real-voice .t-content__faq__a p::before {
  top: -4px;
  right: -20px;
}
.real-voice .t-content__faq__a p::after {
  top: 0px;
  right: -10px;
  border-color: white transparent transparent transparent;
}
@media screen and (min-width: 769px) {
  .real-voice .t-content__faq__a p {
    padding: 26px 22px;
    border-radius: 20px 0px 20px 20px;
    margin-right: 70px;
  }
  .real-voice .t-content__faq__a p::before, .real-voice .t-content__faq__a p::after {
    border-width: 24px 26px 0 0;
  }
  .real-voice .t-content__faq__a p::before {
    right: -30px;
  }
  .real-voice .t-content__faq__a p::after {
    right: -20px;
  }
}
.real-voice .t-content__faq__img {
  max-width: 440px;
  width: 83.5820895522%;
  margin: 30px auto 30px;
}
@media screen and (min-width: 769px) {
  .real-voice .t-content__faq__img {
    width: 59.1397849462%;
    margin: 40px auto 40px;
  }
}
.real-voice .t-content__next {
  border-radius: 20px;
  padding: 20px;
  position: relative;
  margin: 20px auto 0;
  box-sizing: border-box;
  transition: background 0.6s ease;
}
@media screen and (min-width: 769px) {
  .real-voice .t-content__next {
    margin: 30px auto 0;
    padding: 26px 32px 26px 56px;
    max-width: 660px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.real-voice .t-content__next__lead {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 769px) {
  .real-voice .t-content__next__lead {
    flex-direction: column;
    align-items: flex-start;
    gap: 7.8px;
  }
}
.real-voice .t-content__next__lead img:first-child {
  width: 55px;
}
.real-voice .t-content__next__lead img:last-child {
  width: 80px;
}
.real-voice .t-content__next__wrap {
  display: flex;
  justify-content: space-between;
}
.real-voice .t-content__next__txt {
  margin-top: 20px;
}
@media screen and (min-width: 769px) {
  .real-voice .t-content__next__txt {
    margin-top: 0;
  }
}
.real-voice .t-content__next__txt strong {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}
.real-voice .t-content__next__txt p {
  color: #ffffff;
  margin-top: 6px;
  font-size: 11px;
  opacity: 0.7;
}
@media screen and (min-width: 769px) {
  .real-voice .t-content__next__txt p {
    margin-top: 10px;
  }
}
.real-voice .t-content__next__img {
  width: 35.2542372881%;
  max-width: 150px;
}
.real-voice .t-content__next__img img {
  aspect-ratio: 104/87;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
.real-voice .t-content__next a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*----------------------------------------
	QUIZ
----------------------------------------*/
.real-quiz ul.t-choises {
  min-width: 220px;
}
.real-quiz ul.t-choises li {
  height: 62px;
}
.real-quiz ul.t-choises p {
  font-size: 20px;
  font-weight: 700;
}
.real-quiz ul.t-choises p.small {
  font-size: 18px;
  text-align: center;
}
.real-quiz .t-content__result__q {
  position: relative;
}
.real-quiz .t-content__result .thum {
  position: absolute;
  top: -5px;
  right: 0;
  width: 60px;
}
@media screen and (min-width: 769px) {
  .real-quiz .t-content__result .thum {
    position: static;
    margin-top: 40px;
    width: 200px;
  }
}
.real-quiz .t-content__result__a {
  flex: 1;
}
.real-quiz .t-content__result__a li {
  background-color: #ffffff;
  border-radius: 32px;
  height: 62px;
}
.real-quiz .t-content__result__a li.is-correct::before, .real-quiz .t-content__result__a li.is-incorrect::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
.real-quiz .t-content__result__a ul:has(.is-correct) li {
  opacity: 0.15;
}
.real-quiz .t-content__result__a ul:has(.is-correct) li.is-correct {
  opacity: 1;
}
.real-quiz .t-content__result__a ul:has(.is-correct) li.is-correct::before {
  background-image: url("../images/real/ico_correct.svg");
  width: 22px;
  height: 40px;
}
@media screen and (min-width: 769px) {
  .real-quiz .t-content__result__a ul:has(.is-correct) li.is-correct::before {
    width: 27px;
    height: 42px;
  }
}
.real-quiz .t-content__result__a ul:has(.is-correct) li.is-incorrect {
  opacity: 0.7;
}
.real-quiz .t-content__result__a ul:has(.is-correct) li.is-incorrect::before {
  background-image: url("../images/real/ico_incorrect.svg");
  width: 28px;
  height: 38px;
}
@media screen and (min-width: 769px) {
  .real-quiz .t-content__result__a ul:has(.is-correct) li.is-incorrect::before {
    width: 35px;
    height: 38px;
  }
}
.real-quiz .t-content__result__a > p {
  color: #ffffff;
  font-size: 14px;
  margin-top: 30px;
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .real-quiz .t-content__result__a > p {
    font-size: 18px;
    margin-top: 40px;
  }
}
.real-quiz .t-content__column p {
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .real-quiz .t-content__column__txt {
    width: 53.8461538462%;
  }
}
.real-quiz .t-content__column__img {
  max-width: 400px;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .real-quiz .t-content__column__img {
    max-width: inherit;
    width: 44.8717948718%;
  }
}
.real-quiz .t-content__column__comment {
  margin-top: 20px;
  padding: 20px;
  border-radius: 15px;
}
@media screen and (min-width: 769px) {
  .real-quiz .t-content__column__comment {
    margin-top: 40px;
    padding: 40px;
  }
}
.real-quiz .t-content__column__comment p {
  font-size: 14px;
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .real-quiz .t-content__column__comment p {
    font-size: 16px;
  }
}
@media screen and (min-width: 1025px) {
  .real-quiz .t-content__voice {
    padding: 60px 78px 80px;
  }
}
.real-quiz .t-content__voice__wrap {
  margin-top: 30px;
  gap: 10px;
}
@media screen and (min-width: 769px) {
  .real-quiz .t-content__voice__wrap {
    margin-top: 40px;
  }
}
.real-quiz .t-content__voice__link {
  position: relative;
  display: grid;
  gap: 10px 10px;
  grid-auto-flow: row;
  border: solid 1px #ffffff;
  border-radius: 15px;
  padding: 10px 12px;
  grid-template-areas: "ttl img" "txt img";
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .real-quiz .t-content__voice__link {
    gap: 15px 15px;
    padding: 20px 15px;
  }
}
@media screen and (min-width: 1025px) {
  .real-quiz .t-content__voice__link {
    gap: 20px 20px;
    padding: 20px 24px;
  }
}
.real-quiz .t-content__voice__link a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.real-quiz .t-content__voice__link h3 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: ttl;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .real-quiz .t-content__voice__link h3 {
    font-size: 15px;
  }
}
.real-quiz .t-content__voice__link p {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: txt;
  font-size: 10px;
  line-height: 1.75;
}
@media screen and (min-width: 769px) {
  .real-quiz .t-content__voice__link p {
    font-size: 11px;
  }
}
.real-quiz .t-content__voice__link img {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  grid-area: img;
  width: 98px;
  height: 83px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
@media screen and (min-width: 769px) {
  .real-quiz .t-content__voice__link img {
    width: 104px;
    height: 87px;
  }
}

/*----------------------------------------
	real-index
----------------------------------------*/
.uiturn-index .t-article * {
  color: #008CEE;
}
.uiturn-index .t-article {
  background-color: #008CEE;
  padding: 14px 10px;
}
@media screen and (min-width: 769px) {
  .uiturn-index .t-article {
    padding: 15px;
  }
}
.uiturn-index .t-article__inner {
  border-radius: 16px;
  background-color: #ffffff;
}
.uiturn-index .t-article__inner > * {
  max-width: 660px;
  margin: auto;
}
.uiturn-index .t-article section {
  margin-top: 22px;
}
@media screen and (min-width: 769px) {
  .uiturn-index .t-article section {
    margin-top: 60px;
  }
}
.uiturn-index .t-article section + section {
  margin-top: 50px;
}
@media screen and (min-width: 769px) {
  .uiturn-index .t-article section + section {
    margin-top: 100px;
  }
}
.uiturn-index .t-article section > h4 {
  margin-top: 40px;
}
@media screen and (min-width: 769px) {
  .uiturn-index .t-article section > h4 {
    margin-top: 80px;
  }
}
.uiturn-index .t-article section > div {
  margin: 24px 0;
}
@media screen and (min-width: 769px) {
  .uiturn-index .t-article section > div {
    margin: 30px 0;
  }
}
.uiturn-index h2 {
  position: relative;
  text-align: center;
  font-weight: 700;
  font-size: 27px;
}
@media screen and (min-width: 769px) {
  .uiturn-index h2 {
    font-size: 37px;
  }
}
.uiturn-index h2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #008CEE;
}
.uiturn-index h2 span {
  background-color: #ffffff;
  padding: 0 20px;
  position: relative;
}
.uiturn-index h3 {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  padding-left: 20px;
}
@media screen and (min-width: 769px) {
  .uiturn-index h3 {
    font-size: 28px;
  }
}
.uiturn-index h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 6px;
  height: 26px;
  background-color: #008CEE;
}
@media screen and (min-width: 769px) {
  .uiturn-index h3::before {
    height: 38px;
  }
}
.uiturn-index h4 {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .uiturn-index h4 {
    font-size: 22px;
    text-align: left;
  }
}
.uiturn-index h4.mt0 {
  margin-top: 0;
}
.uiturn-index .t-article__img,
.uiturn-index .t-article__txt {
  margin: 20px 0;
}
@media screen and (min-width: 769px) {
  .uiturn-index .t-article__img,
  .uiturn-index .t-article__txt {
    margin: 25px 0;
  }
}
.uiturn-index .t-article__txt {
  font-size: 14px;
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .uiturn-index .t-article__txt {
    font-size: 16px;
    line-height: 1.75;
  }
}
.uiturn-index .t-article__txt span {
  background-color: #F8FF46;
  padding: 1px 2px;
}
.uiturn-index div.t-article__3col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media screen and (min-width: 769px) {
  .uiturn-index div.t-article__3col {
    flex-direction: row;
    align-items: flex-start;
    gap: 4.8484848485%;
  }
}
.uiturn-index div.t-article__3col + p {
  margin-top: 32px;
}
@media screen and (min-width: 769px) {
  .uiturn-index div.t-article__3col + p {
    margin-top: 40px;
  }
}
.uiturn-index div.t-article__3col div {
  flex: 1;
  width: 67.7966101695%;
}
@media screen and (min-width: 769px) {
  .uiturn-index div.t-article__3col div {
    width: 100%;
  }
}
.uiturn-index div.t-article__3col .t-article__wrap__img {
  width: 70%;
}
@media screen and (min-width: 769px) {
  .uiturn-index div.t-article__3col .t-article__wrap__img {
    width: 100%;
  }
}
.uiturn-index div.t-article__3col p {
  font-size: 13px;
  margin-top: 10px;
}
.uiturn-index .t-article__wrap > div {
  border-radius: 20px;
  padding: 20px 14px;
  position: relative;
}
@media screen and (min-width: 769px) {
  .uiturn-index .t-article__wrap > div {
    padding: 40px 36px;
  }
}
.uiturn-index .t-article__wrap > div + div {
  margin-top: 20px;
}
.uiturn-index .t-article__wrap span {
  display: grid;
  place-items: center;
  height: 30px;
  width: -moz-fit-content;
  width: fit-content;
  box-sizing: border-box;
  border-radius: 20px;
  margin: auto;
  font-weight: 700;
  font-size: 12px;
  color: #ffffff;
}
@media screen and (min-width: 769px) {
  .uiturn-index .t-article__wrap span {
    height: 32px;
    font-size: 14px;
  }
}
.uiturn-index .t-article__wrap p {
  text-align: center;
  margin: 20px 0 0;
  font-weight: 700;
  line-height: 1.6;
}
.uiturn-index .t-article__wrap h4 {
  margin-top: 15px;
  text-align: center;
  font-size: 18px;
}
@media screen and (min-width: 769px) {
  .uiturn-index .t-article__wrap h4 {
    font-size: 22px;
    margin-top: 26px;
  }
}
.uiturn-index .t-article__wrap ul li {
  text-indent: -1em;
  padding-left: 1em;
}
.uiturn-index .t-article__wrap ul li::before {
  content: "・";
}
.uiturn-index .t-article__wrap ul li + li {
  margin-top: 5px;
}
.uiturn-index div.t-article__wrap--mind div {
  background-color: #EDEDED;
}
.uiturn-index div.t-article__wrap--mind span {
  background-color: #008CEE;
  min-width: 200px;
}
@media screen and (min-width: 769px) {
  .uiturn-index div.t-article__wrap--mind span {
    min-width: 240px;
  }
}
.uiturn-index div.t-article__wrap--mind .t-article__wrap__col2 {
  margin-top: 10px;
}
@media screen and (min-width: 769px) {
  .uiturn-index div.t-article__wrap--mind .t-article__wrap__col2 {
    margin-top: 40px;
  }
}
.uiturn-index div.t-article__wrap--mind img {
  width: 54.9019607843%;
  max-height: 112px;
  -o-object-fit: contain;
  object-fit: contain;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .uiturn-index div.t-article__wrap--mind img {
    width: 31.6326530612%;
    max-height: 162px;
  }
}
.uiturn-index div.t-article__wrap--mind ul {
  margin-top: 16px;
}
@media screen and (min-width: 769px) {
  .uiturn-index div.t-article__wrap--mind ul {
    margin-top: 0;
    width: 59.5238095238%;
  }
}
.uiturn-index div.t-article__wrap--mind ul li {
  font-size: 14px;
  line-height: 1.75;
  font-weight: 700;
}
.uiturn-index div.t-article__wrap--mind ul li + li {
  margin-top: 5px;
}
.uiturn-index div.t-article__wrap--merit::before,
.uiturn-index div.t-article__wrap--demerit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: contain;
  background-repeat: no-repeat;
}
.uiturn-index div.t-article__wrap--merit span,
.uiturn-index div.t-article__wrap--demerit span {
  min-width: 108px;
}
.uiturn-index div.t-article__wrap--merit ul,
.uiturn-index div.t-article__wrap--demerit ul {
  margin-top: 10px;
}
.uiturn-index div.t-article__wrap--merit ul li,
.uiturn-index div.t-article__wrap--demerit ul li {
  font-size: 13px;
  line-height: 1.5;
}
.uiturn-index div.t-article__wrap--merit ul li::before,
.uiturn-index div.t-article__wrap--demerit ul li::before {
  content: "・";
}
.uiturn-index div.t-article__wrap--merit ul li + li,
.uiturn-index div.t-article__wrap--demerit ul li + li {
  margin-top: 6px;
}
@media screen and (min-width: 769px) {
  .uiturn-index div.t-article__wrap--merit ul li,
  .uiturn-index div.t-article__wrap--demerit ul li {
    font-size: 14px;
  }
}
.uiturn-index div.t-article__wrap--merit {
  background-color: #FFF4E8;
}
.uiturn-index div.t-article__wrap--merit::before {
  background-image: url(../images/uiturn/img_circle.svg);
  width: 218px;
  height: 218px;
}
.uiturn-index div.t-article__wrap--merit p,
.uiturn-index div.t-article__wrap--merit h4,
.uiturn-index div.t-article__wrap--merit li {
  color: #FF7B0A;
}
.uiturn-index div.t-article__wrap--merit span {
  background-color: #FF7B0A;
}
.uiturn-index div.t-article__wrap--demerit {
  background-color: #E8F2FE;
}
.uiturn-index div.t-article__wrap--demerit::before {
  background-image: url(../images/uiturn/img_x.svg);
  width: 180px;
  height: 180px;
}
.uiturn-index div.t-article__wrap--demerit span {
  background-color: #375FE6;
}
.uiturn-index div.t-article__wrap--demerit p,
.uiturn-index div.t-article__wrap--demerit h4,
.uiturn-index div.t-article__wrap--demerit li {
  color: #375FE6;
}
.uiturn-index .t-article__block {
  position: relative;
  padding-top: 26px;
}
.uiturn-index .t-article__block::before, .uiturn-index .t-article__block::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-size: contain;
  background-repeat: no-repeat;
}
.uiturn-index .t-article__block::before {
  top: 0px;
  background-color: #E3F8FF;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}
.uiturn-index .t-article__block::after {
  top: 15px;
  background-image: url(../images/uiturn/ico_pen.svg);
  width: 24px;
  height: 24px;
}
.uiturn-index .t-article__block__inner {
  border-radius: 20px;
  background-color: #E3F8FF;
  padding: 34px 20px 20px;
}
@media screen and (min-width: 769px) {
  .uiturn-index .t-article__block__inner {
    padding: 34px 34px 30px;
  }
}
.uiturn-index .t-article__block__inner p {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.75;
}
.uiturn-index .t-article__block__inner p.center {
  text-align: center;
}
@media screen and (min-width: 769px) {
  .uiturn-index .t-article__block__inner p {
    font-size: 16px;
    line-height: 1.75;
  }
}
.uiturn-index .t-article__block__inner p.t-article__txt--s {
  font-weight: 500;
  font-size: 14px;
}
.uiturn-index .t-article__block__inner .t-article__note {
  font-weight: 500;
  font-size: 12px;
  margin-top: 5px;
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  .uiturn-index .t-article__block__inner .t-article__note {
    margin-top: 16px;
  }
}
.uiturn-index .t-article__block ol {
  margin-top: 14px;
}
.uiturn-index .t-article__block ol li {
  display: flex;
  gap: 5px;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .uiturn-index .t-article__block ol li {
    gap: 10px;
  }
}
.uiturn-index .t-article__block ol li img {
  width: 30px;
}
@media screen and (min-width: 769px) {
  .uiturn-index .t-article__block ol li img {
    width: 34px;
  }
}
.uiturn-index .t-article__block ol li p {
  line-height: 1.5;
}
.uiturn-index .t-article__block ol li + li {
  margin-top: 10px;
}
@media screen and (min-width: 769px) {
  .uiturn-index .t-article__block ol li + li {
    margin-top: 12px;
  }
}
.uiturn-index .t-article__block ol + p {
  margin-top: 22px;
}
@media screen and (min-width: 769px) {
  .uiturn-index .t-article__block ol + p {
    margin-top: 30px;
  }
}
@media screen and (min-width: 769px) {
  .uiturn-index .t-article__block .t-article__checkList {
    width: -moz-fit-content;
    width: fit-content;
    margin: 30px auto;
  }
}
.uiturn-index .t-article__block .t-article__checkList li::before {
  background-image: inherit;
  background-color: #008CEE;
  -webkit-mask: url("../images/uiturn/ico_check.svg") no-repeat center;
  mask: url("../images/uiturn/ico_check.svg") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.uiturn-index .t-article__checkList {
  margin: 30px 0;
}
.uiturn-index .t-article__checkList li {
  position: relative;
  padding-left: 26px;
  font-weight: 700;
  font-size: 14px;
}
@media screen and (min-width: 769px) {
  .uiturn-index .t-article__checkList li {
    padding-left: 30px;
    font-size: 16px;
  }
}
.uiturn-index .t-article__checkList li::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url("../images/uiturn/ico_check.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.uiturn-index .t-article__checkList li + li {
  margin-top: 10px;
}
@media screen and (min-width: 769px) {
  .uiturn-index .t-article__checkList li + li {
    margin-top: 16px;
  }
}
.uiturn-index ul.t-article__penList li {
  font-weight: 700;
}
.uiturn-index ul.t-article__penList li + li {
  margin-top: 16px;
}
@media screen and (min-width: 769px) {
  .uiturn-index ul.t-article__penList li + li {
    margin-top: 30px;
  }
}
.uiturn-index ul.t-article__penList li h4 {
  position: relative;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.75;
  padding-left: 20px;
}
.uiturn-index ul.t-article__penList li h4::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  background-image: url(../images/uiturn/ico_pen.svg);
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 769px) {
  .uiturn-index ul.t-article__penList li h4 {
    padding-left: 26px;
    font-size: 16px;
    line-height: 1.75;
  }
  .uiturn-index ul.t-article__penList li h4::before {
    width: 20px;
    height: 20px;
  }
}
.uiturn-index ul.t-article__penList li p {
  font-weight: 500;
  font-size: 13px;
  margin-top: 8px;
}
@media screen and (min-width: 769px) {
  .uiturn-index ul.t-article__penList li p {
    font-size: 14px;
    line-height: 1.75;
    margin-top: 16px;
  }
}
.uiturn-index .t-article__link {
  margin-top: 30px;
}