/**
* Project
**/

.p-splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 8;
    opacity: 0;
}

.p-splash.is-open {
    opacity: 1;
}

.p-splash__main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 880px;
    width: 100%;
}

@media only screen and (max-width: 960px) {
    .p-splash__main {
        width: 90%;
    }
}


.p-splash__main iframe.ytplayer {
    width: 100%;
    height: min(51vw,550px);
}

.p-mv {
    height: calc(var(--vh, 1vh) * 100);
}

@media only screen and (max-width: 960px) {
    .p-mv {

    }
}

.p-mv__inner {
    position: relative;
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 960px) {
    .p-mv__inner {
        width: 100%;
        height: 100%;
    }
}

.p-mv__img {
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 960px) {
    .p-mv__img {
    }
}

.p-mv__img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.p-mv__txt {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    transform: translate(-50%,-50%);
    z-index: 1;
}

@media only screen and (max-width: 960px) {
    .p-mv__txt {
        width: 96%;
    }
}

.p-mv__logo--top {
    display: block;
    width: 0;
    margin: 0 auto 5vw;
    overflow: hidden;
    position: relative;
    height: 18.5vw;
}

@media only screen and (max-width: 960px) {
    .p-mv__logo--top {
        width: 48%;
    }
}

.p-mv__logo--top svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    transform: translate(-50%, -50%);
}

.p-mv__logo--top02 {
    display: block;
    width: 42%;
    margin: -3vw auto -2vw;
}

@media only screen and (max-width: 960px) {
    .p-mv__logo--top02 {
        width: 58%;
        margin: -3vw auto -2vw;
    }
}

.p-mv__logo--btm {
    display: block;
    /*max-width: 1280px;*/
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
}

@media only screen and (max-width: 960px) {
    .p-mv__logo--btm {
        width: 98%;
    }
}

.p-mv__top {
    width: 80%;
    max-width: 1200px;
    margin: 3vw auto 0;
    overflow: hidden;
}

@media only screen and (max-width: 960px) {
    .p-mv__top {
        width: 96%;
    }
}

.p-mv__top > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.6vw;
}

.p-mv__top--date {
    width: 44%;
}

.p-mv__top--place {
    width: 44%;
}

.p-mv__btm {
    width: 44%;
    max-width: 680px;
    overflow: hidden;
    margin: 0.6vw auto 0;
    text-align: center;
}

@media only screen and (max-width: 960px) {
    .p-mv__btm {
        width: 55%;
    }
}

.p-mv__scroll {
    position: absolute;
    bottom: 20px;
    right: 0;
    width: 100%;
    z-index: 1;
    cursor: pointer;
    opacity: 0;
}

.p-mv__scroll a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.p-mv__scroll strong {
    display: block;
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin-bottom: 26px;
}

@media only screen and (max-width: 960px) {
    .p-mv__scroll strong {
        font-size: 3.4vw;
    }
}

@keyframes arrow {
    0% {
        opacity:0
    }
    40% {
        opacity:1
    }
    80% {
        opacity:0
    }
    100% {
        opacity:0
    }
}

.p-mv__scroll--border {
    position: relative;
    width: 80px;
    height: 40px;
    animation: arrow 1.4s infinite;
}

@media only screen and (max-width: 960px) {
    .p-mv__scroll--border {
        width: 60px;
        height: 32px;
        animation: arrow 1.4s infinite;
    }
}

.p-mv__scroll--border::after {
    content: "";
    position: absolute;
    top: 0;
    left: 4px;
    width: 50%;
    height: 1px;
    background: var(--color_main);
    transform: rotate(35deg);
}

@media only screen and (max-width: 960px) {
    .p-mv__scroll--border::after {
        left: 3px;
    }
}

.p-mv__scroll--border::before {
    content: "";
    position: absolute;
    top: 0;
    right: 4px;
    width: 50%;
    height: 1px;
    background: var(--color_main);
    transform: rotate(-35deg);
}

@media only screen and (max-width: 960px) {
    .p-mv__scroll--border::before {
        right: 3px;
    }
}

