/*
Animation Key Frame
*/
@keyframes fade_in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes flash {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes slide_down_30 {
    0% {
        max-height: 0;
    }
    100% {
        max-height: 30vh;
    }
}

@keyframes slide_down {
    0% {
        max-height: 0;
    }
    100% {
        max-height: 100vh;
    }
}

@keyframes slide_up {
    0% {
        max-height: 100vh;
    }
    100% {
        max-height: 0;
    }
}

@keyframes fade_in_up {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

/*
Font Set
*/

@font-face {
    font-display: swap;
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 400;
    src: url("../style/font/notosans_jp_400.woff") format(‘woff’), url("../style/font/notosans_jp_400.woff2") format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 700;
    src: url("../style/font/notosans_jp_700.woff") format(‘woff’), url("../style/font/notosans_jp_700.woff2") format('woff2');
}

/*
Global Set
*/

html {
    box-sizing: border-box;
    font-size: 100%;
    height: 100%;
}

*,
::after,
::before {
    box-sizing: inherit;
}

*{
    word-break: break-all;
}

article,
aside,
b,
body,
caption,
div,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
html,
i,
iframe,
img,
label,
li,
nav,
object,
ol,
p,
section,
span,
strong,
table,
tbody,
td,
th,
thead,
time,
tr,
ul,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: 0 0;
}

article,
aside,
footer,
header,
menu,
nav,
section {
    display: block;
}

li,
nav ul {
    list-style: none;
}

a {
    margin: 0;
    padding: 0;
    background: 0 0;
    text-decoration: none;
    color: #000;
    cursor: pointer;
}

a:hover {
    opacity: 0.8;
    transition: all 0.2s ease-in-out;
    color: #f28f1b;
}

a:hover .object_icon {
    background-color: #f28f1b;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #c3c3c3;
    margin: 16px 0;
    margin: 1rem 0;
    padding: 0;
}

input,
select {
    vertical-align: middle;
}

input[type=checkbox] {
    border: 0;
}
input[type=radio] {
    border: 0;
    margin-left: 12px;
    margin-left: 0.75rem;
}

input[type=radio]:first-child {
    margin-left: 0;
}

input,
textarea {
    border-radius: 0;
    border: 1px solid #c3c3c3;
    font-size: 16px;
    font-size: 1rem;
    padding: 5px;
}

textarea {
    width: 100%;
}

img {
    vertical-align: bottom;
    border-style: none;
}

label {
    padding: 0 4px;
}

body {
    font-family: 'Noto Sans JP',"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 400;
    font-size: 14px;
    font-size: 0.875rem;
    min-height: 100%;
    color: #040000;
    line-height: 1.7;
    position: relative;
    display: flex;
    flex-direction: column;
}

main {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 110px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    flex: 1;
}

main::after {
    clear: both;
    content: none;
    display: block;
}

@media screen and (max-width:1080px) {
    main{
        flex-wrap: wrap;
        padding-top: 85px;
    }
}


section {
    width: 740px;

}

@media screen and (max-width:1079px) {
    
    main{
        width: 100%;
    }
    
    section {
        width: 90%;
        float: none;
        margin: 0 auto;
    }

}

/*
Option
*/

.link_a {
    padding-right: 12px;
    color: #1c4dae;
    font-weight: 700;
}

.bold {
    font-weight: 700;
}

.margin_right {
    margin-right: 8px;
    margin-right: 0.5rem;
}

.margin_left {
    margin-left: 8px;
    margin-left: 0.5rem;
}

.margin_left_2 {
    margin-left: 16px;
    margin-left: 1rem;
}

.margin_top {
    margin-top: 8px;
    margin-top: 0.5rem;
}

.margin_top_2 {
    margin-top: 16px;
    margin-top: 1rem;
}

.margin_bottom {
    margin-bottom: 8px;
    margin-bottom: 0.5rem;
}

.margin_bottom_2 {
    margin-bottom: 16px;
    margin-bottom: 1rem;
}

.margin_side_around {
    margin: 0 8px;
    margin: 0 0.5rem;
}

.margin_top_down_around {
    margin: 8px 0;
    margin: 0.5rem 0;
}

.margin_around {
    margin: 8px;
    margin: 0.5rem;
}

.bg_gray {
    background-color: #e8e8e8;
}

.text_red {
    color: #a81818;
}

.text_green {
    color: #097500;
}

.text_blue {
    color: #3469d5;
}

.text_pink {
    color: #e2007d;
}

.text_center {
    text-align: center;
}

.text_right {
    text-align: right;
}


.flex {
    display: flex;
    align-items: center;
}

.flex_between {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.flex_around {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.display_none {
    display: none !important;
}

.display_block {
    display: block;
}

.display_show_anime {
    display: inherit;
    position: relative;
    animation: fade_in_up 0.5s;
}

.discription_show{
    border: 1px solid #ccc;
    padding: 16px;
    padding: 1rem;
    margin: 16px 0;
    margin: 1rem 0;
}


/* 
タイトルデザイン
*/

.title {
    display: flex;
    align-items: normal;
    justify-content: space-between;
    border-bottom: 5px solid #f3f3f3;
    margin-bottom: 8px;
}

.title:has(a){
    align-items: flex-end;
}

.title .icon_set {
    width: 30px;
    margin-right: 4px;
    background-color: #f3f3f3;
    border-radius: 50% 0;
    padding: 8px;
    height: 100%;
}

.title .title_set {
    margin-top: 8px;
    margin-top: 0.5rem;
}

.title .title_set .icon_set {
    width: 40px;
    width: 2.5rem;

}

.title h1 {
    font-size: 18px;
    font-size: 1.13rem;
    padding-left: 8px;
    padding-left: 0.5rem;
}

.title .h2,
.title .h3 {
    margin-top: 16px;
    margin-top: 1rem;
}

.title h2,
.title h3,
.title p {
    font-size: 16px;
    font-size: 1rem;
    padding-left: 8px;
    padding-left: 0.5rem;
    font-weight: 700;
}

.title a {
    font-size: 11px;
    font-size: 0.69rem;
    margin-bottom: 3px;
}

.title div {
    display: flex;
    align-items: center;
}

/* 
Click Event Arrow
*/

span.arrow {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    transition: all 0.2s linear;
}

span.arrow::after {
    position: absolute;
    right: 0;
    top: -5px;
    content: '';
    width: 10px;
    width: 0.625rem;
    height: 10px;
    height: 0.625rem;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
}

.open .arrow:nth-child(2) {
    transform: rotate(90deg);
    animation: all 0.5s;
}

/* 
Animation Slider 設定
*/

.slide_set {
    overflow: hidden;
    position: relative;
    display: none;
    top: -100%;
}

.slide_down_btn {
    cursor: pointer;
    align-items: center;
}

.slide_set {
    cursor: default;
}

.slide_down {
    animation: slide_down 0.75s;
    display: flex;
    flex-wrap: wrap;
    top: 0;
}

.slide_up {
    animation: slide_up 0.5s;
    display: flex;
    top: 0;
}

/* 
Swiper Slider 使用に題する基本設定
ID : slider_main, slider_sub
Class : swiper
 */
.swiper picture,
.swiper picture img {
    width: 100%;
    height: auto;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    color: #777;
    font-size: 20px;
}

#slider_sub {
    margin-top: 4px;
    width: 100%;
}

#slider_sub.swiper {
    border-left: 0;
    border-right: 0;
    box-sizing: border-box;
    padding-bottom: 4px;
    padding-bottom: .25rem;
}

#slider_main picture,
#slider_sub picture {
    border: 1px solid #a2a2a2;
    box-sizing: border-box;
}

