@media screen and (max-width:767px){
/*============================================*/
.br_web{
    display: none;
}

#main{
    position: relative;
    height: 80vh;
    background: url(/common/img/mv.png) center center no-repeat;
    background-size: cover;
}
/*============================================
ハンバーガー
=============================================*/ 
.menu {
	/* メニューを縦に */
	display: flex;
	flex-direction: column;
	position: fixed;
	/* メニューの位置マイナス指定で画面外に */
	right: -60%;
	width: 60%;
	height: 100vh;
	background-color: #F2994A;
	background:rgba(242,153,74,0.9);
	color: #efefef;
	transition: .3s;
    z-index: 10;
    top: 0;
    padding: 120px 30px 0;
}
.menu li {
	width: 100%;
	border-bottom: 1px solid #e2e2e2;
}
.menu li a{
	display: block;
	padding-bottom: 15px;
	padding-top: 15px;
}
.menu-list:hover {
    color: #efefef;
	cursor: pointer;
	transition: .3s;
}
/***** メニューオープン時位置0にして画面内に *****/
.menu.open {
	position: absolute;
    top: 0;
	right: 0;
}

header .tel, header .web{
    display: none;
}
.is-animation .btn {
	top: 24px;
	right: 20px;
	width: 30px;
	height: 30px;
}
.is-animation .btn-line {
	background-color: #F2994A;
}
.is-animation .btn-line::before ,.is-animation  .btn-line::after {
	background-color: #F2994A;
}
.is-animation ul li a{
    color:#ffffff;
    font-weight: 300;
}
header nav ul li a:hover{
    color: #ffffff;
}
/*============================================
メインビジュアル
=============================================*/ 

header h1 img{
    width: 80%;
    height: auto;
}

#main h2{
	top: 40%;
    left:0;
    font-size: 30px;
	padding: 0 30px;
}

#main .caution{
    width: 100%;
}
header h1 a{
    margin: 0 0 0 20px;
}

header nav ul .sp_menu{
    display: block;
}


/*============================================
コンテンツベース
=============================================*/ 
.content{
    padding: 80px 30px;
    display: block;
}
.flex_box{
    display: block;
}
.sec_right, .sec_left{
    width: 100%;
}
.t_right{
    margin-top: 20px;
    text-align: left;
}
a[href^="tel:"]{
    pointer-events: none;
  }
  
/*============================================
about
=============================================*/ 
#about .content img{
    width: calc(100% + 0px);
    margin-right: 0px;
    height: auto;
}

/*============================================
flow
=============================================*/ 
#flow .flex_box dl{
    flex-basis:100%;
    max-width:100%;
}

/*============================================
price
=============================================*/ 
#price .flex_box dl{
    flex-basis:100%;
    max-width:100%;
}
#price .flex_box p{
    text-align: left;
}
#price .flex_box dl img{
    margin-top: 60px;
}

#price  .limit{
    padding: 2px 6px;
    margin: 0 10px 0 0px;
    font-weight: normal;
  }
.sp_only{
    display: block;
}
/*============================================
news
=============================================*/ 
#news .f_button_box .f_button{
    position: relative;
    width: 100%;
    right: 0;
    top:0;
}

#news .timeline_t{
    height: 420px;
    overflow: hidden;
    font-size: 14px;
}
#news .f_button_box{
    position: relative;
}


#news .f_button:hover{
    background: #0e5988;
}

/*============================================
foot
=============================================*/ 

footer .content dl{
    display: block;
    flex-wrap: wrap;
    margin-top: 30px;
    align-items: center;
    justify-content: center;
	margin-bottom:60px;
}
footer .content dl dt{
    width: 100%;
    text-align: inherit;
    text-align-last: inherit;
    padding-right: 0px;
	padding-bottom: 20px;
}
footer .content dl dd{
    width: 100%;
    border-top:1px solid #747474;
	border-left: none;
    padding-left: 0px;
    font-weight: 200;
    display: inline-block;
	padding-top: 20px;
}
footer .content .foot_tel  .number{
    font-weight: bold;
    font-size:30px;
    line-height: 49px;
}

/*============================================*/  
}



/*============================================
ハンバーガー　共通
=============================================*/  
button {
	margin: 0;
	padding: 0;
	outline: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	vertical-align: middle;
	text-align: inherit;
	font: inherit;
	-webkit-appearance: none;
	appearance: none;
}
/**************** 以下、ハンバーガーボタンのスタイリング ****************/
.btn {
	/* ボタンの配置位置  */
	position: fixed;
	top: 40px;
	right: 30px;
	/* 最前面に */
	z-index: 30;
	/* ボタンの大きさ  */
	width: 30px;
	height: 30px;
    transition: .3s;
}
/***** 真ん中のバーガー線 *****/
.btn-line {
	display: block;
	/* バーガー線の位置基準として設定 */
	position: relative;
	/* 線の長さと高さ */
	width: 100%;
	height: 2px;
	/* バーガー線の色 */
	background-color: #ffffff;
	transition: .2s;
}
/***** 上下のバーガー線 *****/
.btn-line::before , .btn-line::after {
	content: "";
	/* 基準線と同じ大きさと色 */
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	transition: .5s;
}
.btn-line::before {
	/* 上の線の位置 */
	transform: translateY(-16px);
}
.btn-line::after {
	/* 下の線の位置 */
	transform: translateY(16px);
}
/***** メニューオープン時 *****/
.btn-line.open {
	/* 真ん中の線を透明に */
	background-color: transparent;
}
.btn-line.open::before , .btn-line.open::after {
	content: "";
	background-color: rgb(255, 255, 255);
	transition: .2s;
}
.btn-line.open::before {
	/* 上の線を傾ける */
	transform: rotate(45deg);
}
.btn-line.open::after {
	/* 上の線を傾ける */
	transform: rotate(-45deg);
}


@media screen and (min-width: 767px) {
	.btn {
		display: none;
	}
}