:root {
    --tarquoise: #068296;
    --h1-green: #06ad70;
    --mint: #d2f0f0;
    --pale-orange: #ef8876;
    --pink: #ef7376;
    --orange: #f15a24;
    --yellow: #ffff00;
    --yellow-orange: #ff931e;
    --blue: #006ec8;
    --purple: #7846a0;
    --gray: #d2f0f0;
    --stripe-gray: #bde5e7;
    --green-shadow: 3px 3px 0px 0px #068296;
    --floating-shadow: 7px 3px 11px 2px #c6c6c6;
    --seminar-shadow: 6px 6px 0px 0px #b9b5b5;
    --pop-yellow: #ffda2d;
    --pop-tarquoise: #45baba;
    --seminar-tarquoise: #44bbbb;
    --seminar-blue: #3f84c6;
}

* {
    font-family: "Noto Sans JP",
        "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}


html {
    font-size: 62.5%;
    /* 1rem = 10px */
    scroll-behavior: smooth;
}


html * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


@media screen and (max-width: 1200px) {
    html {
        font-size: 60%;
    }
}

@media screen and (max-width: 900px) {
    html {
        font-size: 57%;
    }
}

@media screen and (max-width: 600px) {
    html {
        font-size: 50%;
    }
}


p,
span,
li,
a,
div {
    font-size: 1.8rem;
}

a {
    text-decoration: none;
    color: inherit;
}


h1,
h2,
h3,
h4 {
    font-weight: 600;
}

h1 {
    font-size: 3.2rem;
}



ul {
    list-style: none;
}

article span {
    line-height: 2;
    display: block;
    text-align: center;
}


img {
    width: 100%;
}

/* main, */
section {
    padding: 3rem 0;
}


/* ヘッダー */

.header-inner menu {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 1rem 2rem;
    color: var(--tarquoise);
    font-weight: 600;
    flex-wrap: wrap;
}

.header-inner menu li {
    width: fit-content;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}

.header-inner menu li:not(:last-child) a::after {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 0;
    content: "";
    height: 50%;
    width: 1px;
    background: var(--tarquoise);

}


.header-inner menu li figure {
    width: 2.5rem;
    margin-right: 0.5rem;
}

.header-inner menu li:last-child {
    border-right: unset;
}

.header-inner menu li a {
    position: relative;
    padding: 0 2rem;
}

.header-inner menu li:first-child a:hover figure {
    transform: scale(1.1);
}

.header-inner menu li:first-child a figure {
    transition: 0.2s ease-out;
}

.header-inner menu li:not(:first-child) a::before {
    content: "";
    position: absolute;
    background-color: var(--pop-tarquoise);
    bottom: 0;
    left: 50%;
    width: 0px;
    height: 3px;
    transform: translate(-50%, 0);
    transition: 0.2s ease-out;
}

.header-inner menu li a:hover::before {
    width: 100%;
}

.btn-cont {
    position: fixed;
    right: 0;
    top: 20%;
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    writing-mode: vertical-rl;
    text-orientation: upright;
    z-index: 100;
    text-align: center;
    display: flex;
    gap: 1rem;
    transition: .2s ease-out;
    width: 5rem;
}


.btn-cont:hover {
    width: 5.5rem;
}

.header-reg-btn,
.header-tar-btn {
    border-radius: 1rem 0 0 1rem;
    display: block;
    border: 3px solid #fff;
    transition: .2s ease-out;
}


.header-reg-btn {
    padding: 3rem 1rem 3rem;
    background-color: var(--pale-orange);
}

.header-tar-btn {
    padding: 4rem 1rem 3rem;
    background-color: var(--tarquoise);
}

body.active {
    position: relative;
}

body.active::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 110vh;
    background: #777;
    z-index: 700;
    top: -7rem;
    left: 0;
    opacity: 0.4;
    position: fixed;
}

/* section.hero */
section.hero {
    background-color: var(--mint);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1216/638;
    width: 100%;
}

section.hero>picture,
section.hero>h1 {
    top: 0;
    left: 50%;
    position: absolute;
    transform: translatex(-50%);
    width: 100%;
    max-width: 1800px;
}

section.hero>picture img,
section.hero>h1 img {
    width: 100%;
}

.hero-picture {
    z-index: 10;
}

.hero-picture.hero-pic2 {
    z-index: 1;
}




