@charset "UTF-8";

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  word-break: break-all;
}

body {
  transition: 1.4s;
  font-family: "Noto Sans JP", sans-serif;
}

body.no_scroll {
  overflow: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  color: unset;
  text-decoration: none;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
div,
span {
  /* font-size: 100%; */
  line-height: 1.6;
}

img {
  vertical-align: bottom;
}

.flex {
  display: flex;
}

.jus-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

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

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

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

.loading {
  opacity: 0;
}

.scroll {
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  transition: transform 2s, opacity 2s, visibility 2s;
}

.scroll-left {
  transform: translateX(30px);
  opacity: 0;
  visibility: hidden;
  transition: transform 2s, opacity 2s, visibility 2s;
}

.scroll-right {
  transform: translateX(-30px);
  opacity: 0;
  visibility: hidden;
  transition: transform 2s, opacity 2s, visibility 2s;
}

.fadein {
  transform: translateX(0);
  opacity: 2;
  visibility: visible;
}

.line-break {
  white-space: pre-line;
}

::placeholder {
  color: #d3d3d3;
}

input {
  border: 1px solid #cccccc;
  border-radius: 5px;
  padding: 1px 10px;
}

input:focus,
input:focus-visible {
  /* border: 1px solid #376439; */
  outline: 0;
}

input[type=date] {
  padding: 0 10px;
}

input[type="submit"] {
  width: auto;
  background: #0071be;
  color: white;
}

select {
  border: 1px solid #cccccc;
  height: 30px;
  border-radius: 5px;
  padding: 1px 10px;
  background: white;
}

select:focus,
select:focus-visible {
  border: 1px solid #376439;
  outline: 0;
}

input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 2rem;
  height: 2rem;
  border: 1px solid #cccccc;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  margin-right: 5px;
  position: relative;
  padding: 0;
  top: 6px;
  right: 0px;
  background: white;
}

input[type="radio"]:checked {
  border-color: #376439;
}

input[type="radio"]:checked::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background: #376439;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

input[type="radio"]:focus,
input[type="radio"]:focus-visible {
  border: 1px solid #376439;
  outline: 0;
}

input:disabled {
  background: grey !important;
}

textarea {
  border: 1px solid #cccccc;
  border-radius: 5px;
  padding: 1px 10px;
}

textarea:focus,
textarea:focus-visible {
  border: 1px solid #376439;
  outline: 0;
}

label {
  font-weight: normal;
  margin-bottom: 0;
}

summary {
  display: block;
}

summary::after {
  border-right: solid 3px #262626;
  border-top: solid 3px #262626;
  content: "";
  display: block;
  height: 12px;
  position: relative;
  right: -97%;
  top: -20px;
  transform: rotate(135deg);
  transition: transform .3s ease-in-out, top .3s ease-in-out;
  width: 12px;
}

/* オープン時 */
details[open] summary:after {
  transform: rotate(-45deg);
  top: -15px;
  /* 90度回転 */
  /* left: 4px;
  top: 5px; */
}

/* Chrome、Safari */
summary::-webkit-details-marker {
  display: none;
}

/**  PC 共通
****************************************************************************/
.floating-bnr_area {
  position: fixed;
  bottom: 5%;
  right: 0;
  z-index: 9995;
}

.floating-bnr_experience,
.floating-bnr_login {
  width: 50px;
  height: 150px;
  line-height: 1.6;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #fff;
}

.floating-bnr_experience {
  border-radius: 12px 0 0 0;
}

.floating-bnr_login {
  border-radius: 0 0 0 12px;
}

