@charset "UTF-8";


/* ===================================
共通項目
 =================================== */
.audition__inner {
    max-width: calc(1000px + 30px * 2);
    margin-left: auto;
    margin-right: auto;
    padding-inline: 30px;
}

.audition__section-heading {
    text-align: center;
}
.audition__section-title--en {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.08em;
}
.audition__section-title--ja {
    font-size: 18px;
    text-align: center;
    letter-spacing: 0;
}

/*
ドット
 */
.audition__section-heading .dot {
    margin-top: 23px;
    display: block;
    width: 10px;
    height: 10px;
    margin-inline: auto;
    border-radius: 999px;
    background: #EF7F27;
    position: relative;
}

.audition__section-heading .dot::before,
.audition__section-heading .dot::after {
    display: inline-block;
    content: "";
    position: absolute;
    bottom: 0;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #EF7F27;
}
.audition__section-heading .dot::before {
    left: -22px;
}
.audition__section-heading .dot::after {
    right: -22px;
}





/* ===================================
MESSAGE
 =================================== */
 .auditionMessage {
    margin-top: 34px;
    padding-top: 50px;
    background: #F6F6F6;
    position: relative;
}
.auditionMessage::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 1440 / 215;
    background: url(../../img/audition__bg_circle.png) no-repeat center center / cover;
}
.auditionMessage__title {
    color: #EF7F27;
    font-size: 32px;
    font-weight: bold;
}
.auditionMessage__text {
    margin-top: 40px;
    text-align: center;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
    line-height: 2;

    display: flex;
    flex-direction: column;
    gap: 40px;

    /* wbrで改行 */
    word-break: keep-all;
    overflow-wrap: anywhere;
}

/* ===================================
選考の流れ　FLOW
 =================================== */
.auditionFlow {
    padding-top: 63px;
    margin-bottom: 14.93vw;
    /* margin-top: 63px; */
    background: #F6F6F6;
    position: relative;
}
.auditionFlow::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    /* max-height: 215px; */
    aspect-ratio: 1440 / 215;
    background: url(../../img/audition__bg_circle.png) no-repeat center center / cover;
    transform: rotate(180deg);
}
.auditionFlow__contents {
    margin-top: 60px;
}
.auditionFlow__items {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.auditionFlow__item {
    background: #fff;
    padding: 22px 47px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.10);

    display: grid;
    grid-template-columns: 60px 140px auto;
    align-items: center;
    gap: 19px;
}
.auditionFlow__item .number {
    font-size: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    color: #EF7F27;
    letter-spacing: 0.08em;
}
.auditionFlow__item .number span {
    font-size: 20px;
    letter-spacing: 0;
}
.auditionFlow__item .title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}
.auditionFlow__item .description {
    font-size: 14px;
    line-height: 1.7;
}

.auditionFlow__alow {
    width: 38px; /* 横幅 */
    height: 28px; /* 高さ */
    background-color: #EF7F27; /* 背景色 */
    clip-path: polygon(50% 100%, 0% 0%, 100% 0%); /* 二等辺三角形（下が頂点） */
    display: block;
    margin: auto; /* 中央配置 */
}

.auditionFlow__attention {
    margin-top: 30px;
    font-size: 12px;
}


/* ===================================
よくある質問 FAQ
 =================================== */
