@charset "UTF-8";

/* ================================================ */
/* Base*/
/* ================================================ */

html {
    overflow: auto;
    scroll-behavior: smooth;
    color: #FFFFFFc4;
}

body {
    -webkit-text-size-adjust: 100%;
    color: #000;
    background-color: #FFFFFF;
    padding: 0;
    text-align: left;
    height: auto;
    font-size: 16px;
    line-height: 1.6em;
    font-family: "Noto Sans JP", 'Yu Gothic Medium', '游ゴシック Medium', YuGothic, '游ゴシック体', 'ヒラギノ角ゴ Pro W3', 'メイリオ', sans-serif;
    overflow: hidden;
    position: relative;
}

/*++++++++++++++++++++++++++
	Link : Text
++++++++++++++++++++++++++*/
a {
    text-decoration: none;
    color: #000;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}


/*++++++++++++++++++++++++++
	font
++++++++++++++++++++++++++*/

em {
    font-style: normal;
}

.gothic {
    font-family: "Noto Sans JP", 'Yu Gothic Medium', '游ゴシック Medium', YuGothic, '游ゴシック体', 'ヒラギノ角ゴ Pro W3', 'メイリオ', sans-serif;
}

.mincho {
    font-family: 'Noto Serif JP', '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
}


/*++++++++++++++++++++++++++
	切り替え
++++++++++++++++++++++++++*/
@media screen and (min-width: 600px) {
    .pc {
        display: block;
    }

    .sp {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}


/*++++++++++++++++++++++++++
共通
++++++++++++++++++++++++++*/
section {
    padding: 0 0 0 0;
    margin: auto;
    clear: both;
}

img {
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.clear_both {
    clear: both;
}

.indent {
    text-indent: -1em;
    padding-left: 1em;
}

h2.h2_title {
    font-size: 30px;
    font-weight: 500;
    margin: 0 auto 50px;
    text-align: center;
    color: #333333;
}

h3.h3_title {
    font-size: 25px;
    font-weight: 500;
    margin: 0 auto 30px;
    padding: 0 0 0 10px;
    text-align: left;
    color: #333333;
    line-height: 1.8em;
    border-left: 3px solid #E6012C;
}

h4.h4_title {
    position: relative;
    font-size: 25px;
    font-weight: 500;
    margin: 0 auto 30px;
    padding: 0 0 0 10px;
    text-align: center;
    color: #333333;
    line-height: 1.8em;
}

h4.h4_title::before {
    position: absolute;
    border-bottom: 3px solid #E6012C;
    bottom: -15px;
    content: "";
    left: 0;
    right: 0;
    margin: auto;
    width: 60px;
}


h5.h5_title {
    width: 100%;
    font-size: 30px;
    font-weight: 500;
    margin: 0 auto 40px;
    padding: 0 0 0 0;
    text-align: center;
    color: #333333;
    line-height: 1.8em;
}


/*++++++++++++++++++++++++++
共通_button_red
++++++++++++++++++++++++++*/

.button_red {
    max-width: 260px;
    width: 95%;
    display: block;
    margin: auto;
    padding: 5px 10px;
    min-height: 55px;
    display: table;
    text-align: center;
    background-color: #E6012C;
    border-radius: 100vh;
    color: #FFFFFF;
    font-size: 18px;
    border: 0px;
}

.button_red span {
    display: table-cell;
    vertical-align: middle;
}

.button_red span::before {
    content: url(../images/link_arrow2.svg);
    padding-right: 5px;
}



/*++++++++++++++++++++++++++
共通_button_black
++++++++++++++++++++++++++*/

.button_black {
    display: block;
    margin: auto;
    padding: 5px 60px;
    min-height: 55px;
    display: table;
    text-align: center;
    background-color: #707070;
    border-radius: 100vh;
    color: #FFFFFF;
    font-size: 18px;
}

.button_black span {
    display: table-cell;
    vertical-align: middle;
}

.button_black span::before {
    content: url(../images/link_arrow2.svg);
    padding-right: 5px;
}


/*++++++++++++++++++++++++++
共通_button_pdf
++++++++++++++++++++++++++*/

.button_pdf {
    max-width: 260px;
    width: 95%;
    display: block;
    margin: auto;
    padding: 5px 10px;
    min-height: 55px;
    display: table;
    text-align: center;
    background-color: #E6012C;
    border-radius: 100vh;
    color: #FFFFFF;
    font-size: 18px;
    background-image: url(../images/pdf_icon.svg);
    background-repeat: no-repeat;
    background-position: center left 10px;
}

.button_pdf span {
    display: table-cell;
    vertical-align: middle;
}

.button_pdf span::before {
    content: url(../images/link_arrow2.svg);
    padding-right: 5px;
}


/*++++++++++++++++++++++++++
共通_button_pdf_black
++++++++++++++++++++++++++*/

.button_pdf_black {
    display: block;
    margin: 0 0 0 auto;
    padding: 5px 30px;
    min-height: 35px;
    display: table;
    text-align: center;
    background-color: #707070;
    border-radius: 100vh;
    color: #FFFFFF;
    font-size: 15px;
}

.button_pdf_black span {
    display: table-cell;
    vertical-align: middle;
}

.button_pdf_black span::before {
    content: url(../images/link_arrow4.svg);
    padding-right: 5px;
    transform: scale(0.7);
}




/*++++++++++++++++++++++++++
共通_link_arrow
++++++++++++++++++++++++++*/

.link_arrow {
    max-width: 250px;
    width: 95%;
    display: block;
    margin: 30px 0 0 auto;
    padding: 5px 20px 8px 5px;
    text-align: left;
    color: #E6012C;
    font-size: 20px;
    background-image: url(../images/link_arrow1.svg);
    background-repeat: no-repeat;
    background-position: bottom 0px right 0px;
}




/*++++++++++++++++++++++++++
ヘッダー
++++++++++++++++++++++++++*/
header {
    width: 100%;
    background-color: #FFFFFF;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    line-height: 0;
}

header .header_wrap {
    max-width: 100%;
    width: 100%;
    margin: auto;
    position: relative;
    display: flex;
    justify-content: space-between;
}

header .header_logo {
    width: 200px;
    padding: 20px;
}

header menu {
    width: 70%;
    display: block;
}

header .header_menu {
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

header .header_menu li,
header .header_menu ol {
    line-height: 1.8em;
    display: flex;
    flex-direction: row;
    justify-content: center;
    /* 縦方向の中央揃え */
    align-items: center;
    /* 横方向の中央揃え */
    width: 20%;
    height: 100px;
    text-align: center;
    font-size: 15px;
    border-left: 1px solid #DDDDDD;
}

header .header_menu li span {
    display: block;
    max-width: 50px;
    width: 100%;
    margin: auto;

}

header .header_menu ol {
    background-color: #E6012C;
}

header .header_menu ol a {
    color: #FFFFFF;
}

header .header_menu ol span {
    display: block;
    max-width: 26px;
    width: 100%;
    margin: auto;
    opacity: 0.8;
    /* 80%透過 */
}

@media screen and (max-width: 680px) {

    header menu {
        display: none;
    }

    header .header_logo {
        width: 150px;
        padding: 11px 20px;
    }

}

/*++++++++++++++++++++++++++
header_space
++++++++++++++++++++++++++*/

.header_space {
    width: 100%;
    height: 100px;
    transition: all 1s ease-out;
}

.header_space_se {
    width: 100%;
    height: 200px;
    transition: all 1s ease-out;
}

@media screen and (max-width: 680px) {
    .header_space {
        height: 60px;
    }

    .header_space_se {
        height: 130px;
    }
}

/*++++++++++++++++++++++++++
mainvisual
++++++++++++++++++++++++++*/
#mainvisual {
    width: 100%;
    margin: 0;
    aspect-ratio: 19 / 9;
    height: auto;
    margin: 0 0 0;
    line-height: 0;
    align-items: center;
    justify-content: center;
    transition: all 1s ease-out;
}

@media screen and (min-width: 680px) {
    #mainvisual .pc {
        display: block;
    }

    #mainvisual .sp {
        display: none;
    }
}

@media screen and (max-width: 680px) {
    #mainvisual .pc {
        display: none;
    }

    #mainvisual .sp {
        display: block;
    }
}


