.search-Form_Item {
    position: relative;
    padding-top: 13px;
    padding-bottom: 25px;
}

.search-Form_Item:not(:first-child) {
    padding-top: 25px;
}

.search-Form_Item:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 0;
    right: -5.334vw;
    left: -5.334vw;
    border-top: 7px solid #fff;
}

@media only screen and (min-width: 769px) {
    .search-Form_Item {
        padding-top: 43px;
        padding-bottom: 50px;
    }

    .search-Form_Item:not(:first-child) {
        padding-top: 50px;
    }

    .search-Form_Item:not(:first-child)::before {
        right: calc(50% - (50vw - 305px / 2));
        left: calc(50% - (50vw - 305px / 2));
    }
}

.search-Form_Heading {
    margin: 0;
    font-size: 1.25rem;
    letter-spacing: .05em;
}

@media only screen and (min-width: 769px) {
    .search-Form_Heading {
        font-size: 1.8rem;
    }
}

.search-Form_List {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    list-style: none;
}

.search-Form_List li {
    flex-basis: calc(100% / 2 - 5px);
    margin-top: 10px;
}

@media only screen and (min-width: 769px) {
    .search-Form_List li {
        flex-basis: calc(100% / 2 - 10px);
        margin-top: 20px;
    }
}

.search-Form_Input {
    position: absolute;
    opacity: 0;
}

.search-Form_Input+label {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 45px;
    padding: 5px 20px 5px 35px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #fff;
    color: #161a38;
    font-size: 1.5rem;
    cursor: pointer;
    letter-spacing: .3em;
    text-align: center;
    transition: .2s;
}

.search-Form_Input:checked+label .search-Form_InputIcon::before,
.search-Form_Input:checked+label .search-Form_InputIcon::after,
.search-Form_Input:checked+label .search-Form_InputIcon>span::before,
.search-Form_Input:checked+label .search-Form_InputIcon>span::after {
    border-top-color: #0d6ccc;
    border-bottom-color: #0d6ccc;
    background-color: #0d6ccc;
}

.search-Form_InputIcon {
    position: absolute;
    top: 50%;
    left: 16px;
    width: 14px;
    height: 14px;
    transform: translateY(-50%);
}

.search-Form_InputIcon::before,
.search-Form_InputIcon::after,
.search-Form_InputIcon>span::before,
.search-Form_InputIcon>span::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 43.182%;
    height: 100%;
    margin: auto;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    transition: border .2s;
}

.search-Form_InputIcon::before {
    transform: rotate(22.5deg);
}

.search-Form_InputIcon::after {
    transform: rotate(67.5deg);
}

.search-Form_InputIcon>span::before {
    transform: rotate(112.5deg);
}

.search-Form_InputIcon>span::after {
    transform: rotate(157.5deg);
}

.search-Form_SetItem .search-Form_Input+label {
    padding-right: 10px;
    padding-left: 30px;
    letter-spacing: normal;
}

.search-Form_SetItem .search-Form_InputIcon {
    left: 12px;
}

@media only screen and (min-width: 769px) {
    .search-Form_Input+label {
        height: 60px;
    }

    .search-Form_Input+label:hover {
        color: #0d6ccc;
    }

    .search-Form_InputIcon {
        width: 22.4px;
        height: 22.4px;
    }
}

.search-Form_ListPeriod {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 10px;
}

.search-Form_ListPeriod::before {
    content: "〜";
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 1.4rem;
    letter-spacing: normal;
    transform: translate(-50%, -50%);
}

.search-Form_ListPeriod_Item {
    display: flex;
    justify-content: space-between;
    flex-basis: calc(100% / 2 - 10px);
}

.search-Form_Select {
    position: relative;
    flex: 1 1 0;
}

.search-Form_Select::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    width: 11px;
    height: 7px;
    background: url(../../common/images/ic_arrow_down.svg) no-repeat;
    background-size: cover;
    transform: translateY(-50%);
    pointer-events: none;
}

.search-Form_Select:first-child {
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: calc(55% - 5px);
    margin-right: 5px;
}

.search-Form_Select.-en {
    flex-basis: 100%;
}

.search-Form_Select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 45px;
    padding-right: 25px;
    padding-left: 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #fff;
    line-height: 45px;
    text-indent: .01px;
}

.search-Form_Select select::-ms-expand {
    display: none;
}

