body {
    max-width: 768px;
    margin: 0 auto;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #272727;
    position: relative;
    min-height: 100vh;
    height: 100%;
}

main {
    display: flex;
    max-width: 768px;
    min-height: calc(100vh - 360px);
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    background: #fff;
}

.wrap-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.login-page {
    width: 100%;
    min-height: 100%;
    margin: 0 auto;
    background-image: url(/static/assets/images/silk-login-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 1rem 1rem;
    flex: 1;
}

.custom-form {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 8px;
}

button {
    border: 0;
}

.container {
    max-width: 100%;
}

h1 {
    font-size: 28px;
    font-weight: bold;
}

h2 {
    font-size: 24px;
    font-weight: bold;
}

h3 {
    font-size: 20px;
    font-weight: bold;
}

h4 {
    font-size: 18px;
    font-weight: bold;
}

h5 {
    font-size: 16px;
    font-weight: bold;
}

h6 {
    font-size: 15px;
    font-weight: bold;
}

.medium-heading {
    font-size: 22px;
    font-weight: 500;
}

.medium-heading span {
    color: #0bdbcb;
}

a {
    text-decoration: none;
}


svg {
    height: 24px;
    width: 24px;
}

.btn-primary {
    display: inline-block;
    width: 100%;
    padding: 7px 10px 7px;
    border-radius: 5px;
    color: #fff;
    background: rgb(255, 40, 213);
    background: linear-gradient(0deg,
    rgba(255, 213, 92, 1) 0%,
    rgba(255, 40, 213, 1) 100%);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.5s ease;
}

.btn-primary:hover {
    background: rgb(255, 40, 213);
    background: linear-gradient(0deg, rgba(255, 40, 213, 1) 0%, #ffd55c 100%);
    color: #fff;
    transition: all 0.5s ease;
}

.btn-secondary {
    display: inline-block;
    width: 100%;
    padding: 7px 10px 7px;
    border-radius: 5px;
    color: #fff;
    background: rgb(81, 138, 252);
    background: linear-gradient(0deg,
    rgba(81, 138, 252, 1) 0%,
    rgba(49, 245, 228, 1) 100%);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.5s ease;
}

.btn-secondary:hover {
    background: rgb(49, 245, 228);
    background: linear-gradient(0deg,
    rgba(49, 245, 228, 1) 0%,
    rgba(81, 138, 252, 1) 100%);
    color: #fff;
    transition: all 0.5s ease;
}

.register-btn {
    padding: 15px 10px !important;
}

.btn-tertiary {
    display: inline-block;
    width: 100%;
    padding: 7px 10px 7px;
    border-radius: 5px;
    color: #fff;
    background: rgb(139, 245, 232);
    background: linear-gradient(0deg,
    rgba(139, 245, 232, 1) 0%,
    rgba(174, 187, 231, 1) 100%);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.5s ease;
}

.btn-tertiary:hover {
    background: rgb(174, 187, 231);
    background: linear-gradient(0deg,
    rgba(174, 187, 231, 1) 0%,
    rgba(139, 245, 232, 1) 100%);
    color: #fff;
    transition: all 0.5s ease;
}

.btn-ternary {
    display: inline-block;
    width: 100%;
    padding: 7px 10px 7px;
    border-radius: 5px;
    color: #fff;
    background: #f2c2d6;
    background: linear-gradient(0deg, #9f9aed 0%, #f2c2d6 100%);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.5s ease;
}

.btn-ternary:hover {
    background: #9f9aed;
    background: linear-gradient(0deg, #f2c2d6 0%, #9f9aed 100%);
    color: #fff;
    transition: all 0.5s ease;
}

.btn-simple-primary {
    display: inline-block;
    width: 100%;
    padding: 7px 10px 7px;
    border-radius: 10px;
    color: #fff;
    background: #0fdaef;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.5s ease;
    border: 1px solid #0fdaef;
}

.btn-simple-primary:hover {
    background: none;
    color: #0fdaef;
    transition: all 0.5s ease;
}

.btn-simple-primary-inverse {
    display: inline-block;
    width: 100%;
    padding: 7px 10px 7px;
    border-radius: 10px;
    color: #0fdaef;
    background: none;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.5s ease;
    border: 1px solid #0fdaef;
}

.btn-simple-primary-inverse:hover {
    background: #0fdaef;
    color: #fff;
    transition: all 0.5s ease;
}

.btn-simple-secondary {
    display: inline-block;
    width: 100%;
    padding: 7px 10px 7px;
    border-radius: 10px;
    color: #fff;
    background: #f47bb5;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.5s ease;
    border: 1px solid #f47bb5;
}

.btn-simple-secondary:hover {
    background: none;
    color: #f47bb5;
    transition: all 0.5s ease;
}

.btn-simple-secondary-inverse {
    display: inline-block;
    width: 100%;
    padding: 7px 10px 7px;
    border-radius: 10px;
    color: #f47bb5;
    background: none;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.5s ease;
    border: 1px solid #f47bb5;
}

.btn-simple-secondary-inverse:hover {
    background: #f47bb5;
    color: #fff;
    transition: all 0.5s ease;
}

.btn-simple {
    background: #e5e5e5;
    border-color: #e5e5e5;
    color: #ed6b1e;
}

.btn-simple:hover {
    background: #e5e5e5;
    border-color: #e5e5e5;
    color: #ed6b1e;
}

.btn-green {
    background: #09dbca;
    border-color: #09dbca;
}

.btn-green:hover {
    background: none;
    color: #09dbca;
}

.btn-green-inverse {
    background: none;
    color: #272727;
    border-color: #09dbca;
}

.btn-green-inverse:hover {
    background: #09dbca;
    color: #fff;
}

.btn-load-more {
    background: #848484;
    padding: 5px;
    margin: 5px;
    color: #fff;
    text-align: center;
    display: block;
    transition: all 0.5s ease;
    box-shadow: 0 0 10px 0px #000;
    border-radius: 8px;
}

.btn-load-more span {
    padding-right: 10px;
}

.btn-load-more svg {
    height: 18px;
    width: 18px;
}

.btn-load-more:hover {
    color: #fff;
    transition: all 0.5s ease;
    box-shadow: 0 0 2px 0px #000;
}

.btn-return {
    background: #848484;
    padding: 15px 5px;
    color: #fff;
    text-align: center;
    display: block;
    transition: all 0.5s ease;
}

.btn-return span {
    padding-right: 10px;
}

.btn-return svg {
    height: 18px;
    width: 18px;
}

.btn-return:hover {
    color: #fff;
    background-color: #000;
    transition: all 0.5s ease;
}

.btn-return1 {
    background: #000;
    padding: 15px 5px;
    color: #fff;
    text-align: center;
    display: block;
    transition: all 0.5s ease;
}

.btn-return1:hover {
    color: #fff;
    transition: all 0.5s ease;
}

.btn-unable {
    display: inline-block;
    width: 100%;
    padding: 7px 10px 7px;
    background: darkgrey;
    color: #fff;
    text-align: center;
    transition: all 0.5s ease;
}

.radius-btn {
    border-radius: 30px;
}

.no-radius-btn {
    border-radius: 0;
}

.line-divider {
    height: 1px;
    width: 100%;
    background: #949494;
    margin: 12px auto;
}

.line-divider-396 {
    max-width: 396px;
}

.line-divider-375 {
    max-width: 375px;
}

.line-divider-350 {
    max-width: 350px;
}

.line-divider-235 {
    max-width: 235px;
}

.line-divider-282 {
    max-width: 282px;
}

.custom-table th,
.custom-table td {
    border: 1px solid #b6b6b6;
    text-align: center;
}

.custom-table th {
    font-weight: 600;
}

.custom-table td {
    color: #616161;
}

.custom-form label {
    display: block;
    font-weight: bold;
}

.custom-form input[type=text],
.custom-form input[type=password],
.custom-form input[type=email],
.custom-form input[type=tel],
.custom-form select {
    background: #f0f1f1;
    border: 1px solid #cecece;
    padding: 0 10px;
    color: #a8a8a8;
    width: 100%;
    height: 42px;
    margin: 10px 0;
}

.custom-form textarea {
    border: 1px solid #cecece;
    padding: 5px;
    resize: none;
    height: 95px;
    width: 100%;
}

.custom-form input[type=submit] {
    border: 0;
    max-width: 350px;
    margin-top: 20px;
}

.custom-form .btn-tertiary {
    padding: 15px 10px;
}

.custom-form .btn-return {
    width: 100%;
    max-width: 100% !important;
    margin-bottom: 20px;
}

.custom-form input:focus {
    background: #fff;
    border: 1px solid #cecece;
    color: #272727;
    box-shadow: none;
}

.custom-form .forget a {
    color: #09dbca;
}

.custom-form .forget a:hover {
    color: #272727;
}

.black-link h4 {
    font-size: 16px;
    margin-top: 0.5rem;
}

/* --------------- Header --------------- */
header .header-holder {
    height: 60px;
    background: #fff;
}

header .key {
    display: inline-block;
    height: 39px;
    width: 39px;
    background: #0191f2;
    line-height: 36px;
    text-align: center;
    border-radius: 100%;
    transform: rotate(-90deg);
}

header .key svg {
    height: 20px;
    width: 20px;
}

header .key + span {
    color: #272727;
    display: inline-block;
    margin-left: 3px;
}

header .main-menu-btn img {
    width: 40px;
    margin: 10px;
}

header .main-menu-btn svg {
    height: 28px;
    width: 28px;
    text-align: center;
}

header .header-right {
    text-align: right;
    display: contents;
}

.displayPoint {
    margin-right: 10px;
}

.main-menu {
    background: #9be3cd;
    padding: 50px 0px 0px 0px;
    min-height: 388px;
    width: 260px;
    position: absolute;
    top: -120%;
    right: 0;
    transition: all 0.5s ease;
    z-index: 999;
}

.main-menu.active {
    top: 0;
    transition: all 0.5s ease;
}

.main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu ul li {
    padding: 0;
    margin: 0;
    position: relative;
}

.main-menu ul li a {
    display: block;
    padding: 6px 15px;
    color: #fff;
    font-size: 18px;
}

.main-menu ul li a:hover {
    color: #272727;
}

.main-menu ul li a span {
    display: inline-block;
    margin-right: 10px;
}

.close-menu {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.main-menu ul li img {
    max-width: 248px;
}

/* --------------- Banner --------------- */
.wrapper {
    background-color: #ffffff;
    background-size: cover;
    background-position: left 0px top 0px, center;
    position: relative;
    display: flex;
    justify-content: center;
    padding: 0.5rem;
    width: 100%;
}

.img-holder {
    width: 100%;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.img-holder .button-holder {
    position: absolute;
    bottom: 18%;
    width: 65%;
}

@media (min-width: 1120px) {
    .img-holder .button-holder {
        position: absolute;
        bottom: 15%;
        width: 65%;
    }
}


.img-link {
    width: 100%;
}

.full-img {
    width: 100%;
    height: auto;
}

/* --------------- Section 1 --------------- */
.section-members h1 {
    font-size: 26px;
    margin: 25px 0;
    font-weight: 400;
}

/* --------------- Section 2 --------------- */
.section-lists {
    padding-bottom: 28px;
}

.section-lists .king-img {
    margin: 22px 0;
    height: auto;
    width: auto;
    display: inline-block;
}

.section-lists .stars-img {
    margin: 0 0 30px;
    height: auto;
    width: 100%;
    display: inline-block;
}

.section-lists h3 {
    font-size: 22px;
    font-weight: bold;
    line-height: 22px;
}

.section-lists h4 {
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
}

.section-lists h2 {
    font-size: 24px;
    line-height: 24px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    position: relative;
    /*display: inline-block;*/
}

.section-lists h2 span {
    color: #d01f2b;
}

.section-lists .border-box {
    margin-top: 15px;
}

.section-lists .border-box small {
    display: inline-block;
    font-size: 12px;
    color: #606060;
    border: 1px solid #d4d4d4;
    padding: 5px 25px;
    width: auto;
}

/* --------------- List box --------------- */
.list-holder {
    margin-top: 55px;
}

.list-box {
    margin-bottom: 15px;
}

.list-box .col {
    flex: 0 0 0%;
}

.list-box .first-col {
    flex-grow: 1;
    max-width: 180px;
    margin: auto;
}

.list-box figure {
    position: relative;
}

.list-box img {
    width: 100%;
    height: auto;
}

.list-box figcaption {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #d5d5d5;
    text-align: center;
    width: 100%;
    height: auto;
    font-size: 13px;
}

.list-box .second-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    text-align: left;
}

.list-box .col-inner-left h4 {
    font-size: 14px;
    line-height: 14px;
    font-weight: bold;
    margin: 0 0 2px;
}

.list-box .col-inner-left p {
    margin-bottom: 2px;
}

.list-box .second-col .col-inner-left {
    flex-grow: 1;
    max-width: calc(100% - 105px);
    text-align: left;
}

.list-box .col-inner-right {
    flex-grow: 1;
    max-width: 105px;
    text-align: left;
    padding-right: 0;
}

.list-box .col-inner-right p {
    margin-bottom: 0;
}

.list-box .col-inner-right h5 {
    font-weight: bold;
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 0;
}

.list-box .btn-holder {
    margin-top: 8px;
    max-width: 230px;
}

.list-box .btn-holder a:last-child {
    margin-top: 5px;
}

.load-more-holder {
    margin-bottom: 30px;
}

.section-lists .fixed-btn {
    max-width: 350px;
}

/* --------------- Messages --------------- */
.messages-heading {
    margin: -45px 0 0 85px;
    width: calc(100% - 85px);
}

.messages-heading h2 {
    font-size: 24px;
    line-height: 24px;
    margin: 0;
    font-weight: 400;
}

.messages-heading p {
    margin: 0;
}

.messages-holder {
    background: #e6e6e6;
    padding-top: 30px;
}

.message-box {
    padding: 20px 10px;
    position: relative;
}

.message-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: calc(100% + 20px);
    height: 0;
    border-top: 1px solid #fff;
}

.message-box:first-child:before {
    border-top: 0;
}

.message-box .col-left {
    flex-grow: 1;
    max-width: 105px;
}

.message-box .col-left img {
    height: 90px;
    width: 90px;
    border-radius: 100%;
}

.message-box .col-right h4 {
    color: #e76f18;
    font-size: 16px;
    line-height: 16px;
    margin: 0;
}

.message-box .star-holder {
    margin-top: 6px;
    width: 100%;
    float: left;
}

.message-box .star-holder svg {
    height: 18px;
    width: 18px;
    float: left;
}

.message-box .meta-holder {
    margin-top: 2px;
}

.message-content {
    margin-top: 10px;
}

.message-content .content-heading {
    font-size: 14px;
    line-height: 14px;
    margin: 0;
    font-weight: bold;
}

.message-content .content-heading span {
    display: inline-block;
    margin-top: -2px;
    line-height: 16px;
    float: left;
    margin-right: 5px;
}

.message-content .content-heading svg {
    height: 16px;
    width: 16px;
}

.message-content .content-text {
    margin-top: 10px;
    padding-left: 35px;
}

.message-content .content-text p {
    margin-bottom: 0;
}

/* --------------- Faqs --------------- */
.section-faqs {
    padding: 50px 10px 45px;
}

.section-faqs h2 {
    font-weight: 400;
}

.faqs-holder {
    margin-top: 27px;
    margin-bottom: 30px;
}

.faqs-holder ul {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}

.faqs-holder ul li {
    margin: 0;
    padding: 11px 10px 11px 52px;
    font-size: 16px;
    line-height: 16px;
}

.faqs-holder ul li:nth-child(2n + 1) {
    border-left: 21px solid #cfcfcf;
    background: #e7e7e7;
    padding-left: 31px;
}

.section-faqs .btn-holder a {
    width: 200px;
    font-weight: 400;
    padding-bottom: 2px;
    line-height: 16px;
}

.section-faqs .btn-holder a svg {
    height: 18px;
    width: 18px;
}

.after-faqs {
    margin-bottom: 50px;
}

.after-faqs a.btn-tertiary {
    font-size: 24px;
    font-weight: 400;
}

/* --------------- Before footer --------------- */
.section-before-footer {
    padding-top: 50px;
    padding-bottom: 55px;
}

.before-footer-left {
    width: calc(100% - 200px);
    float: left;
    padding: 60px 15px 0 15px;
}

.before-footer-left p {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 26px;
}

.before-footer-right {
    width: 200px;
    float: right;
}

/* --------------- Footer --------------- */
footer {
    max-height: 300px;
    padding: 30px 60px;
    background: #f3f3f3;
    color: #616161;
}

footer a {
    color: #616161;
}

.supportLink {
    color: blue;
}

.supportLink:hover {
    color: blue;
    text-decoration-line: underline;
}


footer a:hover {
    color: #272727;
}

footer .footer-links {
    margin-top: 30px;
}

footer .footer-links .footer-left {
    width: calc(100% - 100px);
    max-width: 200px;
    float: left;
}

footer .footer-links .footer-left p {
    line-height: 26px;
    margin-bottom: 20px;
}

footer .social-holder a {
    display: inline-block;
    margin: 0 11px;
}

footer .social-holder a:hover svg path:first-child {
    fill: #09dbca;
}

footer .social-holder a:first-child {
    margin-left: 0;
}

footer .social-holder a:last-child {
    margin-right: 0;
}

footer .footer-links .footer-right {
    width: 100px;
    float: right;
}

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 26px;
}

footer .bottom-links {
    margin-top: 40px;
}

footer .bottom-links span {
    display: inline-block;
    margin: 0 5px;
}

footer .copyright {
    margin-top: 10px;
    color: #abaaaa;
}

/* --------------- Tabs --------------- */
.tab-holder ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tab-holder ul li {
    margin: 0;
    padding: 0;
}

.tab-holder a {
    display: block;
    background: #09dbca;
    color: #fff;
    padding: 0 15px;
    position: relative;
    border-left: 2px solid #fff;
    text-align: center;
    height: 60px;
    font-size: 14px;
    line-height: 60px;
}

.tab-holder li.double-line span {
    line-height: 16px;
    display: inline-block;
    margin-top: 15px;
}

.tab-holder li.double-line-left span {
    float: left;
}

.tab-holder li.double-line-right span {
    float: right;
}

.tab-holder li:first-child a {
    border-left: 0;
}

.tab-holder a:before {
    content: '';
    position: absolute;
    top: 0;
    left: -12px;
    background: #09dbca;
    border-left: 2px solid #fff;
    height: 24px;
    width: 24px;
    transform: skewX(38deg);
}

.tab-holder.link-close li:first-child a {
    text-align: right;
    padding-right: 45px;
}

.tab-holder.link-close li:last-child a {
    text-align: left;
    padding-left: 45px;
}

.tab-holder li.active a,
.tab-holder a:hover,
.tab-holder li.active a:before,
.tab-holder a:hover:before {
    background: #d5d5d5;
    color: #272727;
}

.tab-holder li:first-child a:before {
    display: none;
}

.tab-content-holder {
    padding: 15px 10px 30px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-banner {
    height: 200px;
    position: relative;
    background: url(/static/assets/images/silk-register-bg.png) no-repeat center center;
    background-size: cover;
    position: relative;
    text-align: center;
    padding: 0 10px;
    margin-bottom: 30px;
}

.tab-banner h3 {
    position: absolute;
    bottom: 40px;
    color: #fff;
    font-size: 24px;
    text-align: center;
    width: 100%;
    padding: 0 10px;
}

/* --------------- Comments --------------- */
.comment-box {
    padding: 10px;
    margin-bottom: 15px;
}

.comment-box h6 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.comment-box h6 span {
    display: inline-block;
    float: left;
    margin-right: 10px;
    margin-top: -2px;
}

.comment-box h6 span svg {
    height: 18px;
    width: 18px;
}

.comment-border-box {
    border: 1px solid #c1c1c1;
    padding-bottom: 20px;
}

.comment-border-radius {
    border-radius: 10px;
}

.comment-box .comment-content {
    padding: 0 40px 0 30px;
}

.comment-box .comment-content p {
    margin-bottom: 12px;
    color: #807f7f;
}

.comment-box .tag {
    display: inline-block;
    padding: 2px 5px;
    background: #09dbca;
    color: #fff;
    margin-bottom: 5px;
}

.comment-box .reply-holder {
    margin-top: -10px;
}

.comment-box .reply-holder a {
    color: #09dbca;
}

.comment-box .reply-holder a:hover {
    color: #272727;
}

.tab-content-holder .btn-return {
    margin: auto;
    border-radius: 10px;
    width: calc(99%);
}

.tab-content-holder .btn-return span {
    padding-right: 0;
}

.permium-holder {
    margin-top: 30px;
    padding: 0;
}

/* --------------- Reviews --------------- */
.reviews-holder {
    padding-left: 10px;
    padding-right: 10px;
}

.review-box {
    padding: 20px 5px;
    border-bottom: 1px solid #8c8c8c;
}

.review-box:last-child {
    border-bottom: 0;
}

.review-box .review-meta {
    color: #444444;
    font-weight: 500;
}

.review-box .review-meta span {
    float: left;
    margin-top: 1px;
    margin-right: 8px;
}

.review-box .review-meta svg {
    height: 16px;
    width: 16px;
    float: left;
}

.review-box h6 {
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
}

.review-box p {
    color: #807f7f;
}

.review-box p:last-child {
    margin-bottom: 0;
}

#submit_btn {
    width: 100%;
    border: 0;
}

.review_body {
    width: 100%;
}

.rate {
    margin-right: 39%;
    height: 46px;
    padding: 0 10px;
}

.rate:not(:checked) > input {
    position: absolute;
    top: -9999px;
}

.rate:not(:checked) > label {
    float: right;
    width: 1em;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 30px;
    color: #ccc;
}

.rate:not(:checked) > label:before {
    content: '★ ';
}

.rate > input:checked ~ label {
    color: #ffc700;
}

.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
    color: #deb217;
}

.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
    color: #c59b08;
}

/* --------------- Fee --------------- */
.main-top .button-holder {
    margin: 20px 0 25px;
}

.main-top .button-holder a {
    width: 100%;
    max-width: 350px;
}

.main-top .button-holder button {
    width: 100%;
    max-width: 350px;
}

/* --------------- Registration --------------- */
.section-registration {
    padding: 25px 0 30px;
}

/* --------------- Transfer --------------- */
.transfer-section {
    padding-top: 60px;
}

.compact-form {
    width: 220px;
    margin: 0 auto;
}

.compact-form label {
    font-weight: 500;
    color: #767676;
    float: left;
    width: 90px;
    margin: 2px 0 0 0;
}

.compact-form .field-holder {
    margin-bottom: 20px;
}

.compact-form input[type=text],
.compact-form input[type=email],
.compact-form input[type=password],
.compact-form input[type=tel],
.compact-form select {
    width: 126px;
    float: right;
    height: 26px;
    background: #fff;
    margin: 0;
    padding-right: 5px;
    padding-left: 5px;
}

.transfer-section input[type=submit] {
    margin-bottom: 60px;
}

/* Styles Added By Ali Hassan */

.my-page-bg {
    background-color: #e9e9e9;
    cursor: pointer;
}

.my-page-bg:hover {
    background-color: #09dbca;
}

.my-page-bg:hover h4 {
    color: white;
}

.my-page-bg:hover h4 svg {
    /*fill: white;*/
    fill: #09dbca;
}

.marker-green-color {
    color: #09dbca;
}

.golden-color {
    color: #f8a825;
}

.dark-golden-color {
    color: #df4603;
}

.bg-pink {
    background-color: #f650a3;
}

form.example input[type='text'] {
    padding: 10px;
    font-size: 17px;
    border: 1px solid #b8b8b8;
    width: 70%;
    background: #f1f1f1;
}

form.example button {
    max-width: 50px;
    position: initial;
    padding: 9.5px 10px;
    background: #b8b8b8;
    color: white;
    font-size: 17px;
    border: 1px solid #b8b8b8;
    border-left: none;
    cursor: pointer;
    border-radius: 0 0.5rem 0.5rem 0;
}

form.example::after {
    content: '';
    clear: both;
    display: table;
}

.apprasial-history {
    /*background-image: url(/static/assets/images/top-banner.png);*/
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 270px;
    position: relative;
}

.back-button-holder {
    position: absolute;
    top: 15px;
    left: 10px;
    height: auto;
    width: auto;
}

.back-button-holder a {
    color: #fff;
}

.back-button-holder a:hover {
    color: #09dbca;
}

.back-button-holder a span {
    display: inline-block;
    float: left;
    margin: -3px 0 0 0;
}

.back-button-holder a:hover path {
    fill: #09dbca;
}

.apprasial-banner-caption {
    width: 240px;
    float: right;
    margin: 40px 50px 0 0;
}

.apprasial-banner-caption-detail {
    position: relative;
    min-height: 175px;
    padding: 33px 32px 20px 32px;
    background: rgba(255, 255, 255);
    border-radius: 10px;
}

.apprasial-banner-caption-detail:before {
    content: '';
    background: url(/static/assets/images/right.png) no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 1px;
    right: 1px;
    height: 68px;
    width: 70px;
}

.apprasial-banner-caption-detail:after {
    content: '';
    background: url(/static/assets/images/left.png) no-repeat center center;
    background-size: contain;
    position: absolute;
    bottom: 4px;
    left: 2px;
    height: 69px;
    width: 71px;
}

.apprasial-banner-summary-detail {
    background: none;
    padding-top: 0;
}

.apprasial-banner-summary-detail:after,
.apprasial-banner-summary-detail:before {
    display: none;
}

.apprasial-banner-caption ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.apprasial-banner-caption ul li {
    margin: 0;
    padding: 5px 0 5px;
    border-bottom: 1px solid;
    font-size: 15px;
    line-height: 15px;
}

.apprasial-banner-summary-detail ul li {
    padding: 0;
    border: 0;
}

.apprasial-banner-caption ul li span:nth-child(1) {
    float: left;
}

.apprasial-banner-caption ul li span:nth-child(2) {
    width: 100%;
    max-width: 120px;
    float: right;
    text-align: left;
}

.apprasial-banner-summary-detail ul li span {
    width: 100% !important;
    max-width: 100% !important;
}

.apprasial-banner-summary-detail ul li span:nth-child(1) {
    font-size: 15px;
    font-weight: bold;
}

.apprasial-banner-summary-detail ul li span:nth-child(2),
.apprasial-banner-summary-detail ul li input {
    background: rgba(255, 255, 255, .65);
    color: #3d3d3d;
    padding: 5px 15px;
    font-size: 12px;
    margin: 5px 0;
    border: 0;
    width: 100%;
}

.apprasial-banner-caption .btn-return1 {
    padding-top: 0;
    padding-bottom: 0;
    height: 36px;
    line-height: 36px;
    background: #262626;
    margin-top: 10px;
}

.apprasial-banner-caption .btn-return1:hover {
    background: #000;
}

.dot {
    background-color: red;
    border-radius: 50%;
    display: inline-block;
    height: 7px;
    width: 7px;
    margin-right: 7px;
}

.dot-not-busy {
    background-color: greenyellow;
    border-radius: 50%;
    display: inline-block;
    height: 7px;
    width: 7px;
    margin-right: 7px;
}

section .container h2 img {
    width: 5%;
}

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

.svg-icon {
    width: 18px;
    height: 24px;
}

input {
    outline: none;
}

.custom-black-heading {
    font-size: 16px;
    font-weight: 500;
    color: #616161 !important;
}

.alert_form {
    margin: 0 230px;
}

/* --------------- Verify OTP --------------- */
.otp-input {
    margin-left: 10px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-clear-button {
    display: none;
}

.otp__input-group {
    display: flex;
    flex-direction: row;
    gap: 10;
}

.otp__input-group label {
    width: 100%;
    justify-content: center;
    align-items: center;
}

.error-message {
    color: #d01f2b;
}


/* --------------- Responsive --------------- */
@media only screen and (max-width: 480px) {

    .rate {
        margin-right: 27%;
    }

    /*.section-with-padding1 {*/
    /*    min-height: 170px;*/
    /*}*/
    .alert_form {
        margin: 0 60px;
    }

    .section-lists h2 {
        font-size: 18px;
    }
}


@media only screen and (max-width: 470px) {
    .black-link h4 {
        font-size: 11px;
    }

    .black-link h4 svg {
        height: 11px;
        width: 11px;
    }

    .banner-bar {
        font-size: 16px;
    }

    footer {
        padding-left: 15px;
        padding-right: 15px;
    }

    .apprasial-banner-caption {
        margin-right: 15px;
        margin-top: 20px;
        width: 45%;
    }

    .apprasial-banner-caption-detail {
        position: relative;
        min-height: 175px;
        padding: 5px;
        background: rgba(255, 255, 255, 0.4);
        border-radius: 10px;
    }

    .apprasial-banner-caption-detail:before {
        content: '';
        background: none;
    }

    .apprasial-banner-caption-detail:after {
        content: '';
        background: none;
    }

    .apprasial-banner-caption ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .apprasial-banner-caption ul li {
        margin: 10px 5px;
        border-bottom: 1px solid;
        font-size: 15px;
    }

    .btn-return1 {
        font-size: 12px;
    }


}


.hint--error {
    color: red;
    padding-top: 10px;
}

/*additional css*/
.black-link {
    color: #333;
}

.black-link a {
    color: #333;
}

.displayPoint {
    color: #333;
}

.displayPoint a {
    color: #333;
}

.alert p {
    margin-bottom: 0;
}

.profile_avatar {
    border-radius: 50%;
}

div#volume-indicators {
    display: none;
    padding: 10px;
    margin-top: 20px;
    width: 400px;
    text-align: left;
    margin: auto;
}

div#volume-indicators > div {
    display: block;
    height: 20px;
    width: 0;
}

