@charset "UTF-8";

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

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

*,
*::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.8;
}

img {
  vertical-align: bottom;
}

.flex {
  display: flex;
}

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

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

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

.loading {
  opacity: 0;
}

.scroll {
  transform: translateY(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;
}

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: 4.5px;
  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;
}

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;
  cursor: pointer;
}

/**  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: 1200px;
  width: 90%;
  margin: 0 auto;
}

h2.sec-main_title {
  font-size: 60px;
  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;
}

.readmore-btn {
  width: 300px;
  height: 70px;
  border-radius: 35px;
  line-height: 70px;
  border: none;
}

.readmore-btn a {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  padding-left: 50px;
}

.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: 100%;

  & ul {
    margin-bottom: 0;
    padding: 0;
    background: white;
  }

}

.header-container {
  justify-content: space-between;
  align-items: center;
  width: 95%;
  margin: 0 auto;
  height: 80px;
}

ul.header-main_nav {
  gap: 20px;
}

li.search-btn {
  position: relative;
}

li.search-btn::before {
  /* Content: "";
  display: block;
  background-image: url(/images/top/search-icon.png);
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 5;
  pointer-events: none; */
}

li.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: -4px;
      right: 17px;
      background: #FFC107;
      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;
}
*/

li .search-click-btn {
  content: "";
  display: block;
  width: 50px;
  height: 40px;
  background-color: #ffffff00;
  position: absolute;
  top: -2px;
  right: 0;
  border-radius: 0 25px 25px 0;
  border: none;
  border-left: none;
}

li.search-btn input {
  width: 180px;
  height: 40px;
  border-radius: 25px;
  border: none;
  background-color: #fff;
  border: solid 1px #e7e7e7;
  padding: 16px;
  color: #42633E
}

li.trial-btn,
li.login-btn {
  width: 150px;
  height: 40px;
  border-radius: 5px;
  text-align: center;
  line-height: 50px;
  color: #fff;
  font-weight: bold;
}

li.login-btn {
  justify-content: center;
  align-items: center;
}

li.login-btn img {
  margin-right: 5px;
}

nav {
  background-color: #fff;
  width: -moz-max-content;
  width: max-content;
  margin: auto 0 auto auto;
}

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

li.header-link_text {
  font-size: 14px;
  color: #42633E;
  margin-right: 20px;
  padding: 5px 10px;

  &:hover {
    background: #f3f3f3;
  }

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

    &:hover {
      background: #f3f3f3;
      background: inherit;
    }
  }
}

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: 35px;
  left: 0;
}

.drop-menu_list {
  position: relative;
}

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

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: 120px;*/
  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: 270px;
  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: 30px;
  color: #fff;
}

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

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

.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;

  :hover {
    color: inherit;
  }
}

.footer-nav_sns {
  gap: 10px;
}

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

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

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

.chat-area-login {
  bottom: 60px;
}

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

.chat-icon-point {
  font-size: 10px;
  position: absolute;
  right: 0px;
  top: 32px;
  width: 13px;
  height: 13px;
  /* z-index: 2; */
  background: #ffc107;
  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;
}

.chat-sns-line {
  display: none;
}

.show-content {
  display: block;
  top: 50px
}

.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;
  }

  .tab_part {
    display: none;
  }

  /**  SP 共通
  ****************************************************************************/
  .floating-bnr_area {
    display: none;
  }

  .floating-bnr_sp {
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 9995;
  }

  .floating-bnr-sp_experience,
  .floating-bnr-sp_login {
    width: 50vw;
    line-height: 60px;
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    border: solid 1px #fff;
  }

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

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

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

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

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

  .readmore-btn {
    width: 240px;
    height: 50px;
    border-radius: 35px;
    line-height: 50px;
    text-align: center;
  }

  .readmore-btn a {
    font-size: 14px;
    padding-left: unset;
  }

  .arrow::after {
    display: none;
  }

  /**  ヘッダー
  ****************************************************************************/
  #header {
    width: 100%;
    height: 80px;

    & ul {
      margin-bottom: 0;
      padding: 0;
      background: inherit;
    }
  }

  .main-logo {
    padding: 25px 0 0 14px;
    max-width: 170px;
  }

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

  ul.header-main_nav {
    gap: 20px;
  }

  li.trial-btn,
  li.login-btn {
    width: 180px;
    height: 50px;
    border-radius: 25px;
    text-align: center;
    line-height: 50px;
    color: #fff;
    font-weight: bold;
  }

  li.login-btn {
    justify-content: center;
    align-items: center;
  }

  li.login-btn img {
    margin-right: 5px;
  }

  nav {
    background-color: #fff;
    width: -moz-max-content;
    width: max-content;
    margin: auto 0 auto auto;
  }

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

  li.header-link_text {
    font-size: 14px;
    color: #42633E;
    margin-right: 20px;
    padding: 10px;
  }

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

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

  .menu-icon span {
    position: relative;
    width: 32px;
    height: 1px;
    background-color: #42633E;
    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: 0;
    position: absolute;
  }

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

  .menu-icon_open span:nth-child(2) {
    top: 10px;
    left: 10px;
    opacity: 0;
    background-color: #fff;
  }

  .menu-icon_open span:last-child {
    top: 10px;
    transform: rotate(-225deg);
    background-color: #fff;
  }

  .nav-menu_list {
    width: 100%;
    /* height: calc(100vh - 80px); */
    height: 100vh;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 10001;
    /* transition: 0.4s; */
    overflow-y: scroll;
    /* padding-left: 50px;*/
  }

  .menu-list_open {
    right: 0;
  }

  nav {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #42633E;
  }

  li .search-click-btn {
    display: unset;
    position: relative;
    top: -2px;
    right: 55px;
  }

  li.search-btn {
    &::before {
      position: relative;
      top: 59px;
      right: -185px;
    }
  }

  ul.menu-list {
    /* position: absolute; */
    /* transform: translate(15%, 10%); */
    /* overflow-y: scroll; */
    /* height: 85vh; */
    /* width: 80vw; */
    padding-left: 35px !important;
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }

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

    &:last-child {
      /* margin-bottom: 30px; */
    }
  }

  ul.menu-list .header-link_contact,
  ul.menu-list .header-link_other {
    border-radius: 25px;
    text-align: center;
    border: solid 1px #fff;
    background-color: #42633E;
  }

  .chat-area {
    bottom: 120px;
  }

  /**  フッター
  ****************************************************************************/
  #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;
  }
}