/****************************************************************************
        共通
****************************************************************************/
.contents-wrap {
  max-width: 1400px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

h2.sec-title_head {
  display: inline-block;
  font-weight: bold;
  font-size: 26px;
  margin-bottom: 0;
}

p.sec-title_en {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 0px;
  color: #262626;
}

h2.sec-main_title {
  font-size: 50px;
  font-weight: bold;
  margin: 0px;
}

h2.sec-online-study {
  font-size: 60px;
  font-weight: bold;
  margin: 0px;
}

p.sec-sub_text {
  font-size: 18px;
  font-weight: 500;
}

.arrow {
  position: relative;
}

.arrow::after {
  content: "";
  display: block;
  background-image: url(/images/top/btn-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 47px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translateY(-50%);
}

/****************************************************************************
        ヘッダー
****************************************************************************/
#header {
  width: calc(100% - 40px);
  background-color: #fff;
  border-radius: 60px;
  padding: 15px;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  /* border-bottom: 1px solid rgb(234 234 234) */
}

.header-container {
  justify-content: space-between;
  margin: 0 auto;
  align-items: center;
  padding: 0 20px;
}

.main-logo {
  max-width: 130px;
}

.main-logo img {
  width: 110px;
}

ul.menu-list_area {
  gap: 30px;
  margin-bottom: 0;
}

li.menu-list a {
  font-size: 14px;
  font-weight: bold;
  color: #42633e;
}

.header-btn_contact,
.header-btn_partner {
  width: 125px;
  height: 40px;
  text-align: center;
}

.header-btn_contact a,
.header-btn_partner a {
  line-height: 40px;
  font-weight: bold;
  font-size: 13px;
  display: block;
  width: 100%;
  height: 100%;
}

.header-btn_contact a:hover,
.header-btn_partner a:hover {
  color: #eee;
}

.header-login_btn {
  width: 140px;
  height: 40px;
  gap: 10px;
  align-items: center;
  border: solid 2px #42633e;
  border-radius: 45px;
  justify-content: center;
}

.header-login_btn a {
  font-size: 14px;
  font-weight: bold;
  color: #42633e;
}

.message-btn {
  position: relative;
  display: flex;
  align-items: center;

  & a {
    /* position: relative;
    width: 40px;
    height: 40px; */

    & img {
      object-fit: contain;
    }

    & span.unread {
      position: relative;
      bottom: -1px;
      right: 17px;
      background: #9bd7ed;
      width: 11px;
      height: 11px;
      display: inline-block;
      border-radius: 50%;
      margin-right: -11px;
    }

    /* & span.unread_sp {
      position: absolute;
      bottom: 5px;
      left: 104px;
      background: #FFC107;
      width: 11px;
      height: 11px;
      display: inline-block;
      border-radius: 50%;
    } */
  }
}

/*
li.search-btn::after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background-color: #42633E;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 25px 25px 0;
}
*/

nav {
  /* background-color: #fff; */
  width: -moz-max-content;
  width: max-content;
}

ul.header-link_area {
  align-items: center;
  position: relative;
  z-index: 5;
  padding: 0;
  margin-bottom: 0;
}

li.header-link_text {
  font-size: 14px;
  color: #376439;
  margin-right: 10px;
  padding: 5px;
  margin-top: 5px;

  &:hover {
    color: #5cb85c;
  }

  @media screen and (max-width: 780px) {
    &:hover {
      color: white;
    }
  }
}

li.header-link_text a:hover {
  color: inherit;
}

li.header-link_contact,
li.header-link_other {
  width: 160px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 14px;
  color: #fff;
}

ul.header-link_hover {
  display: none;
  width: 100%;
  position: absolute;
  top: 30px;
  left: 0;
}

.drop-menu_list {
  position: relative;
}

.drop-menu_list:hover .header-link_hover {
  display: block;
}

li.link-hover_text {
  background-color: #42633E;
  transition: all 0.3s;
  position: relative;
  /*width: -moz-max-content;*/
  width: 200px;
  color: #fff;
  padding: 10px;

  :hover {
    color: inherit;
  }

  &:hover {
    background-color: #5f8957;
  }
}

/****************************************************************************
        フッター
****************************************************************************/
#footer {
  /* margin-top: 150px; */
  padding: 80px 0;
  background-color: #42633e;
}

.footer-container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  justify-content: flex-start;
  gap: 70px;
  flex-wrap: wrap;
}