.p-news {
    padding: 20px 0;
    background: #000;
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    .p-news {
        padding: 6px 0 8px;
    }
}

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

.p-news__list {
    -webkit-animation: flowing 40s linear infinite;
    display: flex;
    gap: 40px;
    transform: translateX(100%);
    white-space: nowrap;
    animation: flowing 40s linear infinite;
}

@media only screen and (max-width: 767px) {
    .p-news__list {
        gap: 30px;
    }
}

.p-news__item {
    display: flex;
    gap: 12px;
}

@media only screen and (max-width: 767px) {
    .p-news__item {
        font-size: 0.9em !important;
    }
}

@media only screen and (max-width: 767px) {
    .p-news__item * {
        font-size: 0.9em !important;
    }
}

.p-news__item a {
    display: flex;
    gap: 12px;
}

.p-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: calc(var(--vh, 1vh) * 100);
    padding: min(12vw,80px) min(4vw,70px);
}

@media only screen and (max-width: 767px) {
    .p-intro {
        display: block;
        height:inherit;
        padding: 4vw 0;
    }
}

@keyframes bggradient{
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 50% 50%;
  }
  100% {
    background-position: 100% 100%;
  }
}

.p-intro__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--color_bg);
}

.p-intro__bg:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--color_bg);
    background-size: 100% 100%;
    transition-duration: 0.4s;
    opacity: 1;
}

.p-intro__bg.is-active:after {
    opacity: 0;
    height: 50%;
}

.p-intro__bg:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #175964, #0c1654);
    background-size: 100% 100%;
    opacity: 0;
    transition-duration: 0.4s;
    animation: bggradient 4s ease 1;
}

.p-intro__bg.is-active:before {
    opacity: 1;
}

.p-intro__main {
    display: flex;
}

@media only screen and (max-width: 767px) {
    .p-intro__main {
        display: block;
    }
}

.p-intro__img {
    width: 50%;
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    .p-intro__img {
        width: 100%;
    }
}

.p-intro__img span {
    display: block;
}

.p-intro__txt {
    position: relative;
    width: 50%;
}

@media only screen and (max-width: 767px) {
    .p-intro__txt {
        width: 100%;
    }
}

.p-intro__txt--inner {
    position: absolute;
    top: 50%;
    left: -80px;
    transform: translate(0,-50%);
}

@media only screen and (max-width: 767px) {
    .p-intro__txt--inner {
        position: relative;
        transform: translate(0,0);
        left: 0;
        top: -30vw;
        padding: 0 4vw;
        margin-bottom: -24vw;
    }
}

.p-intro__ttl {
    margin-bottom: min(2.8vw,20px);
    font-weight: 600;
    line-height: 1.5;
}

@media only screen and (max-width: 767px) {
    .p-intro__ttl {
        margin-bottom: 1.4vw;
    }
}

.p-intro__ttl h2 {
    margin-bottom: min(2.8vw,12px);
    font-size: 3.5rem;
    line-height: 1.3;
}

@media only screen and (max-width: 767px) {
    .p-intro__ttl h2 {
        font-size: 8.4vw;
    }
}

.p-intro__ttl h3 {
    font-size: 2rem;
    line-height: 1.3;
}

@media only screen and (max-width: 767px) {
    .p-intro__ttl h3 {
        font-size: 5.8vw;
    }
}

.p-intro__ttl h3 > span {
    display: inline-block;
    overflow: hidden;
}

.p-intro__desc {
    line-height: 2.1;
}

.p-intro__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    z-index: -1;
    overflow: hidden;
}

/* artist */

.p-artist {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: min(7vw,80px) min(4vw,70px) 0;
}

@media only screen and (max-width: 767px) {
    .p-artist#creator {
        margin-top: 4vw;
    }
}


