/* ↓全体の文字カラー↓ */
body {
color: #4f4e4e;

font-size: 16px;
line-height: 210%;
}

span {
   display: inline-block;
}
    

/* ↓全体のリンク文字↓ */
a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.mainphoto img {
  width: 100%;
  max-height:550px;
  object-fit: cover;
}

.mainphoto_s img {
  width: 100%;
  max-height:420px;
  object-fit: cover;
}

.merguezphoto img {
  width: 100%;
  max-height:300px;
  object-fit: cover;
}

.fadeline a{
    position:relative;
    display:inline-block;
    transition:.3s
}
.fadeline a::after{
    position:absolute;
    bottom:-0.5em;
    left:0;
    content:'';
    width:100%;
    height:3px;
    background-color:#b6161f;
    opacity:0;
    transition:.3s
}.fadeline a:hover::after{
    bottom:0.15em;opacity:1
}



/* ↓プロポーショナルメトリクス↓ */
.jikanpm {
  font-feature-settings: "palt";
}

/* ↓字間、かなツメ↓ */
.jikankana {
  font-feature-settings: "pkna";
}


/* パソコンで見たときは"tpc"のclassがついた画像が表示される */
.pc-md { display: block !important; }
.sp-md { display: none !important; }
/* スマートフォンで見たときは"tsp"のclassがついた画像が表示される */
@media only screen and (max-width: 767px) {
.pc-md { display: none !important; }
.sp-md { display: block !important; }
}




/* パソコンで見たときは"tpc"のclassがついた画像が表示される */
.tpc2 { display: block !important; }
.tsp2 { display: none !important; }
/* スマートフォンで見たときは"tsp"のclassがついた画像が表示される */
@media only screen and (max-width: 400px) {
.tpc2 { display: none !important; }
.tsp2 { display: block !important; }
}

/* スマートフォンのみpadding0 */
@media only screen and (max-width: 767px) {
.sp-padding-none { padding: 0px !important; }
}

/* スマートフォンのみpadding15x */
@media only screen and (max-width: 767px) {
.sp-padding15 { padding: 15px !important; }
}

/* スマートフォンのみpadding30px */
@media only screen and (max-width: 767px) {
.sp-padding30 { padding: 30px !important; }
}


/* スマートフォンのみpadding0 */
.sp-padding-menu { padding-right: 0px !important; }
@media only screen and (max-width: 575px) {
.sp-padding-menu { padding-right: 0px !important; }
}

/* スマホ（425px以下）の時だけ改行させる */
.br-sp-h { display: none; }
@media (max-width: 425px) {
.br-sp-h { display: block; }
}

/* スマートフォンのみ頭下げ */
@media only screen and (max-width: 425px) {
.sp-padding-hyo { padding-left:0.9em !important; }
}

/* スマートフォンのみ行間125 */
@media only screen and (max-width: 425px) {
.sp-padding-gyo { line-height:125% !important; }
}

/* スマートフォンのみ頭下げ */
@media only screen and (max-width: 650px) {
.sp-padding-sage { padding-left:0.5em !important; }
}

/* ↓フォント、明朝↓ */
.fonmin {
font-family:'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
}






/* ↓ページ見出し↓ */
h2 {
    padding: 0.1em;
    margin: 1.5em 0;
	text-align:center;
    background: #364269;/*背景色*/
}
h2 p {
    color: #fff;
	font-size:30px;
    font-weight: 300;
    margin: 0; 
    padding: 0;
}


/* ↓中見出し↓ */
h3 {
	text-align:center;
    color: #e2041b;
	font-size:30px;
    font-weight: 400;
    padding:0;
}



/* ↓パソコンのみ改行↓ */
@media screen and (min-width: 650px){	
  .br-pc { display:block; }
  .br-sp { display:none; }
}
/* ↓スマホのみ改行↓ */
@media screen and (max-width: 650px){	
  .br-pc { display:none; }
  .br-sp { display:block; }
}


/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 767px) {
.pc { display: none !important; }
.sp { display: block !important; }
}




/*ハンバーガーメニュー*/
/* input非表示 */
        #check_input {
            display: none;
        }

/* ハンバーガーボタン */
        #menu_btn {
            position: fixed;
            top: 22px;
            right: 15px;
            height: 55px;
            width: 55px;
            border-radius: 50%;/*角丸*/
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 100;
            background-color: #ffebcd;
            cursor: pointer;
        }
       /* 三本線*/
        #menu_btn span,
        #menu_btn span::before,
        #menu_btn span::after {
            content: "";
            display: block;
            position: absolute;
            height: 3px;
            width: 30px;
            border-radius: 3px;
            background-color: #ffa500;
            transition: all 1.0s cubic-bezier(0.075, 0.82, 0.165, 1);
            /*アニメーションのイージングも設定しておく*/
        }
        #menu_btn span::before {
            bottom: 10px;
        }
        #menu_btn span::after {
            top: 10px;
        }

        /* クリックされたら三本線が×に変化する */
        #check_input:checked ~ #menu_btn span {
            background-color: transparent; 
        }
        #check_input:checked ~ #menu_btn span::before {
            bottom: 0;
            transform: rotate(45deg);
        }
        #check_input:checked ~ #menu_btn span::after {
            top: 0;
            transform: rotate(-45deg);
        }

