﻿@charset "utf-8";
@font-face {
    font-family: あいこPLUS;
    src:url(../webfonts/あいこPLUS.otf) format("opentype");
}
@font-face {
    font-family: あいこPLUS;
    src:url(../webfonts/あいこPLUS.woff) format("woff");
}
/* =Reset default browser CSS.
Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table.table, caption, tbody, tfoot, thead, tr, th, td {
    border: 0;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}
:focus {
    outline: 0;
}
ol, ul {
    list-style: none;
}
table.table {
    border-collapse: separate;
    border-spacing: 0;
}
caption, th, td {
    font-weight: normal;
    text-align: left;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: "";
}
blockquote, q {
    quotes: "" "";
}
a img {
    border: 0;
}
figure {
    margin: 0
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
/* -------------------------------------------------------------- */

body {
    background-image: url("../image/bg_main.png");
    color: #262626;
    font-size: 18px;
    font-family: あいこPLUS;
    line-height: 1.5;
    -webkit-text-size-adjust: none;
}
/* 下いっぱいまでコンテンツを表示
-------------------------------------------------------------- */
.wrap {
    height: 100vh;
}
/* リンク設定
------------------------------------------------------------*/
a {
    color: #FFFFFF;
    text-decoration: none;
}
a:active, a:focus {
    outline: 0;
}
.externalLink {
    color: #74b4df;
    font-weight: normal;
}
.externalLink:hover {
    color: #0E52BB;
}
.link:hover {
    color: #b3b3b3;
}
/* ローディング画面
------------------------------------------------------------*/
#loading_bg {
    display: block;
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: #FFFFFF;
    width: 100%;
    height: 100%;
    z-index: 99999;
}
#loading {
    align-items:center;
    display: flex;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
}
#loading img {
    width: 50px;
    margin: 5px 3px 5px 3px;
}
#loading_buta1 {
    animation: jump 2s infinite backwards;
    -webkit-animation: jump 2s infinite backwards;
}
#loading_buta2 {
    animation: jump 2s .3s infinite backwards;
    -webkit-animation: jump 2s .3s infinite backwards;
}
#loading_buta3 {
    animation: jump 2s .6s infinite backwards;
    -webkit-animation: jump 2s .6s infinite backwards;
}
@keyframes jump {
    0%, 75%, 100% {
        transform: scale(0);
    }
    10%, 30% {
        animation-timing-function: cubic-bezier;
        transform: scale(1) translate3d(0,0,0);
    }
    15% {
        animation-timing-function: cubic-bezier;
        transform: translate3d(0,-15px,0);
    }
}
@-webkit-keyframes jump {
    0%, 75%, 100% {
        transform: scale(0);
    }
    10%, 30% {
        animation-timing-function: cubic-bezier;
        transform: scale(1) translate3d(0,0,0);
    }
    15% {
        animation-timing-function: cubic-bezier;
        transform: translate3d(0,-15px,0);
    }
}
/* ヘッダー
------------------------------------------------------------*/
header {
    color: #FFFFFF;
}
.info {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    padding-top: 10px;
    overflow-x: hidden;
}

.infoItem {
    font-size: 16px;
}

.subTitle {
    width: 100%;
    margin: -10px 0px 0px -10px;
    padding: 3px 5px 3px 5px;
    background-image: url("../image/infoBase_blue.png");
    text-align: center;
}
.reservation {
    width: 100%;
    margin: -10px -10px 0px 0px;
    padding: 3px 5px 3px 5px;
    background-color: #E5117C;
    text-align: center;
}
.subTitle span {
    padding-left: 0px;
}
.info span {
    display: block;
}
.hlogo {
    width: 55px;
    margin: 0 40px 0 auto;
}
.hlogo img {
    max-width: 100%;
    position: relative;
    top: 80px;
    z-index: 1;
}
/* ナビゲーション
------------------------------------------------------------*/
.nav {
    display: none;
}
.menu {
    display: block;
    position: relative;
    margin: 0 0 0 auto;
    top: -115px;
}
.icon_flex {
    display: flex;
    display: -webkit-flex;
    justify-content: flex-end;
}
.menu img {
    width: 50px;
    margin: 0 5px 0 0;
    cursor: pointer; /* 指マーク */
    cursor: hand; /* 指マーク IE6対応 */
}

