@charset "UTF-8";


/*--------------------------------
MAIN
---------------------------------*/
main {
  flex: 1;
}

.content-title {
  font-size: 1.5em;
  text-align: left;
  margin-bottom: 40px;
}

.content-title-en::before {
  content: "";
  display: inline-block;
  vertical-align:middle;
   background-color: #c21c1c;
    width: 1.6px;
    height: 1.9vw;
    margin-left: .9vw;
    margin-right: .9vw;
}

.content-title-en {
    color: #ad0c0c;
    font-family: serif;
    font-weight: 600;
    letter-spacing: .05em;
    font-size: 0.7em;
}

/*  main-view */
#main-view {
  width: 100%;
  background-image: url(../img/main-img.jpg);
  background-size:cover;
  background-position: center top;
  background-position-x: center;
  background-position-y: top;
  height: 600px;
}

#main-view  p {
  font-size: 0.74em;
  text-align: right;
}

.shop-title {
  height: 100%; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.shop-title span {
  font-family: inherit;
  font-style: normal;
  font-weight: 700;
  font-size: 6em;
   padding: 0 10px;
   color:#fac61e;
}

/*  news */
#news .wrapper {
   max-width: 980px;
   margin: 60px auto;
}

#news dl {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid  #c8c8c8;
  margin-bottom: 20px;
  font-size: 0.9em;
}

#news dt {
  width: 20%;
  border-bottom: 1px solid  #c8c8c8;
  padding: 15px;
}

#news dd {
  width: 80%;
  border-bottom: 1px solid  #c8c8c8;
  padding: 15px;
}

/* product */
#product ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

#product li {
  width: 31%;
  margin-bottom: 23px;
}

#product h3 {
  font-size: 1.0em;
  margin-left: 16px;
}

#product p {
  margin-left:16px ;
}

/*  about */
#about .wrapper {
   max-width: 980px;
   margin: 60px auto;
}

#about .content-title {
  text-align: right;
}

#about ul {
  display: flex;
  justify-content: space-between;
}

#about li {
  width: 50%;
  margin-bottom: 20px;
  margin-left: 20px;
}

#about h1 {
  letter-spacing: 0.5em;
  line-height: 1.8;
  margin-bottom: 16px;
  margin-left: 20px;
}

#about p {
  margin-left: 20px;
}

/*  flow */
#flow .wrapper {
   max-width: 980px;
   margin: 60px auto 80px;
}

#flow h1 {
  color: #ad0c0c;
  margin: 16px  0  16px  8px;
}

/*--------------------------------
SP
---------------------------------*/
@media screen and (max-width: 960px) {

 /*  SP-MAIN  */
  #main-view {
  width: 100%;
  background-image: url(../img/main-img-sp.jpg);
  background-size:cover;
  background-position: center top;
  background-position-x: center;
  background-position-y: top;
}

.shop-title span {
    font-size: 3.2em;
  }
  
.wrapper {
  padding: 0  30px;
}

/*  SP-NEWS */
#news dl {
   flex-direction: column;  
}

#news dt {
  width: 100%;
  border-bottom: none;
  padding-bottom: 0;
}

#news dd {
  width: 100%;
  padding-top: 0.5rem;
}

/* product */
#product ul {
  flex-direction: column;
  align-items: center;
}

#product li {
  width:90%;
}

#product img {
  max-width: 90%;
}

/* about */
#about ul {
  flex-direction: column;
  align-items: center;
}

#about li {
  width: 90%;
}

}