ul.footer-nav_area {
  max-width: 300px;
  height: -moz-max-content;
  height: max-content;
  border-left: solid 1px #fff;
  padding-left: 20px;
}

.footer-nav_head {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}

p.footer-nav_text {
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
}

.footer-nav_btn {
  width: 140px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: #fff;
  border-radius: 35px;
  margin-top: 20px;
  margin-bottom: 15px;
}

.footer-nav_btn a {
  font-size: 14px;
  font-weight: 500;
  display: block;
  width: 100%;
  height: 100%;
  color: #42633e;
}

.footer-nav_link {
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
  padding-bottom: 12px;
  font-weight: 500;
}

.footer-nav_link a:hover {
  color: #eee;
}

.footer-nav_sns {
  gap: 10px;
}

.footer-nav_sns img {
  width: 40px;
  height: 40px;
}

p.copyright {
  font-size: 12px;
  padding: 30px 0;
}

.chat-area {
  position: fixed;
  right: 60px;
  bottom: 60px;
  z-index: 1000;
}

.chat-icon {
  /* position: fixed;
  right: 0%;
  bottom: 40%; */
  z-index: 2;
  background: white;
  padding: 8px;
  border-radius: 50px;
  position: absolute;
  cursor: pointer;
}

.chat-icon-point {
  font-size: 10px;
  position: absolute;
  right: 0px;
  top: 32px;
  width: 13px;
  height: 13px;
  /* z-index: 2; */
  background: #9bd7ed;
  border-radius: 20px;
  border: 2px solid white;
}

.line-icon {
  /* position: fixed;
  right: 7px;
  bottom: 47%; */
  z-index: 2;
  background: white;
  /* padding: 10px; */
  border-radius: 50px;
  position: absolute;
  top: -51px;
  right: -43px;
}

.line-click-popup {
  /* z-index: 2; */
  background: white;
  /* padding: 10px; */
  border-radius: 5px;
  padding: 10px;
  /* opacity: 0; */
  visibility: hidden;
  position: absolute;
  width: 270px;
  top: -50px;
  right: 5px;
  font-size: 10px;
}

.messenger-icon {
  /* position: fixed;
  right: 5px;
  bottom: 52%; */
  z-index: 2;
  /* background: white; */
  /* padding: 10px; */
  border-radius: 50px;
  position: absolute;
  top: -104px;
}

.messenger-click-popup {
  /* z-index: 2; */
  background: white;
  /* padding: 10px; */
  border-radius: 5px;
  padding: 10px;
  /* opacity: 0; */
  visibility: hidden;
  position: absolute;
  width: 270px;
  top: -100px;
  right: 5px;
  font-size: 10px;
}

.zalo-icon {
  z-index: 2;
  /* background: white; */
  /* padding: 10px; */
  border-radius: 50px;
  position: absolute;
  top: -150px;
  left: 2px;
}

.zalo-click-popup {
  /* z-index: 2; */
  background: white;
  /* padding: 10px; */
  border-radius: 5px;
  padding: 10px;
  /* opacity: 0; */
  visibility: hidden;
  position: absolute;
  width: 270px;
  top: -150px;
  right: 5px;
  font-size: 10px;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.chat-sns-line {
  display: none;
  /* 完全に透明 */
}

.show-content {
  display: block;
  top: 50px;
  animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.4);
  /* -webkit-transition: all 0.2s ease; */
  /* transition: all 0.2s ease; */
  border-radius: 50px;
  background-image: url(/images/redo.png);
  background-size: 20px;
  /* background: no-repeat; */
  background-position: center;
  background-repeat: no-repeat;
}


/**      Tab時　非表示      **/
@media screen and (max-width: 1200px) and (min-width: 781px) {
  .tab_unshow {
    display: none;
  }
}

/**      Tab時　表示      **/
@media screen and (max-width: 1200px) and (min-width: 781px) {

  .floating-bnr_experience,
  .floating-bnr_login {
    height: 180px;
  }

  .chat-area {
    /* bottom: 470px; */
  }
}

