@charset "utf-8";

:root {
    /* linear-gradient */
    --gradient-primary: linear-gradient(to right, #e38819, #d51c37);
    --gradient-secondary: linear-gradient(90deg, #df3b66, #f6aa30);
    --gradient-dark: linear-gradient(40deg, rgba(227, 136, 25, 0.54), rgba(213, 28, 55, 0.54));

    /* color */
    --color-white: #ffffff;
    --color-black: #2e302f;
    --color-black-light: #251714;
    --color-orange: #eb6101;
    --color-orange-light: #da8324;
    --color-red-light: #e04261;
    --color-yellow: #f5cc08;
    --color-yellow-light: #fbf49a;
    --color-yellow-light-2: #eed449;
    --color-sky: #bbd7ea;
    --color-beige: #fdf6ec;
    --color-dark-blue: #092844;
    --color-navy: #0d1d3d;
    --color-gray: #cfcaca;
    --color-gray-light: #f7f8f7;
}

body {
    max-width: 480px;
    margin: 0 auto;
    font-family: 'Hiragino Sans', HiraginoKakuGoshikuW4, 'Yu Gothic UI', 'Meiryo', sans-serif;
    font-weight: 400;
    color: var(--color-black);
    font-feature-settings: "palt";
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

p {
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    padding: 0;
}

li {
    list-style: none;
}

/* ローディング画面
*********************************/
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    max-width: 480px;
    width: 100%;
    margin: auto;
    overflow-x: hidden;
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading__img {
    width: 50%;
    height: auto;
    opacity: 1;
    visibility: visible;
    animation: loading 2s infinite;
}

@keyframes loading {
    0% {
        opacity: 0.5;
    }

    25% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }

    75% {
        opacity: 0.8;
    }

    100% {
        opacity: 0.5;
    }
}

.loading.active {
    opacity: 0;
    visibility: hidden;
}

.loading__img.active {
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 0;
    visibility: hidden;
}

/* セクションタイトル
*********************************/
.section-title-wrapper {
    position: relative;
}

.section-title-wrapper.active::before {
    animation: bg 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    content: '';
    display: inline-block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background: var(--gradient-primary);
    transform-origin: left center;
}

@keyframes bg {
    0% {
        opacity: 0;
        transform: scaleX(0) translateX(-5%);
    }

    30% {
        transform: scaleX(1) translateX(0);
    }

    100% {
        transform: scaleX(1) translateX(0);
    }

    30%,
    100% {
        opacity: 1;
    }
}

.section-title {
    width: 100%;
    padding: 8px;
    font-size: clamp(1.5rem, 7.5vw, 2.25rem);
    font-weight: 700;
    text-align: center;
    color: var(--color-white);
    font-family: a-otf;
    line-height: 1;
    opacity: 1;
    position: relative;
    z-index: 1;
}

.section-title span {
    display: block;
    font-size: 0.417em;
    margin-top: 0.4em;
}

.section-title small {
    display: block;
    font-size: 0.5em;
    padding-top: 0.3em;
}

/*------------------------------------------
 ヘッダー
-------------------------------------------*/
.header {
    text-align: center;
    padding: 2.7% 0 2.1%;
}

.header img {
    box-sizing: content-box;
    width: 27%;
    height: auto;
}

/* ファーストビュー
*********************************/
.fv {
    position: relative;
    overflow: hidden;
    background-image: url('img/bg-fv.png');
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;

    --z-bg-gradient: 1;
    --z-catch: 10;
    --z-title: 10;
    --z-img: 50;
    --z-bottom-text: 100;
}

.fv::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    padding-top: 0;
    display: block;
    width: 100%;
    height: 0;
    background-image: url('img/bg-fv-gradient.png');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: var(--z-bg-gradient);
    transition: padding-top 0.7s ease-in-out;
}

.fv.active::before {
    padding-top: 100%;
}

.fv-catch-area {
    position: relative;
    padding-top: 5.3%;
    aspect-ratio: 856 / 1125;
    width: 100%;
}

.fv-title {
    position: absolute;
    top: 31%;
    left: 4%;
    width: max-content;
    font-size: clamp(0.75rem, 0.013rem + 3.69vw, 1.119rem);
    font-weight: 700;
    font-family: a-otf;
    text-align: center;
    margin-bottom: 20%;
    z-index: 1;
}

.fv-title__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.fv-title__text-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 0.22em;
    transform: skew(-10deg);
}

