@charset "utf-8";

/* ****************************************************************************************************
   * 全体
**************************************************************************************************** */

body {
  color: #3e2001;
  font: 15px/1.5 "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

a {
  color: #9b732b;
}

.body {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.section ~ .section {
  margin-top: 10%;
}

.column ~ .column {
  margin-top: 3em;
}

.sp-content {
  display: none;
}

@media screen and (max-width:736px) {
  .pc-content {
    display: none;
  }
  .sp-content {
    display: block;
  }
  body {
    font-size: 14px;
  }
  .body {
    width: 100%;
    padding-left: 3.125%;
    padding-right: 3.125%;
  }
}

/* ****************************************************************************************************
   * header
**************************************************************************************************** */

#header {
  background: #fff;
}

#header .description {
  font-size: 0.8em;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  padding: 0.5em;
  background: #3e352c;
}

#header .description strong {
  font-weight: normal;
}

#header .body {
  position: relative;
  width: 1000px;
  display: table;
  padding: 20px 0 10px;
  margin-top: 0;
}

#header .body > * {
  display: table-cell;
  vertical-align: middle;
}

#header .body:before {
  content: '';
  display: block;
  width: 73px;
  height: 73px;
  position: absolute;
  top: 1em;
  right: -100px;
  background: url(../../_images/_common/shichimaru-1.png) no-repeat;
  background-size: contain;
}

@media screen and (max-width:736px) {
  #header .body {
    width: 100%;
    padding: 3.125%;
  }
  #header .body:before {
    content: none;
  }
  #header .pc-content {
    display: none;
  }
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * nav
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#header .nav {
  width: 35%;
}

#header .nav ul,
#header .nav ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}

#header .nav ul {
  letter-spacing: -0.4em;
}

#header .nav ul li {
  display: inline-block;
  vertical-align: top;
  letter-spacing: normal;
}

#header .nav ul li ~ li {
  margin-left: 0.8em;
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * logo
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#header .logo {
  width: 30%;
  text-align: center;
}

@media screen and (max-width:736px) {
  #header .logo {
    width: 60%;
  }
  #header .logo img {
    width: 100%;
  }
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * aside
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#header .aside {
  width: 35%;
}

#header .aside ul,
#header .aside ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}

#header .aside ul.dropdown {
  position: relative;
  width: 196px;
  margin-left: auto;
}

#header .aside ul.dropdown li ul {
  position: absolute;
  left: 0;
  z-index: 9999;
  min-width: 100%;
  text-align: left;
  white-space: nowrap;
  padding-top: 0.5em;
}

#header .aside ul.dropdown li ul li a {
  display: block;
  text-decoration: none;
  padding: 0.5em 0.5em 0.4em;
  background: #fff;
  border: 1px solid #ccc;
}

#header .aside ul.dropdown li ul li ~ li a {
  margin-top: -1px;
}

#header .aside ul.dropdown li ul li a:hover {
  background: #fbf9f1;
}


/* ****************************************************************************************************
   * nav
**************************************************************************************************** */

#nav {
  position: relative;
  z-index: 1000;
  background: #fff;
  padding-top: 0.75em;
  box-shadow: 0 3px 3px #ccc;
}

#nav ul,
#nav ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}

#nav ul li {
  position: relative;
}

@media all and (min-width:736px) {
  
  #nav ul.dropdown {
    text-align: center;
  }
  
  #nav ul.dropdown > li {
    display: inline-block;
    padding: 0 0.5em;
  }
  
  #nav ul.dropdown > li.sp-content {
    display: none;
  }
  
  #nav ul.dropdown li a {
    position: relative;
    font-size: 0.9em;
    color: inherit;
    display: block;
    text-align: center;
    text-decoration: none;
  }
  
  #nav ul.dropdown > li > a {
    height: 30px;
    overflow: hidden;
  }
  
  #nav ul.dropdown > li.current > a img,
  #nav ul.dropdown > li:hover > a img {
    margin-top: -30px;
  }
  
  #nav ul.dropdown li a:hover,
  #nav ul.dropdown > li.current > a {
    color: #9b732b;
  }
  
  #nav ul.dropdown li a:hover img {
    opacity: 1;
  }
  
  #nav .body > ul.dropdown > li ul {
    display: none;
    position: absolute;
    z-index: 1000;
    min-width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 0 3px #ccc;
    white-space: nowrap;
  }
  
  #nav .body > ul.dropdown > li ul ul {
    top: 0;
    left: 100%;
  }
  
  #nav .body > ul.dropdown > li > ul li ~ li {
    border-top: 1px solid #ccc;
  }
  
  #nav .body > ul.dropdown > li > ul li a {
    text-align: left;
    padding: 0.6em 1em;
  }
  
  #nav .body > ul.dropdown > li > ul li a:hover {
    background: #fbf9f1;
  }
}