@media only screen and (min-width: 769px) {
    .search-Form_Select select {
        height: 60px;
        font-size: 1.6rem;
        line-height: 60px;
    }
}

@media only screen and (max-width: 374px) {
    .search-Form_Select select {
        padding-right: 20px;
        padding-left: 5px;
    }
}

.search-Form_SetBtn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 45px;
    padding: 5px 50px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #fff;
    color: #161a38;
    font-size: 1.5rem;
    cursor: pointer;
    text-align: center;
    transition: .2s;
}

.search-Form_SetBtn.is-active {
    border-radius: 3px 3px 0 0;
}

.search-Form_SetBtn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 17px;
    height: 17px;
    background: url(../../common/images/ic_arrow_search.png) no-repeat;
    background-size: cover;
    transform: translateY(-50%) rotate(180deg);
    pointer-events: none;
}

.search-Form_SetBtn.is-active::after {
    transform: translateY(-50%);
}

@media only screen and (min-width: 769px) {
    .search-Form_SetBtn {
        height: 60px;
    }

    .search-Form_SetBtn:hover {
        color: #0d6ccc;
    }
}

.search-Form_SetDetail {
    display: none;
    border: 1px solid #ddd;
    border-top: 0;
    border-radius: 0 0 3px 3px;
    background-color: rgba(213, 213, 213, .4);
}

@media only screen and (min-width: 769px) {
    .search-Form_SetDetail {
        display: block;
    }
}

.search-Form_SetItem {
    padding: 15px 25px;
}

.search-Form_SetItem:not(:first-child) {
    border-top: 1px solid #ddd;
}

@media only screen and (min-width: 769px) {
    .search-Form_SetItem {
        padding: 25px 30px;
    }
}

@media only screen and (max-width: 374px) {
    .search-Form_SetItem {
        padding: 10px;
    }
}

.search-Form_SetItem select {
    width: 100%;
    margin-top: 15px;
}

.search-Form_Footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: -5.334vw;
    margin-left: -5.334vw;
    padding: 15px 5.334vw;
    background-color: #fff;
}

@media only screen and (min-width: 769px) {
    .search-Form_Footer {
        margin-right: calc(50% - (50vw - 305px / 2));
        margin-left: calc(50% - (50vw - 305px / 2));
        padding: 30px calc((50vw - 305px / 2) - 50%);
    }
}

@media only screen and (max-width: 768px) {
    .search-Form_Footer.fixed {
        position: fixed;
        bottom: 0;
        left: 0;
        margin: 0;
        width: 100%;
        z-index: 1000;
    }
}

@media only screen and (min-width: 769px) {
    .search-Form_Footer--Wrapper {
        height: auto;
    }
}

@media only screen and (max-width: 768px) {
    .search-Form_Footer--Wrapper {
        height: 15vh;
    }
}

.search-Form_Results {
    position: relative;
    display: flex;
    align-items: center;
    flex-basis: 135px;
    margin-right: 15px;
    color: #909090;
}

.search-Form_Results dt {
    font-size: 1.1rem;
    font-weight: bold;
}

.search-Form_Results dd {
    flex: 1 1 0;
    margin: 0 0 0 10px;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
}

@media only screen and (min-width: 769px) {
    .search-Form_Results {
        flex-basis: 180px;
    }

    .search-Form_Results dt {
        font-size: 1.3rem;
    }

    .search-Form_Results dd {
        font-size: 2rem;
    }
}

.search-Form_Btn {
    flex: 1 1 0;
}

.search-Form_Btn button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 55px;
    padding: 5px 10px;
    border: 0;
    border-radius: 0;
    background-color: #161a38;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    transition: .2s;
}

@media only screen and (min-width: 769px) {
    .search-Form_Btn button {
        font-size: 1.6rem;
    }
}

.search-Form_Btn button:disabled {
    opacity: 0.3;
}

.search-Form_Reset {
    text-align: center;
}

.search-Form_Reset input {
    display: inline-block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin-top: 15px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background-color: transparent;
    color: #0d6ccc;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
}

@media only screen and (min-width: 769px) {
    .search-Form_Reset {
        margin-top: 30px;
    }

    .search-Form_Reset input {
        font-size: 1.3rem;
    }
}

/* result */
.results-SectionHeader {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #161a38;
}

