@charset "UTF-8";

/* ==========================================================================
   Reset & Base
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', 'Noto Sans', sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #FFFFFF;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

dl, dt, dd {
    margin: 0;
    padding: 0;
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
    background-color: #20AA65;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.header__logo {
    flex-shrink: 0;
}

.header__logo-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 25px;
    line-height: 1.362;
    color: #FFFFFF;
    white-space: nowrap;
}

.header__logo-text a {
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.header__logo-text a:hover {
    opacity: 0.8;
}

.header__nav {
    flex-shrink: 1;
    min-width: 0;
}

.header__nav-list {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.header__nav-item a {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.362;
    color: #FFFFFF;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.header__nav-item a:hover {
    opacity: 0.7;
}

.header__nav-item--sp-only {
    display: none;
}

.header__hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.header__hamburger-line {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #FFFFFF;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.header__hamburger.is-open .header__hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.header__hamburger.is-open .header__hamburger-line:nth-child(2) {
    opacity: 0;
}

.header__hamburger.is-open .header__hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.header__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header__overlay.is-open {
    display: block;
    opacity: 1;
}

/* ==========================================================================
   KV (Key Visual)
   ========================================================================== */

.kv {
    width: 100%;
    background-color: #55c0cb;
}

.kv__inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.kv__image {
    width: 1440px;
    height: auto;
    display: block;
}

/* ==========================================================================
   Event
   ========================================================================== */

.event {
    background-color: #F6F4F4;
    background-image: url('image/pattern-01.png'), url('image/pattern-01.png');
    background-repeat: no-repeat, no-repeat;
    background-position: right -60px top -80px, left -60px bottom -30px;
    background-size: 219px 444px, 219px 444px;
    padding: 70px 20px;
    position: relative;
}

.event__inner {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.event__content {
    background-color: #FFFFFF;
    border-radius: 13px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.event__title-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.362;
    color: #27C0C5;
    text-align: center;
}

.event__description {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 25px;
    line-height: 1.6;
    color: #000000;
    text-align: center;
    width: 100%;
}

.event__info {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event__info-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.event__info-label {
    background-color: #27C0C5;
    color: #FFFFFF;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.362;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    width: 180px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event__info-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.event__date {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 0.708;
    color: #27C0C5;
    width: 135px;
    height: 50px;
    display: flex;
    align-items: center;
}

.event__day {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.133;
    color: #27C0C5;
    width: 90px;
}

.event__time {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.417;
    color: #000000;
    height: 50px;
    display: flex;
    align-items: center;
}

.event__info-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.417;
    color: #000000;
    flex: 1;
}

.event__woman-03 {
    position: absolute;
    right: 132px;
    bottom: -161px;
    width: 192px;
    height: 161px;
}

/* ==========================================================================
   Schedule
   ========================================================================== */

.schedule {
    background-color: #FFFFFF;
    padding: 70px 20px 0;
    position: relative;
}

.schedule__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.schedule__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.schedule__title {
    background-color: #20AA65;
    border-radius: 20px 20px 0 0;
    padding: 10px 0;
    height: 70px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.schedule__title-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.362;
    color: #FFFFFF;
    text-align: center;
}

.schedule__main {
    width: 100%;
    background-color: #F8F8F8;
    padding: 40px;
}

.schedule__grid {
    display: flex;
    gap: 40px;
}

.schedule__lecturer {
    width: 376px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.schedule__lecturer-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-top: 150px;
}

.schedule__lecturer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.schedule__lecturer-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.schedule__lecturer-label,
.schedule__lecturer-company {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 25px;
    line-height: 1.362;
    color: #000000;
}

.schedule__lecturer-name {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.362;
    color: #000000;
}

.schedule__programs {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.schedule__program {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.schedule__program-title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 29px;
    line-height: 1.362;
    color: #20AA65;
    height: 39px;
    display: flex;
    align-items: center;
}

.schedule__program-item {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.362;
    color: #000000;
}

.schedule__program-description {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.362;
    color: #000000;
}

.schedule__table {
    position: absolute;
    left: -60px;
    top: -54px;
    width: 280px;
    height: auto;
    transform: rotate(-10deg);
}

.schedule__balloon {
    position: absolute;
    left: -80px;
    top: 19px;
    width: 400px;
    height: auto;
}

/* ==========================================================================
   Reservation
   ========================================================================== */

.reservation {
    background-color: #FFFFFF;
    padding: 70px 20px;
    position: relative;
}

.reservation--02 {
    padding-top: 70px;
    padding-bottom: 0;
}

.reservation--list {
    padding: 40px 20px;
}

.reservation--list .reservation__man-01 {
    display: none;
}

.reservation__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
}

.reservation__button {
    background-color: #20AA65;
    border-radius: 100px;
    padding: 50px 0;
    height: 168px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
    position: relative;
    overflow: hidden;
}

.reservation__button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 80%;
    height: 200%;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.8) 50%, 
        rgba(255, 255, 255, 0) 100%);
    animation: shine 2.5s infinite;
    transform: skewX(-20deg);
}

