@charset "UTF-8";
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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

@media screen and (max-width: 959px) {
  .fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
  h1 {
    font-size: 1.5em;
    font-weight: bold;
  }
  /* オーバーレイ */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
    z-index: 3;
  }
  /* ヘッダー */
  header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }
  header .inner {
    position: relative;
    padding: 1.5em;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  /* ナビゲーション */
  header nav {
    overflow: auto;
    position: fixed;
    top: 0;
    right: -60%;
    width: 60%;
    max-width: 320px;
    height: 100%;
    background: #fff;
    opacity: 0;
    z-index: 9999;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  /* ナビゲーション：アクティブ時 */
  header.navOpen nav {
    opacity: 1;
    right: 0;
    transition: 0.5s;
    /* 追加 */
  }
  header nav ul {
    border-top: 1px solid #ccc;
  }
  header nav ul li {
    border-bottom: 1px solid #ccc;
  }
  header nav ul li a {
    position: relative;
    display: block;
    padding: 20px;
    color: #555;
    font-weight: bold;
    text-decoration: none;
    font-size: 0.9rem;
  }
  header nav ul li a:hover {
    background: #f2f2f2;
  }
  header nav ul li a:before {
    position: absolute;
    top: 50%;
    right: 1.5em;
    display: inline-block;
    content: "";
    width: 7px;
    height: 7px;
    margin-top: -4px;
    margin-right: -4px;
    vertical-align: middle;
    border-top: 3px solid #7e4d1c;
    border-right: 3px solid #7e4d1c;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
  }
  /* ナビゲーションアイコン */
  header .navBtn {
    display: block;
    width: 30px;
    position: fixed;
    top: 18px;
    right: 15px;
    cursor: pointer;
    z-index: 999;
  }
  header .navBtn.right {
    right: 65%;
    transition: 0.3s;
  }
  header .navBtn span {
    display: block;
    height: 4px;
    width: 100%;
    background: #7e4d1c;
    border-radius: 2px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  header .navBtn span:nth-of-type(2),
  header .navBtn span:nth-of-type(3) {
    margin-top: 5px;
  }
  /* ナビゲーションアイコン：アクティブ */
  header.navOpen .navBtn span:nth-of-type(1) {
    -webkit-transform: translateY(9px) translateX(0) rotate(45deg);
    -ms-transform: translateY(9px) translateX(0) rotate(45deg);
    transform: translateY(9px) translateX(0) rotate(45deg);
  }
  header.navOpen .navBtn span:nth-of-type(2) {
    margin-top: 5px;
    opacity: 0;
    -webkit-transform: translateY(9px);
    -ms-transform: translateY(9px);
    transform: translateY(9px);
  }
  header.navOpen .navBtn span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) translateX(0) rotate(-45deg);
    -ms-transform: translateY(-9px) translateX(0) rotate(-45deg);
    transform: translateY(-9px) translateX(0) rotate(-45deg);
  }
  /*#contents {
        margin-top : 80px;
        padding    : 1em 1.5em;
        line-height: 1.5;
    }*/
  /*#contents p {
        margin-bottom: 1em;
    }*/
}

ul.breadcrumb {
  margin-left: 10%;
  margin-top: 40px;
}

ul.breadcrumb li {
  float: left;
  margin-right: 30px;
  font-size: 0.9rem;
  color: #333;
  position: relative;
}

ul.breadcrumb li:first-child::after {
  content: ">";
  position: absolute;
  top: 0;
  right: -20px;
}

ul.breadcrumb li:last-child {
  margin-right: 0;
}

ul.breadcrumb li a {
  color: #333;
  text-decoration: underline;
}

ul.breadcrumb li a:hover {
  text-decoration: none;
}

@media screen and (max-width: 959px) {
  ul.breadcrumb {
    margin-left: 5%;
    margin-top: 20px;
  }
  ul.breadcrumb li {
    font-size: 0.8rem;
  }
}

a {
  text-decoration: none;
}

footer {
  color: #444;
}

footer a.top {
  display: block;
  background: #59493f;
  width: 100%;
  height: 50px;
  transition: 0.3s;
}

footer a.top:hover {
  opacity: 0.8;
}

footer a.top i {
  color: #fff;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
}

@media screen and (max-width: 959px) {
  .pc {
    display: none;
  }
  .inner {
    width: 90%;
    margin: 0 auto;
  }
  header {
    background: transparent;
  }
  header h1.sp {
    background: #fff;
  }
  header h1.sp img {
    width: 30%;
    margin: auto;
    display: block;
  }
  footer ul li a {
    color: #666;
    transition: 0.3s;
  }
  footer ul li a:hover {
    opacity: 0.7;
  }
  footer ul.flink__01 {
    padding: 20px 0 10px;
    width: 100%;
    display: block;
    margin: auto;
  }
  footer ul.flink__01 li {
    font-size: 0.8rem;
    margin-bottom: 10px;
  }
  footer ul.flink__01 li:last-child {
    margin-bottom: 0;
  }
  footer ul.flink__02 {
    padding: 30px 0;
  }
  footer ul.flink__02 li {
    font-size: 0.9rem;
    margin-right: 20px;
    text-align: center;
    margin-bottom: 20px;
  }
  footer ul.flink__02 li:last-child {
    margin-bottom: 0;
  }
  footer ul.flink__02 li a {
    font-size: 0.8rem;
  }
  footer p.copyright {
    text-align: center;
    font-size: 0.7rem;
    margin: 10px 0;
  }
}

