@charset "utf-8";

/*========================================
  common
========================================*/
/* current category */
.currentCat {
    display: none;
}
@media screen and (max-width:799px) {
    .currentCat {
        display: block;
        padding: 16px 32px 16px 16px;
        background-color: #D7D8D9;
        color: #868B8E;
    }
}

/* article category */
.articleCat {
    border: 1px solid #D7D8D9;
    border-top: none;
}
.articleCat li {
    border-top: 1px solid #D7D8D9;
}
.articleCat li a {
    position: relative;
    display: block;
    padding: 16px 32px 16px 16px;
    color: #868B8E;
    -webkit-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}
.articleCat li a::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    display: block;
    width: 12px;
    height: 12px;
    margin-top: -6px;
    background: url("../img/icon_btn_wdg.svg#gy") no-repeat center center;
    background-size: 12px 12px;
    pointer-events: none;
}
.articleCat li.current a {
    pointer-events: none;
    background-color: #EBECEC;
    font-weight: bold;
}
.articleCat li a:hover {
    opacity: 1;
    background-color: #EBECEC;
}

@media screen and (max-width:899px) {
    .articleCat {
        border: none;
    }
    .articleCat li {
        border-top: none;
        border-bottom: 1px solid #D7D8D9;
    }
    .articleCat li a {
        background-color: #EBECEC;
    }
    .articleCat li.current {
        display: none;
    }
}


/* article list */
.articleList {
    border-bottom: 1px solid #D7D8D9;
}
.articleList li {
    border-top: 1px solid #D7D8D9;
}
.articleList li a {
    position: relative;
    display: block;
    padding: 16px 48px 16px 32px;
    font-size: 1.6rem;
    color: #353E43;
}
.articleList li a:hover {
    background-color: #EBECEC;
    opacity: 1;
}
.articleList li a::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    display: block;
    width: 12px;
    height: 12px;
    margin-top: -6px;
    background: url("../img/icon_btn_wdg.svg#gy") no-repeat center center;
    background-size: 12px 12px;
    pointer-events: none;
}
@media screen and (max-width:899px) {
    .articleList {
        border-bottom: none;
    }
    .articleList li a {
        position: relative;
        display: block;
        padding: 16px 48px 16px 16px;
        font-size: 1.6rem;
        color: #353E43;
    }
}
@media screen and (max-width:480px) {
}


/* page transition */
.pageTransition {
    max-width: 1204px;
    margin-left: auto;
    margin-right: auto;
    padding: 56px 0;
    border-top: 1px solid #D7D8D9;
}
.pageTransition > *:first-child {
    margin-top: 0;
}
.pageTransition *[class^="btn-"] {
    width: 200px;
}
@media screen and (max-width:480px) {
    .pageTransition {
        padding: 32px 0;
        border-top: 1px solid #D7D8D9;
    }
}


/*========================================
  category frame ( faq / guide )
========================================*/
#catFrame {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: flex-start;
    column-gap: 50px;
}
#catFrame .subColumn {
    order: 1;
    width: 240px;
}
#catFrame .mainColumn {
    order: 2;
    width: 710px;
}
#catFrame .mainColumnPopup {
    display: none;
    top: 50%;
    left: 50%;
    position: fixed;
}
@media screen and (max-width:899px) {
    #catFrame {
        display: block;
        margin: 0;
    }
    #catFrame .subColumn {
        width: 100%;
    }
    #catFrame .mainColumn {
        width: 100%;
    }
}




/*========================================
  category head ( faq / guide )
========================================*/
.catHead {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    max-width: 1440px;
    min-width: 1240px;
    height: 300px;
}
.catHead.bg-faq {
    background: url("../img/cathead_bg-faq.jpg") no-repeat center center;
    background-size: cover;
}
.catHead.bg-guide {
    background: url("../img/cathead_bg-guide.jpg") no-repeat center center;
    background-size: cover;
}
.catHead.bg-doc {
    background: url("../img/cathead_bg-doc.jpg") no-repeat center center;
    background-size: cover;
}
.catHead.bg-group {
    background: url("../img/cathead_bg-group.jpg") no-repeat center center;
    background-size: cover;
}

.catHead::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35); 
}
.catHead h2 {
    position: relative;
    z-index: 10;
    margin-bottom: 40px;
    font-weight: bold;
    font-size: 3.6rem;
    color: #FFF;
}

.catSearch {
    z-index: 10;
    width: 728px;
}
.catSearch form {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    position: relative;
    width: 100%;
}
.catSearch .searchBox {
    flex: 1;
}
.catSearch button {
    width: 128px;
    margin-left: 32px;
}

@media screen and (max-width:899px) {
    .catHead {
        width: 100%;
        min-width: auto;
        height: auto;
        padding: 40px 20px;
    }
    .catSearch {
        width: 100%;
    }
    .catSearch form {
        display: block;
    }
    .catSearch .searchBox {
        display: block;
        width: 100%;
        margin-bottom: 16px;
    }
    .catSearch button {
        width: 100%;
        margin-left: 0;
    }
}
@media screen and (max-width:480px) {
}




/*========================================
  search result
========================================*/
.srchResult {
    max-width: 732px;
    margin: 40px auto;
    width: 100%;
}
.srchResult .resultHead {
    margin: 0 0 24px;
}
.srchResult .resultHead .actSet {
    margin: 0 0 40px;
}
.srchResult .resultHead .actSet a {
    margin: 0;
}