.custom-form input {
    border: 1px solid #cecece;
    padding: 5px;
    resize: none;
    width: 100%;
}

.request-btn-label {
    vertical-align: -webkit-baseline-middle;
}


.inquiry_text {
    resize: none;
    width: 100%;
    height: 20vh;
}

/* 全体 */
.sb-box {
    position: relative;
    overflow: hidden;
}

/* アイコン画像 */
.icon-img {
    position: absolute;
    overflow: hidden;
    top: 0;
    /* 画像の位置を上から0に */
    width: 80px;
    /* 画像の幅 */
    height: 80px;
    /* 画像の高さ */
}

/* アイコン画像（左） */
.icon-img-left {
    left: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* 画像の位置を左から0に */
}

/* アイコン画像（右） */
.icon-img-right {
    right: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* 画像の位置を右から0に */
}

/* アイコン画像 */
.icon-img img {
    border-radius: 50%;
    /* 画像を丸く表示する */
    border: 2px solid #eee;
    /* 画像の縁取りの太さとカラー */
}

/* アイコンネーム */
.icon-name {
    position: absolute;
    width: 80px;
    /* ネームの最大幅を画像と同じに */
    text-align: center;
    /* ネームの位置をセンターに */
    top: 83px;
    /* ネームの位置を上から83に */
    color: #777;
    /* ネームのカラー */
    font-size: 10px;
    /* ネームのフォントサイズ */
}