/* フルスクリーンナビ
------------------------------------------------------------*/
.gnav{
    display: none;
    background: rgba(0,0,0,0.8);
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 10;
}
.gnav_x {
    position: fixed;
    top: 20px;
    right: 40px;
    z-index: 15;
    color: #FFFFFF;
    text-align: center;
    cursor: pointer; /* 指マーク */
    cursor: hand; /* 指マーク IE6対応 */
}
.gnav_x_x {
   font-size: 25px;
}
.gnav_x_close{
    font-size: 15px;
    margin-top: -13px;
}
.gnav_wrap{
    align-items:center;
    display: flex;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
}
.gnav_menu_item{
    margin: 30px 0;
    text-align: center;
}
.gnav_menu_item a{
    color: #FFFFFF;
    font-size: 22px;
}
.gnav_menu_item a:hover{
    color: #E5117C;
}
/* ピックアップ写真
------------------------------------------------------------*/
.bigimg{
    display: none;
    background: rgba(0,0,0,0.8);
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 10;
}
.bigimg_x {
    position: fixed;
    top: 20px;
    right: 40px;
    z-index: 15;
    color: #FFFFFF;
    text-align: center;
    cursor: pointer; /* 指マーク */
    cursor: hand; /* 指マーク IE6対応 */
}
.bigimg_x_x {
   font-size: 25px;
}
.bigimg_x_close{
    font-size: 15px;
    margin-top: -13px;
}
.bigimg_wrap{
    align-items:center;
    display: flex;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
}
#bigimg {
    width: auto;
    max-width: 90%;
    height: auto;
    max-height: 90%;
}
/* メインイメージ以下を上に移動
------------------------------------------------------------*/
.position {
    position: relative;
    top: -145px;
    z-index: 0;
    width: 800px;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 30px;
}
/* メインイメージ
------------------------------------------------------------*/
.mainImage {
    width: 100%;
    min-width: 300px;
    overflow-x: hidden;
}
.mainVisual {
    position: relative;
    left: 50%;
    margin-left: -180px;
}
.mainImage img {
    width:360px;
    max-width: 100%;
}
/* トラッキングナビゲーション
------------------------------------------------------------*/
.trackNav {
    background-image: url("../image/infoBase_black.png");
    display: flex;
    display: -webkit-flex;
    justify-content: flex-end;
    font-size: 14px;
    color: #FFFFFF;
    margin: 5px 15px 0px 15px;
    padding: 2px 10px 2px 10px;
}
.trackNav li {
    margin: 0px 3px 0px 3px;
}
.trackNav .active {
    color: #b3b3b3;
}
/* キャッチコピー（ホーム）
------------------------------------------------------------*/
.catchCopy{
    margin: 15px 15px 0px 15px;
}
.catchFont {
    font-family: ta-kouran, sans-serif;
    font-weight: 400;
    font-style: normal;
}
.copy_home1 {
    font-size: 24px;
}
.copy_home2 {
    font-size: 43px;
    color: #E5117C;
    text-align: center;
}
.copy_home3 {
    font-size: 24px;
    text-align: right;
}
/* キャッチコピー（旨さの秘密）
------------------------------------------------------------*/
.copy_umasa1 {
    font-size: 24px;
}
.copy_umasa2 {
    font-size: 35px;
    color: #E5117C;
    text-align: center;
}
.copy_umasa3 {
    font-size: 24px;
    text-align: center;
}
.copy_umasa4 {
    font-size: 35px;
    color: #E5117C;
    text-align: center;
}
.copy_umasa5 {
    font-size: 24px;
    text-align: right;
}
/* プロフィール（ホーム）
------------------------------------------------------------*/
.section {
    margin: 0px 15px 0px 15px;
}
.line img {
    max-width: 100%;
}
.tit {
    display: inline-block;
    margin: 15px 0px 0px 0px;
    padding: 2px 10px 2px 10px;
    font-size: 20px;
    background-image: url("../image/infoBase_blue.png");
    color: #FFFFFF;
}
.txt {
    margin: 15px 0px 15px 0px;
}
.tourou {
    float: right;
}
.tourou img {
    width: 180px;
    margin-bottom: -27px;
}

