@charset "UTF-8";
.is-w1000 {
    @media screen and (min-width: 768px) {
        width: 1000px;
    }
}
.c-gp__h4 {
    margin-top: 40px;
}

.c-gp {
    > section {
        margin-top: 6.4em;
        > *+section {
            margin-top: 4em;
        }
    }
    @media screen and (max-width: 767px) {
        > section {
            margin-top: 4em;
            > *+section {
                margin-top: 2.4em;
            }
        }
    }
}

.sec {
    > *+section {
        margin-top: 4em;
    }    
    @media screen and (max-width: 767px) {
            > *+section {
                margin-top: 2.4em;
            }
    }
}

.c-image {
    &.-center {
        text-align: center;
    }
    figcaption {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 1em;
    }
    *+& {
        margin-top: 2.4em;
    }
    @media screen and (max-width: 767px) {
        img {
            width: 100%;
            max-width: 100%;
            height: auto;
        }
        figcaption {
            font-size: 15px;
        }
    }
}

/* news*/
.w-sec-news {
	background: #fff;
	padding: 0 0 4em;
    @media screen and (max-width: 767px) {
        padding: 0 0 3.2em;
    }
}
.blk-news-scroll {
	overflow-y: auto;
	max-height: 240px;
    padding-right: 2em;
    &::-webkit-scrollbar {
        width: 8px;
        background: #ddd;
        border-radius: 5px;
    }
    &::-webkit-scrollbar-thumb {
        background: #0087d5;
        width: 6px;
        border-radius: 5px;
    }
}
@media screen and (max-width: 767px) {
	.blk-news-scroll {
		max-height: 14em;
		padding-right: 1em;
	}
}


.list-flow {
    position: relative;
    counter-reset: number 0;
    > li {
        position: relative;
        z-index: 1;
        font-size: 15px;
        color: #000;
        background: #f7f7fd;
        display: grid;
        grid-template-columns: 3em auto;
        align-items: center;
        border: 1px solid #0086d1;
        &::before {
            content: counter(number) ;
            counter-increment: number;
            display: flex;
            height: 100%;
            font-weight: bold;
            justify-content: center;
            align-items: center;
            background: #0086d1;
            color: #fff;
            box-sizing: border-box;
        }

        > * {
            box-sizing: border-box;
            padding-left: 1em;
            height: 100%;
            padding: .8em 1em .8em 2em;
        }
        *+& {
            margin-top: 1.6em;
        }
        .-pink {
            margin-top: .64em;
            &.-small {
                font-size: 13px;
            }
        }
        @media screen and (max-width: 767px) {
            font-size: 14px;
            grid-template-columns: auto;
            > * {
                padding: .8em 1em;
            }
        }
    }
    &::after {
        content: '';
        width: 3.2em;
        height: 100%;
        background: #7FC2E8;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 0;
        opacity: .5;
    }
    &.-green {
        > li {
            border-color: #00a499;
            background: #f8fdfa;
        }
        > li::before {
            background: #00a499;
        }
        &::after {
            background: #A6E2B1;
        }
    }

}
.-pink {
    color: #bf4da5;
}

.list-files {
    li {
        display: grid;
        grid-template-columns: 1.2em auto;
        align-items: center;
        gap: .5em;
        font-feature-settings: "palt"; 
        letter-spacing: .02em;    
        &::before {
            content: "";
            display: block;
            aspect-ratio: 197/229;
            background-size: contain;
        }
        &:has(a[href$=".pdf"])::before {
            background-image: url(/procedure/kaninaikan/parts/img/img_pdf.svg);
        }
        &:has(a[href$=".xlsx"])::before {
            background-image: url(/procedure/kaninaikan/parts/img/img_xls.svg);
        }
        &:has(a[href$=".doc"])::before, &:has(a[href$=".docx"])::before {
            background-image: url(/procedure/kaninaikan/parts/img/img_doc.svg);
        }                
        *+& {
            margin-top: .4em;
        }
        > span > span {
            font-size: 13px;
            padding-left: 1em;
        }
        @media screen and (min-width: 768px) {
            grid-template-columns: 1.2em auto;
        }        
        @media screen and (max-width: 767px) {
            grid-template-columns: 1em auto;
            align-items: flex-start;
            &::before {
                margin-top: .25em;
            }
        }
    }
    & + * {
        margin-top: .5em;
    }
}

.c-filedl {
    display: inline-flex;
    grid-template-columns: 1.2em auto;
    align-items: baseline;
    gap: .5em;
    font-feature-settings: "palt"; 
    letter-spacing: .02em;
    &::before {
        content: "";
        display: block;
        aspect-ratio: 197/229;
        background-size: contain;
        width: 1.2em;
        position: relative;
        top: .25em;
    }
    &:has(a[href$=".pdf"])::before {
        background-image: url(/procedure/kaninaikan/parts/img/img_pdf.svg);
    }
    &:has(a[href$=".xlsx"])::before {
        background-image: url(/procedure/kaninaikan/parts/img/img_xls.svg);
    }
    &:has(a[href$=".doc"])::before, &:has(a[href$=".docx"])::before {
        background-image: url(/procedure/kaninaikan/parts/img/img_doc.svg);
    }    
}