.fv-title__text-wrapper::before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    transform-origin: left center;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.fv-title__text-wrapper.active::before {
    animation: bg 1s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal forwards;
}

.fv-title__text {
    display: inline-block;
    box-shadow: 0 0 3px var(--color-gray);
    padding: 0.2em;
    letter-spacing: -0.05em;
    box-shadow: 1.5px 1.5px 0 var(--color-red-light);
    white-space: nowrap;
    opacity: 0;
    position: relative;
    z-index: 1;
    transition: opacity 0.5s;
}

.fv-title__text-wrapper:first-child .fv-title__text {
    padding-left: 0.6em;
}

.fv-title__text-wrapper:first-child .fv-title__text .text span {
    display: inline-block;
    margin: 0 -0.3em 0 0;
}

.fv-title__text-wrapper:nth-child(2) .fv-title__text {
    padding-left: 0;
}

.fv-title__text-wrapper:nth-child(2) .fv-title__text .text.gradation {
    letter-spacing: -0.11em;
}

.fv-title__text-wrapper:nth-child(2) .fv-title__text .text:not(.gradation) {
    text-indent: -0.4em;
}

.fv-title__text-wrapper:nth-child(2) .fv-title__text {
    letter-spacing: -0.07em;
}

.fv-title__text-wrapper:nth-child(3) .fv-title__text {
    letter-spacing: -0.15em;
}

.fv-title__text .text {
    display: inline-block;
}

.fv-title__text.active {
    opacity: 1;
}

.fv-title__text-wrapper:last-child {
    margin-bottom: 0;
}

.fv-title__text .gradation {
    font-size: 1.1em;
    letter-spacing: -0.11em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fv-title__text-wrapper--top {
    margin-left: 6%;
}

.fv-title__text-wrapper--middle {
    margin-left: 3%;
}

.fv-title__text-wrapper--bottom {
    margin-left: 0;
}

.fv-catch-wrapper {
    position: relative;
    width: fit-content;
    margin-left: 6%;
    z-index: var(--z-catch);
    opacity: 0;
    transform: translateY(10%);
    transition: opacity 1s ease, transform 1.5s ease-in-out;
}

.fv-catch-wrapper.active {
    opacity: 1;
    transform: translateY(0);
}

.fv-catch {
    position: relative;
    z-index: 20;
}

.fv-catch__text img {
    width: min(364.2px, 75.5vw);
    max-width: unset;
}

.fv-img {
    position: absolute;
    z-index: var(--z-img);
    right: -2%;
    top: 22%;
    margin: 0 auto;
    width: 66.5%;
    max-width: 100%;
    opacity: 0;
    transform: translateX(10%);
    transition: transform 1s ease-in-out, opacity 1.5s ease-in-out;
}

.fv-img.active {
    opacity: 1;
    transform: translateX(0);
}

.fv-bottom-area {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    z-index: var(--z-bottom-text);
    background: linear-gradient(to top,
            white 0%,
            white 50%,
            rgba(255, 255, 255, 0) 100%);
}

.fv-bottom-area p {
    transition: opacity 1s ease, transform 0.5s ease-in-out;
    opacity: 0;
    transform: translateY(20%) translateX(-50%);
    width: auto;
}

.fv-bottom-area p.upper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 79.2%;

}

.fv-bottom-area p.down {
    position: absolute;
    top: 65%;
    left: 50%;
    width: 80%;

}

.fv-bottom-area p.upper.active {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
}

.fv-bottom-area p.down.active {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
}

