p{
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
}
@media (min-width: 768px) {
  p{
    font-size: 16px;
  }
}
/******** title2 ********/
.title2{
  margin: 0;
  padding: 0;
}
.title2-inner{
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height:200px;
}
@media (min-width: 768px) {
  .title2-inner{
    background-attachment: fixed;
    background-size: cover; 
    width: 100%;
    height: 300px;
    position: relative;
  }
}
@media (min-width: 1240px) {
  .title-model-name h1{
    font-size: 10rem;
  }
  .title-block{
    width: 1240px;
    margin: 0 auto;
  }
}

/* content */
/****** items ********/
.r-mark::after{
  content: "\0ae";
  font-size: 0.75rem;
  vertical-align: top;
}
.item-title{
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  line-height: 1;
}
.item-title span{
  font-weight: 300;
  font-size: 0.5em;
}
.price{
  font-size: 18px;
  font-weight: bold;
  color: #e32027;
}
.price span{
  font-size: 0.75rem;
  margin-left: -0.3rem;
}
/******** model-block ********/
.model-block{
  transform: translateY(-10px);
  transition: all 0.2s ease-out;
}
.color-name{
  display: flex;
}
.color-name p{
  font-size: 12px;
  margin-right: 1rem;
}
.color-name p span{
  margin-right: 0.5rem;
  font-weight: bold;
}
@media (min-width:768px){
  .color-name p{
    font-size: 14px;
  }
}
/*item-img*/
.item-img-main{
  width: 100%;
}
.item-img-thumbnail{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 90%;
  margin: 24px auto;
}
.item-img-tn img{
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  border: solid 1px #aaa;
  object-fit: cover;
}
/*ModalSection*/
.ModalLayer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transition: opacity 0.65s;
  pointer-events: none;
  opacity: 0;
  z-index: 10000;
}
.ModalLayer.isShow {
  transition: opacity 0.65s;
  pointer-events: auto;
  opacity: 1;
}
.ModalLayer-Mask {
  position: absolute;
  background: rgba(0,0,0,0.7);
  width: 100%;
  height: 100vh;
}
.ModalLayer-Inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 1240px;
  transform: translate(-50%, -50%);
}
.Modal-Inner-Btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  color: #fff;
  z-index: 10;
  cursor: pointer;
}
.Modal-Inner-Card {
  width: 100%;
}
.Modal-Inner-Card-Wrapper {
  display: flex;
  align-items: center; /*内包する要素をそれぞれの高さに関係なく縦横中央ぞろえに*/
}
.Modal-Inner-Card-Wrapper-Slide {
  width: 100% !important;
  height: auto;
}
.Modal-Inner-Card-Wrapper-Slide-Item {
  width: 100%;
}
.Modal-Inner-Card-Wrapper-Slide-Item-Box {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}
/*.Modal-Inner-Card-Wrapper-Slide-Item-Box-Text {
  color: #fff;
}*/
/*ラジオボタン*/
.color-chart{
  width: 90%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}
.form-check{
  margin: 5px;
  position: relative;
}
.color-chart label {
  width: 40px;
  height: 40px;
}
.color-chart input[type="radio"]{
  display: none;
}
.color-chart label img{
  width: 40px;
  height: 40px;
  border-radius: 40px;
  transition: all 0.1s ease-out;
}
.color-chart label img:hover{
  width: 38px;
  height: 38px;
  opacity: 0.8;
}
@media (min-width: 768px) {
  .item-img-thumbnail{
    width: 60%;
    margin: 24px auto;
  }
  .item-img-tn img{
    width: 100px;
    height: 100px;
    margin-bottom: 24px;
    box-sizing: border-box;
    border: solid 1px #aaa;
    object-fit: cover;
  } 
  .color-chart{
    width: 80%;
      justify-content: space-around;
    }
}
.btn-01{
  background: #e32027;
}
/******** specification ********/
.specification{
  font-family: 'helvetica', sans-serif;
}
.specification h3{
  font-size: 32px;
}
.specification h4{
  font-size: 20px;
}
.specification img.spec-icon{
  width: 60px;
  margin-right: 0.5rem;
}
table.spec{
  width: 100%;
  margin: 16px auto 24px auto;
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
}
table.spec tr{
  font-size: 12px;
}
table.spec tr:nth-child(even){
  background: #ddd;
}
table.spec th,table.spec td{
  display: block;
  padding: 0.2rem 0.5rem;
}
@media screen and (min-width: 768px){
  table.spec tr{
    font-size: 14px;
  }
  table.spec th,table.spec td{
    display: table-cell;
    padding: 0.5rem;
  }
}
/******** lineup ********/
ul.lineup-card-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
ul.lineup-card-list li{
  box-sizing: border-box;
  width: 30%;
  height: 300px;
  position: relative;
  display: flex;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.3s ease-out;
}
/*背景画像はHTMLのstyleで設定*/
ul.lineup-card-list li a{
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  font-size: 24px;
  text-decoration: none;
}

