main {
    background-color: white;
    height: 1000px;
    position: relative;
    z-index: 50;
    top: 100px;
    overflow: auto; /* コンテンツがはみ出したらスクロールバーを表示 */
}
@media screen and (max-width: 1590px) {
    main {
        top: 200px;
    }
}
@media screen and (max-width: 1000px) {
    main {
        top: 100px;
        height: 1500px;
    }
}
@media screen and (max-width: 760px)  {
    main {
        height: 1200px;
    }
}
@media screen and (max-width: 600px)  {
    main {
        height: 1800px;
    }
}





a {
    text-decoration: none;
    color: black;
}

.main_title {
    display: grid;
    align-items: center;
    color: white;
    background-color: rgb(14, 154, 14);
    font-size: 2rem;
    height: 90px;
    padding-left: 11%;
    margin: 0;
}


.breadcrumb-001 {
    display: flex;
    gap: 0 22px;
    list-style: none;
    padding: 0;
    padding-left: 10%;
    font-size: 1em;
}
.home_icon {
    width: 1rem;
    height: 1rem;
}

.breadcrumb-001 li {
    display: flex;
    align-items: center;
}


.breadcrumb-001 li:first-child::before {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 4px;
    background-repeat: no-repeat;
    content: '';
}

.breadcrumb-001 li:not(:last-child)::after {
    display: inline-block;
    transform: rotate(45deg);
    width: .3em;
    height: .3em;
    margin-left: 10px;
    border-top: 1px solid #1fab03;
    border-right: 1px solid #1fab03;
    content: '';
}

.breadcrumb-001 a {
    color: #1fab03;
    text-decoration: none;
}



.menu_box {
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 768px) {
    .menu_box {
        display: block;
    }
}

.menu_box li {
    list-style: none;
    padding-right: 4rem;
    padding-top: 5rem;
}


.kuwashiku_icon {
    position: absolute; /* 親要素（.box-017）を基準に絶対配置 */
    bottom: 0px; /* 親要素の下端から10px上 */
    right: 30px;  /* 親要素の右端から10px左 */
    z-index: 150;
    /*    text-align: right;*/
}



.box-017 {
    width: 550px;
    height: 100px;
    margin: 0 auto;
    padding: .5em 1.5em 5em;
    border-top: 5px solid #72c090;
    border-radius: 3px;
    box-shadow: 0 2px 3px rgb(0 0 0 / 20%);
    background-color: #fafafa;
    position: relative;
    z-index: 100;
}
@media screen and (max-width: 1590px) {
    .box-017 {
        width: 400px;
        height: 100px;
    }
}
@media screen and (max-width: 1000px) {
    .box-017 {
        width: 300px;
        height: 100px;
    }
}

.box-017 > div {
    margin-bottom: .5em;
    color: #72c090;
    font-weight: 600;
    font-size: 1.3em;
}

.box-017 > p {
    margin: 0;
    color: #333;
}

.box-017:hover {
    background-color: #e4e4e4c8;
}
