@charset "utf-8";

/*
Theme Name: speedfestival-2
Theme URI: http://speedfestival.jp/
Description: http://speedfestival.jp/
Author: http://speedfestival.jp/
*/

/* import */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');
@import url('https://use.fontawesome.com/releases/v5.15.1/css/all.css');
@import "reset.css?20230610";
@import "world.css?20230610";
@import "headerfooter.css?20230610";
@import "jquery.bxslider.css?20230610";
@import url("sp.css?20230610") screen and (max-width: 720px);
@import url("spmenu.css?20230610") screen and (max-width: 720px);



/* search */
#src{
	position: absolute;
	right: 0;
	bottom: 0;
	box-sizing: border-box;
}

.searchform {
	display: table;
	position: relative;
}

.searchform_button:hover {
	cursor: pointer;
}

.searchform_check {
	display: none;
}

.searchform_popup {
	position: absolute;
	bottom: 0;
	left: 0;
	transform: translateX(-105%);
	width: 20em;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: bottom 0.5s, opacity 0.5s;
}
.searchform_check:checked + .searchform_popup {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.searchform_popup form{
	display: flex;
	justify-content: space-between;
	width: 100%;
	box-sizing: border-box;
}

.searchform_popup input{
    box-sizing: border-box;
}
.searchform_popup input[type="text"] {
	padding: 0.5em 1em;
	width: 100%;
	box-sizing: border-box;
	background: #f1f1f1;
}
.searchform_popup input[type="submit"] {
	padding: 0.5em;
	width: calc(20% - 10px);
	box-sizing: border-box;
	border: solid 1px #000;
}


.magnifying_glass {
    display: inline-block;
    position: relative;
    width: 1em;
    height: 1em;
    color: #000;
    font-size: 24px;
	box-sizing: border-box;
}
.magnifying_glass::before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 0.7em;
    height: 0.7em;
    box-sizing: border-box;
    border: 0.15em solid currentColor;
    border-radius: 50%;
    background-color: #fff;
    content: "";
}
.magnifying_glass::after {
    position: absolute;
    top: 0px;
    left: 50%;
    z-index: -1;
    transform: rotate(-45deg);
    width: 0.15em;
    height: 1em;
    background-color: currentColor;
    content: "";
}



