@charset "UTF-8";

/* --------------------------------------------------
 news-box
-------------------------------------------------- */

#news-box {
    width: 100%;
    height: 30px;
    background: linear-gradient(90deg, #b5b5b5d1 0%, #91969bd1 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

#news-box .icn {
    background: #91969b;
    padding: 0 10px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

#news-box .icn i {
    color: #fff;
}

#news-box .marquee {
    color: #fff;
    width: 100%;
    -webkit-animation: marquee 20s linear infinite;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
    display: inline-block;
}

@-webkit-keyframes marquee {
    0% {
        -webkit-transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(-100%);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media screen and (max-width: 767px) {
    #news-box .marquee {
        -webkit-animation: marquee 10s linear infinite;
        animation: marquee 10s linear infinite;
    }
}

/* --------------------------------------------------
 intro
-------------------------------------------------- */

#intro .inner {
    background: linear-gradient(130deg, rgba(205,205,206,1) 0%, rgb(177, 177, 177) 15%, rgb(185, 185, 185) 29%, rgb(240, 240, 240) 36%, rgb(180, 180, 180) 56%, rgba(227,227,228,1) 77%, rgb(173, 173, 173) 92%, rgba(165,164,162,1) 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: rgb(255 255 255 / 18%) 0px 0px 4px 2px inset;
    padding: 10px;
    position: relative;
    transition: all 0.4s;
}

#intro .inner::before {
    content: "";
    background: url(../img/common/bg02.jpg) no-repeat top center;
    background-size: cover;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-radius: 20px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

#intro .inner::after {
    content: "";
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-radius: 20px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

#intro .txt-blc {
    border-radius: 20px;
    padding: 30px 4%;
    position: relative;
    z-index: 1;
}

#intro .txt-blc .logo {
    text-align: center;
    margin-bottom: 15px;
}

#intro .txt-blc .ttl {
    color: #212121;
    font-size: 140%;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 2px 2px rgba(255, 255, 255, 0.6);
}

#intro .txt-blc .txt {
    color: #212121;
    text-align: center;
    text-shadow: 2px 2px rgba(255, 255, 255, 0.6);
}

#intro .media-blc {
    padding: 15px 10px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

#intro .media-blc .img {
    width: 36%;
    text-align: center;
}

#intro .media-blc .vdo {
    background: linear-gradient(144deg, #000, #000), linear-gradient( 90deg, #c29039, #E6D687, #E6D687, #c29039);
    background-origin: border-box;
    background-clip: content-box,border-box;
    border-radius: 20px;
    padding: 3px;
    flex: 1;
    box-shadow: 0 0 15px #160000;
}

#intro .media-blc .vdo * {
    border-radius: 20px;
    display: block;
}

@media screen and (max-width: 767px) {
    #intro .txt-blc .ttl {
        font-size: 120%;
    }
    #intro .media-blc .img {
        width: 60%;
        margin-left: auto;
        margin-right: auto;
    }
    
    #intro .media-blc .vdo {
        width: 100%;
        flex: auto;
    }
}

@media screen and (max-width: 480px) {
    #intro .txt-blc .logo {
        max-width: 60%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* --------------------------------------------------
 nav-short
-------------------------------------------------- */

#nav-short {
    padding: 30px 0;
    position: relative;
}

#nav-short::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    z-index: 1;
    background: linear-gradient(90deg,transparent,#fff 30%,#fff 70%,transparent);
}

/* --------------------------------------------------
 howto
-------------------------------------------------- */

#howto {
    background: url(../img/common/bg03.jpg) no-repeat center center;
    padding: 30px 0;
    position: relative;
}

#howto::before {
    content: "";
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#howto::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    z-index: 1;
    background: linear-gradient(90deg,transparent,#fff 30%,#fff 70%,transparent);
}

#howto .inner {
    padding: 0 2%;
    position: relative;
    box-sizing: border-box;
}

#howto .txt-blc .logo {
    text-align: center;
    margin: 20px 0;
}

#howto .txt-blc .txt-intro {
    color: #212121;
    font-size: 170%;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 20px;
}

#howto .txt-blc .txt {
    color: #212121;
    text-align: center;
    line-height: 1.6;
}