.fv-bottom-area p img {
    width: 100%;
    max-width: unset;
}

.fv-desc {
    position: relative;
    color: var(--color-white);
    background-color: var(--color-red-light);
    font-family: LineSeedJpBold;
    padding: 4.2% 0;
    z-index: 200;
}

.fv-desc__text {
    position: relative;
    padding: 1.9% 4.67% 1.9% 3.6%;
}

.fv-desc__text::before,
.fv-desc__text::after {
    content: '';
    position: absolute;
    left: 0;
    background-color: var(--color-white);
    height: 1.5%;
}

.fv-desc__text::before {
    top: 0;
    width: 65%;
}

.fv-desc__text::after {
    bottom: 0;
    width: 80%;
}

.fv-desc__text p {
    font-size: clamp(0.938rem, -0.313rem + 6.25vw, 1.563rem);
    letter-spacing: 0.05em;
    line-height: 1.15;
}

.fv-desc__year {
    display: inline-block;
}

.fv-desc__date {
    font-size: 1.3em;
    padding: 0 0.09em;
}

.fv-desc__text p:last-child {
    padding-left: 1em;
    font-style: italic;
}

.fv-desc__text-yellow {
    padding-left: 0.1em;
    font-size: 1.7em;
    letter-spacing: 0.01em;
    color: var(--color-yellow);
}

.fv__label {
    position: absolute;
    right: 2.5%;
    bottom: 1.4%;
    z-index: 100;
    width: 37.8%;
}

/* IT Boot Camp@島根とは？
*********************************/
.about-section__inner {
    padding: 16.8% 8.5% 0;
}

.about-section__title {
    position: relative;
    width: -moz-fit-content;
    width: -webkit-fit-content;
    width: fit-content;
    margin: auto;
    font-family: koz-go-pr6n;
    font-size: clamp(1.402rem, 0.001rem + 7.01vw, 2.103rem);
    letter-spacing: -0.05em;
    color: var(--color-orange);
    white-space: nowrap;
}

.about-section__title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 5px;
    transform: translate(-50%);
    display: inline-block;
    width: 100%;
    height: 4px;
    background-color: var(--color-yellow-light-2);
    z-index: -1;
}

.about-section__list {
    margin: 10.4% 0 11.2%;
    display: flex;
    flex-direction: column;
    gap: min(5.6vw, 27px);
}

.about-section-item {
    max-width: 480px;
    width: 100%;
    padding: 5%;
    background-color: var(--color-white);
    border-radius: 20px;
    box-shadow: 2px 2px 6px rgba(6, 0, 1, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10%);
    transition: opacity 1s ease, visibility 0.3s ease;
}

.about-section-item.js-scroll.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.about-section-item__img {
    text-align: center;
}

.about-section-item__img img {
    width: 70%;
}

.about-section-item__title {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 3px;
}

.about-section-item__title span {
    position: relative;
    top: -1px;
    width: 9%;
    height: 9%;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: clamp(1rem, 5vw, 1.5rem);
    font-family: a-otf;
}

.about-section-item__desc {
    font-size: clamp(0.881rem, -0.001rem + 4.41vw, 1.323rem)
}

.about-section-item__text {
    font-size: 1em;
    font-weight: 600;
    line-height: 1.25;
    margin-top: 0.2em;
}

.about-section-item__desc p {
    font-size: 1em;
}

.about-section-item:nth-of-type(2) .about-section-item__desc p {
    font-size: 0.7em;
    margin-top: 0.4em;
}

/* ポイント */
.point__img {
    width: 103%;
    max-width: none;
}

.point__img img {
    width: 100%;
    max-width: unset;
}

.point-list {
    margin: 0;
}

.point-list__item {
    padding: 3.2% 0;
    border-bottom: 1px dotted var(--color-black);
    font-size: clamp(1.063rem, -0.188rem + 6.25vw, 1.688rem);
}

.point-list__item span {
    font-family: LineSeedJpBold;
    color: var(--color-orange);
    font-size: 0.7em;
}