/* 写真並び
------------------------------------------------------------*/
.aroundPhoto {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}
.aroundPhoto img {
    width: 200px;
    margin: 10px 10px 10px 10px;
    cursor: pointer; /* 指マーク */
    cursor: hand; /* 指マーク IE6対応 */
}
/* カテゴリー（ホーム）
------------------------------------------------------------*/
.category {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    flex-wrap: wrap;
}
.category .item {
    margin: 30px 15px 30px 15px;
    width: 330px;
    height: 400px;
    overflow: hidden;
}
.category h3{
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    margin: 20px;
    height: 115px;
    background-color: #262626;
    color: #FFFFFF;
    font-size: 18px;
    border:solid #E5117C;
    border-width: 8px 0px 0px 0px;
}
.category .btn{
    display: block;
    padding: 10px 5px 0px 5px;
}
.category .active {
    display: block;
    padding: 10px 5px 0px 5px;
	background: #E5117C;
	color: #FFFFFF;
}
.category .umasa {
    background-image: url("../image/bg_blue.png");
}
.category .shop {
    background-image: url("../image/bg_green.png");
}
.category .umasa .pic {
    position: relative;
    top: -100px;
    left: 15px;
    width: 210px;   
}
.category .umasa .hanko {
    position: relative;
    top: -150px;
    left: 10px;
    width: 85px;   
}
.category .shop .pic {
    position: relative;
    top: -130px;
    left: 5px;
    width: 270px;
}
/* お知らせ（ホーム）
------------------------------------------------------------*/
.news .new {
    margin-right: 5px;
    padding: 5px 10px 7px 10px;
    background: #E5117C;
	color: #FFFFFF;
    font-size: 16px;
}
.news .time {
    font-size: 17px;
}
.news .newsItem {
    margin: 25px;
    color: #262626;
}
.news .newsItem:hover {
    color:  #E5117C;
}
.news .newsTitle {
    margin: 10px 0px 0px 0px;
    font-size: 18px;
}
/* 創業者（旨さの秘密）
------------------------------------------------------------*/
.founder_item {
    margin-top: -20px;
    display: block;
}
.founder_pic {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}
.founder_pic img {
    width: 180px;
    position: relative;
    left: 0px;
    z-index: 2;
}
.founder_box {
    background-image: url("../image/founder_blue.png");
    width: 270px;
    height: 360px;
    margin: 0 auto;
    position: relative;
    top: -40px;
    z-index: 0;
    overflow: hidden;
    margin-bottom: -40px;
}
.founder_text {
    border:solid #FFFFFF;
    border-width: 2px 2px 2px 2px;
    width: 230px;
    height:320px;
    position:absolute;
    top:50%;
    left:50%;
    display:inline-block;
    transform:translate(-50%, -50%);
}
.founder_write {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-align: justify; /* 均等割付 */
    text-justify: inter-ideograph; /* 均等割付 IE */
    font-size: 16px;
    color: #FFFFFF;
    height: 280px;
    position:absolute;
    top:50%;
    left:50%;
    display:inline-block;
    transform:translate(-50%, -50%);
}
.founder_text h3 {
    margin: 0px 0px 0px 8px;
    padding: 5px;
    width: 25px;
    height: 110px;
    text-align: center;
    background-color: #262626;
    font-size: 18px;
}
.founder_text p {
    line-height: 1.7;
}
.founder_fukiGrp {
    display: none;
    margin: 0 auto;
    background-image: url("../image/svg/fukidashi.svg");
    background-repeat: no-repeat;
    background-position: center center;
    width: 180px;
    height: 180px;
    position: relative;
    top: -680px;
    right: 140px;
    z-index: 3;
    overflow: hidden;
}
.founder_fuki ul {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-align: justify; /* 均等割付 */
    text-justify: inter-ideograph; /* 均等割付 IE */
    font-size: 16px;
    width: 150px;
    height: 150px;
    position:absolute;
    top:50%;
    left:42%;
    display:inline-block;
    transform:translate(-50%, -50%);
    text-align: center;
    line-height: 1.9;
}
.founder_fuki li strong {
    font-size: 18px;
    color: #FFFFFF;
}
/* 新鮮ホルモン・秘伝のタレ（旨さの秘密）
------------------------------------------------------------*/
.secret .btn{
    margin: 10px 0px 0px 0px;
    background-color: #262626;
    color: #FFFFFF;
    font-size: 18px;
    border:solid #E5117C;
    border-width: 0px 0px 0px 8px;
    display: inline-block;
    padding: 3px 10px 3px 10px;
}
.secret_pic1 { /* 新鮮ホルモンイメージ*/
    margin: 50px 30px -50px auto;
    width: 150px;
}
.secret .hanko1 {
    position: relative;
    top: -140px;
    right: 50px;
    width: 90px;
}
.secret_pic2 { /* 秘伝のタレイメージ*/
    margin: 0px auto -80px auto;
    width: 220px;
}
.secret .hanko2 {
    position: relative;
    top: -120px;
    right: 30px;
     width: 90px;
}

