@charset "utf-8";

/*
html5doctor.com Reset Stylesheet
v1.4
2009-07-27
Author: Richard Clark - http://richclarkdesign.com
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, h7,p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, article,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
body {
    line-height:1;
}

article, aside, dialog, figure, footer, header,
hgroup, nav, article {
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    border:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted #000;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}
/* End Reset CSS */

/*page内の文字色*/
html {
    color: #54514c;
    font-size: 10px;
}
body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/*heaser部分*/
header {
    z-index: 100;	
    position: fixed;
    width: 100%;
    height: 60px;
    background-color: #fff;
}
header h1 {
    position: absolute;
    top: 18px;
    left: 15px;
}
header .logo img {
    width: 200px;
}

/*naviエリア設定*/
header nav {
    box-sizing: border-box;
    position: fixed;
    top: 60px;
    display: none;
    /*width: 100%;*/
    width: 80%;/*sidemenu幅*/
    height: calc(100% - 60px);
    background: #fff;
    opacity: 0.8;/*半透明*/
    /* 3. スライドメニューの場合 */
    display: block;
    right: -100%;
    transition: right .5s;
    /* ここまで */
}
/* 3. スライドメニューの場合 */
header nav.sp_open {
    right: 0;
}
/* ここまで */

/*Navの表示？*/
header nav ul {
    position: absolute;
    top: 35%;/*sidemenuのTopマージン*/
    left: 50%;
    transform: translate(-50%, -50%);
}

/*navのボーダー設定*/
.global_nav li {
    /*各行間のボーダーライン*/
	/*rgbaのaは透明度＝0.1を指定：solid：線形*/
	border-top: 1px solid black;
    /*下側に影を付けるイメージ*/
    border-bottom: 1px solid black;
}

/*side menu設定*/
header nav ul li a {
    display: block;
    padding: 25px;
    border-radius: 5px;
    color: #000;
    font-size: 1.8rem;
    text-align: center;
    text-decoration: none;
}

/*topimg下のPop文言設定*/
.pop01 {
    font-size: 18px;
    text-align: center;
}

/*トグルメニュー設定*/
#drawer_toggle {
    z-index: 200;
	box-sizing: border-box;
    position: absolute;
    top: 0;
    right: 0;
	display: inline-block;
    width: 60px;
    height: 60px;
}
#drawer_toggle span {
    position: absolute;
    top: 19px;
    left: 17px;
    display: inline-block;
    width: 30px;
    height: 3px;
    border-radius: 2px;
    /*background-color: #666;*/
    background-color: #2865a4;
    vertical-align: top;
}
#drawer_toggle span:nth-child(2) {
    margin-top: 10px;
}
#drawer_toggle span:last-child {
    margin-top: 20px;
}
#drawer_toggle.open span {
    top: 29px;
    left: 14px;
    width: 35px;
    margin: 0;
}
#drawer_toggle.open span:first-child {
    transform: rotate(45deg);
}
#drawer_toggle.open span:nth-child(2) {
    display: none;
}
#drawer_toggle.open span:last-child {
    transform: rotate(-45deg);
}
main {
    font-size: 1.6rem;
}

/*main(hanbai)一覧のタイトルBar柱部分設定*/
#hashira p {
	box-sizing: border-box;
    width: 100%;
    padding-left: 15px;
    padding-top: 8px;
    background-color: #dd1e9d;
    height: 50px;
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    line-height: 40px;
}

/*info、main業務案内の柱部分設定*/
main h2 {
	box-sizing: border-box;
    width: 100%;
    padding-left: 15px;
    background-color: #06183c;/*柱の色*/
    color: #fff;
    font-weight: normal;
    line-height: 40px;
}

main h2 span {
    display: none;
}
#key_visual {
    width: 100%;
    max-width: 1500px;
    padding-top: 30px;/*ここを変更*/
    margin: 0 auto;
}
#key_visual img {
    width: 100%;
    vertical-align: bottom;
}
#information ul {
    list-style: none;
    font-size: 1.4rem;
}
#information ul li {
    padding: 5px 10px;
}

/*informationの列の設定*/
#information ul li:nth-child(even) {
    background-color: #f5f3f0;
}
#information ul li time {
    display: block;
    margin: 5px 0;
    font-size: 1.2rem;
}
#information ul li p {
    line-height: 1.5;
}
#information ul li p::before {
    content: "▶︎";
    margin-right: 5px;
    font-size: 1.2rem;
    vertical-align: top;
}
.container {
    display: flex;/*画像横並び*/
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}
#gourmet .container {
    padding: 10px;/*画像の上下左右スペース*/
}
#gourmet h3 {
    margin-bottom: 7px;
}
#gourmet article {
    width: 100%;
    margin-bottom: 30px;
}
#gourmet article figure {
    margin-bottom: 10px;
}
#gourmet article figure img {
    width: 100%;
}
#gourmet article p {
    font-size: 1.4rem;
}
#gourmet article p::before {
    content: "-";
    padding: 0 10px;
}

/*販売ページのgourmet_box枠内設定*/
/*これはNGか？*/
#gourmet_box {
    display: flex;
    justify-content: space-between;/*画像の間隔*/
    align-items: center;
    padding-top: 15px;
    margin-bottom: 20px;
}