@keyframes flash {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.p-artist__light01 {
    position: absolute;
    top: 0;
    left: -10vw;
    width: 100%;
    z-index: 0;
    mix-blend-mode: plus-lighter;
    /*animation: flash 1s linear infinite;*/
}

@media only screen and (max-width: 767px) {
    .p-artist__light01 {
        right: -26vw;
        left: inherit;
    }
}

.p-artist__light02 {
    position: absolute;
    top: 600px;
    right: -10vw;
    width: 48%;
    z-index: 0;
    mix-blend-mode: plus-lighter;
    /*animation: flash 1s linear infinite 0.4s;*/
}

@media only screen and (max-width: 767px) {
    .p-artist__light02 {
        top: 178vw;
        width: 100%;
        left: inherit;
        right: -22vw;
        bottom: inherit;
    }
}

.p-artist__light03 {
    display: none;
    position: absolute;
    bottom: 16vw;
    left: -10vw;
    width: 40%;
    z-index: 0;
    mix-blend-mode: plus-lighter;
    /*animation: flash 1.2s linear infinite 0.8s;*/
}

@media only screen and (max-width: 767px) {
    .p-artist__light03 {
        width: 80%;
        top: 248vw;
        left: -22vw;
        bottom: inherit;
    }
}

.p-artist__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--color_bg);
}

.p-artist__bg:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--color_bg);
    background-size: 100% 100%;
    transition-duration: 0.4s;
    opacity: 1;
}

.p-artist__bg.is-active:after {
    opacity: 0;
    height: 50%;
}

.p-artist__bg:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #0c1654, #4f1162);
    background-size: 100% 100%;
    opacity: 0;
    transition-duration: 0.4s;
    animation: bggradient 4s ease 1;
}

.p-artist__bg.is-active:before {
    opacity: 1;
}

.p-artist__main {
    display: flex;
    flex-direction: column;
    gap: min(3vw,60px);
}

@media only screen and (max-width: 767px) {
    .p-artist__main {
    }
}

.p-artist__main--reverse {
    /*flex-direction: row-reverse;*/
}

.p-artist__img {
    position: relative;
    overflow: hidden;
}

.p-artist__img img {
    transition-duration: 0.8s;
}

.p-artist__position {
    position: absolute;
    left: 0;
    top: 0;
    padding: 3px 12px 4px;
    background: #000;
    font-size: 0.75rem;
    color: #fff;
    z-index: 1;
}

@media only screen and (max-width: 767px) {
    .p-artist__position {
        font-size: 2.2vw;
        padding: 0px 3px 1px;
    }
}

#artist .p-artist__item {
    background: #fff;
}

.p-artist__item:hover .p-artist__img img {
    transform: scale(1.12) !important;
}

.p-artist__icon {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 30px;
    height: 30px;
    background: url(../images/common/icon-plus-b.png) no-repeat;
    background-size: 100%;
}

@media only screen and (max-width: 767px) {
    .p-artist__icon {
        right: 1.8vw;
        bottom: 1.8vw;
        width: 5vw;
        height: 5vw;
    }
}

.p-artist__txt {
    /*width: calc(50% - min(2vw,40px));*/
}

@media only screen and (max-width: 767px) {
    .p-artist__txt {
        width: 100%;
    }
}

.p-artist__ttl {
    /*margin-bottom: min(2vw,40px);*/
    line-height: 1.2;
}

.p-artist__catch {
    margin-bottom: min(2.8vw,40px);
    line-height: 1.4;
}

.p-artist__desc {
    margin-bottom: min(2vw,40px);
    line-height: 2.2;
}

@media only screen and (max-width: 767px) {
    .p-artist__desc {
        margin-bottom: 4vw;
        line-height: 1.8;
    }
}

.p-artist__list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: min(3.2vw,40px);
    /*width: calc(50% - min(3.2vw,40px));*/
}

/*#artist .p-artist__list {
    justify-content: center;
}*/

@media only screen and (max-width: 767px) {
    .p-artist__list {
        width: 100%;
        gap: 7vw min(3.2vw,40px);
    }
}

.p-artist__list--column3 .p-artist__item {
    width: calc((100% - min(6.4vw,80px)) / 3);
}

@media only screen and (max-width: 767px) {
    .p-artist__list--column3 .p-artist__item {
        width: calc((100% - min(3.2vw,40px)) / 2);
    }
}

