@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');

html {
    font-size: 62.5%;
}

* {
    color: #2A2e39;
}

a {
    text-decoration: none;
}

body {
    -webkit-text-size-adjust: 100%;
    overflow: auto;
    position: relative;
    width: 100vw;
    height: 100%;
    background: #f1f1f1;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.article {
    width: 100vw;
    height: 100%;
    padding: 60px 0;
    overflow: auto;
    background: #f1f1f1;
}

@media screen and (max-width: 1023px) {
    .article {
        padding: 40px 0 50px;
    }
}

.article.white {
    background: #fff;
}

.inner {
    min-width: 1024px;
    margin: 0 auto;
}

/*
========================================
ヘッダー
========================================
*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100vw;
    height: 60px;
    background: #fff;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f1f1f1;
}

@media screen and (max-width: 1023px) {
    .header {
        height: 40px;
        padding: 0 15px;
    }
}

.header_menu {
    margin-left: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}

@media screen and (max-width: 1023px) {
    .header_menu {
        margin: 0;
    }
}

@media screen and (max-width: 1023px) {
    .header_menu {
        justify-content: space-between;
    }
}

.header_menu_icon {
    width: 24px;
    height: 16px;
    margin-right: 10px;
}

@media screen and (max-width: 1023px) {
    .header_menu_icon {
        margin: 0;
    }
}

.header_menu_text {
    font-size: 1.4rem;
}

@media screen and (max-width: 1023px) {
    .header_menu_text {
        display: none;
    }
}

.header_prevContent {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 33%;
    font-size: 1.8rem;
    font-weight: 600;
    padding: 0 0 0 40px;
}

@media screen and (max-width: 1023px) {
    .header_prevContent {
        font-size: 1.5rem;
        padding: 0;
    }
}

.header_prevContent_icon {
    width: auto;
    height: 20px;
    margin-right: 16px;
}

.header_currentContent {
    display: flex;
    justify-content: center;
    width: 33%;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 auto 0 auto;
}

@media screen and (max-width: 1023px) {
    .header_currentContent {
        font-size: 1.5rem;
        justify-content: flex-start;
        margin: 0;
    }

    .header_prevContent+.header_currentContent {
        justify-content: center;
    }
}

.header_process {
    margin: 0 auto;
}

@media screen and (max-width: 1023px) {
    .header_process {
        display: flex;
        margin: 0 auto 0 15px;
    }
}

.header_process_name {
    font-size: 1.6rem;
    font-weight: 600;
}

@media screen and (max-width: 1023px) {
    .header_process_name {
        font-size: 1.3rem;
    }
}

.header_process_time {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 1023px) {
    .header_process_time {
        margin-left: 15px;
    }
}

.header_process_time.hidden {
    visibility: hidden;
}

.header_process_time>img {
    width: 15px;
    height: 15px;
    margin-right: 4px;
}

.header_process_time>span {
    font-size: 1.3rem;
}

@media screen and (max-width: 1023px) {
    .header_process_time>span {
        font-size: 1.2rem;
    }
}

.header_buttons {
    display: flex;
    justify-content: flex-end;
    width: 33%;
    margin: 0;
}

@media screen and (max-width: 1023px) {
    .header_buttons {
        margin: 0 0 0 auto;
    }
}

.header_pause,
.header_video,
.header_user {
    border: none;
    background: none;
    padding: 0;
    display: flex;
    align-items: center;
    color: #000;
    cursor: pointer;
}

.header_pause,
.header_video {
    margin-right: 30px;
}

@media screen and (max-width: 1023px) {

    .header_pause,
    .header_video {
        margin-right: 15px;
    }
}

.header_user {
    margin-right: 10px;
}

@media screen and (max-width: 1023px) {
    .header_user {
        margin: 0;
    }
}

.header_pause_icon,
.header_video_icon,
.header_user_icon {
    width: 24px;
    height: 24px;
    margin-right: 4px;
}

@media screen and (max-width: 1023px) {

    .header_pause_icon,
    .header_video_icon,
    .header_user_icon {
        width: auto;
        height: 15px;
    }
}

.header_pause_name,
.header_video_name,
.header_user_name {
    font-size: 1.4rem;
}

@media screen and (max-width: 1023px) {

    .header_pause_name,
    .header_video_name,
    .header_user_name {
        font-size: 1.2rem;
    }
}

/*
========================================
ナビゲーション
========================================
*/

