@charset "utf-8";

.accordionList {
    margin: 0 0 10px 0;
    overflow: hidden;
}

.accordionList:last-child {
    margin: 0;
}

.ticketAccordionList {
    margin: 10px 0 0 0;
    padding: 0 0 10px;
    overflow: hidden;
}

.accordionBtn,
.faqListBtn {
    cursor: pointer;
}

.accordionTtlBox {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #0FA899;
    background: linear-gradient(90deg, rgba(15, 168, 153, 1) 0%, rgba(172, 208, 117, 1) 100%);
    transition: all .3s;
}

.accordionTtlBox:hover {
    opacity: .7;
    transition: all .3s;
}

.accordionTtl {
    width: 100%;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.5;
}

.accordionTxtBox {
    display: none;
    padding: 15px;
    background-color: rgba(255, 255, 255, .3);
    backdrop-filter: blur(10px);
}

.accordionTxt01 {
    position: relative;
    width: 100%;
    margin: 0 0 5px 0;
    padding: 0 0 0 1em;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.5;
}

.accordionTxt01::before {
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
}

.accordionTxt01:last-child {
    margin: 0;
}

.accordionTxt02 {
    position: relative;
    width: 100%;
    margin: 0 0 5px 0;
    padding: 0 0 0 1em;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.5;
}

.accordionTxt02::before {
    content: "※";
    position: absolute;
    top: 0;
    left: 0;
}

.accordionTxt02:last-child {
    margin: 0;
}

.accordionTxt03 {
    width: 100%;
    margin: 0 0 15px 0;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.5;
}

.accordionTxt03:last-child {
    margin: 0;
}

.accordionTxt04 {
    position: relative;
    width: 100%;
    margin: 0 0 5px 0;
    padding: 0 0 0 1.1em;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.5;
}

.accordionTxt04::before {
    content: "★";
    position: absolute;
    top: 0;
    left: 0;
}

.accordionTxt04:last-child {
    margin: 0;
}

.accordionIcon {
    position: relative;
    width: 100%;
    max-width: 12px;
    height: 12px;
    margin: 0 0 0 5%;
}

.accordionIconItem01 {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 12px;
    height: 2px;
    background-color: #fff;
    top: 50%;
    transform: rotate(0deg);
}

.accordionIconItem02 {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 12px;
    height: 2px;
    background-color: #fff;
    top: 50%;
    transform: rotate(90deg);
    transition: all .5s;
}

.accordionIcon.active>.accordionIconItem01 {
    display: none;
}

.accordionIcon.active>.accordionIconItem02 {
    top: 50%;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transition: all .5s;
}

.faqBox {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #0FA899;
    background: linear-gradient(90deg, rgba(15, 168, 153, 1) 0%, rgba(172, 208, 117, 1) 100%);
    transition: all .3s;
}

.faqBox:hover {
    opacity: .7;
    transition: all .3s;
}

.faqTtl {
    width: 100%;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.5;
}

.faqContent {
    display: none;
    padding: 15px;
    background-color: rgba(255, 255, 255, .3);
    backdrop-filter: blur(10px);
}

.faqList {
    margin: 0 0 15px;
    padding: 0 0 15px;
    border-bottom: 1px solid #fff;
}

.faqList:last-child {
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.questionBox {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.5;
}

.questionJa {
    width: 100%;
    margin: 0 0 5px 0;
}

.questionEn {
    width: 100%;
}

.faqAccordionIcon {
    width: 0;
    height: 0;
    margin: 0 0 0 15px;
    border-style: solid;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    border-top: 6px solid #ffffff;
    border-bottom: 0;
    transition: all .5s;
}

.faqAccordionIcon.active {
    transform: scale(1, -1);
    transition: all .5s;
}

.answerBox {
    display: none;
    padding: 15px 0 0;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.5;
}

.answerJa {
    width: 100%;
    margin: 0 0 5px 0;
}

.answerEn {
    width: 100%;
}

@media screen and (min-width:1024px) {

    .accordionTtl,
    .accordionTxt02,
    .accordionTxt04,
    .faqTtl {
        font-size: 16px;
    }

    .questionBox,
    .answerBox {
        font-size: 14px;
    }

}