/* 席数（お店情報）
------------------------------------------------------------*/

.shop_color {
    background-image: url("../image/infoBase_green.png");
}
.seat_section {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    flex-wrap: wrap;
}
.seat_section .seat_item {
    margin: 15px 0px 5px 0px;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    width: 340px;
    overflow: hidden;
}
.seat_section h3{
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    margin: 10px 5px 0px 5px;
    height: 170px;
    width: 26px;
    background-color: #262626;
    color: #FFFFFF;
    font-size: 18px;
    border:solid #688d5d;
    border-width: 8px 0px 0px 0px;
}
.seat_section .btn{
    display: block;
    padding: 10px 5px 0px 5px;
}
.seat_section .pic img {
    width: 225px;
    cursor: pointer; /* 指マーク */
    cursor: hand; /* 指マーク IE6対応 */
}
.seat_section .seat_illsut {
    margin: 0px 25px 0px 25px;
    width: 225px;
}

/* 駐車場（お店情報）
------------------------------------------------------------*/

.parking_item {
    margin: 0px;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    flex-wrap: wrap;
}
.parking .btn{
    margin: 10px 0px 0px 0px;
    background-color: #262626;
    color: #FFFFFF;
    font-size: 18px;
    border:solid #E5117C;
    border-width: 0px 0px 0px 8px;
    display: inline-block;
    padding: 3px 10px 3px 10px;
}
.parking .pic img {
    margin: 10px 0px 20px 0px;
    width: 280px;
    cursor: pointer; /* 指マーク */
    cursor: hand; /* 指マーク IE6対応 */
}

/* 交通のご案内（お店情報）
------------------------------------------------------------*/

.access_map {
    text-align: center;
    margin-bottom: 50px;
}
.access_map iframe {
    height: 300px;
    max-width: 100%;
}

/* お知らせ（お知らせ）
------------------------------------------------------------*/

.news_data h3 {
    margin: 0px 0px 0px 8px;
    color: #262626;
    font-size: 16px;
}
.news_item {
    padding: 5px;
}
.news_title {
    display: inline-block;
    margin: 2px;
    padding: 3px 10px 3px 10px;
    background-color: #262626;
    color: #FFFFFF;
    font-size: 18px;
    border:solid #E5117C;
    border-width: 0px 0px 0px 8px;
}
.news_data .txt {
    margin: 0px 0px 100px 0px;
}
.news_img img {
    width: 250px;
    margin-top: 15px;
}
.news_img {
    text-align: center;
}
/* ページトップへ
------------------------------------------------------------*/
.page_top {
    display: none;
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 1;
    cursor: pointer; /* 指マーク */
    cursor: hand; /* 指マーク IE6対応 */
}
.page_top img {
    width: 90px;
}