#slider_sub,
#slider_sub img,
#slider_sub picture{
    height: 45px !important;
    width: auto !important;
    padding-bottom: 2px;
}
/* 
header 設定
ID : header_container_box
 */


#header_container_box {
    display: block;
    position: relative;
    z-index: 9;
}


.header_container {
    position: fixed;
    width: 100vw;
    height: 95px;
    z-index: 9;
    background-color: #f3f3f3;
    border-bottom: 1px solid #c3c3c3;
}

@media screen and (max-width: 1079px) {
    .header_container {
        height: 70px;
    }
}


.header_container_flex {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

@media screen and (max-width: 1079px) {
    .header_container_flex {
        padding-top: 10px;
    }
}


.header_logo_check p {
    font-weight: 400;
    font-size: 13px;
    font-size: 0.81rem;
    margin-bottom: 4px;
}


#header_right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 15px;
    margin-top: 0.94rem;

}

.header_right_top {
    min-width: 538px;
    display: flex;
    justify-content: space-between;
}

.header_right_top a {
    display: flex;
    align-items: center;
    font-weight: 700;
    padding-right: 10px;
    padding-right: 0.63rem;
}


.header_right_top a:nth-child(2) {
    margin-left: 16px;
    margin-left: 1rem;
}

.header_right_top img {
    display: inline-block;
    width: 29px;
    width: 1.81rem;
    height: 29px;
    height: 1.81rem;
    padding: 2px 5px;
    padding: 0.13rem 0.31rem;
    margin-right: 10px;
}