/* section.about */
.about-spn {
    display: block;
    text-align: center;
}

.about-cont.slim-back {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5rem;
    margin: 8rem auto 5rem;
}

.about-card {
    border: 0.3rem solid var(--tarquoise);
    padding: 4rem 2rem;
    border-radius: 1rem;
    display: flex;
    position: relative;
    box-shadow: var(--green-shadow);
    flex: 0 0 30%;
    min-width: 240px;
    flex-direction: column;
    align-items: center;
}

.about-card>span {
    font-weight: 600;
    text-align: center;
}

.about-card span.letter-green {
    color: var(--tarquoise);
}

.about-card>figure {
    position: absolute;
    height: 100%;
}

figure.about-1-lady {
    aspect-ratio: 41/131;
}

figure.about-2-man {
    aspect-ratio: 40/101;
    left: 0;
    bottom: 0;
    transform: translate(-3rem, 3rem);
}

figure.about-3-man {
    aspect-ratio: 50/151;

}

figure.about-4-lady {
    aspect-ratio: 46/125;
}

figure.about-1-lady,
figure.about-3-man {
    left: 0;
    bottom: 0;
    transform: translate(-2rem, 3rem);
}

figure.about-4-lady {
    right: 0;
    bottom: 0;
    transform: translate(2rem, 3rem);

}

/* section.companies */
section#companies {
    padding-bottom: 7rem;
}

a.companies-list {
    position: relative;
    display: block;
    width: 80%;
    margin: 0 auto;
    max-width: 1060px;
    display: flex;
    justify-content: center;
}

/*a.companies-list::after {
    position: absolute;
    content: "";
    background: url(../img/reg-pop.webp) no-repeat;
    background-size: contain;
    width: 30%;
    aspect-ratio: 157/84;
    top: 0;
    left: 0;
    min-width: 120px;
}*/

.pop-wrap {

    height: 7rem;
    width: 14rem;
    position: relative;
}

span.list-note-pop {
    background: #fff;
    height: 14rem;
    width: 100%;
    border-radius: 3rem;
    text-align: center;
    vertical-align: middle;
    display: flex;
    align-items: center;
    z-index: 3;
    position: absolute;
    color: var(--tarquoise);
    font-weight: 600;
    font-size: 1.4rem;
    padding: 1rem;
    justify-content: center;
    box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.4);
}

span.shadow {
    content: "";
    position: absolute;
    width: 14rem;
    height: 14rem;
    z-index: 2;
    border-radius: 50%;
    transform: translate(5px, 1px);
    border: 2px solid var(--tarquoise);
}

a.comp-register-btn.pale-orange-btn {
    margin-bottom: 5rem;
}

/* section.timetable */

section.timetable {
    padding: 3rem 0 10rem;
}

section.timetable span.font-big {
    color: var(--yellow);
}


p.time-txt {
    display: inline-block;
    padding: 0 1rem 0 3rem;
    position: relative;
    font-weight: 600;

}

p.time-txt::before {
    content: '';
    position: absolute;
    aspect-ratio: 1 / 1;
    width: 2rem;
    background: url(../img/clock.webp) no-repeat;
    background-size: contain;
    left: 0;
    bottom: 50%;
    transform: translate(50%, 50%);
}

@keyframes time-rotate-man {
    0% {
        transform: translatey(20%) rotate(0);
    }

    50% {
        transform: translatey(20%) rotate(5deg);
    }

    100% {
        transform: translatey(20%) rotate(0);
    }
}

@keyframes time-rotate-lady {
    0% {
        transform: translatey(20%) rotate(0);
    }

    50% {
        transform: translatey(20%) rotate(-5deg);
    }

    100% {
        transform: translatey(20%) rotate(0);
    }
}


.time-man {
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translatey(20%);
}

.time-lady {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translatey(20%);

}

.visit-catch {
    margin: 3rem 0;
}

figure.booth-title {
    text-align: center;
}

.time-visit>* {
    display: block;
}

.time-visit>span {
    text-align: center;
}

.time-visit .time-note {
    width: max-content;
    margin: 0 auto;
}

article.time-visit {
    background: var(--tarquoise);
    position: relative;
    margin: 10rem auto 10rem;
    outline: #fff dotted 2px;
    outline-offset: -1rem;
    padding: 8rem 4rem;
}