@media screen and (min-width: 960px) {
  .inner {
    width: 95%;
    margin: 0 auto;
  }
  #header {
    width: 100%;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 999;
  }
  /* ロゴ */
  nav {
    padding: 10px 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    width: 95%;
    margin: auto;
  }
  nav h1 {
    width: 150px;
  }
  nav h1 img {
    width: 100%;
  }
  nav ul {
    text-align: center;
    width: calc(100% - 150px);
  }
  nav ul li {
    position: relative;
    display: inline-block;
    text-align: center;
    margin-right: 20px;
    line-height: 2;
  }
  nav ul li:last-child {
    margin-right: 0;
  }
  nav ul li a {
    color: #666;
    position: relative;
    transition: 0.3s;
    height: 30px;
  }
  nav ul li a:hover {
    opacity: 0.8;
    color: #F18F2C;
  }
  footer ul {
    display: block;
    margin: auto;
  }
  footer ul li a {
    color: #666;
    transition: 0.3s;
  }
  footer ul li a:hover {
    opacity: 0.7;
  }
  footer ul.flink__01 {
    padding: 20px 0 10px;
    width: 35%;
  }
  footer ul.flink__01 li {
    font-size: 0.8rem;
    margin-bottom: 15px;
  }
  footer ul.flink__01 li:last-child {
    margin-bottom: 0;
  }
  footer ul.flink__02 {
    padding: 30px 0 40px;
    width: 55%;
  }
  footer ul.flink__02 li {
    font-size: 0.9rem;
    float: left;
    text-align: center;
    width: calc(100% / 3);
    position: relative;
  }
  footer ul.flink__02 li::after {
    position: absolute;
    content: "|";
    top: 0;
    right: 0;
  }
  footer ul.flink__02 li:last-of-type::after {
    content: "";
  }
  footer ul.flink__02 li:last-child {
    margin-right: 0;
  }
  footer p.copyright {
    clear: both;
    text-align: center;
    font-size: 0.8rem;
    margin: 10px 0;
  }
}

@media screen and (min-width: 1024px) {
  .inner {
    width: 1024px;
    margin: 0 auto;
  }
  /* ロゴ */
  h1 {
    display: table-cell;
    vertical-align: middle;
  }
  h1 img {
    width: 300px;
  }
}

/*# sourceMappingURL=common.css.map */


/* クリスマスキャンペーン */
#campaign {
	padding:50px 0;
}

@media screen and ( max-width:768px ){
#campaign {
	padding:10px 0;
}
}

#campaign section {
	width:880px;
	margin:0 auto;
}

@media screen and ( max-width:768px ){
#campaign section {
	width:100%;
}
}

#campaign h2 {
	background:url("../img/campaign_tree.png") no-repeat;
	text-align:left;
	padding:50px 50px 50px 130px;
	font-size:3.1rem;
	line-height:1.2;
	display:inline-block;
	color:#0b1430;
}

p.urikire{text-align:center;font-size:1.8em;}

@media screen and ( max-width:768px ){
#campaign h2 {
	-webkit-background-size:contain;
	background-size:contain;
	padding:50px 20px 40px 130px;
	font-size:1.4rem;
	color:#0b1430;
}
}

#campaign p#campaigndate {
	font-size:1.8rem;
	color:#0b1430;
	text-align:center;
}

@media screen and ( max-width:768px ){
#campaign p#campaigndate {
	font-size:1.0rem;
	text-align:center;
}
}

#campaign p#campaignsanta {
	margin:40px 0;
}

@media screen and ( max-width:768px ){
#campaign p#campaignsanta {
	margin:10px 0;
}
}

#campaign p#campaignpresent {
	background:#f8e2e2;
	padding:30px 0;
	text-align:center;
	font-size:1.2rem;
	color:#0b1430;
	border-radisus:20px;
	-webkit-border-radius:20px;
	-moz-border-radius:20px;
}

@media screen and ( max-width:768px ){
#campaign p#campaignpresent {
	background:#f8e2e2; /* ここ追記 */
	padding:20px 20px;
	font-size:1.0rem;
	margin:20px;
	text-align:center;
}
}
@media screen and ( max-width:768px ){
#campaign img {max-width: 100%;}
}

@media screen and ( max-width:768px ){
p.urikire{text-align:center;font-size:1.2em;}
}

/* ******************************************************************
店舗上部ご案内　遅延・臨時休業など */
****************************************************************** */

#chien b{font-size:15px;}
#chien b small{font-weight:normal;}
#chien p {background-color:#5A2E00;color:#fff;padding:10px;width:100%;text-align:center;}
@media screen and ( max-width:768px ){
	#chien p {text-align:left;font-size:0.8rem;line-height:1.2em;width:95%;}
}