.header_right_contact {
    border: 3px solid #11a0c2;
}

.header_right_contact img {
    background-color: #11a0c2;
}

.header_right_tal {
    border: 3px solid #f28f1b;
}

.header_right_tal img {
    background-color: #f28f1b;
}

.header_right_nav a {
    margin-top: 5px;
    padding: 5px 10px 10px 5px;
}

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

.header_right_nav a,
.header_right_nav li {
    display: flex;
    align-items: center;
}

.header_right_nav a:hover {
    background-color: #f28f1b;
    color: #fff;
    box-shadow: 0 1px 0 1px #e17f0e inset;
}

.header_right_nav img {
    width: 17px;
    width: 1.06rem;
    height: 17px;
    height: 1.06rem;
    margin-right: 5px;
    margin-right: 0.31rem;
}

.header_right_nav li::after {
    content: "|";
    color: #9e9e9e;
}

.header_right_nav li:last-child::after {
    content: none;
    margin: 0;
}

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

    #header_left {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #header_left p {
        display: none;
    }
}


@media screen and (max-width:1079px) {
    .header_logo_check img {
        width: 100px;
    }

    #header_right {
        display: none;
    }

    .header_logo_check p {
        display: none;
    }

}

/*
Mobile_index_Nav 
header.php & nav-sp.php
*/
#mobile_nav_switch{
    display: none;
}


@media screen and (max-width:1079px) {
    #mobile_nav_switch {
        display: flex;
        width: 40px;
        min-height: 53px;
        position: absolute;
        top: 10px;
        left: 30px;
        z-index: 9;
        flex-direction: column;
        justify-content: center;
    }

    .mobile_nav_btn_line {
        height: 2px;
        width: 35px;
        background-color: #000;
        position: absolute;
        transition: all 0.4s;
    }

    .mobile_nav_btn_line:nth-child(1) {
        top: 6px;
    }

    .mobile_nav_btn_line:nth-child(2) {
        top: 15px;
    }

    .mobile_nav_btn_line:nth-child(3) {
        top: 24px;
    }

    #mobile_nav_switch p {
        position: absolute;
        bottom: 0;
        text-align: center;
    }

    .nav_btn_open .mobile_nav_btn_line:nth-of-type(1) {
        -webkit-transform: translateY(9px) rotate(-45deg);
        transform: translateY(9px) rotate(-45deg);
    }

    .nav_btn_open .mobile_nav_btn_line:nth-of-type(2) {
        opacity: 0;
    }

    .nav_btn_open .mobile_nav_btn_line:nth-of-type(3) {
        -webkit-transform: translateY(-9px) rotate(45deg);
        transform: translateY(-9px) rotate(45deg);
    }

}

/*
Mobile_Nav
nav-sp.php
*/

#mobile_nav_box {
    position: fixed;
    width: 100%;
    left: 0;
    background-color: #f3f3f3;
    overflow: hidden;
}

.mobile_nav_container {
    width: 95%;
    margin: 0 auto;
    height: 100vh;
    overflow: auto;
    padding-top: 80px;
    padding-bottom: 120px;
}

#mobile_nav_top_button {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
}

#mobile_nav_top_button a {
    width: calc(100%/2 - 3px);
    display: flex;
    align-items: center;
}

#mobile_nav_box img {
    padding: 8px 7px 8px 4px;
    margin-right: 8px;
}

#mobile_nav_top_button a:nth-child(1) {
    border: 3px solid #f28f1b;
}

#mobile_nav_top_button a:nth-child(1) img {
    background-color: #f28f1b;
}

