/* Color, font-size */
:root{
    --soremo-blue: #009ace;
    --soremo-deep-blue: #0076A5;
    /* --soremo-black: #000000;
    --black2-color: #53565A;
    --grey1-color: #A7A8A9;
    --grey2-color: #D3D3D3;
    --grey3-color: #F0F0F0;
    --white-color: #FFFFFF;
    --blue-color: #009ACE;
    --blue-color-hover: #0076A5;
    --background-color: #FCFCFC;
    --error-color: #2CC84D;
    --font-size-40: 40px;
    --line-height-60: 60px;
    --font-size-32: 32px;
    --line-height-48: 48px;
    --font-size-24: 24px;
    --line-height-36: 36px;
    --font-size-18: 18px;
    --line-height-27: 27px;
    --font-size-16: 16px;
    --line-height-24: 24px;
    --font-size-13: 13px;
    --line-height-20: 20px;
    --font-size-11: 11px;
    --line-height-17: 17px;
    --font-size-8: 8px;
    --line-height-12: 12px;
    --font-weight-300: normal;
    --font-weight-400: normal;
    --font-family-R: 'A+mfCv-AXISラウンド 50 R StdN';
    --font-family-L: 'A+mfCv-AXISラウンド 50 L StdN'; */
}
/* End color, font-size  */

/* Common */
.container-wrap {
    position: relative;
    margin-top: 65px;
    background-color: var(--background-color);
}

.text--center {
    text-align: center !important;
}
/* End common */

/* Sidebar */
.user-info__wrap {
    float: left;
    position: fixed;
    top: 155px;
    background-color: var(--background-color);
    z-index: 2;
    width: 200px;
}

.user-info__main.account__info {
    margin-top: 0;
    /* padding-top: 0; */
    float: right;
    width: calc(100% - 200px);
}

.user-info__tabs-list {
    width: 70%;
}

.nav .nav-item a.nav-link {
    font-family: var(--font-family-R);
    font-size: 13px;
    /*   */
    line-height: var(--line-height-20);
    color: var(--soremo-light-gray);
    /* background-color: var(--background-color); */
    padding: 8px 16px;
}

.nav .nav-item a.nav-link.active, .nav .nav-item a.nav-link.active:hover,
.nav .nav-item a.nav-link:hover, .nav .nav-item a.nav-link.active:focus {
    color: #000;
    /* background-color: var(--background-color); */
    /* font-weight: var(--font-weight-400); */
}
/* End sidebar */

/* Text link */
a {
    /*   */
    line-height: var(--line-height-20);
    color: var(--soremo-blue);
    text-decoration: none;
}

a:hover {
    color: var(--soremo-deep-blue);
}
/* End text link */

/* Input, select, textarea, button */
.form-group input.form-control, .form-group select.form-control {
    padding: 12px 4px 12px 12px;
    color: #000;
    border: 1px solid var(--soremo-border);
    background-color: var(--white-color);
    border-radius: 4px;
    height: auto;
}

.form-group select.form-control {
    cursor: pointer;
}

.form-textarea textarea {
    border: 1px solid var(--soremo-border);
    padding: 12px 4px 12px 12px;
    border-radius: 4px;
    resize: none;
}

input, select, textarea {
    box-shadow: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.form-group input.form-control:focus, .form-textarea textarea:focus, select:focus-visible {
    border: 1px solid var(--soremo-placeholder);
    outline: none !important;
}

.form-group input.form-control::placeholder, .form-textarea textarea::placeholder {
    color: var(--soremo-placeholder) !important;
}

.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
    outline: 0;
}

.btn.btn--primary, .btn.btn--secondary {

    font-family: var(--font-family-R) !important;
    font-size: 13px !important;
    line-height: 200%;
    background-image: none;
    border-radius: 4px;
    border: none !important;
    padding: 8px 24px !important;
    cursor: pointer;
}