.point-list__text {
    font-family: HiraginoKakuGoshikuW5;
    line-height: 1.28;
}

.about-section-satisfaction__img {
    width: 94%;
    margin: 5% auto 14.7%;
}

.about-section-satisfaction__img img {
    width: 100%;
    max-width: 100%;
}

/* 初学者でも学びやすい3コース
*********************************/
.course-section__inner {
    padding: 8.4% 4.2% 9.8%;
}

.course-card {
    position: relative;
    margin: 8.8% 4.2% 5.8%;
    padding: 4.3% 5%;
    background-color: var(--color-beige);
    border-radius: 20px;
    box-shadow: 0 0 3px var(--color-gray);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10%);
    transition: opacity 1s ease, visibility 0.3s ease;
    font-feature-settings: normal;
}

.course-card.js-scroll.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.course-card--top .course-card__label p {
    line-height: 1.15;
    font-size: min(4vw, 20px);
}

.course-card__title {
    text-align: center;
    font-size: clamp(1rem, 5vw, 1.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1em;
    font-family: a-otf;
    letter-spacing: -0.02em;
}

.course-card__label {
    position: absolute;
    top: -15px;
    left: -15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: a-otf;
    font-weight: 700;
    color: var(--color-white);
    white-space: pre-wrap;
    background: var(--gradient-secondary);
    border: 3px solid var(--color-white);
    border-radius: 50%;
    width: min(17vw, 78px);
    height: min(17vw, 78px);
    transform: rotate(-15deg);
}

.course-card__text {
    margin-top: 15px;
    font-size: clamp(.8125rem, .1875rem + 3.125vw, 1.125rem);
}

.course-card--top .course-card__text {
    display: flex;
    align-items: center;
    gap: 20px;
}

.course-card__img {
    width: 47%;
}

.course-card__img+p {
    width: 53%;
    font-size: clamp(0.7rem, 3.5vw, 1.05rem);
    font-weight: 300;
}

.course__desc {
    font-size: clamp(0.819rem, 0.006rem + 4.06vw, 1.225rem);
    letter-spacing: 0.05em;
    margin: 0 5.3%;
}

/* スケジュール
*********************************/
.schedule-section__inner {
    padding: 0 4.2% 19%;
}

.schedule-content {
    margin: 9% 0 12.5%;
}

.schedule-cards {
    padding: 0 4.4%;
    margin: 0;
}

.schedule-card {
    position: relative;
    text-align: center;
    background-color: var(--color-beige);
    border: 2.1px solid #efefef;
    box-shadow: 1.75px 1.75px 1.75px rgba(66, 65, 67, 0.1);
    padding-top: 3%;
    margin-bottom: 7.9%;
}

.schedule-card:last-child {
    margin-bottom: 0;
}

.schedule-card::after {
    content: '';
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background-color: var(--color-dark-blue);
    width: 18%;
    aspect-ratio: 128 / 50;
}

.schedule-card:last-child::after {
    content: none;
}

.schedule-card__step {
    font-size: clamp(1.069rem, -0.006rem + 5.37vw, 1.606rem);
    letter-spacing: 0.1em;
    line-height: 1;
    color: var(--color-white);
    padding: 0.3em 1.7em;
    display: inline-block;
    background-color: var(--color-orange-light);
}

.schedule-card__title {
    position: relative;
    display: inline-block;
    font-size: clamp(1.169rem, 0.006rem + 5.81vw, 1.75rem);
    font-weight: 600;
    margin: 1em 0;
    line-height: 1;
}

.schedule-card__title span:not(.annotation) {
    font-size: 0.74em;
}

.schedule-card__title .annotation {
    position: absolute;
    top: -13%;
    left: 101%;
    white-space: nowrap;
    font-size: 0.64em;
}

.schedule-card__desc {
    font-family: 'Hiragino Sans', 'Yu Gothic UI', 'Meiryo', sans-serif;
    font-size: clamp(0.881rem, 0.006rem + 4.38vw, 1.319rem);
    font-weight: 500;
    padding: 0.67em;
    display: flex;
    justify-content: center;
    gap: 5%;
}

.schedule-card__desc--agenda {
    background-color: var(--color-yellow-light);
}

.schedule-card__desc--location {
    background-color: var(--color-sky);
}

.schedule-card__label {
    display: inline-block;
    background-color: var(--color-white);
    padding: 0.27em 0.68em;
    line-height: 1;
    min-width: fit-content;
    align-self: center;
}

.schedule-card__text {
    font-size: 1.11em;
    text-align: left;
    white-space: nowrap;
}

.schedule-card__text--small {
    font-size: 0.85em;
}

.schedule-section__desc {
    font-size: clamp(0.875rem, 4.38vw, 1.313rem);
    line-height: 1.57;
    letter-spacing: 0.05em;
}

.schedule-section__desc p:first-child {
    margin-bottom: 1.57em;
}

/* 昨年度参加者の声
*********************************/
.voice-section__inner {
    padding: 14% 4.2% 15.4%;
}

.voice-section__img {
    width: 52%;
    margin: 6% auto 0;
}

.voice-card-wrapper {
    margin-top: 8.4%;
}

.voice-card {
    position: relative;
    max-width: 480px;
    width: 100%;
    margin-bottom: 11.2%;
    position: relative;
    border-radius: 20px;
    background-color: var(--color-beige);
    padding: 16.6% 6.8% 8.5%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10%);
    transition: opacity 1s ease, visibility 0.3s ease;
}

