@charset "utf-8";
.mv{
  background-color: #98C9ED;
}
.mv__inner{
  width: 100%;
  margin: 0 auto;
}
@media (width < 1200px) {
  .mv__inner img{
    width: 100%;
    height: auto;
  }
}

@media (width >= 1200px) {
  .mv__inner{
    max-width: 1200px;
  }
}
.main {
  justify-content: center;
  width: 100%;
  display: flex;
  background-color: #FFF7F6;
}

.main__container {
  gap: 16px;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column-reverse;
}

@media (width >= 768px) {
  .main__container {
    gap: 20px;
    padding: 0;
    flex-direction: row;
  }
}

.sidebar {
  display: none;
}

@media (width >= 960px) {
  .sidebar {
    background-color: #dadadb;
    flex-shrink: 0;
    width: 283px;
    height: 337px;
    display: block;
  }
}

.content {
  flex-direction: column;
  flex: 1;
  gap: 16px;
  display: flex;
  background: #FFF;
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.10);
  padding: 20px 0 0;
  width: 100%;
}

@media (width >= 768px) {
  .content {
    gap: 32px;
    padding: 40px 16px;
  }
}

.lead {
  width: 100%;
  position: relative;
}
  .lead__bg {
    object-fit: cover;
    pointer-events: none;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    inset: 0;
  }


.lead__text {
  color: #333;
  letter-spacing: 1.4px;
  text-align: left;
  z-index: 1;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.7;
  display: flex;
  position: relative;
}

.blue_marker{
   background: linear-gradient(transparent 35%, rgba(164, 200, 226, 0.7) 0%);
}

@media (width >= 768px) {
  .lead__text {
    letter-spacing: 1.6px;
    padding: 24px 32px;
    font-size: 16px;
    text-align: center;
  }
}

.tab-input {
  display: none;
}

.tabs {
  gap: 8px;
  display: flex;
}

@media (width < 768px) {
  .tabs {
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: #fff;
    border-bottom: 1px solid #D9D9DA;
  }
}

.tabs__button {
  color: #fff;
  letter-spacing: 1.6px;
  text-align: center;
  cursor: pointer;
  background-color: #d9d9d9;
  flex: 1;
  padding: 20px 16px;
  font-size: 24px;
  font-weight: bold;
  transition: all .3s;
  border-radius: 8px 8px 0 0 ;
}

@media (width <= 767px) {
  .tabs__button {
    letter-spacing: 1.4px;
    padding: 16px 12px;
    font-size: 14px;
  }
}

#tab-interview:checked ~ .tabs .tabs__button--interview, .tabs__button--interview:hover {
  background-color: #e288a4;
}

.tabs__button--essay {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}

#tab-essay:checked ~ .tabs .tabs__button--essay, .tabs__button--essay:hover {
  background-color: #72c3cc;
}



#tab-written:checked ~ .tabs .tabs__button--written, .tabs__button--written:hover {
  background-color: #cfac18;
}

.tab-content {
  display: none;
}

#tab-interview:checked ~ .tab-content--interview, #tab-essay:checked ~ .tab-content--essay, #tab-written:checked ~ .tab-content--written {
  display: block;
  padding: 24px;
}
.tab-content--interview{
  background-color: #FFEEF4;
}
.tab-content--essay{
    background-color: #E6F2F3;
}
.tab-content--written{
    background-color: #F8F2D5;
}
.tab-content--essay .more__button{
  background: #72C3CC;
}
.tab-content--essay .question-card__label--interview,
.tab-content--essay .question-card__answer-icon,
.tab-content--essay .supervisor-header{
  background: #72C3CC;
}
.tab-content--essay  .question-card__answer{
  background: #E6F2F3;
}
.tab-content--essay .check__title,
.tab-content--essay .solution-title{
  color: #3C9DA8;
}
.tab-content--essay .solution-card{
    border: 1px solid #72C3CC;
}
.tab-content--written .question-card__label--interview,
.tab-content--written .question-card__answer-icon,
.tab-content--written .supervisor-header,
.tab-content--written .more__button{
  background: #cfac18;
}
.tab-content--written .solution-title,
.tab-content--written .check__title{
  color: #BD9D11;
}

