body {
    margin: 0;
    padding: 0;
    font-family: "ヒラギノ角ゴ proN";
    width: 100%;
    height: auto;
    font-size: 16px;
    min-height: 100vh;
    position: relative;
}

.container {
    margin-top: 5rem;
    margin-bottom: 13rem;
}

li {
    list-style: none;
}

.btn {
    text-align: center;
}

.btn:hover {
    cursor: pointer;
}

.hidden {
    display: none !important;
}

.dp-flex {
    display: flex;
    display: -webkit-flex;
}

a {
    text-decoration: none;
}


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

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

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

/*文字*/
.text-blue {
    color: #67A7CC!important;
}

.text-black {
    color: #152129 !important;
}

.text-red {
    color: #E17979;
}

.text-gray {
    color: #C6C8C9;
}

.text-orange {
    color: #EEAE7F;
}

.fw-bold {
    font-weight: bold;
}

.fs-1 {
    font-size: 1vw;
}

.jp-word {
    overflow-wrap: break-word;
    word-break: keep-all;
}

.en-word {
    word-wrap: break-word;
}

/*幅*/
.w-10 {
    width: 10% !important;
}

.w-17 {
    width: 17% !important;
}

.w-30 {
    width: 30% !important;
}

.w-70 {
    width: 70% !important;
}

.w-80 {
    width: 80% !important;
}

.w-97 {
    width: 97% !important;
}

.w-auto {
    width: auto !important;
}

/*高さ*/
.h-2rem {
    height: 2rem;
}

.h-6rem {
    height: 6rem;
}

/*margin*/
.m-0 {
    margin: 0;
}

.mt-0 {
    margin-top: 0; !important;
}

.mt-1 {
    margin-top: 1%; !important;
}

.mt-5 {
    margin-top: 5% !important;
}

.mt-10 {
    margin-top: 10% !important;
}

.mr-0 {
    margin-right: 0 !important;
}

.mr-2 {
    margin-right: 2% !important;
}

.mr-5 {
    margin-right: 5% !important;
}

.mr-10 {
    margin-right: 10%;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-5 {
    margin-bottom: 5%;
}

.mb-10 {
    margin-bottom: 10%;
}

.ml-0 {
    margin-left: 0 !important;
}

.ml-2 {
    margin-left: 2% !important;
}

.ml-5 {
    margin-left: 5% !important;
}

.mlr-auto {
    margin: 0 auto;
}

/*padding*/
.pl-0 {
    padding-left: 0 !important;
}


.pl-3 {
    padding-left: 3% !important;
}

.pb-5 {
    padding-bottom: 5% !important;
}

.pt-2 {
    padding-top: 2%;
}

/*背景グレー*/
.gray-bg {
    background-color: #f5f8fa;
}

/*背景白*/
.white-bg {
    background-color: #ffffff;
}

/*下線*/
.bb-gray {
    border-bottom: solid 1px #E8E6F8;
}

/*submit ボタン*/
.btn-primary {
    background-color: #67A7CC;
    color: #ffffff;
    width: 25%;
    height: 3em;
    border-radius: 0.3rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    font-size: 1vw;
    margin: 0 auto;
}

.btn-primary:hover {
    cursor: pointer;
    background-color: #5E85A0;
}

/*cancel ボタン*/
.btn-cancel {
    background-color: #ffffff;
    color: #67A7CC;
    width: 25%;
    height: 3em;
    border-radius: 0.3rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    font-size: 1vw;
    margin: 0 auto;
}

.btn-cancel:hover {
    cursor: pointer;
}

.open-create {
    width: 10rem;
}

/*新規登録 ボタン*/
.btn-new {
    background-color: #67A7CC;
    color: #ffffff;
    width: 100%;
    height: 3em;
    border-radius: 0.3rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    font-size: 1vw;
    margin: 0 auto;
}

.btn-new:hover {
    cursor: pointer;
    background-color: #5E85A0;
}

/*アカウント作成 ボタン*/
#create-submit {
    width: auto;
}

/*login ボタン*/
.btn-login {
    background-color: #ffffff;
    color: #67A7CC;
    width: 100%;
    height: 3em;
    border-radius: 0.3rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    font-size: 1vw;
    margin: 0 auto;
}