.booth-title {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.visit-txt span {
    color: #fff;
    display: block;
    text-align: center;
}

/* section.seminar */

.seminar {
    border: 2px solid var(--pop-yellow);
    box-shadow: var(--seminar-shadow);
    position: relative;
}

ul.seminar-list {
    margin: 5rem auto;
    width: fit-content;
}

.seminar-info {
    flex: 0 1 auto;
}

.seminar-info.info-width {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin: 0 auto 2rem;
    ;
    padding: 0;

}


.seminar-num {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    writing-mode: vertical-rl;
    text-orientation: upright;
    z-index: 100;
    text-align: center;
    display: flex;
    /* gap: 1rem; */
    background: var(--seminar-tarquoise);
    padding: 1rem;
}

.seminar-num span {
    font-size: 2rem;
}

.seminar-time {
    font-weight: 600;
    font-size: 2rem;
}

h4.seminar-title {
    font-size: 4.2rem;
}

.seminar-title-wrap {
    font-size: 2.2rem;
    color: var(--seminar-tarquoise);
}

span.seminar-detail {
    color: var(--seminar-tarquoise);
    font-weight: 600;
}

.seminar-title {
    position: relative;
}

@keyframes purun {
    0% {
        transform: translate(5%, -5%) rotate(0deg);
    }

    25% {
        transform: translate(5%, -5%) rotate(4deg);
    }

    50% {
        transform: translate(5%, -5%) rotate(0deg);
    }

    75% {
        transform: translate(5%, -5%) rotate(-4deg);
    }

    100% {
        transform: translate(5%, -5%) rotate(0deg);
    }
}

.max-pop {
    background: var(--seminar-blue);
    position: absolute;
    top: 0;
    right: 0;
    width: 14rem;
    height: 14rem;
    transform: translate(5%, -5%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-sizing: content-box;
    border-radius: 50%;
    color: #fff;
    font-weight: 600;
    animation-name: purun;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    transform-origin: bottom center;
}

.max-big {
    font-size: 2.7rem;
}

article.option-seminar {
    text-align: center;
    margin: 4rem auto 4rem;
    color: var(--pale-orange);
}


h4.option-seminar-title {
    font-size: 2.3rem;
}

span.option-instructor {
    font-weight: 600;
}

h4.option-seminar-title {
    font-size: 2.3rem;
    position: relative;
    display: block;
    width: fit-content;
    margin: 0 auto;
    height: 4rem;
}

span.option-instructor {
    font-weight: 600;
}

.option-title-wrap {
    position: relative;
    z-index: 10;
    font-size: 2.2rem;
}

.seminar-title-back {
    position: absolute;
    content: "";
    width: 100%;
    height: 1rem;
    bottom: 0;
    left: 0;
    background: repeating-linear-gradient(-50deg, #fff, #fff 5px, var(--pop-yellow) 5px, var(--pop-yellow) 8px);
    z-index: 5;
    display: block;
}

/* section.feature */
.feature-card.slim-back {
    background: #fff;
    margin: 8rem auto;
    border-radius: 1rem;
    position: relative;
    padding: 3rem 2.5rem 6rem;
    box-shadow: var(--floating-shadow);
}

.feature-card-title {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}


.feature-txt {
    width: 87%;
    margin: 0 auto 4rem;
}


.arrow-pur-figu {
    max-width: 800px;
    /* width: 90%; */
    margin: auto;
}


.feature-txt>span {
    width: fit-content;
    margin: 0 auto;
}

.feature-card p {
    text-align: center;
}

.feature-catch {
    text-align: center;
    display: block;
}

.feature-bus {
    position: relative;
}

.feature-advisor {
    position: relative;
}

.advisor-man,
.advisor-lady {
    position: absolute;
    bottom: 0;
    height: clamp(14rem, 12.767rem + 5.26vw, 20rem);
}

.advisor-lady {
    aspect-ratio: 315/418;
    left: 0;
    transform: translateX(100%);
}

.advisor-man {
    right: 0%;
    aspect-ratio: 317/417;
    transform: translateX(-100%);
}

.feature-shushu {
    position: relative;
}

.feature-people,
.feature-memo {
    position: absolute;
    bottom: 50%;
}

.feature-people {
    left: 0;
    aspect-ratio: 154 / 148;
    height: clamp(13rem, 9.538rem + 6.15vw, 18rem);
    transform: translate(50%, 0);
    bottom: 0;
}

.feature-memo {
    height: clamp(10rem, 8.269rem + 3.08vw, 12.5rem);
    right: 0;
    bottom: 0;
    aspect-ratio: 233 / 202;
    transform: translate(-5%, 0);
}

@keyframes bus-anim {
    0% {
        transform: rotate(0);
    }

    50% {
        transform: rotate(2deg);
    }

    100% {
        transform: rotate(0);
    }
}

.feature-bus-img {
    animation-name: bus-anim;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    position: absolute;
    right: 0;
    bottom: 0;
}

.bus-condition {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.bus-route {
    display: flex;
    justify-content: center;
    gap: clamp(4rem, 3.25rem + 2vw, 6rem);
    margin: 8rem auto 1rem;
    align-items: center;
}

.arrow-cont {
    flex: 0 1 16%;
}

.bus-route>* {
    display: block;
}

.izumo,
.goal {
    color: #fff;
    position: relative;
    font-weight: 600;
    padding: 1rem clamp(5rem, 4.25rem + 2vw, 7rem);
    border-radius: 1rem;
}

.izumo {
    background-color: var(--purple);
}

.izumo::before {
    position: absolute;
    content: "";
    width: 4rem;
    aspect-ratio: 4 / 5;
    top: 0;
    left: 50%;
    background: url(../img/bus-stop.webp) no-repeat;
    transform: translate(-50%, -100%);
    background-size: contain;
}

.goal {
    background-color: var(--h1-green);
}

.goal::before {
    position: absolute;
    content: "";
    width: 4rem;
    aspect-ratio: 26 / 21;
    top: 0;
    left: 50%;
    background: url(../img/bus-goal.webp) no-repeat;
    transform: translate(-50%, -100%);
    background-size: contain;
}

.arrow-cont {
    display: flex;
    flex-direction: column;
}

ul.bus-condition {
    font-weight: 600;
}

ul.bus-condition li {
    margin: 2rem 3rem 2rem 0;
    position: relative;
}

ul.bus-condition li::before {
    position: absolute;
    content: "●";
    top: 50%;
    left: -2rem;
    transform: translatey(-50%);
}

/* section.voice */
ul.voice-list {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    justify-content: center;
    margin: 9rem auto 9rem;
    gap: 2rem;
}

li.voice-card {
    flex: 1 0 29rem;
    border: 3px solid var(--tarquoise);
    padding: 2rem;
    border-radius: 2rem;
    box-shadow: var(--green-shadow);
}

li.voice-card:hover {

    box-shadow: 3px 3px 0px 0px var(--seminar-tarquoise);
    border: 3px solid var(--seminar-tarquoise);
    transition: 0.2s linear;
    background: var(--gray);
}

li.voice-card:not(:hover) {
    transition: 0.2s linear;
}

figure.voice-img {
    float: left;
    width: 32%;
    max-width: 8.5rem;
    margin: 1rem 2rem 1rem 0;
}

p.voice-txt {
    margin-top: 1rem;
    font-weight: 600;
    text-align: justify;
}

/* section.past */
section.past {
    background: repeating-linear-gradient(-30deg, var(--stripe-gray), var(--stripe-gray) 5px, var(--mint)5px, var(--mint) 20px);
}

section.past .arrow {
    background: var(--mint);
    aspect-ratio: 1/1;
    width: 10%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

section.past .arrow::after {
    background: #fff;
    aspect-ratio: 1/1;
    width: 50%;
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    clip-path: polygon(18% 0, 18% 99%, 100% 50%);
}

.video-cont {
    aspect-ratio: 16 / 9;
    width: 80%;
    margin: 0 auto 6rem;
    border-radius: 1rem;
}

iframe {
    width: 100%;
    height: 100%;
}

/* section.register */
section.register {
    padding: 5rem 0;
    margin-bottom: 7rem;
}

.register-menu.slim-back {
    margin: 8rem auto;
    padding: 2rem 8rem 7rem;
}

.reg-note {
    text-align: center;
    display: block;
}

.register-detail .register-span {
    display: block;
    text-align: center;
}

article.register-detail {
    margin: 4rem auto;
}

.flow-chart {
    display: flex;
    justify-content: center;
    margin: 8rem auto;
    flex-wrap: wrap;
    gap: 1rem;
}

.flow-chart li {
    background: #fff;
    border-radius: 2rem;
    position: relative;
    border: 3px solid var(--tarquoise);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-right: 1rem;
    padding: 3rem 1rem;
    justify-content: space-evenly;
    box-shadow: var(--green-shadow);
    /* width: 20%; */
    /* min-width: 20rem; */
    flex: 0 1 clamp(15rem, 7.5rem + 22.5vw, 20rem);
}

.flow-chart li>figure {
    max-width: 75%;
}

.visit-flow.flow-chart {
    margin: 8rem auto 2rem;
}

span.reg-flow-txt {
    text-align: center;
    font-weight: 600;
    color: var(--tarquoise);
    font-size: 1.5rem;
}

span.qr-note {
    text-align: end;
}

.flow-chart li:not(:last-child)::after {
    position: absolute;
    right: -5%;
    top: 50%;
    content: "";
    aspect-ratio: 1/1;
    width: 3rem;
    background-image: url(../img/arrow.webp);
    background-repeat: no-repeat;
    background-size: contain;
    transform: translatex(50%);
}

.flow-num {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #fff;
    display: block;
    border: 2px solid var(--tarquoise);
    aspect-ratio: 1 / 1;
    width: 4rem;
    text-align: center;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    color: var(--tarquoise);
    font-weight: 600;
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.touroku_bg {
    background: lightyellow;
    border: 4px solid darkorange;
    padding: 3%;
    box-sizing: border-box;
    border-radius: 10px;
    width: 600px;
    max-width: 90%;
    margin: 5rem auto 3rem;
}

.register-btn-a {
    position: relative;
    width: 100%;
    aspect-ratio: 619 / 314;
    display: block;
    margin: auto;
}

.register-btn-a:hover {
    opacity: 0.5;
}

.register-btn-a>figure {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
}

.register-btn-a:hover .regbtn-fig-btn {
    transition: 0.2s ease-out;
}

.register-btn-a:hover .regbtn-fig-btn {
    transform: translate(-50%, -3px);
}

.register-btn-a:active .regbtn-fig-btn {
    transform: translate(-50%, 0);
}



@keyframes pyonpyon {
    0% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 5px);
    }

    100% {
        transform: translate(-50%, 0);
    }
}

.register-btn-a>.regbtn-fig-hand {
    animation-name: pyonpyon;
    animation-duration: 1s;
    animation-iteration-count: infinite;

}

@keyframes pop-anim {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }

}

.register-btn-a>.regbtn-fig-pop {
    animation-name: pop-anim;
    animation-duration: 2.5s;
    animation-iteration-count: infinite;

}

ul.reg-cond li {
    margin: 4rem 0;

}

.reg-notice {
    background: #fff;
    padding: 4rem 7rem;
    border-radius: 2rem;
    box-shadow: var(--floating-shadow);
}

.reg-notice h3 {
    color: var(--pale-orange);
    font-size: 2.4rem;
    text-align: center;
}

.reg-notice p {
    line-height: 2;
    display: inline-block;
    margin-bottom: 1rem;
}

.phone h4,
.security h4 {
    border-bottom: 2px solid var(--tarquoise);
}

.phone-type {
    font-size: 1.6rem;
    font-weight: 600;
    text-align: justify;
}

/* ブース訪問方法 */
.visit-detail .visit-span {
    display: block;
    text-align: center;
}

span.reg-flow-note {
    display: block;
    text-align: right;
    font-weight: 600;
    font-size: 1.4rem;
}

/* 会場へのアクセス */

.access-menu.slim-back {
    position: relative;
    margin-bottom: 10rem;
}

.access-title {
    margin: 1rem auto;
}

.access-menu>* {
    display: block;
}


@keyframes access-lady-anim {
    0% {
        transform: translate(-50%, 10%);
    }

    33% {
        transform: translate(-50%, 10%) rotate(2deg);
    }

    66% {
        transform: translate(-50%, 10%) rotate(-2deg);
    }

    100% {
        transform: translate(-50%, 10%);
    }
}

@keyframes access-man-anim {
    0% {
        transform: translate(50%, 10%);
    }

    33% {
        transform: translate(50%, 10%) rotate(2deg);
    }

    66% {
        transform: translate(50%, 10%) rotate(-2deg);
    }

    100% {
        transform: translate(50%, 10%);
    }
}

.access-menu .access-lady {
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translate(-50%, 10%);
    width: 6rem;
    aspect-ratio: 56/170;
    animation-name: access-lady-anim;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

.access-menu .access-man {
    aspect-ratio: 79/174;
    position: absolute;
    transform: translate(50%, 10%);
    right: 0;
    bottom: 0;
    width: 7rem;
    animation-name: access-man-anim;
    animation-duration: 3s;
    animation-iteration-count: infinite;

}

.access-address {
    text-align: center;
    color: var(--tarquoise);
    font-size: 2rem;
    font-weight: 600;
}

.map-wrapper {
    text-align: center;
    margin: 4rem auto;
    width: 88%;
    border-radius: 2rem;
    overflow: hidden;
    aspect-ratio: 8 / 5;
}

iframe {
    width: 100%;
}

/* しまね登録 */

.toroku-note {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    display: block;
    color: var(--tarquoise);
    margin-bottom: 3rem;
}

.toroku-img {
    margin: 0 auto;
    text-align: center;
}

.toroku-img img {
    box-shadow: var(--green-shadow);
    border-radius: 2rem;
    border: 3px solid var(--tarquoise);
}

/* footer */

.footer {
    padding: 5rem 0 8rem;
}

.footer-inner {
    background: #fff;
    width: 80%;
    margin: 0 auto;
    padding: 4rem;
    border-radius: 2rem;
    box-shadow: var(--floating-shadow);
}

.footer-inner h2 {
    text-align: center;
    color: var(--tarquoise);
    font-weight: 600;
    margin-bottom: 4rem;
}

.footer-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    row-gap: 3rem;
    column-gap: 2rem;

}

.footer-wrap .footer-jobcafe-logo {
    flex: 1 0 35%;
    display: flex;
    align-items: center;
    min-width: 29rem;
}

.footer-wrap .footer-tbl {
    min-width: 20rem;
    max-width: 63rem;
    flex: 0 1 60%;
}

.footer-wrap .footer-tbl td {
    display: flex;
    flex-wrap: wrap;
}

.footer-wrap .footer-tbl p {
    display: block;
    width: fit-content;
    font-size: 1.4rem;
}


.footer-wrap .footer-info .sponsor {
    display: block;
}

#footer th {
    width: 6rem;
    text-align: center;
    font-weight: normal;
    vertical-align: sub;
}

.br-big {
    display: inline-block;
}

.br-900 {
    display: none;
}


@media screen and (max-width: 1200px) {
    .br-1200 {
        display: block;
    }
}

@media screen and (max-width: 900px) {

    section.hero {
        aspect-ratio: 900/600;
    }

    .feature-img {
        position: unset;
        margin: 0 auto 3rem;
        min-width: 20rem;

    }

    .feature-people,
    .feature-memo {
        bottom: 0;
    }

    .feature-people {
        transform: unset;
        height: 14rem;
    }


    .feature-memo {
        transform: unset;
    }

    .register-btn-a {
        position: relative;
        width: 90%;
        aspect-ratio: 619 / 314;
        display: block;
        margin: 2rem auto 0;
    }


    .time-man {
        transform: translate(-35%, 0);
        width: 13rem;

    }

    .advisor-man,
    .advisor-lady {
        transform: unset;
    }

    .time-lady {
        width: 13rem;
        transform: translate(35%, 0);

    }

    .seminar-num {
        grid-area: 1/1/2/2;
    }

    .seminar-max {
        grid-area: 1/2/2/-1;
    }

    .seminar-info {
        width: 100%;
        grid-area: 2 / 1 / -1 / -1;
    }

    .seminar-title-back {
        display: none;
    }

    .option-title-wrap {
        border-bottom: 3px dotted var(--pop-yellow);
    }

    span.option-instructor {
        font-weight: 600;
        transform: translateY(10px);
    }

    @keyframes purun-s {
        0% {
            transform: translate(10%, -50%) rotate(0deg);
        }

        25% {
            transform: translate(10%, -50%) rotate(4deg);
        }

        50% {
            transform: translate(10%, -50%) rotate(0deg);
        }

        75% {
            transform: translate(10%, -50%) rotate(-4deg);
        }

        100% {
            transform: translate(10%, -50%) rotate(0deg);
        }
    }

    .max-pop {
        transform: translate(10%, -50%);
        width: 10rem;
        height: 10rem;
        animation-name: purun-s;
        animation-duration: 2s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
        transform-origin: bottom center;
        z-index: 50;

    }

    .max-pop>span {
        font-size: 1.3rem;
    }




    h4.option-seminar-title {
        height: unset;
    }

    .br-900 {
        display: block;
    }

    ul.voice-list {
        margin: 3rem auto;
    }

    .register-menu.slim-back {
        margin: 1rem auto 3rem;
        padding: 2rem 4rem 7rem;
    }

    .reg-notice {
        padding: 4rem 4rem;
    }

    .br-big {
        display: none;
    }

    #footer th {
        width: 5rem;
    }

    figure.big-img-btn {
        width: auto;
    }


}

@media screen and (max-width: 600px) {

    article.about-content {
        width: 85%;
        margin: 0 auto;
    }

    articlespan {
        margin-bottom: 1rem;
        line-height: unset;
    }

    .sp-broad {
        width: 98% !important;
    }

    .font-big {
        font-size: 2.9rem;
    }


    ul.bus-condition li {
        margin: 1rem 2rem 1rem 0;
    }

    .bus-condition {
        justify-content: space-around;
    }

    .feature-people {
        height: 11rem;
    }

    .feature-bus-img {
        transform: translate(16%, 26%);
        width: 11rem;
    }

    .feature-txt {
        width: 95%;
    }

    .feature-txt .feature-lady {
        transform: translate(100%, 76%);
        width: 4rem;
    }

    figure.booth-title {
        width: 90%;
    }

    .advisor-man,
    .advisor-lady {
        width: 8rem;
    }

    .access-menu .access-lady {
        transform: translate(0%, 10%);
        animation-name: unset;
        width: 5rem;
    }

    .access-menu .access-man {
        transform: translate(0%, 10%);
        animation-name: unset;
        width: 7rem;
    }

    .flow-chart li:not(:last-child)::after {
        display: none;
    }

    .about-cont.slim-back {
        margin: 3rem auto 2rem;
    }

    .register-menu.slim-back {
        padding: 1rem 1rem 2rem;
    }

    .reg-notice {
        padding: 4rem 3rem;
    }

    .time-man {
        width: 11rem;
    }

    .time-lady {
        width: 11rem;
        transform: translate(13%, 0);
    }

    .seminar-info.slim-back {
        width: 100%;
    }

    .izumo,
    .goal {
        color: #fff;
        position: relative;
        font-weight: 600;
        padding: 1rem 3rem;
        border-radius: 1rem;
    }

    .feature-bus .feature-txt {
        width: 100%
    }


    .bus-route {
        gap: 2rem;
    }

    .arrow-cont {
        flex: 0 1 20%;
    }

    .map-wrapper {
        width: 100%;
    }

    .menu-btn>span {
        font-size: 1.2rem;
    }

    .visit-flow.flow-chart {
        column-gap: 1rem;
        row-gap: 3rem;
        margin: 4rem 0 4rem;
    }

    span.list-note-pop {
        height: 10rem;
        font-size: 1rem;
        box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.4);
        top: 0;
        left: 0;
    }

    .footer-wrap .footer-tbl {
        min-width: 20rem;
        max-width: 100%;
        flex: 1 1 60%;
    }
}