.tab-content--written  .question-card__answer{
  background: #F8F2D5;
  margin-bottom: 32px;
}
.questions {
  flex-direction: column;
  display: flex;
  gap: 24px;
}

@media (width >= 768px) {
  .questions {
    display: flex;
  }
}

.question-card {
  background-color: #fff;
  border-radius: 8px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 4px 4px #0003;
}

.question-card__checkbox {
  display: none;
}

.question-card__wrapper {
  border-radius: inherit;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  position: relative;
}

.question-card__inner {
  width: 100%;
  display: flex;
}


@media (width >= 768px) {
.question-card__inner {
  padding: 0 0 0 16px;
}
}


.question-card__row {
   flex-direction: column;

  align-self: stretch;
  align-items: flex-start;
  width: 100%;
  display: flex;
}
@media (width >= 768px) {
  .question-card__row {
   flex-direction: row;
  }
}

.question-card__label {
  flex-shrink: 0;
  justify-content: center;
  align-items: flex-start;
  width: 90px;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.question-card__label--interview {
  background-color: #e288a4;
}

.question-card__label--essay {
  background-color: #72c3cc;
}

.question-card__label--written {
  background-color: #cfac18;
}

.question-card__label-text {
  color: #fff;
  letter-spacing: 1.8px;
  text-align: center;
  font-size: 16px;
  padding: 8px;
  font-weight: bold;
  line-height: normal;
  position: relative;
  display: contents;
}
.question-card__label-num{
  position: absolute;
  right: 24px;
}
@media (width >= 768px) {
  .question-card__label-text {
    position: static;
    display: block;
  }
    .question-card__label-num{
    position: static;
  }
}


.question-card__label-num {
  color: #fff;
  letter-spacing: 2.4px;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
}

.question-card__content {
  flex-direction: column;
  width: 100%;
  display: flex;
  flex: 1;
  padding: 0 0 0 16px;
}

.question-card__header {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 16px 16px 52px 16px;
  display: flex;
}
@media (width >= 768px) {
.question-card__header {
  padding: 16px 16px 32px 16px;
}
}


.question-card__title {
  color: #333;
  letter-spacing: 1.6px;
  font-size: 16px;
  line-height: 1.7;
  font-weight: bold;
}
@media (width >= 768px) {
.question-card__title {
  font-size: 20px;
}
}
.question-card__subtitle{
  display: block;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 1.6px;
  border-bottom: 2px #000 solid;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.question-card__title-wrapper ol.num_list {
  font-weight: bold;
  font-size: 16px;
  padding: 20px;
  line-height: 2.0;
}
.question-card__toggle {
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
  display: flex;
  position: absolute;
  justify-content: flex-end;
  bottom: 16px;
  right: 16px;
}

.question-card__toggle-text {
  letter-spacing: 1.4px;
  font-size: 12px;
}

.question-card__toggle-text--interview,.question-card__toggle-text--essay,.question-card__toggle-text--written {
  color: #333;
}

.question-card__toggle-text--open {
  display: none;
}

.question-card__toggle-text--closed, .question-card__checkbox:checked ~ .question-card__wrapper .question-card__toggle-text--open {
  display: inline;
}

.question-card__checkbox:checked ~ .question-card__wrapper .question-card__toggle-text--closed {
  display: none;
}

.question-card__arrow {
  width: 16px;
  height: 16px;
  transition: transform .3s;
}

.question-card__checkbox:checked ~ .question-card__wrapper .question-card__arrow {
  transform: rotate(180deg);
}

.question-card__body {
  max-height: 0;
  transition: max-height .3s;
  transition: opacity .3s;
  overflow: hidden;
  opacity: 0;
    
}

.question-card__checkbox:checked ~ .question-card__wrapper .question-card__body {
  max-height: 1000px;
  padding: 0 16px 16px 0;
  opacity: 1;
}

.question-card__answer {
  display: flex;
  padding: 24px 16px 16px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  border-radius: 4px;
  background: #FFEEF4;
}

.question-card__answer-label {
gap: 24px;
  display: flex;
}
.question-card__answer-label p{
    color: #333;
    letter-spacing: 1.4px;
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.7;
}
.question-card__answer-icon{
  border-radius: 1000px;
  background: #E288A4;
  display: flex;
  width: 32px;
  height: 32px;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  aspect-ratio: 1/1;
}
.question-card__answer-icon img{
  width: 4px;
  height: 15px;
}
.question-card__answer-text {
  color: #333;
  letter-spacing: 1.6px;
  text-indent: 36px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
  padding: 24px;
  background-color: #fff;
  text-align: justify;
}
.tab-content.tab-content--written .question-card__answer-text{
  text-indent: 0;
}
@media (width >= 768px) {
  .question-card__answer-text {
    font-size: 16px;
  }
}

.sp_only{
  display: inline;
}
@media (width >= 768px) {
  .sp_only{
    display: none;
  }
}
@media (width < 768px) {

.question-card__checkbox {
  display: none;
}

.question-card__wrapper {
  flex-direction: column;
  width: 100%;
  display: flex;
}

.question-card__label {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: auto;
  padding: 12px 24px;
  display: flex;
}

.question-card__label-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.question-card__label-title {
  color: #fff;
  letter-spacing: 1.6px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
}

.question-card__label-num {
  color: #fff;
  letter-spacing: 2.4px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
}

.question-card__content {
  padding: 0 0 0 8px;
}

.question-card__question-section {
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  display: flex;
}

.question-card__question-text {
  color: #333;
  letter-spacing: 1.6px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.7;
}

.question-card__divider {
  background-color: #00000080;
  width: 100%;
  height: 1px;
}

.question-card__toggle-header {
  cursor: pointer;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  display: flex;
}

.question-card__toggle-button {
  letter-spacing: 1.4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.question-card__toggle-button--interview {
  color: #e288a4;
}

.question-card__toggle-button--essay {
  color: #72c3cc;
}

.question-card__toggle-button--written {
  color: #cfac18;
}

.question-card__toggle-button--closed {
  display: inline;
}

.question-card__toggle-button--open, .question-card__checkbox:checked ~ .question-card__wrapper .question-card__toggle-header {
  display: none;
}

.question-card__toggle-arrow {
  width: 14px;
  height: 14px;
  transition: transform .3s;
}

.question-card__toggle-arrow--open {
  transform: rotate(180deg);
}

.question-card__body {
  max-height: 0;
  transition: max-height .3s;
  overflow: hidden;
}

.question-card__checkbox:checked ~ .question-card__wrapper .question-card__body {
  max-height: 3000px;
  padding: 0 8px 16px 0;
}

.question-card__toggle-footer {
  display: none;
}

.question-card__checkbox:checked ~ .question-card__wrapper .question-card__toggle-footer {
  cursor: pointer;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 0 24px 24px;
  display: flex;
}

.question-card__answer {
  padding: 24px 8px 16px 8px;
}

.question-card__answer-container {
  flex-direction: column;
  gap: 16px;
  padding: 0 24px 24px;
  display: flex;
}

.question-card__answer-wrapper {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.question-card__answer-section {
  background-color: #ffeef4;
  border-radius: 8px;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  display: flex;
}

.question-card__answer-icon {
  color: #fff;
  background-color: #e288a4;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  font-size: 14px;
  font-weight: bold;
  display: flex;
}


.question-card__answer-detail {
  background-color: #fff;
  border-radius: 4px;
  padding: 16px;
}

.question-card__answer-detail-text {
  color: #333;
  letter-spacing: 1.2px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
}

.question-card__related {
  border: 1px solid #e288a4;
  border-radius: 8px;
  padding: 24px 16px;
}

.question-card__related-header {
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
  position: relative;
}

.question-card__related-title {
  color: #d3597f;
  letter-spacing: 1.4px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.question-card__related-arrow-left {
  width: 17px;
  height: 28px;
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
}

.question-card__related-arrow-right {
  width: 15px;
  height: 26px;
  position: absolute;
  top: 50%;
  right: 3px;
  transform: translateY(-50%)rotate(180deg)scaleY(-1);
}

.question-card__related-list {
  color: #333;
  letter-spacing: 1.2px;
  padding-left: 18px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.7;
}

.question-card__related-list li {
  margin-bottom: 8px;
}

.question-card__related-list li:last-child {
  margin-bottom: 0;
}

.question-card__toggle-text {
  color: #333;
  letter-spacing: 1.2px;
  text-align: right;
  font-size: 12px;
  font-weight: bold;
  line-height: 28px;
}

.question-card__toggle-icon {
  width: 16px;
  height: 16px;
  transition: transform .3s;
}

.question-card__toggle-icon--open {
  transform: rotate(180deg);
}
}
.more {
  justify-content: center;
  display: flex;
  margin-top: 24px;
}

.more__button {
  color: #fff;
  letter-spacing: 1.4px;
  border-radius: 4px;
  background: #E288A4;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.20);
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: bold;
  display: flex;
}
a.more__button{
  text-decoration: none;
}

@media (width >= 768px) {
  .more__button {
    letter-spacing: 1.6px;
    padding: 16px 32px;
    font-size: 16px;
  }
}

.more__button svg {
  width: 8px;
  height: 14px;
}

.supervisor-card {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 8px;
  margin-top: 16px;
}

.supervisor-header {
  background-color: #e288a4;
  width: 100%;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
}

.supervisor-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: white;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 1.6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 0;
}

.supervisor-name p {
  line-height: 28px;
  
}

.supervisor-content {
  width: 100%;
  position: relative;
}

.supervisor-content-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  padding: 24px 48px;
  color: #333333;
  font-size: 16px;
  letter-spacing: 1.6px;
  line-height: 0;
  width: 100%;
}

.supervisor-occupation {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.supervisor-occupation p {
  line-height: 28px;
}

.supervisor-bio {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.supervisor-bio p {
  line-height: 1.7;
}

.solution-card {
  background-color: white;
  border: 1px solid #e288a4;
  border-radius: 8px;
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 32px 0;
  margin-top: 16px;
  margin-bottom: 32px;
}

.solution-header {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.tab-content--written .solution-header{
margin-bottom: 16px;
}
.tab-content--written .question-card__answer-label ol.num_list{
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  padding-left: 24px;
}
ol.num_list{
  list-style-type: decimal;
}

.solution-arrow-left,
.solution-arrow-right {
  position: relative;
  flex-shrink: 0;
}

.solution-arrow-left {
  width: 9px;
  height: 15px;
}

.solution-arrow-right {
  width: 8px;
  height: 14px;
  transform: rotate(180deg) scaleY(-1);
}

.solution-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.solution-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #d3597f;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 1.6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
}

.solution-title p {
  font-size: 16px;
  font-weight: bold;
}
@media (width >= 768px) {
.solution-title p {
  font-size: 16px;
}
}
.solution-content {
  position: relative;
  flex-shrink: 0;
  width: 100%;
}

.solution-content-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 20px;
}
@media (width >= 768px) {
  .solution-content-inner {
    padding: 0 40px;
  }
}
.solution-list {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 12x;
  color: #333333;
  letter-spacing: 1.6px;
  list-style-type: disc;
  width: 100%;
  flex-grow: 1;
}
@media (width >= 768px) {
.solution-list {
     font-size: 16px;
  }
}
.solution-list li {
  margin-bottom: 8px;
  margin-left: 24px;
}

.solution-list li:last-child {
  margin-bottom: 0;
}

.solution-list li span {
  line-height: 1.7;
}
.answer-card {
  background-color: #f3f3f3;
  border-radius: 8px;
  width: 100%;
  max-width: 800px;
  position: relative;
  margin-bottom: 8px;
}

.answer-container {
  box-sizing: border-box;
  display: flex;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
  position: relative;
  width: 100%;
  color: #333333;
  white-space: nowrap;
}

.answer-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  font-size: 16px;
  letter-spacing: 1.6px;
}

.answer-label p {
  line-height: 28px;
  
}

.answer-number {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: calc(50% - 7.5px);
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  letter-spacing: 2.4px;
}

.answer-number p {
  line-height: 28px;
  
}
@media (width >= 768px) {
  .check {
    flex-direction: column;
    gap: 16px;
    display: flex;
  }
}

  .check__header {
    align-items: center;
    gap: 8px;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .check__title {
    color: #D3597F;
    letter-spacing: 2px;
    font-size: 24px;
    font-weight: bold;
    line-height: 28px;
  }

  .check__cards {
    gap: 16px;
    display: flex;
  }

  .check__card {
    background-color: #fff;
    border-radius: 8px;
    width: 100%;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.20);
  }

@media (width >= 768px) {
  .check__card {
   flex-wrap: nowrap;
  align-items: flex-start;
  }
}

  .check__card-title {
    color: #333;
    letter-spacing: 1.8px;
    font-size: 24px;
    font-weight: bold;
    line-height: 28px;
    width: 50%;
  }

  .check__banner {
    background-color: #72c3cc;
    border-radius: 8px;
    padding: 32px;
  }

  .check__banner-title {
    color: #fff;
    letter-spacing: 1.6px;
    font-size: 16px;
    font-weight: bold;
    line-height: 28px;
  }

  .check__banner-text {
    color: #fff;
    letter-spacing: 1.4px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
  }
  .check {
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    display: flex;
    align-items: flex-start;
  }
  .check a{
    text-decoration: none;
  }
.check__card-image {
  object-fit: cover;
  border-radius: 4px;
  width: 88px;
  height: 88px;
}
@media (width >= 768px) {
  .check__card-image {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
  }
}

.check__card-content {
  gap: 16px;
  padding: 8px 0;
  display: contents;
}
@media (width >= 768px) {
.check__card-content {
  display: flex;
  flex-wrap: wrap;
}
}

.check__card-title {
  color: #000;
  letter-spacing: 2.4px;
  font-size: 16px;
  font-weight: bold;
  line-height: normal;
}
@media (width >= 768px) {
.check__card-title {
  font-size: 24px;
  width: 74%;
}
}
.check__card-divider {
  border-top: 1px solid #00000080;
  width: 100%;
  height: 0;
}

.check__card-text {
  color: #000;
  letter-spacing: 1.6px;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.login-prompt-card {
  background-color: white;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  padding: 24px 0;
  position: relative;
  border-radius: 8px;
  width: 100%;
}

.login-prompt-message-wrapper {
  box-sizing: border-box;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding-left: 8px;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  flex-shrink: 0;
}

.login-prompt-lock {
  height: 36px;
  position: relative;
  flex-shrink: 0;
  width: 34px;
}

.login-prompt-svg {
  display: block;
  width: 100%;
  height: 100%;
}
.login-prompt-svg_v {
  width: 12px;
  height: auto;
}
.login-prompt-lock .login-prompt-svg_v{
width: 100%;
height: auto;}
  in-prompt-message-container {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  padding: 2px 0;
  position: relative;
  flex-shrink: 0;
}

.login-prompt-message {
  box-sizing: border-box;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 5px 0;
  position: relative;
  flex-shrink: 0;
  width: 100%;
}

.login-prompt-message p {
  font-weight: 500;
  font-size: 16px;
  color: black;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 2px;
  line-height: normal;
}

.login-prompt-button {
  background-color: #00abeb;
  box-sizing: border-box;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 24px 40px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-prompt-button:hover {
  background-color: #0096d1;
}

.login-prompt-button-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.login-prompt-button-text a {
  font-weight: 700;
  font-size: 14px;
  color: white;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 2px;
  line-height: 1;
  font-style: normal;
}
@media (width >= 768px) {
.login-prompt-button-text a,.login-prompt-message p {
  font-size: 20px;
}
}
.blur{filter: blur(5px);}

@media (width <= 767px) {
  #tab-interview:checked ~ .tab-content--interview, #tab-essay:checked ~ .tab-content--essay, #tab-written:checked ~ .tab-content--written {
    padding: 24px 8px;
  }
  .question-card__answer-text {
    letter-spacing: 1.1px;
    text-indent: 0;
    padding: 24px 16px;
  }
}

a.more__button.disable {
  background-color: #999;
  pointer-events: none;
}

.more_btm .login-prompt-message-wrapper {
  margin-top: 14px;
}

.more_btm .login-prompt-lock {
  height: 18px;
  width: 18px;
}

.more_btm .login-prompt-message p {
  font-size: 14px;
}

.dl__banner {
  width: 100%;
  margin: 24px auto 0;
  border-radius: 8px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.20);
}

@media (width < 768px) {
  .dl__banner img{
    width: 100%;
    height: auto;
  }
}

@media (width >= 768px) {
  .dl__banner {
    max-width: 760px;
  }
}

.dl__banner.disable {
  filter: grayscale(100%);
  opacity: 0.8;
}