.btn.btn--tertiary {
    font-family: var(--font-family-L) !important;
    font-size: 13px !important;
    line-height: 200%;
    background-image: none;
    border-radius: 4px;
    border: none !important;
    padding: 8px 24px !important;
    cursor: pointer;
}


.btn.btn--primary.btn--disabled, .btn.btn--primary:focus.btn--disabled {
    cursor: not-allowed;
    pointer-events: none;
    background-color: #F0F0F0 !important;
}

.btn.btn--primary, .btn.btn--primary:focus {
    color: #fff !important;
    background-color: var(--soremo-blue) !important;
    min-width: 160px;
}

.btn.btn--primary:hover {
    color: #fff !important;
    background-color: var(--soremo-deep-blue) !important;
}

.btn.btn--secondary, .btn.btn--secondary:focus {
    color: #fff !important;
    background-color: var(--soremo-light-gray) !important;
}

.btn.btn--secondary:hover {
    color: #fff !important;
    background-color: var(--soremo-blue) !important;
}

.btn.btn--tertiary.close-modal-offer, .btn.btn--tertiary.close-modal-offer:focus, .btn.btn--tertiary.close-modal-offer:hover {
    background-color: transparent !important;
    margin-right: 0;
}

.btn.btn--tertiary, .btn.btn--tertiary:focus {
    color: var(--black2-color) !important;
    background-color: #fff !important;
}

.btn.btn--tertiary:hover {
    color: var(--soremo-blue) !important;
    background-color: #fff !important;
}

.btn.btn--primary.disable, .btn.btn--primary.disabled,
.form-group input.form-control.disabled, .form-group select.form-control.disabled {
    pointer-events: none;
    background-color: var(--soremo-border) !important;
    color: var(--soremo-light-gray) !important;
    background-image: none;
}

input.mcalendar {
    cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    margin-left: 8px;
}

input[type=number] {
    -moz-appearance:textfield;
    appearance:textfield;

}
/* End input, select, textarea, button */

/* Heading, Text */
.heading--40 {
    font-family: var(--font-family-R);
    font-size: var(--font-size-40);
    line-height: var(--line-height-60);
    color: #000;
    font-weight: var(--font-weight-400);
}

.heading--32 {
    font-family: var(--font-family-R);;
    font-size: var(--font-size-32);
    line-height: var(--line-height-48);
    color: #000;
    font-weight: var(--font-weight-400);
}

.heading--24, .heading--wrap {
    font-family: var(--font-family-R);;
    font-size: var(--font-size-24);
    line-height: var(--line-height-36);
    color: #000;
    font-weight: var(--font-weight-400);
}

.heading--18, .account__form-heading {
    font-family: var(--font-family-R);;
    font-size: var(--font-size-18);
    line-height: var(--line-height-27);
    color: #000;
    font-weight: var(--font-weight-400);
}

.heading--16, .account__form-heading {
    font-family: var(--font-family-R);;
    font-size: var(--font-size-16);
    line-height: var(--line-height-24);
    color: #000;
    font-weight: var(--font-weight-400);
}

.heading--13, .account__field-label {
    font-family: var(--font-family-R);;
    font-size: 13px;
    line-height: var(--line-height-20);
    color: #000;
    font-weight: var(--font-weight-400);
}

.bodytext--13 {
   
    font-size: 13px;
    line-height: var(--line-height-20);
    color: #000;
     
}

.caption--11, .account__field-hint {
   
    font-size: 11px;
    line-height: var(--line-height-17);
    color: #000 !important;
     
}

.label--8 {
   
    font-size: 8px;
    color: #000 !important;
}

.account__jp-astarisk, .blue-label--8 {
   
    font-size: 8px;
    color: var(--soremo-blue);
}

.account__jp-astarisk-op, .grey-label--8 {
   
    font-size: 8px;
    color: var(--soremo-light-gray);
}

.label--8 {
   
    font-size: 8px;
    color: #000;
}

