@charset "UTF-8";



.page {
    margin: 10px 4% 80px;
}

.page_topic {
    font-size: 1.8rem;
    text-align: center;
    position: relative;
    margin-bottom: 50px;
}

.page_topic::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 5%;
    width: 15%;  
    border-top: 2px solid #333; 
    transform: translateY(-50%);
}

.page_topic::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 5%;
    width: 15%;  
    border-top: 2px solid #333; 
    transform: translateY(-50%);
}

.page__item-container {
    width: 100%;
}

.page__item__topic {
    flex-direction: column;
    padding: 50px 0 20px;
    text-align: left;
    margin: 0 auto;
    max-width: 90%;
    border-top: dashed 1px #cccccc;
}

.page__title {
    position: relative;
    padding-left: 2rem;
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.page__title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1rem;
    background-color: #606060;
}

.page__list {
    margin: 0 auto 50px;
}

.page__item-subtitle {
    font-size: 1rem;
    text-align: center;
}

.page__item-image-container {
    width: 100%;
    border: none;
    box-shadow: #cccccc 0px 0.3rem 0.5rem;
}

@media screen and (min-width: 768px) {
    .page {
        margin: 20px 10% 120px;
    }

    .page_topic {
        margin-bottom: 90px;
    }

    .page_topic::before {
        top: 50%;
        left: 20%;
        width: 15%;  
    }
    
    .page_topic::after {
        top: 50%;
        right: 20%;
        width: 15%;  
    }


    .page__item__topic {
        display: flex;
        justify-content: flex-start;
        padding: 50px 0 20px;
        text-align: left;
        margin: 0 auto;
        gap: 10px;
        width: 90%;
        max-width: 800px;
    }

    .page__title {
        font-size: 1.6rem;
    }
}

.bottom-page-link__container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding-inline: 1rem;
	margin-bottom: 2rem;
}

.bottom-page-link__item {
    padding-inline: 1rem;
	gap: 0;
}

.top-philosophy__link-arrow--left {
    transform: rotate(180deg);
}

.bottom-page-link__text--left {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.bottom-page-link__text--right {
    display: inline-block;
    width: 100%;
    text-align: center;
}