.btn-login:hover {
    cursor: pointer;
}

/*画像削除ボタン*/
#delete-image-btn {
    position: absolute;
    right: 8rem;
}

#delete-image-btn button {
    background-color: transparent;
    border: none;
}

/*ダイアログ×ボタン*/
.close-dialog-btn {
    border: none;
    background-color: #ffffff;
}

/*チェックボックス*/
.checkbox {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
}

.checkbox input {
    display: none;
}

.checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid #C1D2DE;
    box-sizing: border-box;
    border-radius: 4px;
}

.checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 4px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: 2px solid #FFFFFF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox input:checked + .checkmark {
    background-color: #67A7CC;
    border: 2px solid #67A7CC;
}

.checkbox input:checked + .checkmark:after {
    display: block;
}

/*ラジオボタン*/
.radio-box {
    display: flex;
    width: 70%;
}

.radio-btn {
    display: none;
}

.radio-box label {
    cursor: pointer;
    margin-right: 10%;
    padding-left: 9%;
    position: relative;
    white-space: nowrap;
}

.radio-box label::before,
.radio-box label::after {
    content: "";
    display: block;
    border-radius: 50%;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
}

.radio-box label::before {
    background-color: #ffffff;
    border: 1px solid #67A7CC;
    height: 20px;
    width: 20px;
    left: 5px;
}

.radio-box label::after {
    background-color: #67A7CC;
    opacity: 0;
    height: 10px;
    width: 10px;
    left: 11px;
}

.radio-btn:checked + .radio-label::after {
    opacity: 1;
}

/*日付フォーム*/
.date-form {
    margin-left: 5%;
    width: 30%;
    border: solid 1px #C1D2DE;
    font-size: 1.2vw;
    padding: 2%;
    background-color: #ffffff;
}

/*プロフィール画像*/
#profile-img, #user-img {
    width: 8rem;
    height: 8rem;
}

.circle-img, #user-img {
    object-fit:cover;
    border-radius: 50%;
}

/*ヘッダー*/
header {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #ffffff;
    width: 100%;
    height: 5rem;
    display:flex;
    align-items: center;
    border: solid 1px #C1D2DE;
    z-index: 1;
}

#header-contents {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
}

#head-title {
    margin: 0 0 0 5%;
    width: 76%;
}

#login-head-title {
    color: #ffffff;
    margin: 0 0 0 5%;
    width: 100%;
}

.header .nav-left {
    width: 65%;
}

.header .nav-left a {
    color: #67A7CC;
}

.header .nav-left ul {
    font-size: 1vw;
    display: flex;
    margin: 0 5%;
    padding: 0;
}

.header .nav-left li {
    margin: 0 1%;
    padding: 0;
}

.header .nav-right {
    margin-right: 2%;
    color: #67A7CC;
    position: absolute;
    right: 2rem;
    width: auto;
}

.header .nav-right ul {
    font-size: 1.5vw;
    display: flex;
    padding: 0;
}

.header .nav-right li {
    white-space: nowrap;
}

.login-li {
    margin-right: 2rem;
}

#sp-myicon {
    display: none;
}

#pc-myicon {
    display: flex;
}

#pc-myicon:hover {
    background-color: #E1EDF5;
}

.header .nav-blue {
    background-color: #5E85A0;
}

.login-head-right {
    display: flex;
    align-items: center;
    border: solid 1px #67A7CC;
    font-size: 1vw;
    padding: 3% 10%;
    border-radius: 0.3rem;
}

.header #profile-image {
    width: 2rem;
    height: 2rem;
}

.header .profile-image-div {
    margin-right: 2%;
}

.notification-li {
    position: relative;
    margin-right: 1rem;
}

.unread-count-box {
    color: #ffff;
    position: absolute;
    font-size: 0.7rem;
    background-color: #E17979;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    left: 0.7rem;
    top: 0.3rem;
}

#notification-btn {
    width: 2rem;
}

/*フッター*/
.footer {
    border: solid 1px #C1D2DE;
    bottom: 0;
    width: 100%;
    background-color: #ffffff;
    height: 13rem;
    position: absolute;
}

.footer-top {
    width: 65%;
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
}

.footer .sns-box {
    margin-top: 3%;
}

