* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
  }
  *,
  ::before,
  ::after {
    box-sizing: border-box;
    /* 1 */
    border-width: 0;
    /* 2 */
    border-style: solid;
    /* 2 */
    border-color: #e5e7eb;
    /* 2 */
    word-break: break-all;
  }
  
  a {
    text-decoration: none;
  }
  
  img,
  video {
    max-width: 100%;
    height: auto;
  }
  
  /* ============================================/
  *=============  Custom Style =================/
  *===========================================*/
  
  body {
    background-color: #f7f7f7;
    color: #0f2245;
    font-size: 1rem;
    font-family: "Hiragino Sans", "ヒラギノ角ゴ", sans-serif;
  }
  
  #body.--overlay {
    background-color: #0f2245;
  }
  
  #header {
    background-color: #f7f7f7;
  }
  
  .desktop-hide {
    display: none;
  }

  .spview {
    display: none;
  }
  
  /* Mobile Menu */
  .mobile-menu {
    display: block;
    width: 28px;
    height: 28px;
    margin-top: 0px;
  }
  .mobile-menu span:after,
  .mobile-menu span:before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
  }
  .mobile-menu span:after {
    top: 18px;
  }
  .mobile-menu span {
    position: relative;
    display: block;
  }
  .mobile-menu span,
  .mobile-menu span:after,
  .mobile-menu span:before {
    width: 100%;
    height: 3px;
    background-color: #000c7c;
    transition: all 0.3s;
    backface-visibility: hidden;
    border-radius: 2px;
  }
  .mobile-menu.--open span {
    background-color: transparent;
  }
  .mobile-menu.--open span:before {
    transform: rotate(45deg) translate(-1px, 0px);
  }
  .mobile-menu.--open span:after {
    transform: rotate(-45deg) translate(6px, -7px);
  }
  
  #mobile-header {
    display: none;
    position: relative;
    z-index: -2;
  }
  
  #mobile-header #navigation {
    position: absolute;
    right: 0;
  }
  
  #mobile-header #navigation #main-menu ul {
    flex-direction: column;
    flex-wrap: wrap;
    align-content: stretch;
    justify-content: space-evenly;
    align-items: flex-start;
  }
  
  #mobile-header #navigation #main-menu .nav-link {
    color: #999dca;
    font-weight: 500;
    margin: 10px -10px;
    padding: 10px 20px;
    border-left: 5px solid transparent;
  }
  
  #mobile-header #navigation #main-menu .nav-link.active,
  #mobile-header #navigation #main-menu .nav-link:hover {
    color: #ffffff;
    font-weight: 500;
    border-left: 5px solid #ffffff;
    padding-left: 17px;
    border-bottom: none;
    /* padding-bottom: 19px; */
    /* margin-bottom: -19px; */
  }
  
  #main-container.--overlay,
  #homepage-container.--overlay {
    /* position: fixed; */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    opacity: 30%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(0, 0, 0); /* Black background with opacity */
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
  }
  
  /* End Mobile Menu */
  
  #top {
    padding: 28px 0px;
  }
  
  .site-title h1 {
    color: #000c7c;
    font-size: 48px;
    font-weight: 800;
    line-height: 50px;
    text-align: center;
  }
  
  #navigation {
    background-color: #000b7b;
  }
  
  #main-menu .nav-item {
    margin: 0px 15px;
  }
  
  #main-menu .nav-link {
    color: #999dca;
    font-weight: 500;
    font-size: 24px;
    line-height: 50px;
  }
  
  #main-menu .nav-link.active,
  #main-menu .nav-link:hover {
    color: #ffffff;
    font-weight: 500;
    border-bottom: 5px solid #ffffff;
    padding-bottom: 19px;
    margin-bottom: -19px;
  }
  
  /* Mobile Header */
  
  #mobile-header {
    z-index: 100;
  }
  
  #mobile-header #navigation {
    background-color: #000b7b;
    display: none;
  }
  
  #mobile-header #navigation.--open {
    background-color: #000b7b;
    display: block;
  }
  
  /* Main Cotainer */
  
  #main-container {
    min-height: 100vh;
    z-index: 0;
  }
  
  #top-banner {
    max-height: 873px;
    max-width: 1920px;
    margin: 0px auto;
  }
  
  #top-banner img {
    margin-left: auto;
    margin-right: auto;
    background-size: cover;
  }
  
  .text-red {
    color: #d32b1a;
  }
  
  /* section-title */
  
  .section-title {
    background-color: #000b7b;
    color: #ffffff;
    border-radius: 20px;
    height: 120px;
    margin-bottom: 70px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
  }
  
  .common-margin-167{
    margin-left: 167px;
    margin-right: 167px;
  }
  
  .section-title h2 {
    font-size: 38px;
    color: #ffffff;
    padding: 33px 0px;
    font-weight: 700;
    line-height: 70px;
  }
  
  /* Notice Section */
  #notice-section {
    margin-top: 83px;
    margin-bottom: 110px;
  }
  
  .notice-title {
    color: #0f2245;
    font-size: 30px;
    margin-bottom: 34px;
    font-weight: 700;
    line-height: 70px;
    text-align: center;
  }
  
  .notice-content {
    max-width: 1088px;
    min-height: 322px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .notice-list {
    background-color: #ffffff;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
    border-radius: 20px;
    padding: 40px 96px 18px;
    max-height: 525px;
    overflow-y: scroll;
    scrollbar-width: auto;
    scrollbar-color: #a1acc0 #ffffff;
  }
  
  /* ===== Scrollbar CSS ===== */
  /* Firefox */
  
  /* Chrome, Edge, and Safari */
  .notice-list::-webkit-scrollbar {
    width: 10px;
  }
  
  .notice-list::-webkit-scrollbar-track {
    background: #ffffff;
  }
  
  .notice-list::-webkit-scrollbar-thumb {
    background-color: #a1acc0;
    border-radius: 10px;
    border: 2px solid #ffffff;
    height: 20px;
  }
  
  /* ===== End Scrollbar CSS ===== */
  
  .notice-list-item {
    border-bottom: 1px solid #9ea5b3;
    padding-bottom: 15px;
    margin-bottom: 25px;
    cursor: pointer;
  }
  
  .notice-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  
  .notice-date {
    color: #0f2245;
    font-size: 24px;
    line-height: 50px;
    font-weight: 700;
  }
  
  .notice-item-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 40px;
    color: #0f2245;
  }
  
  /* Ideal   */
  #ideal-sales {
    padding-bottom: 119px;
  }
  
  #ideal-sales p .text-red {
    display: block;
  }
  
  #ideal-sales article {
    max-width: 1078px;
    margin-right: auto;
    margin-left: auto;
  }
  
  #ideal-sales p {
    font-size: 24px;
    line-height: 45px;
    margin-bottom: 55px;
    font-weight: 700;
  }
  
  #ideal-sales img {
    margin-bottom: 80px;
  }
  
  /*=== Course Information ===*/
  .course-info .cntc {
    padding: 103px 0 150px;
  }
  
  .course-info .cntc .cntc-content {
    position: relative;
    padding: 77px 101px 75px;
    border: 4px solid #242a58;
    border-radius: 20px;
    width: 1280px;
    min-height: 294px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .course-info .cntc .cntc-title {
    position: absolute;
    color: #242a58;
    font-size: 38px;
    font-weight: 700;
    line-height: 70px;
    background-color: #f7f7f7;
    display: inline-block;
    top: -11%;
    font-family: "Hiragino Kaku Gothic Std";
    min-width: 528px;
    text-align: center;
  }
  
  .course-info .cntc .cntc-text {
    color: #0f2245;
    font-size: 24px;
    font-weight: 700;
    line-height: 45px;
  }
  
  .course-info .cntc .cntc-text .red {
    color: #d32b1a;
  }
  
  .course-info .cntc #lp-button {
    position: absolute;
    bottom: -55px;
    background-color: #f7f7f7;
    padding: 5px 15px;
    left: 50%;
    transform: translate(-50%)
  }
  
  .course-info .cntc #lp-big-button {
    border-radius: 20px;
    font-size: 28px;
    font-weight: 700;
    line-height: 70px;
    min-height: 100px;
    min-width: 500px;
    font-family: "Hiragino Kaku Gothic Std";
  }
  
  /* Philosophy Management Practice Game Section */
  #pmpgs {
    padding-bottom: 80px;
  }
  
  #pmpgs .section-title {
    height: 184px;
  }
  
  #pmpgs .section-title h2 {
    font-size: 1.975rem;
    line-height: 4.375rem;
    color: #ffffff;
    padding: 24px 0px;
    font-weight: 700;
  }
  
  #pmpgs p.text-red {
    font-size: 38px;
    display: block;
    font-weight: 700;
    line-height: 70px;
    font-family: "Hiragino Kaku Gothic Std";
  }
  
  #pmpgs p.text-red {
    display: block;
    margin-bottom: 51px;
    padding: 0 260px;
  }
  
  #pmpgs p {
    font-size: 20px;
    line-height: 34px;
    margin-bottom: 30px;
    font-weight: 600;
  }
  
  #pmpgs img {
    margin: 20px 0px 80px;
  }
  
  #pmpgs .board-game-img {
    height: 573px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin: 47px auto;
  }
  
  /* End Philosophy Management Practice Game Section */
  
  /* Three examples of authorized navigators Section */
  
  #teoan {
    position: relative;
    margin-bottom: 50px;
  }
  
  .teoan-extra-title {
    margin-top: 75px;
    position: relative;
    margin-bottom: 80px;
  }
  
  .teoan-extra-title::before {
    content: "";
    position: absolute;
    height: 5%;
    border-bottom: 4px solid #242a58;
    width: 7%;
    bottom: 60%;
    left: 18%;
    transform: rotate(60deg);
  }
  
  .teoan-extra-title::after {
    content: "";
    position: absolute;
    height: 5%;
    border-bottom: 4px solid #242a58;
    width: 7%;
    bottom: 60%;
    right: 18%;
    transform: rotate(120deg);
  }
  
  .teoan-extra-title h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
  }
  
  .teoan-box {
    margin-bottom: 76px !important;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    width: 1140px;
    align-items: stretch;
    margin: 0 auto;
  }
  .teoan-content-title {
    padding-left: 130px;
    position: relative;
    font-size: 38px;
    font-weight: 700;
    line-height: 55px;
    margin-bottom: 40px;
    font-family: "Hiragino Kaku Gothic Std";
  }
  
  .teoan-content-title::before {
    position: absolute;
    z-index: 100000; /*a number that's more than the modal box*/
    left: 5px;
    font-style: italic;
    font-size: 6rem;
    font-family: "Times New Roman", serif;
    transform: ;
  }
  
  .teoan-one::before {
    content: url("../_img/number-1.png"); /* with class ModalCarrot ??*/
    top: 45px;
  }
  
  .teoan-two::before {
    content: url("../_img/number-2.png"); /* with class ModalCarrot ??*/
    top: 20px;
    left: -15px;
  }
  
  .teoan-three::before {
    content: url("../_img/number-3.png"); /* with class ModalCarrot ??*/
    top: 20px;
    left: -15px;
  }
  
  .teoan-content p {
    font-size: 20px;
    font-weight: 600;
    line-height: 40px;
  }
  
  .teoan-content .text-red {
    color: #d32b1a;
  }
  
  .teoan-content h2 {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 2.5rem;
  }
  
  .teoan-images {
    padding: 0px 0px 0px 55px;
  }
  
  .teoan-images img {
    margin-bottom: 15px;
    /* height: 340px; */
  }
  
  .teoan-images.two {
    padding: 0px 55px 0px 0px;
  }
  
  .teoan-images.two img {
    height: 527px;
  }
  
  /* End Three examples of authorized navigators Section */
  
  /* Recruiting Section */
  
  #recruiting {
    margin-bottom: 119px;
  }
  
  #recruiting .section-title {
    height: 184px;
  }
  
  #recruiting .section-title h2 {
    font-size: 1.975rem;
    line-height: 4.375rem;
    color: #ffffff;
    padding: 24px 0px;
    font-weight: 700;
  }
  
  #recruiting article h2 {
    font-size: 38px;
    line-height: 70px;
    margin-bottom: 1.2rem;
    margin-top: 2rem;
    font-weight: 800;
    font-family: "Hiragino Kaku Gothic Std";
  }
  
  #recruiting article p {
    font-size: 1.5rem;
    line-height: 2.813rem;
    margin-bottom: 3.2rem;
    font-weight: 600;
  }
  
  #recruiting article p .text-red {
    color: #d32b1a;
  }
  
  .recruiting-small-box {
    position: relative;
    padding: 110px 75px 37px;
    border: 4px solid #242a58;
    border-radius: 20px;
    margin: 90px 0px 120px;
  }
  
  .recruiting-small-box .small-box-title {
    position: absolute;
    color: #ffffff;
    font-size: 2.375rem;
    font-weight: 700;
    line-height: 4.375rem;
    background-color: #242a58;
    padding: 10px 45px;
    display: inline-block;
    /* left: 15rem; */
    /* top: -21%; */
    border-radius: 100px;
    width: 862px;
    height: 100px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    top: -85px;
  }
  
  /* .small-box-title.box-title-one {
    top: -63px;
  }
  
  .small-box-title.box-title-two {
    top: -63px;
  } */
  
  .recruiting-small-box .small-box-text {
    color: #0b0b0b;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 2.125rem;
  }
  
  .recruiting-small-box .small-box-text .red {
    color: #d32b1a;
  }
  
  .recruiting-small-box .small-box-list {
    border-left: 10px solid #242a58;
    margin: 30px 0px;
    /* padding: 20px 0px; */
  }
  
  .recruiting-small-box .small-box-list li {
    color: #242a58;
    font-size: 38px;
    font-weight: 700;
    line-height: 70px;
    margin-left: 20px;
    font-family: "Hiragino Kaku Gothic Std";
  }
  
  .recruiting-small-box .small-box-block {
    border-left: 10px solid #242a58;
    margin: 30px 0px;
    padding-left: 48px;
  }
  
  #recruiting .recruiting-small-box .small-box-block .small-box-text {
    font-size: 20px;
    font-weight: 600;
    line-height: 34px;
  }
  
  #recruiting .recruiting-small-box .small-box-block .small-box-text.box-number {
    font-size: 38px;
    font-weight: 700;
    line-height: 70px;
  }
  
  .recruiting-small-box .lp-button-bg {
    position: absolute;
    bottom: -1.8rem;
    background-color: #f7f7f7;
    padding: 0.8rem 0.5rem;
  }
  
  .recruiting-extra-title {
    margin-top: 4.5rem;
    position: relative;
    margin-bottom: 2.5rem;
  }
  
  #recruiting .recruiting-extra-title h2 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2.25rem;
  }
  
  .recruiting-extra-title::before {
    content: "";
    position: absolute;
    height: 5%;
    border-bottom: 2px solid #242a58;
    width: 4%;
    bottom: 35%;
    left: 35%;
    transform: rotate(55deg);
  }
  
  .recruiting-extra-title::after {
    content: "";
    position: absolute;
    height: 5%;
    border-bottom: 2px solid #242a58;
    width: 4%;
    bottom: 35%;
    right: 35%;
    transform: rotate(125deg);
  }
  
  #recruiting #lp-big-button {
    border-radius: 20px;
    font-size: 28px;
    font-weight: 700;
    line-height: 70px;
    margin-top: 1rem;
    margin-bottom: 1.575rem;
    min-width: 500px;
    min-height: 100px;
    font-family: "Hiragino Kaku Gothic Std";
  }
  
  /* End Recruiting Section */
  
  /* Event Box Section */
  
  #event-box {
    border-bottom: 4px solid #242a58;
    max-width: 1180px;
    margin: 0px auto 20px;
  }
  
  #recruiting #event-footer-text {
    font-size: 1rem;
    font-weight: 500;
    line-height: 2.125rem;
  }
  
  #event-box .strike {
    text-decoration: line-through;
  }
  
  .event-title {
    position: relative;
    border-bottom: 4px solid #242a58;
    margin-bottom: 78px;
    margin-top: 30px;
  }
  
  #event-box .event-title h2 {
    position: absolute;
    bottom: -50px;
    left: 4%;
    padding: 0px 8px;
    background-color: #f7f7f7;
    font-size: 38px;
    font-weight: 700;
    line-height: 60px;
    font-family: "Hiragino Kaku Gothic Std";
  }
  
  #recruiting .small-box-text {
    font-size: 20px;
    font-weight: 600;
    line-height: 34px;
    margin-bottom: 13px;
  }
  
  #recruiting .event-info-list {
    width: 1040px;
    margin: 0 auto;
  }
  
  #recruiting .event-info-list li {
    position: relative;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 2.125rem;
    border-bottom: 1px solid #a3a5b8;
    margin-bottom: 20px;
    padding-bottom: -0px;
  }
  
  #recruiting .event-info-list li:last-child {
    border-bottom: none;
    margin-bottom: 3rem;
  }
  
  #recruiting .event-info-list li p {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 24px;
    line-height: 45px;
  }
  
  #recruiting .event-info-list .event-details {
    font-weight: 600;
    font-size: 24px;
    line-height: 45px;
  }
  
  #recruiting .event-info-list .event-details p {
    font-weight: 600;
    font-size: 1.26rem;
    line-height: 2.813rem;
  }
  
  .event-info-list li p ul {
    /* position: absolute; */
    /* left: 0px; */
  }
  
  .event-info-list li .red {
    color: #d32b1a;
  }
  
  /* End Event Box Section */
  
  /* Frequently Asked Questions Section */
  
  #faqs .section-title {
    margin-bottom: 70px;
  }
  
  #faqs {
    padding-bottom: 103px;
  }
  
  .faqs-lists {
    max-width: 1180px;
    margin: 0 auto;
  }
  
  .faqs-item {
    list-style: none;
    border-bottom: 2px solid #707070;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .faqs-item:last-child {
    border-bottom: none;
    margin-bottom: 0px;
    padding-bottom: 0px;
  }
  
  .faqs-qs,
  .faqs-ans {
    position: relative;
  }
  .faqs-qs::before {
    content: url("../_img/ques.png"); /* with class ModalCarrot ??*/
    position: absolute;
    z-index: 100000; /*a number that's more than the modal box*/
    left: 0px;
    top: 10px;
  }
  
  .faqs-qs {
    color: #000b7b;
    font-size: 20px;
    font-weight: 700;
    line-height: 70px;
    margin-bottom: 19px;
    padding-left: 48px;
  }
  
  .faqs-ans::before {
    content: url("../_img/ans.png");
    position: absolute;
    z-index: 100000; /*a number that's more than the modal box*/
    left: 0px;
    top: 5px;
  }
  
  .faqs-ans {
    color: #0d0d0d;
    font-size: 20px;
    font-weight: 600;
    line-height: 34px;
    margin-bottom: 27.5px;
    padding-left: 48px;
  }
  
  /* End Frequently Asked Questions Section */
  
  /* Teams Section */
  
  #teams {
    padding-bottom: 102px;
  }
  
  #teams .section-title {
    margin-bottom: 100px;
  }
  .padding-540{
    padding-left: 540px !important;
    padding-right: 540px !important;
  }
  
  #teams .section-title h2 {
    font-size: 38px;
    color: #ffffff;
    font-weight: 700;
    line-height: 70px;
  }
  
  .common-padding-60{
    padding: 0 60px;
  }
  .commmon-padding-460{
    padding-left: 455px;
    padding-right: 455px;
  }
  .common-padding-305{
    padding-left:305px;
    padding-right:305px;
  }
  
  #pmpgs img {
    margin: auto;
    display: flex;
    margin-bottom: 60px;
  }
  
  
  #teams .teams-content p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 32px;
    font-weight: 700;
  }
  
  
  #teams #lp-button {
    width: 100%;
  }
  
  #teams #lp-big-button {
    /* padding: 1.2rem 3rem; */
    /* border: 1px solid grey; */
    border-radius: 15px;
    font-size: 28px;
    font-weight: 700;
    line-height: 70px;
    min-height: 100px;
    min-width: 500px;
    text-align: center;
    font-family: "Hiragino Kaku Gothic Std";
  }
  
  /* End Teams Section */
  
  /* Sponsor Section */
  #sponsor {
    height: 195px;
    margin: 0 auto 60px;
  }
  
  .sponsor-content {
    background-color: #eaeaf0;
    padding: 41px 0px 31px;
    border-radius: 20px;
  }
  .sponsor-content p {
    font-size: 20px;
    font-weight: 600;
    line-height: 29px;
  }
  
  .sponsor-content .special {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.813rem;
    justify-content: left;
    width: 372px;
    margin: 0 auto 24px;
  }
  
  .sponsor-content .special p {
    font-size: 24px;
    font-weight: 800;
    line-height: 36px;
    justify-content: left;
    margin-bottom: 5px;
  }
  
  /* End Sponsor Section */
  
  /*=== End Course Information ===*/
  
  /* About Konosuke Matsushita */
  
  .image-section {
    position: relative;
  }
  
  .image-section.left {
    margin-right: 78px;
    margin-bottom: 80px;
    margin-top: 20px;
    float: left;
  }
  
  #main-container .image-section .image-info {
    font-size: 0.875rem;
    font-weight: 600;
  }
  
  .info-right {
    position: absolute;
    right: 0;
  }
  
  .image-section.right {
    margin-left: 78px;
    margin-top: 60px;
    margin-bottom: 80px;
    float: right;
  }
  
  .info-left {
    position: absolute;
    left: 0;
  }
  
  .paper-pattern {
    background-color: #f8efe3;
    background-image: url(./../_img/papper-pattern-cut.png);
    background-size: cover;
  }
  
  #main-container .about {
    padding: 80px 0px;
  }
  
  #main-container .about h3 {
    font-size: 1.875rem;
    display: block;
    font-weight: 700;
    line-height: 2.813rem;
    margin-bottom: 1.5rem;
    margin-top: 110px;
  }
  
  #main-container .about h3.first {
    margin-top: 0px;
  }
  
  #main-container .about p {
    font-size: 20px;
    font-weight: 600;
    line-height: 46px;
    margin-bottom: 20px;
  }
  
  #main-container .about #lp-button {
    margin-top: 120px;
  }
  
  #main-container .about #lp-button p {
    margin-top: 19px;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
  }
  
  /* Contact Section  */
  
  #main-container.contact {
    padding: 80px 10px;
  }
  
  .contact .form-group {
    margin-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #dcdcdc;
    font-weight: 700;
  }
  
  .contact .form-group label {
    font-size: 24px;
    font-weight: 700;
    line-height: 45px;
    color: #0f2245;
    text-align: right;
  }
  
  .contact .form-group .badge {
    font-size: 16px;
    font-weight: 600;
    float: left;
  }
  
  .badge.bg-grey {
    background-color: #333b48;
  }
  
  .badge.bg-red {
    background-color: #eb5342;
  }
  
  .contact .form-group.last {
    border-bottom: 0px solid transparent;
    /* background-color: #000b7b; */
  }
  
  .contact .badge {
    margin-right: 10px;
    margin-top: 8px;
    font-weight: 600;
  }
  
  .contact input,
  .contact textarea {
    border: transparent;
    min-height: 4rem;
    max-width: 100%;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2.813rem;
  }
  
  .contact input:focus,
  .contact textarea:focus {
    outline: 2px solid #000b7b;
    border-radius: 10px;
  }
  
  .contact input.error,
  .contact input:focus.error,
  .contact textarea.error,
  .contact textarea:focus.error {
    outline: 2px solid #dd675b;
  }
  
  .contact textarea {
    padding: 15px;
  }
  
  .contact .error-status {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2.813rem;
    color: #dd675b;
  }
  
  .contact #lp-big-button {
    padding: 1rem 7rem;
    /* border: 1px solid grey; */
    border-radius: 20px;
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 4.375rem;
    font-family: "Hiragino Kaku Gothic Std";
  }
  
  /* End Contact Section  */
  
  /* Thank you Page */
  
  .thank-you .thank-you-content {
    padding: 141px 0px 0px 0px;
  }
  
  .thank-you .thank-you-title {
    color: #0f2245;
    font-size: 38px;
    line-height: 45px;
    font-weight: 700;
    margin-bottom: 49px;
  }
  
  .thank-you .thank-you-hr {
    opacity: 100;
    border-top: 4px solid #0f2245;
    border-radius: 50px;
    margin-bottom: 60px;
  }
  
  .thank-you .thank-you-text {
    color: #0f2245;
    font-size: 20px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 60px;
  }
  
  .thank-you #lp-big-button {
    /* padding: 0.38rem 15rem; */
    /* border: 1px solid grey; */
    border-radius: 20px;
    font-size: 28px;
    font-weight: 700;
    margin-top: 4.375rem;
    font-family: "Hiragino Kaku Gothic Std";
    width: 400px;
    height: 55px;
    line-height: 70px;
    margin-bottom: 147px;
  }
  
  /* End Thank You Page */
  
  /* Footer */
  
  #footer {
    background-color: #000b7b;
  }
  
  /* .logo-items {
    justify-content: center;
  } */
  
  .footer-logo-cross {
    margin: 0px 31px;
  }
  
  #footer-menu .nav-link {
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
  }
  
  #footer-menu .nav-link.active,
  #footer-menu .nav-link:hover {
    color: #ffffff;
  }
  
  #footer-text {
    color: #f7f7f7;
    font-weight: 600;
  }
  
  #copyrights {
    color: #737cc0;
    font-weight: 400;
    font-size: 12px;
  }
  
  /* Buttons */
  
  #lp-big-button {
    border-radius: 20px;
    font-size: 24px;
    font-weight: 700;
    min-width: 500px;
    min-height: 500px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    font-family: "Hiragino Kaku Gothic Std";
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  }
  
  #lp-big-button i {
    margin-right: 24px;
    align-self: center;
  }
  
  #lp-big-button.red {
    background: rgb(237, 12, 12);
    background: linear-gradient(
      180deg,
      rgba(237, 12, 12, 1) 0%,
      rgba(150, 9, 9, 1) 100%
    );
    color: #f7f7f7;
    min-height: 100px;
    min-width: 500px;
    font-family: "Hiragino Kaku Gothic Std";
  }
  
  #lp-button {
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    min-height: 100px;
    min-width: 500px;
    font-family: "Hiragino Kaku Gothic Std";
    margin-top:120px;
  }
  
  #lp-big-button.orange {
    background: rgb(253, 173, 81);
    background: linear-gradient(
      180deg,
      rgba(253, 173, 81, 1) 0%,
      rgba(180, 85, 5, 1) 100%
    );
    color: #f7f7f7;
    min-height: 100px;
    min-width: 500px;
    font-family: "Hiragino Kaku Gothic Std";
  }
  
  #lp-big-button.blue {
    background: #3f4bb7;
    background: linear-gradient(180deg, #3f4bb7 0%, #010b71 100%);
    color: #f7f7f7;
    min-height: 100px;
    min-width: 500px;
    font-family: "Hiragino Kaku Gothic Std";
  }
  
  #lp-big-button.grey {
    background: rgb(181, 181, 181);
    background: linear-gradient(
      180deg,
      rgba(181, 181, 181, 1) 0%,
      rgba(101, 101, 101, 1) 100%
    );
    color: #f7f7f7;
    min-height: 100px;
    min-width: 500px;
    font-family: "Hiragino Kaku Gothic Std";
  }
  
  #lp-button p {
    margin-top: 1.25rem;
    font-weight: 700;
    line-height: 1.688rem;
  }
  footer.container {
    padding: 38px 0 25px 0;
  }
  
  /* ==========================================/
  *  =======  Responsive Style Section =======/
  *  =======================================*/
  
  /* Smartphones (portrait and landscape) ----------- */
  @media only screen and (max-width: 750px) {
    #top{
      padding: 20px 0;
    }
  
    #header {
      display: none;
    }
  
    #mobile-header {
      border-bottom: 25px solid #000b7b;
      display: block;
    }
  
    #mobile-header .site-title h1 {
      color: #000c7c;
      font-weight: 900;
      font-size: 1.12rem;
    }
    article.notice-content{
      width: 90%;
    }
  
    /* Home Page */
  
    /* Notice Section */
    #notice-section{
      margin-top: 43px;
      margin-bottom: 60px;
    }
    .notice-title{
      margin-bottom: 24px;
    }
    #notice-section .notice-list {
      padding: 20px 30px;
      max-height: 550px;
      width: 100%;
    }
  
  
    /* End Notice Section */
  
    /* Ideal   */
    #ideal-sales {
      padding-bottom: 50px;
    }
  
    #ideal-sales .section-title {
      background-color: #000b7b;
      color: #ffffff;
      border-radius: 20px;
      height: 100px;
      max-width: 98%;
      margin-bottom: 50px;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      align-content: center;
      justify-content: center;
      margin-left: auto;
      margin-right: auto;
      align-items: center;
    }
    .ideal-sales-content {
      width: 90%;
      margin: auto;
  }
  .logo-items{
    padding-left: 0px;
  }
    #ideal-sales .section-title h2 {
      font-size: 1rem;
      color: #ffffff;
      font-weight: 700;
    }
  
    #ideal-sales p {
      font-size: 24px;
      line-height: 45px;
      margin-bottom: 55px;
      font-weight: 700;
    }
  
    #ideal-sales img {
      margin: 0rem 0rem 3.12rem 0rem;
    }
  
    #ideal-sales #lp-big-button {
      padding: 1.5rem 4rem;
      /* border: 1px solid grey; */
      border-radius: 20px;
      font-size: 1.2rem;
      font-weight: 700;
      font-family: "Hiragino Kaku Gothic Std";
    }
  
    /* End Home Page*/
  
    /* Course Section */
  
    .course-info .cntc {
      padding: 10px 0;
    }
  
    .course-info .cntc .cntc-content {
      border: 2px solid #242a58;
      border-radius: 20px;
      padding: 80px 66px 0px 66px;
   
    }
  
    .cntc-content{
      width: 85% !important;
    }
  
    .course-info .cntc .cntc-title {
      font-size: 30px;
      font-weight: 700;
      line-height: 4.375rem;
      padding: 3px 10px;
      top: -40px;
    }
  
    .course-info .cntc .cntc-text {
      padding-bottom: 100px;
    }
    section.course-info-sec.cntc {
      margin: 70px 0 90px 0;
  }
  
  .course-info .cntc .cntc-title{
    min-width: 50%
  }
  
  a#lp-big-button {
    margin-top: 0 !important;
  }
  
  #lp-button {
    left: 50% !important;
    transform: translate(-50%);
    /* min-width: 50%; */
  }
  .course-info .cntc #lp-big-button{
    /* min-width: 50%; */
  }
  
    .course-info .cntc #lp-big-button {
      border-radius: 20px;
      margin-top: 4.375rem;
      font-family: "Hiragino Kaku Gothic Std";
    }
  
    /* Three examples of authorized navigators Section */
  
    #teoan {
      position: relative;
    }
  
    #teoan .section-title h2 {
      font-size: 1.3rem;
      padding: 34px 0px;
      font-weight: 700;
      margin-bottom: 1rem;
    }
  
    #teoan .teoan-extra-title {
      margin-top: 3.5rem;
      /* position: relative; */
      margin-bottom: 2.5rem;
    }
  
    .teoan-extra-title::before {
      content: "";
      /* position: absolute; */
      height: 5%;
      border-bottom: 2px solid #242a58;
      width: 25%;
      bottom: 53%;
      left: 2%;
      transform: rotate(75deg);
    }
  
    .teoan-extra-title::after {
      content: "";
      position: absolute;
      height: 0%;
      border-bottom: 2px solid #242a58;
      width: 25%;
      bottom: 55%;
      right: 3%;
      transform: rotate(105deg);
    }
  
    .teoan-extra-title h2 {
      font-size: 0.9rem;
      font-weight: 700;
      line-height: 2.25rem;
    }
  
    .teoan-box {
      margin-bottom: 1.5rem;
    }
  
    .teoan-content {
      position: relative;
    }
  
    .teoan-content-title {
      padding-left: 80px;
      position: relative;
      font-size: 1.375rem;
      font-weight: 700;
      line-height: 2.438rem;
      margin-bottom: 20px;
    }
  
    .teoan-content-title::before {
      position: absolute;
      z-index: 100000; /*a number that's more than the modal box*/
      left: -5px;
      font-style: italic;
      font-size: 4rem;
      font-family: "Times New Roman", serif;
    }
  
    .teoan-one::before {
      content: "01"; /* with class ModalCarrot ??*/
      top: 50px;
    }
  
    .teoan-two::before {
      content: "02"; /* with class ModalCarrot ??*/
      top: 35px;
    }
  
    .teoan-three::before {
      content: "03"; /* with class ModalCarrot ??*/
      top: 40px;
    }
  
    .teoan-content p {
      font-size: 1.2rem;
      font-weight: 600;
      line-height: 2.525rem;
    }
  
    .teoan-content h2 {
      font-size: 1.3rem;
      font-weight: 800;
      line-height: 2.5rem;
    }
  
    .teoan-images {
      padding: 0px 0px;
    }
  
    
  
    /* End Three examples of authorized navigators Section */
  
    /* Philosophy Management Practice Game Section */
    #pmpgs {
      padding-bottom: 10px;
    }
  
    #pmpgs .section-title {
      margin-bottom: 40px;
    }
  
    #pmpgs .section-title h2 {
      font-size: 0.9rem;
      line-height: 2.375rem;
      color: #ffffff;
      padding: 18px 0px;
      font-weight: 700;
    }
  
    #pmpgs p.text-red {
      font-size: 1.875rem;
      display: block;
      font-weight: 700;
      line-height: 4.375rem;
    }
  
    #pmpgs p .text-red {
      display: block;
    }
  
    #pmpgs p {
      font-size: 1rem;
      line-height: 2.813rem;
      margin-bottom: 3.2rem;
      font-weight: 700;
    }
  
    #pmpgs img {
      margin: -10px 0px 50px;
    }
  
    /* End Philosophy Management Practice Game Section */
  
    /* Recruiting Section */
  
    #recruiting {
    }
  
    #recruiting .section-title {
    }
  
    #recruiting .section-title h2 {
      font-size: 1.175rem;
      line-height: 4.375rem;
      color: #ffffff;
      padding: 24px 0px;
      font-weight: 700;
    }
  
    #recruiting article {
    }
  
    #recruiting article h2 {
      font-size: 0.8rem;
      line-height: 2.5rem;
      margin-bottom: 1.2rem;
      margin-top: 2rem;
      font-weight: 800;
    }
  
    #recruiting article p {
      font-size: 1.1rem;
      line-height: 2.813rem;
      margin-bottom: 3.2rem;
      font-weight: 600;
    }
  
    #recruiting article p .text-red {
      color: #d32b1a;
    }
  
    .recruiting-small-box {
      position: relative;
      padding: 55px 30px 15px;
      border: 2px solid #242a58;
      border-radius: 20px;
      margin: 90px 0px;
    }
  
    .recruiting-small-box .small-box-title {
      position: absolute;
      color: #ffffff;
      font-size: 2.375rem;
      font-weight: 700;
      line-height: 4.375rem;
      background-color: #242a58;
      padding: 10px 45px;
      display: inline-block;
      /* left: 15rem; */
      /* top: -21%; */
      border-radius: 100px;
    }
  
    .small-box-title.box-title-one {
      top: -63px;
    }
  
    .small-box-title.box-title-two {
      top: -63px;
    }
  
    .recruiting-small-box .small-box-text {
      color: #0b0b0b;
      font-size: 1.15rem;
      font-weight: 600;
      line-height: 2.125rem;
    }
  
    .recruiting-small-box .small-box-text .red {
      color: #d32b1a;
    }
  
    .recruiting-small-box .small-box-list {
      border-left: 5px solid #242a58;
      margin: 30px 0px;
      /* padding: 20px 0px; */
    }
  
    .recruiting-small-box .small-box-list li {
      color: #242a58;
      font-size: 0.875rem;
      font-weight: 700;
      line-height: 3.375rem;
      margin-left: 0px;
    }
  
    .recruiting-small-box .small-box-block {
      border-left: 5px solid #242a58;
      margin: 30px 0px;
      padding-left: 30px;
    }
  
    #recruiting .recruiting-small-box .small-box-block .small-box-text {
      font-size: 1.2rem;
      font-weight: 600;
      line-height: 2.125rem;
    }
  
    #recruiting
      .recruiting-small-box
      .small-box-block
      .small-box-text.box-number {
      font-size: 1.875rem;
      font-weight: 700;
      line-height: 3.375rem;
    }
  
    .recruiting-small-box .lp-button-bg {
      position: absolute;
      bottom: -1.8rem;
      background-color: #f7f7f7;
      padding: 0.8rem 0.5rem;
    }
  
    .recruiting-extra-title {
      margin-top: 4.5rem;
      position: relative;
      margin-bottom: 2.5rem;
    }
  
    #recruiting .recruiting-extra-title h2 {
      font-size: 1.3rem;
      font-weight: 700;
      line-height: 2.25rem;
    }
  
    .recruiting-extra-title::before {
      content: "";
      position: absolute;
      height: 5%;
      border-bottom: 2px solid #242a58;
      width: 10%;
      bottom: 35%;
      left: 15%;
      transform: rotate(55deg);
    }
  
    .recruiting-extra-title::after {
      content: "";
      position: absolute;
      height: 5%;
      border-bottom: 2px solid #242a58;
      width: 10%;
      bottom: 35%;
      right: 15%;
      transform: rotate(125deg);
    }
  
    #recruiting #lp-big-button {
      padding: 1.3rem 5rem;
      /* border: 1px solid grey; */
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 700;
      font-family: "Hiragino Kaku Gothic Std";
    }
  
    /* End Recruiting Section */
  
    /* Event Box Section */
  
    #event-box {
      border-bottom: 4px solid #242a58;
      margin-bottom: 20px;
    }
  
    #recruiting #event-footer-text {
      font-size: 20px;
      font-weight: 500;
      line-height: 34px;
    }
  
    #event-box .strike {
      text-decoration: line-through;
    }
  
    .event-title {
      position: relative;
      border-bottom: 4px solid #242a58;
      margin-bottom: 5rem;
    }
  
    #event-box .event-title h2 {
      position: absolute;
      bottom: -55px;
      left: 6%;
      padding: 3px 3px;
      background-color: #f7f7f7;
      font-size: 0.7rem;
      font-weight: 700;
      line-height: 3.75rem;
    }
  
    #recruiting .small-box-text {
      font-size: 1.1rem;
      font-weight: 600;
      line-height: 2.125rem;
    }
  
    #recruiting .event-info-list {
    }
  
    #recruiting .event-info-list li {
      position: relative;
      font-size: 1.25rem;
      font-weight: 600;
      line-height: 2.125rem;
      border-bottom: 1px solid #242a58;
      margin-bottom: 20px;
      padding-bottom: -0px;
    }
  
    #recruiting .event-info-list li:last-child {
      border-bottom: none;
      margin-bottom: 3rem;
    }
  
    #recruiting .event-info-list li p {
      margin-bottom: 10px;
      font-weight: 700;
      font-size: 1.2rem;
      margin-left: -10px;
    }
  
    #recruiting .event-info-list .event-details {
      font-weight: 600;
      font-size: 1.2rem;
      line-height: 2.813rem;
      margin-left: 5px;
    }
  
    #recruiting .event-info-list .event-details p {
      font-weight: 600;
      font-size: 1.256rem;
      line-height: 2.813rem;
    }
  
    .event-info-list li p ul {
      /* position: absolute; */
      /* left: 0px; */
    }
  
    .event-info-list li .red {
      color: #d32b1a;
    }
  
    /* End Event Box Section */
  
    /* Frequently Asked Questions Section */
  
    #faqs .section-title h2 {
      font-size: 1.7rem;
      padding: 34px 0px;
      font-weight: 700;
      margin-bottom: 1rem;
    }
  
    .faqs-lists {
      padding: 0px 10px 0px 50px;
    }
    .faqs-item {
      list-style: none;
    }
  
    .faqs-qs,
    .faqs-ans {
      position: relative;
    }
    .faqs-qs::before {
      content: url("../_img/ques.png"); /* with class ModalCarrot ??*/
      position: absolute;
      z-index: 100000; /*a number that's more than the modal box*/
      left: -50px;
      top: 10px;
    }
  
    .faqs-qs {
      color: #000b7b;
      font-size: 1.25rem;
      font-weight: 700;
      line-height: 2.5rem;
      margin-bottom: 1rem;
    }
  
    .faqs-ans::before {
      content: url("../_img/ans.png"); /* with class ModalCarrot ??*/
      position: absolute;
      z-index: 100000; /*a number that's more than the modal box*/
      left: -50px;
      top: 5px;
    }
  
    .faqs-ans {
      margin-bottom: 1rem;
    }
  
    /* End Frequently Asked Questions Section */
  
    /* Teams Section */
  
    #teams {
      padding-bottom: 80px;
    }
  
    #teams .section-title h2 {
      font-size: 1.2rem;
      color: #ffffff;
      padding: 34px 0px;
      font-weight: 700;
      margin-bottom: 1rem;
    }
  
    #teams p {
      font-size: 1rem;
      line-height: 1.875rem;
      margin-bottom: 1.5rem;
      font-weight: 700;
    }
  
    #teams img {
      margin: 40px 0px 0px;
    }
  
    #teams #lp-big-button {
      padding: 1.7rem 3rem;
      /* border: 1px solid grey; */
      border-radius: 15px;
      font-size: 1.1rem;
      font-weight: 700;
      margin-top: 4.375rem;
    }
  
    /* End Teams Section */
  
    /* Sponsor Section */
    #sponsor {
      /* margin-bottom: 4rem; */
    }
  
    .sponsor-content {
      background-color: #eaeaf0;
      padding: 1.5rem 0.5rem 1rem;
      border-radius: 20px;
    }
    .sponsor-content p {
      font-size: 1.1rem;
      font-weight: 600;
      line-height: 1.813rem;
      margin-top: 0.95rem;
    }
  
    .sponsor-content p.special {
      font-size: 1rem;
      font-weight: 800;
      line-height: 1.813rem;
      margin-bottom: -0.29rem;
    }
  
    /* End Sponsor Section */
  
    /* === End Course Section === */
  
    #main-container .about {
      padding: 30px 20px;
    }
  
    .image-section {
      max-width: 40%;
    }
  
    #main-container .image-section .image-info {
      font-size: 0.875rem;
      font-weight: 600;
      line-height: 1.4rem;
    }
  
    #main-container .about h3 {
      font-size: 30px;
      font-weight: 800;
      line-height: 45px;
      margin-bottom: 60px;
    }
  
    #main-container .about p {
      font-size: 1.25rem;
      font-weight: 600;
      line-height: 2.875rem;
      margin-bottom: 5.5rem;
    }
  
    /* Contact */
  
    .contact .form-group label {
      text-align: left;
    }
  
    .contact .form-group .badge {
      float: none;
      margin-top: 0px;
    }
  
    .contact input {
      margin-top: 10px;
    }
  
    .contact #lp-big-button {
      padding: 1.4rem 6rem;
      /* border: 1px solid grey; */
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 700;
      margin-top: 4.375rem;
    }
  
    /* End Contact */
  
    /* Thank You */
    .thank-you .thank-you-content {
      padding: 80px 20px 120px;
    }
  
    .thank-you .thank-you-content {
    }
  
    .thank-you .thank-you-content .thank-you-title {
      font-size: 1.5rem;
      line-height: 2.813rem;
      font-weight: 700;
      margin-bottom: 40px;
    }
  
    .thank-you .thank-you-content .thank-you-text {
      color: #0f2245;
      font-size: 1.1rem;
      font-weight: 600;
      line-height: 2.5rem;
    }
  
    .thank-you .thank-you-content #lp-big-button {
      padding: 0.3rem 7rem;
      /* border: 1px solid grey; */
      border-radius: 20px;
      font-size: 1.8rem;
      font-weight: 700;
      margin-top: 4.375rem;
    }
    /* End Thank you */
  
    #lp-big-button {
      border-radius: 7px;
      font-size: 0.9rem;
      font-weight: 700;
    }
  
    /* #lp-button{
      min-width:200px
    } */
    #lp-big-button.red{
      min-width:80%;
      min-height: 80px;
    }
    #lp-button > p {
      margin-top: 1.25rem;
      font-size: 1.2rem;
      font-weight: 700;
      line-height: 1.688rem;
    }
  
    #footer-menu .nav-item a {
      color: #ffffff;
      font-size: 0.55rem;
    }
  
    #footer-text {
      /* color: #f7f7f7; */
      /* font-weight: 600; */
      font-size: 0.75rem;
    }
  
    #copyrights {
      /* color: #737cc0; */
      /* font-weight: 400; */
      font-size: 0.55rem;
    }
  }
  
  @media only screen and (max-width: 376px) {
    h1#top-title{
      font-size: 15px !important;
    }
  }
  
  @media only screen and (max-width: 650px) {
    .notice-date{
      font-size: 22px;
    }
  }
  
  @media only screen and (max-width: 576px) {
    .notice-date{
      text-align: center;
    }
    .ideal-sales-content p{
      font-size:22px !important;
    }
  }
  
  @media only screen and (max-width: 450px) {
    .notice-date{
      font-size: 20px;
    }
  }

