@charset "utf-8";
/* CSS Document */

*{
	font-weight: 200;
	padding: 0;
	margin:0;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
	font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
  font-weight: bold;
  scroll-behavior: smooth;
}

a{
	text-decoration: none;
  font-size: 16px;
	letter-spacing: 1px;
	transition: .2s;
/*    -webkit-transform: scale(1.001,1);
    -moz-transform: scale(1.001,1);
    -ms-transform: scale(1.001,1);
    -o-transform: scale(1.001,1);
    transform: scale(1.001,1);*/
}

a{
  transition: .2s;
}

a:hover{
  opacity: .7;
	transition: .2s;
}

li{
	list-style: none;
}

h1,h2,h3,h4,h5,h6,p{
	color:#000;
  font-weight: normal;
/*    -webkit-transform: scale(1.001,1);
    -moz-transform: scale(1.001,1);
    -ms-transform: scale(1.001,1);
    -o-transform: scale(1.001,1);
    transform: scale(1.001,1);*/
}

h1{	
	letter-spacing: 10px;
}
h2{
  font-size: 28px;
  line-height: 38px;
	letter-spacing: 4px;
}

@media screen and (max-width: 600px){
  h2{
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 2px;
  }
}
h3{	
  font-size: 18px;
  line-height: 28px;
	letter-spacing: 3px;
}
h4{	
	letter-spacing: 2px;
}
h5{	
	letter-spacing: 1px;
}
h6{	
	letter-spacing: 1px;
}
p,a,th,td{
  font-size: 16px;
  line-height: 24px;
	letter-spacing: 2px;
  font-weight: normal;
}

@media screen and (max-width: 600px){
  p,a,th,td{
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 1px;
    font-weight: normal;
  }
}
hr{
}

.clear{
	clear:both;
}

.fa{
	color: #fff;
}
body{
	overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

img{
  vertical-align: bottom;
}

.spOnly{
  display: none;
}

a.linkBtn{
  display: block;
  position: relative;
  width: 100%;
  text-align: left;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
	color:#1478dc;
  border: 3px solid #1478dc;
  padding: 15px 15px;
  font-size: 16px;
}

a.linkBtn::after{
  position: absolute;
  top: 11px;
  right: 15px;
  content: ">";
	color:#1478dc;
  font-size: 30px;
	transition: .2s;
}

a.linkBtn:hover{
  opacity: 1;
  background-color: #1478dc;
  color: #fff;
}

a.linkBtn:hover::after{
  color: #fff;
	transition: .2s;
  
}

.flexBox{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.spbr{
  display: none;
}

.eng{
  font-family: 'Overpass', sans-serif;
  font-weight: bold;
}

.pc{
}

.sp{
  display: none;
}

.scrollTop{
  position: fixed;
  bottom: 0;
  right: 0;
  display: block;
  width: 75px;
  height: 75px;
  z-index: 2;
  background-color: #1478dc;
  color: #fff;
  font-size: 30px;
  padding-top: 26px;
  padding-left: 23px;
}

header{
  z-index: 1;
}


@media screen and (max-width: 600px){
  .pc{
    display: none;
  }

  .sp{
    display: block;
  }
  p,a{
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 1px;
    font-weight: normal;
  }
}

/*==============================
nav
==============================*/
nav{
  position: sticky;
  top: 0;
  left: 0;
  height: 100px;
  width: 100%;
  z-index: 99999;
  background-color: rgba(255,255,255,.9);
  z-index: 2;
}

nav > ul{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  padding:0 20px; 
}

nav > ul > li{
  margin-right: 15px;
}

nav > ul > li::after{
  content: "|";
  color: #000;
  margin-left: 15px;
}

nav > ul > li:first-of-type{
  margin-right: auto;
  border-left: none;  
}

nav > ul > li:first-of-type::after{
  display: none;
}

nav > ul > li:first-of-type a{
  padding: 0;
  height: auto;
}

nav > ul > li a{
  color: #000;
}

nav > ul > li:nth-last-of-type(3)::after{
  display: none;
}

nav > ul > li:nth-last-of-type(2)::after{
  display: none;
}

nav > ul > li:nth-last-of-type(2) a{
  border: 1px solid #000;
  padding: 10px 10px;
}

nav > ul > li:nth-last-of-type(2){
}

nav > ul > li:last-of-type{
  margin-right: 0;
}

nav > ul > li:last-of-type::after{
  display: none;
}

.language{
  position: relative;
}

#languageCheck{
  display: none;
}

.language > ul{
  position: absolute;
  top:30px;
  left: 0;
  opacity: 0;
  transition:.3s;
  transform: scaleX(0);
}

.language > label{
  font-size: 16px;
  cursor: pointer;
  transition: .2s;
}

.language > label:hover{
  opacity: .7;
  transition: .2s;
}

#languageCheck:checked ~ ul{
  opacity: 1;
  transition: .3s;
  transform: scaleX(1);
}