/* ドロワーメニュー */
        #menu_cont {
            position: fixed;
            top: 0;
            left: 100%; /*left 100%で画面の外に出しておく*/
            width: 80%;
            height: 100%;
            background: #fffde1;
            z-index: 90;
            transition: left 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
        }

        /* ドロワーメニュー外の背景 */
        #drawer_back {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 80;
        }

        /* メニューリストの装飾 */
        #menu_cont ul {
            padding: 10% 10% 0
        }
        #menu_cont ul li {
            list-style: none;
        }
        #menu_cont ul li a {
            font-size: 28px;
            font-weight: bold;
            display: block;
            width: 100%;
            padding: 15px 5px;
            margin: 5px;
            color:#ffa500;
            text-decoration: none;
            position:relative;
            transition:.3s
        }
        #menu_cont ul li a:after {
            position:absolute;
            bottom:-0.5em;
            left:0;
            content:'';
            width:70%;
            height:2px;
            background-color:#b6161f;
            opacity:0;
            transition:.3s 
        }
        #menu_cont ul li a:hover::after {
            bottom:0.25em;opacity:1
        }

        /* クリックされたらドロワーメニュー表示 */
        #check_input:checked ~ #menu_cont {
            left: 20%;
        }
        #check_input:checked ~ #drawer_back {
            display: block;
        }





/* ↓スクロールに応じて要素を固定↓ */
.sticky {
    position: -webkit-sticky; /* Safari用 */
    position:sticky; /* 要素をスクロールに応じて固定 */
    top:+10px; /* 縦スクロールに追従 */
    z-index: 100; /* z-indexで最前面に持ってくる */
}



/*ページ内リンク位置修正*/
a.anchor{
    display: block;
    padding-top: 70px;
    margin-top: -70px;
}

a.anchor_h{
    display: block;
    padding-top: 120px;
    margin-top: -120px;
}




/* Bootstrapのガター幅を調整するための汎用CSS */
.row-0{ margin-left:0px;  margin-right:0px}
.row-0 >div{ padding-right:0px;  padding-left:0px}
.row-10{ margin-left:-5px;  margin-right:-5px}
.row-10 >div{ padding-right:5px;  padding-left:5px}
.row-20{ margin-left:-10px;  margin-right:-10px}
.row-20 >div{ padding-right:10px;  padding-left:10px}
.row-30{ margin-left:-15px;  margin-right:-15px}
.row-30 >div{ padding-right:15px;  padding-left:15px}
.row-40{ margin-left:-20px;  margin-right:-20px}
.row-40 >div{ padding-right:20px;  padding-left:20px}
.row-50{ margin-left:-25px;  margin-right:-25px}
.row-50 >div{ padding-right:25px;  padding-left:25px}





#map_canvas{
	position: relative;
	padding-top: 100%;
	width: 100%;
	overflow: hidden;
}
#map_canvas iframe{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}




.yoyaku_maru {
    margin: 0 auto;
	display: block;
    width:100px;
    height:100px;
    background: #FFA000;
	text-align: center;
	color: #fff;
    border-radius: 50%;
}
.yoyaku_maru:hover {
	background:#b6161f;
	color: #fff;
    transition: 0.6s;
}


.spyoyaku {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #FFA000;
}
.spyoyaku:hover {
	background:#b6161f;
	color: #fff;
    transition: 0.6s;
}

.midashired {
    max-width:100%;
    background:#b6161f;
    color: #fff;
    font-size:20px;
    font-weight:400;
	padding:0em 0.75em;
    height:34px;
	border-radius: 17px;
}

/*メニュー表の罫線*/
.menu_t td {
border-top:solid 1px #ffa500
}

/*予約ページ箇条書き*/
.yoyaku ol  {
  margin: 0;
  padding: 0
}
.yoyaku ol li  {
  list-style: none;
  padding-left: 1.3em;
  text-indent: -1.3em;
}



.kounyuu {
position:absolute; top:15px; right:50px;
background-color:#000000;
padding:0px 30px;
border: 1px solid #fff;
border-radius: 2px;
color: #fff;
opacity: 1;
}
.kounyuu:hover {
	background:#FFA000;
	color: #fff;
    transition: 0.6s;
}