/*++++++++++++++++++++++++++
notfound_read
++++++++++++++++++++++++++*/

.notfound_read {
    margin: 0 auto 0;
    text-align: center;
    font-size: 16px;
    padding: 50px 0 100px;
}

.notfound_read a {
    color: #E6012C;
    text-decoration: underline;
}


/*++++++++++++++++++++++++++
top_contact
++++++++++++++++++++++++++*/
#top_contact {
    width: 100%;
    min-height: 400px;
    margin: 0;
    /*aspect-ratio: 15 / 4;*/
    margin: 0 auto 70px;
    align-items: center;
    background-image: url(../images/contact_bk.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 0;
    /* Flexboxの追加 */
    display: flex;
    justify-content: center;
    align-items: center;
}

#top_contact .top_contact_black {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0000007e;
    z-index: -1;
}

#top_contact article {
    max-width: 750px;
    width: 95%;
    margin: auto;
}

#top_contact .top_contact_wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    color: #FFFFFF;
    margin: 0 auto 0;
}

#top_contact .top_contact_content {
    width: 50%;
    margin: 0 0 30px;
}

#top_contact .top_contact_title {
    font-size: 30px;
    margin: 0 auto 20px;
}

#top_contact .top_contact_title span {
    display: inline-block;
    width: 32px;
    height: auto;
    margin: 0 10px 0 0;
}

#top_contact .top_contact_txt {
    font-size: 16px;
    line-height: 1.8em;
}

#top_contact .top_contact_btn {
    width: 40%;
    padding: 12px;
    font-size: 18px;
    text-align: center;
    background-color: #E6012C;
    color: #FFFFFF;
    border-radius: 8px;
    margin: 0 0 30px;
}

#top_contact .top_contact_btn span {
    display: inline-block;
    width: 10px;
    height: 14px;
    margin: 0 5px 0 0;
}

#top_contact .top_contact_kengaku {
    font-size: 15px;
    line-height: 1.6em;
    width: 95%;
    margin: 10px 0 10px auto;
    background-color: #FFFFFF;
    color: #000;
    padding: 10px 10px 10px 70px;
    position: relative;
    border-radius: 5px;
}

#top_contact .top_contact_icon {
    position: absolute;
    background-color: #E6012C;
    color: #FFFFFF;
    text-align: center;
    font-size: 18px;
    width: 100px;
    height: 100px;
    border-radius: 100vh;
    display: table;
    top: -15px;
    left: -45px;
}

#top_contact .top_contact_icon span {
    display: table-cell;
    vertical-align: middle;
}


@media screen and (max-width: 600px) {

    #top_contact .top_contact_txt {
        font-size: 15px;
    }

    #top_contact .top_contact_content {
        width: 90%;
        margin: 0 auto 30px;
    }

    #top_contact .top_contact_btn {
        width: 90%;
        margin: 0 auto 30px;
    }

    #top_contact .top_contact_kengaku {
        font-size: 14px;
        width: 80%;
        margin: 10px auto 10px 60px;
        padding: 10px 10px 10px 50px;
    }

    #top_contact .top_contact_icon {
        font-size: 16px;
        width: 90px;
        height: 90px;
    }

}



/*++++++++++++++++++++++++++
top_aim
++++++++++++++++++++++++++*/

#top_aim {
    width: 95%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 130px 0;
    display: flex;
    flex-wrap: wrap;
}

#top_aim .aim_txtarea {
    width: 50%;
    margin-bottom: 40px;
}

#top_aim .aim_txt1 {
    font-size: 28px;
    font-weight: 600;
    color: #E6012C;
    margin: 0 0 20px;
}

#top_aim .aim_txt2 {
    font-size: 16px;
    line-height: 1.8em;
}

#top_aim .aim_photoarea {
    width: 50%;
}

@media screen and (max-width: 600px) {
    #top_aim .aim_txtarea {
        width: 100%;
    }

    #top_aim .aim_photoarea {
        width: 100%;
    }
}

/*++++++++++++++++++++++++++
top_thoughts
++++++++++++++++++++++++++*/

#top_thoughts {
    width: 100%;
    background-color: #F5F5F5;
    margin: 0 auto;
    padding: 130px 0;
    background-image: url(../images/omoi_illust.svg);
    background-repeat: no-repeat;
    background-position: top 10% left 10%;
}

#top_thoughts .thoughts_wrap {
    width: 95%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

#top_thoughts .thoughts_txtarea {
    width: 50%;
    margin-bottom: 40px;
}

#top_thoughts .thoughts_txt1 {
    font-size: 23px;
    color: #E6012C;
    margin: 0 0 15px;
}

#top_thoughts .thoughts_txt2 {
    font-size: 28px;
    line-height: 1.8em;

}

#top_thoughts .thoughts_photoarea {
    width: 50%;
}

#top_thoughts .thoughts_photoarea img {
    border-radius: 15px;
}


@media screen and (max-width: 600px) {
    #top_thoughts {
        background-size: 50%;
    }

    #top_thoughts .thoughts_txtarea {
        width: 100%;
    }

    #top_thoughts .thoughts_photoarea {
        width: 100%;
    }
}


/*++++++++++++++++++++++++++
top_etymology
++++++++++++++++++++++++++*/

#top_etymology {
    max-width: 990px;
    width: 95%;
    margin: -50px auto 100px;
    text-align: center;
}

#top_etymology .top_etymology_wrap {
    background-color: #FFFFFF;
    padding: 20px 10px;
    filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
    display: flex;
    flex-wrap: wrap;
}

#top_etymology .etymology_logoarea {
    width: 50%;
    margin: auto;
    text-align: center;
}

#top_etymology .etymology_logo {
    max-width: 260px;
    width: 95%;

}

#top_etymology .etymology_txtarea {
    width: 50%;
    margin-bottom: 40px;
    text-align: left;
    font-size: 16px;
    line-height: 2.0em;
    margin: auto;
}

#top_etymology .etymology_lead {
    text-align: center;
    font-size: 19px;
    margin: auto;
    line-height: 2.5em;
    padding: 30px 0;
}



@media screen and (max-width: 600px) {
    #top_etymology .etymology_logoarea {
        width: 100%;
    }

    #top_etymology .etymology_txtarea {
        text-align: center;
        width: 100%;
        font-size: 14px;
    }

    #top_etymology .etymology_lead {
        text-align: left;
        font-size: 16px;
    }
}



/*++++++++++++++++++++++++++
top_features
++++++++++++++++++++++++++*/

#top_features {
    width: 100%;
    margin: 0 auto 0;
    background-color: #E6012C;
    padding: 100px 0 50px;
    text-align: center;
}

#top_features .fukidashi {
    display: inline-block;
    margin: 0 auto 0;
    background-color: #FFFFFF;
    padding: 10px 40px;
    font-size: 26px;
    font-weight: 600;
    color: #E6012C;
    position: relative;
    filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
}