.gnavOverray {
    display: none;
    width: 100vw;
    height: 100%;
    position: fixed;
    z-index: 99;
    background: rgba(0, 0, 0, 0.6);
}

.gnav {
    position: fixed;
    width: 33%;
    height: calc(100% - 60px);
    top: 60px;
    left: 0;
    z-index: 1001;
    background: #fff;
    transform: translateX(-100%);
    transition: all .4s;
    overflow: auto;
}

@media screen and (max-width: 1023px) {
    .gnav {
        top: 40px;
        height: calc(100% - 40px);
    }
}

.gnav.is-active {
    transform: translateX(0%);
    transition: all .4s;
}

.gnav_user {
    border: none;
    background: none;
    padding: 0;
    display: flex;
    align-items: center;
    color: #000;
}

.gnav_user {
    margin: 0 0 8px 0;
}

@media screen and (max-width: 1023px) {
    .gnav_user {
        margin: 0;
    }
}

.gnav_user_icon {
    width: 24px;
    height: 24px;
    margin-right: 4px;
}

@media screen and (max-width: 1023px) {
    .gnav_user_icon {
        width: auto;
        height: 15px;
    }
}

.gnav_user_name {
    font-size: 1.4rem;
}

@media screen and (max-width: 1023px) {
    .gnav_user_name {
        font-size: 1.2rem;
    }
}

.gnav_info {
    padding: 20px;
}

.gnav_info_name,
.gnav_info_text {
    font-size: 1.6rem;
}

@media screen and (max-width: 1023px) {

    .gnav_info_name,
    .gnav_info_text {
        font-size: 1.4rem;
    }
}

.gnav_info_id {
    font-size: 1.3rem;
}

@media screen and (max-width: 1023px) {
    .gnav_info_id {
        font-size: 1.2rem;
    }
}

.gnav_pause {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 20px;
    background: none;
    border: none;
    border-top: 1px solid #ccc;
    cursor: pointer;
}

.gnav_pause_icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.gnav_pause_text {
    font-size: 1.6rem;
}

@media screen and (max-width: 1023px) {
    .gnav_pause_text {
        font-size: 1.3rem;
    }
}

.gnav_flow {
    border-top: 1px solid #ccc;
    padding: 20px 0;
    font-size: 1.6rem;
}

@media screen and (max-width: 1023px) {
    .gnav_flow {
        font-size: 1.3rem;
    }
}

.gnav_flow_title {
    color: #707070;
    padding: 0 20px;
}

.gnav_flow_item {
    font-weight: 600;
    counter-increment: gnavFlow;
}

.gnav_flow_box {
    width: 100%;
    text-align: left;
    padding: 14px 20px;
    border: none;
    background: none;
    cursor: pointer;
}

.gnav_flow_box::before {
    content: counter(gnavFlow) ". ";
}

.gnav_flow_item.is-active {
    background: #cee3ff;
}


/*
========================================
フッター
========================================
*/

.footer {
    width: 100vw;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    height: auto;
    background: #fff;
    border-top: 1px solid #f1f1f1;
}

.footerNav {
    display: flex;
    justify-content: space-between;
    padding: 0;
}

.footerNav_item {
    width: 25%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 1023px) {
    .footerNav_item {
        height: 50px;
    }
}

