@charset "utf-8";
/*font-family: 'Ultra', serif;*/
/******** container-title ********/
.container-title{
  width: 100%;
  padding: 0;
  background: #e8e8e6;
}
.container-title img{
  margin: 0;
  padding: 0;
  line-height: 0;
}

/******** article-about ********/
.container-about{
  background: #000;
}
.article-about img{
  width: 100%;
  margin: 24px auto;
  display: block;
}
.about-text{
	box-sizing: border-box;
	margin: 0 auto;
}
.about-text h2{
  color: #fff;
  font-size: 24px;
  font-weight: bold;
	display: inline-block;
	line-height: 1.75;
	padding-bottom: 0.5rem;
	border-bottom: solid 1px #cdb455;
	margin-bottom: 1rem;
}
.about-text p{
  color: #fff;
	line-height: 2.5;
}
@media screen and (min-width:768px){
	.about-text{
		width: 80%;
		padding: 0.5rem 1.5rem 1rem;
	}
	.about-text h2{
    font-size: 38px;
		padding-bottom: 0;
	}
  .about-text p{
    font-size: 22px;
  }
}
@media screen and (min-width:960px){
  .article-about{
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* 追加 */
  }
  .article-about img{
    width: 48%;
  }
}

/******** highligts ********/
.content-highlight{
  padding: 0;
  margin: 0 auto 24px auto;
}
.highlight-block{
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}
.highlight-comment{
  box-sizing: border-box;
  border-bottom: 24px;
  padding-bottom: 24px;
  width: 100%;
}
.highlight-comment p{
  font-size: 14px;
  line-height: 1.8;
}
h4.highlight-number{
  color: #6ec8dc;
  font-family: 'Ultra', serif;
  font-size: 42px;
  font-style: italic;
  font-weight: 200;
  line-height: 1;
  margin-bottom: 8px;
}
h3.highlight-h3{
  color: #006e96;
  font-weight: bold;
  margin-bottom: 24px;
}
.highlight-img{
  width: 100%;
  display: flex;
  align-items: center;
  filter: drop-shadow(30px -30px 0 #006e96);
  align-items: flex-start; /* 追加 */
}
.highlight-img-sub{
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 24px 0;
  align-items: flex-start; /* 追加 */
}
.highlight-img-sub img{
  width: 48%;
}
@media (min-width: 768px) {
  .highlight-block{
    width: 100%;
    padding: 50px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  h2.title-en{
    font-size: 58px;
  }
  .highlight-comment p{
    font-size: 16px;
  }
  h4.highlight-number{
    font-size: 84px;
  }
  .highlight-comment h3{
    font-size: 32px;
  }
  .highlight-comment{
    width: 45%;
  }
  .highlight-img{
    width: 50%;
    filter: drop-shadow(30px 60px 0 #006e96);
  }
  .caption{
    font-size: 12px;
    margin: 12px 1em;
  }
}
@media (min-width: 960px) {
  .highlight-comment{
    width: 35%;
  }
  .highlight-img{
    width: 60%;
  }
}
@media (min-width: 1600px){
  .content-highlight{
    width: 1600px;
  }
  .highlight-comment p{
    font-size: 20px;
  }
}

/******** highlight-bg ********/
.highlight-bg{
  padding: 0;
}
.highlight-bg{
  width: 100%;
  height: 300px;
  background: center center no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  .highlight-bg{
    background-attachment: fixed;
  }
}
@media (min-width: 960px) {
  .highlight-bg{
    height: 500px;  }
}

/******** specification ********/
.specification{
  font-family: 'Jost', sans-serif;
}
.spec-model-name{
  color: #fff;
  font-family: serif;
  line-height: 1;
}
.spec-model-name span{
  font-size: 0.8rem;
}
table.spec-model,table.spec{
  width: 100%;
  margin: 16px auto 24px auto;
}
table.spec-model,table.spec tr{
  font-size: 14px;
  vertical-align: top;
}
table.spec tr th{
  color: #cdb455;
}
table.spec tr:nth-child(odd){
  background: rgba(255,255,255,0.1);
}
table.spec th,table.spec td{
  padding: 0.1rem 0.5rem;
  text-align: left;
  display: table-cell;
}
/* ボタン*/
.btn-01{
  width: 100%;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 4px;
  margin: 28px auto 36px auto;
  display: block;
  box-sizing: border-box;
  border-radius: 2px;
  background: rgba(255,0,0,0.7);
  text-align: center;
  text-decoration: none;
  color: #fff;
  position: relative; /* ボタン内アイコン用 */
  transition: all 0.5s ease-out;
}
.btn-01::before{
  content: url(images/cart.png);
  margin-right: 0.5rem;
  vertical-align: baseline;
}
.btn-01:hover{
  border: solid 1px #999;
  background: #999;
}
.models{
    width: 70%;
    margin: 24px auto;
    text-align: center;
  }
@media screen and (min-width: 768px){
  table.spec-model,table.spec tr{
    font-size: 16px;
  }
  table.spec th,table.spec td{
    padding: 0.2rem;
  }
  .models{
    width: 48%;
  }
}

/******** gallery ********/
.container-gallery{
  padding-bottom: 0;
}
.gallery{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.gallery a{
  width: 50%;
  transition: ease-out 0.5s all;
  margin: 0;
  padding: 0;
  line-height: 0;
}
.gallery-empty::after{
  content: " ";
  display: block;
  width: 25%;
}
.gallery a:hover{
  opacity: 0.5;
}
@media screen and (min-width: 960px){
  .gallery a{
    width: 25%;
    transition: ease-out 0.5s all;
    margin: 0;
    padding: 0;
    line-height: 0;
  }
}

/******** movie ********/
.movie{
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  padding: 5% 10%;
  background: #000;
}
.movie iframe{
  width: 100%;
  height: 100%;
}

/******** section-shop ********/
.container-shop{
  background: #000;
}
.head-w-line{
  width: 100px;
  height: 100px;
  line-height: 95px;
  font-family: 'Oswald', sans-serif;
  font-weight: 200
  font-size: 2rem;
  text-align: center;
  border: solid 2px #fff;
  color: #fff;
  border-radius: 50%;
  margin: 2rem auto 1rem auto;
  display: block;
}
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: #aaa;
}
a.shop-name{
  line-height: 1.75;
  color: #a0bb1e;
}
.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;
  }
  a.shop-name{
    font-size: 20px;
  }
  li.shop > p,a{
    font-size: 16px;
    line-height: 1.5;
  }
}
@media screen and (min-width:1240px){
  .section-shop{
    width: 1240px;
    margin: auto;
  }
}

/******** footer ********/
.footer{
  background: #000;
  text-align: center;
  color: #555;
  padding: 24px;
}
.footer p{
  font-size: 0.75rem;
  line-height: 1.8;
}