#top_features .fukidashi:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 10px solid transparent;
    border-top: 15px solid #FFFFFF;
}

#top_features .top_features_title {
    margin: 50px auto 50px;
    font-size: 38px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 5px;
    line-height: 1em;
}

#top_features .top_features_title span {
    font-size: 65px;
}


#top_features .top_features_wrap {
    max-width: 1200px;
    width: 95%;
    margin: 0 auto 5px;
    background-color: #FFFFFF;
    padding: 7% 7% 2% 7%;
    text-align: left;
    border-radius: 30px
}

#top_features .top_features_flex {
    width: 100%;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

#top_features .reverse {
    flex-direction: row-reverse;
}


#top_features .top_features_txtarea {
    width: 60%;
    padding: 0 0 30px;
}

#top_features .top_features_photo_r,
#top_features .top_features_photo {
    width: 35%;
    padding: 0 0 30px;
    margin: auto;
}

#top_features .top_features_photo_r img {
    border-radius: 100vh;
}

#top_features .top_features_number {
    font-size: 75px;
    font-weight: 700;
    color: #DBDBDB;
    line-height: 1.5em;
}

#top_features .top_features_txt1 {
    font-size: 25px;
    font-weight: 500;
    color: #E6012C;
    line-height: 1.5em;
    margin: 0 0 20px;
}

#top_features .top_features_txt2 {
    font-size: 16px;
    line-height: 1.8em;
}

@media screen and (max-width: 600px) {

    #top_features .top_features_title {
        margin: 30px auto 40px;
        line-height: 1.5em;
    }

    #top_features .top_features_txtarea {
        width: 100%;
        padding: 0 0 30px;
    }

    #top_features .top_features_photo_r,
    #top_features .top_features_photo {
        width: 80%;
        padding: 0 0 30px;
    }



}

/*++++++++++++++++++++++++++
top_flow
++++++++++++++++++++++++++*/

#top_flow {
    width: 100%;
    margin: 0 auto 0;
    background-color: #E6012C;
    padding: 50px 0 50px;
    text-align: center;
}


#top_flow .top_flow_wrap {
    max-width: 1000px;
    width: 95%;
    min-height: 365px;
    margin: 0 auto 0;
    background-color: #FFFFFF;
    background-image: url(../images/dailyschedule_bk.jpg);
    background-size: cover;
    background-position: top 0px left 0px;
    background-repeat: no-repeat;
}

#top_flow .top_flow_txtarea {
    max-width: 340px;
    width: 100%;
    min-height: 365px;
    margin: 0 auto 0 0;
    background-color: #FFFFFFc4;
    text-align: center;
    display: table;
}

#top_flow .inner {
    display: table-cell;
    vertical-align: middle;
}

#top_flow .dailyschedule_icon_red {
    max-width: 65px;
    width: 100%;
    height: auto;
    margin: 0 auto 30px auto;
}

#top_flow .top_flow_txt {
    font-size: 35px;
    margin: 0 auto 35px auto;
    color: #E6012C;
    font-weight: 600;
}

@media screen and (max-width: 600px) {

    #top_flow .top_flow_wrap {
        min-height: 600px;
        background-size: auto 300px;
        background-position: bottom 0px right 0px;
    }

    #top_flow .top_flow_txtarea {
        max-width: 600px;
        min-height: 300px;
        margin: 0 auto 0 0;
    }

}


/*++++++++++++++++++++++++++
top_facility
++++++++++++++++++++++++++*/

#top_facility {
    width: 100%;
    margin: 0 auto 0;
    background-color: #E6012C;
    padding: 50px 0 0;
    text-align: center;
}

#top_facility .top_facility_wrap {
    width: 100%;
    margin: 0 auto 5px;
    background-color: #F5F5F5;
    padding: 7% 7% 7% 7%;
    text-align: left;
    border-radius: 30px 30px 0 0;
}

#top_facility .facility_icon {
    max-width: 50px;
    width: 100%;
    height: auto;
    margin: 0 auto 10px auto;
}

#top_facility .top_facility_title {
    font-size: 30px;
    margin: 0 auto 50px auto;
    text-align: center;
}

#top_facility .facility_flex {
    max-width: 780px;
    width: 95%;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    color: #FFFFFF;
    text-align: center;
}

#top_facility .facility_contents {
    width: 45%;
    background-color: #E6012C;
    padding: 0;
    margin-bottom: 30px;
}

#top_facility .tenmei {
    margin: 30px 0 30px;
    font-size: 26px;
    position: relative;
}

#top_facility .tenmei:after {
    border-bottom: 2px solid #FFFFFF;
    bottom: -15px;
    content: "";
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    width: 100px;
}

#top_facility .access {
    margin: 0 0 10px;
    font-size: 16px;
}

#top_facility .tel {
    margin: 0 0 30px;
    font-size: 24px;
    position: relative;
    display: inline-block;
    color: #FFFFFF;
}

#top_facility .tel::after {
    content: " ";
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #FFFFFF;
}


#top_facility .facility_link {
    display: block;
    width: 50%;
    margin-left: auto;
    font-size: 15px;
    padding: 5px;
    background-color: #FFFFFF;
    border-radius: 15px 0 0 0;
}

#top_facility .facility_link span::after {
    content: url(../images/link_arrow3.svg);
    padding-left: 5px;

}

#top_facility .map_wrap {
    position: relative;
    max-width: 800px;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 80px auto 0;
}

/* Google Mapのiframe */
#top_facility .map_wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 600px) {

    #top_facility .top_facility_wrap {
        padding: 7% 3% 7% 3%;
    }

    #top_facility .facility_contents {
        width: 100%;
        margin-bottom: 30px;
    }
}







/*++++++++++++++++++++++++++
top_info
++++++++++++++++++++++++++*/

#top_info {
    max-width: 1000px;
    width: 95%;
    margin: 0 auto 0;
    padding: 100px 0 100px;
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

#top_info .top_info_txtarea {
    max-width: 280px;
    width: 280px;
    flex-shrink: 0;
    padding: 0 40px 0 0;
    margin: 0 auto 50px;
}

#top_info .info_icon {
    width: 50px;
    height: auto;
    margin: 0 auto 20px;
}

#top_info .top_info_title {
    font-size: 30px;
    font-weight: 600;
    margin: 0 auto 30px;
}


#top_info .info_listarea,
#info .info_listarea {
    flex: 1;
    text-align: left;
}

#top_info .category,
#info .category {
    padding: 0 0 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

#top_info .category .active a,
#info .category .active a {
    color: #FFFFFF;
}

#top_info .category li,
#info .category li {
    padding: 8px 18px;
    margin-right: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1em;
    background-color: #ebebeb;
    color: #000;
    border-radius: 100vh;
}

#top_info .category li.active,
#info .category li.active {
    background-color: #E6012C;
    color: #FFFFFF;
}

#top_info .category li.active {
    transition: background-color 2s ease, color 2s ease, transform 2s ease;
}


#top_info .info_list ul,
#info .info_list ul,
#facility_se .info_list ul {
    width: 100%;
    padding: 0 0 30px;
    margin: 0 auto 30px;
    border-bottom: solid 1px #CECECE;
}

#top_info .info_day,
#info .info_day,
#facility_se .info_day {
    display: inline-block;
    font-size: 15px;
    margin: 0 0 15px 15px;
}