.p-artist__list--column4 .p-artist__item {
    width: calc((100% - min(9.6vw,120px)) / 4);
}

@media only screen and (max-width: 767px) {
    .p-artist__list--column4 .p-artist__item {
        width: calc((100% - min(6.4vw,80px)) / 3);
    }

}

.p-artist__name {
    margin-top: 12px;
}

@media only screen and (max-width: 767px) {
    .p-artist__name {
        margin-top: 1.8vw;
    }
}

#artist .p-artist__name p {
    margin-bottom: 14px;
}

@media only screen and (max-width: 767px) {
    #artist .p-artist__name p {
        margin-bottom: 8px;
    }

}

.p-artist__name p {
    margin-bottom: 8px;
}

@media only screen and (max-width: 767px) {
    .p-artist__name p {
        font-size: 2.8vw;
        line-height: 1.4;
    }
}

.p-artist__name strong {
    display: block;
    margin-bottom: 4px;
}

@media only screen and (max-width: 767px) {
    .p-artist__name strong {
        margin-bottom: 0;
        font-size: 3.6vw;
        line-height: 1.2;
    }
}

.p-artist__name small {
    display: block;
}

#campanella .p-artist__name p {
    margin-bottom: 8px;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    #campanella .p-artist__name p {
        margin-bottom: 4px;
    }
}

#campanella .p-artist__logo img {
    width: 54%;
}

#campanella .p-artist__name {
    margin-top: 8px;
}

@media only screen and (max-width: 767px) {
    #campanella .p-artist__name {
        margin-top: 6px;
    }
}

.p-guest {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: min(8vw,40px) min(4vw,70px) min(12vw,80px);
}

.p-guest__main {
    display: flex;
    flex-direction: column;
    gap: min(4vw,80px);
}

@media only screen and (max-width: 767px) {
    .p-guest__main {
    }
}

.p-guest__ttl {
    margin-bottom: min(4vw,48px);
    line-height: 1.4;
    text-align: center;
}

.p-guest__art {
    /*width: calc((100% - min(2vw,40px)) / 2);**/
    width: 100%;
    padding: min(4vw,58px) min(4vw,80px) min(4vw,58px);
    background: rgba(22,12,53,0.8);
}

@media only screen and (max-width: 767px) {
    .p-guest__art {
        width: 100%;
        padding: 5vw 4vw 5vw;
    }
    .p-guest__art:last-child {
        margin-bottom: 0;
    }
}

.p-guest__art--inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: min(4vw,80px);
}

@media only screen and (max-width: 767px) {
    .p-guest__art--inner {
        display: block;
    }
}

.p-guest__img {
    overflow: hidden;
    width: calc(41% - min(2vw,40px));
}

@media only screen and (max-width: 767px) {
    .p-guest__img {
        width: 54%;
        margin: 0 auto;
    }
}

.p-guest__txt {
    width: calc(50% - min(2vw,40px));
    /*margin-top: min(4vw,40px);*/
}

@media only screen and (max-width: 767px) {
    .p-guest__txt {
        width: 100%;
        margin-top: 3.6vw;
    }
}

.p-guest__name {
    margin-bottom: min(3.4vw,24px);
    line-height: 1.4;
}

.p-guest__desc {
    line-height: 1.8;
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

.p-guest__comment {
    margin-top: min(6.8vw,34px);
}

.p-guest__comment h6 {
    position: relative;
    margin-bottom: 16px;
    z-index: 1;
}

.p-guest__comment h6:after {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -1px;
    background: #fff;
    z-index: -1;
}

.p-guest__comment h6 span {
    display: inline-block;
    padding: 6px min(3.2vw,28px) 4px;
    color: #160c35;
    background: #fff;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .p-guest__comment h6 span {
        padding: 4px 4vw 4px;
    }
}

.p-guest__comment p {
    line-height: 1.8;
}

.p-program {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: min(8vw,70px) min(4vw,70px) min(10vw,70px);
}

.p-program__list {
    margin-top: 48px;
}