/**      PC　以上      **/
@media screen and (min-width: 1201px) {
  .sp_part {
    display: none;
  }

  .tab_part {
    display: none;
  }
}

/**      Tab　以上      **/
@media screen and (min-width: 781px) {
  .sp_part {
    display: none;
  }
}

/**      Tab　以下      **/
@media screen and (max-width: 780px) {
  .pc_part {
    display: none;
  }

  h2.sec-title_head {
    font-size: 20px;
  }

  p.sec-title_en {
    font-size: 40px;
  }

  h2.sec-main_title {
    font-size: 28px;
  }

  p.sec-sub_text {
    font-size: 14px;
  }

  #header {
    width: 100%;
    height: 80px;
    border: unset;
    top: 0;
    border-radius: 0;
    padding: 25px;
  }

  .main-logo {
    max-width: 130px;
  }

  .main-logo img {
    width: 100%;
  }

  .menu-icon {
    width: 32px;
    height: 20px;
    position: fixed;
    top: 30px;
    right: 20px;
    z-index: 9999;
  }

  .menu-icon span {
    position: relative;
    width: 32px;
    height: 1px;
    background-color: #000;
    transition: 0.4s;
  }

  .menu-icon span:first-child {
    top: 0;
    left: 0;
    position: absolute;
  }

  .menu-icon span:nth-child(2) {
    top: 10px;
    left: 0;
    position: absolute;
  }

  .menu-icon span:last-child {
    top: 20px;
    left: 2px;
    background-color: unset;
    position: absolute;
    font-size: 10px;
  }

  .menu-icon_open span:first-child {
    top: 10px;
    transform: rotate(225deg);
  }

  .menu-icon_open span:nth-child(2) {
    top: 10px;
    transform: rotate(-225deg);
  }

  .nav-menu_list {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 80px;
    right: -100%;
    background-color: #42633e;
    z-index: 9995;
    transition: 0.4s;
    display: none;
  }

  .menu-list_open {
    right: 0;
    display: block;
  }

  nav {
    width: 100%;
    height: 100%;
    position: relative;
  }

  ul.menu-list_area {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  li.menu-list {
    margin-right: 0px;
    text-align: left;
    margin-bottom: 30px;
    color: #fff;
  }

  li.menu-list a {
    color: #fff;
    font-weight: bold;
    font-size: 16px;
  }

  .header-login_btn {
    background-color: #fff;
  }

  #footer {
    /* margin-top: 70px; */
    padding: 50px 0;
  }

  .footer-container {
    gap: 30px;
    flex-wrap: wrap;
  }

  .footer-nav_head {
    font-size: 16px;
    margin-bottom: 25px;
  }

  p.footer-nav_text {
    font-size: 14px;
  }

  .footer-nav_link {
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
    padding-bottom: 12px;
    font-weight: 500;
  }

  .footer-nav_sns {
    gap: 10px;
  }

  .footer-nav_sns img {
    width: 40px;
    height: 40px;
  }

  p.copyright {
    font-size: 14px;
    padding: 20px 0;
  }

  .arrow::after {
    display: none;
  }

  .chat-area {
    /* bottom: 120px; */
  }
}

/* star rating css */
section.typeA {
  display: flex;
  flex-wrap: wrap;
}

section.typeA .tabLabel {
  /* タブ */
  margin-right: 3px;
  padding: 3px 12px;
  flex: 1;
  order: -1;
  border-radius: 3px 3px 0 0;
  background: rgb(222 222 222);
  transition: .5s;
  cursor: pointer;
  margin-bottom: 0px;
}

section.typeA .tabLabel2 {
  /* タブ */
  margin-right: 3px;
  padding: 3px 12px;
  flex: 1;
  order: -1;
  border-radius: 3px 3px 0 0;
  background: rgb(222 222 222);
  transition: .5s;
  cursor: pointer;
  margin-bottom: 0px;
}