.language > ul li a{
  display: block;
  font-size: 12px;
  padding: 0 5px;
  background-color:#fff;
  font-weight: bold;
}

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

  nav > ul > li{
    margin-right: 10px;
  }

  nav > ul > li::after{
    margin-right: 10px;
  }
  
  nav > ul > li a{
    letter-spacing: 0;
  }
  
  nav > ul > li:first-of-type a img{
    width: 240px;
  }
}

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

  nav > ul > li{
    margin-right: 10px;
  }

  nav > ul > li::after{
    margin-right: 10px;
  }
  
  nav > ul > li a{
    font-size: 14px;
    letter-spacing: 0;
  }

  .language > label{
    font-size: 14px;
  }
}

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

  nav > ul > li{
    margin-right: 10px;
  }

  nav > ul > li::after{
    display: none;
    margin-right: 0px;
  }
  
  nav > ul > li a{
    font-size: 14px;
    letter-spacing: 0;
  }

  .language > label{
    font-size: 14px;
  }
}

/*==============================
SPメニュー
==============================*/

.spnavBack{
  display: none;
}

.spLogo{
	display: none;
}

.nav-unshown {
  display:none;
}
@media screen and (max-width: 1000px){
.spnavBack{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: sticky;
  padding-left: 20px;
  top: 0;
  left: 0;
  height: 60px;
  width: 100%;
  z-index: 999998;
  background-color: rgba(255,255,255,.9);
}
  
  .spnavBack a{
    display: block;
    width: 200px;
  }
  
  .spnavBack a img{
    width: 100%;
    display: block;
    vertical-align: bottom;
    margin-left: -5px;
  }
  nav > div a{
    width: 100%;
  }
  nav > div a img{
    width: 100%;
  }
nav{
  display: none;
  padding: 10px 0;
	margin-top: 50px;
  width: 100%;
  text-align: center;
  background-color: rgba(255,255,255,.9)
}

nav h1{
  display: inline-block;
  margin: 0 auto;
}

nav h1 > a{
  display: block;
}

#nav-drawer {
  position: relative;
}

/*チェックボックス等は非表示に*/

/*アイコンのスペース*/
#nav-open {
  position: fixed;
  top:10px;
	right: 10px;
  width: 40px;
  height: 40px;
  vertical-align: middle;
  padding:10px 9px;
	z-index: 999999;
}
/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 2px;/*線の太さ*/
  width: 22px;/*長さ*/
  border-radius: 0px;
  background: #000;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -9px;
}
#nav-open span:after {
  bottom: -18px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 999999;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*中身*/
nav {
  overflow: auto;
  position: fixed;
	display: block;
  top: 0;
  left: 0;
	margin: 0;
  z-index: 1000000;/*最前面に*/
  width: 90%;/*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 330px;/*最大幅（調整してください）*/
  height: 100%;
  background-color: rgba(255,255,255,.9);/*背景色*/
  transition: .3s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);/*左に隠しておく*/
  padding: 50px 20px 0;
  text-align: center;
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}