@keyframes shine {
    0% {
        left: -100%;
    }
    30% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}

.reservation__button:hover {
    opacity: 0.8;
}

.reservation__button-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.362;
    color: #FFFFFF;
    text-align: center;
    position: relative;
    z-index: 1;
}

.reservation__man-01 {
    position: absolute;
    right: 20px;
    bottom: -2px;
    width: 254px;
    height: 189px;
}

/* ==========================================================================
   How to Join
   ========================================================================== */

.how-to-join {
    background-color: #27C0C5;
    background-image: url('image/woman-01.png');
    background-repeat: no-repeat;
    background-position: left bottom -2px;
    background-size: 212px 183px;
    padding: 80px 20px;
    position: relative;
}

.how-to-join__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    position: relative;
}

.how-to-join__title {
    display: flex;
    justify-content: center;
    align-items: center;
}

.how-to-join__title-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 34px;
    line-height: 1.362;
    color: #FFFFFF;
    text-align: center;
}

.how-to-join__steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

.step {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
}

.step__badge {
    position: absolute;
    top: -17px;
    left: -14px;
    background-color: #FFD428;
    border-radius: 35px;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.1;
    text-align: center;
    color: #000000;
}

.step__badge--dark {
    color: #060606;
}

.step__icon {
    width: 100%;
    height: auto;
    aspect-ratio: 240 / 200;
}

.step__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.step__title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    text-align: center;
    color: #20AA65;
    width: 100%;
}

.step__description {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    color: #000000;
    width: 100%;
}

.step__button {
    background-color: #090A09;
    border-radius: 20px;
    width: 162px;
    height: 39px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    color: #FFFFFF;
    transition: opacity 0.3s ease;
}

.step__button:hover {
    opacity: 0.8;
}

.step__arrow {
    width: 29px;
    height: 19px;
    margin-top: 170px;
    position: relative;
}

.step__arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9.5px 14.5px 9.5px 0;
    border-color: transparent #FFFFFF transparent transparent;
}

.how-to-join__decoration {
    position: absolute;
    left: -40px;
    top: -33px;
    width: 300px;
    height: auto;
    transform: rotate(0deg);
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq {
    background-color: #F6F4F4;
    padding: 80px 220px;
}

.faq__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq__header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq__subtitle {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 900;
    font-size: 20px;
    line-height: 1.448;
    text-align: center;
    color: #20AA65;
}

.faq__title {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 34px;
    line-height: 1.448;
    text-align: center;
    color: #000000;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq__item {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.faq__question {
    background-color: #20AA65;
    padding: 22px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
    min-height: 85px;
}

.faq__question:hover {
    opacity: 0.9;
}

.faq__question-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.faq__q-mark {
    font-family: 'Futura PT', sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 1.282;
    letter-spacing: 0.1em;
    text-align: center;
    color: #FFFFFF;
    flex-shrink: 0;
}

.faq__question-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.818;
    color: #FFFFFF;
}

.faq__icon {
    width: 30px;
    height: 30px;
    display: block;
    position: relative;
    flex-shrink: 0;
    font-size: 0;
    color: transparent;
}

.faq__icon::before,
.faq__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background: #FFFFFF;
    transition: transform 0.3s ease;
}