@media only screen and (max-width: 767px) {
    .p-program__list {
        margin-top: 8vw;
    }
}

.p-program__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--color_bg);
}

.p-program__bg:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--color_bg);
    background-size: 100% 100%;
    transition-duration: 0.4s;
    opacity: 1;
}

.p-program__bg.is-active:after {
    opacity: 0;
    height: 50%;
}

.p-program__bg:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #4f1162, #175964);
    background-size: 100% 100%;
    opacity: 0;
    transition-duration: 0.4s;
    animation: bggradient 4s ease 1;
}

.p-program__bg.is-active:before {
    opacity: 1;
}

.p-program__ttl {
    margin-bottom: min(3vw,40px);
    line-height: 1.2;
    text-align: center;

}

@media only screen and (max-width: 767px) {
    .p-program__ttl {
        margin-bottom: 4vw;
    }
}

.p-program__item {
    position: relative;
    margin-bottom: min(1.4vw,20px);
    /*background: rgba(22,12,53,0.8);*/
}

@media only screen and (max-width: 767px) {
    .p-program__item {
        margin-bottom: 5vw;
        padding: 0;
        background: inherit;
    }
}

.p-program__item:last-child {
    margin-bottom: 0;
}

.p-program__img {
    overflow: hidden;
}

.p-program__img img {
    width: 100%;
}

.p-program__txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 50%;
    width: 41%;
    min-height: min(60vw,500px);
    padding: 20px 50px;
    transform: translate(0,-50%);
    background: rgba(22,12,53,0.8);
}

@media only screen and (max-width: 767px) {
    .p-program__txt {
        position: static;
        margin-top: 3.4vw;
        width: 100%;
        min-height: inherit;
        padding: 0;
        transform: translate(0,0);
        background: inherit;
    }
}


.p-program__item--reverse .p-program__txt {
    left: 0;
    right: inherit;
}

.p-program__catch {
    margin-bottom: min(2vw,40px);
}

@media only screen and (max-width: 767px) {
    .p-program__catch {
        margin-bottom: 4vw;
    }
}

.p-program__desc {
    text-align: left;
    line-height: 2;
}

.p-program__btn {
    margin: min(4vw,40px) auto 0;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .p-program__btn {
        margin: 6vw auto 0;
    }
}

.p-access {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: min(10vw,120px) min(4vw,70px) min(4vw,70px);
}

@media only screen and (max-width: 767px) {
    .p-access {
        padding: 10vw 4vw 2vw;
    }
}

.p-access__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--color_bg);
}

.p-access__bg:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--color_bg);
    background-size: 100% 100%;
    transition-duration: 0.4s;
    opacity: 1;
}

.p-access__bg.is-active:after {
    opacity: 0;
    height: 50%;
}

.p-access__bg:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #175964, #0c1654);
    background-size: 100% 100%;
    opacity: 0;
    transition-duration: 0.4s;
    animation: bggradient 4s ease 1;
}

.p-access__bg.is-active:before {
    opacity: 1;
}

.p-access__main {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: min(8vw,100px);
}

@media only screen and (max-width: 767px) {
    .p-access__main {
        display: block;
    }
}

.p-access__map {
    overflow: hidden;
    width: calc(50% - min(4vw,50px));
}

@media only screen and (max-width: 767px) {
    .p-access__map {
        width: 100%;
        margin-bottom: 5vw;
    }
}
.p-artist__icon
.p-access__txt {
    width: calc(50% - min(4vw,50px));
}

@media only screen and (max-width: 767px) {
    .p-access__txt {
        width: 100%;
    }
}

.p-access__ttl {
    margin-bottom: min(2vw,60px);
    line-height: 1.2;
    padding: 0 6px;
}

@media only screen and (max-width: 767px) {
    .p-access__txt {
        margin-bottom: 2vw;
        padding: 0 0.75vw;
    }
}

.p-access__desc {
    text-align: left;
    line-height: 2;
}

@media only screen and (max-width: 767px) {
    .p-access__desc {
        line-height: 1.8;
    }
}