.footer .about-box, .footer .support-box {
    margin-top: 2%;
}

.footer-top h4 {
    margin: 0;
}

.footer-top ul {
    padding-left: 5%;
    white-space: nowrap;
}

.footer-top li a {
    color:  #67A7CC;
}

.footer-sns img {
    width: 20%;
}

.footer .copy-right {
    text-align: center;
    color: #152129;
    margin-bottom: 1%;
}

.common {
    margin-top: 5rem;
    padding-bottom: 8rem;
}
.common-box {
    text-align: center;
    padding: 3%;
    width: 80%;
    margin: 7rem auto 13rem auto;
}

/*top*/
.top-header {
    background-color: #67A7CC !important;
}

.top-header .nav-left a {
    color: #ffffff !important;
}

.top-header .btn-login {
    background-color: #67A7CC !important;
    color: #ffffff !important;
}

.top-header .btn-new {
    border: solid 1px #ffffff;
}

.top-header .btn-new:hover {
    background-color: #67A7CC;
}

.top-box .content-top {
    width: 100%;
    background-image: url("../../images/Customer/top.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    padding: 5% 0;
}

.top-box .content-top-div {
    padding: 3%;
    width: 35%;
    margin: 0 auto;
    text-align: center;
    background-color: rgba(255,255,255,0.9);
}

.logo-l {
    width: 40%;
}

.top-box .content-middle {
    background-color: #F5F8FA;
    text-align: center;
    margin-top: 0;
    padding: 4%;
}


.top-box .content-bottom {
    text-align: center;
    margin-top: 0;
    padding: 8%;
}

.top-box .content-middle div, .top-box .content-bottom div {
    width: 70%;
    margin: 0 auto;
}

.video-box {
    background-color: #ffffff;
    height: 25rem;
    border-radius: 1rem;
    margin-top: 2%;
    display: flex;
    align-items: center;
}

#top-gif {
    width: 88%;
    margin: 0 auto;
}

/*ダイアログ*/
#loginDialog, #createDialog, #passwordForgetDialog {
    width: 50%;
    border: none;
}

#passwordForgetCompleteDialog {
    width: 25%;
    border: none;
}

.login-form, .create-form {
    width: 80%;
    margin: 0 auto;
}

#forget-password {
    font-size: 0.8vw;
}

.login-form .password-eye, .create-form .password-eye {
    right: 5% !important;
}

.image-li {
    text-align: center;
    position: relative;
}

.input-image {
    display: none;
}

.image-label {
    cursor: pointer;
}

.confirm-password {
    display: flex;
    justify-content: space-between;
}

.step-img {
    width: 80%;
    height: auto;
}

.interest-box, .purpose-box, .study-time-box, .confirm-interest-box, .confirm-purpose-box, .confirm-study-time-box {
    margin: 8% 0;
}

.interest-checkbox {
    display: none;
}

.interest-label {
    border: 1px solid #67A7CC;
    border-radius: 0.3rem;
    color: #67A7CC;
    padding: 2% 3%;
    display: inline-block;
    margin: 1%;
}

.interest-label:hover {
    background-color: #F1F6F9;
    cursor: pointer;
}

.interest-checkbox:checked + .interest-label {
    background: #67A7CC;
    color: #ffffff;
}

.weekday-box {
    display: flex;
}

.time-box select{
    margin-left: 0 !important;
}

.confirm-interest-label {
    background-color: #F1F6F9;
    border-radius: 0.3rem;
    color: #ACC9DE;
    padding: 2% 3%;
    display: inline-block;
    margin: 1%;
}

.confirm-purpose, .confirm-weekday-box, .confirm-weekday {
    display: flex;
    align-items: center;
    margin-bottom: 1%;
}

.confirm-weekday {
    margin-right: 3%;
}

/*サイドバー*/
#sidebar {
    background-color: #ffffff;
    width: 15%;
    position: absolute;
    box-shadow: 0 3px 5px 0 rgba(242, 243, 248, 1);
    right: 3%;
    top: 100%;
}

#sidebar ul {
    padding-left: 1rem;
}

#sidebar li {
    padding: 0.5rem 0;
}

#sidebar li a {
    color: #152129;
    text-decoration: none;
}