/*販売ページの画像の縮小*/
#gourmet_box figure img {
    width: 70%;
}

/*縦Barの設定*/
#gourmet .box_ttl {
    padding: 5px 0 5px 10px;
    border-left: 4px solid #0d1b97;
    margin-bottom: 10px;
}

/*キャプションタイトル下のBox設定*/
#gourmet .area li {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
    margin-right: 5px;
    /*background-color: #b99566;*/
    background-color: #8b6909;
    color: #FFF;
    font-size: 1rem;
    line-height: 1;
    text-align: center;
}

/*01図の横の文字設定*/
#gourmet .moji h4 {
    font-size: 22px;
}
#gourmet .moji2 h5 {
    font-size: 14px;
}
#gourmet .moji2 h6 {
    font-size: 12px;
}

footer {
    text-align: center;
}
footer .logo {
    margin: 15px 0 10px;
}
footer .logo img {
    width: 450px;
}

/*footerの枠設定*/
footer ul {
    padding: 20px 0;
    background-color: #0e1536;
    text-align: center;
}
footer ul li {
    width: 280px;
    height: 30px;
    border: 1px solid #fff;
    border-radius: 2px;
    margin: 10px auto;
    font-size: 1.4rem;
    list-style: none;/*中黒点を消す*/
    line-height: 30px;
    text-decoration: none;
}
footer ul li a {
    display: block;
    text-decoration: none;
    color: white;
    transition: color .3s;
}
footer ul li a:hover {
    background-color: #fff;
    color: #54514c;
}
footer p {
    text-align: center;
}
footer p small {
    font-size: 1rem;
    line-height: 3em;
}

/*selectの大きさ指定*/
.selectbox1 {
    font-size: 20px;
    width: 60px;
    margin-left: 100px;
}

/*購入ボタンの設定*/
.submit {
    width: 160px;
    height: 20px;
    margin-left: 100px;
}

.txtarea01 {
    padding: 20px;
}

@media (min-width: 768px) {
    html {
        font-size: 12px;
    }
    header {
        height: 80px;
    }
    header h1 {
        top: 24px;
        left: 25px;
    }
    header .logo img {
        width: 250px;
    }
    header nav {
        display: inline-block;
        position: absolute;
        top: 22px;
        right: 0;
        width: auto;
        height: auto;
        margin-right: 15px;
        font-size: 1.4rem;
        opacity: 1;
    }
    header nav ul {
        position: relative;
        top: 0;
        left: 0;
        transform: unset;
    }
    header nav ul li {
        display: inline-block;
        height: 35px;
        border-radius: 2px;
		line-height: 35px;
    }

    /*nav内の文字設定*/
    header nav ul li a {
        display: block;
		padding: 0 15px;
        color: #000000;
        font-size: unset;
        text-decoration: none;
        transition: color .3s;
    }

    /*Mouse選択時のBGの色*/
    header nav ul li:hover {
        background-color: #5059ac;
    }
    header nav ul li:hover a {
    	color: #fff;
    }
    #drawer_toggle {
        display: none;
    }
    #key_visual {
        padding-top: 80px;
        margin-bottom: 30px;
    }
    main {
        padding-bottom: 50px;
    }
    main h2 {
        padding-left: 20px;
    }
    #information {
        margin-bottom: 50px;
    }
    #information ul {
        font-size: 1.2rem;
    }
    #information ul li time {
        display: inline-block;
        padding-right: 10px;
    }
    #information ul li p {
        display: inline-block;
        line-height: 1;
    }
    #information ul li p::before {
        margin-right: 10px;
        vertical-align: middle;
    }
    #gourmet .container {
		justify-content: space-between;/*画像の間隔*/
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
    }
    #gourmet article {
        width: calc(50% - 5px);
        padding: 0;
    }
    /*Logo下のPop文言設定*/
    .pop01 {
    font-size: 26px;
    text-align: center;
    }

    /*moji枠設定*/
    .moji {
        margin-left: 12px;
        margin-right: 12px;
    }

    /*moji2枠設定*/
    .moji2 {
        margin-left: 12px;
        margin-right: 12px;
    }

    /*01図の横の文字設定*/
    #gourmet .moji h4 {
    font-size: 28px;
    }
    #gourmet .moji2 h5 {
    font-size: 16px;
    }
    #gourmet .moji2 h6 {
        font-size: 14px;
    }
    
    footer ul li {
        display: inline-block;
        width: 120px;
        margin: 0 10px;
    }
    footer ul li a {
        color: #fff;
    }
    footer .logo {
        margin: 20px 0 5px;
    }
    footer .logo img {
        width: 350px;
    }
}

@media (min-width: 1000px) {
    main {
        width: 1000px;
        margin: 0 auto;
    }
    #gourmet .container {
        padding: 10px 0;
    }
    #gourmet article {
        width: calc(50% - 5px);
    }
    /*Logo下のPop文言設定*/
    .pop01 {
    font-size: 32px;
    text-align: center;
    }
    /*01図の横の文字設定*/
    #gourmet .moji h4 {
    font-size: 32px;
    }
    #gourmet .moji2 h5 {
    font-size: 20px;
    }
    #gourmet .moji2 h6 {
        font-size: 18px;
    }

}