.p-access__desc .u-txt__s {
    line-height: 1.6;
    display: inline-block;
}


.p-faq {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 min(4vw,70px) min(12vw,70px);
}

@media only screen and (max-width: 767px) {
    .p-faq {
        padding: 2vw 4vw 12vw;
    }
}

.p-faq__main {
    padding: min(3vw,60px);
    background: rgba(22,12,53,0.8);
}

@media only screen and (max-width: 767px) {
    .p-faq__main {
        padding: 5vw 4vw;
    }
}

.p-faq__btn {
    margin-top: min(8vw,56px);
    text-align: center;
}

.p-faq__ttl {
    margin-bottom: min(-1.2vw,-10px);
    line-height: 1.4;
}

@media only screen and (max-width: 767px) {
    .p-faq__ttl {
        margin-bottom: 0vw;
    }
}

.p-faq__subttl {
    margin-top: min(6vw,40px);
}

@media only screen and (max-width: 767px) {
    .p-faq__subttl {
        margin-top: 4vw;
    }
}

.p-faq__item {
    margin-bottom: min(1.2vw,8px);
    padding: 4px 0;
    border: 2px solid var(--color_main);
}

@media only screen and (max-width: 767px) {
    .p-faq__item {
    }
}

.p-faq__item:last-child {
    margin-bottom: 0;
}

.p-faq__q,
.p-faq__a {
    display: flex;
}

.p-faq__q h6,
.p-faq__a p {
    padding: min(2.4vw,16px) min(3.2vw,32px);
    line-height: 2em;
    line-height: 1.6;
}

@media only screen and (max-width: 767px) {
    .p-faq__q h6,
    .p-faq__a p {
        line-height: 1.6;
    }
}

.p-faq__q {
    position: relative;
    cursor: pointer;
    padding-right: 40px;
}

.p-faq__q.is-active {
    padding-bottom: 4px;
}

.p-faq__q:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 14px solid var(--color_main);
    transform: translate(0,-50%);
    transition-duration: 0.3s;
}

@media only screen and (max-width: 767px) {
    .p-faq__q:after {
        right: 4vw;
        border-left: 1.6vw solid transparent;
        border-right: 1.6vw solid transparent;
        border-top: 2.8vw solid var(--color_main);
    }
}

.p-faq__q.is-active:after {
    margin-top: -3px;
    transform: translate(0,-50%) rotate(-180deg);
}

.p-faq__a {
    padding-top: 4px;
    border-top: 1px solid var(--color_main);
}

.p-faq__hide {
    display: none;
}

.p-faq__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    padding: min(2.4vw,16px) min(2vw,12px);
    border-right: 1px solid var(--color_main);
    text-align: center;
    line-height: 1.2em;
}

@media only screen and (max-width: 767px) {
    .p-faq__icon {
        min-width: 40px;
        width: 9%;
    }
}

.p-support {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: min(2vw,20px) min(4vw,70px) min(12vw,120px);
}

.p-support__ttl {
    margin-bottom: min(4vw,50px);
    line-height: 1.2;
    padding: 0 6px;
}

@media only screen and (max-width: 767px) {
    .p-support__ttl {
        padding: 0 0.85vw;
    }
}

.p-support__list {
    display: flex;
    flex-wrap: wrap;
    gap: min(1vw,10px);
}

.p-support__item {
    width: calc((100% - min(4vw,40px)) / 5);
    background: #fff;
}

@media only screen and (max-width: 767px) {
    .p-support__item {
        width: calc((100% - 2vw) / 3);
    }
}

.p-support__item span,
.p-support__item a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: min(18.2vw,280px);
    padding: 0 2.4vw;
    color: var(--color_bg);
    font-weight: 800;
    font-size: 1.4rem;
    font-family: 'Noto Sans JP', sans-serif;
}

@media only screen and (max-width: 767px) {
    .p-support__item span,
    .p-support__item a {
        height: 30.5vw;
        padding: 0 2vw;
        font-size: 3.4vw;
        font-weight: 900;
    }
}