@media screen and (max-width:736px) {
  #nav {
    padding: 0;
  }
  #nav .body {
    padding: 0;
  }
  
  .icon-menu-trigger {
    position: absolute;
    top: 10%;
    right: 3.125%;
    width: 15%;
    height: 0;
    padding-top: 15%;
    background: #2e2210;
    border-radius: 0.5em;
  }
  
  .icon-menu-trigger:before,
  .icon-menu-trigger:after,
  .icon-menu-trigger span:before {
    content: '';
    position: absolute;
    left: 20%;
    display: block;
    width: 60%;
    height: 0;
    padding-top: 6%;
    background: #fff;
  }
  
  .icon-menu-trigger:before {
    top: 29%;
  }
  
  .icon-menu-trigger:after {
    top: 47%;
  }
  
  .icon-menu-trigger span:before {
    top: 66%;
  }
  
  #nav li a[target="_blank"]:after {
    content: '';
    top: 50%;
    width: 1em;
    height: 100%;
    background: url(../../_images/_common/icon-aside.png) no-repeat;
    background-size: contain;
    margin-top: -0.6em;
  }
  
  .icon-menu-trigger {
    cursor: pointer;
  }
  
  .icon-menu {
    width: 100%;
    opacity: 0;
    visibility: hidden;
    position: relative;
    right: 0;
    top: 0;
    left: 0;
    transition: all 0.3s ease-out 0.0s;
  }
  
  .icon-menu.active {
    opacity: 1;
    visibility: visible;
    z-index: 100;
  }
  
  .icon-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    background: rgba(0,0,0,0.9);
  }
  
  .icon-menu-list {
    width: 100%;
    position: absolute;
  }
  
  .icon-menu-list > li ~ li {
    border-top: solid 1px #dcbd9f;
  }
  
  .icon-menu-list > li > a.active {
    background: rgba(0,0,0,0);
  }
  
  .icon-menu ul li span {
    font-size: 12px;
  }
  
  .icon-menu ul li a {
    color: #dcbd9f;
    padding: 0.75em 46px 0.75em 1em;
    display: block;
    text-decoration: none;
    position: relative;
  }
  
  .icon-menu ul li a:after {
    content: '＋';
    position: absolute;
    top: 50%;
    right: 1em;
    line-height: 1;
    margin-top: -0.5em;
  }
  
  .icon-menu ul li a[href]:after {
    content: '>';
  }
  
  .icon-menu ul li a.slide-button:after {
    content: '＋';
  }
  
  .icon-menu ul li a.active:after {
    content: '－';
  }
  
  .icon-menu ul ul {
    background: rgba(255,255,255,0.25);
    padding-left: 1.25em;
  }
  
  .icon-menu-list li.lang img {
    margin-right: 0.5em;
  }
  
  .icon-menu-list li.icon {
    padding-left: 0.75em !important;
  }
  
  .icon-menu-list li.icon a {
    display: inline-block;
    padding: 0.75em 0.23em;
  }
}

@media print {
  #nav {
    display: none;
  }
}

/* ****************************************************************************************************
   * visual
**************************************************************************************************** */

.layout-lower #visual {
  background-position: center 0;
  background-repeat: no-repeat;
  background-color: #e2ded1;
}

@media screen and (max-width:736px) {
  .layout-lower #visual .body {
    padding: 0;
  }
}

/* ****************************************************************************************************
   * breadcrumb
**************************************************************************************************** */

#breadcrumb ol,
#breadcrumb ol li {
  list-style: none;
  padding: 0;
  margin: 0;
}

#breadcrumb ol {
  font-size: 0.8em;
  letter-spacing: -0.4em;
  padding: 1.5em 0 3em;
}

#breadcrumb ol li {
  position: relative;
  z-index: 2;
  display: inline-block;
  vertical-align: top;
  letter-spacing: normal;
}

#breadcrumb ol li ~ li {
  padding-left: 2.5em;
}

#breadcrumb ol li ~ li:before {
  content: '>';
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  line-height: 1;
  margin: 0 1em;
  margin-top: -0.5em;
}

