/* title */
.sub-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}

/* alert */
.alert {                
    position: relative;
    padding: 24px 24px;
    margin: 12px 0;
    color: #333;
    background-color: #dbdbdb;
    border: 1px solid #dbdbdb;
    border-radius: 5px;
    font-size: 18px;
}

/* reference mark */
.reference-mark {
    /* position: relative; */
    vertical-align: super;
    font-size: 12px;
}

.reference-info {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.reference-info .first-child {
    font-size: 16px;
    color: #444;
    margin-bottom: 12px;
}

/* .reference-mark::before {
    content: "[";
    font-size: 70%;
    position: relative;
    top: -0.2em;
}

.reference-mark::after {
    content: "]";
    font-size: 70%;
    position: relative;
    top: -0.2em;            
} */



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

.text-under-line {
    text-decoration: underline;
}

.text-gray {
    color: #555;
}

/* flex */
.g-lg {
    gap: 48px !important;
}

.g-m {
    gap: 32px !important;
}

.gx-m {
    column-gap: 32px;
}
.gy-m {
    row-gap: 32px;
}

.flex-row {
    display: flex;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

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

.justify-content-center {    
    justify-content: center;
}
.justify-content-start {    
    justify-content: start;
}
.justify-content-between {    
    justify-content: space-between;
}

/* accordion */
/* accordion */
.ac {    
    display: flex;
    flex-direction: column;
    gap: 12px;
}
  
.ac-label {
    background-color: #122c6a;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  
    font-size: 18px !important;
    font-weight: bold;
    
    padding: 18px;
    transition: background-color .15s ease-in-out;
}
  
.ac-input:checked+.ac-label .accordion-icon{
    content: "-";
}
  
.ac-input {
    display: none;
}
  
.ac-sub {
    margin-top: -1px
}
  
.ac-text,
.ac-sub-text {
    font-size: 14px !important;/* DO NOT REMOVE - affects sub text size */
    height: 0;
    margin-top: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity .5s ease-in-out;
}
  
.ac-input:checked ~ .ac-text,
.ac-sub .ac-input:checked ~ .ac-sub-text {
    opacity: 1;
    height: auto;
}
  
.ac-sub .ac-label {
    background: #d86716;
    color: #fff;
    font-size: 16px !important;
    font-weight: normal !important;
    margin-bottom: 0;
    padding: 16px 32px;/* affects horizontal position of sub accordion text */
}
  
.ac-sub .ac-label:checked {
    background: #e5bb2c;
}
  
.ac-main > .ac-label {
    border: 1px solid #122c6a;
}

.minus-icon {    
    display: none;
}

.ac-input:checked+label > .minus-icon {    
    display: block;
}

.ac-input:checked+label > .plus-icon {    
    display: none;
}

.ac-main > .ac-input:checked+label,
.ac-main > .ac-label:hover {
    background: #fff;
    border: 1px solid #122c6a;
    color: #122c6a
} 

.ac-sub .ac-input:checked+label,
.ac-sub .ac-label:hover {
    background: #e5bb2c;
    color: #122c6a;
}


.serviceAB {
    display: flex;
    /* flex-direction: column; */
    gap: 24px;    

    justify-content: center;
    align-items: center;

    margin: 24px 0;
}

.serviceAB > div {
    max-width: 450px;
    position: relative;
}

.serviceAB img {
    width: 100%;
}

.serviceAb {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    gap: 24px;
}

.serviceAb .A {
    flex-basis: 0; 
    flex-grow: 1.5;
    /* flex-shrink: 1.5; */
}

.serviceAb .b {
    flex-basis: 0; 
    flex-grow: 1;
    /* flex-shrink: 1; */
    max-width: 450px;
}

.serviceAb img {
    width: 100%;
}

/* service work */
.service_work_images {
    margin: 40px 0;
}

.service_work_images a {
    /* text-align: center; */
    /* display: flex;
    justify-content: center; */
}

.service_work_images img {
    width: 100%;
}

/* section area */
.section_area {
    /* padding: 48px 0; */
    margin: 48px 0;
}


/* section service */
.section_service {
    padding: 48px 0;
    margin: 48px 0;
}
    
.service_example {
    font-size: 16px;
    color: #122c6a;
    font-weight: 600;
}

/* section notify */
.section_notify {
    padding: 48px 0;
    margin: 48px 0;
}

.notify_container {    
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 32px;

    min-height: 300px;

    position: relative;
}

.notify_box {
    flex-basis: 0;
    flex-grow: 1;
}

.notify_container::after {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);

    content: '';
    display: block;

    width: 1px;
    height: 100%;
    
    background-color: #ccc;

}

.new-badge {    
    font-size: 10px;
    line-height: 16px;
    border-radius: 5px;
    padding: 3px 6px;
    background-color: red;
    color: #fff;
    font-weight: 700;

    margin-right: 8px;
}

.notify_title {    
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    text-decoration: underline;
    color: #555;
}

.notify_items {
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;    

    gap: 12px;
}

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

    
}

