/*-------------------------------------------------
|- photo-block
-------------------------------------------------*/
.photo-block {
    width: 90%;
    max-width: 950px;
    margin: 50px auto 70px;
    display: flex;
    justify-content: space-between;
}
.photo-block__item {
    width: 48%;
}
@media screen and (max-width: 767px){
    .photo-block {
        margin: 20px auto 50px;
    }
}
/*-------------------------------------------------
|- introduction
-------------------------------------------------*/
.introduction {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
}
.introduction__txt {
    margin-bottom: 50px;
    font-size: var(--font-size16);
    text-align: center;
}
.introduction__img {
    width: 90px;
    margin-right: 5px;
}
@media screen and (max-width: 767px){
    .introduction__txt {
        margin-bottom: 30px;
        font-size: var(--font-size13);
        font-feature-settings: 'palt';
    }
    .introduction__img {
        width: 60px;
    }
}
/*-------------------------------------------------
|- mainVisualBlock
-------------------------------------------------*/
.list-block {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.list-box {
    width: 48%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.list__area {
    width: 100%;
    color: #a08e6f;
    font-size: var(--font-size16);
    font-weight: bold;
}
.introduction-list {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
}
.list__item {
    width: 49%;
}
.list__year {
    width: 50px;
}
.list__txt {
    width: calc(100% - 50px);
}
.list__sub {
    font-size: var(--font-size13);
    text-align: right;
}
.btn {
    width: 220px;
    margin: 20px 0 0 auto;
}
.btn__link {
    padding: 10px 0;
    color: #fff;
    font-weight: bold;
    text-align: center;
    letter-spacing: .1rem;
    background: #3e3a39;
    display: block;
}
.btn__icon {
    width: 7px;
}
.btn-link-disabled {
    background-color: #cccccc;
}
.btn-link-disabled :hover{
    background-color: #cccccc !important;
}
@media screen and (max-width: 767px){
    .list__area {
        padding: 3px 5px;
        box-sizing: border-box;
        font-size: var(--font-size14);
        background: rgba(213,209,196,.6);
    }
    .list-box {
        display: block;
    }
    .list__item {
        width: 100%;
    }
    .list__year {
        width: 35px;
        font-size: var(--font-size12);
    }
    .list__txt {
        width: calc(100% - 35px);
        font-size: var(--font-size12);
        font-feature-settings: 'palt';
    }
    .list__sub {
        text-align: center;
    }
    .btn {
        width: 75%;
        margin: 20px auto 0;
    }
}