#nav-input:checked ~ nav {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}
  
  nav > ul > li:first-of-type{
    display: none;
  }
  
  nav > div > img{
    display: none;
  }

  nav > a{
    margin-bottom: 15px;
  }

  nav > ul{
    flex-wrap: wrap;
    height: auto;
    padding-left: 0;
  }

  nav > ul > li{
    width: 100%;
    height: auto;
    margin-right: 0;
    border-left: none;
  }

  nav > ul > li a{
    display: block;
    width: 100%;
    padding: 15px 10px 10px;
    border-bottom: 1px solid #000;
    text-align: left;
  }

  nav > ul > li:first-of-type a {
    border-bottom: none;
  }

  nav > ul > li a img{
    max-width: 100%;
  }
  
  nav > ul > li:nth-last-of-type(3) a{
    border-bottom: none;
  }
  
  nav > ul > li:last-of-type{
    width: 100%;
    height: auto;
    border-bottom: none;
  }
  
  nav > ul > li:last-of-type a{
    border-bottom: none;
  }
  
  nav > ul > li:nth-last-of-type(2) a{
    text-align: center;
  }
  
  .language{
    padding: 10px 0;
  }
  
  .language > ul{
    top: 45px;
    width: 100%;
  }
  
  .language > ul li a{
    font-size: 14px;
    padding: 5px;
  }
}

/*==============================
TOPボタン
==============================*/


/*==============================
メインコンテンツ
==============================*/


.hdScroll {
  width: 100px;
  position: absolute;
  bottom: 50px;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 2;
  display: inline-block;
  text-decoration: none;
}

.hdScroll {
  padding-top: 60px;
}
.hdScroll span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 50px;
  box-sizing: border-box;
}
.hdScroll span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: '';
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/*==============================
フッタ
==============================*/
#contactWrap{
  padding: 50px 20px;
  background-color: #f6f6f6;
  text-align: center;
}

#contactWrap > p{
  margin-bottom: 20px;
}

#contactWrap > a{
  display: block;
  width: 100%;
  max-width: 400px;
  color: #000;
  font-size: 20px;
  margin: 0 auto 10px;
  background-color: #fff;
  border: 1px solid #000;
  padding: 15px 20px;
}

#contactWrap > a:last-of-type{
  font-size: 26px;
}

#contactWrap > a span{
  font-size: 16px;
}

#footnavWrap{
  width: 100%;
  padding: 100px 20px 0;
  text-align: center;
  background-image: url("../img/footBack.jpg");
  background-position: center center;
  background-size: cover;
}

#footnavWrap > img{
  width: 50%;
  max-width: 257px;
  margin-bottom: 30px;
}

.shopinfoBox{
  display: flex;
  margin: 0 auto 30px;
  justify-content: center;
}

.shopinfoBox > p{
  color: #fff;
  text-align: center;
}

.shopinfoBox > p:first-of-type{
  margin-right: 40px;
}

#footnavWrap > ul{
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

#footnavWrap > ul li{
  margin-right: 10px;
}

#footnavWrap > ul li::after{
  content: "|";
  color: #fff;
  margin-left: 10px;
}

#footnavWrap > ul li:last-of-type::after{
  display: none;
}

#footnavWrap > ul li a{
  color: #fff;
}

#footnavWrap > a{
  display: block;
  width: 100%;
  max-width: 400px;
  color: #000;
  font-size: 20px;
  margin: 0 auto;
  background-color: #fff;
  border: 1px solid #000;
  padding: 15px 20px;  
}

.footCopy{
  padding: 50px 0;
  font-size: 12px;
  color: #fff;
}

/*==============================
レスポンシブ
==============================*/

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

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

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

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

@media screen and (max-width: 900px) {
  #footnavWrap > ul{
    width: 100%;
    max-width: 300px;
    margin: 0 auto 30px;
    display: block;
  }
  
  #footnavWrap > ul li{
    margin-right: 0;
  }
  
  #footnavWrap > ul li::after{
    display: none;
  }
  
  #footnavWrap > ul li a{
    display: block;
    width: 100%;
    border-bottom: 1px solid #fff;
    padding: 10px;
    text-align: left;
  }
}

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

@media screen and (max-width: 600px){
  .shopinfoBox{
    display: block;
    text-align: center;
  }
  
  .shopinfoBox > p:first-of-type{
    margin-right: 0;
    margin-bottom: 20px;
  }
}

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

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


/*==============================
ローディングアニメーション
==============================*/