#mobile_nav_top_button a:nth-child(2) {
    border: 3px solid #11a0c2;
}

#mobile_nav_top_button a:nth-child(2) img {
    background-color: #11a0c2;
}

#mobile_nav_top_button a:nth-child(3) {
    border: 3px solid #abd7f4;
    margin-top: 10px;
}

#mobile_nav_top_button a:nth-child(3) img {
    background-color: #abd7f4;
}

#mobile_nav_top_button a:nth-child(4) {
    border: 3px solid #bee3c0;
    margin-top: 10px;
}

#mobile_nav_top_button a:nth-child(4) img {
    background-color: #bee3c0;
}

.mobile_nav_slot a{
    display: flex;
    align-items: center;
    font-size: 14px;
    font-size: 0.88rem;
    padding: 8px;
    border-bottom: 3px dotted #c3c3c3;
}


#mobile_nav_box .mobile_nav_slot:last-child {
    border-bottom: 0;
}



/*
sidebar
id : sidebar
*/

#sidebar {
    width: 240px;
}

#sidebar .title {
    display: none;
}

@media screen and (max-width:1079px) {
    #sidebar .title {
        display: block;
        margin-top: 16px;
        margin-top: 1rem;
    }

    #sidebar {
        width: 95%;
        margin: 0 auto;
        float: none;
    }

    #sidebar #sidebar_banner_area,
    #sidebar .sidebar_work_set {
        display: none;
    }
}

#sidebar a {
    width: 100%;
}


#sidebar_banner_area a:hover,
#sidebar_banner_area li a:hover,
#sidebar_banner_area li:hover {
    background-color: #f3f3f3;
    color: #da6041;
}

.sidebar_banner {
    display: flex;
    border: 1px solid #B5B5B5;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    margin-bottom: 16px;
    margin-bottom: 1rem;
}

.sidebar_banner img {
    width: 45px;
    height: auto;
    padding: 4px 0;
}

.sidebar_banner:nth-child(1n+2) {
    margin-top: 8px;
}

.sidebar_banner .sidebar_banner_text {
    width: calc(100% - 45px - 20%);
    padding: 0 8px;
    text-align: center;
}

.sidebar_product_title {
    display: flex;
    align-items: center;
    width: 100%;
    height: 40px;
    height: 2.5rem;
    background-color: #F6D34C;
    overflow: hidden;
    font-weight: 700;
}

.sidebar_product_title::before {
    content: "";
    width: 15px;
    height: 50px;
    height: 3.125rem;
    background-color: #da6041;
    opacity: 0.3;
    margin-right: 8px;
}

.sidebar_product_list a {
    padding: 4px 16px;
    border-bottom: 1px dashed #d4d4d4;
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
    height: 3.13rem;
    font-size: 14px;
    font-size: 0.875rem;
}

.sidebar_product_list li:last-child a {
    border-bottom: 0;
}

.sidebar_product_list a:hover {
    background-color: #f3f3f3;
}

.sidebar_product_list img {
    height: auto;
    padding-right: 16px;
}

@media screen and (max-width:1080px){
#sidebar:has(.title){   
    margin-top: 16px;
    margin-top: 1rem;
}
}
/* 
popup_btn 
使用場所　：　Works
*/

.popup_btn {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}



.popup_close {
    cursor: pointer;

}

.popup_close_top::after {
    content: "\00d7";
    font-size: 25px;
    font-size: 1.5625rem;
    top: 5px;
    right: 15px;
    position: absolute;
}

.popup_close_bottom {
    width: 100%;
    text-align: center;
    border: 1px solid #cdcdcd;
    background-color: #cdcdcd;
    padding: 10px 0;
    color: #575757;
}

.popup_btn img {
    width: 100%;
    height: auto;
    border: 1px solid #f3f3f3;
}

.popup_tum_day {
    background-color: #000000ad;
    padding: 6px 10px;
    color: #fff;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
}


.popup_tum_text_box {
    width: 100%;
    background-color: #000000ad;
    position: absolute;
    bottom: 0;
    max-height: 0;
}

.popup_tum_text {
    color: #fff;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 30px;
    line-height: 1.875rem;
    padding: 6px 16px;
}