/* アイコンネーム（左） */
.icon-name-left {
    left: 0;
    /* ネームの位置を左から0に */
}

/* アイコンネーム（右） */
.icon-name-right {
    right: 0;
    /* ネームの位置を右から0に */
}

/* 吹き出し */
.sb-side {
    position: relative;
    float: left;
    margin: 0 105px 40px 105px;
    /* 吹き出しの上下左右の余白 */
}

.sb-side-right {
    float: right;
}

/* 吹き出し内のテキスト */
.sb-txt {
    position: relative;
    border: 2px solid #eee;
    /* 吹き出しの縁取りの太さとカラー */
    border-radius: 6px;
    /* 吹き出しを角丸に */
    background: #fff;
    /* 吹き出しの背景色 */
    color: #333;
    /* 吹き出し内のテキストのカラー */
    font-size: 15px;
    /* 吹き出し内のフォントサイズ */
    line-height: 1.7;
    /* 吹き出し内のテキストが2行以上になった時の行間 */
    padding: 18px;
    /* 吹き出し内の上下左右の余白 */
    overflow-wrap: normal;
}

.sb-txt > p:last-of-type {
    padding-bottom: 0;
    /* 吹き出し内のテキストを改行した場合、最後のpタグにpadding-bottomをつけない */
    margin-bottom: 0;
    /* 吹き出し内のテキストを改行した場合、最後のpタグにmargin-bottomをつけない */
}