.boxblack {
    width:55%;
    max-width:300px;
    background:#000000;
    color: #fff;
    padding:6px; 
    height:45px;
    transition: 0.3s;
}
.boxblack:hover {
	background:#c56a18;
	color: #fff;
    transition: 0.3s;
}   


.boxgreen {
    width:55%;
    max-width:300px;
    background:#56a646;
    color: #fff;
    padding:6px; 
    height:45px;
    transition: 0.3s;
}
.boxgreen:hover {
	background:#000000;
	color: #fff;
    transition: 0.3s;
}   


.boxred {
    width:55%;
    max-width:300px;
    background:#b6161f;
    color: #fff;
    padding:6px; 
    height:45px;
    transition: 0.3s;
}
.boxred:hover {
	background:#000000;
	color: #fff;
    transition: 0.3s;
}   



.yoyaku_m {
    width:60%;
    max-width:200px;
    background:#c56a18;
    color: #fff;
    padding:2px; 
    height:35px;
    transition: 0.3s;
}
.yoyaku_m:hover {
	background:#000000;
	color: #fff;
    transition: 0.3s;
}




/* メニューページ */
@media only screen and (min-width: 941px) {
.mblock { padding:0% 8%; margin-bottom:120px }
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 940px) {
.mblock { padding:0% 3%; margin-bottom:40px }
}



/* メニューページ、bottom少なめ */
@media only screen and (min-width: 941px) {
.mblock_s { padding:0% 8%; margin-bottom:60px }
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 940px) {
.mblock_s { padding:0% 3%; margin-bottom:20px }
}


.box_orange {
	position: relative;
	text-align: center;
	font-family:sans-serif;

	color: #ffffff;
    background: #c56a18;/*背景色*/
	height: 120px;
}
.box_orange p {
	position: absolute;
	top: 50%;
	left: 51%;
	-webkit-transform : translate(-50%,-50%);
	transform : translate(-50%,-50%);
	text-align: center;/*一応BOX内の文字も中央寄せ*/
}
.box_orange:hover {
	background:#000;
	color: #fff;
    transition: 1.2s;
}


.box_orange_2 {
	position: relative;
	text-align: center;
	font-family:sans-serif;

	color: #ffffff;
    background: #d16c15;/*背景色*/
	height: 120px;
}
.box_orange_2 p {
	position: absolute;
	top: 50%;
	left: 51%;
	-webkit-transform : translate(-50%,-50%);
	transform : translate(-50%,-50%);
	text-align: center;/*一応BOX内の文字も中央寄せ*/
}
.box_orange_2:hover {
	background:#000;
	color: #fff;
    transition: 1.2s;
}




.boxyellow {
    width:70%;
    max-width:360px;
    background:#fffabc;
    color: #000;
    padding:14px; 
    height:60px;
    transition: 0.3s;
}
.boxyellow:hover {
	background:#c56a18;
	color: #fff;
    transition: 0.3s;
}   


.link_menu p {
	color: #FFFFFF;
}
.link_menu:hover {
	color: #b6161f;
    transition: 1.2s;
}

/*テキストリンク*/   
.cp_link {
	padding: 0.1em 0.3em;
	position: relative;
	display: inline-block;
	transition: .3s;
}
.cp_link a:after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 0;
	height: 40px;
	background: linear-gradient(transparent  75%, #b6161f  75%);
    z-index: -1;
	transition: .25s;
}
.cp_link a:hover::after {
	width: 100%;
}

.botannphoto img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}
.botannphoto:hover {
  transition: 1.2s;
  opacity: 0.6;
}


.lp-underline {
  font-weight:500;
  text-decoration: underline; /* 下線 */
  text-decoration-thickness: 0.75em; /* 線の太さ */
  text-decoration-color:#FFE67E; /* 線の色 */
  text-underline-offset: -0.25em; /* 線の位置。テキストに重なるようにやや上部にする */
  text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}




/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 940px) {
.staff_block { padding:0% 15%; margin-bottom:40px }
}


/* スマホ（sm以下）のみ1文字インデント */
@media only screen and (max-width: 575px) {
.inde-s { text-indent:1em }
}

/* ページ下部のリンク */
.yoyaku_sns {
	display: block;
    background: #FFA000;
	text-align: center;
	color: #fff;
    border-radius:5px;
}
.yoyaku_sns:hover {
	background:#b6161f;
	color: #fff;
    transition: 0.6s;
}

/* メニューページ、ページ内リンク */
.menu_link {
    width:250px;
    border: solid 1.5px #b6161f;
    color: #b6161f;
    padding:2px 0px 2px 6px; 
    height:40px;
    transition: 0.3s;
    border-radius:20px;
}
.menu_link:hover {
	background:#b6161f;
	color: #fff;
    transition: 0.3s;
}

/* SNS、料理教室リンク */
.icon_link {
    transition: 0.3s ;
}
.icon_link:hover {
	opacity: 0.6 ;
}