@media screen and (max-width:736px) {
  #breadcrumb ol {
    padding-bottom: 2em;
  }
  #breadcrumb ol li ~ li {
    padding-left: 1.25em;
  }
  #breadcrumb ol li ~ li:before {
    margin: 0 0.4em;
    margin-top: -0.5em;
  }
}

/* ****************************************************************************************************
   * visual
**************************************************************************************************** */

@media screen and (max-width:736px) {
  .layout-lower #visual {
    display: none;
  }
}

/* ****************************************************************************************************
   * main
**************************************************************************************************** */

#main {
  line-height: 1.86;
}

.layout-lower #main {
  width: 74%;
  float: left;
  padding-bottom: 9%;
}

@media screen and (max-width:736px) {
  .layout-lower #main {
    width: 100%;
    float: none;
  }
}

/* ****************************************************************************************************
   * side
**************************************************************************************************** */

#side {
  width: 22%;
  float: right;
  padding-bottom: 9%;
}

#side .info ul,
#side .info ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}

#side .info ul li {
  border-top: 1px solid #d5cfc3;
  border-bottom: 1px solid #d5cfc3;
  margin-top: -1px;
}

#side .info ul li a {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 0.5em 1em;
  padding-left: 2em;
}

#side .info ul li a:before {
  content: '';
  display: block;
  width: 1em;
  height: 100%;
  position: absolute;
  top: 40%;
  left: 1em;
  background: url(../../_images/_common/side-listmark-1.png) no-repeat;
}

#side .info ul li a:hover {
  background: #fbf9f1;
}

@media screen and (max-width:736px) {
  #side {
    width: 100%;
    float: none;
  }
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * calendar
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#calendar table {
  width: 100%;
  font-size: 0.9em;
  table-layout: fixed;
  border-collapse: collapse;
  border: 1px solid #e0dbd2;
}

#calendar table th,
#calendar table td {
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #e0dbd2;
  padding: 0.1em 0;
}

#calendar table thead td {
  border: 0;
}

#calendar table tbody td:first-child {
  background: #ffd5d5;
}

#calendar .caption {
  font-size: 0.9em;
  text-align: center;
}

#calendar .caption .eigyou {
  position: relative;
  display: inline-block;
  padding-left: 1.2em;
}

#calendar .caption .eigyou:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 1em;
  height: 1em;
  border: 1px solid #e0dbd2;
  margin-top: -0.6em;
}

#calendar .caption .kyuugyou {
  position: relative;
  display: inline-block;
  padding-left: 1.2em;
  margin-left: 1em;
}

#calendar .caption .kyuugyou:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 1em;
  height: 1em;
  background: #ffd5d5;
  border: 1px solid #e0dbd2;
  margin-top: -0.6em;
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * knowledge
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#side #knowledge ul,
#side #knowledge ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}

#side #knowledge ul li a {
  position: relative;
  color: inherit;
  text-decoration: none;
  display: block;
  padding: 0.6em;
  padding-left: 2em;
  background: #e8dfc2;
  margin-bottom: 1px;
}

#side #knowledge ul li a:hover {
  background: #fbf9f1;
}

#side #knowledge ul li a:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 1.3em;
  left: 1em;
  border: 0.35em solid transparent;
  border-left-color: inherit;
  margin-top: -0.35em;
}

#side #knowledge ul li:last-child a {
  border-bottom: 1px solid #908778;
}

/* ****************************************************************************************************
   * business-message
**************************************************************************************************** */

#business-message {
  position: relative;
  z-index: 1;
  font-size: 0.9em;
  text-align: center;
  padding: 0.7em;
  background: #fbf9f1;
}

/* ****************************************************************************************************
   * pagetop
**************************************************************************************************** */

#pagetop a {
  width: 3.5em;
  position: fixed;
  z-index: 999;
  right: 3.125%;
  bottom: 3.125%;
  display: block;
}

@media screen and (max-width:736px) {
  #pagetop a {
    bottom: 4em;
  }
}

/* ****************************************************************************************************
   * common
**************************************************************************************************** */

#common {
  font-size: 15px;
}

#common .about {
  padding: 4em 0;
  background: #fbf9f1;
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * shop
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#common .shop {
  float: left;
  width: 70%;
  margin-bottom: 2em;
}

#common .shop .note {
  color: #d75600;
  margin-top: 0.25em;
}

#common .shop .note strong {
  font-weight: normal;
}

#common .shop table {
  width: 100%;
  border-collapse: collapse;
}

