@charset "utf-8";

/*-----------------------------------
ページ内ナビ
-----------------------------------*/
#page_menu {
    width: 26.5%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 6.5%;
    z-index: 2;
}
#page_menu ul {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 6% 0;
}
#page_menu li {
    position: relative;
    padding: 6% 0;
}
#page_menu li .txt {
    font-size: 2.2dvh;
    font-weight: bold;
    color: #fff;
    padding-right: 3.5em;
    padding-left: 0.2em;
    position: relative;
}
#page_menu li .txt::after {
    content: "";
    width: calc(100% - 2em);
    height: 2px;
    background-color: #5d8351;
    position: absolute;
    bottom: -2px;
    left: 0;
    transition: background .3s;
}
#page_menu li:hover .txt::after {
    background-color: #fff;
}
#page_menu li .arrow {
    font-size: 2.2dvh;
    width: 3em;
    height: 3em;
    background-color: #5d8351;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: background .3s;
}
#page_menu li .arrow::after {
    content: "";
    width: 100%;
    height: 100%;
    background: url("../img/arrow.svg") no-repeat center center / contain;
    position: absolute;
    top: 0;
    left: 0;
    transition: background .3s;
}
#page_menu li:hover .arrow {
    background-color: #fff;
}
#page_menu li:hover .arrow::after {
    background: url("../img/arrow_green.svg") no-repeat center center / contain;
}
#page_menu li a {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
#title {
    position: relative;
}
#title .caption {
    font-size: 1.5dvh;
    font-weight: normal;
    color: #fff;
    position: absolute;
    bottom: 6.5%;
    right: 4%;
    z-index: 1;
}
@media screen and (max-width:768px){
    #page_menu {
        width: 30%;
    }
    #page_menu li .txt {
        font-size: 3dvh;
    }
}

/*-----------------------------------
ヒストリー
-----------------------------------*/
#history {
    height: 100%;
    display: flex;
}
#history .inner {
    display: flex;
    flex-direction: column;
}
#history_lead {
    height: 100%;
    aspect-ratio: 470 / 615;
    display: flex;
    align-items: center;
}
#history_lead .inner {
    padding-left: 30%;
    padding-right: 15%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#history_lead .txt {
    font-size: 2dvh;
    font-weight: bold;
    line-height: 2.5em;
    letter-spacing: 0.03em;
    margin-bottom: 10%;
    font-feature-settings: "palt";
}
#history_lead .img {
    width: 100%;
    text-align: center;
}
#history_lead .img img {
    width: 70%;
}
@media screen and (max-width:768px){
    #history_lead {
        aspect-ratio: 360 / 535;
    }
    #history_lead .inner {
        padding: 0 12%;
    }
    #history_lead .txt {
        font-size: 2.3dvh;
    }
}

.history_ttl_blk {
    height: 100%;
    aspect-ratio: 320 / 615;
    display: flex;
    align-items: center;
    font-feature-settings: "palt";
}
.history_ttl_blk img {
    margin-top: 12%;
}
.history_ttl_blk img.logo {
    margin-bottom: 5%;
}
.history_ttl_blk .caption {
    width: 94%;
    margin: 0 auto;
    font-size: 1.5dvh;
    font-weight: normal;
    text-align: right;
    padding: 0.3em 0 0 0;
}
.history_ttl_blk .ttl {
    width: 94%;
    font-size: 3.5dvh;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.7em;
    margin: 7% auto;
}
.history_ttl_blk .ttl.center {
    width: auto;
}
.history_ttl_blk .txt {
    width: 94%;
    margin: 0 auto;
    font-size: 2.5dvh;
    line-height: 1.6em;
    letter-spacing: 0.03em;
    color: #5d8351;
}
@media screen and (max-width:768px){
    .history_ttl_blk img {
        margin-top: 0;
    }
}

.history_txt_blk {
    height: 100%;
    aspect-ratio: 640 / 535;
    margin: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-feature-settings: "palt";
}
.history_txt_blk .inner {
    width: 46%;
    padding: 8% 0;
    display: flex;
    align-items: flex-start;
}
.history_txt_blk.column_s {
    aspect-ratio: 280 / 535;
    margin: 0 0 0 10px;
}
.history_txt_blk.column_s .inner {
    width: 100%;
    padding: 15% 0;
}
.history_txt_blk .ttl {
    font-size: 2.5dvh;
    line-height: 1.6em;
    letter-spacing: 0.03em;
    color: #5d8351;
    margin-bottom: 1em;
}
.history_txt_blk .txt {
    font-size: 2dvh;
    letter-spacing: 0.05em;
    line-height: 2em;
}
@media screen and (max-width:768px){
    .history_txt_blk {
        aspect-ratio: 600 / 490;
        margin: 0 7dvh;
    }
    .history_txt_blk .inner {
        width: 47%;
        padding: 1% 0;
    }
    .history_txt_blk.column_s .inner {
        padding: 1% 0;
    }
    .history_txt_blk .ttl {
        font-size: 3dvh;
    }
    .history_txt_blk .txt {
        font-size: 2.2dvh;
    }
    .history_txt_blk.column_s {
        aspect-ratio: 300 / 535;
    }
}

/*-----------------------------------
沿革
-----------------------------------*/
#enkaku {
    height: 100%;
    padding-left: 100px;
}
.enkaku_menu {
    height: 100%;
    aspect-ratio: 320 / 615;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.enkaku_menu .ttl {
    font-size: 3.5dvh;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 1em;
}
.enkaku_menu li {
    margin-bottom: 6%;
}
@media screen and (max-width:768px){
    #enkaku {
        padding-left: 8dvh;
    }
}

/*-----------------------------------
100年企業
-----------------------------------*/
#year {
    height: 100%;
    padding-left: 70px;
}
#year .history_ttl_blk .inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#year .ttl_img {
    width: 60%;
}
#year .history_ttl_blk .txt {
    margin: 5% auto 8%;
}
#year .img_100th {
    width: 80%;
    margin-left: auto;
}

@media screen and (max-width:768px){
    #year {
        padding-left: 4dvh;
    }
}