#howto .img-blc {
    text-align: center;
    margin: 20px 0;
}

#howto .step-blc {
    margin-top: 20px;
}

#howto .step-blc .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#howto .step-blc .list .item {
    background: transparent;
    background-image: linear-gradient(180deg, #383838 0%, #030303 100%);
    width: 32%;
    border: 2px solid #C0A05C;
    border-radius: 20px;
    padding: 10px 0 20px;
    margin: 0 2% 2% 0;
    box-sizing: border-box;
}

#howto .step-blc .list .item:nth-child(3n+3) {
    margin-right: 0;
}

#howto .step-blc .list .item:last-child {
    margin-right: 0;
}

#howto .step-blc .list .item .icn {
    text-align: center;
    padding: 0 4%;
    margin-bottom: 20px;
}

#howto .step-blc .list .item .subj {
    font-size: 140%;
    line-height: 1.6;
    text-align: center;
    padding: 0 4%;
    margin-bottom: 15px;
}

#howto .step-blc .list .item .txt {
    line-height: 1.6;
    text-align: center;
    padding: 0 4%;
    margin-bottom: 15px;
}

#howto .step-blc .list .item .btn-blc {
    text-align: center;
    padding: 0 4%;
}

@media screen and (max-width: 767px) {
    #howto .txt-blc .txt-intro {
        font-size: 130%;
    }
    #howto .step-blc .list .item {
        width: 100%;
        margin-right: 0;
    }
    #howto .step-blc .list .item .subj {
        font-size: 120%;
    }
}

@media screen and (max-width: 480px) {
    #howto .txt-blc .logo {
        max-width: 42%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* --------------------------------------------------
 promotion
-------------------------------------------------- */

#promotion {
    background: url(../img/common/bg04.jpg) no-repeat center center;
    background-size: cover;
    padding: 30px 0;
    position: relative;
}

#promotion::before {
    content: "";
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#promotion::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    z-index: 1;
    background: linear-gradient(90deg,transparent,#fff 30%,#fff 70%,transparent);
}

#promotion .inner {
    padding: 0 2%;
    position: relative;
}

#promotion .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#promotion .list .item {
    width: 32%;
    margin: 0 2% 2% 0;
    box-sizing: border-box;
    transition: all .4s;
}

#promotion .list .item:hover {
    transform: scale(1.05);
}

#promotion .list .item:nth-child(3n+3) {
    margin-right: 0;
}

#promotion .list .item:last-child {
    margin-right: 0;
}

#promotion .list .item img {
    border-radius: 4px;
}

@media screen and (max-width: 767px) {
    #promotion .list .item {
        width: 49%;
    }    
    #promotion .list .item:nth-child(3n+3) {
        margin-right: 2%;
    }
    #promotion .list .item:nth-child(2n+2) {
        margin-right: 0;
    }
    #promotion .list .item:last-child {
        margin-right: 0;
    }
}

/* --------------------------------------------------
 features
-------------------------------------------------- */

#features {
    background: url(../img/common/bg05.jpg) no-repeat center center;
    background-size: cover;
    padding: 30px 0;
    position: relative;
}

#features::before {
    content: "";
    background-color: #00000038;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#features::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    z-index: 1;
    background: linear-gradient(90deg,transparent,#fff 30%,#fff 70%,transparent);
}

#features .inner {
    padding: 0 2%;
    position: relative;
    box-sizing: border-box;
}

#features .txt-img-blc {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

#features .txt-blc {
    background: radial-gradient(124.81% 124.81% at 50% -.29%,#b5b5b591 43.75%,#91969b93 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px 20px 10px;
    flex: 1;
    box-shadow: rgb(255 255 255 / 18%) 0px 0px 4px 2px inset;
}

#features .txt-blc .subj {
    color: #212121;
    font-size: 170%;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

#features .txt-blc .txt {
    color: #212121;
    font-size: 90%;
    line-height: 1.4;
}

#features .txt-blc .img {
    text-align: center;
    margin: 20px 0;
}

#features .txt-blc .list {
    padding: 0 4%;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#features .txt-blc .list .item {
    width: 30.66%;
    margin: 0 4% 4% 0;
    box-sizing: border-box;
}

