@charset "utf-8";
/* CSS Document */
/******************************************************************************
 Default CSS Reset
******************************************************************************/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td,figure{
 margin:0;
 padding:0;
}
table{
 border-collapse:collapse;
 table-layout:fixed;
}
fieldset,img{
 border:0;
}
address,caption,cite,code,dfn,em,th,var{
 font-style:normal;
 font-weight:normal;
}
ol,ul{
 list-style:none;
}
caption{
 text-align:left;
}
h1,h2,h3,h4,h5,h6{
 font-size:100%;
 font-weight:normal;
}
img {
 vertical-align: bottom;
 /* chormeで画像のぼやけ回避 */
 -webkit-backface-visibility: hidden; 
}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type="submit"]:-webkit-search-decoration,
input[type="button"]:-webkit-search-decoration {
  display: none;
}
input[type="submit"]:focus,
input[type="button"]:focus {
  outline-offset: -2px;
}
.flexSim{
	display: -webkit-flex;
	display: flex;
}
.flex{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

/*====================
{{スマホを基本設計にする}}
 - 〜479px：SP縦
 - 480px〜599px：SP横
 - 600px〜959px：タブレット
 - 960px〜1279px：小型PC
 - 1280px〜：大型PC
====================*/
body {
 margin:0;
 padding:0;
 font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", 'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
 color: #231815;
 word-wrap : break-word;
 -webkit-font-smoothing: antialiased;
 position: relative;
 background: #FFF;
 line-height: 1.3;
}
a {
 color: #231815 !important;
 outline:none;
 text-decoration: none;
 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:focus, *:focus { outline:none; }
a:hover,
a.hover {
 color: #231815 !important;
 text-decoration: none !important;
}
a:hover img {
 opacity: 0.8;
 filter: alpha(opacity=80);
 -webkit-transition: 0.3s ease-in-out;
 transition: 0.3s ease-in-out;
}

/* 〜479px：SP縦
------------------------------ */
#wrapper {
 width: 100%;
 position: relative;
 height: auto !important;
 height: 100%;
 min-height: 100%;
 font-size:14px;
 line-height:1.5em;
}
#wrapper img{
 width: 100%;
 height: auto;
}
.inner {
	margin: 0px auto;
	width: 90%;	
}
header {
 background-color: #01c4ca;
}
header .logo a{
 margin-left: auto;
	padding-bottom: 10%;
	width: 28%;
 background-image: url("../images/vino_logo_sp.png");
 background-repeat: no-repeat;
 background-position: center center;
 -webkit-background-size: 100% auto;
 background-size: 100% auto;
 text-indent: 100%;
 white-space: nowrap;
 overflow: hidden; 
 display: block;
}
.mi {
	margin: 0px auto 15px auto;
	width: 90%;
	padding: 30px 0 20px 0;
	font-size: 135%;
	color: #f5c64e;
	border-bottom: 2px solid #f5c64e;
	font-weight: 600;
	text-align: center;
	line-height: 1.5em;
}
.submi {
	padding: 10px 0 5px 0;
	font-size: 121%;
	color: #333333;
	font-weight: 600;
	line-height: 1.5em;
}
.text_01 {
	color: #545454;
}
.text_02 {
 font-size: 80%;
	color: #545454;
}



/* 480px〜599px：SP横
------------------------------ */
@media screen and (min-width:480px) and (max-width:599px) { 
}

/* 600px〜959px：タブレット
------------------------------ */
@media screen and (min-width:600px) and (max-width:959px) {
}

/* 960px〜1279px：小型PC
------------------------------ */
@media screen and (min-width:960px) and (max-width:1279px) {
}
/* 1280px〜：大型PC
------------------------------ */
@media screen and (min-width:768px) {
.pc_none {
	display: none;
}
.pcFlex {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	}
	.pcRe {
		-webkit-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}
#wrapper {
 font-size:18px;
}
header {
 background-color: #FFF;
}
header .logo a{
 margin: 0 auto;
 padding: 0;
	width: 20%;
 height: 74px;
 background-image: url("../images/vino_logo.png");
 background-repeat: no-repeat;
 background-position: center center;
 -webkit-background-size: 100% auto;
 background-size: 100% auto;
 text-indent: 100%;
 white-space: nowrap;
 overflow: hidden; 
 display: block;
}
.inner {
	margin: 0px auto;
	max-width: 1200px;
}
.mi {
	margin: 0px auto;
	width: 100%;
	border-top: 2px solid #f5c64e;
	margin-bottom: 30px;
	padding: 30px 0;
}
.pcflex > *{
	width: 48%;
}	
}