.voice-card::before {
    content: '';
    position: absolute;
    top: 7%;
    left: 6%;
    aspect-ratio: 1 / 1;
    background-image: url(img/icon-quote.svg);
    width: 6.3%;
    height: auto;
}

.voice-card::after {
    content: '';
    position: absolute;
    top: 100%;
    width: 5%;
    aspect-ratio: 1 / 1;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background-color: var(--color-beige);
    transform: translateY(-1px);
}

.voice-card:nth-child(even)::after {
    right: 8.4%;
}

.voice-card.js-scroll.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.voice-card:last-child {
    margin-bottom: 0;
}

.voice-card__text {
    font-size: clamp(0.875rem, 4.38vw, 1.313rem);
    line-height: 1.57;
    letter-spacing: 0.03em;
    text-align: justify;
}

.profile {
    display: flex;
    align-items: center;
    gap: min(3.5vw, 17px);
    margin-bottom: 6.8%;
}

.profile__img {
    width: 34%;
}

.profile__text {
    width: 66%;
    font-size: clamp(1.188rem, -0.063rem + 6.25vw, 1.813rem);
    font-family: HiraginoKakuGoshikuW5;
}

.profile__univ {
    display: block;
    font-size: 0.5em;
}

.profile__faculty {
    display: block;
    font-size: 0.5em;
    margin-bottom: 0.1em;
}

.profile__name {
    display: block;
    font-family: 'Hiragino Sans', "Noto Sans JP", sans-serif;
    font-weight: 500;
}

.profile__ruby {
    display: block;
    font-size: 0.46em;
    text-indent: -0.5em;
    letter-spacing: -0.03em;
}

/* 募集要項
*********************************/
.offer-section {
    background-color: var(--color-beige);
}

.offer-section__inner {
    padding: 8.4% 4.2% 11.2%;
}

.offer-section__list {
    margin: 8.4% 0 9.8%;
    font-family: a-otf;
    font-size: clamp(1rem, 5vw, 1.5rem);
    font-weight: bold;
}

.offer-section__item {
    display: flex;
    align-items: flex-start;
    gap: min(4vw, 19px);
    margin-bottom: 0.4em;
}

.offer-section__item:last-child {
    margin-bottom: 0;
}

.offer-section__item>span {
    font-weight: 700;
    color: var(--color-white);
    background-color: var(--color-orange);
    padding: 0.05em 0.2em;
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
}