#top_info .info_category,
#info .info_category,
#facility_se .info_category {
    display: inline-block;
    text-align: center;
    max-width: 130px;
    width: 100%;
    font-size: 14px;
    padding: 3px 10px;
    margin: 0 0 0 10px;
    color: #E6012C !important;
    background-color: #FFF5F2;
}

#top_info .info_category a,
#info .info_category a,
#facility_se .info_category a {
    color: #E6012C !important;
}

#top_info .info_linktitle,
#info .info_linktitle,
#facility_se .info_linktitle {
    font-size: 16px;
    line-height: 1.8em;
    margin: 0 0 0 15px;
}

@media screen and (max-width: 600px) {

    #top_info .top_info_txtarea {
        max-width: 600px;
        width: 100%;
        flex-shrink: initial;
        padding: 0 0 0 0;
        margin: 0 auto 50px;
    }

    #top_info .info_listarea,
    #info .info_listarea {
        flex: initial;
        width: 100%;
    }

}


/*++++++++++++++++++++++++++
info
++++++++++++++++++++++++++*/

#info {
    max-width: 1000px;
    width: 95%;
    margin: 50px auto 100px;
    padding: 0 0 0;
    text-align: left;
}

#info .info_wrap {
    padding: 0 0 100px 0;
}

#info .info_title {
    padding: 0 0 10px 0;
    margin: 0 0 20px 0;
    border-bottom: 2px #E6012C solid;
}

#info .info_day_single {
    display: inline-block;
    font-size: 15px;
    margin: 0 0 15px 0;
}

#info div {
    font-size: 16px;
    line-height: 1.8em;
    padding: 0 0 20px;
    clear: both;
}

#info p {
    font-size: 16px;
    line-height: 1.8em;
    padding: 0 0 20px;
    clear: both;
}

#info h1 {
    font-size: 25px;
    font-weight: 500;
    line-height: 1.8em;
}

#info .wp-block-image figure {
    margin: auto;
}

#info .wp-block-separator {
    border: none;
    border-top: 1px solid #c1c1c1;
    margin-top: 30px;
    margin-bottom: 40px;
}

#info .wp-block-image {
    padding: 0 0 20px;
}


#info .wp-block-file__button {
    background-color: #707070;
    border-radius: 100vh;
        color: #fff;
        text-decoration: none;
    padding: 5px 30px;
    min-height: 35px;
    }

#info .figcaption {
    margin-bottom: 1em;
    margin-top: 0;
    font-size: 15px;
}


#info h2 {
    font-size: 30px;
    font-weight: 500;
    margin: 0 auto 50px;
    text-align: center;
    color: #333333;
}

#info h3 {
    font-size: 25px;
    font-weight: 500;
    margin: 0 auto 30px;
    padding: 0 0 0 10px;
    text-align: left;
    color: #333333;
    line-height: 1.8em;
    border-left: 3px solid #E6012C;
}

#info h4 {
    position: relative;
    font-size: 25px;
    font-weight: 500;
    margin: 0 auto 30px;
    padding: 0 0 0 10px;
    text-align: center;
    color: #333333;
    line-height: 1.8em;
}

#info h4::before {
    position: absolute;
    border-bottom: 3px solid #E6012C;
    bottom: -15px;
    content: "";
    left: 0;
    right: 0;
    margin: auto;
    width: 60px;
}

#info h5 {
    max-width: 1000px;
    width: 100%;
    font-size: 25px;
    line-height: 1.6em;
    font-weight: 400;
    color: #E6012C;
    padding-bottom: 10px;
    margin-bottom: 25px;
    position: relative;
    border-bottom: solid 3px #F0F0EF;
}

#info h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 20%;
    display: block;
    border-bottom: solid 2px #E6012C;
}



#info h6 {
    font-size: 20px;
    line-height: 1.5em;
    margin-bottom: 10px;
}



/*

#info h2 {
    font-size: 25px;
    line-height: 1.6em;
    font-weight: 600;
    color: #E6012C;
    padding-bottom: 10px;
    margin-bottom: 25px;
    position: relative;
    border-bottom: solid 2px #F0F0EF;

}

#info h2:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 120px;
    height: inherit;
    border-bottom: 2px solid #E6012C;
}


#info h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.7em;
    margin-bottom: 15px;
    color: #E6012C;
}

#info h4 {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5em;
    margin-bottom: 20px;
    padding-left: 11px;
    border-left: 6px solid #E6012C;
}

#info h5 {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5em;
    margin-bottom: 10px;
    padding-left: 11px;
}
*/






/* ul, ol, liのリセットを元に戻す */
#info ul {
    list-style: initial;
    /* 初期のリストスタイルを適用 */
}

#info ol {
    list-style-type: decimal !important;
}


#info .wp-block-table td, #s-news-post .wp-block-table th {
    border: 1px solid #c9c9c9;
}

#info .wp-block-table.is-style-stripes td, #s-news-post .wp-block-table.is-style-stripes th {
    border-color: transparent !important
}


#info .ne-post-blk .ne-post-cont p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7em;
    margin-bottom: 40px;
}

#info .ne-post-blk .ne-post-cont .ne-flex2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#info .ne-post-blk .ne-post-cont .ne-flex2 .ne-flx-cont {
    width: 48%;
}

@media only screen and (max-width: 780px) {
    #info .ne-post-blk .ne-post-main {
        margin-bottom: 50px;
    }

    #info .ne-post-blk .ne-post-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    #info .ne-post-blk .ne-post-cont {
        margin: auto auto 80px;
    }

    #info .ne-post-blk .ne-post-cont img {
        margin-bottom: 40px;
    }

    /*
    #info .ne-post-blk .ne-post-cont h2 {
        margin-bottom: 40px;
    }
*/
    #info .ne-post-blk .ne-post-cont p {
        margin-bottom: 40px;
    }

    #info .ne-post-blk .ne-post-cont .ne-flex2 .ne-flx-cont {
        width: 100%;
    }
}



/*++++++++++++++++++++++++++
about
++++++++++++++++++++++++++*/

#about {
    width: 100%;
    margin: 50px auto 50px;
    padding: 0 0 0;
    text-align: left;
}

#taisho,#tokutyo,#aisatsu,#nagare {
    scroll-margin-top: 90px;
  }





#about .about_read {
    width: 95%;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 16px;
    line-height: 2.0em;
}

#about .etymology_wrap {
    background-color: #F8F8F8;
    padding: 20px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 700px;
    width: 95%;
    margin: 0 auto 100px;
}

#about .etymology_logoarea {
    width: 30%;
    margin: auto;
    text-align: center;
}

#about .etymology_logo {
    max-width: 190px;
    width: 95%;
    margin: 0 auto 0;
}

#about .etymology_txtarea {
    width: 60%;
    margin-bottom: 40px;
    text-align: left;
    font-size: 16px;
    margin: auto;
}


@media screen and (max-width: 600px) {
    #about .about_read {
        text-align: left;
    }

    #about .etymology_logoarea {
        width: 100%;
    }

    #about .etymology_txtarea {
        text-align: center;
        width: 100%;
        font-size: 14px;
    }

    #about .etymology_logo {
        margin: 0 auto 10px;
    }

    #about .etymology_lead {
        text-align: left;
        font-size: 16px;
    }
}

/*about_menu*/
#about .about_menu {
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    flex-direction: row;
    align-items: center;
    max-width: 900px;
    width: 95%;
    margin: 0 auto 100px;
}

#about .about_menu li {
    font-size: 18px;
    letter-spacing: 2px;
    color: #C1C1C1;
    width: auto;
    margin: 0 0 10px 0;
}

