@import url('_common.css');

/* top画面用 */

#metaslider_127
{
    max-height: 600px;
    /*overflow: hidden;*/
}

.top_img
{
    margin-top: 90px;

    @media screen and (max-width: 960px)
    {
        margin-top: 60px;
    }
}

.background
{
    position: absolute;
    width: 100%;
    height: 29%;;
    background: linear-gradient(to left top, #D8EEE4, #E5E2FF); /*仮*/
    margin-top: 216px;

    @media screen and (max-width: 767px)
    {
        margin-top: 146px;
    }
}

.information
{
    width: 100%;
    margin: 60px auto;

    .title
    {
        position: relative;
        width: 90%;
        max-width: 1024px;
        padding: 10px;
        margin: 0 auto;

        .back
        {
            font-size: 52px;
            font-weight: bold;
            color: #EEEEEE;
            width: 30%;
        }

        .front
        {
            font-size: 35px;
            position: absolute;
            bottom: -5px;
            font-weight: 800;
        }
    }

    .information-list
    {
        position: relative;
        width: 90%;
        max-height: 325px;
        overflow: auto;
        max-width: 1024px;
        border-radius: 10px;
        margin: 40px auto;
        padding: 10px;
        list-style: none;
        box-shadow: 0 0 3px gray;
        background-color: #FFFFFF;

        .news
        {
            display: flex;
            align-items: center;
            border-bottom: solid 1px #EEEEEE;
            padding: 10px 0;
            margin: 0 7%;

            &:last-child
            {
                border-bottom: unset;
            }

            .date
            {
                color: #C4C4C4;
            }

            .title
            {
                margin-left: 30px;

                a
                {
                    color: #2A90A6;
                    opacity: 1;
                    transition: 0.2s;

                    &:hover
                    {
                        opacity: 0.5;
                        transition: 0.2s;
                    }
                }
            }
        }
    }
}

.search
{
    width: 90%;
    margin: 90px auto;

    .title
    {
        position: relative;
        max-width: 1024px;
        padding: 10px;
        margin: 0 auto;

        .back
        {
            font-size: 52px;
            font-weight: bold;
            color: #EEEEEE;
        }

        .front
        {
            font-size: 35px;
            position: absolute;
            bottom: -5px;
            font-weight: 800;
        }
    }

    .retrieval_method
    {
        width: 100%;
        max-width: 1024px;
        margin: 10px auto;

        .search_form
        {
            display: block;

            .search_purpuse
            {
                display: flex;
                justify-content: space-between;
                width: 100%;
                margin-top: 40px;

                .search_content
                {
                    display: flex;
                    border-radius: 10px;
                    margin:0 10px 10px 0;
                    width: 48%;
                    box-shadow: 0 6px 10px #DDDDDD;
                    text-decoration: none;
                    color: #000;
                    opacity: 1;
                    transition: .2s;

                    &:hover
                    {
                        opacity: 0.5;
                        transition: .2s;
                    }

                    .text
                    {
                        display: block;
                        padding: 20px;
                        align-self: center;
                        width: 65%;

                        p
                        {
                            font-size: 25px;
                            font-weight: 800;
                            line-height: 1.3;
                            position: relative;
                        }

                        p:last-child
                        {
                            font-size: 18px;
                            font-weight: 600;
                            text-align: right;
                        }
                    }

                    .search_img
                    {
                        width: 40%;
                        height: 100%;
                        text-align: center;
                        border-radius: 0 10px 10px 0;
																					overflow: hidden;

                        img
                        {
                            /*border-radius: 0 10px 10px 0;*/
                            width: 100%;
                            height: 100%;
																									object-fit: cover;
                        
                        }
                    }
                }

                .search_content:last-child
                {
                    margin-right: 0;
                }
            }
        }

        .search_keyword
        {
            width: 100%;
            height: 150px;
            margin: 40px auto;
            box-shadow: 0 6px 15px #DDDDDD;
            border-radius: 10px;
            padding-bottom: 20px;

            .title
            {
                padding: 15px;

                p
                {
                    padding-bottom: 15px;
                    font-size: 25px;
                    font-weight: 800;
                    line-height: 1.3;
                    border-bottom: solid 4px #339999;
                }
            }

            .search_box
            {
                width: 95%;
                display: flex;
                align-self: center;
                margin: 10px auto;

                .form
                {
                    align-self: center;
                    width: 30%;
                    margin-right: 4%;

                    .box
                    {
                        border-radius: 25px;
                        width: 100%;
                        padding: 10px;
                    }
                }

                .search_pc
                {
                    cursor: pointer;

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

                .search_sp
                {
                    display: none;
                    background-image: url("../img/_common_/search.png");
                    background-size: cover;
                    background-repeat: no-repeat;
                    background-position: center;
                    background-color: transparent;
                    border: none;
                    margin-top: 2px;
                    margin-left: 5%;
                    width: 35px;
                    height: 35px;
                    cursor: pointer;
                    opacity: 1;
                    transition: .2s;

                    @media screen and (max-width: 767px)
                    {
                        display: block;
                    }

                    &:hover
                    {
                        opacity: 0.5;
                        transition: .2s;
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 767px)
{
    .information
    {
        margin: 30px auto;

        .title
        {
            .back
            {
                font-size: 32px;
            }

            .front
            {
                font-size: 25px;
            }
        }

        .information-list
        {
            width: 82.5%;
            margin: 30px auto;

            .news
            {
                flex-direction: column;
                margin: 0;

                .date
                {
                    width: 100%;
                }

                .title
                {
                    width: 100%;
                    margin: 0;
                    padding: 0 10px;
                }
            }

            .whatsnew
            {
                h3
                {
                    display: block;
                    font-size: 4vw;
                    font-weight: 800;
                    text-align: center;
                }
            }
        }
    }

    .search
    {
        margin: 60px auto;

        .title
        {
            padding: 0;

            .back
            {
                font-size: 32px;
            }

            .front
            {
                bottom: -15px;
                font-size: 25px;
            }
        }
    
        .retrieval_method
        {
            .search_form
            {
                .search_purpuse
                {
                    display: block;

                    .search_content
                    {
                        width: 100%;
                        height: 100px;
                        margin: 20px auto;

                        .text
                        {
                            padding: 10px;

                            p
                            {
                                font-size: 22px;
                                text-align: center;
                            }

                            p:last-child
                            {
                                font-size: 17px;
                                padding: 0 15px 0 0;
                            }

                        }

                        .search_img
                        {
                            width: 40%;
                            height: 100%;
                            text-align: center;
                            border-radius: 0 10px 10px 0;
                            background-position: 50% 50%;

                            img
                            {
                                border-radius: 0 10px 10px 0;
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                            }
                        }
                    }
                }

                .search_keyword
                {
                    .title
                    {
                        padding: 20px;

                        p
                        {
                            font-size: 20px;
                        }
                    }

                    .search_box
                    {
                        width: 100%;
                        margin: 10px 20px;

                        .form
                        {
                            width: 60%;

                            .box
                            {
                                width: 100%;
                            }
                        }

                        .btn
                        {
                            width: 20%;
                            padding: 12px;
                            font-size: 15px;
                            margin: 0 0 0 30px;
                        }
                    }
                }
            }
        }
    }
}

.metaslider .caption-wrap {
	background: none !important;
	opacity: 1 !important;
}
.metaslider .caption-wrap .caption {
	font-size: 1.3em;
	line-height: 1.3;
	color: #5e5e5e;
	font-family: serif;
	text-shadow: 
		1px 1px 2px rgba(248,243,222,.8),
		-1px 1px 2px rgba(248,243,222,.8),
		1px -1px 2px rgba(248,243,222,.8),
		-1px -1px 2px rgba(248,243,222,.8);
}
@media screen and (min-width: 768px) {
	.metaslider .caption-wrap .caption {
		font-size: 40px;
	}
}
@media screen and (min-width: 1000px) {
	.metaslider .caption-wrap .caption {
		font-size: 50px;
	}
}

.flex-control-paging li a {
	background: #dbdbdb !important;
}
.flex-control-paging li a.flex-active {
		background: #2A90A5 !important;
}