/*== Bootstrap reset ==*/
.textPrimary{
    color:#000C7C;
}
a{
    text-decoration: none;
}
.btn-primary{
    background-color: #000B7B;
    border-color: #000B7B;
}
.btn-lg{
    border-radius: 20px;
    font-size: 38px;
    font-weight: 700;
}
.btn-primary:hover{
    background-color: #000B7B;
}
.textDanger{
    color: red;
}
.btn{
    box-shadow: 0 3px 6px rgba(0,0,0,.16);
    border: 0;
    font-size: 28px;
    padding: 30px 80px;
    border-radius: 20px;
    white-space: nowrap;
}
.btn.btn-danger{
    background: linear-gradient(180deg, #ED0C0C, #960909);
}
.btn.btn-success{
    background: linear-gradient(180deg, #3F4BB7, #010B71);
}
.btn.btn-default{
    color: white;
    background: linear-gradient(180deg, #B5B5B5, #656565);
}
.form-control{
    padding: 22px;
    border-width: 2px;
}
.form-control:active,
.form-control:focus{
    border-color: #000B7B;
    box-shadow: none;
}
.btn:disabled{
    opacity: .3;
}

/*== Style.css ==*/
.margin-horizontal-546 {
    margin-left: 546px;
    margin-right: 546px;
}
.teoan-extra-title::before {
    left: 13px;
    height: 44px;
    width: 82px;
    bottom: 24px;
}
.participation {
    margin-top: 120px;
    
}
.participation::before {
    left: 40%;
    width: 50px;
    content: "";
    position: absolute;
    border-bottom: 2px solid #242a58;
    transform: rotate(75deg);
    height: 44px;
}
.participation::after {
    content: "";
    position: absolute;
    border-bottom: 2px solid #242a58;
    width: 50px;
    transform: rotate(105deg);
    right: 40%;
}
.teoan-extra-title::after {
    right: -13px;
    height: 44px;
    width: 82px;
    bottom: 4px;
}
.mt-43 {
    margin-top: 62px;
}
.teoan-extra-title h2 {
    line-height: 41px;
}
.cusom-margin-290 {
    margin-left: 290px;
    margin-right: 290px;
}

.management-left-cont {
    padding-right: 43px;
}
.mannagement-p {
    font-size: 20px;
    font-weight: 600;
    line-height: 40px;
}
.mannagement-h2 {
    font-size: 24px;
    font-weight: 800;
    line-height: 40px;
}
.management-images-mt-10 {
    margin-top: 10px
}
.mt-67 {
    margin-top: 67px;
}
.management-right-cont {
    padding-left: 43px;
}
.mannagement-p-right{
    font-size: 20px;
    font-weight: 600;
    line-height: 34px;
}
.teoan-two {
    margin-bottom: 72px
}
.mt-80 {
    margin-top: 80px;
}
.section-title-wrapper {
    background-color: #000b7b;
    color: #ffffff;
    border-radius: 20px;
   
    height: 184px;
}
.recruiting-wrapper-h2 {
    font-size: 38px;
    font-weight: 700;
}
.padding-vertical-30 {
    padding-top: 30px;
    padding-bottom: 30px
}
.custom-padding-vertical {
    padding-top: 66px;
    padding-bottom: 81px;
}
.course-btn-wrapper {
    position: absolute;
    color: #ffffff;
    background-color: #242a58;
    border-radius: 50px;
    /* height: 100px; */
    top: -10%;
    padding: 30px 40px;
}
.course-h2 {
    font-size: 38px;
    font-weight: 700;
    font-family: "Hiragino Kaku Gothic Std";
}
.recruiting-small-box {
    position: relative;
    padding: 100px 156px 88px;
    /* padding: 100px 186px 88px; */

    margin-top: 53px;
    margin-bottom: 70px;
    border: 4px solid #242a58;
    border-radius: 20px;
}
.course-border-left {
    width: 10px;
    height: 196px;
    border-radius: 100px;
    background-color: #242A58;
}
.course-amount {
   font-size: 38px;
   color:#242A58;
   line-height: 70px;
    font-family: "Hiragino Kaku Gothic Std";
   font-weight: 700;
}
.game-title-wrapper {
    width:100%;
    text-align:center; 
    position: relative;
 }
 
 .game-title-text{
    position:relative; 
    background: #f3f5f6;
    display: inline-block;
    z-index: 1;
    font-size: 38px;
    font-weight: 700;
    line-height: 60px;
    font-family: "Hiragino Kaku Gothic Std";
    padding-right: 20px;
 }
 
 .game-title-wrapper::after {
    content:'';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 4px;
    background: #000;
    z-index:0;
 }
 /* .game-left {
    width: 192px;
   
 } */
 .game-left-text {
    font-size:24px;
    color:#0F2245;
    font-weight: 700;
    /* width: 214px */
 }
 .game-right-text {
    font-size:24px;
    color:#0F2245;
    font-weight: 500;
 }
 .line-through {
    text-decoration: line-through;
 }
 .game-row {
    border-bottom: 1px solid #242A58;
    padding-bottom: 39px;
    padding-top: 39px;
 }
 .game-row:last-child {
    border-bottom: 0
 }
 .game-list-wrapper {
    padding-left: 156px;
    padding-right: 156px;
    padding-top: 50px;
 }
 .game-inner-container {
    border-bottom: 4px solid #242a58;
 }
 .w-369 {
    width: 369px;
 }
 .content-20 {
    font-size: 20px;
 }
 .mt-33{
    margin-top: 33px;
 }
 .faq-section {
    margin-top: 119px;
 }
 .btn-wrapper-mt-88{
    margin-top: 88px;
 }
 .training-course {
    position: relative;
    padding: 77px 101px 75px;
    border: 4px solid #242a58;
    border-radius: 20px;
    min-height: 294px;
 }
 .section-title {
    margin-bottom: 60px;
 }
.practice-game-h2 {
    padding-top: 38px;
    padding-bottom: 38px;
 }
 .ct-60  {
    padding-top: 60px
 } 
 .cb-50 {
    padding-bottom: 50px;
 }
 .cb-120 {
    padding-bottom: 110px
 }
 .ct-121 {
    margin-top: 121px;
 }
 .cb-110 {
    margin-bottom: 110px;
 }
 .top-content {
    position: relative;
    padding: 65px 101px 47px;
    border: 4px solid #242a58;
    border-radius: 20px;
    
}
.top-title {
    position: absolute;
    color: #242a58;
    font-size: 38px;
    font-weight: 700;
    line-height: 70px;
    background-color: #f7f7f7;
    display: inline-block;
    top: -11%;
    font-family: "Hiragino Kaku Gothic Std";
    min-width: 528px;
    text-align: center;
}
.button-top {
    position: absolute;
    bottom: -55px;
    background-color: #f7f7f7;
    padding: 5px 15px;
    left: 50%;
    transform: translate(-50%);
}
.cb-47 {
    padding-bottom: 47px;
}
.flex-content-title {
    position: relative;
    font-size: 38px;
    font-weight: 700;
    line-height: 55px;
    font-family: "Hiragino Kaku Gothic Std";
    margin-bottom: 67px;
    color:#242A58
}
.flex-content-one::before {
    content: url(../_img/number-1.png);
    
    top: 45px;
}
.flex-content-title::before {
    position: absolute;
    z-index: 100000;
    left: 5px;
    font-style: italic;
    font-size: 6rem;
    font-family: "Times New Roman", serif;
    
}
.flex-content-two::before {
    content: url("../_img/number-2.png"); /* with class ModalCarrot ??*/
    top: 20px;
    left: -15px;
  }
  
  .flex-content-three::before {
    content: url("../_img/number-3.png"); /* with class ModalCarrot ??*/
    top: 20px;
    left: -15px;
  }
  .navigator-text {
    color: #0b0b0b;
    font-size: 20px;
    font-weight: 600;
    line-height: 34;
}
.navigator-box-list li {
    color: #242a58;
    font-size: 38px;
    font-weight: 700;
    line-height: 70px;
    margin-left: 20px;
    font-family: "Hiragino Kaku Gothic Std";
}
.sponsor-section {
    margin: 0 auto 31px;
}   
.custom-btn-text {
    font-size: 28px;
    color:#fff;
    font-family: "Hiragino Kaku Gothic Std";
    font-weight: 700;
}
.custom-btn-container{
    background: linear-gradient( 180deg, rgba(253, 173, 81, 1) 0%, rgba(180, 85, 5, 1) 100% );
    border-radius: 20px;
    
}
.custom-btn-position {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
}
.btn-arrow-icon {
    color: #fff;
    padding-right: 24px;
}
.sponsor-content-wrapper {
    background-color: #EAEAF0;
    padding: 41px 0 31px;
    border-radius: 20px;
}
.sponsor-text {
    font-size: 24px;
    font-weight: 800;
}
.sponsor-text-single {
    font-size: 20px;
    font-weight: 600;
}
.faqs-qs-text {

}
.faqs-qs-text::before {
    content: url(../_img/ques.png);
    position: absolute;
    z-index: 100000;
    left: -2.5rem;
    top: 10px;
}
.faqs-qs-text  {
    color: #000b7b;
    font-size: 20px;
    font-weight: 700;
    line-height: 70px;
    margin-bottom: 19px;
    /* padding-left: 48px; */
  }

  .faqs-qs-text ,
  .faqs-ans-text {
    position: relative;
  }
  .faqs-ans-text::before {
    content: url("../_img/ans.png"); /* with class ModalCarrot ??*/
    position: absolute;
    z-index: 100000; /*a number that's more than the modal box*/
    left: -50px;
    top: 5px;
  }

  .faqs-ans-text {
    margin-bottom: 1rem;
  }
  
  .faqs-ans-text {
    color: #0d0d0d;
    font-size: 20px;
    font-weight: 600;
    line-height: 34px;
    margin-bottom: 27.5px;
    /* padding-left: 48px; */
  }
  .participation-title {
    font-size: 24px;
    font-weight: 700;
  }

  .table-left-text {
    font-size: 21px;
    color: #0F2245;
    font-weight: 700;
    /* width: 214px; */
}

/*== Code from sj ==*/
body {
    background-color: #f7f7f7;
    font-family: "Hiragino Sans", "ヒラギノ角ゴ", sans-serif;
}
header{
    background-color: #f7f7f7;
    position: relative;
    z-index: 1;
}
.topText{
    font-size: 48px;
    font-weight: 800;
    line-height: 48px;
    text-align: center;
    margin: 40px 0;
    display: block;
}
.textDanger{
    color:#DD675B
}
.hiDDen{
    display: none;
}
.bg-light-gray{
    background-color: #F7F7F7;
}
.mainNav,footer{
    background: #000b7b;
}
.mainNav .nav-item .nav-link{
    color: white;
    opacity: .6;
    padding: 19.5px 20px;
    font-size: 18px;
    border-bottom: 5px solid transparent;
}
.mainNav .nav-item .nav-link:hover,
.mainNav .nav-item .nav-link.active{
    opacity: 1;
    border-bottom: 5px solid white;
}
.mainNav .nav-login .nav-link{
    text-align: center;
    padding: 12px 20px;
    font-size: 16px;
}
.mainNav .nav-login .nav-link span{
    display: block;
    font-size: 12px;
}


/* Mobile Menu */
.mobile-menu {
    display: block;
    width: 28px;
    height: 28px;
    margin: 0 0 0 auto;
  }
  .mobile-menu span:after,
  .mobile-menu span:before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
  }
  .mobile-menu span:after {
    top: 18px;
  }
  .mobile-menu span {
    position: relative;
    display: block;
  }
  .mobile-menu span,
  .mobile-menu span:after,
  .mobile-menu span:before {
    width: 100%;
    height: 3px;
    background-color: #000c7c;
    transition: all 0.3s;
    backface-visibility: hidden;
    border-radius: 2px;
  }
  .mobile-menu.--open span {
    background-color: transparent;
  }
  .mobile-menu.--open span:before {
    transform: rotate(45deg) translate(-1px, 0px);
  }
  .mobile-menu.--open span:after {
    transform: rotate(-45deg) translate(6px, -7px);
  }
.copyrightText{
    opacity: .6;
}
footer{
    padding: 40px 0;
}
.text12{
    font-size: 12px;
}


.sectionGap{
    padding: 90px 0;
}
.homeContent{
    border-radius: 20px;
    box-shadow: 0 3px 6px rgba(0,0,0,.16);
    padding:0 60px;
    height: 312px;
    overflow: scroll;
}
.noticeTitle{
    font-weight: 700;
}
.dateConteiner{
    font-weight: 700;
}
.homeContent .item{
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,.16);
    font-size:20px;
}
.homeContent .item a {
  color: #0f2245;
}
.homeContent .item a:hover {
  color: #DD675B;
}
.largeBtn{
    margin:0 -100px 0 -100px;
    width: 1556px;
    padding: 31px;
}
.idealSales{
    font-size: 24px;
    font-weight: 700;
}
.idealSales .btn-danger{
    max-width: 400px;
    padding: 20px;
}
#submitButton{
    width: 75%;
    max-width: 500px;
}