#about .about_menu a {
    font-size: 16px;
    padding: 10px 30px;
    background-color: #FFF5F2;
    text-align: center;
    border-radius: 10px;
    margin: 0 0 10px 0;
    display: inline-flex;
    /* インライン要素にflexを適用 */
    align-items: center;
    /* 縦中央揃え */
    justify-content: center;
    /* 横中央揃え (オプション) */
}

#about .about_menu a::after {
    content: url(../images/menu_icon.svg);
    margin-left: 8px;
    position: relative;
    top: 2px;
    /* 下げたい量を調整 */
}


@media screen and (max-width: 600px) {

    #about .about_menu {
        justify-content: flex-start;
        margin: 0 auto 50px;
    }

    #about .about_menu li {
        width: 100%;
    }

    #about .about_menu a {
        margin: 0 auto 10px 0;
        /* 左揃えに修正 */
        width: 48%;
        padding: 10px 0px;
    }

}



/*about_taisho*/


#about .about_taishowrap {
    display: flex;
    /* フレックスボックスを使用 */
    justify-content: center;
    /* 水平方向の中央 */
    align-items: center;
    /* 垂直方向の中央 */
    max-width: 800px;
    width: 95%;
    margin: 50px auto 100px;
    background-color: #FFF5F2;
    padding: 40px 20px;
}

#about .about_taishotxt {
    font-size: 16px;
    text-align: left;
    /* 左揃えを保つ */
    display: inline-block;
    /* 中央配置のために必要 */
}

#about .about_taishotxt p::before {
    content: "●";
    color: #ffa392;
}

@media screen and (max-width: 600px) {
    #about .about_taishowrap {
        padding: 20px 10px;
    }


}



/*shojo_title*/

#about .shojo_title {
    max-width: 1000px;
    width: 95%;
    margin: auto;
    font-size: 20px;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#about .shojo_title::before,
#about .shojo_title::after {
    content: "";
    position: absolute;
    border: 2px solid #D8D8D8;
    z-index: -1;
    /* これで他の要素の背面に表示 */
}

#about .shojo_title::before {
    max-width: 510px;
    width: 100%;
    min-height: 50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFFFFF;
}

#about .shojo_title::after {
    max-width: 480px;
    width: 95%;
    min-height: 60px;
    left: 50%;
    transform: translateX(-50%);
}

#about .shojo_title .text {
    background-color: #FFFFFF;
    position: relative;
    z-index: 10;
    /* 最前面に表示されるように設定 */
    padding: 0 10px;
}

#about .shojo_line {
    position: relative;
    max-width: 1000px;
    width: 95%;
    margin: 0 auto 100px;
    z-index: 1;
    /* shojo_line自体のz-indexはそのまま */
}

#about .shojo_line::before {
    content: "";
    position: absolute;
    border-bottom: #D8D8D8 2px solid;
    width: 100%;
    top: 50%;
    /* 縦方向の中央位置 */
    transform: translateY(-50%);
    /* 中央揃え */
    z-index: -1;
    /* shojo_line::afterを一番下に表示 */
}

@media screen and (max-width: 600px) {

    #about .shojo_title::before {
        min-height: 80px;
    }

    #about .shojo_title::after {
        min-height: 90px;
    }

}



/*shojo*/

#about .shojo_illustwrap {
    max-width: 900px;
    width: 95%;
    padding: 0 0 50px;
    margin: 0 auto 100px;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
    border-bottom: #D8D8D8 1px solid;

}

#about .shojo_illust {
    width: 32%;
    padding: 0 30px;
    margin: 0 0 10px;
}

#about .shojo_illust p {
    font-size: 18px;
    line-height: 1.8em;
    margin: 10px auto;
}

@media screen and (max-width: 600px) {

    #about .shojo_illust {
        width: 50%;
        padding: 0 10px;
    }

    #about .shojo_illust p {
        font-size: 16px;
    }

}



/*tokutyo*/

#about .tokutyo_flex {
    max-width: 1000px;
    width: 95%;
    padding: 0 0 0;
    margin: 50px auto 80px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

#about .tokutyo_title {
    width: 100%;
    padding: 0 0 10px;
    margin: 0 auto 30px;
    color: #E6012C;
    font-size: 22px;
    border-bottom: #D8D8D8 1px solid;
}

#about .tokutyo_programarea {
    width: 23%;
    padding: 0 10px;
    margin: 0 0 30px;
}

#about .tokutyo_programarea div {
    background-color: #FFF5F2;
    text-align: center;
    padding: 10px;
    margin: 0 auto 10px;
}

#about .tokutyo_programarea p {
    font-size: 15px;
    line-height: 2.3em;
    padding: 0 5px;
}

#about .tokutyo_arrow_pc {
    width: 2.6%;
    text-align: center;
    font-size: 13px;
    color: #FFC5B7;
    padding: 10px 0 0 0;
    display: block;
}

#about .tokutyo_arrow_sp {
    display: none;
}

#about .tokutyo_shisetu_img {
    width: 50%;
    text-align: center;
}

#about .tokutyo_shisetu_img .shisetsu_zu {
    max-width: 270px;
    width: 95%;
}

#about .tokutyo_shisetu_img .machine {
    max-width: 350px;
    width: 100%;
}

#about .tokutyo_shisetu_txtwrap {
    width: 50%;
    font-size: 16px;
    line-height: 2.5em;
}

@media screen and (max-width: 600px) {
    #about .tokutyo_programarea {
        width: 100%;
    }

    #about .tokutyo_shisetu_img {
        width: 100%;
    }

    #about .tokutyo_shisetu_txtwrap {
        width: 100%;
    }

    #about .tokutyo_arrow_pc {
        display: none;
    }

    #about .tokutyo_arrow_sp {
        text-align: center;
        font-size: 13px;
        color: #FFC5B7;
        padding: 0 0 0 0;
        display: block;
    }

}





/*aisatsu*/

#about .aisatsu_flex {
    max-width: 1000px;
    width: 95%;
    padding: 0 0 0;
    margin: 50px auto 100px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}


#about .aisatsu_img {
    width: 40%;
    text-align: center;
    margin-bottom: 20px;
}

#about .aisatsu_img img {
    max-width: 350px;
    width: 95%;
    border-radius: 10px;
}


#about .aisatsu_txtwrap {
    width: 55%;
    margin: 0 auto 20px;
}

#about .aisatsu_txt1 {
    font-size: 20px;
    margin: 10px auto;
}

#about .aisatsu_txt1 span {
    font-size: 18px;
    color: #E6012C;
    margin: 0 10px 0 0;
}

#about .aisatsu_txt2 {
    font-size: 22px;
    color: #E6012C;
    margin: 0 0 10px 0;
    line-height: 1.6em;
}

#about .aisatsu_txt3 {
    font-size: 16px;
    margin: 0 0 0 0;
    line-height: 2.0em;
}

@media screen and (max-width: 600px) {
    #about .aisatsu_img {
        width: 90%;
        text-align: center;
    }

    #about .aisatsu_txtwrap {
        width: 95%;
        margin: 0 auto 20px;
    }
}





/*nagare*/
#nagare {
    scroll-margin-top: 100px;
}

#about .nagare_flex {
    max-width: 1000px;
    width: 95%;
    padding: 0 0 0;
    margin: 50px auto 100px;
}


#about .nagare_wrap {
    max-width: 610px;
    width: 95%;
    padding: 0 0 0;
    margin: 0 auto 20px;
    border: #E6012C 2px solid;
    border-radius: 10px;
}