/**      SP　以下      **/
@media screen and (max-width: 480px) {
  .footer-container {
    display: block;
  }

  ul.footer-nav_area {
    margin-bottom: 20px;
  }
}

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

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

section.typeA .tabLabel2 {
  /* タブ */
  margin-right: 3px;
  padding: 5px 12px;
  flex: 1;
  order: -1;
  border-radius: 5px 5px 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: #ff9935;
}

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;
}

section.typeB {
  display: flex;
  flex-wrap: wrap;
}

section.typeB .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.typeB .tabLabel:nth-last-of-type(1) {
  margin-right: 0;
}

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

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

/*アクティブ設定*/
section.typeB input:checked+.tabLabel {
  color: #fff;
  background: #cc973d;
}

section.typeB 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.typeC {
  display: flex;
  flex-wrap: wrap;
}

section.typeC .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.typeC .tabLabel:nth-last-of-type(1) {
  margin-right: 0;
}

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

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

/*アクティブ設定*/
section.typeC input:checked+.tabLabel {
  color: #fff;
  background: #9c2742;
}

section.typeC 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;
}

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

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

.evaluation label {
  position: relative;
  padding: 0px 3px 0;
  color: rgb(222 222 222);
  cursor: pointer;
  font-size: 38px;
  margin-top: -10px;
}

.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;
  box-shadow: -2px 2px 3px #dbdbdb;
  border-radius: 5px;
}

.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: #7f7f7f;
  }

  .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: 15px;
  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: #7f7f7f;
  border: 1px solid;
}

.back-btn:hover {
  background: white;
  color: #7f7f7f;
  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;
}

.change-language.active ul {
  display: flex;

}

.change-language {
  position: relative;
  top: 50%;
  display: flex;
  align-items: center;

  & img {
    width: 33px;
    height: 32px;
    cursor: pointer;
  }

  & ul {
    display: none;
    background: #F9F9F9 !important;
    border-radius: 5px;
    padding: 17px 24px !important;
    width: 181px;
    position: absolute;
    z-index: 9;
    flex-direction: column;
    gap: 5px;
    top: calc(100% + 18px);

    & .close {
      position: absolute;
      /* font-size: 20px; */
      line-height: 0px;
      top: 15px;
      right: 6px;
    }

    & li {
      & a {
        display: flex;
        align-items: center;
        justify-content: start;
        gap: 21px;
        color: #000 !important;
        font-size: 14px !important;
        font-weight: 600 !important;
      }
    }
  }
}

.pc-menu-icon {
  display: flex;
  align-items: center;
  gap: 5px;

  img {
    width: 15px;
    height: 15px;
  }

  @media screen and (max-width: 600px) {
    & img {
      width: 11px;
      height: 15px;
    }
  }
}

.nav-menu_list {
  & .change-language {
    display: inline-block;
    margin-left: -30px;
    /* position: absolute; */

    & ul {
      right: 0 !important;
    }
  }
}

.img-banner-show {
  display: block;
  max-width: 850px;
  height: auto;
  margin: auto;
  width: 100%;
  margin-bottom: 15px;
  /* box-shadow: 1px 1px 5px rgb(20 20 20 / 20%); */
}

.general-form-cover {
  background: white;
  padding: 20px;
  text-align: left;
  border-radius: 10px;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

.general-form {
  width: 100%;
  border-collapse: collapse;
}

.general-form tr {
  border-bottom: 1px solid #eee;
}

.general-form td {
  padding: 15px 10px;
  vertical-align: middle;
}

.general-form td:first-child {
  width: 30%;
  font-weight: 600;
  color: #555;
}

.general-form input[type="text"],
.general-form input[type="email"],
.general-form input[type="date"],
.general-form select,
.general-form textarea {
  /* width: 100%; */
  /* padding: 10px; */
  border: 1px solid #ddd;
  border-radius: 5px;
  /* background-color: #f9f9f9; */
}

.general-form input[type="file"] {
  padding: 5px 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .general-form td {
    display: block;
    width: 100%;
  }

  .general-form td:first-child {
    width: 100%;
    padding-bottom: 5px;
    font-weight: 600;
  }

  .general-form td:last-child {
    padding-top: 5px;
    padding-bottom: 15px;
  }
}