/*------------------------------------
  apply
------------------------------------*/
.button-appeal-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    width: 900px;
    margin: 5px auto;
  }
  
  .button-wrapper-flex {
    display: flex;
  }
  
  .apply-semaru-icon {
    width: 6%;
    animation: timer-purapura 1s ease-in-out infinite;
  }
  
  /* ベースのレイアウト調整 */
  .mv-koshi-box {
    position: relative;
    width: 100%;
    max-width: 1200px;
    /* サイト幅に合わせて調整してください */
    margin: 0 auto;
  }
  
  .mv-main-img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* ボタンエリアの配置 */
  .mv-button-overlay {
    position: absolute;
    bottom: 15px;
    /* 画像の下からの位置 */
    right: 20px;
    /* 画像の右からの位置 */
    width: auto;
    max-width: 600px;
    /* ボタンエリアの最大幅 */
    z-index: 10;
  }
  
  /* 上部のテキスト（招待状をお持ちでない方 等） */
  .button-upper-container {
    margin-bottom: 5px;
    background-color: rgba(255, 255, 255, 0.8);
    /* 文字が見やすいように背景を少し白く */
    border-radius: 4px;
  }
  
  .button-upper-text {
    font-size: 13px;
    font-weight: bold;
    color: #333;
    margin: 0;
    text-align: center;
    line-height: 1.2;
  }
  
  .button-upper-txt-green {
    color: #00a693;
  }
  
  .button-upper-txt-red {
    color: #e60012;
  }
  
  /* ボタン共通スタイル */
  .invitation-button,
  .apply-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80px;
    /* ボタンの高さ */
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, opacity 0.2s;
    position: relative;
    overflow: hidden;
  }
  
  .invitation-button:hover,
  .apply-button:hover {
    transform: translateY(2px);
    /* ホバー時に少し沈む */
    opacity: 0.9;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  }
  
  /* 緑のボタン（招待状請求） */
  .invitation-button {
    background: linear-gradient(90deg, #00c4b4 0%, #009e8e 100%);
    color: #fff;
  }
  
  /* 赤のボタン（お申し込み） */
  .apply-button {
    background: linear-gradient(90deg, #ff1a1a 0%, #cc0000 100%);
    color: #fff;
  }
  
  /* アイコン設定 */
  .button-icon {
    font-size: 24px;
    margin-right: 12px;
  }
  
  /* ボタン内のテキストエリア */
  .button-text-inner {
    line-height: 0.9;
    font-weight: bold;
    font-size: 35px;
    /* メイン文字サイズ */
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  }
  
  /* firefoxだけ崩れてたので修正 */
  @-moz-document url-prefix() {
    .button-text-inner {
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;
      line-height: 1.7;
      font-weight: bold;
      font-size: 35px;
      /* メイン文字サイズ */
      text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    }
  }
  
  /* "30秒で簡単に！" の部分 */
  .button-text-small-top {
    font-size: 20px;
    font-weight: normal;
    color: #fffd82;
    font-style: italic;
  }
  
  /* "をする/はこちら" の部分 */
  .button-text-small {
    font-weight: bold;
    display: block;
    color: #e0f7fa;
    /* 少し薄い色でメリハリ */
  }
  
  .button-main-txt {
    font-weight: bold;
    display: block;
    color: #e0f7fa;
    font-size: 25px;
  }
  
  .button-appeal-text {
    margin: 0 auto;
    color: black;
    font-weight: bold;
    font-size: 25px;
  }
  
  .appeal-text-big {
    font-size: 30px;
    position: relative;
    letter-spacing: initial;
    z-index: 2;
  }
  
  .apply-yellow-underline {
    text-decoration: underline;
    text-decoration-color: #fae800;
  }
  
  .apply-wrap {
    width: 820px;
    margin: 0 auto;
    text-align: center;
  }
  
  .apply-before {
    width: 80%;
    margin: 0 auto;
    padding: 5px;
    border: 2px solid;
    border-radius: 8px;
    font-weight: bold;
    font-size: 30px;
    text-align: center;
  }
  
  .apply-ttl {
    display: block;
    position: relative;
    left: 50%;
    opacity: 0;
    transform: translateX(-150%);
    width: fit-content;
    margin: 10px 0 auto;
    overflow: hidden;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    white-space: nowrap;
  }
  
  .apply-ttl:first-of-type {
    opacity: 1;
    animation: flowing-anim-parent 2s forwards linear;
  }
  
  .apply-ttl.is-scrolled,
  .apply-ttl:first-of-type {
    opacity: 1;
    animation: flowing-anim-parent 2s forwards linear;
  }
  
  .apply-ttl-span {
    display: block;
    position: relative;
    left: 50%;
    opacity: 0;
    transform: translateX(50%);
  }
  
  .apply-ttl.is-scrolled .apply-ttl-span,
  .apply-ttl:first-of-type .apply-ttl-span {
    opacity: 1;
    animation: flowing-anim-child 2s forwards linear;
  }
  
  .apply-ttl.is-scrolled .apply-ttl-span::after {
    content: "";
    position: absolute;
    top: 3px;
    left: -20%;
    transform: skew(-30deg);
    width: 20px;
    height: 50px;
    overflow: hidden;
    background-color: #ffffff;
    animation: apply-ttl-shine 3s 3s linear infinite none;
  }
  
  @keyframes apply-ttl-shine {
    0% {
      left: -5%;
    }
  
    30% {
      left: 105%;
    }
  
    91% {
      left: 105%;
      opacity: 0;
    }
  
    99% {
      left: -5%;
      opacity: 0;
    }
  
    100% {
      opacity: 1;
    }
  }
  
  
  @keyframes flowing-anim-parent {
    0% {
      transform: translateX(-150%);
    }
  
    100% {
      transform: translateX(-50%);
    }
  }
  
  @keyframes flowing-anim-child {
    0% {
      transform: translateX(50%);
    }
  
    100% {
      transform: translateX(-50%);
    }
  }
  
  @keyframes flash {
  
    25%,
    75% {
      opacity: 1;
    }
  
    50% {
      opacity: 0;
    }
  }
  
  .flex {
    display: flex;
    align-items: center;
    margin-left: 45px;
  }
  
  .apply-img {
    max-width: 8%;
    margin-right: 15px;
  }
  
  .apply-cnt {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .apply-after {
    margin: 0 auto;
    text-align: center;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    background-color: #808080;
    border-radius: 10px;
    width: 640px;
    padding: 15px;
  }
  
  .button-box {
    margin: 0 auto;
    text-align: center;
  }
  
  .request-box,
  .apply-box {
    text-align: center;
  }
  
  .request-box {
    margin-right: 20px;
  }
  
  
  .apply-box {
    margin-left: 20px;
  }
  
  .request-btn,
  .apply-btn {
    display: flex;
    position: relative;
    z-index: 95;
    justify-content: center;
    align-items: center;
    width: 380px;
    padding: 15px;
    border-radius: 6px;
    color: #ffffff;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    transition: transform 200ms;
    animation-name: buttonsizeAnimation;
    animation-duration: 8s;
    animation-iteration-count: infinite;
  }
  
  .request-btn:after,
  .apply-btn:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-5px, -5px);
    width: 100%;
    height: 100%;
    border: 2px solid #000000;
    border-radius: 6px;
    transition: transform 200ms;
    transition: transform 200ms;
    animation-name: buttonBorderAnimation;
    animation-duration: 8s;
    animation-iteration-count: infinite;
  }
  
  .apply-btn:after {
    animation-delay: 3s;
  }
  
  .apply-btn {
    animation-delay: 3s;
  }
  
  .request-btn:after {
    animation-delay: 1.5s;
  }
  
  .request-btn {
    animation-delay: 1.5s;
  }
  
  @keyframes buttonBorderAnimation {
    0% {
      transform: translate(-5px, -5px);
    }
  
    7% {
      transform: translate(0px, 0px);
    }
  
    14%,
    100% {
      transform: translate(-5px, -5px);
    }
  }
  
  @keyframes buttonsizeAnimation {
    0% {
      transform: scale(1.0);
    }
  
    7% {
      transform: scale(.9);
    }
  
    14%,
    100% {
      transform: scale(1.0);
    }
  }
  
  .request-btn:hover,
  .apply-btn:hover {
    opacity: .8;
    cursor: pointer;
  }
  
  .request-btn {
    background-color: var(--main-color);
  }
  
  .request-attention {
    color: var(--main-color);
  }
  
  .apply-btn {
    background-color: #fe0000;
  }
  
  .apply-attention {
    color: #fe0000;
  }
  
  .apply-upper-txt {
    position: relative;
    margin-bottom: 4px;
  }
  
  .apply-upper-txt:after,
  .apply-upper-txt:before {
    content: "";
    position: absolute;
    top: 5px;
    width: 1px;
    height: 20px;
    background-color: #000000;
  }
  
  .apply-upper-txt:after {
    right: 60px;
    transform: rotate(25deg);
  }
  
  .apply-upper-txt:before {
    left: 60px;
    transform: rotate(-25deg);
  }
  
  .school-search-link {
    display: block;
    width: fit-content;
    margin: 10px auto 0;
    border-bottom: 1px solid;
    color: blue;
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
  }
  
  .apply-ttl-small {
    font-size: 18px;
  }
  
  .apply-small-info {
    font-size: 15px;
    text-align: right;
    margin: 0px 90px 5px 0;
  }
  
  .info-icon {
    font-size: 14px;
  }
  
  
  
  .button-box {
    width: 77%;
    margin: 0 auto;
    padding: 10px;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    border: 3px solid #000;
    border-radius: 12px;
  }
  
  /*------------------------------------
    youkou
  ------------------------------------*/
  .youkou-wrap {
    margin: 40px 0;
  }
  
  .youkou-container {
    width: 880px;
    margin: 0 auto;
  }
  
  table {
    width: 100%;
    margin-bottom: 20px;
  }
  
  
  /* td {
    padding: 20px;
    border: 1px solid #bdbdbd;
    border-left: none;
            box-sizing: border-box;
    vertical-align: middle;
  
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
  } */
  
  .youkou-text {
    position: relative;
  }
  
  .youkou-text-blue {
    color: #0013ff;
    text-decoration: underline;
  }
  
  .school_info {
    display: flex;
    align-items: center;
    padding: 5px;
  }
  
  .japan {
    width: 65%;
  }
  
  .school_info_left {
    width: 50%;
  }
  
  .school_info_right {
    width: 50%;
  }
  
  
  
  .youkou-text-attention-1 {
    display: inline-block;
    transform: translateX(-2px);
    color: #ff0000;
    font-weight: bold;
    font-size: 1.7em;
  }
  
  .youkou-text-attention-2 {
    color: #ff0000;
    font-weight: bold;
    font-size: 1.7em;
  }
  
  .youkou-text-small {
    font-size: .8em;
  }
  
  .youkou-h3-text {
    margin-top: .7em;
  }
  
  .youkou-text-bold {
    font-weight: bold;
  }
  
  .guideline-sup {
    font-size: 16px;
  }
  
  /*------------------------------------
    breadcrumb
  ------------------------------------*/
  .breadcrumb-list {
    display: flex;
    list-style: none;
    width: 1000px;
    margin: 0 auto;
    padding: 5px 0 30px 0;
    font-size: 16px;
  }
  
  .breadcrumb-list-text-underline {
    border-bottom: 1px solid;
    display: inline-block;
    line-height: 1;
  }
  
  .breadcrumb-list-item:not(:last-child)::after {
    content: ">";
  }
  
  
  /*------------------------------------
    apply
  ------------------------------------*/
  /* @media screen and (max-width:850px;){
    .modal-button-wrap {
      display: block;
    }
  } */
  .modal-button-wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
  }
  
  .button-wrap {
    display: flex;
    margin: 0 auto;
    position: relative;
    right: 49px;
    width: 650px;
    gap: 15px;
    justify-content: flex-end;
  }
  
  .hum-button-wrap {
    display: block;
    justify-content: space-between;
    margin: 0 auto;
  }
  
  .button-wrap-before {
    display: flex;
    justify-content: space-between;
    width: 850px;
    margin: 0 auto;
  }
  
  .button-taiken-wrap {
    width: 850px;
    margin: 30px auto;
  }
  
  .button-taiken-text {
    font-weight: bold;
    font-size: 20px;
  }
  
  .button-container {
    width: 400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
  }
  
  .hum-button-container {
    width: 380px;
    margin: 15px auto;
    text-align: center;
    position: relative;
  }
  
  
  .button {
    font-size: 120%;
    position: relative;
    display: inline-block;
    padding: 0 40px;
  }
  
  .button-upper-text {
    font-size: 19px;
    position: relative;
    display: inline-block;
    padding: 0 40px;
  }
  
  .button-upper-text:before,
  .button-upper-text:after {
    /* content: ''; */
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 40px;
    height: 1px;
    background-color: black;
    -webkit-transform: rotate(-60deg);
    transform: rotate(-60deg);
  }
  
  
  .button-upper-text:before {
    left: 0;
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
  }
  
  .button-upper-text:after {
    right: 0;
  }
  
  .button-upper-txt-green {
    color: #06B9A3;
  }
  
  .button-upper-txt-red {
    color: #F41D27;
  }
  
  
  .hum-invitation-button,
  .hum-apply-button {
    display: block;
    padding: 8px 0;
    color: var(--main-color);
    border-radius: 8px;
    font-size: 22px;
    font-weight: bold;
    position: relative;
  }
  
  .invitation-button:hover,
  .apply-button:hover {
    opacity: 0.8;
  }
  
  .hum-invitation-button {
    background: linear-gradient(to bottom, #fff -100%, #fff 60%);
  }
  
  .hum-apply-button {
    background: linear-gradient(to bottom, #fff -100%, #fff 60%);
  }
  
  .button-text-small {
    font-size: 0.8em;
  }
  
  .request_banner_button {
    width: 840px;
    display: block;
    margin: 0 auto;
    text-align: center;
  }
  
  .hum-button-arrow {
    position: absolute;
    left: 85%;
    top: 50%;
    transform: translate(0, -50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
  }
  
  .hum-button-arrow::before {
    position: absolute;
    content: "";
    left: 24%;
    top: 44%;
    width: 18px;
    height: 4px;
    background: #FF010C;
  }
  
  .hum-button-arrow::after {
    position: absolute;
    content: "";
    left: 42%;
    top: 34%;
    width: 12px;
    height: 12px;
    border-top: 3px solid;
    border-right: 3px solid;
    transform: rotate(45deg);
  }
  
  .hum-button-arrow.-invitation::before {
    background: var(--main-color);
  }
  
  .hum-button-arrow.-invitation::after {
    border-color: var(--main-color);
  }
  
  .hum-button-arrow.-apply::before {
    background: var(--main-color)
  }
  
  .hum-button-arrow.-apply::after {
    border-color: var(--main-color)
  }
  
  .invitation-button-image {
    position: absolute;
    width: 100px;
    top: -25px;
    left: 0;
    transform: rotate(-5deg);
    box-shadow: 1px 1px 2px rgb(0 0 0 / 30%);
  }
  
  .apply-button-image {
    position: absolute;
    width: 75px;
    top: -25px;
    left: 0;
    transform: rotate(-5deg);
    box-shadow: 1px 1px 2px rgb(0 0 0 / 30%);
    border: 2px solid #fff;
    border-radius: 3px;
  }
  
  .apply-after {
    background-color: #808080;
    color: #fff;
    text-align: center;
    width: 600px;
    margin: 20px auto;
    padding: 20px 0;
    font-size: 24px;
    font-weight: bold;
    border-radius: 8px;
  }
  
  /*
  ��ͨ�ƥ��ȤƤ��襤*/
  .kyotsu-apply-cnt {
    padding: 3px;
    width: 900px;
    margin: 0 auto;
    position: relative;
  }
  
  
  .kyotsu-message-bottom {
    position: absolute;
    bottom: -12px;
  }
  
  .kyotsu-apply-semaru-icon {
    position: absolute;
    top: 0px;
    left: 230px;
    width: 6%;
    animation: timer-purapura 1s ease-in-out infinite;
  }
  
  .kyotsu-apply-ttl {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
  }
  
  .kyotsu-apply-txt {
    font-weight: bold;
    margin: 5px;
  }
  
  
  .kyotsu-apply-top {
    margin: 15px auto;
    text-align: center;
  }
  
  
  /*������ȥ�����*/
  .countdown-cnt {
    width: 1000px;
    margin: 0 auto;
    border: 2px solid var(--main-color);
  }
  
  .ts-contdown-wrap {
    position: relative;
    width: 1000px;
    margin: 5px auto;
    padding: 5px;
    text-align: center;
  }
  
  .ts-contdown-text-upper {
    font-size: 27px;
    font-weight: bold;
    text-align: center;
  }
  
  .days {
    color: red;
  }
  
  .red {
    color: red;
  }
  
  .ts-contdown-text-lower {
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    margin: 5px 0 10px 0;
  }
  
  .ts-contdown-text {
    font-size: 30px;
    font-weight: bold;
  }
  
  .ts-contdown-container {
    display: inline-block;
    background-color: var(--light-color);
    width: 485px;
    height: 52px;
  }
  
  .ts-contdown-small {
    font-size: 20px;
  }
  
  .ts-contdown-day {
    background-color: white;
    font-size: 35px;
    padding-left: 6px;
    padding-right: 8px;
    color: red;
  }
  
  .ts-contdown-hour {
    background-color: white;
    font-size: 35px;
    padding-left: 6px;
    padding-right: 8px;
    color: red;
  }
  
  .ts-contdown-minute {
    background-color: white;
    font-size: 35px;
    padding-left: 6px;
    padding-right: 8px;
    color: red;
  }
  
  .ts-contdown-second {
    background-color: white;
    font-size: 35px;
    padding-left: 6px;
    padding-right: 8px;
    color: red;
  }
  
  .ts-cowntdown-smalltext {
    font-size: 20px;
  }
  
  .countdown-semaru-icon {
    position: absolute;
    top: -20px;
    left: 200px;
    width: 8%;
    animation: timer-purapura 1s ease-in-out infinite;
  }
  
  .youkou-semaru-icon {
    position: absolute;
    top: -15px;
    left: 600px;
    width: 9%;
    animation: timer-purapura 1s ease-in-out infinite;
  }
  
  @keyframes timer-purapura {
    0% {
      transform: rotate(-5deg);
    }
  
    50% {
      transform: rotate(10deg);
    }
  
    100% {
      transform: rotate(-5deg);
    }
  }
  
  .lecture-btn {
    width: 400px;
    margin: 20px auto;
    padding: 10px 0;
    border-radius: 30px;
    box-shadow: 2px 2px 5px rgb(0 0 0 / 40%);
    background-color: var(--main-color);
    color: #ffffff;
    font-weight: bold;
    text-align: center;
  }
  
  
  /* 講師MV */
  .teacher-page-title-img {
    width: 10%;
  }
  
  .teacher-page-title {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
  }
  
  .countdown2023 {
    text-align: center;
    font-weight: bold;
    font-size: 25px;
  }
  
  .countdown2023-box {
    width: 1000px;
    margin: 0 auto;
    border: solid 3px #009380;
    padding-top: 5px;
    padding-bottom: 25px;
  }
  
  .countdown2023-box-beforeapply {
    width: 750px;
    text-align: center;
    margin: 0 auto;
    font-weight: bold;
    padding: 10px;
    border: solid 2px #009380;
  }
  
  .countdown2023-box-beforeapply-txt {
    font-size: 30px;
    margin-right: 10px;
  }
  
  .countdown-background {
    background-color: #CEE8E4;
    padding: 18px 5px 10px 5px;
  }
  
  .white-background {
    background-color: #fff;
    padding: 0px 4px;
    font-size: 35px;
    color: red;
  }
  
  .button-upper {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 15px;
  }
  
  .button-bottom-txt-countdown {
    text-align: left;
    margin: 7px 25px 0 25px;
  }
  
  .button-bottom-txt-countdown-2 {
    text-align: left;
    margin: 7px 105px 0 105px;
  }
  
  .tokuten-content {
    text-align: center;
    width: 800px;
    margin: 0 auto;
  }
  
  . {
    font-size: 32px;
    color: #fff;
    font-weight: bold;
  }
  
  .apply-invitation-top-txt {
    color: #fffd82;
    font-size: 20px;
    font-style: italic;
  }
  
  .invitation-button,
  .apply-button {
    padding: 21px 10px;
    border-radius: 5px;
    position: relative;
  }
  
  .invitation-button {
    background-color: #06B9A3;
    box-shadow: 0 5px 0 0 #035C51;
    display: block;
  }
  
  .apply-button {
    background-color: #fe0000;
    box-shadow: 0 4px 0 #b71c1c;
  }
  
  .apply-invitaion-bottom-txt-box {
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 39px;
    color: white;
    font-weight: bold;
    width: 95%;
    margin: 0 auto;
    line-height: 1;
  }
  
  .apply-invitation-left-img {
    width: 45px;
  }
  
  .apply-txt-box {
    display: flex;
    margin: 0 auto;
    align-items: center;
    width: 90%;
    color: white;
    font-size: 35px;
    font-weight: bold;
  }
  
  .apply-right-img-box {
    width: 40px;
  }
  
  .under-apply-txt {
    text-align: left;
    width: 820px;
    margin: 0 auto;
    margin-top: 10px;
    font-size: 19.5px;
  }