/* フッターロゴ
------------------------------------------------------------*/
footer {
    position: relative;
    top: -160px;
}
.shopName {
    background-image: url("../image/infoBase_blue.png");
    height: 240px;
    margin-top: 20px;
    padding: 15px 0px 0px 0px;
}
.shopSup {
    text-align: center;
    color: #FFFFFF;
    font-size: 16px;
    margin: 0px 0px 6px 0px;
}
.shopLogo img {
    width: 120px;
}
.shopLogo {
    width: 120px;
    margin: 0 auto;
}
/* フッターお店情報
------------------------------------------------------------*/
.shopInfo {
    background-image: url("../image/infoBase_blueDark.png");
    padding: 15px 0px 15px 0px;
    color: #FFFFFF;
    font-size: 16px;
}
.shopInfoC {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
.shopInfo li {
    margin: 15px 20px 15px 20px;
}
/* フッターナビ
------------------------------------------------------------*/
.footNav {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    flex-wrap: wrap;
    background-image: url("../image/infoBase_black.png");
    font-size: 14px;
    border:solid #FFFFFF;
    border-width: 0px 0px 1px 0px;
    padding: 10px 15px 10px 15px ;
}
.footNav li {
    margin: 10px 20px 10px 20px;
    display: block;
    width: 80px;
    text-align: center;
}
/* コピーライト
------------------------------------------------------------*/
.copyright {
    background-image: url("../image/infoBase_black.png");
    padding-top: 10px;
    padding-bottom: 10px;
}
.copyright img {
    width: 280px;
    margin: 3px auto 0px auto;
    display: block;
}
.clearfix:after {
    display: block;
    clear: both;
    content: "";
}

@media (min-width: 320px) {
}

@media (min-width: 375px) {
/* 375px:メインイメージ
------------------------------------------------------------*/
.mainVisual {
    position: relative;
    left: 0%;
    margin-left: -0px;
}
.mainImage img {
    width:800px;
    max-width: 100%;
}
/* 375px:キャッチコピー（ホーム）
------------------------------------------------------------*/
.copy_home1 {
    font-size: 30px;
}
.copy_home2 {
    font-size: 50px;
    color: #E5117C;
    text-align: center;
}
.copy_home3 {
    font-size: 30px;
    text-align: right;
}
/* 375px:キャッチコピー（旨さの秘密）
------------------------------------------------------------*/
.copy_umasa1 {
    font-size: 30px;
}
.copy_umasa2 {
    font-size: 40px;
    color: #E5117C;
    text-align: center;
}
.copy_umasa3 {
    font-size: 30px;
    text-align: center;
}
.copy_umasa4 {
    font-size: 40px;
    color: #E5117C;
    text-align: center;
}
.copy_umasa5 {
    font-size: 30px;
    text-align: right;
}

/* 375px:カテゴリー（ホーム）
------------------------------------------------------------*/
    .category .umasa .pic {
    position: relative;
    top: -115px;
    left: 50px;
    width: 230px;   
}
.category .umasa .hanko {
    position: relative;
    top: -230px;
    left: 15px;
    width: 90px;   
}
.category .shop .pic {
    position: relative;
    top: -145px;
    left: 20px;
    width: 280px;
}
/* 375px:創業者（旨さの秘密）
------------------------------------------------------------*/
.founder_item {
    margin-top: 60px;
    display: block;
}
.founder_pic {
    margin-top: 30px;
}
.founder_pic img {
    width: 180px;
    left: 70px;
}
.founder_box {
    width: 320px;
    margin-bottom: -0px;
}
.founder_text {
    width: 280px;
}
.founder_text p {
    line-height: 2;
}
.founder_fukiGrp {
    display: block;
    width: 180px;
    height: 180px;
    top: -680px;
    right: 78px;
    margin-bottom: -220px;
}
.founder_fuki ul {
    font-size: 16px;
    width: 150px;
    height: 150px;
    top:50%;
    left:42%;
    line-height: 1.9;
}
.founder_fuki li strong {
    font-size: 18px;
}

}

@media (min-width: 480px) {

/* 480px:ヘッダー
------------------------------------------------------------*/
.hlogo {
    width: 75px;
    margin: 0 40px 0 auto;
}
.hlogo img {
    max-width: 100%;
    position: relative;
    top: 95px;
    z-index: 1;
}
/* 480px:ナビゲーション
------------------------------------------------------------*/
.menu {
    display: block;
    position: relative;
    margin: 0 0 0 auto;
    top: -155px;
}
.icon_flex {
    display: flex;
    display: -webkit-flex;
    justify-content: flex-end;
}
.menu img {
    width: 55px;
    margin: 0 5px 0 0;
    cursor: pointer; /* 指マーク */
    cursor: hand; /* 指マーク IE6対応 */
}
/* 480px:メインイメージ以下を上に移動
------------------------------------------------------------*/
.position {
    position: relative;
    top: -200px;
    z-index: 0;
    width: 800px;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 50px;
}
/* 480px:キャッチコピー（ホーム）
------------------------------------------------------------*/
.copy_home1 {
    font-size: 35px;
}
.copy_home2 {
    font-size: 60px;
    color: #E5117C;
    text-align: center;
}
.copy_home3 {
    font-size: 35px;
    text-align: right;
}
/* 480px:キャッチコピー（旨さの秘密）
------------------------------------------------------------*/
.copy_umasa1 {
    font-size: 35px;
}
.copy_umasa2 {
    font-size: 54px;
    color: #E5117C;
    text-align: center;
}
.copy_umasa3 {
    font-size: 35px;
    text-align: center;
}
.copy_umasa4 {
    font-size: 54px;
    color: #E5117C;
    text-align: center;
}
.copy_umasa5 {
    font-size: 35px;
    text-align: right;
}
/* 480px:燈篭（ホーム）
------------------------------------------------------------*/
.tourou img {
    width: 220px;
    margin-bottom: -27px;
}
/* 480px:カテゴリー（ホーム）
------------------------------------------------------------*/
.category .umasa .pic {
    position: relative;
    top: -115px;
    left: 70px;
    width: 230px;   
}
.category .umasa .hanko {
    position: relative;
    top: -230px;
    left: 25px;
    width: 90px;   
}
.category .shop .pic {
    position: relative;
    top: -145px;
    left: 40px;
    width: 280px;
}
/* 480px:新鮮ホルモン・秘伝のタレ（旨さの秘密）
------------------------------------------------------------*/
.secret_pic2 { /* 秘伝のタレイメージ*/
    margin: 0px 15px -80px 0px;
    margin-left: auto;
}
/* 480px:駐車場（お店情報）
------------------------------------------------------------*/
.parking_section .pic img {
    width: 400px;
}
/* 480px:交通のご案内（お店情報）
------------------------------------------------------------*/
.access_map iframe {
    height: 380px;
}
/* 480px:お知らせ（お知らせ）
------------------------------------------------------------*/
.news_img img {
    width: 400px;
    margin-top: 15px;
}

}

@media (min-width: 568px) {

/* 568px:創業者（旨さの秘密）
------------------------------------------------------------*/
.founder_pic {
    margin-top: 30px;
}
.founder_pic img {
    width: 210px;
    left: 0px;
}
.founder_box {
    width: 420px;
}
.founder_text {
    width: 380px;
}
.founder_text p {
    line-height: 2.5;
}
.founder_fukiGrp {
    width: 200px;
    height: 200px;
    top: -710px;
    right: 180px;
    margin-bottom: -240px;
}
.founder_fuki ul {
    font-size: 16px;
    width: 150px;
    height: 150px;
    top:50%;
    left:42%;
    line-height: 1.9;
}
.founder_fuki li strong {
    font-size: 18px;
}

}

@media (min-width: 667px) {

/* 667px:創業者（旨さの秘密）
------------------------------------------------------------*/
.founder_pic {
    margin-top: 50px;
}
.founder_pic img {
    width: 230px;
    left: 0px;
}
.founder_box {
    width: 500px;
}
.founder_text {
    width: 460px;
}
.founder_text p {
    line-height: 3.3;
}
.founder_fukiGrp {
    width: 220px;
    height: 220px;
    top: -740px;
    right: 200px;
    margin-bottom: -260px;
}
.founder_fuki ul {
    font-size: 18px;
    width: 170px;
    height: 170px;
    top:50%;
    left:41%;
    line-height: 1.9;
}
.founder_fuki li strong {
    font-size: 20px;
}

}

@media (min-width: 736px) {
}

@media (min-width: 768px) {
    
/* 768px:リンク設定
------------------------------------------------------------*/
a:hover {
    color: #b3b3b3;
}
/* 768px:ヘッダー
------------------------------------------------------------*/
.hlogo {
    width: 105px;
    margin: 0 40px 0 auto;
}
.hlogo img {
    max-width: 100%;
    position: relative;
    top: 170px;
    z-index: 1;
}
/* 768px:ナビゲーション
------------------------------------------------------------*/
.navGrp {
    width: 800px;
    max-width: 100%;
    margin: 0 auto;
 }
.nav {
    display: block;
    margin: 0 170px 0 auto;
    position: relative;
    top: -215px;
    width: 20px;
    height: 110px;
}
.menu {
    display: none;
}
.mainNav {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}
.mainNav .navLink{
    display: block;
    margin: 0px 10px 0px 10px;
    padding: 8px 5px 8px 5px;
}
.btn {
    background-color: #262626;
}
.mainNav .active {
    background-color: #E5117C;
}
.mainNav .navLink:hover {
	background: #999999;
	color: #FFFFFF;
}
/* 768px:メインイメージ以下を上に移動
------------------------------------------------------------*/
.position {
    position: relative;
    top: -240px;
    z-index: 0;
    width: 800px;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 30px;
}

/* 768px:キャッチコピー（ホーム）
------------------------------------------------------------*/
.copy_home1 {
    margin-left: 20px;
    font-size: 45px;
}
.copy_home2 {
    font-size: 70px;
    color: #E5117C;
    text-align: center;
}
.copy_home3 {
    margin-right: 20px;
    font-size: 45px;
    text-align: right;
}
/* 768px:キャッチコピー（旨さの秘密）
------------------------------------------------------------*/
.copy_umasa1 {
    margin-left: 20px;
    font-size: 45px;
}
.copy_umasa2 {
    font-size: 65px;
    color: #E5117C;
    text-align: center;
}
.copy_umasa3 {
    font-size: 45px;
    text-align: center;
}
.copy_umasa4 {
    font-size: 65px;
    color: #E5117C;
    text-align: center;
}
.copy_umasa5 {
    margin-right: 20px;
    font-size: 45px;
    text-align: right;
}
/* 768px:燈篭（ホーム）
------------------------------------------------------------*/
.prof .txt {
    width: 450px;
}
.tourou {
    float:left;
}
.tourou img {
    width: 220px;
    position: relative;
    top: 86px;
    z-index: 1;
    margin-left: 50px;
}
/* 768px:お知らせ（ホーム）
------------------------------------------------------------*/
.news .newsItem {
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.news .newsTitle {
    margin: 0px 0px 0px 10px;
}

/* 768px:新鮮ホルモン・秘伝のタレ（旨さの秘密）
------------------------------------------------------------*/
.secret .secret_item {
    margin: 0px;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    flex-wrap: wrap;
}
.secret_text {
    width: 440px;
    margin-left: 40px;
}
/* 768px:席数（お店情報）
------------------------------------------------------------*/

.seat_section .seat_item {
    margin: 10px;
}
.seat_section h3{
    margin: 35px 15px 0px 15px;
}
.seat_section .pic img {
    width: 275px;
    cursor: pointer; /* 指マーク */
    cursor: hand; /* 指マーク IE6対応 */
}
.seat_section .seat_illsut {
    margin: 0px 35px 0px 35px;
    width: 275px;
}

/* 768px:駐車場（お店情報）
------------------------------------------------------------*/
.parking_text {
    width: 260px
} 
.parking .pic img {
    margin: -40px 20px 10px 20px;
    width: 450px;
}

/* 768px:交通のご案内（お店情報）
------------------------------------------------------------*/
.access_map iframe {
    height: 450px;
}

/* 768px:お知らせ（お知らせ）
------------------------------------------------------------*/
.news_img img {
    width: 500px;
    margin-top: 15px;
}
/* 768px:フッターロゴ
------------------------------------------------------------*/
footer {
    position: relative;
    top: -235px;
}
.footerLogo {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    background-image: url("../image/infoBase_blue.png");
    margin-top: 15px;
}
.shopName {
    background-image: none;
    margin-top: 38px; 
}
/* 768px:フッターお店情報
------------------------------------------------------------*/
.shopInfo {
    margin: 20px 0px 20px 50px; 
    background-image: none;
}
.shopInfoC {
    width: 100%;
    max-width: 428px;
    margin: 0 auto;
}
 
}

@media (min-width: 920px) {
}

@media (min-width: 1024px) {
}

@media (min-width: 1200px) {
}