.offer-section__item small {
    font-size: 0.7em;
    font-family: HiraginoKakuGoshikuW4;
}

.offer-section__item p {
    letter-spacing: -0.02em;
}

.offer-section__item p span {
    display: inline-block;
    margin: 0 -0.5em;
}

.offer-section__target ul {
    margin-top: 10px;
}

.offer-section__target ul li {
    font-size: 0.7em;
    text-indent: -1em;
    margin-left: 1em;
}

.offer-section__annotation {
    font-size: clamp(0.8rem, 4vw, 1.2rem);
    font-weight: 300;
    line-height: 1.74;
}

/* お申し込み・ご質問について
*********************************/
.contact-section {
    text-align: center;
    background-color: var(--color-gray-light);
}

.contact-section__inner {
    padding: 8.4% 0 10%;
}

.contact-section__title {
    font-size: clamp(1.375rem, -0.125rem + 7.5vw, 2.125rem);
    font-weight: 700;
    text-align: center;
    color: var(--color-orange);
    font-family: HiraginoKakuGoshikuW6;
}

.contact-section__text {
    font-size: clamp(0.75rem, 3.75vw, 1.125rem);
    font-weight: 300;
    text-align: center;
    margin: 1.2em 0 1.5em;
    white-space: nowrap;
}

.contact-section__img {
    width: 42%;
    margin: 0 auto 3%;
}

.contact-section__img {
    margin-bottom: 15px;
}

.contact-section__button {
    display: block;
    width: 62%;
    margin: 0 auto;
}

.contact-section__button img {
    -webkit-animation: scale 3s infinite;
    animation: scale 3s infinite;
}

@keyframes scale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale3d(1.05, 1.05, 1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* よくある質問
*********************************/
.faq-section__inner {
    padding: 13.4% 5.9%;
}

.faq-box {
    border-bottom: 1px dotted var(--color-black-light);
}

.faq-box:last-child {
    margin-bottom: 0;
}

.faq-box__question {
    display: flex;
    align-items: flex-start;
    position: relative;
    margin-left: 1%;
    margin-top: 6.6%;
    white-space: pre-wrap;
    font-weight: 400;
    font-size: clamp(0.818rem, -0.001rem + 4.09vw, 1.227rem);
}

.faq-box__question span,
.faq-box__answer span {
    display: inline-block;
    margin-top: 2.9%;
}

.faq-box__answer {
    display: flex;
    align-items: flex-start;
    position: relative;
    margin-left: 1%;
    margin-top: 2.7%;
    margin-bottom: 6.6%;
    line-height: 1.5;
    font-size: clamp(0.701rem, -0.001rem + 3.51vw, 1.051rem);
}

.faq-box__question::before,
.faq-box__answer::before {
    content: "Q";
    width: 12.2%;
    aspect-ratio: 1 / 1;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.3em;
    color: var(--color-white);
    flex-shrink: 0;
    margin-right: 2%;
}

.faq-box__question::before {
    content: "Q";
    color: var(--color-white);
    background-color: var(--color-orange);
}

.faq-box__answer::before {
    content: "A";
    color: var(--color-white);
    background-color: var(--color-navy);
}

.faq-box__list {
    margin-top: 5px;
}

.faq-box__list li {
    font-size: 0.9em;
}

/* 主催、運営
*********************************/
.management-info-section {
    color: var(--color-white);
    background-color: var(--color-red-light);
}

.management-info-section__inner {
    padding: 10%;
}

.management-info-section__title {
    font-size: clamp(1.4rem, 7vw, 2.1rem);
    text-align: center;
}

.management-info-section__text {
    margin-top: 7.4%;
    font-size: clamp(0.78rem, 3.9vw, 1.17rem);
    line-height: 1.57;
}

.management-info-section__text a {
    color: inherit;
    text-decoration: none;
}

/*------------------------------------------
 フッター
-------------------------------------------*/
.footer {
    text-align: center;
}

.footer img {
    width: 40%;
    padding: 3.5% 0 3%;
}