.footerNav_item_box {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.footerNav_item_icon {
    display: block;
    width: auto;
    height: 20px;
    margin: 0 0 4px;
}

@media screen and (max-width: 1023px) {
    .footerNav_item_text {
        font-size: 1rem;
        line-height: 1;
        margin: 2px 0 0;
    }
}

/*
========================================
入力ボックス
========================================
*/

.inputBox {
    background: #fff;
    border-radius: 7px;
    width: 360px;
    padding: 32px 24px 24px;
    border: 1px solid #ccc;
}

.inputBox.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.inputBox_label {
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
}

.inputBox_input {
    margin: 8px 0 0;
    width: 100%;
    background: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 1.6rem;
    padding: 8px 16px;
}

.inputBox_validation {
    font-size: 1.2rem;
    color: red;
    margin: 8px 0 0;
}

.inputBox_qr {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 16px 0 0;
}

.inputBox_qr_icon {
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.inputBox_qr_text {
    font-size: 1.4rem;
    color: #000;
    line-height: 1;
    letter-spacing: normal;
}

.inputBox_buttonBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 24px 0 0;
}

.inputBox_button {
    display: flex;
    width: 100%;
    height: 40px;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    border-radius: 3px;
    border: none;
    cursor: pointer;
}

.inputBox_cancel {
    width: 46.66%;
    background: #ccc;
    color: #000;
}

.inputBox_start {
    background: #3269b1;
    color: #fff;
}

.inputBox_cancel+.inputBox_start {
    width: 46.66%;
}

/*
========================================
カテゴリーリスト
========================================
*/

.categoryList {
    width: 810px;
    margin: 0 auto;
    padding: 72px 0;
    overflow: hidden;
    list-style: none;
}

@media screen and (max-width: 1023px) {
    .categoryList {
        width: 100%;
        padding: 15px;
    }
}

.categoryList_item {
    float: left;
    width: 30.86%;
    margin: 3.71% 3.71% 0 0;
}

@media screen and (max-width: 1023px) {
    .categoryList_item {
        width: 48.8%;
        margin: 0 0 15px 2.4%;
    }

    .categoryList_item:nth-of-type(odd) {
        margin-left: 0;
    }
}

.categoryList_item:nth-of-type(1),
.categoryList_item:nth-of-type(2),
.categoryList_item:nth-of-type(3) {
    margin-top: 0;
}

.categoryList_item:nth-of-type(3n) {
    margin-right: 0;
}

.categoryList_item_box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100px;
    padding: 0 24px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 7px;
    cursor: pointer;
}

@media screen and (max-width: 1023px) {
    .categoryList_item_box {
        height: 64px;
    }
}

.categoryList_item_icon {
    width: 40px;
    height: 32px;
    margin-right: 14px;
}

@media screen and (max-width: 1023px) {
    .categoryList_item_icon {
        width: 35px;
        height: 28px;
    }
}

.categoryList_item_name {
    text-align: left;
    font-size: 1.6rem;
}

@media screen and (max-width: 1023px) {
    .categoryList_item_name {
        font-size: 1.5rem;
    }
}

/*
========================================
コンテンツリスト
========================================
*/

.contentList {
    width: 810px;
    margin: 0 auto;
    padding: 72px 0;
    overflow: hidden;
    list-style: none;
}

@media screen and (max-width: 1023px) {
    .contentList {
        width: 100%;
        padding: 15px 15px 0;
    }
}

.contentList_item {
    float: left;
    width: 30.86%;
    margin: 3.71% 3.71% 0 0;
}

@media screen and (max-width: 1023px) {
    .contentList_item {
        width: 48.8%;
        margin: 0 0 15px 2.4%;
    }

    .contentList_item:nth-of-type(odd) {
        margin-left: 0;
    }
}

.contentList_item:nth-of-type(1),
.contentList_item:nth-of-type(2),
.contentList_item:nth-of-type(3) {
    margin-top: 0;
}

.contentList_item:nth-of-type(3n) {
    margin-right: 0;
}

.contentList_item_box {
    width: 100%;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: center;
    padding: 24px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 7px;
    cursor: pointer;
}

@media screen and (max-width: 1023px) {
    .contentList_item_box {
        padding: 12px 24px;
    }
}