/* 吹き出しの三角 */
.sb-txt:before {
    content: "";
    position: absolute;
    border-style: solid;
    top: 16px;
    /* 吹き出し内の三角の位置 */
    z-index: 3;
}

.sb-txt:after {
    content: "";
    position: absolute;
    border-style: solid;
    top: 15px;
    /* beforeより-1px */
    z-index: 2;
    /* beforeより-1 */
}

/* 吹き出しの三角（左） */
.sb-txt-left:before {
    left: -7px;
    border-width: 7px 10px 7px 0;
    border-color: transparent #fff transparent transparent;
    /* 背景色と同じカラーに */
}

.sb-txt-left:after {
    left: -10px;
    /* beforeより-3px */
    border-width: 8px 10px 8px 0;
    /* beforeより上下+1px */
    border-color: transparent #eee transparent transparent;
    /* 縁取りと同じカラーに */
}

/* 吹き出しの三角（右） */
.sb-txt-right:before {
    right: -7px;
    border-width: 7px 0 7px 10px;
    border-color: transparent transparent transparent #fff;
    /* 背景色と同じカラーに */
}

.sb-txt-right:after {
    right: -10px;
    /* beforeより-3px */
    border-width: 8px 0 8px 10px;
    /* beforeより上下+1px */
    border-color: transparent transparent transparent #eee;
    /* 縁取りと同じカラーに */
}