.p-box-destination {
    padding: 1.6em 2em;
    background: #fff;
    margin-top: 1em;
    display: inline-block;
    border: 1px solid #ddd;
    border-radius: 4px;
    &.-border {
        display: block;
        font-size: 18px;
        .hl-destination {
            font-weight: bold;
        }
    }
    @media screen and (max-width: 767px) {
        padding: 1em;
        &.-border {
            margin-top: 2em;
            font-size: 15px;
        }
    }
}
.hl-destination {
    margin-bottom: .64em;
    color: #444;
}
.p-box-venue {
    display: grid;
    grid-template-columns: auto 400px;
    gap: 4em;
    *+& {
        margin-top:4em;
    }
    dl {
        box-sizing: border-box;
        padding: 1em 0;
        border-top: 1px dashed #ddd;
    }
    figure {
        img {
            width: 100%;
            height: auto;
        }
    }
    div {
        padding-bottom: 1em;
        border-bottom: 1px dashed #ddd;
        *+& {
            margin-top: 1em;
        }
    }
    dt {
        color: #444;
    }
    dd {
        margin-top: .25em;
        font-size: 16px;
        font-weight: bold;
        padding-left: .64em;
        list-style: 1.4;
    }
    @media screen and (max-width: 767px) {
        grid-template-columns: 1fr;
        gap: 1em;
        dl {
            padding: .8em 0;
        }
        dd {
            font-size: 14px;
        }
        *+& {
            margin-top: 2em;
        }
    }
}

.p-grid-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .4em .4em;
    > div {
        background: #fafafd;
        padding: 1.6em 2em 2em;
        border-radius: 4px;        
    }
    .c-gp__h4 {
        margin-top: 0;
        .c-h4__tt {
            font-size: 16px;
        }
    }
    @media screen and (max-width: 767px) {
        grid-template-columns: 1fr;
        gap: 2px;
        > div {
            padding: 1em;
        }
        .c-h4__tt {
            font-size: 15px!important;
        }
        .list-files {
            font-size: 14px;
        }
    }
}

.hl-copy-nav {
    font-size: 1.7em;
    color: #0086d1;
    text-align: center;
    @media screen and (max-width: 767px) {
        font-size: 1.4em;
        line-height: 1.4;
        text-align: left;
        br {
            display: none;
        }
    }
}

.pagenav {
    margin-top: 2em;
}
.pagenav_headlines {
    display: flex;
    flex-wrap: wrap;
    gap: .8em;
    box-sizing: border-box;
    font-size: 16px;
    li {
        box-sizing: border-box;
        width: calc((100% - 1.6em) / 3);
        &.-wide {
            width: calc((100% - .8em) / 2);
        }
    }
    a {
        font-family: 'AxisProN-Medium';
        background: #fff;
        border: 1px solid #0086d1;
        box-shadow: 0 2px 0 #0087d5;
        color: currentColor;
        display: flex;
        justify-content: center;
        text-decoration: none;
        padding: 1em 2em;
        border-radius: 4px;
        transition: .3s background, .3s color;
        @media screen and (max-width: 767px) {
            padding: 1em 1em;
            line-height: 1.2;    
        }
        span {
            display: flex;
            gap: 1em;
            align-items: center;
            text-align: center;
            padding-left: 2.1em;
            &::after {
                content: '';
                display: block;
                width: 1.1em;
                aspect-ratio: 1/1;
                background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2236%22%20height%3D%2236%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22%230086d1%22%20stroke-width%3D%222%22%20class%3D%22ai%20ai-CircleChevronDownFill%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M12%201C5.925%201%201%205.925%201%2012s4.925%2011%2011%2011%2011-4.925%2011-11S18.075%201%2012%201zM8.707%209.793a1%201%200%200%200-1.414%201.414l4%204a1%201%200%200%200%201.414%200l4-4a1%201%200%200%200-1.414-1.414L12%2013.086%208.707%209.793z%22%2F%3E%3C%2Fsvg%3E') 50% 50% no-repeat;
                background-size: contain;
                transition: .3s background-image;
            }
            @media screen and (max-width: 767px) {
                width: 100%;
                padding-left: 0;
                position: relative;
                justify-content: center;
                &::after {
                    position: absolute;
                    right: 0;
                }
            }
        }
        @media (hover: hover) {
            &:hover {
                background: #0086d1;
                color: #fff;
                span {
                    &::after {
                        background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2236%22%20height%3D%2236%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22%23fff%22%20stroke-width%3D%222%22%20class%3D%22ai%20ai-CircleChevronDownFill%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M12%201C5.925%201%201%205.925%201%2012s4.925%2011%2011%2011%2011-4.925%2011-11S18.075%201%2012%201zM8.707%209.793a1%201%200%200%200-1.414%201.414l4%204a1%201%200%200%200%201.414%200l4-4a1%201%200%200%200-1.414-1.414L12%2013.086%208.707%209.793z%22%2F%3E%3C%2Fsvg%3E');
                    }
                }
            }
        }
    }
    @media screen and (max-width: 767px) {
        flex-direction: column;
        gap: 1px;
        font-size: 14px;
        li {
            width: 100%!important;
            margin-bottom: 10px;
        }
    }
}