.faq__icon::before {
    transform: translate(-50%, -50%);
}

.faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item.is-open .faq__icon::before {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq__item.is-open .faq__icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq__answer {
    background-color: #FFFFFF;
    border-radius: 0 0 10px 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq__item.is-open .faq__answer {
    max-height: 500px;
}

.faq__answer-inner {
    padding: 20px 30px;
}

.faq__answer-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 2;
    color: #000000;
}

/* ==========================================================================
   Universities
   ========================================================================== */

.universities {
    background-color: #FFFFFF;
    padding: 100px 20px;
}

.universities__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.universities__title {
    border-bottom: 3px solid #20AA65;
    padding: 10px 0;
}

.universities__title-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.448;
    text-align: center;
    color: #20AA65;
}

.universities__description {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 25px;
    line-height: 1.6;
    color: #000000;
}

.universities__list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.universities__item {
    background-color: #FFFFFF;
    border: 1px solid #20AA65;
    padding: 20px;
    width: calc(50% - 15px);
    display: flex;
    align-items: center;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.362;
    color: #20AA65;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.universities__item a {
    color: inherit;
    text-decoration: none;
    display: block;
    width: 100%;
    transition: color 0.3s ease;
}

.universities__item:hover {
    background-color: #20AA65;
    color: #FFFFFF;
}

.universities__item:hover a {
    color: #FFFFFF;
}

/* ==========================================================================
   Companies List Page
   ========================================================================== */

.companies-page {
    background-color: #F6F4F4;
    padding: 0 20px ;
}

.companies-page__inner {
    max-width: 1000px;
    margin: 0 auto;
    background-image: url(image/man-02.png);
    background-repeat: no-repeat;
    background-position: right bottom -2px;
    background-size: 200px auto;
    padding: 50px 0;
}

.companies-page__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.companies-page__title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.362;
    color: #20AA65;
    text-align: center;
}

/* 企業テーブル */
.companies-table {
    background-color: #FFFFFF;
    padding: 0 20px;
}

.companies-table__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.companies-table__wrapper {
    display: flex;
    flex-direction: column;
}

.companies-table__header {
    display: flex;
    background-color: #27C0C5;
    border: 2px solid #27C0C5;
}