#common .shop table th,
#common .shop table td {
  font-weight: normal;
  padding: 0.5em;
  background: #fff;
  border: 1px solid #e0dbd2;
}

#common .shop table th {
  width: 8em;
  text-align: left;
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * calendar
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#common .calendar {
  float: right;
  margin-bottom: 2em;
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * trade
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#common .trade {
  clear: both;
  margin-bottom: 2em;
}

#common .trade table {
  width: 100%;
  border-collapse: collapse;
}

#common .trade table th {
  width: 5.5em;
  text-align: left;
  vertical-align: top;
  padding: 0.25em 0;
}

#common .trade table td {
  padding: 0.25em 0;
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * product
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#common .product {}

#common .product .list {
  background: #fff;
  padding: 1.5%;
  border: 1px solid #e0dbd2;
}

#common .product .list ul,
#common .product .list ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}

#common .product .list ul li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0.4em 1em;
  padding-left: 0.6em;
}

#common .product .list ul li:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 5px;
  height: 5px;
  background: #000;
  border-radius: 50%;
  margin-top: -4px;
}

@media screen and (max-width:736px) {
  #common .shop,
  #common .calendar {
    width: 100%;
    float: none;
  }
}

/* ****************************************************************************************************
   * footer
**************************************************************************************************** */

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * nav
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#footer .nav ul,
#footer .nav ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .nav {
  width: 100%;
  display: table;
  table-layout: fixed;
  padding: 2em 0;
}

#footer .nav ul.item {
  display: table-cell;
  vertical-align: top;
}

#footer .nav ul.item ~ ul.item {
  padding-left: 0.5em;
}

#footer .nav ul.item li a {
  position: relative;
  display: block;
  color: inherit;
  padding-left: 0.8em;
  margin-bottom: 1em;
}

#footer .nav ul.item > li > a:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 0;
  border: 0.35em solid transparent;
  border-left-color: inherit;
  margin-top: -0.35em;
}

#footer .nav ul.item > li > ul li {
  list-style: disc;
  margin-left: 1.5em;
}

#footer .nav ul.item > li > ul > li a {
  padding-left: 0;
}

@media screen and (max-width:736px) {
  #footer .body {
    padding: 0;
  }
  #footer .nav {
    padding: 0;
  }
  #footer .nav ul.item {
    display: block;
  }
  #footer .nav ul.item ~ ul.item {
    padding-left: 0;
  }
  #footer .nav ul.item > li {
    padding-left: 3.125%;
    padding-right: 3.125%;
    border-bottom: 1px solid #ccc;
  }
  #footer .nav ul.item li a {
    padding: 0.75em;
    margin: 0;
  }
  #footer .nav ul.item li a:after {
    left: auto;
    right: 0;
    border-width: 0.65em;
    margin-top: -0.7em;
  }
  #footer .nav ul.item a.slide-button:after {
    right: 0.4em;
    border-left-color: transparent;
    border-top-color: inherit;
    margin-top: -0.35em;
  }
  #footer .nav ul.item a.slide-button.active:after {
    border-top-color: transparent;
    border-bottom-color: inherit;
    margin-top: -1em;
  }
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * footer
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#footer .footer {
  text-align: center;
  letter-spacing: -0.4em;
  padding: 1em 0;
  border-top: 1px solid #e0dbd2;
  margin-left: -1em;
}

#footer .footer > * {
  display: inline-block;
  vertical-align: middle;
  letter-spacing: normal;
  margin-top: 1em;
  margin-left: 1em;
}

#footer .footer .address {
  font-size: 0.9em;
}

@media screen and (max-width:736px) {
  #footer {
    padding-bottom: 4em;
  }
  #footer .footer {
    border-top: 0;
  }
  #footer .footer .tel {
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 99999;
    width: 100%;
    padding: 0.5em;
    background: #3e352c;
    margin: 0;
  }
  #footer .footer .tel a {
    display: block;
    color: #fff;
    text-decoration: none;
  }
  #footer .footer .tel .number {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.55em;
    font-weight: bold;
  }
  #footer .footer .tel .message {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 0.8em;
    text-align: left;
    padding-left: 2em;
    margin-right: 0.5em;
  }
  #footer .footer .tel .message:before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    content: '>';
    line-height: 1.5em;
    text-align: center;
    color: #000;
    width: 1.5em;
    height: 1.5em;
    background: #fff;
    border-radius: 50%;
    margin-top: -0.75em;
  }
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * copyright
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#footer .copyright {
  font-size: 0.75em;
  text-align: center;
  padding: 0.25em;
}