#about .nagare_title {
    width: 100%;
    padding: 10px;
    margin: 0 auto 0;
    border-radius: 8px 8px 0 0;
    text-align: center;
    background-color: #E6012C;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 500;
}

#about .nagare_txt {
    width: 100%;
    padding: 10px 20px;
    margin: 0 auto 0;
    text-align: left;
    font-size: 16px;
}

#about .flow_arrow {
    width: 24px;
    margin: 0 auto 20px;
}

#about .nagare_btn {
    max-width: 480px;
    width: 95%;
    padding: 15px;
    margin: 0 auto 20px;
    text-align: center;
    background-color: #E6012C;
    border-radius: 10px;
    color: #FFFFFF;
    font-size: 20px;
}

#about .nagare_attention {
    margin: 0 auto 0;
    text-align: center;
    font-size: 16px;
}


/*++++++++++++++++++++++++++
contact
++++++++++++++++++++++++++*/

#contact {
    width: 100%;
    margin: 50px auto 50px;
    padding: 0 0 0;
    text-align: left;
}

#contact .contact_read {
    margin: 0 auto 50px;
    width: 95%;
    text-align: center;
    font-size: 18px;
}

#contact .thanks_read {
    margin: 0 auto 0;
    text-align: center;
    font-size: 16px;
    padding: 20px 0 100px;
    width: 95%;
}

#contact .contact_flex {
    max-width: 1000px;
    width: 95%;
    margin: 0 auto 100px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

#contact .contact_telcontents {
    width: 48%;
    margin-bottom: 20px;
    text-align: center;
}

#contact .contact_telname {
    font-size: 23px;
    background-color: #FFF5F2;
    padding: 10px;
    margin-bottom: 30px;
}

#contact .contact_tel {
    font-size: 39px;
    color: #E6012C;
    font-weight: 500;
}

#contact .contact_tel span {
    font-size: 30px;
    font-weight: normal;
}


#contact .contact_formwrap {
    width: 100%;
    margin: 0 auto 0;
    padding: 100px 0;
    background-color: #F5F5F5;
}

#contact .contact_form {
    max-width: 800px;
    width: 95%;
    margin: 0 auto 20px;
}

#contact .contact_form a {
    text-decoration: underline;
}

#contact .contact_form ol {
    font-size: 16px;
    margin-bottom: 5px;
}

#contact .contact_form ol span {
    color: #E6012C;
    margin-left: 5px;
}


#contact a.privacy {
    color: #E6012C;
    text-decoration: underline;
}

@media screen and (max-width: 600px) {

    #contact .contact_telcontents {
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }

    #contact .contact_tel {
        font-size: 32px;
        color: #E6012C;
        font-weight: 500;
    }



}






.input {
    border: none;
}

.input input {
    width: 100%;
    height: 40px;
    border-radius: 3px;
    border: 1px solid #d6dde3;
    font-size: 16px;
}


.select {
    display: flex;
    flex-wrap: wrap;
}

.select select {
    width: auto;
    height: 40px;
    border-radius: 3px;
    border: 1px solid #d6dde3;
    font-size: 16px;
}

.textarea {
    border: none;
}

.textarea textarea {
    width: 100%;
    height: 150px;
    border-radius: 3px;
    border: 1px solid #d6dde3;
    font-size: 16px;
}


.checkbox {
    display: flex;
    flex-wrap: wrap;
    gap: .5em 2em;
    border: none;
}

.checkbox label {
    display: flex;
    align-items: center;
    gap: 0 .5em;
    position: relative;
    cursor: pointer;
}

.checkbox label::before {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    border: 1px solid #d6dde3;
    content: '';
    background-color: #FFFFFF;
}

.checkbox label:has(:checked)::after {
    position: absolute;
    top: 6px;
    left: 7px;
    transform: rotate(45deg);
    width: 6px;
    height: 12px;
    border: solid #E6012C;
    border-width: 0 3px 3px 0;
    content: '';
}

.checkbox input {
    display: none;
}




/*++++++++++++++++++++++++++
フッター
++++++++++++++++++++++++++*/
footer {
    width: 100%;
}


/*++++++++++++++++++++++++++
footer_wrap
++++++++++++++++++++++++++*/
#footer_wrap {
    max-width: 900px;
    width: 95%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 auto 30px;
}

#footer_wrap article {
    width: 23%;
    padding: 0 0 15px;
}

#footer_wrap .footer_logo {
    max-width: 180px;
    width: 100%;
}

#footer_wrap .footer_access {
    font-size: 14px;
    line-height: 1.8em;
    margin: 0 10px 8px 0;
    padding: 0 0 8px;
    position: relative; /* 疑似要素の配置に必要 */
}

#footer_wrap .footer_access:not(:last-child)::after {
    content: "";
    display: block;
    width: 90%; /* 幅を90%に設定 */
    height: 1px;
    background-color: #DDDDDD;
    position: absolute;
    bottom: 0;
    left: 0; /* 左右均等に配置するため */
}

#footer_wrap .footer_access_branch {
    font-size: 16px;
    color: #E6012C;
    margin: 0 0 5px;
    padding: 0 0 0 0;
}

#footer_wrap .footer_access_branch a {
    color: #E6012C;
}

#footer_wrap .footer_linklist {
    font-size: 14px;
    line-height: 1.8em;
    margin: 0 0 8px;
    display: block;
}

#footer_wrap .footer_linklist span {
    font-size: 13px;
    line-height: 1.5em;
    display: block;
}

#footer_wrap .footer_banner {
    display: table;
    max-width: 230px;
    width: 100%;
    text-align: center;
    margin: 0 auto auto;
}

/*
#footer_wrap .banner {
    display: table;
    max-width: 200px;
    height: 60px;
    width: 100%;
    font-size: 15px;
    line-height: 1.5em;
    text-align: center;
    background-color: #679670;
    color: #FFFFFF;
    position: relative;
    margin: 0 auto;
}

#footer_wrap .banner span {
    display: table-cell;
    vertical-align: middle;
}

#footer_wrap .banner::after {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-top: 10px solid #FFFFFF;
    transform: rotate(90deg);
}
*/


.copyright {
    font-size: 14px;
    line-height: 1.8em;
    text-align: center;
    padding: 20px 0;
    border-top: #E6012C 6px solid;
}


@media screen and (max-width: 600px) {

    #footer_wrap article {
        width: 95%;
        margin: auto;
    }

}



/*--------------------------------------
    h1.title
---------------------------------------*/

#se_maintitle {
    width: 100%;
    min-height: 175px;
    text-align: center;
    position: relative;
    display: table;
    background: rgb(255, 140, 119);
    background: linear-gradient(90deg, rgba(255, 140, 119, 1) 27%, rgba(245, 25, 66, 1) 70%);
}

#se_maintitle h1 {
    font-size: 28px;
    display: table-cell;
    vertical-align: middle;
    color: #FFFFFF;
    line-height: 1em;
    position: relative;
}

#se_maintitle h1 span {
    display: block;
    font-size: 14px;
}

#se_maintitle h1::before {
    content: "";
    background-image: url(../images/se_photoleft.png?1);
    background-position: top left;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-size: 318px 175px;
    width: 318px;
    height: 175px;
}

#se_maintitle h1::after {
    content: "";
    background-image: url(../images/se_photoright.png?1);
    background-position: top right;
    background-repeat: no-repeat;
    position: absolute;
    background-size: 318px 175px;
    top: 0;
    right: 0;
    z-index: 1;
    width: 318px;
    height: 175px;
}

