@charset "UTF-8";
/* CSS Document */
.main {
    width: 100vw;
    height: auto;
    background-color: #fff;
}
.bg01 {
    width: 100vw;
    height: auto;
    overflow: hidden;
    background-image: url("../image/bg01.png");
    background-position: top 80px right -600px;
    background-repeat: no-repeat;
    background-size: 1800px auto;
}
.bg02 {
    width: 100vw;
    height: auto;
    overflow: hidden;
    background-image: url("../image/bg02.png");
    background-position: top 1000px right -300px;
    background-repeat: no-repeat;
    background-size: 1800px auto;
}
.bg03 {
    width: 100vw;
    height: auto;
    overflow: hidden;
    background-image: url("../image/bg01.png");
    background-position: top -40px center;
    background-repeat: no-repeat;
    background-size: 1800px auto;
    transform: scale(-1, 1);
}
@media screen and (min-width: 768px) {
    .bg01 {
        background-position: top 240px center;
    }
    .bg02 {
        background-position: top 200px center;
    }
}
.ftview {
    width: 100%;
    max-width: 1450px;
    height: auto;
    margin: 80px auto 0;
    position: relative;
}
.lead {
    width: 90%;
    min-width: 250px;
    position: absolute;
    top: 0;
    right: 5vw;
    z-index: 50;
}
.lead .container {
    justify-content: flex-start;
    flex-direction: row-reverse;
    gap: 16px;
    margin: 40px auto 60px;
}
.lead .container .text-bg {
    background-color: #fff;
    padding: 8px 0;
}
.lead .container .text-bg01 {
    padding-bottom: 64px;
}
.lead .subheading {
    font-size: 1rem;
    font-weight: 500;
}
.lead .container h2 {
    letter-spacing: 0.4rem;
    line-height: 2;
}
.lead .container h3 {
    font-size: 16px;
    letter-spacing: 0.4rem;
    line-height: 2;
    position: relative;
}
.lead .container h3 .lead-line {
    content: "";
    width: 1px;
    height: 60px;
    background-color: var(--orange);
    position: absolute;
    top: 95px;
    right: 15px;
}
.portrait {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 16px;
    text-align: right;
}
.portrait img {
    width: 50%;
    max-width: 300px;
    height: auto;
    border-radius: var(--radius);
}
.portrait .wrap {
    height: 100%;
    margin-bottom: 40px;
    line-height: 1.2;
}
.portrait .wrap h2 {
    letter-spacing: 0.25rem;
    margin-top: 8px;
}
@media screen and (min-width: 768px) {
    .lead {
        width: 40%;
        min-width: 400px;
        right: 0;
    }
    .lead .container .text-bg, .lead .container .text-bg01 {
        background-color: transparent;
        padding: 0;
    }
    .portrait img {
        width: 60%;
    }
    .portrait .wrap {
        margin-bottom: 100px;
    }
}
@media screen and (min-width: 1080px) {
    .lead .container {
        justify-content: flex-end;
        margin: 60px auto 40px 40%;
    }
}
.slide-wrap {
    width: 90%;
    height: 140vw;
    max-height: 700px;
    position: relative;
    overflow: hidden;
    border-radius: 0 var(--radius) var(--radius) 0;
}
@media screen and (min-width: 768px) {
    .slide-wrap {
        height: 70vh;
    }
}
.slide-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.slide-img:nth-child(1) {
    background-image: url("../image/top-slide01.webp");
    animation: slide-img01 32s infinite;
}
.slide-img:nth-child(2) {
    background-image: url("../image/top-slide02.webp");
    animation: slide-img02 32s infinite;
}
.slide-img:nth-child(3) {
    background-image: url("../image/top-slide03.webp");
    animation: slide-img03 32s infinite;
}
.slide-img:nth-child(4) {
    background-image: url("../image/top-slide04.webp");
    animation: slide-img04 32s infinite;
}
@keyframes slide-img01 {
    0% {
        opacity: 1;
        transform: scale(1.1);
    }
    25% {
        opacity: 0;
        transform: scale(1.2);
    }
    50% {
        opacity: 0;
    }
    75% {
        opacity: 0;
        transform: scale(1.0);
    }
    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}
