@charset "UTF-8";
/* =====================================
	accreditation
===================================== */

header{
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    column-gap: 75px;
}

header .anchor-nav{
    margin-left: auto;
}

header .anchor-nav ul{
    display: flex;
    column-gap: 80px;
}

header .anchor-nav ul li a{
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.56;
    text-align: center;
    padding-top: 44px;
    display: block;
}

header .anchor-nav ul li:nth-child(1) a{
    background: url("../img/index/icon01.png") no-repeat center top;
}

header .anchor-nav ul li:nth-child(2) a{
    background: url("../img/index/icon02.png") no-repeat center top;
}

header .anchor-nav ul li:nth-child(3) a{
    background: url("../img/index/icon03.png") no-repeat center top;
}

header .cv-nav ul{
    display: flex;
    column-gap: 10px;
}

header .cv-nav ul li a{
    width: 200px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
}

header .cv-nav ul li:nth-child(1) a{
    background: var(--hoken-green);
}

header .cv-nav ul li:nth-child(2) a{
    background: var(--kenpo-red);
}

#info{
    width: 100%;
    max-width: 980px;
    padding: 0 40px;
    margin: 60px auto 0;
}

#info .wrap{
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
}

#info .wrap .img-area{
    width: 46.67%;
}

#info .wrap .txt-area{
    width: 50.67%;
}

#info .wrap .txt-area small{
    display: block;
    font-size: 75%;
    margin-top: 9px;
}

#news{
    width: 100%;
    max-width: 980px;
    padding: 0 40px;
    margin: 60px auto 0;
}

#news dl{
    margin-top: 32px;
}

#news dl div{
    margin-top: 15px;
    border-top: 1px dashed #A7A7A7;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
}

#news dl div:first-child{
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

#news dl div dt{
    width: 13.44%;
}

#news dl div dd{
    width: 82.11%;
}

#faq{
    width: 100%;
    max-width: 980px;
    padding: 0 40px;
    margin: 60px auto 0;
}

#faq dl{
    margin-top: 32px;
}

#faq dl div{
    border: 1px solid var(--hoken-green);
    border-radius: 8px;
    padding: 20px;
}

#faq dl div + div{
    margin-top: 24px;
}

#faq dl div dt{
    padding: 0 34px 0 44px;
    position: relative;
    cursor: pointer;
}

#faq dl div dt::before{
    content: "";
    width: 18px;
    height: 2px;
    background: var(--hoken-green);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

#faq dl div dt::after{
    content: "";
    width: 2px;
    height: 18px;
    background: var(--hoken-green);
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    transition: 0.3s all ease;
}

#faq dl div dt.active::after{
    transform: translateY(-50%) rotate(90deg);
}

#faq dl div dt span{
    font-size: 2.8rem;
    color: var(--hoken-green);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

#faq dl div dd{
    padding: 20px 34px 20px 66px;
    background: #F2FAFB;
    border-radius: 8px;
    position: relative;
    margin-top: 14px;
    display: none;
}

#faq dl div dd span{
    font-size: 2.8rem;
    color: var(--hoken-green);
    position: absolute;
    top: 20px;
    left: 22px;
}

#download{
    width: 100%;
    max-width: 980px;
    padding: 0 40px;
    margin: 60px auto 40px;
}

#download ul{
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

#download ul li{
    width: calc((100% - 20px) / 2);
}

#download ul li a{
    width: 100%;
    border: 1px solid var(--hoken-green);
    border-radius: 8px;
    padding: 21px 21px 19px 77px;
    display: block;
    background: url("../img/common/icon01.svg") center left 24px no-repeat;
}

#download > a{
    font-size: 2.0rem;
    font-weight: bold;
    text-decoration: underline;
    color: var(--hoken-green);
    display: table;
    margin: 41px auto 0;
    padding-right: 25px;
    background: url("../img/common/icon17.svg") no-repeat center right;
}


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

}