/* バスページ */
section.freebus {
    background: var(--lightblue);
    padding: 3rem 0;
    background-size: cover;
}

.bus-stp {
    background: #fff;
    display: block;
    width: 90%;
    margin: 0 auto;
    font-size: 1.6rem;
    padding: 1rem;
    position: relative;
}

ul.bus-application {
    font-size: 1.6rem;
    list-style: square;
    margin: 2rem 0 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 600;
}

article.bus-taking {
    border: 2px solid var(--tarquoise);
    padding: 3rem 2rem;
    width: 90%;
    margin: 0 auto;
    border-radius: 1rem;
    box-shadow: var(--green-shadow);
    background: repeating-linear-gradient(-30deg, var(--stripe-gray), var(--stripe-gray) 5px, var(--mint) 5px, var(--mint) 20px);
}

.bus-taking>span {
    font-size: 1.6rem;
    margin: 0 auto;
    display: block;
    width: fit-content;

}

table.bus-table {
    background: #fff;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    font-size: 1.6rem;
    margin-top: 3rem;
}

table.bus-table caption {
    font-size: 2rem;
    background-color: var(--tarquoise);
    color: #fff;
    font-weight: 600;
    padding: 1.3rem;
    position: relative;
    margin-top: 4rem;
}

span.pop-num {
    position: absolute;
    background: var(--pale-orange);
    right: 0;
    padding: 1.2rem;
    top: 0;
    font-size: 1.5rem;
    border-radius: 50%;
    line-height: 1;
    color: #fff;
    border: 2px solid var(--tarquoise);
}