.popup_btn:hover .popup_tum_text_box {
    max-height: 120px;
    z-index: 1;
    animation: slide_down 1s;
}

.popup_area,
.popup_close_bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
}

.popup_close_bg{
    background-color: #00000049;
    display: block;
}

.popup_box_set {
    position: relative;
    top: 50%;
    left: 50%;
    overflow: auto;
    transform: translate(-50%, -50%);
    z-index: 11;
    max-width: 650px;
    box-sizing: border-box;
    background: #fff;
    box-shadow: 2px 5px 10px 0 rgba(0,0,0,0.35);
}

.popup_box {
    padding: 50px 16px 30px;
    z-index: 12;
}

.popup_area .swiper {
    width: 100%;
    height: auto;
}

.popup_area table {
    width: 100%;
    padding: 10px;
    border-collapse: collapse;
    margin: 20px auto;
    font-size: 14px;
}

.popup_area table th,
.popup_area table td {
    padding: 7px 16px;
    border: 1px solid #a2a2a2;
}

.popup_area table th{
    background-color: #ececec;
}




/*
footer
id : footer
*/

#footer {
    width: 100%;
    height: 200px;
    background: #f3f3f3;
    padding: 10px 0;
    font-size: 15px;
    font-size: 0.94rem; 
    margin-top: 64px;
    margin-top: 4rem;
}


#footer_box a {
    display: block;
}

.footer_box {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
}


.footer_nav_line {
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 14px;
    font-size: 0.88rem;
}


.footer_nav_line a {
    padding-right: 16px;
    padding-right: 1rem;
    line-height: 32px;
    line-height: 2rem;
    color: #585858;

}

.footer_nav_line a::before {
    content: "|";
    margin-right: 16px;
    margin-right: 1rem;
}


.footer_nav_line a:last-child {
    padding-right: 0;
}

.footer_nav_line a:first-child:before {
    content: none;
}


#footer_company_info {
    display: flex;
    width: 600px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: end;
    margin-top: 10px;
}


#footer_company_info h2 {
    font-size: 17px;
    font-size: 1.06rem;
}

.footer_logo img{
    margin-right: 10px;
}

#footer_company_info a {
    display: flex;
    align-items: center;
}

#footer_company_info a img {
    width: 20px;
    width: 1.25rem;
    height: auto;
    margin-right: 5px;
}

#footer_company_info div:nth-child(2) {
    line-height: 30px;
    line-height: 1.875rem;
}

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

    .footer_connect_btn{
        height: 40px;
        font-size: 16px;
    }

}

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

    #footer{
        height: 100%;
        margin-top: 16px;
        margin-top: 1rem;
    }

    .footer_box,
    #footer_company_info{
        width: 305px;
    }

    #footer_company_info{
        flex-wrap: wrap;
        align-items: center;
    }

    .footer_logo{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 0;
        padding: 1rem 0;
    }

}


/*
#page_top_btn
id : page_top_btn
*/


#page_top_btn {
    position: fixed;
    cursor: pointer;
    border: 1px solid #c3c3c3;
    border-radius: 4px;
    background-color: #f28f1b;
    width: 50px;
    height: 50px;
    right: 50px;
    bottom: 50px;
    z-index: 8;
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
}
#page_top_btn.show {
    opacity: 1;
    transition: opacity 1s, transform 1s;
}

#page_top_btn::after,
#page_top_btn::before {
    border-color: #fff;
    z-index: 999999;
}

#page_top_btn::after {
    top: 20px;
    right: 20px;
    -webkit-transform: rotate(-50deg);
    transform: rotate(-50deg);
}

#page_top_btn::before {
    top: 20px;
    -webkit-transform: rotate(50deg);
    transform: rotate(50deg);
}

@media screen and (max-width:1800px) {
    #page_top_btn {
        right: 15%;
    }
}

@media screen and (max-width:1450px) {
    #page_top_btn {
        right: 13%;
    }
}

@media screen and (max-width:1150px) {
    #page_top_btn {
        right: 5%;
        bottom: 25px;
    }
}


/*
List_num
Class : List_num, noti
*/


.list_num li {
    display: flex;
    align-items: center;
    margin-top: 12px;
    margin-top: 0.75rem;
}

.list_num li:first-child {
    margin-top: 0;
}