.p4{
    background-image: url(../_img/papper-pattern-min.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding:130px 0;
}
.p4 .item{
    margin-bottom: 90px;
    font-size: 20px;
    font-weight: 600;
    line-height: 46px;
    color: #0F2245;
}
.p4 .item .leftItem{
    float: left;
    margin: 0 20px 0px 0;
    position:relative;
    padding-bottom: 40px;
    max-width:440px;
}
.p4 .item .rightItem{
    float: right;
    margin: 0 0px 0px 20px;
    font-size: 20px;
    position:relative;
    padding-bottom: 40px;
    max-width:440px;
}
.p4 .item .caption{
    position: absolute;
    right: 0;
    bottom:0px;
    font-size: 14px;
}
.p4 .item h3{
    margin: 0 0 50px 0;
    font-weight: 700;
    font-size: 30px;
}
.p6{
    padding: 90px 0;
    background-color: #F7F7F7;
}
.p6 .item{
    border-bottom: 1px solid rgba(0,0,0,.16);
    padding: 15px 0;
    position: relative;
}
.p6 .item label{
    color: white;
    font-size: 16px;
    padding: 0 10px;
    border-radius: 15px;
    opacity: .7;
    position: absolute;
    left: 0;
}
.p6 .item label.danger{
    background-color: #D32B1A;
}
.p6 .item label.default{
    background-color: #0F2245;
}
.p7{
    padding:141px 0;
}
.p7 .line{
    border:2px solid #242A58;
    margin: 40px 0;
}




/* == Responsive.css ==*/

@media screen and (max-width:1366px){
    .largeBtn{
        width: calc(100% - 30px);
    }
}
@media screen and (max-width:1200px){
    .topText{
        font-size: 46px;
    }
    .mainNav .nav-item .nav-link{
        font-size: 18px;
    }
}
@media screen and (max-width:992px){
    .topText{
        font-size: 38px;
        line-height: 38px;
    }
    .mainNav .nav-item .nav-link{
        font-size: 16px;
        padding: 19.5px 15px;
    }
    .btn-lg{
        font-size: 30px;
    }
}
@media screen and (max-width:767px){
    .p1,.p4,.p6,.p7{
        border-top:25px solid #000B7B;
        padding-top: 30px;
    }
    .p7{
        padding-top: 100px;
    }
    .p6 .item label{
        position: relative;
        margin-right: 10px;
    }
    .p6 .item {
        padding: 0px 0 15px;
    }
    .topText{
        margin: 30px 0;
        line-height: 28px;
        font-size: 24px;
        font-weight: 600;
    }
    .mobile-menu{
        margin: 30px 0 30px auto;
    }
    .mainNav {
        max-width: 333px;
        position: absolute;
        right: 0;
        width: 100%;
        display: none;
        padding-top: 60px;
    }
    .mainNav.--open{
        display: block;
    }
    body.--overlay::before{
        content:' ';
        position: fixed;
        left: 0;
        top: 0px;
        right: 0;
        bottom: 0;
        background-color: rgba(0,0,0,.6);
        z-index: 1;
    }
    .mainNav .nav-item .nav-link {
        padding: 0px 30px;
        font-size: 24px;
        font-weight: 500;
        border-bottom: 0px;
        border-left: 10px solid transparent;
        margin-bottom: 27px;
        margin-left: -12px;
    }
    .mainNav .nav-item .nav-link:hover,
    .mainNav .nav-item .nav-link.active{
        border-left: 10px solid white;
        border-bottom: 0;
    }
    .mainNav .nav-login .nav-link{
        text-align: left;
    }
    .mainNav .nav-login .nav-link span{
    }
    footer img{
        max-width: 200px;
    }
    .homeContent{
        padding: 0 10px;
    }

    .btn{
        padding: 30px 30px;
        font-size: 20px;
    }
    .p4 .item .leftItem,
    .p4 .item .rightItem{
        max-width: 170px;
    }
    .btn-lg{
        font-size: 20px;
    }
    .p4 .item{
        font-size: 20px;
    }
    .homeContent .item {
      padding: 10px;
    }
    .dateConteiner {
      font-size: 14px;
    }
}
@media screen and (max-width:510px){
    .topText{
        font-size: 16px;
    }
    .mainNav .nav-item .nav-link {
        padding-left: 30px;
    }
    footer img.footerLogoCross{
        max-width: 15px;
    }
    footer img{
        max-width: 130px;
    }
    .btn-lg{
        font-size: 15px;
        white-space: initial;
    }
    .w-75{
        width: 100% !important;
    }
    .noticeTitle {
      font-weight: 700;
      font-size: 15px;
    }
    .dateConteiner {
      font-weight: 700;
      font-size: 10px;
    }
    .col-5 {
      flex: 0 0 auto;
      width: 30%;
    }
    .col-7 {
      flex: 0 0 auto;
      width: 70%;
      font-size: 10px;
    }
    .sectionGap {
      padding: 25px 0;
    }
    p{
     font-size: 12px;
     line-height: 20px;
    }
    .mb-5 {
      margin-bottom: 1.5rem!important;
    }
}
@media screen and (max-width:440px){
    .homeContent .item {
        font-size: 16px;
    }
    .idealSales {
        font-size: 20px;
    }
}


/*= Responsive2.css ==*/
@media (max-width: 1399.98px) {
    .participation::before {
        left: 28%
    }
    .participation::after {
        right: 28%
    }
    .cusom-margin-290 {
        margin-left: 45px;
        margin-right: 45px;
    }
    .top-title {
        font-size: 30px;
        min-width: 388px;
    }
    .top-content {
        padding: 59px 66px 35px;
        margin-top: 85px;
        margin-bottom: 90px;
    }
    .sp-top-course-btn {
        min-width: 528px;
    }
    .common-margin-167 {
        margin-left: 8px;
        margin-right: 8px;
    }
    .recruiting-wrapper-h2 {
        font-size: 30px;
    }
    .sp-margin-45{
        margin-left: 0;
        margin-right: 0;
    }
    .sp-mt-51{
        padding-top: 51px;
    }
    .sp-mb-34 {
        padding-bottom: 34px;
    }
    .sp-pt-72 {
        padding-top: 72px;
    } 
    .sp-pb-40 {
        padding-bottom: 40px;
    }
    .sp-pb-33 {
        padding-bottom: 33px;
    }
    .sp-pb-90 {
        padding-bottom: 90px;
    }
    .margin-horizontal-546 {
        margin-left: 98px;
        margin-right: 98px;
    }
    .flex-content-title {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 67px;
    }
    .management-left-cont {
        padding-right: 0;
    }
    .sp-margin-32 {
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .sp-mt-40 {
        margin-top: 60px;
    }
    .sp-pb-60 {
        padding-top: 60px;
    }
    .sp-ph-8 {
        margin-left: 8px;
        margin-right: 8px;
    }
    
   
    .recruiting-small-box {
        padding: 104px 40px 67px;
    }
    .navigator-box-list li {
        font-size: 24px;
        line-height: 45px;
    }
    .course-border-left {
        width: 10px;
        height: 134px;
    }
    .course-amount {
        font-size: 28px;
        line-height: 34px;
    }
    .course-price-content {
        padding-left: 17px !important;
    }
    .course-second-left {
        height: 191px;
    }
    .sp-course-amount {
        padding-bottom: 30px;
        padding-top: 15px;
    }
    /* .sp-column-reverse {
        flex-direction: column-reverse;
    } */
    .game-title-text {
        font-size: 30px;
        line-height: 42px;
    }
    .game-title-text {

    padding-right: 32px;
    padding-left: 32px;
    }
    .game-list-wrapper {
        padding-left: 30px;
        padding-right: 30px;
    }
    .sp-mlr-0 {
        margin-left: 0;
        margin-right: 0
    }
    .sp-plr-225 {
        padding-left: 25px;
        padding-right: 25px;
    }
   
    .participation {
        /* padding-top: 50px; */
        margin-top:0
    }
    .sp-top-50 {
        padding-top: 90px;
    }
    .sp-p-0 {
        padding-left: 0;
        padding-right: 0
    }
    .faq-section {
        margin-top: 100px;
    }
    .faqs-qs {
        padding-left: 38px;
        line-height: 34px;
    }
    .bottom-content {
        margin-top: -46px;
    }
    .btn-wrapper-mt-88 {
        margin-top: 61px;
    }
    .team-section {
        padding-bottom: 82px !important;
    }
    .sponsor-content {
       padding: 31px 57px 25px;
    }
    .sponsor-content-wrapper {
        background-color: #EAEAF0;
        padding: 41px 30px 31px;
        border-radius: 20px;
    }
    .faqs-qs-text {
        line-height: 34px;
    }
 }
@media (max-width: 1199.98px) {
    .participation::before {
        left: 28%
    }
    .participation::after {
        right: 28%
    }
    .cusom-margin-290 {
        margin-left: 45px;
        margin-right: 45px;
    }
    .top-title {
        font-size: 30px;
        min-width: 388px;
    }
    .top-content {
        padding: 59px 66px 35px;
        margin-top: 85px;
        margin-bottom: 90px;
    }
    .sp-top-course-btn {
        min-width: 528px;
    }
    .common-margin-167 {
        margin-left: 8px;
        margin-right: 8px;
    }
    .recruiting-wrapper-h2 {
        font-size: 30px;
    }
    .sp-margin-45{
        margin-left: 45px;
        margin-right: 45px;
    }
    .sp-mt-51{
        padding-top: 51px;
    }
    .sp-mb-34 {
        padding-bottom: 34px;
    }
    .sp-pt-72 {
        padding-top: 72px;
    } 
    .sp-pb-40 {
        padding-bottom: 40px;
    }
    .sp-pb-33 {
        padding-bottom: 33px;
    }
    .sp-pb-90 {
        padding-bottom: 90px;
    }
    .margin-horizontal-546 {
        margin-left: 98px;
        margin-right: 98px;
    }
    .flex-content-title {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 32px;
    }
    .management-left-cont {
        padding-right: 0;
    }
    .sp-margin-32 {
        margin-left: 15px;
        margin-right: 15px;
    }
    .image-wrapper {
        padding-top: 40px;
    }
    .sp-mt-40 {
        margin-top: 60px;
    }
    .sp-pb-60 {
        padding-top: 60px;
    }
    .sp-ph-8 {
        margin-left: 8px;
        margin-right: 8px;
    }
    .course-btn-wrapper {
        top: -6%;
        padding: 20px 30px;
    }
    .sp-course-h2 {
        font-size: 20px;
    }
    .recruiting-small-box {
        padding: 104px 40px 67px;
    }
    .navigator-box-list li {
        font-size: 24px;
        line-height: 45px;
    }
    .course-border-left {
        width: 10px;
        height: 134px;
    }
    .course-amount {
        font-size: 28px;
        line-height: 34px;
    }
    .course-price-content {
        padding-left: 17px !important;
    }
    .course-second-left {
        height: 191px;
    }
    .sp-course-amount {
        padding-bottom: 30px;
        padding-top: 15px;
    }
    /* .sp-column-reverse {
        flex-direction: column-reverse;
    } */
    .game-title-text {
        font-size: 30px;
        line-height: 42px;
    }
    .game-title-text {

    padding-right: 32px;
    padding-left: 32px;
    }
    .game-list-wrapper {
        padding-left: 30px;
        padding-right: 30px;
    }
    .sp-mlr-0 {
        margin-left: 0;
        margin-right: 0
    }
    .sp-plr-225 {
        padding-left: 25px;
        padding-right: 25px;
    }
    
    .participation {
        /* padding-top: 50px; */
        margin-top:0
    }
    .sp-top-50 {
        padding-top: 90px;
    }
    .sp-p-0 {
        padding-left: 0;
        padding-right: 0
    }
    .faq-section {
        margin-top: 100px;
    }
    .faqs-qs {
        padding-left: 38px;
        line-height: 34px;
    }
    .bottom-content {
        margin-top: -46px;
    }
    .btn-wrapper-mt-88 {
        margin-top: 61px;
    }
    .team-section {
        padding-bottom: 82px !important;
    }
    .sponsor-content {
       padding: 31px 57px 25px;
    }
    .sponsor-content-wrapper {
        background-color: #EAEAF0;
        padding: 41px 30px 31px;
        border-radius: 20px;
    }
    .faqs-qs-text {
        line-height: 34px;
    }
    .p4 .item h3 {
      margin: 0 0 10px 0;
      font-weight: 700;
      font-size: 15px;
  }
  #teams .section-title {
    margin-bottom: 70px;
  }
}


@media (max-width: 991.98px) {
    .cusom-margin-290 {
        margin-left: 45px;
        margin-right: 45px;
    }
    .top-title {
        font-size: 30px;
        min-width: 388px;
    }
    .top-content {
        padding: 59px 66px 35px;
        margin-top: 85px;
        margin-bottom: 90px;
    }
    .sp-top-course-btn {
        min-width: 528px;
    }
    .common-margin-167 {
        margin-left: 8px;
        margin-right: 8px;
    }
    .recruiting-wrapper-h2 {
        font-size: 30px;
    }
    .sp-margin-45{
        margin-left: 45px;
        margin-right: 45px;
    }
    .sp-mt-51{
        padding-top: 51px;
    }
    .sp-mb-34 {
        padding-bottom: 34px;
    }
    .sp-pt-72 {
        padding-top: 72px;
    } 
    .sp-pb-40 {
        padding-bottom: 40px;
    }
    .sp-pb-33 {
        padding-bottom: 33px;
    }
    .sp-pb-90 {
        padding-bottom: 90px;
    }
    .margin-horizontal-546 {
        margin-left: 98px;
        margin-right: 98px;
    }
    .flex-content-title {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 32px;
    }
    .management-left-cont {
        padding-right: 0;
    }
    .sp-margin-32 {
        margin-left: 15px;
        margin-right: 15px;
    }
    .image-wrapper {
        padding-top: 40px;
    }
    .sp-mt-40 {
        margin-top: 60px;
    }
    .sp-pb-60 {
        padding-top: 60px;
    }
    .sp-ph-8 {
        margin-left: 8px;
        margin-right: 8px;
    }
    .course-btn-wrapper {
        top: -6%;
        padding: 20px 30px;
    }
    .sp-course-h2 {
        font-size: 20px;
    }
    .recruiting-small-box {
        padding: 104px 40px 67px;
    }
    .navigator-box-list li {
        font-size: 24px;
        line-height: 45px;
    }
    .course-border-left {
        width: 10px;
        height: 134px;
    }
    .course-amount {
        font-size: 28px;
        line-height: 34px;
    }
    .course-price-content {
        padding-left: 17px !important;
    }
    .course-second-left {
        height: 191px;
    }
    .sp-course-amount {
        padding-bottom: 30px;
        padding-top: 15px;
    }
    /* .sp-column-reverse {
        flex-direction: column-reverse;
    } */
    .game-title-text {
        font-size: 30px;
        line-height: 42px;
    }
    .game-title-text {

    padding-right: 32px;
    padding-left: 32px;
    }
    .game-list-wrapper {
        padding-left: 30px;
        padding-right: 30px;
    }
    .sp-mlr-0 {
        margin-left: 0;
        margin-right: 0
    }
    .sp-plr-225 {
        padding-left: 25px;
        padding-right: 25px;
    }
    
    .participation {
        /* padding-top: 50px; */
        margin-top:0
    }
    .sp-top-50 {
        padding-top: 90px;
    }
    .sp-p-0 {
        padding-left: 0;
        padding-right: 0
    }
    .faq-section {
        margin-top: 100px;
    }
    .faqs-qs {
        padding-left: 38px;
        line-height: 34px;
    }
    .bottom-content {
        margin-top: -46px;
    }
    .btn-wrapper-mt-88 {
        margin-top: 61px;
    }
    .team-section {
        padding-bottom: 82px !important;
    }
    .sponsor-content {
       padding: 31px 57px 25px;
    }
    .sponsor-content-wrapper {
        background-color: #EAEAF0;
        padding: 41px 30px 31px;
        border-radius: 20px;
    }
    .faqs-qs-text {
        line-height: 34px;
    }
    .participation::before {
        left: 28%
    }
    .participation::after {
        right: 28%
    }
}

@media (max-width: 767.98px) {
    .pcview {
      display: none;
    }
    .spview {
      display: inherit;
    }
    .game-left-text {
        padding-bottom:0;
        font-size: 22px;
    }
    .custom-btn-position {
       bottom: -37px;
    }
    section.course-info-sec.cntc {
        margin: 70px 0 85px 0;
    }
    .participation::before {
        left: 28%
    }
    .participation::after {
        right: 28%
    }
    .cusom-margin-290 {
        margin-left: 45px;
        margin-right: 45px;
    }
    .top-title {
        font-size: 30px;
        min-width: 388px;
    }
    .top-content {
        padding: 35px 35px 50px;
        margin-top: 0;
        margin-bottom: 0;
        position: 'relative';
    }
    .sp-top-course-btn {
        min-width: 528px;
    }
    .common-margin-167 {
        margin-left: 8px;
        margin-right: 8px;
    }
    .recruiting-wrapper-h2 {
        font-size: 30px;
    }
    .sp-margin-45{
        margin-left: 45px;
        margin-right: 45px;
    }
    .sp-mt-51{
        padding-top: 51px;
    }
    .sp-mb-34 {
        padding-bottom: 34px;
    }
    .sp-pt-72 {
        padding-top: 72px;
    } 
    .sp-pb-40 {
        padding-bottom: 40px;
    }
    
    .sp-pb-33 {
        padding-bottom: 33px;
    }
    .sp-pb-90 {
        padding-bottom: 90px;
    }
    .margin-horizontal-546 {
        margin-left: 98px;
        margin-right: 98px;
    }
    .flex-content-title {
        font-size: 34px;
    }
    .management-left-cont {
        padding-right: 0;
    }
    .sp-margin-32 {
        margin-left: 32px;
        margin-right: 32px;
    }
    .image-wrapper {
        padding-top: 40px;
    }
    .management-right-cont {
        padding-left: 0;
        padding-right: 0;
    }
    .sp-mt-40 {
        margin-top: 60px;
    }
    .sp-pb-60 {
        padding-top: 60px;
    }
    .sp-ph-8 {
        margin-left: 8px;
        margin-right: 8px;
    }
    .course-btn-wrapper {
        top: -6%;
        padding: 20px 30px;
    }
    .sp-course-h2 {
        font-size: 20px;
    }
    .recruiting-small-box {
        padding: 104px 40px 67px;
    }
    .navigator-box-list li {
        font-size: 24px;
        line-height: 45px;
    }
    .course-border-left {
        width: 10px;
        height: 134px;
    }
    .course-amount {
        font-size: 28px;
        line-height: 34px;
    }
    .course-price-content {
        padding-left: 17px !important;
    }
    .course-second-left {
        height: 191px;
    }
    .sp-course-amount {
        padding-bottom: 30px;
        padding-top: 15px;
    }
    .sp-column-reverse {
        flex-direction: column-reverse;
    }
    .game-title-text {
        font-size: 30px;
        line-height: 42px;
    }
    .game-title-text {

    padding-right: 32px;
    padding-left: 32px;
    }
    .game-list-wrapper {
        padding-left: 30px;
        padding-right: 30px;
    }
    .sp-mlr-0 {
        margin-left: 0;
        margin-right: 0
    }
    .sp-plr-225 {
        padding-left: 25px;
        padding-right: 25px;
    }
    
    .participation {
        /* padding-top: 50px; */
        margin-top:0
    }
    .sp-top-50 {
        padding-top: 90px;
    }
    .sp-p-0 {
        padding-left: 0;
        padding-right: 0
    }
    .faq-section {
        margin-top: 100px;
    }
    .faqs-qs {
        padding-left: 38px;
        line-height: 34px;
    }
    .bottom-content {
        margin-top: -46px;
    }
    .btn-wrapper-mt-88 {
        margin-top: 61px;
    }
    .team-section {
        padding-bottom: 82px !important;
    }
    .sponsor-content {
       padding: 31px 57px 25px;
    }
    .sponsor-content-wrapper {
        background-color: #EAEAF0;
        padding: 41px 30px 31px;
        border-radius: 20px;
    }
    .faqs-qs-text {
        line-height: 34px;
    }
    .top-title{
      line-height: 40px;
    }
    .section-title-wrapper{
      height: 70px;
    }
    .mannagement-p-right {
      font-size: 12px;
      font-weight: 600;
      line-height: 18px;
  }
  .course-h2 {
    font-size: 16px;
    font-weight: 700;
    font-family: "Hiragino Kaku Gothic Std";
}
.ct-60 {
  padding-top: 25px;
}
.teoan-extra-title h2 {
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
}
#teoan .section-title h2 {
  font-size: 15px;
  padding: 34px 0px;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-bottom:0px!important;
}
.section-title{
  height: 60px;
}
.mannagement-p{
  font-size: 10px;
    font-weight: 600;
    line-height: 20px;
}
.mannagement-h2{
  font-size: 12px;
  font-weight: 800;
  line-height: 20px;
}
.custom-padding-vertical {
  padding-top: 66px;
  padding-bottom: 25px;
}
.recruiting-small-box .small-box-text {
  color: #0b0b0b;
  font-size: 10px;
  font-weight: 600;
  line-height: 20px;
}
ol, ul {
  padding-left: 10px;
}
.mt-5 {
  margin-top: 25px!important;
}
.recruiting-small-box {
  position: relative;
  padding: 100px 156px 88px;
  /* padding: 100px 186px 88px; */
  margin-top: 53px;
  margin-bottom: 10px;
  border: 4px solid #242a58;
  border-radius: 20px;
}
.game-row {
  border-bottom: 1px solid #242A58;
  padding-bottom: 15px;
  padding-top: 15px;
}
.game-right-text {
  font-size: 12px;
  color: #0F2245;
  font-weight: 500;
}
.table-left-text {
  font-size: 12px;
  color: #0F2245;
  font-weight: 700;
  /* width: 214px; */
}
.col-3 {
  flex: 0 0 auto;
  width: 50%;
}
.content-20 {
  font-size: 10px;
}
.participation-title {
  font-size: 12px;
  font-weight: 700;
}
.game-list-wrapper {
  padding-top: 25px;
}
#faqs .section-title h2 {
  font-size: 15px;
  padding: 34px 0px;
  font-weight: 700;
  margin-bottom: 0px;
}
#faqs .section-title {
  margin-bottom: 30px;
}
#teams .section-title h2 {
  font-size: 15px;
  color: #ffffff;
  padding: 34px 0px;
  font-weight: 700;
  margin-bottom: 0px;
}
.faqs-qs-text {
  color: #000b7b;
  font-size: 10px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 19px;
  /* padding-left: 48px; */
}
.faqs-ans-text {
  color: #0d0d0d;
  font-size: 10px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 10px;
  /* padding-left: 48px; */
}
.faqs-qs-text::before {
  content: url(../_img/ques.png);
  position: absolute;
  z-index: 0;
  left: -2.5rem;
  top: 0px;
}
#faqs {
  padding-bottom: 50px;
}
#teams .teams-content p {
  font-size: 10px;
  line-height: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}