/* 767px（iPad）以下 */

@media (max-width: 767px) {

    /* アイコン画像 */
    .icon-img {
        width: 60px;
        /* 画像の幅を-20px */
        height: 60px;
        /* 画像の高さを-20px */
    }

    /* アイコンネーム */
    .icon-name {
        width: 60px;
        /* 画像の幅に合わせて-20px */
        top: 62px;
        /* ネームの位置を上から62に */
        font-size: 9px;
        /* ネームのフォントサイズを-1px */
    }

    /* 吹き出し（左） */
    .sb-side-left {
        margin: 0 0 30px 78px;
        /* 吹き出し（左）の上下左右の余白を狭く */
    }

    /* 吹き出し（右） */
    .sb-side-right {
        margin: 0 78px 30px 0;
        /* 吹き出し（右）の上下左右の余白を狭く */
    }

    /* 吹き出し内のテキスト */
    .sb-txt {
        padding: 12px;
        /* 吹き出し内の上下左右の余白を-6px */
    }

    .new-msg {
        bottom: 0 !important;
    }

}

.listed-icon {
    max-width: 60px;
    max-height: 60px;
}


.inquiry-side {
    position: relative;
    float: left;
    margin: 0 0 0 100px;
    /* 吹き出しの上下左右の余白 */
}