.text--blue {
    color: var(--soremo-blue);
}
/* End heading, text */

/* Checkbox */
.account__field-checkbox-text {
    display: flex;
    align-items: center;
}

input.account__field-checkbox {
    margin-right: 12px;
    margin-top: 0;
    width: 16px;
    height: 16px;
}

.account__field-checkbox-text {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  .account__field-checkbox-text input {
    cursor: pointer;
    height: 0;
    width: 0;
  }

  .checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: rgba(216, 216, 216, 0.0001);
    border: 1px solid var(--soremo-light-gray);
    box-sizing: border-box;
    border-radius: 3px;
  }

  .account__field-checkbox-text input:checked ~ .checkmark {
    background-color: var(--soremo-blue);
    border: none;
  }

  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }

  .account__field-checkbox-text input:checked ~ .checkmark:after {
    display: block;
  }

  .account__field-checkbox-text .checkmark:after {
    left: 5px;
    top: 2px;
    width: 6px;
    height: 9px;
    border: solid var(--background-color);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
/* End checkbox */

/* Modal */
.modal {
    background-color: rgba(0, 0, 0, 0.05) !important;
}

.modal:before {
    height: 0 !important;
    display: block !important;
}

.popup-content {
    margin-inline: auto;

    width: clamp(320px, 80vw, 756px);

    background: rgba(255, 255, 255, 1.0);
    border-radius: 12px;
    border: 1px solid var(--soremo-border);
    padding: 32px 16px;
    box-shadow: 2px 4px 8px 3px rgba(0, 0, 0, 0.10);
}

.popup-content .popup-header {
    position: relative;
}

.popup-title, .modal-title {
    font-size: var(--font-size-16);
    font-weight: var(--font-weight-400);
    line-height: var(--line-height-24);
    color: #000;
    margin: 0;
}

.popup-close {
    position: absolute;
    right: 0;
    top: 0;
    padding: 0;
    background-color: #fff;
}

.popup-close .icon--sicon-close {
    font-size: var(--font-size-18);
    color: var(--soremo-light-gray);
}

.form-group label.control-label {
    font-size: 11px;
    color: var(--soremo-light-gray);
    line-height: var(--line-height-17);
    padding-bottom: 8px;
}

/* .modal hr {
    margin: 16px 0;
    border: 1px solid #f0f0f0;
} */

.popup-footer {
    text-align: right !important;
}
/* End modal */

/* Input radio */
/* .account__sub-group {
} */

.account__form-group .account__form-multi {
    display: block;
    margin-bottom: 9px;
}

.account__form-group .account__form-multi:last-child {
    margin-bottom: 0;
}

.account__form-group .account__form-multi.account__form-flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.account__form-group .account__form-multi .input-radio {
    display: block;
    position: relative;
    padding-left: 27px;
    font-weight: 300;
    line-height: 20px;
    color: #000;
    font-size: 13px;
}

.input-radio {
    font-weight: 300 !important;
}

.account__form-group .input-radio input:checked ~ .check-mark {
    border: 1px solid var(--soremo-blue);
}

.account__form-group .input-radio .check-mark {
    width: 16px;
    height: 16px;
    border: 1px solid var(--soremo-light-gray);
    top: 2px
}

.account__form-group .input-radio .check-mark:after {
    top: 2px;
    left: 2px;
    width: 10px;
    height: 10px;
}
/* End input radio */

/* Label */
.account__status {
    font-size: 8px;
    padding: 4px 10px;
    border-radius: 4px;
}

.account__status-confirmed {
    color: var(--soremo-blue);
    border: 1px solid var(--soremo-blue);
}

.account__status-normal {
    color: var(--black2-color);
    border: 1px solid var(--black2-color);
}
/* End label */

/* Tag */
.tag {
    padding: 4px 8px;
    border-radius: 4px;
}
.tag--selectable {
    color: var(--soremo-light-gray);
    background-color: #fff;
}

.tag--hover {
    color: #fff;
    background-color: var(--soremo-light-gray);
}

.tag--selected {
    color: var(--black2-color);
    border: 1px solid var(--black2-color);
}
/* End tag */

/* Flex */
.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}
.flex-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}
.flex-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
}
.flex-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
}
/* End flex */