.contentList_item_name {
    width: 100%;
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

@media screen and (max-width: 1023px) {
    .contentList_item_name {
        font-size: 1.5rem;
    }
}

.contentList_item_desc {
    width: 100%;
    display: block;
    font-size: 1.4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

@media screen and (max-width: 1023px) {
    .contentList_item_desc {
        font-size: 1.3rem;
    }
}

.contentList_item_time,
.contentList_item_version {
    width: 100%;
    display: block;
    text-align: left;
    font-size: 1.3rem;
    color: #707070;
}

/*
========================================
コンテンツ
========================================
*/

.content_notfound {
    font-size: 1.8rem;
    position: absolute;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contentWrap {
    display: flex;
    min-height: 100%;
}

.contentImage {
    position: absolute;
    width: 70.31%;
    height: calc(100% - 120px);
    background: #000;
}

@media screen and (max-width: 1023px) {
    .contentImage {
        height: calc(100% - 90px);
    }
}

.contentImage_slider,
.contentImage_box {
    position: relative;
    height: 100%;
}

.contentImage_slider .slick-list,
.contentImage_slider .slick-track {
    height: 100%;
}

.contentImage_image {
    width: auto;
    max-height: calc(100% - 7.8rem);
    margin: 7.8rem auto 0;
}

@media screen and (max-width: 1023px) {
    .contentImage_image {
        max-height: calc(100% - 4.8rem);
        margin-top: 4.8rem;
    }
}

.contentImage_caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 7.8rem;
    font-size: 2rem;
    background: #000;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 1023px) {
    .contentImage_caption {
        height: 4.8rem;
        font-size: 1.6rem;
    }
}

.contentImagePagerWrap {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 9999px;
    padding: 10px 24px;
    list-style: none;
    z-index: 0;
}

@media screen and (max-width: 1023px) {
    .contentImagePagerWrap {
        bottom: 15px;
    }
}

.contentImagePager {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.contentImagePagerBox {
    position: relative;
}

.contentImagePager>li {
    position: relative;
    display: flex;
    align-items: center;
    flex-flow: column;
    justify-content: center;
    counter-increment: pagerItem;
    margin-left: 28px;
    z-index: 2;
    counter-increment: sliderDot;
}

.contentImagePager>li:first-of-type {
    margin-left: 0;
}

.contentImagePagerBox::before,
.contentImagePagerBox .progressBar {
    position: absolute;
    z-index: -1;
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    top: 7px;
    left: 0;
    z-index: -1;
    background: #707070;
}

.contentImagePagerBox .progressBar {
    width: 0;
    z-index: 0;
    background: #3269b1;
    transition: width .15s;
}

.contentImagePager li button {
    display: block;
    width: 15px;
    height: 15px;
    box-sizing: border-box;
    border-radius: 100%;
    background: #fff;
    border: 4px solid #3269b1;
    padding: 0;
    margin: 0 auto 1.5rem;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    background: #3269b1;
    transition: all .3s;
    cursor: pointer;
}

.contentImagePager .slick-active button {
    background: #fff;
}

.contentImagePager .slick-active~li>button {
    background: #707070;
    border-color: #707070;
}

.contentImagePager li::after {
    position: absolute;
    bottom: -0.4rem;
    font-size: 1.1rem;
    white-space: nowrap;
    content: counter(sliderDot) "枚目";
}

.contentDetail {
    width: 29.69%;
    margin-left: 70.31%;
    padding: 24px;
    background: #fff;
}

@media screen and (max-width: 1023px) {
    .contentDetail {
        padding: 12px;
    }
}

.contentFlow_title {
    font-size: 1.6rem;
}

@media screen and (max-width: 1023px) {
    .contentFlow_title {
        font-size: 1.2rem;
    }
}

.contentFlow_item {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 20px 0 0;
    line-height: 1;
}

@media screen and (max-width: 1023px) {
    .contentFlow_item {
        font-size: 1.3rem;
        margin: 12px 0 0;
    }
}

.contentFlow_item input {
    display: none;
}

.contentFlow_item label {
    display: block;
    position: relative;
    padding-left: 22px;
    line-height: 1;
    cursor: pointer;
    padding-left: 20px;
    line-height: 1.2;
}

.contentFlow_item label::before,
.contentFlow_item label::after {
    position: absolute;
    left: 0;
    top: 0.15rem;
    content: "";
    display: block;
    width: 14px;
    height: 14px;
}

.contentFlow_item label::before {
    border: 2px solid #3269b1;
    border-radius: 1px;
}

.contentFlow_item label::after {
    display: none;
    background: url(../images/user/icon_check.svg);
}

.contentFlow_item input:checked+label::after {
    display: block;
}

.contentFlow + .contentParts {
    margin: 50px 0 0;
}

@media screen and (max-width: 1023px) {
    .contentParts {
        margin: 15px 0 0;
    }
}

.contentParts_text_num,
.contentParts_text_category {
    display: block;
    font-size: 1.6rem;
}

@media screen and (max-width: 1023px) {

    .contentParts_text_num,
    .contentParts_text_category {
        font-size: 1.2rem;
    }
}

.contentParts_text_name {
    display: block;
    font-size: 2.1rem;
}

@media screen and (max-width: 1023px) {
    .contentParts_text_name {
        font-size: 1.4rem;
    }
}

.contentParts_image {
    margin: 16px 0 0;
}

@media screen and (max-width: 1023px) {
    .contentParts_image {
        margin: 8px 0 0;
    }
}

.contentFooter {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-top: 1px solid #f1f1f1;
    padding: 0 12px 0 24px;
}

@media screen and (max-width: 1023px) {
    .contentFooter {
        bottom: 0;
        height: 50px;
    }
}


.contentFooter_costs {
    font-size: 1.3rem;
    color: #707070;
    white-space: nowrap;
    margin: 0 15px 0 0;
}

@media screen and (max-width: 1023px) {
    .contentFooter_costs {
        font-size: 1.1rem;
    }
}

.contentFooter_time {
    font-size: 1.5rem;
    color: #707070;
    white-space: nowrap;
    margin: 0 15px 0 0;
}

@media screen and (max-width: 1023px) {
    .contentFooter_time {
        font-size: 1.4rem;
    }
}

.contentFooter_time em {
    font-style: normal;
    font-size: 3.1rem;
    font-family: 'Roboto', sans-serif;
    color: #000;
}

@media screen and (max-width: 1023px) {
    .contentFooter_time em {
        font-size: 2.6rem;
    }
}

.contentFooter_timeBar {
    position: relative;
    width: 100%;
    height: 12px;
    background: #F8DFD1;
    margin: 0.75rem auto 0;
}

.contentFooter_timeBar.hidden {
    visibility: hidden;
}

.contentFooter_timeBar_count {
    font-size: 1.5rem;
    position: absolute;
    bottom: 100%;
    right: 4px;
    font-family: 'Roboto', sans-serif;
    color: #3269B1;
}

@media screen and (max-width: 1023px) {
    .contentFooter_timeBar_count {
        font-size: 1.2rem;
    }
}

.contentFooter_timeBar_count.is-over {
    color: #9C1B03;
}

.contentFooter_timeBar_average {
    position: relative;
    height: 12px;
    background: #D8DFEE;
}

.contentFooter_timeBar_bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 12px;
    background: #3269B1;
}

.contentFooter_timeBar_bar.is-over {
    background: #9C1B03;
}

.contentFooter_timeBar_average::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background: #9C1B03;
}

.contentFooter_photo {
    border: none;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 0 24px;
    white-space: nowrap;
    cursor: pointer;
}

.contentFooter_photo_icon {
    width: 30px;
    height: auto;
    margin-right: 8px;
}

@media screen and (max-width: 1023px) {
    .contentFooter_photo_icon {
        width: auto;
        height: 20px;
        margin-right: 15px;
    }
}

.contentFooter_photo_text {
    font-size: 1.5rem;
}

@media screen and (max-width: 1023px) {
    .contentFooter_photo_text {
        display: none;
    }
}

.contentFooter_photo_input {
    display: none;
}

.contentFooter_buttonBox {
    display: flex;
    margin: 0 0 0 24px;
}

@media screen and (max-width: 1023px) {
    .contentFooter_buttonBox {
        margin: 0;
    }
}

.contentFooter_button {
    border: none;
    background: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    width: 190px;
    height: 36px;
    border-radius: 9999px;
    border: 1px solid #707070;
}

@media screen and (max-width: 1023px) {
    .contentFooter_button {
        width: 80px;
        height: 30px;
    }
}

.contentFooter_button_icon {
    width: 12px;
    height: auto;
}

@media screen and (max-width: 1023px) {
    .contentFooter_button_icon {
        width: 10px;
    }
}

.contentFooter_button_text {
    font-size: 1.5rem;
    margin: 0 14px;
}

@media screen and (max-width: 1023px) {
    .contentFooter_button_text {
        font-size: 1.2rem;
        margin: 0 8px;
    }
}

.contentFooter_button.next {
    background: #3269b1;
    border-color: #3269b1;
    margin-left: 10px;
}

.contentFooter_button:disabled {
    background: #ccc;
    border-color: #ccc;
    cursor: inherit;
}

.contentFooter_button:disabled .contentFooter_button_icon svg path {
    fill: #fff;
}

.contentFooter_button:disabled .contentFooter_button_text {
    color: #fff;
}

@media screen and (max-width: 1023px) {
    .contentFooter_button.next {
        width: 180px;
    }
}


.contentFooter_button.next .contentFooter_button_text {
    color: #fff;
}



/*
========================================
ダイアログ
========================================
*/

.dialog {
    min-width: 420px;
    max-height: 80%;
    overflow: auto;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 7px;
    padding: 32px;
}

@media screen and (max-width: 1023px) {
    .dialog {
        padding: 24px;
    }
}

.dialog_mainText {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 16px;
}

.dialog_text {
    font-size: 1.4rem;
}

@media screen and (max-width: 1023px) {
    .dialog_text {
        font-size: 1.4rem;
    }
}

.dialog_uploadImage {
    margin: 0 0 16px;
}

.dialog_uploadImage img {
    width: 100%;
    height: auto;
}

.dialog_uploadInput {
    margin: 8px 0 0;
}

.dialog_radio {
    list-style: none;
    padding-left: 16px;
}

.dialog_radio_item {
    margin: 16px 0 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 1.6rem;
}

@media screen and (max-width: 1023px) {
    .dialog_radio_item {
        margin: 8px 0 0;
    }
}

.dialog_radio_item:first-child {
    margin: 0;
}

.dialog_radio input {
    margin-right: 8px;
}

.dialog_buttonBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: 46px auto 0;
}