section.typeA .tabLabel:nth-last-of-type(1) {
  margin-right: 0;
}

section.typeA .tabLabel2:nth-last-of-type(1) {
  margin-right: 0;
}

section.typeA .none-display {
  /* ラジオボタン非表示 */
  display: none;
}

section.typeA .content {
  /* 本文 */
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

/*アクティブ設定*/
section.typeA input:checked+.tabLabel {
  color: #fff;
  background: rgb(55 100 57);
}

/*アクティブ設定*/
section.typeA input:checked+.tabLabel2 {
  color: #fff;
  background: #9BD7ED;
}

section.typeA input:checked+.tabLabel+.content {
  /*padding: 15px;*/
  height: auto;
  overflow: auto;
  /*box-shadow: 0 0 5px rgba(0,0,0,.2);*/
  transition: .5s opacity;
  opacity: 1;
  margin-bottom: 10px;
}

section.typeA input:checked+.tabLabel2+.content {
  /*padding: 15px;*/
  height: auto;
  overflow: auto;
  /*box-shadow: 0 0 5px rgba(0,0,0,.2);*/
  transition: .5s opacity;
  opacity: 1;
  margin-bottom: 10px;
}

.evaluation {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.evaluation input[type='radio'] {
  display: none;
}

.evaluation label {
  position: relative;
  /*padding: 10px 10px 0;*/
  color: rgb(222 222 222);
  cursor: pointer;
  font-size: 50px;
}

.evaluation label .text {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  text-align: center;
  font-size: 10px;
  color: gray;
}

.evaluation label:hover,
.evaluation label:hover~label,
.evaluation input[type='radio']:checked~label {
  color: #ffcc00;
}

.update-complete-label {
  background: #ffffff;
  text-align: left;
  padding: 10px;
  margin-bottom: 20px;
  border-left: 10px solid #42633e;
  text-shadow: -3 0 black;
  box-shadow: -2px 2px 3px #dbdbdb;
}

.user-pagination {
  & nav {
    width: max-content;
    margin: auto auto;
  }

  .pagination {
    justify-content: center;
    float: right;
    margin-top: 20px;

    & a {
      float: none;
    }
  }

  .pagination .active .page-link {
    background-color: #42633e !important;
    color: white !important;
    border: 1px solid #42633e !important;
  }

  .page-link {
    color: #262626;
  }

  .page-link:hover {
    color: #4e4e4e;
  }

  .pagination .disabled .page-link {
    pointer-events: none;
    border: 1px solid #ddd;
    color: #555;
  }

}

.underline {
  text-decoration: underline;
}


/* 決済デザインCSS */
.label- {
  /* font-weight: 600;
  font-size: 14px;
  display: block; */
  margin-bottom: 8px;
}

.form-row {
  width: 100%;
  /* height: 80px; */
  margin-top: 10px;
}

/* カード情報入力欄 */
.StripeElement {
  width: 100%;
  box-sizing: border-box;
  height: 40px;
  padding: 10px 12px;
  /* border: 1px solid transparent; */
  /* border-radius: 4px; */
  background-color: white;
  /* box-shadow: 0 1px 3px 0 #e6ebf1; */
  /* -webkit-transition: box-shadow 150ms ease; */
  /* transition: box-shadow 150ms ease; */
  border: 1px solid #d9d9d9;
  border-radius: 5px;
}

.inner-form {
  box-sizing: border-box;
  /* height: 40px; */
  padding: 30px;
  border: 1px solid transparent;
  border-radius: 4px;
  background-color: white;
  box-shadow: 0 1px 3px 0 #e6ebf1;
  -webkit-transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease;
  margin: 0;
}

.inner-form h4 {
  font-size: 1.5em;
}

@media screen and (max-width: 780px) {
  .inner-form {
    padding: 0;
    border: none;
    box-shadow: none;
  }
}

/* ボタン */
#button {
  color: #fff;
  background: #376439;
  display: inline-block;
  height: 40px;
  /* line-height: 40px; */
  padding: 0 14px;
  box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  width: 100%;
  margin-top: 10px;
}

#btn:hover {
  box-shadow: 0 7px 14px rgba(50, 50, 93, .10), 0 3px 6px rgba(0, 0, 0, .08);
  background-color: #d32f38;
}

