@charset "utf-8";

/*********************************
  お届けショップ越後 共通
 *********************************/
@font-face {
  /* 游ゴシック */
  font-family: 'YuGothic M';
  src: local('Yu Gothic Medium'),
       local('Yu Gothic');
  font-weight: 500;
}

@font-face {
  /* メイリオ */
  font-family: 'Meiryo M';
  src: local('メイリオ'),
       local('Meiryo');
  font-weight: 500;
}


/* 全メディア共通 ====================*/
/* すべて ---------- */
*,
*:before,
*:after {
  /* サイズにpadding,borderを含める */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

/* 選択色変更 */
::-moz-selection {
  color: white;
  background: rgba(132, 202, 56, .7);
  text-shadow: none;
}

::selection {
  color: white;
  background: rgba(132, 202, 56, .7);
  text-shadow: none;
}

/* タグ(全般) ---------- */
/* bodyタグ共通 */
body {
  width: 100%;
  min-width: 320px;/*最小幅*/
  font-family: 'YuGothic M', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'Meiryo M', Osaka, 'MS P ゴシック', 'MS P Gothic', sans-Serif;
  background-image: url("../img/wallpaper.jpg");
  background-position: 0 0;
  background-repeat: repeat;
}

@media screen\0 {/*IE…游ゴシックの場合に文字の下に余白ができるため、メイリオを使用*/
  body {
    font-family: 'Meiryo M', 'YuGothic M', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Osaka, 'MS P ゴシック', 'MS P Gothic', sans-Serif;
  }
}/* @media screen\0 { */

/* 各hタグ先頭 */
h1.first,
h2.first,
h3.first,
h4.first,
h5.first,
h6.first {
  margin-top: 0;
}

/* aタグ共通 */
a {
  text-decoration: none;
}

a:link {
  color: #000d99;
}

a:visited {
  color: #4c2472;
}

a:hover {
  color: #cc3434;
}

a:active {
  color: #cc3434;
}

a:hover img {
  opacity: 0.8;
  transition-duration: 0.3s;
}

/* imgタグ共通 */
img {
  border: none;
}

/* クラス(全般) ---------- */
/* 最大幅 */
.max-width {
  width: 100%;
  max-width: 1024px;/*width:100%ではない場合の設計最大幅*/
  margin: 0 auto;/*ウィンドウ幅がmax-widthを超えた場合は中央揃え*/
  padding: 0 5px;
}

/* 上下左右中央揃え(コンテナに適用) */
.center-container {
  margin: 0 auto;
  text-align: center;
  vertical-align: middle;
}

/* イメージ最大100%(横幅基準) */
.img-max100w {
  max-width: 100%;
  height: auto;
}

/* float回り込み解除 */
.clear-fix:after {
  content: '';
  clear: both;
  display: block;
}

/* 行頭記号(・)なしリスト */
ul.none-mark {
  list-style: none;
  padding-left: 0;
}

/* 段落字下げ */
.paragraph-indent {
  text-indent: 1em;
}

/* 改行しない文節 */
span.dont-break-sentence {
  display: inline-block;
  text-indent: 0;
}

/* document内パーツ ----- */
/* ヘッダー */
header {
  padding: 1em 0;
}

#title-logo-wrapper {
  margin: 0 20px;
}

#title-logo-wrapper a:hover img {
  opacity: 0.9;
}

/* フッター */
hr#hr-footer {
  margin: 3em 0 1em 0;
}

footer {
  max-width: 950px;
  margin: 0 auto;
}

#footer-container {
  margin: 0 30px;
}

dl#footer-shop-info {
  margin-top: 0.5em;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  background-color: rgb(132, 202, 56);
}

dl#footer-shop-info > dt,
dl#footer-shop-info > dd {
  padding: 0.25em 0 0.1em 0.25em;
}

dl#footer-shop-info > dt {
  float: left;
  width: 7em;
  font-weight: 600;
  color: white;
  background-color: rgb(132, 202, 56);
  border-top: 1px solid #ccc;
 
}

dl#footer-shop-info > dd {
  margin-left: 7em;
  margin-inline-start: 7em;
  background-color: #ffffff;
  border-top: 1px solid #ccc;
}

dl#footer-shop-info > dd:after {
  content: '';
  clear: both;
  display: block;
}

ul#footer-access-list {
  margin: 0 auto;
}

ul#footer-access-list > li {
  display: block;/*縦並び*/
  vertical-align: top;
  margin-top: 1.5em;
}

@media only screen and (min-width: 550px) {/*画面幅550px～の場合*/
  ul#footer-access-list {
    margin: 1.5em auto 0 auto;
  }
  
  ul#footer-access-list > li {
    display: inline;/*横並び*/
    margin-top: 0;
    margin-right: 1.5em;
    vertical-align: top;
  }
  
  ul#footer-access-list > li:last-child {
    margin-right: 0;
  }
}

address {
  width: 225px;
  height: 126px;
  display: inline-block;
  padding: 5px 3px;
  border: solid 2px #773E18;
  background: #F8CBAD;
  font-size: 1em;
  font-weight: 400;
}

address > div {
  font-weight: 600;
  margin-bottom: 10px;
}

/* ToTopナビ */
nav#to-top {
  position: fixed;
  bottom: -110px;
  right: 10px;
  cursor: pointer;
  z-index: 9999;
}

nav#to-top img {
  background-color: #8f4;/*IE8*/
  background-color: rgba(128,255,64,0.6);
  /* 角丸枠 */
  border: solid 1px #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}

nav#to-top img:hover {
  background-color: #8f4;/*IE8*/
  background-color: rgba(128,255,64,0.4);
}

/* 改行しない文節 */
span.not-break {
  display: inline-block;
  text-indent: 0;
}

/*========== 全メディア共通(ここまで) */

/* 印刷 ====================*/
@page {
  size: A4;
  margin: 12.7mm 9.7mm;
}

@media print {
/* 構成
   ・横並び
   ・ToTopナビ非表示
*/
  /* タグ(全般) ---------- */
  body {
    width: 1024px;
    -webkit-print-color-adjust: exact;
  }
  
  /* document内パーツ ----- */
  /* フッター */
  ul#footer-access-list {
    margin: 1.5em auto 0 1.5em;
  }
  
  ul#footer-access-list > li {
    display: inline;/*横並び*/
    margin-top: 0;
    margin-right: 1.5em;
  }
  
  ul#footer-access-list > li:last-child {
    margin-right: 0;
  }
  
  /* ToTopナビ */
  nav#to-top {
    display: none;
  }
}/* @media print { */
/*========== 印刷(ここまで) */