.companies-table__header-cell {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.362;
    color: #FFFFFF;
    text-align: center;
    padding: 15px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.companies-table__header-cell:last-child {
    border-right: none;
}

.companies-table__header-cell--number {
    width: 80px;
    flex-shrink: 0;
}

.companies-table__header-cell--name {
    flex: 2;
}

.companies-table__header-cell--industry {
    flex: 1;
}

.companies-table__header-cell--location {
    flex: 1.2;
}

.companies-table__header-cell--url {
    flex: 2.5;
}

.companies-table__row {
    display: flex;
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-top: none;
}

.companies-table__row--alt {
    background-color: #F8F8F8;
}

.companies-table__cell {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    padding: 15px 10px;
    display: flex;
    align-items: center;
    border-right: 1px solid #E0E0E0;
}

.companies-table__cell:last-child {
    border-right: none;
}

.companies-table__cell--number {
    width: 80px;
    flex-shrink: 0;
    justify-content: center;
    font-weight: 700;
    color: #FFFFFF;
    background-color: #27C0C5;
}

.companies-table__cell--name {
    flex: 2;
}

.companies-table__cell--industry {
    flex: 1;
}

.companies-table__cell--location {
    flex: 1.2;
}

.companies-table__cell--url {
    flex: 2.5;
    word-break: break-all;
    font-size: 13px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.companies-table__cell a {
    color: #20AA65;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.companies-table__cell a:hover {
    opacity: 0.7;
}

/* ==========================================================================
   Fixed Button
   ========================================================================== */

.fixed-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 200px;
    height: 200px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease, filter 0.4s ease;
}

.fixed-button.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.fixed-button:hover {
    filter: hue-rotate(140deg) saturate(0.9) brightness(0.9);
}

.fixed-button img {
    width: 100%;
    height: 100%;
    display: block;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background-color: #20AA65;
    padding: 70px 0;
}

.footer__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer__organizer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer__organizer-label {
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 10px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.362;
    text-align: center;
    color: #FFFFFF;
}

.footer__organizer-name {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.362;
    text-align: center;
    color: #FFFFFF;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    width: 900px;
}

.footer__contact-label {
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 10px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.362;
    text-align: center;
    color: #FFFFFF;
}

.footer__contact-company {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.362;
    text-align: center;
    color: #FFFFFF;
}

.footer__contact-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer__contact-phone svg {
    width: 22px;
    height: 22px;
}

.footer__contact-phone-number {
    font-family: 'Futura PT', sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 1.282;
    text-align: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer__contact-phone-number:hover {
    opacity: 0.7;
}

.footer__contact-email {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
}

.footer__contact-email svg {
    width: 25px;
    height: 25px;
}

.footer__contact-email-address {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.362;
    text-align: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer__contact-email-address:hover {
    opacity: 0.7;
}

.footer__note {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.362;
    text-align: center;
    color: #FFFFFF;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media screen and (max-width: 1400px) {
    .how-to-join {
        background-image: none;
    }
}

@media screen and (max-width: 1100px) {
    .header__inner {
        padding: 12px 20px;
    }

    .header__logo-text {
        font-size: 20px;
    }

    .header__hamburger {
        display: block;
        padding: 5px;
    }

    .header__hamburger-line {
        width: 25px;
        height: 2px;
        margin: 4px 0;
    }

    .header__hamburger.is-open .header__hamburger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .header__hamburger.is-open .header__hamburger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #20AA65;
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        padding: 60px 20px 20px;
    }

    .header__nav.is-open {
        right: 0;
    }

    .header__nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .header__nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .header__nav-item a {
        display: block;
        padding: 12px 10px;
        font-size: 15px;
    }

    .header__nav-item--sp-only {
        display: block;
    }

    .event {
        padding: 50px 40px;
    }

    .event__content {
        padding: 30px;
    }

    .event__title-text {
        font-size: 32px;
    }

    .event__description {
        font-size: 20px;
    }

    .event__info-row {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .event__date,
    .event__day,
    .event__time {
        width: auto;
        height: auto;
    }

    .event__info-text {
        width: 100%;
        text-align: left;
    }

    .schedule {
        padding: 50px 20px 0;
    }

    .schedule__main {
        padding: 30px 20px;
    }

    .schedule__grid {
        flex-direction: column;
        gap: 30px;
    }

    .schedule__lecturer {
        width: 100%;
    }

    .schedule__table {
        display: none;
    }

    .how-to-join__decoration {
        display: none;
    }

    .schedule__balloon {
        position: absolute;
        width: 72%;
        height: auto;
        max-width: none;
        margin: 0 0 -20px;
        left: -30px;
        top: -35px;
        z-index: 2;
        max-width: 450px;
    }

    .schedule__lecturer-image {
        margin-top: 10%;
        position: relative;
        z-index: 1;
    }

    .schedule__program-item {
        font-size: 22px;
    }

    .schedule__program-description {
        font-size: 16px;
    }

    .reservation {
        padding: 7vw 2vw;
    }

    .reservation__button {
        justify-content: flex-start;
        padding: 5vw 0;
        padding-left: 14vw;
        height: 16.8vw;
    }

    .reservation--list {
        padding-top: 20px;
    }

    .reservation--list .reservation__button {
        justify-content: center;
        padding-left: 0;
    }

    .reservation__button-text {
        font-size: 6vw;
        text-align: left;
    }

    .reservation--list .reservation__button-text {
        text-align: center;
    }

    .reservation__man-01 {
        width: 25.4vw;
        height: 18.9vw;
    }

    .how-to-join {
        padding: 60px 40px;
    }

    .how-to-join__steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        width: 100%;
        max-width: none;
    }

    .step__arrow {
        margin-top: 0;
        width: 19px;
        height: 29px;
    }

    .step__arrow::before {
        transform: translate(-50%, -50%) rotate(90deg);
        border-width: 14.5px 0 14.5px 19px;
        border-color: transparent transparent transparent #FFFFFF;
    }

    .faq {
        padding: 60px 20px;
    }

    .universities {
        padding: 60px 40px;
    }

    .universities__list {
        gap: 15px;
    }

    .universities__item {
        width: calc(50% - 7.5px);
    }

    .companies-page__title {
        font-size: 32px;
    }

    .companies-table {
        padding: 0 20px;
    }

    .companies-table__header {
        display: none;
    }

    .companies-table__row {
        flex-direction: column;
        border: 2px solid #27C0C5;
        margin-bottom: 20px;
        border-radius: 8px;
        overflow: hidden;
    }

    .companies-table__cell {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #E0E0E0;
        padding: 12px 15px;
    }

    .companies-table__cell:last-child {
        border-bottom: none;
    }

    .companies-table__cell--number {
        width: 100%;
        font-size: 18px;
        padding: 15px;
    }

    .companies-table__cell::before {
        content: attr(data-label);
        font-weight: 700;
        color: #27C0C5;
        margin-right: 10px;
        min-width: 100px;
        display: inline-block;
    }

    .companies-table__cell--number::before {
        content: '';
        display: none;
    }

    .fixed-button {
        width: 150px;
        height: 150px;
        right: 15px;
        bottom: 15px;
    }

    .footer {
        padding: 70px 20px;
    }

    .footer__contact {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .companies-page__inner {
        background-image: none;
    }

    .event {
        padding: 40px 20px;
    }

    .event__content {
        padding: 20px;
    }

    .event__title-text {
        font-size: 28px;
    }

    .event__description {
        font-size: 16px;
    }

    .event__info-label {
        width: 150px;
        font-size: 16px;
    }

    .event__date {
        font-size: 36px;
    }

    .event__day {
        font-size: 24px;
    }

    .event__time {
        font-size: 18px;
    }

    .schedule {
        padding: 40px 20px 0;
    }

    .schedule__title-text {
        font-size: 24px;
    }

    .schedule__main {
        padding: 20px;
    }

    .schedule__lecturer-label,
    .schedule__lecturer-company {
        font-size: 20px;
    }

    .schedule__lecturer-name {
        font-size: 24px;
    }

    .schedule__program-title {
        font-size: 24px;
    }

    .schedule__program-item {
        font-size: 20px;
    }

    .schedule__program-description {
        font-size: 15px;
    }

    .how-to-join {
        padding: 40px 20px;
    }

    .how-to-join__title-text {
        font-size: 26px;
    }

    .step {
        width: 100%;
    }

    .faq {
        padding: 40px 20px;
    }

    .faq__title {
        font-size: 28px;
    }

    .faq__question {
        padding: 15px 20px;
    }

    .faq__question-text {
        font-size: 18px;
    }

    .universities {
        padding: 60px 20px;
    }

    .universities__list {
        gap: 15px;
    }

    .universities__title-text {
        font-size: 28px;
    }

    .universities__description {
        font-size: 18px;
    }

    .universities__item {
        width: 100%;
        font-size: 18px;
    }

    .footer__contact-phone-number {
        font-size: 24px;
    }
}

@media screen and (max-width: 480px) {
    .header__logo-text {
        font-size: 18px;
    }

    .event__title-text {
        font-size: 24px;
    }

    .event__description {
        font-size: 14px;
    }

    .schedule__title-text {
        font-size: 20px;
    }

    .schedule__main {
        padding: 15px;
    }

    .schedule__lecturer-label,
    .schedule__lecturer-company {
        font-size: 18px;
    }

    .schedule__lecturer-name {
        font-size: 20px;
    }

    .schedule__program-title {
        font-size: 20px;
    }

    .schedule__program-item {
        font-size: 18px;
    }

    .schedule__program-description {
        font-size: 14px;
    }

    .how-to-join__title-text {
        font-size: 22px;
    }

    .faq__title {
        font-size: 24px;
    }

    .faq__question-text {
        font-size: 16px;
    }

    .universities__list {
        gap: 15px;
    }

    .universities__title-text {
        font-size: 24px;
    }

    .universities__description {
        font-size: 16px;
    }

    .universities__item {
        width: 100%;
    }
}