.auditionFaq {
    /* margin-top: 120px; */
    padding-top: 120px;
}
.auditionFaq__contents {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq__item {
    background: #fff;
    border: 1px solid #707070;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.10);
}
.faq__question {
    padding: 12px 23px;
    display: grid;
    grid-template-columns: 50px auto;
    align-items: center;
    gap: 16px;
    position: relative;
}
/* 三角形 */
.faq__question::after {
    content: "";
    position: absolute;
    top: 25px;
    right: 24px;
    width: 15px; /* 横幅 */
    height: 12px; /* 高さ */
    background-color: #333333; /* 背景色 */
    clip-path: polygon(50% 100%, 0% 0%, 100% 0%); /* 二等辺三角形（下が頂点） */
    display: block;
    transition: all 0.3s ease;
}


details[open] .faq__question::after {
    rotate: 180deg;
}

.faq__question-number {
    display: block;
    font-size: 26px;
    font-weight: bold;
    color: #EF7F27;
}
.faq__question-text {
    display: block;
    font-size: 18px;
    font-weight: bold;
}
.auditionFaq .content {
    border-top: 1px solid #707070;
    padding: 34px 23px 45px 89px !important;
}


/* ===================================

 =================================== */
.auditionRecruit {
    margin-top: 150px;
}
.auditionRecruit__inner {
    max-width: calc(1130px + 30px * 2) !important;
    margin-left: auto;
    margin-right: auto;
    padding-inline: 30px;
}
.auditionRecruit__box {
    padding: 100px 30px;
    border: 2px solid #707070;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.13);
    overflow: hidden;
    position: relative;
}
.auditionRecruit__box::before {
    content: "";
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 194px;
    height: auto;
    aspect-ratio: 1 / 1;
    background: #707070;
    border-radius: 999px;
}
.auditionRecruit__message {
    margin-top: 70px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    /* wbrで改行 */
    word-break: keep-all;
    overflow-wrap: anywhere;
}
.auditionRecruit__attention {
    margin-top: 30px;
    font-size: 12px;
    text-align: center;
}
.auditionRecruit__items {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.auditionRecruit__item {
    margin-top: 52px;
    width: 634px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    background: #F6F6F6;
    border-radius: 999px;
    padding: 66px 40px 34px 40px;
    position: relative;
}
.auditionRecruit__item .title {
    position: absolute;
    top: -52px;
    left: 50%;
    transform: translateX(-50%);
    width: 101px;
    height: 101px;
    aspect-ratio: 1 / 1;
    background: #EF7F27;
    border-radius: 999px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.auditionRecruit__item .text {
    text-align: center;
    line-height: 2;
}
.auditionRecruit__item .sub {
    margin-top: 10px;
    font-size: 12px;
    text-align: center;
}


/* ===================================
応募はこちら
 =================================== */
.auditionCta {
    margin-top: 150px;
    padding-bottom: 103px;
}
.auditionCta__items {
    margin-top: 70px;
    display: flex;
    justify-content: center;
    gap: 40px;
}
.auditionCta__item {
    background: #F6F6F6;
    border-radius: 20px;
    padding: 39px;
    width: 50%;
}
.auditionCta__item .title {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    position: relative;
    padding-bottom: 18px;
}
.auditionCta__item .title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #333333;
}
.auditionCta__item .img img {
    margin-top: 50px;
    max-width: 177px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.auditionCta__item-button {
    margin-top: 56px;
    text-align: center;
}
.auditionCta__item-button a {
    display: inline-block;
    width: 298px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 13px 37px 13px 30px;
    color: #fff;
    background: #333;
    border: 1px solid #333;
    border-radius: 999px;
    font-size: 16px;
    border: none;
    text-align: left;
    position: relative;
}
@media (any-hover: hover) {
    .auditionCta__item-button a:hover {
        background: #fff;
        color: #333;
        border: 1px solid #333;
    }
}
.auditionCta__item-button a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 13px;
    height: 11px;
    background: url(../../img/arrow-right_w.svg) no-repeat center center / contain;
    transition: all 0.3s ease;
}
@media (any-hover: hover) {
    .auditionCta__item-button a:hover::after {
        background: url(../../img/arrow-right_b.svg) no-repeat center center / contain;
    }
}

.auditionCta__item .text {
    margin-top: 32px;
    text-align: center;
    /* wbrで改行 */
    word-break: keep-all;
    overflow-wrap: anywhere;
}


/* ===================================
バナー
 =================================== */
.auditionBanner {
    margin-top: 150px;
    padding-top: 70px;
    padding-bottom: 103px;
    background: #F6F6F6;
}
.auditionBanner__items {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.auditionBanner__item {
    width: 400px;
    max-width: 100%;
}
.auditionBanner__item img {
    width: 100%;
}


/* ===================================
画面下部固定ボタン
 =================================== */
.fixed-cta {
    position: fixed;
    bottom: 40px;
    right: 3.96%;
    width: 110px;
    height: 110px;
}
.fixed-cta__button {
    display: block;
    width: 100%;
    height: 100%;
    background: #EF7F27;
    color: #fff;
    border-radius: 999px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.10);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .fixed-cta__button:hover {
    transform: scale(1.1);
  }
}
.fixed-cta__button-alow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 15px;
    margin-left: auto;
    margin-right: auto;
}
.fixed-cta__button-alow svg {
    width: 100%;
}