.input-radio {
    width: fit-content;
}

/* Usesage setting */
.hide-action-delete {
    display: none;
}

.active-action-delete {
    display: block !important;
}


.hover-zoom-netflix-prepare {
    transition: 0.3s;
}

.hover-zoom-out-netflix-prepare {
    transition: 0.3s;
}

.hover-zoom-out-netflix-prepare-2 {
    scale: 1.0;
}

.hover-zoom-out-netflix-prepare-3 {
    cursor: default;
}

.hover-zoom-netflix {
    scale: 1.13;

    /* image shadow */
    box-shadow: 2px 4px 10px 0px #E5E5E5;

    border-radius: 6px !important;
    cursor: pointer;
}


.list-topics__content-top video.hover-zoom-netflix {
    border-radius: 8px !important;
    width: 100%;
    max-height: 100% !important;
}

.video-netflix-overlay {
    width: 100vw;
    height: 100vh;
    z-index: 1049;
    position: fixed;
    top: 0;
    left: 0;
}

.list-new-works__media.hover-zoom-netflix video,
.sample-audio-thumbnail.hover-zoom-netflix video {
    width: auto !important;
    height: 70% !important;
    border-radius: 8px 8px 0 0;
    margin: auto;
}

.list-new-works__media.hover-zoom-netflix .list-new-works__content_hover,
.sample-audio-thumbnail.hover-zoom-netflix .list-new-works__content_hover {
    background: white;
    height: calc(30% + 2px) !important;
    padding: 30px;
    border-radius: 0 0 8px 8px;
    overflow-y: scroll;
}

.list-new-works__media.hover-zoom-netflix.no-detail video,
.sample-audio-thumbnail.hover-zoom-netflix.no-detail video {
    width: auto !important;
    height: 100% !important;
}

.list-new-works__media.hover-zoom-netflix.no-detail .list-new-works__content_hover,
.sample-audio-thumbnail.hover-zoom-netflix.no-detail .list-new-works__content_hover {
    height: 0 !important;
}

.list-new-works__content_hover .list-new-works__title {
    max-width: 500px;
}

.list-new-works__content_hover .list-new-works__title__created-year {
    max-width: 100px;
    padding-bottom: 4px;
    margin-left: 8px;
}

.list-new-works__content_hover .list-new-works__heading {
    display: flex;
    align-items: end;
    margin-bottom: 16px;
}

.list-new-works__content_hover .list-new-works__artist {
    margin-bottom: 8px;
}

.list-new-works__content_hover .list-new-works__credit {
    margin-bottom: 16px;
    line-height: 22px;
    font-weight: 400;
    line-break: anywhere;
    white-space: pre-line;
}

.list-new-works__content_hover .list-new-works__desc {
    line-break: anywhere;
    white-space: pre-line
}

.list-new-works__content_hover::-webkit-scrollbar {
    background-color: #fff;
    width: 16px;
}

/* background of the scrollbar except button or resizer */
.list-new-works__content_hover::-webkit-scrollbar-track {
    background-color: #fff;
    border-radius: 8px;
}

/* scrollbar itself */
.list-new-works__content_hover::-webkit-scrollbar-thumb {
    background-color: #f0f0f0;
    border-radius: 16px;
    border: 4px solid #fff;
}

/* set button(top and bottom of the scrollbar) */
.list-new-works__content_hover::-webkit-scrollbar-button {
    display: none;
}

.video-placeholder {
    min-width: 300px;
}

.video-newwork-placeholder {
    padding-top: 144px;
    min-width: 256px;
}