@media screen and (max-width: 800px) {

    #se_maintitle {
        min-height: 130px;
    }

    #se_maintitle h1::before {
        display: none;
    }

    #se_maintitle h1::after {
        display: none;
    }

    #se_maintitle h1 {
        font-size: 25px;
    }

}



/*--------------------------------------
    h1.shisetutitle
---------------------------------------*/

#shisetutitle {
    width: 100%;
    min-height: 175px;
    text-align: center;
    position: relative;
    display: table;
    background: #FFF5F2;
}

#shisetutitle h1 {
    font-size: 30px;
    display: table-cell;
    vertical-align: middle;
    color: #E6012C;
    line-height: 1.0em;
    position: relative;
}

#shisetutitle h1 span {
    display: block;
    width: 48px;
    height: auto;
    margin: 0 auto 5px;

}


/*--------------------------------------
    pankuzulist
---------------------------------------*/

#pankuzulist {
    max-width: 1000px;
    width: 95%;
    margin: 20px auto;
    font-size: 12px;
}

#pankuzulist ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

#pankuzulist ul li {
    margin: 0 5px 0 0;
}

#pankuzulist ul li::after {
    content: ">>";
    margin: 0 0 0 5px;
}




/*++++++++++++++++++++++++++
facility
++++++++++++++++++++++++++*/

#facility {
    width: 100%;
    margin: 50px auto 100px;
}

#facility .facility_wrap {
    max-width: 1000px;
    width: 95%;
    margin: 0 auto 50px;
    padding: 50px;
    text-align: left;
    background-color: #F5F5F5;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

#facility .facility_photo {
    width: 45%;
    margin: 0 auto 0;
}

#facility .facility_photo img {
    border-radius: 20px;
}


#facility .facility_txt {
    width: 45%;
    margin: 0 auto 0;
    padding: 20px 0;
}

#facility .facility_name {
    font-size: 28px;
    margin: 0 auto 30px;
    padding: 0 0 20px;
    border-bottom: #c1c1c1 1px solid;
}

#facility .facility_access {
    font-size: 16px;
    margin: 0 auto 10px;
}

#facility .facility_tel {
    font-size: 16px;
    margin: 0 auto 40px;
}

@media screen and (max-width: 600px) {

    #facility .facility_wrap {
        padding: 30px;
    }

    #facility .facility_txt {
        width: 100%;
        margin: 0 auto 0;
        padding: 20px 0;
    }

    #facility .facility_name {
        font-size: 25px;
    }

    #facility .facility_photo {
        width: 100%;
        margin: 0 auto 0;
    }

}

/*++++++++++
facility_se
++++++++++++++*/


#facility_se {
    width: 100%;
    margin: 0 auto 100px;
}

#facility_se .facility_photolibrary {
    max-width: 1000px;
    width: 95%;
    margin: 0 auto 100px;
    padding: 0px;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

#facility_se .facility_photo {
    width: 45%;
    margin: 0 auto 0;
}

#facility_se .facility_photo img {
    border-radius: 20px;
}


#facility_se .facility_gaiyo {
    max-width: 1000px;
    width: 95%;
    margin: 0 auto 100px;
    padding: 0px;
    border-radius: 20px;
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

#facility_se .map_wrap {
    width: 50%;
}

#facility_se .facility_map {
    position: relative;
    max-width: 800px;
    width: 100%;
    aspect-ratio: 16 / 10;
    margin: 0 auto 0;
}

/* Google Mapのiframe */
#facility_se .facility_map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


#facility_se .facility_txtarea {
    width: 50%;
    padding: 0 20px;
}

#facility_se .facility_txtarea ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid #DBDBDB;
}

#facility_se .facility_txtarea ul:last-child {
    border-bottom: 1px solid #DBDBDB;
    border-top: 1px solid #DBDBDB;
}


#facility_se .facility_txt1 {
    width: 30%;
    padding: 12px;
    font-size: 15px;
    font-weight: 500;
}

#facility_se .facility_txt2 {
    width: 70%;
    padding: 12px;
    font-size: 15px;
}


#facility_se .facility_contents {
    max-width: 1000px;
    width: 95%;
    margin: 0 auto 80px;
    padding: 0px;
}

#facility_se .facility_table {
    width: 100%;
    margin: 0 auto 80px;
    padding: 0px;
    border-top: #c1c1c1 solid 1px;
    border-left: #c1c1c1 solid 1px;
    border-collapse: collapse;
    /* 交差部分の隙間をなくす */
}

#facility_se .facility_table th,
#facility_se .facility_table td {
    border-bottom: #c1c1c1 solid 1px;
    border-right: #c1c1c1 solid 1px;
    margin: 0;
    text-align: center;
    padding: 10px;
    width: 11%;
    font-size: 16px;
}

#facility_se .facility_table th:first-child,
#facility_se .facility_table td:first-child {
    width: 23%;
}

#facility_se .facility_table th {
    background-color: #E6012C;
    color: #FFFFFF;
}

/* ●が選ばれた場合に赤くする */
.red-dot {
    color: #ffa392;
    /* 赤色 */
}

/* ─が選ばれた場合に黒くする */
.dash {
    color: black;
    /* 黒色 */
}



#facility_se .facility_contents_txt1 {
    font-size: 20px;
}

#facility_se .facility_contents_flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}


#facility_se .facility_pricewrap {
    width: 48%;
    border: 1px #CBCBCB solid;
    padding: 40px;
    text-align: center;
    display: block;
}

#facility_se .facility_pricewrap p {
    font-size: 20px;
    margin: 0 auto 30px;
}

#facility_se .facility_service ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    border: #c1c1c1 solid 1px;
    margin: -1px auto 0;
}

#facility_se .facility_service li {
    width: 20%;
    text-align: center;
    padding: 10px 5px;
}

#facility_se .facility_service ol {
    width: 80%;
    text-align: left;
    padding: 10px 20px;
    border-left: #c1c1c1 solid 1px;
}

#facility_se .facility_service ul:first-child {
    background-color: #E6012C;
    font-weight: 500;
    color: #FFFFFF;
}

#facility_se .facility_service .center {
    text-align: center;
}

#facility_se .pdf_file {
    display: block;
    width: 47%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #CECECE;
    padding: 0 0 20px;
    margin-bottom: 30px;
}

#facility_se .pdf_name {
    text-align: left;
    margin: 0 0 10px;
}


@media screen and (max-width: 600px) {
    #facility_se .map_wrap {
        width: 100%;
    }

    #facility_se .facility_txtarea {
        width: 100%;
        padding: 0 0 30px;
    }

    #facility_se .facility_table th,
    #facility_se .facility_table td {
        padding: 5px 3px;
        width: 11%;
        font-size: 13px;
    }

    #facility_se .facility_pricewrap {
        width: 100%;
        padding: 40px;
        margin-bottom: 20px;
    }

    #facility_se .pdf_file {
        width: 100%;
    }

}






/*++++++++++++++++++++++++++
dailyschedule
++++++++++++++++++++++++++*/

#dailyschedule {
    width: 100%;
    margin: 50px auto 50px;
    padding: 0 0 0;
    text-align: left;
}


/*dailyschedule_menu*/
#dailyschedule .dailyschedule_menu {
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    max-width: 900px;
    width: 95%;
    margin: 0 auto 100px;
}

#dailyschedule .dailyschedule_menu li {
    font-size: 18px;
    letter-spacing: 2px;
    color: #C1C1C1;
    width: auto;
    margin: 0 10px 10px 10px;
}