.sponsor-text {
  font-size: 12px;
  font-weight: 800;
}
.sponsor-text-single {
  font-size: 10px;
  font-weight: 600;
}



}
@media (max-width: 575.98px) { 
    .cusom-margin-290 {
        margin-left: 15px;
        margin-right: 15px;
    }
    .custom-btn-container {
        padding: 20px 30px !important;
    }
    .custom-btn-text {
        font-size: 14px;
    }
    .top-title {
        font-size: 24px;
        min-width: 253px;
        position: absolute;
        top: -9%;
    }
    .sp-top-course-btn {
        min-width: 528px;
    }
    .common-margin-167 {
        margin-left: 8px;
        margin-right: 8px;
    }
    .recruiting-wrapper-h2 {
        font-size: 15px;
    }
    .sp-margin-45{
        margin-left: 20px;
        margin-right: 20px;
    }
    .sp-mt-51{
        padding-top: 25px;
    }
    .sp-mb-34 {
        padding-bottom: 34px;
    }
    .sp-pt-72 {
        padding-top: 25px;
    } 
    .sp-pb-40 {
        padding-bottom: 20px;
    }
   
    .sp-pb-33 {
        padding-bottom: 0px;
    }
    .sp-pb-90 {
        padding-bottom: 90px;
    }
    .margin-horizontal-546 {
        margin-left: 98px;
        margin-right: 98px;
    }
    .flex-content-title {
        font-size: 17px;
    }
    .management-left-cont {
        padding-right: 0;
        padding-left:0
    }
    .sp-margin-32 {
        margin-left: 32px;
        margin-right: 32px;
    }
    .image-wrapper {
        padding-top: 40px;
    }
    .management-right-cont {
        padding-left: 0;
        padding-right: 0;
    }
    .sp-mt-40 {
        margin-top: 25px;
    }
    .sp-pb-60 {
        padding-top: 25px;
    }
    .sp-ph-8 {
        margin-left: 8px;
        margin-right: 8px;
    }
   
      .course-btn-wrapper {
        top: -3%;
        padding: 15px 15px;
    
    }
    .sp-course-h2 {
        font-size: 15px;
    }
    .recruiting-small-box {
        padding: 50px 40px 40px;
    }
    .navigator-box-list li {
        font-size: 12px;
        line-height: 20px;
    }
    .course-border-left {
        width: 10px;
        height: 134px;
    }
    .course-amount {
        font-size: 14px;
        line-height: 20px;
    }
    .course-price-content {
        padding-left: 17px !important;
    }
    .course-second-left {
        height: 191px;
    }
    .sp-course-amount {
        padding-bottom: 5px;
        padding-top: 0px;
    }
    .sp-column-reverse {
        flex-direction: column-reverse;
    }
    .game-title-text {
        font-size: 15px;
        line-height: 20px;
    }
    .game-title-text {

    padding-right: 32px;
    padding-left: 32px;
    padding-top: 30px;
    }
    .game-list-wrapper {
        padding-left: 30px;
        padding-right: 30px;
    }
    .sp-mlr-0 {
        margin-left: 0;
        margin-right: 0
    }
    .sp-plr-225 {
        padding-left: 25px;
        padding-right: 25px;
    }
    .participation {
        /* padding-top: 50px; */
        margin-top:0
    }
    .sp-top-50 {
        padding-top: 25px;
    }
    .sp-p-0 {
        padding-left: 0;
        padding-right: 0
    }
    .faq-section {
        margin-top: 50px;
    }
    .faqs-qs {
        padding-left: 38px;
        line-height: 34px;
    }
    .bottom-content {
        margin-top: -46px;
    }
    .btn-wrapper-mt-88 {
        margin-top: 25px;
    }
    .team-section {
        padding-bottom: 82px !important;
    }
    .sponsor-content {
       padding: 31px 57px 25px;
    }
    .teoan-extra-title::before {
        left: -72px;
        height: 44px;
        width: 82px;
        bottom: 24px;
    }
    .teoan-extra-title::after {
        right: -109px;
        height: 30px;
        width: 82px;
        bottom: 24px;
    }
    .participation::before {
        left: 28%
    }
    .participation::after {
        right: 20% ;
        padding-top: 30px;
    }
    
}
@media (max-width: 475.98px) {
    .top-title {
        font-size: 15px;
        min-width: 200px;
        position: absolute;
        top: -9%;
    } 
    .game-left-text {
        font-size: 12px;
    }
    .custom-btn-position {
        bottom: -28px;
    }
    .custom-btn-position {
        font-size: 20px;
    }
}