@media screen and (max-width: 767px) {
    .c-gp__tb__in {
        padding: 0;
        width: auto;
    }
    .m-denkiRyoukin__pl__tb {
        margin: 0;
        overflow-x: auto;
    }
    .m-denkiRyoukin__pl__tb__in {
        padding: 0;
        width: max-content;
        > table {
            > thead > tr > th {
                font-size: 14px;

            }
            > tbody > tr > th {
                font-size: 14px;
                padding: 1em;
            }            
            > thead > tr > td,
            > tbody > tr > td {
                font-size: 14px;
                padding: 1em;
                text-align: left;
            }
        }    
    }
}


.c-menu-tab {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(2, 1fr);
    width: 1240px;
    margin: 0 auto;
    > button {
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1em 1em .64em;
        border: none;
        font-size: 20px;
        border-radius: .5em .5em 0 0;
        transition: .3s opacity,.3s background;
        span {
            &::after {
                content: '';
                display: block;
                width: 11px;
                height: 11px;
                box-sizing: border-box;
                border-right: 4px solid #0086d1;
                border-bottom: 4px solid #0086d1;
                transform: rotate(45deg);
                margin: .5em auto 0;               
            }
        }
        &.is-active {
            background: #fff;
        }
        @media (hover: hover) {
            &:not(.is-active):hover {
                opacity: .7;
            }
        }
        @media screen and (max-width: 767px) {
            display: none;
        }
    }
}

.c-nav-toggle {
    display: none;
    @media screen and (max-width: 767px) {
        display: flex;
        padding: 1em;
        border: none;
        border-top: 1px solid #fff;
        width: 100%;
        font-size: 18px;
        font-weight: bold;
        line-height: 1.4;
        background: none;
        color: inherit;
        transition: .3s opacity,.3s background;
        span {
            width: 100%;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
            &::after {
                content: '';
                display: block;
                width: 11px;
                height: 11px;
                box-sizing: border-box;
                border-right: 4px solid #0086d1;
                border-bottom: 4px solid #0086d1;
                transform: rotate(45deg);
            }
        }
        &:last-of-type {
            border-bottom: 1px solid #fff;
        }        
        &.is-active {
            background: #fff;
            border-bottom: 1px solid #eee;
            span {
                &::after {
                    transform: rotate(225deg);
                }
            }
        }
    }
}

.c-menu-tab__contents {
    width: 1240px;
    margin: 0 auto;
    background: #fff;
    border-radius: 0 0 .5em .5em;
    .inner {
        padding-block: 4em;
        width: 1000px;
        margin: 0 auto;
    }
    .c-menu-tab__contents__item {
        display: none;
        &.is-active {
            display: block;
        }
        @media screen and (max-width: 767px) {
            padding: 40px 25px;
            background: #fff;
        }
    }
    @media screen and (max-width: 767px) {
        width: 100%;
        border-radius: 0;
        background: none;
        .inner {
            width: 100%;
            padding: 0;
        }
    }
}

.c-table-contact {
    margin-top: .5em;
    @media screen and (max-width: 767px) {
        thead {
            display: none;
        }
        tbody {
            border-bottom: 1px solid #d6d6d6;
            tr {
                display: block;
                td {
                    padding: 0!important;
                    display: block;
                    padding: 0;
                    text-align: left!important;
                    border-bottom: none!important;
                    &:nth-of-type(1) {
                        &::before {
                            font-size: 14px;
                            background: rgb(219, 244, 249);
                            padding: .5em;
                            content: '担当部署';
                            display: block;
                            font-weight: bold;
                        }
                    }
                    &:nth-of-type(2) {
                        &::before {
                            font-size: 14px;
                            background: rgb(219, 244, 249);
                            padding: .5em;
                            content: '住所';
                            display: block;
                            font-weight: bold;
                        }
                    }
                    &:last-of-type {
                        &::before {
                            font-size: 14px;
                            background: rgb(219, 244, 249);
                            padding: .5em;
                            content: '連絡先';
                            display: block;
                            font-weight: bold;
                        }
                    }    
                    > div {
                        padding: .5em;
                    }                
                }
            }
        }
    }
}

.tableContents {
    td {
        padding-inline: 1em!important;
    }
}