@media screen and (max-width:768px)
{
	body
	{
		font-size: 13px ;	/* 文字サイズ */
	}

    #header{
        display: none;
    }

	div.nav_sp{
		display: block;
		position: absolute;
		width: 100%;
		top: 0;
		z-index: 9999;
	}

    div.footer{
		display: none;
	}
	div.footer_sp{
		display: block;
	}

	/* ロゴ画像 */
	.logo
	{
		width: 200px ;
	}

	.footer{
		display: none;
	}

	.wrapper
	{
		width: auto ;
		padding: 0 10px ;
	}

    .today_inquiry {
        width: 100%;
    }

    .today_inquiry2 {
        width: 50%;
    }

    .main {
        width: 710px;
        padding: 20px;
        min-height: 980px;
        margin-top: 10%;
    }

    main {
        width: 710px;
        padding-top: 70px;
        min-height: 980px;
        margin-top: 0%;
    }

	.side
	{
		width: auto ;
    	visibility: hidden;
		display: none;
	}

    .top_corner_list {
        width: 100%;
        height: auto;
        display: inline-block;
        margin-bottom: 30px;
        margin: 0 auto;
        margin-top: 30px;
    }

    #top-head,.inner {
        width: 100%;
        padding: 0;
    }
    #top-head {
        position: fixed;
        margin-top: 0;
    }
    /* Fixed reset */
    #top-head.fixed {
        padding-top: 0;
        background: transparent;
    }
    #mobile-head {
        background: #fff;
        width: 100%;
        height: 56px;
        z-index: 999;
		height: 100px;
        position: relative;
		border-bottom: 5px solid #d0111b;
    }
    #top-head.fixed .logo,
    #top-head .logo {
		position: absolute;
		left: 13px;
		/* top: 13px; */
		color: #333;
		font-size: 26px;
		margin-top: 0px;
    }
    #global-nav {
        position: absolute;
        /* 開いてないときは画面外に配置 */
	    top: -468px;
        background: #333;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
    }
    #global-nav ul {
        list-style: none;
        position: static;
        right: 0;
        bottom: 0;
        font-size: 14px;
    }
    #global-nav ul li {
        float: none;
        position: static;
    }
    #top-head #global-nav ul li a,
    #top-head.fixed #global-nav ul li a {
        width: 100%;
        display: block;
        color: #fff;
        padding: 18px 0;
    }
    #nav-toggle {
        display: block;
    }
    /* #nav-toggle 切り替えアニメーション */
    .open #nav-toggle span:nth-child(1) {
        top: 11px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }
    .open #nav-toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    .open #nav-toggle span:nth-child(3) {
        top: 11px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }
    /* #global-nav スライドアニメーション */
    .open #global-nav {
        /* #global-nav top + #mobile-head height */
        -moz-transform: translateY(556px);
        -webkit-transform: translateY(556px);
        transform: translateY(556px);
    }
    .for_sp
    {
        display: inline-block;
        width: 100%;
    }

    .for_pc
    {
        visibility:hidden;
        display: none;
    }
    .mbs_common_header_genremenu{
        display: none;
    }
    .mbs_common_header_subgenremenu{
        display: none;
    }
    #header .oa_time_img {
        display: block;
        width: 160px;
        height: 31.14px;
    }

    /*accordion*/
    .accordion-box {
        position: relative;
    }
    .accordion-box label {
            height: 140px; /* グラデーションの高さ */
            cursor: pointer;
            text-align: center;
            font-size: 12px;
            position: absolute;
            bottom: 0;
            width: 100%;

            /* 以下グラデーションは「背景が白」に併せて設定しています */ 
            background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
            background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
            background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
            background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    }
    .accordion-box input:checked + label {
            background: inherit; /* 開いた時には背景グラデーションを消す */
    }
    .accordion-box label:after {
            content: "続きをよむ"; /* ラベルの文字 */
            letter-spacing: .05em;
            line-height: 2.5rem;
            position: absolute;
            bottom: 20px;
            left: 50%;
            -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
            color: #fff;
            background-color: #c70044;
            width: 18.75rem;
            -webkit-border-radius: 20px;
            -moz-border-radius: 20px;
            border-radius: 20px;
    }
    .accordion-box label:before {
            font-weight: 700;
            position: absolute;
            bottom: 30px;
            left: 50%;
            -webkit-transform: translate(-140px, 0);
            transform: translate(-140px, 0);
            z-index: 1;
            -webkit-border-radius: 100%;
            -moz-border-radius: 100%;
            border-radius: 100%;
            width: 20px;
            height: 20px;
            line-height: 20px;
    }
    .accordion-box input {
            display: none;
    }
    .accordion-box .accordion-container {
            overflow: hidden;
            height: 495px; /* 開く前に見えている部分の高さ */
            -webkit-transition: all 0.1s;
            -moz-transition: all 0.1s;
            -ms-transition: all 0.1s;
            -o-transition: all 0.1s;
            transition: all 0.1s;
    }


    .accordion-box input:checked + label {
            /* display: none ; 閉じるボタンは要らないとき */
    }
    .accordion-box input:checked + label:after {
            content: "閉じる";
    }

    .accordion-box input:checked ~ .accordion-container {
            height: auto;
            padding-bottom: 80px; /* 閉じるボタンのbottomからの位置 */
            -webkit-transition: all 0.1s;
            -moz-transition: all 0.1s;
            -ms-transition: all 0.1s;
            -o-transition: all 0.1s;
            transition: all 0.1s;
    }

    .corner-main-loside {
        width: 80%;
        margin: 0 auto;
    }


    .recipe_inde {
        float: left;
        margin-left: 0px;
        width: 278px;
        margin-bottom: 20px;
    }

    button.print {
        font-size: 1.4em;
        font-weight: bold;
        padding: 10px 30px;
        background-color: #e7250f;
        color: #fff;
        border-style: none;
        display: block;
        margin: 0 auto;
        cursor: hand;
        cursor:pointer;
    }
    
    button.print:hover {
        background-color: #f9827f;
        color: #fff;
    }
}