.notify_subject {
    color: #333;
    display: flex;
    align-items: center;
}

.notify_date {
    color: #999;
}

.comment a {
    color: #5d27f1;
    text-decoration: underline;
}
  

/* cover */
.section-cover {
    max-width: 960px;

    padding: 24px 24px;
    margin: 12px auto;
    color: #333;
    background-color: rgb(234, 233, 238);
    border: 1px solid rgb(234, 233, 238);
    border-radius: 15px;
    font-size: 18px;
}

.cover-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    margin-top: 30px;
    z-index: 2;
}

.cover-background {
    position: absolute;
    display: block;
    bottom: 50%;
    left: 0;
    transform: translateY(50%);
    z-index: -1;

    width: 100%;
    height: 80%;

    background-color: rgb(226, 205, 92);
}

.cover-img-box {
    max-width: 180px;
}

.cover-content-box {
    display: flex; 
    flex-direction: column; 
    padding: 30px 0 30px 30px;
}

.cover-content {
    /* padding: 30px 0 30px 30px; */
    display: flex; 
    align-items: end;    

    flex-grow: 1;
    font-size: 16px;
    line-height: 1.6;
    color: #000;
}

.cover-content .first-child {
    font-size: 18px;
}

.cover-title {
    display: flex;        
    align-items: center;
    color: rgb(128, 0, 7); 
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px; 
    gap: 12px;
}

.cover-title .impress {
    font-size: 38px;
}

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

    background-color: rgb(7, 22, 72);
    color: #fff;

    font-size: 16px;
    padding: 14px 26px;
    border: 1px solid rgb(7, 22, 72);
    border-radius: 10px;
    min-width: 220px;
}

.inquiryBtn svg {
    fill: rgb(102, 160, 171);
}

.section-cover .comment {
    font-size: 18px !important;
}
 
.sp-br {
    display: none;
}

.pc-br {
    display: block;
}

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

    .serviceAB,
    .serviceAb {
        flex-direction: column;
        /* align-items: flex-start; */
    }

    .cover-container {
        flex-direction: column;
    }    

    .section-cover .comment {
        font-size: 15px !important;
    }

    .cover-content-box {        
        padding: 20px 0;
    }

    .cover-content {
        /* padding: 30px 0; */
        font-size: 14px;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cover-content .first-child {
        font-size: 16px;
    }

    .cover-background {        
        bottom: 0;
        transform: none;
        height: 90%;
    }

    .cover-title {
        flex-direction: column;
    }

    .cover-title {
        font-size: 16px;
    }

    .sp-br {
        display: block;
    }

    .pc-br {
        display: none;
    }
}

@media screen and (max-width: 769px) {
    .service_work_images > div {
        flex-direction: column;
        /* justify-content: center; */
        align-items: center;
    }

    .service_work_images a {
        max-width: 350px;
    }
}