@keyframes slide-img02 {
    0% {
        opacity: 0;
        transform: scale(1.2);
    }
    25% {
        opacity: 1;
    }
    50% {
        opacity: 0;
        transform: scale(1.0);
    }
    75% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
@keyframes slide-img03 {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 0;
        transform: scale(1.0);
    }
    50% {
        opacity: 1;
    }
    75% {
        opacity: 0;
        transform: scale(1.2);
    }
    100% {
        opacity: 0;
    }
}
@keyframes slide-img04 {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 0;
    }
    50% {
        opacity: 0;
        transform: scale(1.2);
    }
    75% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(1.0);
    }
}
.ftview .slide-location {
    width: 100%;
    height: 24px;
    padding-left: 8px;
    position: absolute;
    color: #fff;
    font-weight: 500;
    bottom: 0;
    left: 0;
}
.slide-location:nth-child(1) {
    animation: slide-location01 32s infinite;
}
.slide-location:nth-child(2) {
    animation: slide-location02 32s infinite;
}
.slide-location:nth-child(3) {
    animation: slide-location03 32s infinite;
}
.slide-location:nth-child(4) {
    animation: slide-location04 32s infinite;
}
@keyframes slide-location01 {
    0% {
        opacity: 1;
    }
    25% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    75% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes slide-location02 {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    75% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
@keyframes slide-location03 {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    75% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
@keyframes slide-location04 {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    75% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@media screen and (min-width: 768px) {
    .ftview {
        width: 90%;
    }
    .ftview .slide-wrap {
        width: 70%;
        border-radius: var(--radius);
    }
}
.catchphrase {
    width: 100%;
    height: auto;
    margin: 80vw auto 240px;
    display: block;
    text-align: center;
    z-index: 60;
}
@media screen and (min-width: 768px) {
    .ftview .catchphrase {
        margin: 450px auto 320px;
    }
}
.message {
    width: 100%;
    height: auto;
    padding-bottom: 60px;
    position: relative;
    z-index: 10;
}
.message-img {
    width: 70%;
    max-width: 400px;
    height: auto;
}
.message-img img {
    width: 100%;
    height: auto;
    border-radius: 0 var(--radius) var(--radius) 0;
}
.message span {
    content: "";
    width: 100vw;
    max-width: 1450px;
    height: 90%;
    background-color: var(--bgcolor);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.message .wrap {
    width: 90%;
    max-width: 600px;
    height: auto;
    margin: 60px auto 0;
    text-align: right;
}
.message .wrap h2 {
    width: 100%;
    height: auto;
    text-align: center;
    font-weight: 300;
    margin-bottom: 40px;
}
.message .wrap p {
    width: 100%;
    height: auto;
    text-align: left;
    margin-top: 24px;
}
.message .wrap img {
    width: auto;
    height: 45px;
    margin-top: 40px;
    display: inline-block;
}
@media screen and (min-width: 768px) {
    .message {
        padding-right: 10vw;
        text-align: right;
    }
    .message-img {
        width: 40%;
        max-width: 400px;
        position: absolute;
        top: 0;
        left: 40%;
        transform: translateX(-100%);
    }
    .message-img img {
        border-radius: var(--radius);
    }
    .message span {
        width: 90vw;
        background-color: var(--bgcolor);
        border-radius: 0 var(--radius) var(--radius) 0;
        left: -5vw;
    }
    .message .wrap {
        width: 50%;
        margin: 200px auto 0;
        display: inline-block;
    }
    .message .wrap h2 {
        text-align: left;
    }
}
@media screen and (min-width: 1450px) {
    .message span {
        border-radius: var(--radius);
        left: 50%;
        transform: translateX(-50%);
    }
    .message .wrap h2 .none {
        display: none;
    }
}
.policy {
    width: 90%;
    max-width: 1450px;
    height: auto;
    margin: 120px auto 0;
}
.policy .container {
    gap: 0;
}
.policy-items {
    width: 90%;
    height: auto;
    margin: 40px auto 0;
}
.policy-items img {
    width: 100%;
    border-radius: var(--radius);
}
.policy-items h2 {
    font-weight: 300;
    margin: 16px auto;
    text-wrap: wrap;
}
@media screen and (min-width: 768px) {
    .policy .container {
        justify-content: space-between;
    }
    .policy .policy-items {
        width: 47%;
        margin: 40px 0 0;
    }
}
.projects {
    width: 90%;
    max-width: 1450px;
    height: auto;
    margin: 120px auto 120px;
}
.projects .accordion {
    width: 100%;
    margin-top: 40px;
}
.projects .accordion-wrap {
    width: 90%;
    margin: 0 auto;
}
.accordion-item {
    width: 100%;
    background-color: var(--bgcolor);
    border-radius: var(--radius);
    padding: 0 24px;
    margin-bottom: 16px;
}
.accordion button {
    width: 100%;
    background-color: transparent;
    border-color: transparent;
    cursor: pointer;
    transition: opacity 400ms;
    position: relative;
    display: block;
    padding: 24px 20px 24px 0;
    box-sizing: border-box;
    text-align: left;
    color: #000;
    appearance: none;
}
.accordion-q-icon {
    width: 20px;
    height: 20px;
    background-color: var(--orange);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.accordion-q-icon::before, .accordion-q-icon::after {
    content: "";
    width: 12px;
    height: 2px;
    display: block;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.accordion-q-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 400ms;
}
.accordion-a-content {
    margin-bottom: 24px;
}
.accordion-a {
    display: none;
    overflow: hidden;
}
.accordion > li.is-open .accordion-q-icon::after, .projects .accordion-wrap > li.is-open .accordion-q-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}
.projects .accordion-a-content {
    width: 100%;
}
.projects .accordion-a-content img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
}
.projects .accordion-img-v {
    width: 60%;
    margin: 0 auto;
}
.projects .accordion-a-content .list-wrap {
    width: 100%;
    margin-top: 16px;
}
@media screen and (min-width: 768px) {
    .projects .accordion {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    .projects .accordion-wrap {
        width: 49%;
        margin: 0;
    }
}
@media screen and (min-width: 1080px) {
    .projects .accordion-a-content {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
    .projects .accordion-a-content img {
        width: 40%;
    }
    .projects .accordion-img-v {
        width: 40%;
        margin: 0;
    }
    .projects .accordion-img-v img {
        width: 100%;
    }
    .projects .accordion-a-content .list-wrap {
        width: 60%;
        margin-top: 0;
        margin-left: 24px;
    }
}
.volunteer {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 120px 0;
    background-color: var(--bgcolor);
}
.volunteer .container {
    width: 90%;
    max-width: 1080px;
    height: auto;
    margin: 0 auto;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.volunteer ul {
    width: fit-content;
    margin: 0 auto;
    margin-top: 40px;
}
.volunteer .wrap {
    width: 100%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 1 / 1;
    position: relative;
}
.volunteer .wrap li {
    position: absolute;
}
.volunteer .wrap li:first-child {
    width: 37%;
    top: 0;
    left: 0;
}
.volunteer .wrap li:nth-child(2) {
    width: 56%;
    top: 0;
    right: 0;
    transform: translateY(50%);
}
.volunteer .wrap li:nth-child(3) {
    width: 56%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.volunteer .wrap li img {
    width: 100%;
    border-radius: var(--radius);
}
@media screen and (min-width: 1080px) {
    .volunteer ul {
        width: 60%;
        padding-left: 40px;
        margin-top: 40px;
    }
    .volunteer .wrap {
        width: 40%;
    }
}
.bridge {
    width: 100vw;
    height: 500px;
    position: relative;
    background-image: url("../image/bridge.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.bridge p {
    position: absolute;
    bottom: 8px;
    right: 24px;
    color: #fff;
    font-size: 14px;
}
.reports {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 120px 0;
    background-color: var(--bgcolor);
}
.reports .wrap {
    width: 90%;
    max-width: 1450px;
    margin: 0 auto;
}
.report-group {
    width: 100%;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
}
.report-group img {
    width: 100%;
}
.newest-report-date {
    text-align: right;
}
@media screen and (min-width: 768px) {
    .report-group img {
        width: 48%;
    }
}
@media screen and (min-width: 1080px) {
    .report-group img {
        width: 23%;
    }
}
.past-activities {
    width: 100%;
    margin-top: 120px;
}
.past-list {
    width: 100%;
    max-width: 310px;
    margin: 40px auto 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
    column-gap: 40px;
}
.past-list .wrap {
    width: 47%;
}
.past-list .open-btn {
    width: 100%;
    background-color: transparent;
    border: none;
    color: #333;
    text-align: left;
    margin-bottom: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.past-list .open-btn:hover {
    color: var(--orange);
}
.past-list .report-group {
    margin: 0;
}
.past-list .close-btn {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 4px;
}
.past-list .close-btn::before {
    content: "";
    width: 40px;
    height: 4px;
    background-color: var(--orange);
    border-radius: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: rotate(45deg);
}
.past-list .close-btn::after {
    content: "";
    width: 40px;
    height: 4px;
    background-color: var(--orange);
    border-radius: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: rotate(135deg);
}
.past-list .modal {
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: flex-start;
    background: rgba(79, 79, 79, 0.5);
    overflow-y: scroll;
    opacity: 0;
    z-index: 100;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.past-list .modal.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}
.past-list .modal-content {
    background-color: var(--bgcolor);
    padding: 16px;
    border-radius: var(--radius);
    width: 80vw;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}
.past-list .modal.active .modal-content {
    animation: fadeInScale 0.4s ease forwards;
}
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@media screen and (min-width: 1080px) {
    .past-list .modal {
        align-items: center;
    }
    .past-list .report-group2 {
        width: 50%;
    }
    .past-list .report-group2 img {
        width: 47%;
    }
}
.profile {
    width: 90%;
    max-width: 1450px;
    height: auto;
    margin: 120px auto;
    transform: scale(-1, 1);
}
.profile .container {
    width: 100%;
    margin: 40px 0 0;
    justify-content: space-between;
    align-items: center;
}
.profile-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    background-image: url("../image/protfolio.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: var(--radius);
}
.profile .container .wrap {
    width: 100%;
}
.profile .container .name-title {
    font-size: 1rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 8px;
}
.profile .container .wrap h2 span {
    font-weight: 300;
}
.profile-item {
    margin-top: 40px;
}
.profile-item li {
    margin-top: 16px;
}
.profile-item .list::before {
    top: 6px;
}
@media screen and (min-width: 768px) {
    .profile .container {
        gap: 0;
    }
    .profile-img {
        width: 42%;
        max-width: 350px;
        aspect-ratio: 2 / 3;
        background-position: center left -40px;
    }
    .profile .container .wrap {
        width: 55%;
    }
}
@media screen and (min-width: 1080px) {
    .profile-img {
        width: 50%;
        max-width: 640px;
        aspect-ratio: 3 / 2;
        background-position: center center;
    }
    .profile .container .wrap {
        width: 47%;
    }
}
.humanstory-box {
    width: 100%;
    margin-top: 80px;
}
.career {
    width: 100%;
    min-width: 351px;
    max-width: 510px;
    height: 100%;
    margin-bottom: 40px;
    padding-left: 23px;
    line-height: 2.5;
    position: relative;
}
.career .br {
    display: none;
}
.career::before {
    content: "";
    width: 1px;
    height: 100%;
    display: block;
    background-color: var(--orange);
    position: absolute;
    top: 0;
    left: 3px;
}
.profile .career li {
    display: flex;
    gap: 16px;
}
.profile .career-year {
    width: fit-content;
    min-width: 47px;
}
.career li:first-child::before, .career li:nth-child(2)::before, .career li:nth-child(3)::before, .career li:nth-child(3)::after, .career li:nth-child(4)::before, .career li:nth-child(5)::before {
    content: "";
    width: 5px;
    height: 5px;
    display: block;
    background-color: var(--orange);
    border-radius: 50%;
    position: absolute;
    top: 100px;
    left: 1px;
}
.career li:nth-child(2)::before {
    top: 140px;
}
.career li:nth-child(3)::before {
    top: 180px;
}
.career li:nth-child(3)::after {
    top: 215px;
}
.career li:nth-child(4)::before {
    top: 250px;
}
.career li:nth-child(5)::before {
    top: 340px;
}
@media screen and (max-width: 470px) {
    .career {
        max-width: 380px;
    }
    .career li:nth-child(1)::before {
        top: 140px;
    }
    .career li:nth-child(2)::before {
        top: 180px;
    }
    .career li:nth-child(3)::before {
        top: 220px;
    }
    .career li:nth-child(3)::after {
        top: 260px;
    }
    .career li:nth-child(4)::before {
        top: 300px;
    }
    .career li:nth-child(5)::before {
        top: 420px;
    }
}
.humanstory {
    width: 100%;
}
.humanstory .subheading {
    margin-bottom: 24px;
    font-size: 1rem;
    padding-left: 24px;
    font-weight: 500;
}
.humanstory .accordion h3 {
    font-weight: 300;
}
@media screen and (min-width: 768px) {
    .humanstory-box {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        flex-direction: row-reverse;
        column-gap: 40px;
    }
    .career {
        width: 40%;
        max-width: 380px;
        margin-bottom: 0;
    }
    .humanstory {
        width: 300px;
    }
    .career li:nth-child(1)::before {
        top: 140px;
    }
    .career li:nth-child(2)::before {
        top: 180px;
    }
    .career li:nth-child(3)::before {
        top: 220px;
    }
    .career li:nth-child(3)::after {
        top: 270px;
    }
    .career li:nth-child(4)::before {
        top: 320px;
    }
    .career li:nth-child(5)::before {
        top: 420px;
    }
    .profile .accordion-q-year, .profile .accordion-q-year2, .profile .accordion-q-year3, .profile .accordion-q-year4, .profile .accordion-q-year5, .profile .accordion-q-year6 {
        content: "";
        width: 12px;
        height: 12px;
        display: none;
        background-color: var(--orange);
        border-radius: 50%;
        position: absolute;
        top: 205px;
        right: -75px;
    }
    .profile .accordion-q-year2 {
        top: 130px;
    }
    .profile .accordion-q-year3 {
        top: 125px;
    }
    .profile .accordion-q-year4 {
        top: 50px;
    }
    .profile .accordion-q-year5 {
        top: 70px;
    }
    .profile .accordion-q-year6 {
        top: 95px;
    }
    .profile .accordion-q-year::before, .profile .accordion-q-year2::before, .profile .accordion-q-year3::before, .profile .accordion-q-year4::before, .profile .accordion-q-year5::before, .profile .accordion-q-year6::before {
        content: "";
        width: 42px;
        height: 1px;
        background-color: var(--orange);
        position: absolute;
        top: 6px;
        right: 7px;
    }
    .profile .accordion > li.is-open .accordion-q-year, .profile .accordion > li.is-open .accordion-q-year2, .profile .accordion > li.is-open .accordion-q-year3, .profile .accordion > li.is-open .accordion-q-year4, .profile .accordion > li.is-open .accordion-q-year5, .profile .accordion > li.is-open .accordion-q-year6 {
        display: block;
    }
}
@media screen and (min-width: 920px) {
    .career {
        width: 50%;
    }
    .humanstory {
        width: 400px;
    }
    .profile .accordion-q-year {
        top: 150px;
    }
    .profile .accordion-q-year2 {
        top: 90px;
    }
    .profile .accordion-q-year3 {
        top: 70px;
    }
    .profile .accordion-q-year4 {
        top: 10px;
    }
    .profile .accordion-q-year5 {
        top: 10px;
    }
    .profile .accordion-q-year6 {
        top: 30px;
    }
}
@media screen and (min-width: 1080px) {
    .career {
        width: 50%;
        max-width: 510px;
    }
    .career .br {
        display: block;
    }
    .career li:nth-child(1)::before {
        top: 100px;
    }
    .career li:nth-child(2)::before {
        top: 140px;
    }
    .career li:nth-child(3)::before {
        top: 180px;
    }
    .career li:nth-child(3)::after {
        top: 215px;
    }
    .career li:nth-child(4)::before {
        top: 250px;
    }
    .career li:nth-child(5)::before {
        top: 340px;
    }
    .humanstory {
        width: 400px;
    }
    .profile .accordion-q-year {
        top: 165px;
    }
    .profile .accordion-q-year2 {
        top: 105px;
    }
    .profile .accordion-q-year3 {
        top: 90px;
    }
    .profile .accordion-q-year4 {
        top: 10px;
    }
    .profile .accordion-q-year5 {
        top: 5px;
    }
    .profile .accordion-q-year6 {
        top: 10px;
    }
}
@media screen and (min-width: 1280px) {
    .humanstory-box {
        justify-content: center;
        align-items: flex-end;
    }
    .career {
        max-width: 570px;
    }
    .career li:nth-child(5)::before {
        top: 300px;
    }
    .humanstory {
        width: 530px;
    }
    .profile .accordion-q-year {
        top: 265px;
    }
    .profile .accordion-q-year2 {
        top: 195px;
    }
    .profile .accordion-q-year3 {
        top: 175px;
    }
    .profile .accordion-q-year4 {
        top: 100px;
    }
    .profile .accordion-q-year5 {
        top: 100px;
    }
    .profile .accordion-q-year6 {
        top: 65px;
    }
}