/* 入力欄にフォーカスされた時 */
.StripeElement--focus {
  border: 2px outset black;
}

/* エラー時の入力欄枠線の色 */
.StripeElement--invalid {
  border-color: #ff5f3f;
}

/* オートコンプリートで入力した時 */
.StripeElement--webkit-autofill {
  background-color: #beddf9 !important;
}

/* 入力欄の下に出るエラーメッセージの文字色 */
#card-errors {
  color: #ff5f3f;
}

.select-plan {
  background: #c5c5c5;
  padding: 5px;
  border-radius: 5px;
  margin-bottom: 20px;
  color: white;
  font-size: 16px;
  text-align: center;
}

.select-box-credit-card {
  margin: 10px 0px;
  padding: 10px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  /* box-shadow: 0 4px 6px rgb(50 50 93 / 11%), 0 1px 3px rgb(0 0 0 / 8%); */
  background: #f7f7f7;
}

.select-box-credit-card:hover {
  background-color: aliceblue;
}

.non_underline:hover,
.non_underline:active,
.non_underline:focus {
  text-decoration: none;
}

.credit_card_icon_css {
  margin: 0px 5px;
}

.lesson-list {
  /* padding: 30px;
  border: solid 1px #42633E; */
  overflow: auto;
  max-height: 650px;
  overflow-x: hidden;
  margin-bottom: 20px;
}

.lesson-list .fix {
  position: sticky;
  /* left: 0; */
  top: -1px;
}

/* quiz common css */

.audio {
  height: 40px;
  /* margin-left: 10px; */
}

.qz-bord {
  margin-top: 30px;
  margin-bottom: 30px;
}

.btn-layout {
  display: inline-block;
  width: 100%;
  padding: 10px;
  text-decoration: none;
  /* color: #fff; */
  border: none;
  border-radius: 10px;
  background: #ffffff;
  transition: .4s;
  margin: 7px 0;
  border: solid 2px #d3d3d3;
  font-size: 16px;
}

.btn-layout:hover {
  background: #f1f1f1;
  /* color: white; */
}

#text_q {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 150%;
  /* margin-top: 20px; */
  padding: 0px 30px;
  gap: 10px;
}

#text_a {
  margin-top: 20px;
}

.picture {
  height: 50px;
}

.answer-tb {
  font-weight: normal;
  font-size: 80%;
}

.vocabulary-frame {
  text-align: center;
  vertical-align: middle;
  background: #f1f1f1;
  padding: 11px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.pagination>li>a,
.pagination>li>span {
  padding: 10px 15px;
}

.bold {
  font-weight: bold;
}

.c-pink {
  color: #ff9191;
}

.min-w-unset {
  min-width: unset;
}

.max-w-unset {
  max-width: unset;
}

.back-btn {
  background: white;
  color: #262626;
  border: 1px solid;
}

.back-btn:hover {
  background: white;
  color: #262626;
  border: 1px solid;
}

.text-green {
  font-size: 12px;
  font-weight: 700;
  line-height: 17.38px;
  color: #376439;
}

.pc-none {
  display: none;
}

.ml-40 {
  margin-left: 40px !important;
}

@media screen and (max-width: 767px) {
  .ml-40 {
    margin-left: 15px !important;
  }
}

hr {
  margin-top: 10px;
  margin-bottom: 10px;
  border: 0;
  border-top: 1px solid #eeeeee;
}

.select2-container--default .select2-selection--single {
  margin: 2px;
}

.border-none {
  border: none !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 3px!important;
}

.select2-container--default .select2-selection--single {
  border: 1px solid #cccccc !important;
}