main {
    background-color: white;
    height: auto;
    position: relative;
    z-index: 50;
    top: 100px;
}
@media screen and (max-width: 1590px) {
    main {
        top: 200px;
    }
}
@media screen and (max-width: 1000px) {
    main {
        top: 100px;
    }
}

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;
}



.main_body {
    display: grid;
    grid-template-areas:
        "sub_link main_text";
    grid-template-columns: 300px 900px;
    grid-template-rows: 750px 700px;
    padding-top: 50px;
    padding-left: 190px;
}
@media screen and (max-width: 1590px) {
    .main_body {
        grid-template-columns: 200px 700px;
        grid-template-rows: 850px 700px;
        padding-left: 100px;
    }
}
@media screen and (max-width: 1000px) {
    .main_body {
        grid-template-areas:
            "main_text";
        grid-template-columns: 500px ;
        grid-template-rows: 1350px;
        padding-left: 0px;
    }
}
@media screen and (max-width: 600px) {
    .main_body {
        grid-template-areas:
            "main_text";
        grid-template-columns: 350px ;
        grid-template-rows: 1550px;
        padding-left: 0px;
    }
}

.main_body .body_sub {
    grid-area: sub_link;
    text-align: left;
}
@media screen and (max-width: 1000px) {
    .main_body .body_sub {
        display: none;
    }
}

.main_body .body_sub h2{
    display: flex;
    justify-content: left;
    align-items: center;
    border-bottom: 1px solid black;
}

.main_body .body_sub p{
    display: flex;
    justify-content: left;
    align-items: center;
    height: 40px;
    padding-left: 10px;
    font-size: 1.0rem;
    color: black;
    border-bottom: 1px solid rgb(158, 158, 158);
}
.main_body .body_sub p:hover{
    text-decoration: underline;
    background-color: rgb(237, 237, 237);
}
.select_list{
    background-color: rgb(237, 237, 237);
}

.main_body .body_text {
    grid-area: main_text;
    padding-left: 100px;
    width: 100%;
    max-height: auto;
}
@media screen and (max-width: 1000px) {
    .main_body .body_sub {
        padding-left: 0px;
    }
}
.main_body .body_text p{
    font-size: 1.2rem;
    font-weight: normal;
    font-family: '游ゴシック', 'Yu Gothic', YuGothic, 'Noto Sans JP', sans-serif;
}


.ceo_name {
    font-size: 1.5rem;
    font-family: '游ゴシック', 'Yu Gothic', YuGothic, 'Noto Sans JP', sans-serif;
}

.body_img {
    width: 300px;
    height: 200px;
}



.facility_header {
    display: flex; /* 親要素をFlexコンテナにする */
    justify-content: left;
    align-items: center;
    gap: 10px; /* 子要素間の隙間を設定（任意、最近のCSSで便利） */
    padding: 10px;
    max-width: 900px;
    margin: 0px 0px;
    height: 50px;
    border-bottom: solid 1px rgb(89, 89, 89);
}

.facility_img {
    max-width: 50px; /* 画像の最大幅を指定 */
    padding-top: 7px;
    height: auto;
}

.facility_text {
    flex: 1; /* 利用可能なスペースを占めるように設定（任意） */
    background-color: #ffffff;
    font-size: 18px;
}

.facility_table1 {
    width: 555px;
    height: 240px;
    border-collapse: collapse;
    margin-top: 20px;
    margin-bottom: 20px;
}
.facility_data_img1 {
    width: 327px;
    height: 245px;
    padding-top: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
}
.facility_data1 {
    width: 200px;
    height: 21px;
    border-top: solid 1px rgb(214, 214, 214);
    border-bottom: solid 1px rgb(214, 214, 214);
    padding-left: 80px;
    font-weight: normal;
    font-size: 20px;
}
@media screen and (max-width: 600px) {
    .facility_table1 {
        width: 300px;
        height: auto;
    }
    .facility_data_img1 {
        width: 300px;
        height: 200px;
    }
    .facility_data1 {
        width: 200px;
        padding-left: 20px;
        font-size: 14px;
        text-align: left;
    }
}