.bus-stpunv {
    font-size: 1rem;
}

.bus-stpizm {
    font-size: 1.2rem;
    font-weight: normal;
}

table.bus-table tr {
    height: 6.5rem;

}

table.bus-table tr:nth-child(odd) {
    background: #fff;
}

table.bus-table tr:nth-child(even) {
    background: var(--mint);
}

h3.matsue-area {
    margin-top: 4rem;
}

h3.izumo-area {
    margin-top: 7rem;
}

.longfreebus h2 {
    position: relative;
}


article.freebus-news {
    font-size: 1.6rem;
    display: flex;
    flex-direction: column;
    margin: 0 auto 0;
    padding: 0 4rem 2rem;
}

article.freebus-news>span {
    margin-bottom: 2rem;
}

.bus-note {
    display: flex;
    flex-direction: column;
}

ul.bus-intro {
    background: var(--mint);
    font-size: 1.6rem;
    width: 90%;
    border-radius: 1rem;
    margin: 0 auto;
    list-style: none;
    padding: 2rem;
    box-shadow: 2px 2px 0 var(--tarquoise);
    color: var(--tarquoise);
    font-weight: 600;
    text-align: center;
}

ul.bus-intro li:first-child {
    margin-bottom: 1.5rem;
}

span.bus-deadline {
    color: var(--red);
    font-size: 1.9rem;
    display: flex;
    flex-direction: column;
}