@media screen and (max-width: 1023px) {
    .dialog_buttonBox {
        margin: 24px auto 0;
    }
}

.dialog_button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46.66%;
    height: 40px;
    font-size: 1.4rem;
    background: #ccc;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.dialog_button_ok {
    background: #3269b1;
    color: #fff;
}


.dialog_button_ok:disabled {
    background: #ccc;
    color: #2A2e39;
}

.upload_image_box {
    margin: 24px 0 0;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.upload_image_box input {
    display: none;
}

.upload_image_box .dialog_button {
    padding: 0 1em;
    margin: 0 0 0 auto;
    width: auto;
}

.upload_image_box p {
    font-size: 1.2rem;
    margin-right: 1em;
}


/*
========================================
中断中の作業
========================================
*/

@media screen and (max-width: 1023px) {
    .suspendedList {
        padding: 0 15px 15px;
    }
}

.suspendedList_item {
    position: relative;
    width: 76.17%;
    margin: 32px auto;
    display: flex;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 7px;
    padding: 24px;
}

@media screen and (max-width: 1023px) {
    .suspendedList_item {
        width: 100%;
        margin: 15px 0;
        padding: 15px 20px;
    }
}

.suspendedList_item form {
    width: 100%;
}

.suspendedList_item_box {
    display: flex;
    justify-content: space-between;
    text-align: left;
    width: 100%;
    background: none;
    border: 0;
    cursor: pointer;
}

.suspendedList_item_box > button {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
}

.suspendedList_item_rightBox {
    display: flex;
    flex-flow: column;
}

.suspendedList_item_id {
    font-size: 1.6rem;
    font-weight: 600;
}

@media screen and (max-width: 1023px) {
    .suspendedList_item_id {
        font-size: 1.5rem;
    }
}

.suspendedList_item_desc {
    font-size: 1.4rem;
    margin: 10px 0 0;
}

@media screen and (max-width: 1023px) {
    .suspendedList_item_desc {
        font-size: 1.3rem;
    }
}

.suspendedList_item_name {
    font-weight: 600;
}

.suspendedList_item_time {
    font-size: 1.4rem;
    margin: 0 0 auto;
}

@media screen and (max-width: 1023px) {
    .suspendedList_item_time {
        font-size: 1.2rem;
    }
}


.suspendedList_item_status {
    font-size: 1.4rem;
    font-weight: 600;
    color: #707070;
    margin: 10px 0 0;
}

@media screen and (max-width: 1023px) {
    .suspendedList_item_status {
        font-size: 1.2rem;
    }
}

.suspendedList_item_username {
    display: flex;
    align-items: center;
    position: absolute;
    right: calc(24px + 8rem);
    bottom: 24px;
    border: none;
    background: none;
    font-size: 1.3rem;
    text-align: right;
    white-space: nowrap;
}

.suspendedList_item_username img {
    width: 16px;
    margin: 0 4px 0 auto;
}

.suspendedList_item_delete {
    position: absolute;
    right: 24px;
    bottom: 24px;
    margin: auto 0 0;
    border: none;
    background: none;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    white-space: nowrap;
}

.suspendedList_item_delete_icon {
    width: 16px;
    margin: 0 4px 0 auto;
}

@media screen and (max-width: 1023px) {
    .suspendedList_item_delete_icon {
        width: 14px;
    }
}

.suspendedList_item_delete_text {
    font-size: 1.3rem;
}

@media screen and (max-width: 1023px) {
    .suspendedList_item_delete_text {
        font-size: 1.1rem;
    }
}

/*
========================================
作業記録
========================================
*/

.recordNumText {
    height: 60px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

@media screen and (max-width: 1023px) {
    .recordNumText {
        height: 30px;
        font-size: 1.2rem;
    }
}

.recordList {
    border-top: 1px solid #f1f1f1;
    background: #fff;
    list-style: none;
    padding: 0;
}

@media screen and (max-width: 1023px) {
    .recordList {}
}

.recordItem {
    border-bottom: 1px solid #f1f1f1;
}

.recordItem_inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 740px;
    margin: 0 auto;
    height: 90px;
}

@media screen and (max-width: 1023px) {
    .recordItem_inner {
        height: 72px;
        padding: 0 15px;
    }
}

.recordItem_leftBox>p {
    line-height: 1;
}

.recordItem_name {
    font-size: 1.4rem;
    font-weight: 600;
}

@media screen and (max-width: 1023px) {
    .recordItem_name {
        font-size: 1.3rem;
    }
}

.recordItem_id {
    font-size: 1.4rem;
    font-weight: 600;
    color: #707070;
}

@media screen and (max-width: 1023px) {
    .recordItem_id {
        font-size: 1.3rem;
    }
}

.recordItem_flow {
    margin-top: 10px;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1;
}

@media screen and (max-width: 1023px) {
    .recordItem_flow {
        font-size: 1.4rem;
    }
}

.recordItem_rightBox {
    margin: 0 100px 0 auto;
}

.recordItem_rightBox_row {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.recordItem_rightBox_row:not(:first-child) {
    margin-top: 10px;
}

.recordItem_imageBox {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    width: 80px;
    height: 80px;
    padding: 0;
    cursor: pointer;
}

@media screen and (max-width: 1023px) {
    .recordItem_imageBox {
        width: 72px;
        right: 15px;
    }
}

.recordItem_image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.recordItem_date {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
}

@media screen and (max-width: 1023px) {
    .recordItem_date {
        font-size: 1.4rem;
    }
}

.recordItem_totalTime {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
    margin-left: 10px;
}

.recordItem_userName {
    font-size: 1.2rem;
    color: #707070;
    line-height: 1;
}

.recordItem_time {
    font-size: 1.4rem;
    font-weight: 600;
    color: #707070;
    line-height: 1;
    margin-left: 12px;
}

/*
========================================
設定一覧
========================================
*/

.settingCategory {
    list-style: none;
    padding: 0;
}

.settingCategory_item {
    position: relative;
    width: 74.21%;
    max-width: 760px;
    margin: 0 auto;
    border-bottom: 1px solid #f1f1f1;
}

@media screen and (max-width: 1023px) {
    .settingCategory_item {
        width: 100%;
    }
}

.settingCategory_item_box {
    display: block;
    position: relative;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 24px 32px 24px 10px;
    cursor: pointer;
}

@media screen and (max-width: 1023px) {
    .settingCategory_item_box {
        padding: 16px 24px;
    }
}

.settingCategory_item_title {
    display: block;
    font-size: 2.1em;
    font-weight: 600;
    line-height: 1;
}

@media screen and (max-width: 1023px) {
    .settingCategory_item_title {
        font-size: 1.6em;
    }
}

.settingCategory_item_desc {
    display: block;
    font-size: 1.3em;
    color: #707070;
    margin-top: 8px;
}

@media screen and (max-width: 1023px) {
    .settingCategory_item_desc {
        font-size: 1.2em !important;
    }
}

.settingCategory_item_arrow {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

/*
========================================
設定詳細
========================================
*/


.settingSection {
    margin: 0 auto;
    padding: 24px 0 0;
    border-bottom: 1px solid #f1f1f1;
}

.settingSection_title {
    width: 80%;
    margin: 0 auto;
    color: #3269B1;
}

.settingList {
    width: 80%;
    list-style: none;
    padding: 24px 0;
    margin: 0 auto;
}

.settingList_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.settingList_item:not(:first-child) {
    margin-top: 40px;
}


.settingList_item_leftBox {
    max-width: calc(100% - 75px);
}

.settingList_item_text {
    font-size: 1.8rem;
    font-weight: 600;
}

.settingList_item_status {
    font-size: 1.5rem;
    color: #707070;
}

@media screen and (max-width: 1023px) {
    .settingList_item_text {
        font-size: 1.6rem;
    }
}

.settingList_button input[type="checkbox"] {
    display: none;
}

.settingList_button label,
.settingList_button button {
    cursor: pointer;
    position: relative;
    display: block;
    border: none;
    box-sizing: border-box;
    text-align: left;
    border-radius: 9999px;
    line-height: 1;
    width: 60px;
    height: 26px;
    background: #999;
}

.settingList_button label::before,
.settingList_button label::after,
.settingList_button button::before,
.settingList_button button::after {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
}

.settingList_button label::before,
.settingList_button button::before {
    content: "ON";
    left: 11px;
    opacity: 0;
}

.settingList_button label::after,
.settingList_button button::after {
    content: "OFF";
    right: 11px;
    opacity: 1;
}

.settingList_button .settingList_button_box {
    position: absolute;
    top: 2px;
    left: 2px;
    display: inline-block;
    height: 22px;
    width: 22px;
    background: #fff;
    transition: .3s;
    border-radius: 100%;
}

.settingList_button .settingList_button_check:checked+label .settingList_button_box {
    transform: translateX(34px);
}

.settingList_button .settingList_button_check:checked+label {
    background: #32B161;
}

.settingList_button .settingList_button_check:checked+label::before {
    opacity: 1;
}

.settingList_button .settingList_button_check:checked+label::after {
    opacity: 0;
}

.setting_back {
    width: 120px;
    height: 40px;
    background-color: #707070;
    color: #fff;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin: 30px auto;
}

/*
========================================
ポップアップ
========================================
*/
/* モーダル全体(背景＋本体) */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.modal_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.modal_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: auto;
    max-width: 90%;
    max-height: 90%;
}

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

.modal_close {
    position: absolute;
    top: 24px;
    right: 24px;
    border: none;
    padding: 0;
    background: none;
    cursor: pointer;
}

@media screen and (max-width: 1023px) {
    .modal_close {
        top: 15px;
        right: 15px;
    }
}


body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
}


.orientOverray {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.orientOverray.is-active {
    display: flex;
    flex-flow: column;
}

.orientOverray_image {
    display: block;
    width: 50%;
    margin-bottom: 24px;
}

.orientOverray_text {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
}

.qrBox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
}

.qrBox_control {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    text-align: center;
    justify-content: center;
    display: none;
}

.qrBox_controlOpen {
    width: 28px;
    height: 28px;
    position: absolute;
    right: 10px;
    top: 50px;
    background: none;
    padding: 0;
    outline: none;
    border: none;
    display: none;
}

.qrBox_controlOpen > img {
    height: 100%;
    width: 100%;
}

.qrBox_control select {
    font-size: 2rem;
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 0.5em 2em;
    border: 0;
    outline: none;
    border-radius: 0;
}

.qrBox_view {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.qrBox_view video,
.qrBox_view canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
}


.qrBox_view video {
    visibility: hidden;
    opacity: 0;
}

.qrBox_loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    color: #fff;
    font-size: 1.6rem;
}