ul.lineup-card-list li p{
  /*aをpで囲い全体をボタン化している*/
  align-self: bottom;
  padding: 0.5rem;
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.1;
  filter: drop-shadow(0px 0px 3px #fff) drop-shadow(0px 0px 2px #fff) drop-shadow(0px 0px 1px #fff);
}
ul.lineup-card-list li p span{
  font-size: 14px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  ul.lineup-card-list li{
    height: 400px;
  }
  ul.lineup-card-list li p{
    align-self: center;
    font-size: 38px;
    opacity: 0;
    transition: all 0.3s ease-out;
    margin-top: +20px;
  }
  ul.lineup-card-list li p:hover{
    opacity: 1;
    margin-top: 0;
  }
  ul.lineup-card-list li p span{
    font-size: 18px;
  }
}
@media (min-width: 960px) {
  .lineup{
    width: 960px;
  }
}

/******** highligts ********/
.content-highlight{
  padding: 0;
  background: #fff;
  margin: 0 auto 48px auto;
}
.highlight-block{
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}
.highlight-comment{
  box-sizing: border-box;
  width: 100%;
}
.highlight-comment p{
  font-size: 14px;
}
p.highlight-number{
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: rgba(064,224,208,0.5);
  line-height: 1;
}
.highlight-comment h3{
  font-size: 24px;
  font-weight: normal;
}
.highlight-img{
  width: 100%;
  display: flex;
  align-items: flex-start;
}
.highlight-img img{
  height: 200px;
  object-fit: cover;
}
.highlight-img-h{
  width: 60%;
}
.highlight-img-v{
  width: 40%;
}
.highlight-img-w{
  width: 100%;
}
@media (min-width: 768px) {
  .highlight-block{
    width: 100%;
    padding: 50px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .highlight-comment{
    width: 50%;
  }
  .highlight-comment p{
    font-size: 18px;
  }
  p.highlight-number{
    font-size: 84px;
  }
  .highlight-comment h3{
    font-size: 32px;
  }
  .highlight-img{
    width: 45%;
  }
  .highlight-img img{
    height: 300px;
  }
}


/********営業時間 business-hours********/
table.business-hours-2{
  overflow-x: scroll;
  font-size: 14px;
}

/******** section-shop ********/

.container-shop{
  background: #9c8246;
}
.container-shop .head-w-line{
  border: solid 1px #fff;
  color: #fff;
}
li.shop{
  box-sizing: border-box;
  width: 80%;
  margin: auto;
  box-sizing: border-box;
  padding: 10px;
  line-height: 1.3;
}
li.shop > p,a{
  color: #000;
}
a.shop-name{
  line-height: 1.75;
  color: #fff8ef;
}
.shop-address{
  font-size: 0.8rem;
  margin-bottom: 0.5em;
}
@media screen and (min-width:768px){
  ul.shop-list{
    display: flex;
    flex-wrap: wrap;
  }
  li.shop{
    width: 33.33%;
    margin: 0;
  }
}
@media screen and (min-width:1240px){
  .section-shop{
    width: 1240px;
    margin: auto;
  }
}

/* ///////////// 20191227 /////////////*/
/*ボタン各種*/
.btn-square-pop {
  position: relative;
  display: inline-block;
  padding: 1rem;
  text-decoration: none;
  text-align: center;
  color: #FFF;
  background: #96466e;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  line-height: 1;
  margin: 0.5rem auto;
  box-sizing: border-box;
  transition: ease-out all 0.5s;
}
.btn-square-pop:hover {
  color: #fff;
  text-decoration: none;
  background: #72557a;
}
span.en{
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
}
@media (min-width: 768px) {
  .stock-list{
    display: flex;
    flex-wrap: wrap;
  }
}

/* ///////////// footer /////////////*/
.footer p,ul{
  font-size: 0.75rem;
}
ul.footer-nav-list{
  display: flex;
  justify-content: center;
  margin: 1rem;
}
ul.footer-nav-list li{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-right: solid 1px #aaa;
}
ul.footer-nav-list li:last-child{
  border-right: none;
}
ul.footer-nav-list li a{
  color: #fff;
}
@media (min-width: 768px) {
  .information{
    display: flex;
  }
  .info-map{
    width: 50%;
  }
  .info-text{
    margin-left: 1rem;
  }
  .info-text p{
    font-size: 0.875rem;
  }
  .copyright{
    font-size: 0.75rem;
    line-height: 1;
  }
  .footer p,ul{
    font-size: 0.875rem;
  }
}
@media (min-width: 990px) {
  .info-text p{
    font-size: 1rem;
  }
}