.unstyled-a {
    text-decoration: none;
    color: #0b2e13;
}

.unstyled-a:visited {
    text-decoration: none;
    color: #0b2e13;
}

#chatarea {
    max-height: 50vh;
    overflow-y: scroll;
}

.new-msg {
    max-width: 60px;
    text-align: center;
    /*left: calc(0%);*/
    width: 100%;
    bottom: calc(1em);
    color: #FFF;
    background: #e63131; /* 背景色をオレンジに指定 */
    border-radius: 10px;
    padding: 0 0px;
    position: absolute;
    bottom: 0;

}

.new-msg-top {
    text-align: center;
    color: red;
    border-radius: 10px;
    position: absolute;
    left: -25%;
    bottom: -1em;
    padding: 0 5px;
    background: rgba(255, 255, 255, 0.3);
    font-weight: bold;
}

.new-msg-menu {
    font-size: xx-small;
    color: #FFF;
    background: #e63131; /* 背景色をオレンジに指定 */
    border-radius: 10px;
    padding: 0 5px;
    position: absolute;
    /*right:15%;*/
}

.mail-list {
    position: relative;
}

span.black-link {
    position: relative;
}


.pc {
    display: none;
}

.timestamp {
    font-size: xx-small;
    color: #696969;
}

.float-right {
    float: right;
}

