@charset "UTF-8";

/*===========================================
Foundation
===========================================*/
html {
    font-size: 10px;
}

@media screen and (max-width: 1100px) {
    html {
        font-size: calc(100vw / 1100 * 10);
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: calc(100vw / 768 * 10);
    }
}

@media screen and (max-width: 500px) {
    html {
        font-size: calc(100vw / 500 * 10);
    }
}

@media screen and (max-width: 375px) {
    html {
        font-size: calc(100vw / 375 * 10);
    }
}

body {
    background: #fff;
    color: #333333;
    width: 100%;
    font-family: "YakuHanJPs", Roboto, "Noto Sans", "Noto Sans CJK JP", Arial, sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    overflow: hidden;
}

@media screen and (min-width: 769px) {
    .sp-only {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .pc-only {
        display: none;
    }
}

@media screen and (min-width: 376px) {
    .sp-only_s {
        display: none;
    }
}

/*btn*/
.btn-apply {
    display: inline-block;
    max-width: 38rem;
    width: 100%;
    padding: 2rem;
    font-size: 2.4rem;
    font-weight: bold;
    color: #ffffff;
    border-radius: 999em;
    -webkit-border-radius: 999em;
    -moz-border-radius: 999em;
    -ms-border-radius: 999em;
    -o-border-radius: 999em;
    background: linear-gradient(#ff00af 0%, #e900fd 50%, #af00ff 100%);
    background-size: 100% 200%;
    box-shadow: 0 0.8rem 1rem rgba(51, 51, 51, 0.2);
    position: relative;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
}

.btn-apply:before {
    position: absolute;
    content: "";
    width: 2.2rem;
    height: 2.2rem;
    background: url("../images/icon-arrow.svg") no-repeat center;
    background-size: contain;
    right: 2rem;
    top: 50%;
    margin-top: -1.1rem;
}

.btn-apply:hover {
    background-position: 0 100%;
}

.btn-quiz {
    width: 16rem;
    height: 16rem;
    padding: 3.5rem 0;
    font-size: 2.2rem;
    line-height: 1.2;
    color: #ffffff;
    text-align: center;
    border-radius: 999em;
    -webkit-border-radius: 999em;
    -moz-border-radius: 999em;
    -ms-border-radius: 999em;
    -o-border-radius: 999em;
    background: linear-gradient(#ff00af 0%, #e900fd 50%, #af00ff 100%);
    background-size: 100% 200%;
    box-shadow: 0 0.8rem 1rem rgba(51, 51, 51, 0.2);
    position: relative;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    position: fixed;
    bottom: 10px;
    right: 15px;
    z-index: 99;
}

.btn-quiz:hover {
    background-position: 0 100%;
}
.btn-quiz .font-large{
font-size: 2.8rem;
font-weight: bold;
}

@media screen and (max-width: 768px) {
    .btn-apply {
        padding: 1.5rem;
        font-size: 2rem;
    }
    .btn-quiz{
        display: inline-block;
        margin-right: 2rem;
        position: relative;
        height: auto;
        width: auto;
        padding: 0.8rem 1.5rem 0.6rem;
        font-size: 1.4rem;
        bottom: auto;
        right: auto;
        box-shadow: 0 0.2rem 0.4rem rgba(51, 51, 51, 0.2);
    }
}

/*list*/
.list-dotted > li {
    padding-left: 1em;
    position: relative;
  }
  .list-dotted > li:before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #333;
    border-radius: 100em;
    position: absolute;
    top: 1rem;
    left: 0.5rem;
    -webkit-border-radius: 100em;
    -moz-border-radius: 100em;
    -ms-border-radius: 100em;
    -o-border-radius: 100em;
}
  .list-dotted > li + li {
    margin-top: 0.3rem;
  }
/*******************************
animation
*******************************/
/* ぼかしから出現 */
@keyframes ziwa {
    from {
        filter: blur(10px);
        transform: scale(1.0);
        -webkit-filter: blur(10px);
        opacity: 0;
        -webkit-transform: scale(1.0);
        -moz-transform: scale(1.0);
        -ms-transform: scale(1.0);
        -o-transform: scale(1.0);
    }

    to {
        filter: blur(0);
        transform: scale(1);
        opacity: 1;
    }

}

.move-ziwa {
    opacity: 0;
}

.move-ziwa.active {
    animation-name: ziwa;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

/* ボタンふわふわ */
@keyframes fuwafuwa {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -o-transform: translateY(-10px);
    }
}

.move-fuwa {
    animation: 5s fuwafuwa infinite;
    -webkit-animation: 5s fuwafuwa infinite;
}

/*===========================================
Layout
===========================================*/
/*******************************
header
*******************************/
.header {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background: #ffffff;
    z-index: 9999;
    box-shadow: 0 0.8rem 0.8rem rgb(0, 0, 0, 0.2);
}

.header .inner {
    max-width: 110rem;
    width: 100%;
    margin: auto;
    padding: 1.5rem;
    font-size: 1.8rem;
}

.gnav-item+.gnav-item {
    margin-left: 3.5rem;
}

.gnav-anker {
    position: relative;
}

.gnav-anker:before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    background-color: #333333;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    bottom: -3px;
    left: 0;
}

.gnav-anker:hover:before {
    width: 100%;
}

.header .btn-apply {
    font-size: 1.8rem;
    padding: 1rem 2rem;
    box-shadow: none;
}

.header .btn-apply:before {
    content: none;
}

.header .gnav-item .btn-apply:hover {
    animation: none;
    -webkit-animation: none;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .header {
        box-shadow: 0 0.4rem 0.4rem rgb(0 0 0 / 20%);
    }

    .header-logo img {
        width: 80px;
    }

    .gnav-btn {
        width: 2.5rem;
        height: 2rem;
        position: relative;
        z-index: 9999;
    }

    .gnav-btn .line {
        display: inline-block;
        transition: 0.2s;
        -webkit-transition: 0.2s;
        -moz-transition: 0.2s;
        -ms-transition: 0.2s;
        -o-transition: 0.2s;
        width: 2.5rem;
        height: 0.4rem;
        border-radius: 999em;
        -webkit-border-radius: 999em;
        -moz-border-radius: 999em;
        -ms-border-radius: 999em;
        -o-border-radius: 999em;
        background: #004e97;
        position: absolute;
        left: 0;
        cursor: pointer;
    }

    .gnav-btn .line:nth-of-type(1) {
        top: 0;
    }

    .gnav-btn .line:nth-of-type(2) {
        top: 50%;
        margin-top: -0.2rem;
    }

    .gnav-btn .line:nth-of-type(3) {
        bottom: 0;
    }

    .gnav-btn.active .line:nth-of-type(1) {
        transform: translateY(0.8rem) rotate(-45deg);
        -webkit-transform: translateY(0.8rem) rotate(-45deg);
        -moz-transform: translateY(0.8rem) rotate(-45deg);
        -ms-transform: translateY(0.8rem) rotate(-45deg);
        -o-transform: translateY(0.8rem) rotate(-45deg);
    }

    .gnav-btn.active .line:nth-of-type(2) {
        opacity: 0;
    }

    .gnav-btn.active .line:nth-of-type(3) {
        transform: translateY(-0.8rem) rotate(45deg);
        -webkit-transform: translateY(-0.8rem) rotate(45deg);
        -moz-transform: translateY(-0.8rem) rotate(45deg);
        -ms-transform: translateY(-0.8rem) rotate(45deg);
        -o-transform: translateY(-0.8rem) rotate(45deg);
    }

    .list-gnav {
        display: none;
        width: 100%;
        height: 100%;
        padding: 6rem 2rem 3rem;
        text-align: center;
        position: fixed;
        top: 0;
        left: 0;
        background: #ffffff;
        z-index: 999;
    }

    .gnav-item+.gnav-item {
        margin-left: 0;
        margin-top: 2rem;
    }

    .header .btn-apply {
        width: 80%;
    }

}

/*******************************
main-content
*******************************/
.main-content {
    background: url("../images/bg_01.png") repeat center;
}

.inner {
    max-width: 110rem;
    width: 100%;
    margin: auto;
    padding: 7rem 0 10rem;
}

@media screen and (max-width: 768px) {
    .inner {
        padding: 4rem 1rem;
    }

    .ttl-wrap img {
        height: 3rem;
    }
}

/*--------------------------
mv-area
--------------------------*/
.mv-area .inner {
    padding-top: 16rem;
    padding-bottom: 0;
}

.mv-title__date {
    margin-top: 5rem;
    font-size: 6.2rem;
    font-weight: bold;
    color: #004e97;
}

.mv-area .move-ziwa.active {
    animation-duration: 1s;
}

@media screen and (max-width: 768px) {
    .mv-area .inner {
        padding-top: 10rem;
    }

    .mv-title__logo {
        max-width: 400px;
        margin: auto;
    }

    .mv-title__date {
        margin-top: 3rem;
        font-size: 2.4rem;
    }

    .mv-comment__img img {
        width: 30px;
        height: 33px;
    }
}

/*--------------------------
about-area
--------------------------*/
.mv-comment__text {
    margin-top: 3.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: #004e97;
}

.mv-btn-box {
    margin-top: 9rem;
}

.mv-btn__text {
    padding: 0.5rem 4rem;
    display: inline-block;
    position: relative;
    font-size: 2.2rem;
    font-weight: bold;
    color: #004e97;
}


.mv-btn__text:before {
    left: 0;
}

.mv-btn__text:after {
    right: 0;
    transform: scale(-1, 1);
}

.mv-btn-box .btn-wrap {
    margin-top: 2rem;
    text-align: center;
}

.finished-box{
    padding: 2rem;
    margin-top: 3.5rem;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    background: rgba(51, 51, 51, 0.2);
}

@media screen and (max-width: 768px) {
    .about-area .inner{
        padding-bottom: 6rem;
    }
    .mv-title__logo {
        max-width: 400px;
        margin: auto;
    }

    .mv-title__date {
        margin-top: 3rem;
        font-size: 2.4rem;
    }

    .mv-comment__img img {
        width: 30px;
        height: 33px;
    }

    .mv-comment__text {
        margin-top: 2rem;
        font-size: 1.6rem;
        line-height: 2;
        letter-spacing: 0.05;
    }

    .mv-btn-box {
        margin-top: 2rem;
    }

    .mv-btn__text {
        font-size: 1.8rem;
    }

    .finished-box{
        padding: 1rem 1.5rem;
        font-size: 1.6rem;
    }
}

/*--------------------------
timetable-area
--------------------------*/
.timetable-area {
    background: #333333;
    position: relative;
}

.timetable-area:before {
    position: absolute;
    content: "";
    width: 1920px;
    height: 874px;
    background: url("../images/bg_02.png") no-repeat center;
    background-size: contain;
    top: -90px;
    left: 50%;
    margin-left: -960px;
}

.timetable-area .inner {
    z-index: 10;
    position: relative;
}

.time-table-ttl {
    text-align: center;
    color: #ffffff;
}

.time-table-ttl>li {
    width: 20rem;
    position: relative;
}

.time-table-ttl>li+li:before {
    position: absolute;
    content: "";
    width: 120px;
    height: 1px;
    background: linear-gradient(to right, #ffffff, #daeef5);
    top: 10px;
    left: -70px;
}

.list-time {
    margin-top: 1.5rem;
    justify-content: space-between;
}

.time-table-box {
    width: 20rem;
    height: 13rem;
    position: relative;
    overflow: hidden;
    transition: ease .3s;
    background: linear-gradient(to right, #daeef5, #ffffff, #daeef5);
    -webkit-transition: ease .3s;
    -moz-transition: ease .3s;
    -ms-transition: ease .3s;
    -o-transition: ease .3s;
}

.time-table-box:hover {
    color: #ffffff;
}

.time-table-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    background: #0050ff;
    width: 130%;
    height: 100%;
    transform: skewX(-25deg);
}

.time-table-box:hover::before {
    animation: skewanime .3s forwards;
    -webkit-animation: skewanime .3s forwards;
}

@keyframes skewanime {
    100% {
        left: -15%;
    }
}

.time-table-box a {
    display: block;
    height: 100%;
    padding: 1rem;
    font-size: 1.4rem;
    position: relative;
    z-index: 2;
}

.time-table-box+.time-table-box {
    margin-top: 1rem;
}

.time-table-box .time {
    font-weight: bold;
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.list-schedule {
    margin-top: 5rem;
}

.schedule-box {
    padding-left: 20rem;
    position: relative;
}

.schedule-box:before {
    position: absolute;
    content: "";
    width: 1px;
    height:0;
    top: 1rem;
    left: 15rem;
    background: #daeef5;
    transition: 1s ease-out;
    -webkit-transition: 1s ease-out;
    -moz-transition: 1s ease-out;
    -ms-transition: 1s ease-out;
    -o-transition: 1s ease-out;
    transition-delay: 0.2s;
}
.schedule-box.active:before{
    height: calc(100% + 3.5rem);
}

.schedule-box:after {
    position: absolute;
    content: "";
    width: 2rem;
    height: 2rem;
    background: linear-gradient(to right, #daeef5, #ffffff, #daeef5);
    border-radius: 999em;
    -webkit-border-radius: 999em;
    -moz-border-radius: 999em;
    -ms-border-radius: 999em;
    -o-border-radius: 999em;
    top: 0.5rem;
    left: 14rem;
}

.schedule-box+.schedule-box {
    margin-top: 3.5rem;
}

.schedule-box:last-child:before {
    content: none;
}

.schedule-box .time {
    font-size: 3.2rem;
    font-weight: bold;
    color: #ffffff;
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
    line-height: 1.1;
}

.schedule-box .time .snake {
    display: flex;
    width: 100%;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    align-items: center;
}

.schedule-box .time .num {
    color: #daeef5;
    font-size: 4.2rem;
}

.schedule-box .content {
    padding: 3rem;
    background: #ffffff;
}

.ttl-schedule {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 2.5rem;
}
.ttl-schedule_sub {
    margin-top: 1.5rem;
    font-size: 1.8rem;
    font-weight: bold;
}
.ttl-schedule_sub +.text{
    margin-top: 1rem;
    font-size: 1.5rem;
}
.schedule-box .text a{
    color: #0050ff;
}
.list-outline .content a{
    color: #0050ff;
}
.faq-box .faq-content a{
    color: #0050ff;
}
.finished-box a{
    color: #0050ff;
}
.schedule-box .text a:hover{
    text-decoration: underline;
}

.member-box {
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

.member-box .img+.text {
    margin-left: 1rem;
}

.member-box .human-img {
    width: 9rem;
    border-radius: 999em;
    -webkit-border-radius: 999em;
    -moz-border-radius: 999em;
    -ms-border-radius: 999em;
    -o-border-radius: 999em;
    background: linear-gradient(to bottom, #0050ff, #00bef0);
    padding: 0.4rem;
}
.member-box .human-img img{
    width: 8.2rem;
    height: 8.2rem;
    object-fit: cover;
    border-radius: 999em;
    -webkit-border-radius: 999em;
    -moz-border-radius: 999em;
    -ms-border-radius: 999em;
    -o-border-radius: 999em;
}

.member-box .text {
    width: calc(100% - 10rem);
}

.schedule-btn-box {
    margin-top: 1.5rem;
    justify-content: right;
}

.schedule-btn-box .btn-wrap+.btn-wrap {
    margin-left: 1.5rem;
}

.schedule-btn-box .btn {
    width: 200px;
    display: block;
    padding: 1rem;
    color: #ffffff;
    text-align: center;
    border-radius: 999em;
    -webkit-border-radius: 999em;
    -moz-border-radius: 999em;
    -ms-border-radius: 999em;
    -o-border-radius: 999em;
    box-shadow: 0 0.8rem 0.8rem rgb(0, 0, 0, 0.1);
    background: #004e97;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
}
.schedule-btn-box .btn:hover {
    box-shadow: 0 0 0 0;
    transform:translateY(0.4rem);
    -webkit-transform:translateY(0.4rem);
    -moz-transform:translateY(0.4rem);
    -ms-transform:translateY(0.4rem);
    -o-transform:translateY(0.4rem);
    background: #00396e;
}

.schedule-btn-box .btn .icon {
    margin-right: 1rem;
}


@media screen and (max-width: 768px) {
    .timetable-area:before {
        width: 100%;
        height: 38rem;
        background-size: cover;
        left: 0;
        margin-left: 0;
        top: -4rem;
    }
    .list-time {
        justify-content: center;
    }

    .time-table-box {
        width: 100%;
        border-radius: 999em;
        -webkit-border-radius: 999em;
        -moz-border-radius: 999em;
        -ms-border-radius: 999em;
        -o-border-radius: 999em;
        height: auto;
    }

    .time-table {
        position: relative;
        width: 30%;
        margin-left: 1rem;
    }

    .time-table:before {
        position: absolute;
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 10px 10px 0 10px;
        border-color: #ffffff transparent transparent transparent;
        bottom: -8px;
        left: 50%;
        margin-left: -5px;
    }

    .time-table:nth-of-type(3n+1) {
        margin-right: 0;
    }

    .time-table:nth-of-type(n+4) {
        margin-top: 1.5rem;
    }

    .time-table-box .time {
        margin-bottom: 0;
    }

    .schedule-box {
        padding-left: 2rem;
    }

    .schedule-box .time {
        font-size: 2.4rem;
        position: relative;
        text-align: left;
        margin-bottom: 1rem;
        line-height: normal;
    }

    .schedule-box .time .snake {
        display: inline;
        width: auto;
        padding: 0 0.5rem;
        writing-mode: inherit;
        -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
    }

    .schedule-box .time .num {
        color: #daeef5;
        font-size: 2.6rem;
    }

    .schedule-box:before {
        left: 0.5rem;
    }

    .schedule-box:after {
        width: 1.6rem;
        height: 1.6rem;
        top: 1rem;
        left: -0.2rem;
    }

    .schedule-box .content {
        padding: 1.5rem;
    }

    .ttl-schedule {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .schedule-box .content .btn-wrap {
        margin-top: 1.5rem;
    }

    .schedule-btn-box .btn-wrap+.btn-wrap {
        margin-left: 0;
    }

    .schedule-btn-box .btn {
        width: 100%;
        box-shadow: 0 0.4rem 0.4rem rgb(0 0 0 / 20%);
    }
}

@media screen and (max-width: 375px){
    .timetable-area:before {
        height: 20rem;
        top: -3rem;
    }
}

/*movie mmodal*/
.modal-video-close-btn{
    cursor: pointer;
}

/*movie live*/
.live-box{
    max-width: 70rem;
    padding: 1rem;
    margin:auto;
    background: #ffffff;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.live-box .video {
    position: relative;
    padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
    height: 0;
    overflow: hidden;
}
.live-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*--------------------------
outline-area
--------------------------*/
.outline-area {
    position: relative;
}

.outline-area:before {
    position: absolute;
    content: "";
    width: 1920px;
    height: 100px;
    background: url("../images/bg_03.png") no-repeat center;
    background-size: contain;
    top: 0;
    left: 50%;
    margin-left: -980px;
}

.outline-box {
    padding: 3rem;
    background: #ffffff;
}

.list-outline {
    display: flex;
}

.list-outline+.list-outline {
    margin-top: 3rem;
}

.list-outline .ttl {
    width: 15%;
    padding-left: 2.5rem;
    position: relative;
}

.list-outline .ttl:before {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    background: linear-gradient(to bottom, #0050ff, #00bef0);
    border-radius: 999em;
    -webkit-border-radius: 999em;
    -moz-border-radius: 999em;
    -ms-border-radius: 999em;
    -o-border-radius: 999em;
    top: 4px;
    left: 0;
}

.list-outline .ttl:after {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 999em;
    -webkit-border-radius: 999em;
    -moz-border-radius: 999em;
    -ms-border-radius: 999em;
    -o-border-radius: 999em;
    top: 6px;
    left: 2px;
}

.list-outline .content {
    width: 85%;
}

.outline-area .btn-wrap {
    margin-top: 8rem;
}

@media screen and (max-width: 768px) {
    .outline-area:before {
        width: 100%;
        height: 6rem;
        background-size: cover;
        top: 0;
        left: 0;
        margin-left: 0;
    }
    
    .outline-box {
        padding: 2rem 1.5rem;
    }
    .list-outline{
        display: block;
    }
    .list-outline .ttl {
        width: 100%;
        margin-bottom: 1rem;
    }
    .list-outline .content{
        width: 100%;
    }
    .list-outline+.list-outline {
        margin-top: 1.5rem;
    }
    .outline-area .btn-wrap {
        margin-top: 4rem;
    }
}

@media screen and (max-width: 375px) {
    .outline-area:before {
        height: 2rem;
    }
}

/*--------------------------
faq-area
--------------------------*/
.faq-area {
    background: linear-gradient(to bottom, transparent 0,transparent 20%, #333333 20% );
    background: #333333;
    position: relative;
}

.faq-area:before {
    position: absolute;
    content: "";
    width: 1920px;
    height: 970px;
    background: url("../images/bg_04.png") no-repeat center;
    background-size: contain;
    top: -50px;
    left: 50%;
    margin-left: -960px;
}

.faq-area .inner {
    padding-top: 8rem;
    z-index: 10;
    position: relative;
}

.faq-box {
    margin-top: 4rem;
}

.faq-box .faq-ttl {
    padding: 1.5rem 8rem;
    color: #ffffff;
    background: linear-gradient(to bottom, #0050ff, #00bef0);
    position: relative;
    cursor: pointer;
    transition: 0.2s;
}

.faq-box .faq-ttl:hover {
    opacity: 0.8;
}

.faq-box .faq-ttl:before {
    position: absolute;
    content: "";
    border-top: solid 2px #ffffff;
    border-left: solid 2px #ffffff;
    width: 12px;
    height: 12px;
    transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    -o-transform: rotate(225deg);
    right: 3rem;
    top: 50%;
    margin-top: -6px;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
}

.faq-box .faq-ttl.active:before {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.faq-box .faq-ttl:after {
    position: absolute;
    content: "";
    width: 35px;
    height: 60px;
    background: url("../images/icon-faq.svg") no-repeat center;
    background-size: contain;
    left: 2rem;
    top: -2.5rem;
}

.faq-box .faq-content {
    display: none;
    padding: 1.5rem 8rem;
    background: #ffffff;
}

@media screen and (max-width: 768px) {
    .faq-area:before {
        width: 100%;
        height: 40rem;
        background-size: cover;
        top: -2rem;
        left: 0;
        margin-left: 0;
    }
    .faq-area .inner{
        padding-top: 4rem;
    }
    .faq-box .faq-ttl {
        padding: 1.5rem 3rem 1.5rem 5rem;
    }
    .faq-box .faq-ttl:before{
        right: 1.5rem;
    }
    .faq-box .faq-ttl:after {
        width: 20px;
        height: 40px;
        left: 1.5rem;
        top: -1.5rem;
    }
    .faq-box .faq-content {
        padding: 1.5rem;
    }
}
@media screen and (max-width: 375px){
    .faq-area:before {
        height: 20rem;
        top: -2rem;
    }
}

/*******************************
footer
*******************************/
.footer {
    background: #333333;
}

.footer .inner {
    max-width: 110rem;
    width: 100%;
    margin: auto;
    padding: 4rem 0 3rem;
    position: relative;
    z-index: 99;
}

.footer-item {
    display: flex;
    justify-content: center;
}

.footer-item__icon+.footer-item__icon {
    margin-left: 5rem;
}

.footer-item__icon:hover {
    opacity: 0.8;
}

.footer-copyright {
    margin-top: 3.5rem;
    font-size: 14px;
    color: #ffffff;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .footer .inner {
        padding: 2rem 1rem 1.5rem;
    }

    .footer-item__icon+.footer-item__icon {
        margin-left: 2rem;
    }

    .footer-item__icon img {
        width: 30px;
    }

    .footer-copyright {
        margin-top: 1.5rem;
        font-size: 12px;
    }
}

.fixed-banner {
    position: fixed;
    z-index: 99999;
    top: 150px;
    right: 40px;
    border: 0px;
    background-color: transparent;
}

.fixed-banner-img {
    width: 300px;
}

.fixed-banner-img:hover {
    opacity: .8;
}

@media screen and (max-width: 480px) {
    .fixed-banner-img {
        display: inline-block;
        width: 80vw;
    }
}