/* 通知リスト */
#notification-list-box {
    background-color: #ffffff;
    width: 19%;
    position: absolute;
    box-shadow: 0 3px 5px 0 rgba(242, 243, 248, 1);
    right: 3%;
    top: 100%;
}

#notification-list-box ul {
    padding-left: 1rem;
}

#notification-list-box li {
    padding: 0.5rem 0;
}

#notification-list-box li a {
    color: #152129;
    text-decoration: none;
}


/*入力フォーム*/
.form-box {
    background-color: #ffffff;
    width: 35%;
    margin: 10% auto;
    padding: 1% 0;
}

.form-contents {
    width: 75%;
    margin: 0 auto;
}

.form-contents h2 {
    margin-top: 5%;
    color: #152129;
}

.form-contents ul {
    padding: 0;
}

.form-li {
    margin: 5% 0;
}

.form-li .label {
    color: #9D99AC;
    font-size: 0.8vw;
}

.info-text, .border-gray {
    border-bottom: 1px solid #E8E6F8;
    color: #212121;
}

.select-form {
    width: 40%;
    background-color: #ffffff;
    border: solid 1px #C1D2DE;
    height: 3rem;
    appearance: none;
    padding-left: 2%;
    color: #152129;
    margin-left: 12%;
    border-radius: 0;
    font-size: 1vw;
}

/*入力フォーム(青)*/
.input-text-blue {
    width: 100%;
    height: 3rem;
    background-color: #F0F6FA;
    border: solid 1px #E8E6F8;
    border-radius: 0.3rem;
    padding-left: 2%;
}

.input-text-blue::placeholder {
    color: #67A7CC;
}

.select-blue {
    width: 100%;
    height: 3rem;
    background-color: #F0F6FA;
    border: solid 1px #E8E6F8;
    border-radius: 0.3rem;
    appearance: none;
    padding-left: 2%;
    color: #67A7CC;;
}

.password-li {
    position: relative;
}

.password-eye {
    vertical-align: middle;
    position: absolute;
    right: 0;
    top: 30%;
}

.password-eye:hover{
    cursor: pointer;
}

/*検索フォーム*/
.search-box {
    padding-left: 1%;
    white-space: nowrap;
    background-color: #ffffff;
    width: 30%;
    height: 3rem;
}

.search-box img, .search-box-blue img {
    vertical-align: middle;
    margin-right: 3%;
}

.search-box img:hover, .search-box-blue img:hover{
    cursor: pointer;
}

.search-box input, .search-box-blue input {
    width: 80%;
    height: 2.5rem;
    font-size: 1vw;
    border: none;
}

.search-box input::placeholder, .search-box-blue input::placeholder {
    color: #8B9093;
}

/*検索フォーム(青)*/
.search-box-blue {
    padding-left: 1%;
    white-space: nowrap;
    background-color: #F0F6FA;
    width: 20%;
    height: 3rem;
    border: solid 1px #E8E6F8;
    border-radius: 0.3rem;
}

.search-box-blue input{
    background-color: #F0F6FA;
}

.faq-box, .inquiry-box {
    width: 80%;
    text-align: left;
    margin: 5% auto;
}

/*よくある質問*/
.faq-box li {
    display: flex;
}

.q-li:hover {
    cursor: pointer;
}

.faq-title {
    margin: 0;
    padding: 0 0.5em;
    border-left: solid 0.8rem #67A7CC;
}

.q-li {
    justify-content: space-between;
}

/*問い合わせ*/
.inquiry-form input[type=text], .inquiry-form textarea{
    width: 60%;
}

#selectInquirySubject {
    width: 62.5%;
}

.inquiry-form ul {
    padding: 0;
}

.inquiry-form li {
    display: flex;
    justify-content: center;
}

.inquiry-form p {
    width: 20%;
}
#submit-inquiry {
    width: 5rem;
}

/*運営からのお知らせ*/
.news-box li {
    display: flex;
}

.news-ul .title-li:hover {
    cursor: pointer;
}

.news-ul .title-li {
    justify-content: space-between;
}

.news-ul .title-text {
    margin-top: 0;
    margin-bottom: 1%;
}

.news-create-date {
    margin-bottom: 0;
    color: #67A7CC;
    margin-top: 0;
}