.float-left {
    float: left;
}

.diviner-form label {
    display: block;
    font-weight: bold;
}

.diviner-form input[type=text],
.diviner-form input[type=password],
.diviner-form input[type=email],
.diviner-form input[type=tel],
.diviner-form select {
    background: #f0f1f1;
    border: 1px solid #cecece;
    padding: 0 10px;
    color: #a8a8a8;
    width: 100%;
    height: 42px;
    margin: 10px 0;
}

.diviner-form textarea {
    border: 1px solid #cecece;
    padding: 5px;
    resize: none;
    height: 95px;
    width: 100%;
}

.diviner-form input[type=submit] {
    border: 0;
    max-width: 350px;
    margin-top: 20px;
}

.diviner-form .btn-tertiary {
    padding: 15px 10px;
}

.diviner-form .btn-return {
    width: 100%;
    max-width: 100% !important;
    margin-bottom: 20px;
}

.diviner-form input:focus {
    background: #fff;
    border: 1px solid #cecece;
    color: #272727;
    box-shadow: none;
}

.diviner-form .forget a {
    color: #09dbca;
}

.diviner-form .forget a:hover {
    color: #272727;
}

.diviner-form input {
    border: 1px solid #cecece;
    padding: 5px;
    resize: none;
    width: 100%;
}