.list_num li::before {
    font-size: 16px;
    margin-right: 4px;
    margin-right: 0.25rem;
    display: inline-block;
}


@media screen and (max-width:1079px) {
    .list_num li::before {
        margin-right: 4px;
        margin-right: 0.25rem;
    }
}



.list_num li:nth-child(1)::before {
    content: "① ";
}

.list_num li:nth-child(2)::before {
    content: "② ";
}

.list_num li:nth-child(3)::before {
    content: "③ ";
}

.list_num li:nth-child(4)::before {
    content: "④ ";
}

.list_num li:nth-child(5)::before {
    content: "⑤ ";
}

.list_num li:nth-child(6)::before {
    content: "⑥ ";
}

.list_num li:nth-child(7)::before {
    content: "⑦ ";
}

.list_num li:nth-child(8)::before {
    content: "⑧ ";
}

.list_num li:nth-child(9)::before {
    content: "⑨ ";
}

.list_num li:nth-child(10)::before {
    content: "⑩ ";
}

.list_num li:nth-child(11)::before {
    content: "⑪";
}

.list_num li:nth-child(12)::before {
    content: "⑫ ";
}

.list_num li:nth-child(13)::before {
    content: "⑬ ";
}

.list_num li:nth-child(14)::before {
    content: "⑭ ";
}

.list_num li:nth-child(15)::before {
    content: "⑮ ";
}

.list_num li:nth-child(16)::before {
    content: "⑯ ";
}

.list_num li:nth-child(17)::before {
    content: "⑰ ";
}

.list_num li:nth-child(18)::before {
    content: "⑱ ";
}

.list_num li:nth-child(19)::before {
    content: "⑲ ";
}

.list_num li:nth-child(20)::before {
    content: "⑳ ";
}

.list_num li:first-child:last-child::before {
    content: none;
    margin-right: 0;
}


.list_num li,
.noti li {
    display: flex;
    align-items: normal;
}




/* ページ上段の注意事後 */
.noti{
    position: relative;
    width: 100%;
    border: 1px solid #bf4040;
    margin: 30px 0;
    padding: 26px 16px 16px 16px;
}

.noti .noti_text{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    position: absolute;
    font-size: 16px;
    font-size: 1rem;
    min-width: 80px;
    padding: 0 20px;
    height: 36px;
    top: -18px;
    left: 10px;
    background-color: #bf4040;
}


/* 
Loading img 
使用場所　： Price, Data-import
*/
#loading_img{
    width: 100%;
    text-align: center;
    margin: 16px 0;
    margin: 1rem 0;
    padding-top: 5px;
    padding-top: 0.3125rem;
}


#loading_img .premier{
    font-size: 10px;
    vertical-align:top;
    color: #3f45b4;
    font-weight: 700;
}



/* 
Paging
使用場所　：　Works, news
*/

#paging{
    display: flex;
    width: 100%;
    margin-top: 16px;
    margin-top: 1rem;
    justify-content: center;
}

#paging .page-numbers{
    margin: 0 4px;
    border: 1px solid #777;
    text-align: center;
    padding: 8px 16px;
}

#paging .page-numbers:hover{
    background-color: #c5c5c5;
    color: #fff;
}

#paging .prev,
#paging .next{
    background-color: #f18f2e;
    color: #fff;
    border: 0;
}

#paging .current{
    background-color: #fccf3d;
    font-weight: 700;
}


/* 
breadcrumbs
ID : breadcrumbs
breadcrumbs.php
*/

#breadcrumbs {
    display: flex;
    color: #5c5b5b;
}

#breadcrumbs li::before{
    content: ">";
    margin: 0 8px;
}


#breadcrumbs li:first-child::before{
    content: none;
}

#breadcrumbs li{
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


#breadcrumbs li:nth-child(2):has(+ li){
    max-width: calc(60% - 20px);
}


#breadcrumbs li:first-child{
    width: 100%;
    max-width: 40px;
}



.text_reference {
    color: #c10303;
    margin-top: 8px;
    margin-top: 0.5rem;
}

.title_under_reference_text {
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 26px;
    line-height: 1.625rem;
}


/* 
class : discription
*/

.discription_text{
    padding: 8px 4px;
    padding: 0.5rem 0.25rem;
}