@charset "utf-8";

.toggle-btn {
    display: none;
}

/*===========================================================================================================================================
=============================================================================================================================================

	スマホ

=============================================================================================================================================
===========================================================================================================================================*/
@media screen and (max-width: 767px) {

/*
	ハンバーガーボタン
=====================================*/
.toggle-btn {
    display: block;
    position: relative;
    width: 100%;
    height: 40px;
    background-color: #bd4122;
}

.toggle-btn__line{
	display: block;
	position: absolute;
    top: 50%;
    left: 50%;
	width: 20px;
    height: 2px;
    margin: -1px 0 0 -10px;
    background-color: #fff;
	transition: 0.3s;
}

.toggle-btn__line:before, .toggle-btn__line:after{
	content: " ";
	position: absolute;
	top: 50%;
    left: 0;
	width: 20px;
    height: 2px;
    background-color: #fff;
	transition: 0.4s;
}

.toggle-btn__line:before{
	margin-top: -8px;
}

.toggle-btn__line:after{
	margin-top: 6px;
}

.toggle-btn.is-active .toggle-btn__line{
	background: transparent;
}

.toggle-btn.is-active .toggle-btn__line:before, .toggle-btn.is-active .toggle-btn__line:after{
	margin-top: 0;
}

.toggle-btn.is-active .toggle-btn__line:before{
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}

.toggle-btn.is-active .toggle-btn__line:after{
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
}



/*
	スマホメニュー
=====================================*/
    
	}