.news-category {
    margin-bottom: 0;
    color: #67A7CC;
    border-radius: 2rem;
    border: 1px solid #67A7CC;
    padding: 0.5% 1% 0.5% 1%;
    text-align: center;
    margin-right: 1%;
    margin-top: 0;
}

.news-label {
    margin-bottom: 1%;
    align-items: center;
}
.news-ul .detail-text {
    margin-top: 0;
    text-align: left;
}

/*特定商取引法に基づく表記*/
.legal-table {
    border: 1px solid #152129;
    text-align: left;
    width: 80%;
    margin: 0 auto;
    border-collapse: collapse;
}

.legal-table tr {
    border: 1px solid #152129;
}

.legal-table th {
    background-color: #F5F8FA;
    border: 1px solid #152129;
    padding: 1%;
    width: 22%;
}

.legal-table td {
    padding-left: 1%;
}

/*利用規約、プライバシーポリシー*/
.terms-of-use, .privacy-policy {
    width: 70%;
    text-align: left;
    margin: 0 auto;
}

/*ご意見・ご要望*/
.request textarea {
    min-height: 10rem;
}

/*パスワードリセット*/
.password-reset {
    width: 50%;
    margin: 0 auto;
    padding: 10rem 0 15rem 0;
}

.close-pf-dialog {
    border: none;
    background-color: #ffffff;
}

/*画像上下中央*/
.item-center {
    display: flex;
    justify-content: center;
}

.item-center span {
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

.sp-br {
    display: none;
}

/*学習の進め方*/
#tutorial-video {
    height: 500px;
}


/*レスポンシブ*/
/*タブレット横*/
@media screen and (max-width: 1200px){
    body {
        min-height: 90vh;
    }

    /*header*/
    #head-title {
        width: 80%;
    }

    .header .nav-left {
        width: 60%;
    }

    .header .nav-left ul {
        font-size: 1.5vw;
    }

    .login-li {
        margin-right: 1rem;
    }

    .btn-login, .btn-new, .btn-primary {
        font-size: 1.7vw;
        width: auto;
    }

    /*top*/
    .top-box {
        margin-bottom: 10%;
    }

    .top-box .content-top-div {
        width: 45%;
    }

    .top-box .content-middle div, .top-box .content-bottom div {
        width: 90%;
    }

    /*ダイアログ*/
    #loginDialog, #createDialog, #passwordForgetDialog {
        width: 70%;
    }

    .fs-1 {
        font-size: 1.4vw;
    }

    /*設定*/
    .form-box {
        width: 60%;
        margin: 15% 30%;
    }

    /*よくある質問*/
    .search-box-blue {
        width: 40%;
    }

    #selectInquirySubject {
        width: 63%;
    }

    .inquiry-form li {
        margin-top: 1%;
    }

}

/*タブレット縦*/
@media screen and (max-width: 960px){
    /*header*/
    #head-title-a {
        width: 20%;
    }

    #head-title {
        width: 100%;
    }

    #login-nav-left {
        width: 67%;
    }

    .top-box .content-middle div, .top-box .content-bottom div {
        width: 95%;
    }

    #pc-myicon {
        display: none;
    }

    #sp-myicon {
        display: block;
    }

    #sp-myicon:hover {
        background-color: #E1EDF5;
    }

    .header .nav-right {
         margin-right: 0;
    }

    /*サイドバー*/
    #sidebar {
        width: 25%;
        right: 0;
    }

    /*top*/
    .top-box .content-top-div {
        width: 50%;
    }

    /*ダイアログ*/
    #loginDialog, #createDialog, #passwordForgetDialog {
        width: 80%;
    }

    .checkbox .checkmark {
        height: 25px;
        width: 25px;
    }

    .checkbox .checkmark:after {
        left: 0.4rem;
        top: 0.2rem;
    }

    .fs-1 {
        font-size: 2vw;
    }

    .date-form {
        width: 35%;
        font-size: 2vw;
    }

    .select-form {
        width: 46%;
        font-size: 2vw;
    }

    .form-li .label {
        font-size: 1.8vw;
    }

    #forget-password {
        font-size: 1.5vw;
    }

    .radio-box label {
        padding-left: 15%;
    }

    /*ボタン*/
    .btn-primary, .btn-cancel {
        font-size: 2vw;
        width: auto;
    }

    /*設定*/
    .form-box {
        width: 60%;
        margin: 15% 30% 20% 30%;
    }

    .weekday-box {
        flex-wrap : wrap;
    }

    /*よくある質問*/
    .search-box-blue {
        width: 45%;
    }

    .search-box-blue input {
        font-size: 2vw;
    }

    .inquiry-form p {
        font-size: 1.5vw;
        white-space: nowrap;
        width: 25%;
    }

    .inquiry-form input[type=text], .inquiry-form textarea {
        width: 75%;
    }

    #selectInquirySubject {
        width: 78.5%;
    }

    .inquiry-form li {
        margin-top: 2%;
    }
}