.page-nav {
    display: flex;
    justify-content: center;
}

.page-active {
    background-color: #F0F8FFFF;
}

@media (min-width: 769px) {
    .sb-box {
        padding-bottom: 1rem;
    }

    .fixed-btn {
        max-width: 350px;
    }

    .review-section, .tab-section, .name-board, .container, .black-link, .diviner-form, .fee-pay-section {
        max-width: 768px;
        background-color: white;
    }

    .diviner-form {
        margin: auto;
    }

    .diviner-form .btn-return {
        margin-bottom: 0;
    }

    .permium-holder {
        margin-top: 0;
    }


    body {
        z-index: -9999;
        max-width: 100%;
        background-image: url("/static/assets/images/background-image.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
    }

    header, footer {
        max-width: 768px;
        margin: auto;
    }

    section {
        max-width: 768px;
        width: 100%;
        margin: auto;
    }

    .banner-bar {
        display: none;
    }

    .section-members, .section-lists, .section-faqs, .section-before-footer {
        background-color: white;
    }

    .after-faqs {
        max-width: 768px;
        margin: auto;
    }

    .bottom-banenr {
        max-width: 768px;
        margin: auto;
    }

}

.link-holder {
    margin-top: -4rem;
    padding-bottom: 1rem;
    z-index: 1;
}

@media (min-width: 1120px) {
    .pc {
        justify-content: center;
        display: block;
        height: 100vh;
        width: 100%;
        position: absolute;
        z-index: -1;
        left: 0;
    }

    .left-logo {
        width: calc((100vw - 768px) / 4);
        height: calc((100vw - 768px) / 4);
        margin-left: calc((100% - 768px) / 4);
        background-color: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(12px);
        margin-top: 50vh;
        position: fixed;
        border-radius: 50%;
        transform: translate(-50%, -50%);
    }

    .left-logo img {
        transform: translate(calc((((100vw - 768px) / 4) - 100%) / 2), calc((((100vw - 768px) / 4) - 100%) / 2));
        width: 50%;

    }

    .right-menu {
        margin-top: 50vh;
        margin-bottom: auto;
        position: fixed;
        margin-left: calc(768px + (100vw - 768px) / 2);
        transform: translate(0, -50%);
        width: calc((100vw - 768px) / 2 * 0.95);

    }

    .right-menu ul {
        list-style: none;
    }

    .right-menu li {
        text-align: center;
        margin: 30px;
        color: white;
        font-size: small;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 5px;

    }

    .no-deco, .no-deco:link, .no-deco:active {
        text-decoration: none !important;
        color: white;
    }

    .no-deco:hover {
        color: #09dbca;
    }

    .right-menu li:before {
        border-radius: 5px 0 0 5px;
        content: "　";
        float: left;
        width: 10px;
        display: inline-block;
        background: linear-gradient(#EDC305, #4DBAAC);
    }
}

@media (min-width: 1300px) {
    .right-menu li {
        font-size: x-large;
    }
}


@media (min-width: 1600px) {
    .right-menu li {
        font-size: xx-large;
    }
}

.font-smaller {
    font-size: small;
}

.alert-box {
    max-width: 768px;
}


.fullpage-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.fullpage-modal > div {
    margin: auto;
    text-align: center;
    background-color: white;
    padding: 2em;
}

.modal-form {
    display: flex;
    justify-content: space-evenly;
}

.forget {
    margin-top: 10px;
}

.form-card {
    border: 1px solid #c4c4c4 !important;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.form-checkbox {
    display: flex;
    gap: 5px;
}

#card-errors {
    color: red;
    margin-bottom: 10px;
}

.coupon-title {
    margin-left: 5%;
    margin-right: 5%;
}