.bus-page-link {
    display: contents;
}


span.pop-max {
    display: flex;
    flex-direction: column;
    width: 11rem;
    height: 11rem;
    padding: 2rem;
    box-sizing: border-box;
    background: var(--palepink);
    border-radius: 50%;
    position: absolute;
    right: 10%;
    top: 0;
    transform: translatey(-50%);
    border: 2px solid var(--red);
    color: var(--red);
}

span.pop-note {
    font-size: 1.6rem;
}

h3.bus-apply {
    text-align: center;
    font-size: 2.5rem;
}

span.bus-memo {
    margin-bottom: 1rem;
}

.bus-application li {
    margin-bottom: 1rem;
}

span.bus-operation-day {
    background: #fff;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: var(--tarquoise);
    border: 2px solid;
    border-radius: 6rem;
    padding: 1rem;
    box-shadow: var(--green-shadow);
    margin-bottom: 4rem;
}

section.bus-inquiry {
    padding: 4rem 0 0;
    border: 2px solid var(--tarquoise);
    border-radius: 2rem;
    box-shadow: var(--green-shadow);
    margin-top: 5rem;
    background: var(--mint);
}

article.recommend-article p {
    text-align: center;
    display: block;
    margin-bottom: 2rem;
}


h3.bus-inquiry-title {
    margin-bottom: 5rem;
    text-align: center;
    font-size: 2.5rem;
}

article.bus-info {
    font-size: 1.6rem;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 4rem;
}

.bus-tel-cont>a {
    display: block;
}

.bus-tel-cont {
    width: fit-content;
    margin: 2rem auto;
}

.bus-tel-cont a {
    font-size: 2rem;
    padding: 1rem 3rem;
    border-radius: 3rem;
    border: solid 2px #fff;
    margin-bottom: 1rem;
    background: var(--pale-orange);
    transition: all 0.3s linear;
    color: #fff;
}

.bus-tel-cont a:hover {
    border: solid 2px #fff;
    background: var(--yellow-orange);
    transform: translateY(-2px);
    color: #fff;
}

.letterRed {
    color: var(--pink);
    display: inline;
    font-weight: 600;
}

@media (hover: hover) {
    .tel {
        pointer-events: none;
        /* PCではクリック無効 */
        color: #333;
    }
}

@media screen and (max-width: 600px) {

    article.freebus-news {
        padding: 0 1rem 2rem;
    }

    article.bus-taking {
        padding: 3rem 1rem;
    }
}