#dailyschedule .dailyschedule_menu a {
    font-size: 16px;
    padding: 10px 30px;
    background-color: #FFF5F2;
    text-align: center;
    border-radius: 10px;
    margin: 0 10px 10px 10px;
    display: inline-flex;
    /* インライン要素にflexを適用 */
    align-items: center;
    /* 縦中央揃え */
    justify-content: center;
    /* 横中央揃え (オプション) */
}

#dailyschedule .dailyschedule_menu a::after {
    content: url(../images/menu_icon.svg);
    margin-left: 8px;
    position: relative;
    top: 2px;
    /* 下げたい量を調整 */
}


@media screen and (max-width: 600px) {

    #dailyschedule .dailyschedule_menu {
        margin: 0 auto 50px;
    }

    #dailyschedule .dailyschedule_menu {
        justify-content: flex-start;
    }

    #dailyschedule .dailyschedule_menu li {
        width: 100%;
    }

    #dailyschedule .dailyschedule_menu a {
        margin: 0 auto 10px 0;
        /* 左揃えに修正 */
        width: 48%;
        padding: 10px 0px;
    }

}


/*dailyschedule_wrap*/
#dailyschedule .dailyschedule_wrap {
    max-width: 1000px;
    width: 95%;
    margin: 0 auto 0;
    padding: 40px;
    border-radius: 10px;
    border: #E6012C solid 4px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}



#dailyschedule .dailyschedule_txtarea {
    width: 60%;
    margin: 0 0 0;
    padding: 0px;
}

#dailyschedule .dailyschedule_photo {
    width: 35%;
    margin: 0 0 auto;
    padding: 0px;
    text-align: center;
}


#dailyschedule .dailyschedule_txt1 {
    font-size: 28px;
    line-height: 1.3em;
    font-weight: 500;
    margin: 0 0 30px 0;
    color: #E6012C;
}

#dailyschedule .dailyschedule_txt1 span {
    font-size: 22px;
    margin: 0 0 0 10px;
}

#dailyschedule .dailyschedule_txt2 {
    font-size: 16px;
    line-height: 2.0em;
}

#dailyschedule .dailyschedule_txt3 {
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 30px 0;
    color: #E6012C;
}

#dailyschedule .dailyschedule_txt3 em {
    font-size: 20px;
    margin: 0 10px 0 0;
    color: #FFFFFF;
    background-color: #E6012C;
    padding: 5px;
    width: 40px;
    display: inline-block;
    text-align: center;
}

#dailyschedule .dailyschedule_txt3 span {
    font-size: 20px;
    margin: 0 0 0 10px;
}

#dailyschedule .flow_arrow {
    width: 24px;
    margin: 20px auto 20px;
}

#dailyschedule .verticalline_wrap {
    position: relative;
    max-width: 1000px;
    width: 95%;
    height: 100px;
    margin: 0 auto;
}

#dailyschedule .verticalline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-left: #E6012C 4px solid;
    height: 100px;
}

#dailyschedule .dailyschedule_redarea {
    max-width: 1000px;
    width: 100%;
    padding: 30px;
    margin: 50px auto 0;
    background-color: #FFF5F2;
    text-align: center;
    border-radius: 10px;
}

#dailyschedule .dailyschedule_redareatxt1 {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3em;
    color: #E6012C;
    margin: 0 0 10px;
}

#dailyschedule .dailyschedule_redareatxt2 {
    font-size: 16px;
    line-height: 1.8em;
}

@media screen and (max-width: 600px) {

    #dailyschedule .dailyschedule_wrap {
        padding: 25px;
    }

    #dailyschedule .dailyschedule_txtarea {
        width: 100%;
        margin: 0 0 40px;
    }

    #dailyschedule .dailyschedule_photo {
        width: 100%;
    }

    #dailyschedule .dailyschedule_txt3 em {
        margin: 0 10px 10px 0;
        display: block;
    }

}




/*equipment_wrap*/

#equipment {
    scroll-margin-top: 100px;
}

#dailyschedule .equipment_wrap {
    max-width: 1000px;
    width: 95%;
    margin: 100px auto 100px;
    padding: 40px 6%;
    border-radius: 10px;
    background-color: #F5F5F5;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    flex-direction: row;
    align-items: stretch;
}

#dailyschedule .equipment_title {
    width: 95%;
    color: #FFFFFF;
    background-color: #E6012C;
    margin: 0 auto 20px;
    padding: 10px 15px;
    border-radius: 100vh;
    text-align: center;
    font-size: 22px;
}

#dailyschedule .equipment_txt {
    width: 95%;
    font-size: 16px;
    line-height: 2.0em;
    margin: 0 auto 30px;
    padding: 0;
}


#dailyschedule .equipment_photo {
    width: 50%;
    font-size: 16px;
    line-height: 2.0em;
    margin: 0 auto 30px;
    padding: 0;
    text-align: center;
}

#dailyschedule .equipment_photo img {
    max-width: 240px;
    width: 95%;
}

#dailyschedule .equipment_photo p {
    font-size: 14px;
}

@media screen and (max-width: 600px) {

    #dailyschedule .equipment_wrap {
        padding: 20px 4%;
    }

}





/*++++++++++
pagenation
++++++++++++++*/


.wp-pagenavi {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 80px;
}

.wp-pagenavi span.current {
    display: block;
    font-size: 17px;
    line-height: 1.4em;
    font-weight: 600;
    text-align: center;
    color: #FFFFFF;
    margin: auto 15px;
    background-color: #E6012C;
    width: 40px;
    height: 40px;
    padding: 7px 0 0 0;
}

.wp-pagenavi a.page {
    display: block;
    font-size: 17px;
    line-height: 1.4em;
    font-weight: 600;
    text-align: center;
    color: #c1c1c1;
    margin: auto 15px;
    background-color: #F2F2F2;
    width: 40px;
    height: 40px;
    padding: 7px 0 0 0;
}

.wp-pagenavi .nextpostslink {
    position: relative;
    color: transparent;
    /* テキストの色を透明にする */
    font-size: 0;
    /* テキストを見えなくする */
}

.wp-pagenavi .nextpostslink::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: 10px;
    height: 10px;
    border-top: solid 2px #E6012C;
    border-right: solid 2px #E6012C;
    transform: rotate(45deg);
}

.wp-pagenavi .previouspostslink {
    position: relative;
    color: transparent;
    /* テキストの色を透明にする */
    font-size: 0;
    /* テキストを見えなくする */
}

.wp-pagenavi .previouspostslink::before {
    content: '';
    position: absolute;
    top: 15px;
    right: 0;
    width: 10px;
    height: 10px;
    border-bottom: solid 2px #E6012C;
    border-left: solid 2px #E6012C;
    transform: rotate(45deg);
}






/*--------------------------------------
    pagetop
---------------------------------------*/
#btn_top {
    position: fixed;
    right: 10px;
    z-index: 10;
    text-decoration: none;
    color: #FFFFFF;
    text-align: center;
    display: block;
    width: 40px;
    font-size: 13px;
    overflow: auto;
}


#btn_top a:hover {
    text-decoration: none;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
}




/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
    transition: 0.8s ease-in-out;
    transform: translateY(30px);
    opacity: 0;
}

.scroll_up.on {
    transform: translateY(0);
    opacity: 1.0;
}

.timing02 {
    transition-delay: .2s;
}

.timing03 {
    transition-delay: .4s;
}

.timing04 {
    transition-delay: .6s;
}

.timing05 {
    transition-delay: .8s;
}