@charset "UTF-8";

/* body
---------------------------------------------------------- */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  color: #000;
  font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif !important;
  line-height: 1.5;
  text-align: left;
}

/* image
---------------------------------------------------------- */
img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

/* text
----------------------------------------------- */
p {
  line-height: 1.7;
  margin: 0 0 1.5em;
}

.f-bold {
  font-weight: bold !important;
}

/* link
----------------------------------------------- */
a {
  color: #1565C0;
  text-decoration: underline;
  transition: all 0.5s;
}

a:hover,
a:hover strong {
  color: #f44336;
  text-decoration: none;
}

a:hover img {
  /*border:1px solid #d32f2f;*/
  opacity: 0.8;
}


/* List
----------------------------------------------- */
/* Unordered List */
ul {
  margin: 0 0 20px 20px;
  padding: 0;
}

ul li {
  line-height: 1.6;
  margin: .5em 0;
  padding: 0;
}

ul li:last-child {
  margin-bottom: 0;
}

/* layout
----------------------------------------------- */
#over_wrapper {
  overflow: hidden;
}

#container {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 30px auto 40px;
}

#container:after {
  clear: both;
  content: "";
  display: block;
  height: 0;
}

@media screen and (max-width: 480px) {}

@media screen and (max-width: 768px) {

  #container {
    float: none;
    max-width: none;
    width: 100%;
  }

}

@media screen and (max-width: 1080px) {

  #over_wrapper{
    padding-left: 10px;
    padding-right: 10px;
  }

}

/* Header
----------------------------------------------- */
/* Logo */
#site-title {
  border-bottom: 1px solid #ccc;
  font-size: 2em;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 60px;
  padding: 0 0 20px;
  text-align: center;
}

#site-title img{
  width: 720px;
}

@media screen and (max-width: 480px) {

  #site-title {
    font-size: 1.4em;
  }
  #site-title span{
    display: block;
  }
  
}


/* Main
----------------------------------------------- */
/* headding */
h2 {
  font-size: 1.75em;
  font-weight: bold;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.2em;
  font-weight: bold;
}

h2 + h3 { margin-top: 0;}

.warning {
  color: #d32f2f;
}

/* Catalog Box */
.cols {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 40px;
}

.col-4 {
  margin:0 1%;
  width: 23%;
}

.col *:last-child, .col-4 *:last-child {
  margin-bottom: 0;
}

/* Catalog List */
.cat_list{ margin:0 0 60px;}

.cat_list ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
}

.cat_list ul li {
  margin: 0 0 30px;
  padding: 0;
  width: 50%;
}

.cat_list ul li img {
  float: left;
  height: auto;
  margin-right: 10px;
  margin-bottom: 0;
  width: 35%;
}

.cat_list ul li p {
  font-size: 0.875rem;
  margin: 0;
}

.cat_list ul li .cat_name,
.cat_list ul li .cat_price {
  font-size: 1.5em;
  font-weight: bold;
}

.cat_list ul li:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  font-size: .01em;
  height: 0;
  overflow: hidden;
}

@media screen and (max-width: 480px) {

  .col-4 {
    margin: 1%;
    width: 48%;
  }
  
  .cat_list ul li a{
    display: block;
    text-align: center;
  }
  
  .cat_list ul li img {
    float: none;
    margin: 0 auto 10px;
    max-width: 180px;
    width: 100%;
  }
  
  .cat_list ul li p{
    text-align: center;
  }
  
  .cat_list ul li .cat_name,
  .cat_list ul li .cat_price {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 480px) {}

@media screen and (max-width: 768px) {

  h1,h2,h3,h4{
    font-size:1.2em;
  }
  
  .cat_list ul li {
    width: 100%;
  }
  
}

/* Page Top Button
----------------------------------------------- */
#pageTopButton {
  position: fixed;
  bottom: 24px;
  right: 20px;
  font-size: 12px;
}

#pageTopButton a {
  background: #000;
  border-radius: 50%;
  color: #fff;
  display: block;
  padding: 30px 0;
  text-align: center;
  text-decoration: none;
  transition: 0.5s;
  height: 75px;
  width: 75px;
}

#pageTopButton a:hover {
  background: #666;
}

#pageTopButton a::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin: 0 auto;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

@media screen and (max-width: 480px) {

  /* pageTopButton */
  #pageTopButton a {
    background: #000;
    padding: 20px 0;
    height: 50px;
    width: 50px;
}

}

/* Clear / Clearfix
----------------------------------------------- */
.clear {
  clear: both;
}

.clearfix:after {
  clear: both;
  content: "";
  display: block;
}

/* Float
----------------------------------------------- */
.fleft {
  float: left !important;
}

.fcenter {
  display: block !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.fright {
  float: right !important;
}

/* Alignment  
----------------------------------------------- */
.aright {
  text-align: right !important;
}

.acenter {
  text-align: center !important;
}

.aleft {
  text-align: left !important;
}