@media screen and (max-width:899px) {
    .srchResult {
        margin: 0 auto;
    }
    .srchResult .resultHead {
        margin: 40px 0 24px;
        padding: 0 16px;
    }
}
@media screen and (max-width:899px) {
    .srchResult .resultHead .actSet a {
        width: auto;
        display: inline-block;
    }
}




/*========================================
  detail ( faq / guide )
========================================*/
.catDetail {
    width: 1204px;
    margin: 40px auto;
    padding: 0 20px;
}
.catDetail .actSet {
    margin: 0;
}
.catDetail .actSet *[class^="btn-"] {
    display: inline-block;
    width: auto;
}
@media screen and (max-width:899px) {
    .catDetail {
        width: 100%;
        max-width: 772px;
    }
}
@media screen and (max-width:480px) {
}


/* faq box */
.faqBox {
    margin: 40px 0;
}
.faqBox dt,
.faqBox dd {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    padding-left: 80px;
    line-height: 2;
}
.faqBox dt {
    min-height: 50px;
    font-size: 1.6rem;
}
.faqBox dd {
    min-height: 90px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #D7D8D9;
}
.faqBox dd p {
    margin-top: 1em;
}
.faqBox dd p img {
    display: block;
    max-width: 100%;
    height: auto;
}
.faqBox dd > *:first-child {
    margin-top: 0;
}
.faqBox dt::before,
.faqBox dd::before {
    position: absolute;
    left: 5px;
    top: 0;
    display: block;
    width: 50px;
    height: 50px;
    border: 2px solid #00A6C2;
    text-align: center;
    line-height: 1.8;
    font-size: 2.4rem;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}
.faqBox dt::before {
    content: "Q";
    background-color: #00A6C2;
    border: 2px solid #00A6C2;
    color: #FFF;
}
.faqBox dd::before {
    content: "A";
    top: 40px;
    background-color: #FFF;
    border: 2px solid #00A6C2;
    color: #00A6C2;
}
@media screen and (max-width:899px) {
}
@media screen and (max-width:480px) {
    .faqBox {
        margin: 24px 0;
    }
    .faqBox dt,
    .faqBox dd {
        display: block;
        min-height: auto;
        padding-left: 0;
    }
    .faqBox dt::before,
    .faqBox dd::before {
        position: static;
        width: 30px;
        height: 30px;
        margin-bottom: 8px;
        line-height: 1.6;
        font-size: 1.6rem;
    }
    .faqBox dd {
        margin-top: 32px;
        padding-top: 32px;
    }
}

/* guide box */
.guideBox {
    margin: 40px 0;
}
.guideBox dt,
.guideBox dd {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    line-height: 2;
}
.guideBox dt {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00A6C2;
}
.guideBox dd {
    margin-top: 20px;
    padding-top: 40px;
    border-top: 1px solid #D7D8D9;
}
.guideBox dd p {
    margin-top: 1em;
}
.guideBox dd p img {
    display: block;
    max-width: 100%;
    height: auto;
}
.guideBox dd > *:first-child {
    margin-top: 0;
}
@media screen and (max-width:899px) {
}
@media screen and (max-width:480px) {
    .guideBox {
        margin: 24px 0;
    }
    .guideBox dt,
    .guideBox dd {
        display: block;
        min-height: auto;
        padding-left: 0;
    }
    .guideBox dd {
        margin-top: 32px;
        padding-top: 32px;
    }
}




/* respond 
.respond {
    margin-top: 80px;
    text-align: center;
}
.respond p {
    text-align: center;
    font-size: 1.6rem;
}
.respond .actSet {
    margin: 24px 0;
}
.respond .actSet *[class^="btn-"] {
    width: 128px;
    margin: 0 0 0 24px;
    padding: 18px 28px;
}
.respond .actSet > *:first-child {
    margin: 0;
}
.respond .reviewer {
    display: inline-block;
    padding: 4px 0 0 32px;
    background: url("../img/icon_good.svg#bl") no-repeat left top;
    background-size: 24px 24px;
    text-align: left;
    font-size: 1.4rem;
    color: #5D6569;
}
@media screen and (max-width:899px) {
}
@media screen and (max-width:480px) {
    .respond {
        margin-top: 40px;
    }
}
*/



/*========================================
  contact
========================================*/

/* agreement check */
.agreementCheck {
    margin-top: 32px;
    font-size: 1.4rem;
}
/*.agreementCheck dl {}*/
.agreementCheck dl dt {
    padding-left: 1em;
    text-indent: -1em;
}
.agreementCheck dl dt::before {
    content: "●";
}
.agreementCheck dl dd {
    margin-top: 24px;
    color: #868B8E;
}

.agreementCheck .checkBtn {
    margin-top: 32px;
}

.popup {
    display: none;
    z-index: 1100;
    position: fixed;
    top: 50%;
    left: 50%;
    padding: 20px;
    transform: translate(-50%,-50%);
    height: 200px;
    width: 400px;
    background-color: #FFF;
    border: 1px solid #D7D8D9;
    -webkit-border-radius: 5px;
    border-radius: 5px;}
    .popup h3 {
        font-weight: bold; }
    .popup p {
        margin-top: 20px; }
    .popup ul {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: left;
        align-items: left;
        margin-top: 20px; }
    .popup ul li {
        width: 150px; }
    .popup ul li:not(:first-child) {
        margin-left: 24px; }
    .popup *[class*="btn-"] {
        width: 100%; }
    @media screen and (max-width: 430px) {
      .popup {
          height: 500px; } }

.popup_layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 1000;
  }



/*========================================
  
========================================*/

@media screen and (max-width:899px) {
}
@media screen and (max-width:480px) {
}