@media only screen and (min-width: 769px) {
    .results-SectionHeader {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.results-Link {
    text-decoration: none;
}

.results-SectionContents {
    padding-top: 25px;
}

@media only screen and (min-width: 769px) {
    .results-SectionContents {
        padding-top: 50px;
    }
}

.results-List {
    margin: 0;
}

.results-List dt {
    clear: left;
    float: left;
    width: 3.5em;
    padding-top: 10px;
    font-size: 1.2rem;
    color: #464646;
}

.results-List dd {
    overflow: hidden;
    margin: 0;
    padding-top: 7px;
}

@media only screen and (min-width: 769px) {
    .results-List dt {
        padding-top: 10px;
        font-size: 1.8rem;
    }

    .results-List dd {
        padding-top: 12px;
    }

    .results-List_en dt {
        width: 6.5em;
    }
}

.results-List_Label {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    margin-top: -5px;
    margin-left: -5px;
    list-style: none;
}

.results-List_Label li {
    margin-top: 5px;
    margin-left: 5px;
    padding: 3px 30px;
    border-radius: 2px;
    background-color: #161a38;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

@media only screen and (min-width: 769px) {
    .results-List_Label {
        margin-top: -10px;
        margin-left: -10px;
    }

    .results-List_Label li {
        margin-top: 10px;
        margin-left: 10px;
        padding: 5px 32px;
        font-size: 1.5rem;
    }
}

.js-resultNumber, .js-resultLoading {
    display: none;
}

.js-resultLoading {
    position: absolute;
    top: -20px;
    left: 70px;
}

.js-resultLoading img {
    width: 60%;
}

@media only screen and (max-width: 768px) {
    .js-resultLoading {
        position: absolute;
        top: -15px;
        left: 50px;
    }
}

.event_date_error {
    display: none;
    padding: 1em 0;
    text-align: center;
    color: red;
}

.search-Event_Select {
    position: relative;
}

.search-Event_Select::after {
    content: "";
    position: absolute;
    top: 60%;
    right: 12px;
    width: 11px;
    height: 7px;
    background: url(../../common/images/ic_arrow_down.svg) no-repeat;
    background-size: cover;
    transform: translateY(-50%);
    pointer-events: none;
}

.search-Event_Select:first-child {
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: calc(55% - 5px);
    margin-right: 5px;
}

.search-Event_Select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 45px;
    padding-right: 25px;
    padding-left: 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #fff;
    line-height: 45px;
    text-indent: .01px;
}

@media only screen and (min-width: 769px) {
    .search-Event_Select select {
        height: 60px;
        font-size: 1.6rem;
        line-height: 60px;
    }
}

@media only screen and (max-width: 374px) {
    .search-Event_Select select {
        padding-right: 20px;
        padding-left: 5px;
    }
}

.search-Form.-event .search-Form_Item-Wrapper {
	display: flex;
}
.search-Form.-event .search-Form_Item-Wrapper .search-Form_Item,
.search-Form.-event .search-Form_Item-Wrapper .search-Form_SetItem,
.search-Form.-event .search-Form_Item-Wrapper .search-Form_Select {
	width: 200px;
	padding-bottom: 0;
}
.search-Form.-event .search-Form_Select select {
	color: #000;
}
.search-Form.-event .search-Form_SetItem select[name="event_area"] {
	margin-top: 0;
}
.search-Form.-event .search-Form_SetItem {
	border-top: none;
	padding-top: 43px;
	padding-left: 5px;
}
.search-Form.-event .search-Form_Footer {
	background-color: initial;
}
.search-Form.-event .search-Form_Item:not(:first-child)::before {
	content: none;
}

@media only screen and (max-width: 768px) {
	.search-Form.-event .search-Form_Item-Wrapper {
		justify-content: space-between;
		gap: 0 9px;
		margin: 30px auto 0;
	}
	.search-Form.-event .search-Form_Item-Wrapper .search-Form_Item,
	.search-Form.-event .search-Form_Item-Wrapper .search-Form_SetItem{
		width: 50%;
		padding: 0;
	}
	.search-Form.-event .search-Form_Item-Wrapper .search-Form_Select {
		width: 100%;
	}
}

.event-AnchorLinkWrapper {
	display: flex;
	justify-content: center;
}
.event-AnchorLink {
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	color: #cc0000!important;
	display: inline-block;
	margin: 16px 0;
}