/*sp*/
@media screen and (max-width: 520px){
    .dp-flex {
        display: block;
    }

    .sp-br {
        display: block;
    }

    .common-box {
        padding: 1%;
        width: 90%;
        margin: 25% auto 28rem auto;
    }

    /*header*/
    header {
        justify-content: space-between;
    }

    .nav-left {
        display: none;
    }

    .header .nav-right {
        width: 50%;
        height: auto;
        margin-right: 0;
    }

    .header .nav-right ul {
        justify-content: end;
    }

    .btn-login, .btn-new, .btn-primary {
         font-size: 3vw;
    }

    #head-title-a {
        width: auto;
    }

    #head-title {
        width: 70%;
    }

    .header .nav-right ul {
        margin-top: 5%;
        margin-right: 5%;
    }

    .login-li {
        margin-right: 1rem;
    }

    /*sidebar*/
    #sidebar {
        width: 60%;
    }

    /*ボタン*/
    .btn-primary, .btn-cancel {
        font-size: 3vw;
    }

    /*footer*/
    .footer {
        height: 28rem;
    }

    .footer-top {
        display: block;
    }

    .copy-right {
        font-size: 3vw;
    }

    /*top*/
    .top-box {
        margin-bottom: 90%;
    }

    .top-box .content-top-div {
        width: 75%;
    }

    .top h1  {
        font-size: 1.5rem;
    }

    .top p  {
        font-size: 3.5vw;
    }

    .top-box .content-middle div, .top-box .content-bottom div {
         width: auto;
    }

    .video-box {
        height: 15rem;
    }

    #inputUserJob {
        width: 90%;
    }

    /*ダイアログ*/
    #loginDialog, #createDialog, #passwordForgetDialog {
         width: auto;
    }

    .login-form, .create-form {
         width: auto;
    }

    #forget-password {
        font-size: 3vw;
    }

    .date-form {
        margin-left: 0;
        width: 60%;
        font-size: 5vw;
    }

    .select-form {
        margin-left: 0;
        width: 40%;
        font-size: 5vw;
    }

    .fs-1 {
        font-size: 5vw;
    }

    .radio-box label {
        margin-right: 5%;
        padding-left: 19%;
    }

    .form-li .label {
        font-size: 3vw;
    }

    /*パスワードリセット*/
    .password-reset {
        width: 90%;
        padding: 7rem 0 30rem 0;
    }

    #passwordForgetCompleteDialog {
        width: 80%;
    }

    /*設定*/
    .form-box {
        width: 90%;
        margin: 7rem auto 30rem auto;
    }

    .request .form-box {
        width: 90%;
        margin: 25% auto;
    }

    /*よくある質問*/
    .search-box-blue {
        width: 80%;
    }

    .search-box-blue input {
        font-size: 3vw;
    }

    .faq-box, .inquiry-box {
        width: 85%;
    }

    .faq-box ul {
        padding: 0;
    }

    #goto-chat {
        width: 55%;
    }

    .inquiry-form p {
        font-size: 2.5vw;
        width: 30%;
    }

    .inquiry-form input[type=text], .inquiry-form textarea {
        width: 70%;
    }

    #selectInquirySubject {
        width: 73%;
    }

    /*利用規約、プライバシーポリシー*/
    .terms-of-use, .privacy-policy {
        width: 90%;
    }

    /*特定商法*/
    .legal-table {
        width: 90%;
    }

    /*学習の進め方*/
    #tutorial-video {
        height: 200px;
    }
}