#features .txt-blc .list .item:nth-child(3n+3) {
    margin-right: 0;
}

#features .txt-blc .list .item:last-child {
    margin-right: 0;
}

#features .txt-blc .list .item img {
    transition: all .4s;
}

#features .txt-blc .list .item a:hover img {
    transform: scale(1.05);
}

#features .img-blc {
    width: 50%;
    padding-left: 2%;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 767px) {
    #features .txt-blc {
        width: 100%;
        text-align: center;
        padding-top: 8%;
        flex: auto;
        order: 1;
    }
    #features .txt-blc .subj {
        font-size: 130%;
    }
    #features .img-blc {
        margin: 0 auto -8%;
    }
}

/* --------------------------------------------------
 why-our
-------------------------------------------------- */

#why-our {
    background: url(../img/common/bg06.jpg) no-repeat center center;
    background-size: cover;
    padding: 30px 0;
    position: relative;
}

#why-our::before {
    content: "";
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#why-our::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    z-index: 1;
    background: linear-gradient(90deg,transparent,#fff 30%,#fff 70%,transparent);
}

#why-our .inner {
    padding: 0 2%;
    position: relative;
    box-sizing: border-box;
}

#why-our .txt-img-blc {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

#why-our .txt-blc {
    flex: 1;
    order: 1;
}

#why-our .txt-blc .subj {
    font-size: 140%;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

#why-our .txt-blc .txt {
    line-height: 1.2;
}

#why-our .img-blc {
    width: 48%;
    margin-right: 4%;
    position: relative;
    z-index: 1;
}

#why-our .txt-btm {
    text-align: center;
    margin-top: 20px;
}

@media screen and (max-width: 767px) {
    #why-our .txt-blc {
        width: 100%;
        flex: auto;
    }
    #why-our .txt-blc .subj {
        font-size: 120%;
    }
    #why-our .img-blc {
        margin: 0 auto;
    }
}

/* --------------------------------------------------
 article-post
-------------------------------------------------- */

#article-post {
    background: url(../img/common/bg.jpg) no-repeat center center;
    background-size: cover;
    padding: 30px 0;
    position: relative;
}

#article-post::before {
    content: "";
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#article-post::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    z-index: 1;
    background: linear-gradient(90deg,transparent,#fff 30%,#fff 70%,transparent);
}

#article-post .inner {
    padding: 0 2%;
    box-sizing: border-box;
}

/* --------------------------------------------------
 faq
-------------------------------------------------- */

#faq {
    padding: 30px 0;
    position: relative;
}

#faq::before {
    content: "";
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#faq .inner {
    padding: 0 2%;
    position: relative;
    box-sizing: border-box;
}

#faq .list {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    box-sizing: border-box;
}

#faq .list .accordion {
    background: linear-gradient(130deg, rgba(205,205,206,1) 0%, rgb(177, 177, 177) 15%, #b9b9b9 29%, rgb(240, 240, 240) 36%, rgb(180, 180, 180) 56%, rgba(227,227,228,1) 77%, rgb(173, 173, 173) 92%, rgba(165,164,162,1) 100%);
    background: linear-gradient(45deg, transparent 0%, #b9b9b9 50%, transparent 100%);
    background-origin: border-box;
    border-radius: 10px;
    padding: 2px;
    margin-bottom: 10px;
    box-shadow: rgb(255 255 255 / 18%) 0px 0px 4px 2px inset;
}

#faq .list .accordion .accord-ttl {
    background-color: rgba(0, 0, 0, 0.2);
    color: #212121;
    border-radius: 10px;
    line-height: 1.2;
    padding: 15px 15px 15px 30px;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

#faq .list .accordion .accord-ttl.onclick {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

#faq .list .accordion .accord-ttl::before {
    content: "\f0da";
    color: #fff;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 14px;
    left: 15px;
}

#faq .list .accordion .accord-ttl.onclick::before {
    content: "\f0d8";
}

#faq .list .accordion .accord-content {
    background: rgba(0, 0, 0, 0.1);
    color: #212121;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    line-height: 1.6;
    padding: 15px;
}