/* Add past site css */
.Hv {
  -moz-transition-property: all;
  -moz-transition-duration: 0.5s;
  -moz-transition-timing-function: ease;
  -moz-transition-delay: 0.1s;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
  -webkit-transition-delay: 0.1s;
  -o-transition-property: all;
  -o-transition-duration: 0.5s;
  -o-transition-timing-function: ease;
  -o-transition-delay: 0.1s;
  opacity: 1;
}
.Hv:hover {
  -moz-transition-property: all;
  -moz-transition-duration: 0.5s;
  -moz-transition-timing-function: ease;
  -moz-transition-delay: 0.1s;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
  -webkit-transition-delay: 0.1s;
  -o-transition-property: all;
  -o-transition-duration: 0.5s;
  -o-transition-timing-function: ease;
  -o-transition-delay: 0.1s;
   opacity: 0.7;
 }
 .align-items-center {
  align-items: center;
 }

.single {width: 100%;}
.single .headLine{width: 100%;background:#242A58;height:170px;box-sizing: border-box;display: table}
.single .headLine h2 {display: table-cell;vertical-align: middle;text-align: center;height: 170px;color: #fff;font-size:30px;box-sizing: border-box;padding: 0 2%;}
.single .headLine a {color: #fff;}
.single .Cnt {width: 100%;padding:70px 0 0;}
.single .Cnt .inner {max-width: 1280px;width: 96%;margin: 0 auto;font-size: 16px;}
.single .Cnt .inner p {margin-bottom: 30px;}
.single .Cnt .singleCnt {width: 96%;max-width: 1000px;margin: 0 auto;}
.single .Cnt .singleCnt .date {margin-bottom: 4px;font-weight: bold;}
.single .Cnt .singleCnt figure.wp-block-image {margin: 0 auto 50px;max-width: 600px;width: 90%}
.single .Cnt .singleCnt figure.wp-block-image figcaption {text-align: center;font-size: 13px;font-weight: bold;}
.single .Cnt .singleCnt h1 {font-size: 24px;padding-bottom: 4px;margin-bottom: 10px;border-bottom: 1px solid #707070;}
.single .Cnt .singleCnt h2 {font-size: 20px;margin-bottom: 10px;}
.single .Cnt .singleCnt h3 {font-size: 16px;margin-bottom: 10px;}
.single .Cnt .singleCnt h4 {font-size: 16px;margin-bottom: 10px;}
.single .Cnt .singleCnt h2,.single .Cnt .singleCnt h3,.single .Cnt .singleCnt h4 {border-left: 4px solid #242A58;padding-left: 6px;margin-top: 30px;}
.single .Cnt .singleCnt p {margin-bottom: 30px;}
.single .Cnt .singleCnt a {color: #1d2c56;font-weight: bold;text-decoration: underline;}
.single .Cnt .singleCnt .wp-block-table td,
.single .Cnt .singleCnt .wp-block-table th {padding: 0.5em;border:1px solid;}
.single .Cnt .singleCnt .wp-block-table.is-style-stripes td,
.single .Cnt .singleCnt .wp-block-table.is-style-stripes th {border-color: transparent;}
.single .Cnt .singleCnt .wp-block-table figcaption {color: #555;font-size: 13px;text-align: center;}
.single .Cnt .singleCnt ol,
.single .Cnt .singleCnt ul {position: relative;overflow-wrap: break-word;margin: revert;padding: revert;list-style-type: revert;box-sizing: revert;}
.single .reserveBox {margin: 0 auto 80px;}
.mw_wp_form_confirm .input-block {padding-top:0!important;}
.mw_wp_form_confirm .flex-box {display: flex;justify-content: center;}
.flex-box > input {margin: 0 30px;}
@media only screen and (min-width:748px) and (max-width:1280px) {
.single .headLine {height: 160px;}
.single .headLine h2 {height: 160px;font-size:28px;}
.single .Cnt {padding:60px 0;}
}
@media screen and (max-width: 747px) {
.single .headLine {height: 120px;}
.single .headLine h2 {height: 120px;font-size:24px;}
.single .Cnt {padding:0;}
.single .Cnt .inner {padding: 40px 0 0;}
.single .Cnt figure.wp-block-image {margin: 0 auto 50px;max-width: 500px;width: 90%}
.mw_wp_form_confirm .input-block {padding-top:1rem!important;}
.mw_wp_form_confirm .input-block ~ .input-block {padding-top:0!important;}
.mw_wp_form_confirm .flex-box {flex-direction: column;}
.flex-box > input {width: 90%;margin: 20px auto;}
}



/*========================================
NAVI
=======================================*/
#educatorListHead h1 {text-align: center;}
#educatorListHead .areaTxt {margin-bottom: 20px;}
.loading {width: 270px; margin: 20px auto; text-align: center;}
.loading img {width: 100%;}

/* linkSalon */
.navigator {}
.navigator .navigatorInfo{margin:0 auto 2rem; width: 100%; padding: 2%;border-radius: 6px; color: #102245;position: relative;overflow: hidden;background: #fff;-webkit-transition: 0.3s ease;transition: 0.3s ease;;}
.navigator .navigatorInfo:hover {webkit-box-shadow: 0px 4px 4px 0px rgba(200,200,200,.5);-moz-box-shadow: 0px 4px 4px 0px rgba(200,200,200,.5);box-shadow: 0px 4px 4px 0px rgba(200,200,200,.5);-webkit-transition: 0.3s ease; transition: 0.3s ease;}
.navigator .navigatorInfo a {color:#292929;}
.navigator .navigatorInfo h3 {font-size: 18px;line-height: 1.4;margin-bottom: 1.5rem;font-weight: normal;}
.navigator .heading {position: relative;margin-bottom: 0px;}
.navigator .heading .navigatorPhoto {float: left; width: 22%; overflow: hidden;line-height: 0;border-radius: 6px;box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.5);max-height: 280px;}
.navigator .heading .navigatorName { float: right; width: 73%;overflow: hidden}
.navigator .heading .navigatorPhoto img {width: 100%; height: auto;display: inline-block; line-height: 0;}
.navigator .navigatorInfo .salonFlag {overflow: hidden; font-weight: bold;}
.navigator .navigatorInfo .type { float: left; text-align: center;font-size: 10px; background: #C8C8C8; color:#2B2B2B; padding: 1px 2px; border-radius: 2px; margin: 0 4px 4px 0;border: 1px solid #CCCCCC;}
.navigator .heading .navigatorName .name {display: block;font-family: 'Noto Serif JP', serif;font-weight: 600;}
.navigator .heading .navigatorName .engName {font-family: 'Noto Serif JP', serif;color: #000b7b; font-size: 26px; font-weight: 700;}
.navigator .heading .navigatorName dl{overflow: hidden;position: relative;margin-bottom: 2px; font-size: 13px;width: 100%; padding:5px 0 5px 0;}
.navigator .heading .navigatorName dl dt{ float: left; width: 20%;}
.navigator .heading .navigatorName dl dt img{width: 20px;position: absolute;top: 3px;}
.navigator .heading .navigatorName dl dt span {padding-left: 25px;font-family: 'Noto Serif JP', serif;}
.navigator .heading .navigatorName dl dd{ float: right; width: 78%;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 5;overflow: hidden;}
.navigator .heading .navigatorName dl dd span, .imp {font-size: 140%; font-weight: bold; color: #FB3D40;line-height: 1;}

.navigator .heading .navigatorName dl dd .snsBtn {margin-right: 0.5rem;display: block;border-radius: 6px;padding: 3px 6px;margin-bottom: 6px;}
.navigator .heading .navigatorName dl dd .snsBtn:last-child {margin-right: 0;}
.navigator .heading .navigatorName dl dd .snsBtn:hover {opacity: 0.7;}
.navigator .heading .navigatorName dl dd .btnLink {background: #f7f7f7;}
.navigator .heading .navigatorName dl dd .btnTw {background: #1DA1F2;color: #fff;}
.navigator .heading .navigatorName dl dd .btnFb {background: #1877f2;color: #fff;}
.navigator .heading .navigatorName dl dd .btnIg {background: #CF2E92;color: #fff;}
.navigator .heading .navigatorName dl dd .btnTt {background: #000000;color: #fff;}
.navigator .heading .navigatorName dl dd .btnNote {background: #2DB596;color: #fff;}
.navigator .heading .navigatorName dl dd .btnLine {background: #00B900;color: #fff;}
.navigator .heading .navigatorName dl dd .btnSns {background: #39475D;color: #fff;}

@media (max-width: 991.98px) {
  .navigator .heading .navigatorName dl dt {width: 100%;margin-bottom: 0.5rem;}
  .navigator .heading .navigatorName dl dd {width: 100%;}
  .navigator .heading .navigatorName dl {margin-bottom: 10px;}
}

@media (max-width: 767.98px) {
  .navigator .heading .navigatorName .engName {font-size: 22px}
  .navigator .heading .navigatorName .name {font-size: 14px;}
  .navigator .heading .navigatorName dl dd {-webkit-line-clamp: 10;}
}

/*========================================
PAGER
=======================================*/
.pager {overflow: hidden; margin-top: 60px; margin-bottom: 60px;}
.pager ul {list-style: none; position: relative; left: 50%; float: left;}
.pager ul li {margin: 0 1px; position: relative; left: -50%; float: left;}
.pager ul li span,
.pager ul li a {display: block; font-size: 16px; padding: 0.6em 1em; border-radius: 3px;}
.pager ul li a {background: #EEE; color: #000; text-decoration: none;-moz-transition-property:all;-moz-transition-duration: 0.5s;-moz-transition-timing-function: ease;-moz-transition-delay: 0.1s;-webkit-transition-property:all;-webkit-transition-duration: 0.5s;-webkit-transition-timing-function: ease;-webkit-transition-delay: 0.1s;-o-transition-property:all;-o-transition-duration: 0.5s;-o-transition-timing-function: ease;-o-transition-delay: 0.1s;}
.pager ul li a:hover {background: #333; color: #FFF;-moz-transition-property:all;-moz-transition-duration: 0.5s;-moz-transition-timing-function: ease;-moz-transition-delay: 0.1s;-webkit-transition-property:all;-webkit-transition-duration: 0.5s;-webkit-transition-timing-function: ease;-webkit-transition-delay: 0.1s;-o-transition-property:all;-o-transition-duration: 0.5s;-o-transition-timing-function: ease;-o-transition-delay: 0.1s;}
.pager ul li.current span{background: #a7a7a7;}


.p6.input-form {
  padding-top: 30px;
}


table.myPageProf { background-color: #fff; border: 1px solid #ddd; border-collapse: separate;border-spacing: 0;width: 100%; margin-bottom: 15px;}
table.myPageProf tr th {background: #636787;color: #fff;border: 1px solid #ddd; padding: 10px; vertical-align: middle; text-align: left;}
table.myPageProf tr td {border: 1px solid #ddd; padding: 10px; vertical-align: middle;}
table.myPageProf img {vertical-align: middle;}
table.myPageProf tr td ul li{border-bottom: 1px dashed #ccc; padding-bottom: 5px; margin-bottom: 5px;}
table.myPageProf tr td ul li:last-child{border-bottom: none;padding-bottom: 0;margin-bottom: 0; }
table.myPageProf tr td ul li .fc-pink a{color: #f2959d;}
table.myPageProf tr td .oneBtn .colorBlueBtn{margin: 0 auto;}
table.myPageProf tr td .oneBtn .colorRedBtn{margin: 0 auto;}

table.myPageProf th, table.gameProf th {width: 36%;}
table.myPageProf td, table.gameProf td {width: 64%;}
table.myPageProf td span, table.gameProf td span {font-weight: bold; color: #1C94BF; font-size: 120%;}
table.myPageProf td span.unit, table.gameProf td span.unit {font-weight: normal; color:#2E2E2E; font-size: 100%; padding-left: 10px;}
table.myPageProf td input[type="text"], table.myPageProf td input[type="email"], .myPageProf td input[type="time"], .myPageProf td input[type="date"], .myPageProf td input[type="tel"], .myPageProf td input[type="url"], .myPageProf td input[type="password"], .myPageProf td textarea {margin: 0;padding:2%;font-family: "游ゴシック体","Yu Gothic",YuGothic,"ヒラギノ角ゴシック Pro","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;}
