@charset "utf-8";
/* CSS Document */
/****************************************
基本
****************************************/
html{
	scroll-behavior: smooth;
  font-size: 62.5%;
}
body {
	font-family: "Helvetica Neue", 'Roboto', Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0.05em;
  color: #333333;
}
.pc { display: none !important; }
.sp { display: block !important; }
@media (min-width: 768px){
	body{
		font-size: 1.4rem;
	}
	.pc{ display: block !important; }
	.sp{ display: none !important; }
}

img{
  display: block;
  width: 100%;
  height: auto;
}
a{
  display: block;  
}
a:hover{
	opacity: 0.7;
	color: inherit;
	text-decoration: none;
}
h2, h3{
	letter-spacing: 0.1em;
	text-align: center;
  font-size: 1.8rem;
}
@media (min-width: 768px){
	h2{
    text-align: center;
    padding-bottom: 30px;
	}
}




/*========= LoadingのためのCSS ===============*/
/* Loading背景画面設定　*/
#splash {
/*fixedで全面に固定*/
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background:#eee;
  text-align:center;
  color:#fff;
}
/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* Loading アイコンの大きさ設定　*/
#splash_logo svg{
    width:300px;
}
/*=============== SVGアニメーション内の指定 =================*/
/*アニメーション前の指定*/
#mask path {
  fill-opacity: 0;/*最初は透過0で見えない状態*/
  transition: fill-opacity .4s;/*カラーがつく際のアニメーション0.5秒で変化*/
  fill: none;/*塗りがない状態*/
  stroke: #333;/*線の色*/
}
/*アニメーション後に.doneというクラス名がで付与された時の指定*/
#mask.done path{
  fill: #333;/*塗りの色*/
  fill-opacity: 1;/*透過1で見える状態*/
  stroke: none;/*線の色なし*/
}

/****************************************
main
****************************************/
main{
  padding-top: 60px;
}
@media (min-width: 768px){
  main{
    padding-top: 100px;
  }
}

/****************************************
スライド
****************************************/
.fs-pt-carousel__slide{
	vertical-align: bottom;
}
/**自作用**/
.main--slider li{
	position: absolute;
	display: none;
}

/****************************************
スライド下ボタン
****************************************/
.btn--store{
  height: 55px;
  background-color: #EFEFEF;
  padding-top: 15px;
}
.btn--store__item {
  text-align: center;
  padding: 3px;
  font-size: 1.1rem;
  border: solid 1px;
  vertical-align: middle;
  text-decoration: none;
  width: 135px;
  margin: 0 auto;
  /* margin-top: 15px; */
  background-color: white;
}
@media (min-width: 768px){
  .btn--store{
    padding-top: 13px;
  }
  .btn--store__item{
    font-size: 1.3rem;
    text-decoration: none;
  }
 }

/****************************************
スライド下ニュース
****************************************/
.topTopNews{
	padding: 20px 0 10px;
	background-color: #efefef;
	text-align: center;
}
.topTopNews a{
	text-decoration: underline;
	color: #961919;
}
.topTopNews a:hover{
	text-decoration: none;
}


/****************************************
ストーリー
****************************************/
.main--story{
  padding: 40px 0;
	padding-bottom: calc(10vw + 40px);
  position: relative;
  overflow: hidden;
  background-color:#fff;
}
.main--story::before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 10vw solid #EFEFEF;  /* 三角をグレーにする */ 
  border-left: 100vw solid transparent;
}
.main--story h2{
  margin: 15px 0 15px 0;
}
.main--story p{
	text-align: center;
  font-size: 1.2rem;
}
@media (min-width: 768px){
  .main--story{
    padding: 80px 0;
    padding-bottom: calc(10vw + 40px);
    position: relative;
    overflow: hidden;
    background-color: #fff;
  }
  .main--story__content{
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 120px;
  }
  .main--story p{
    font-size: 1.6rem;
  }
}


/****************************************
背景グレー
****************************************/
.section--background{ 
  padding-bottom: calc(10vw + 40px);  
  position: relative;
  overflow: hidden;
  background-color:#EFEFEF;/* .section1の背景 */ 
}
.section--background::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 5vw solid #999;  /* ちら見せ三角 高さを調節*/ 
  border-left: 100vw solid transparent;
}
.section--background::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 10vw solid #fff;   /* 三角を白に */ 
  border-right: 100vw solid transparent;
}
@media (min-width: 768px){
	.section--background {
    padding-bottom: calc(10vw + 80px);
    position: relative;
    overflow: hidden;
    background-color: #EFEFEF;
	}
}

/****************************************
ストア
****************************************/
.main--store {
  margin-top: 50px;
}
.main--store h2{
	margin-bottom: 2rem;
}
.main--store ul{
  display: flex;
  flex-wrap: wrap;
}
.main--store li{
  width: 50%;
}
.main--store__txt{
  padding-top: 20px;
  font-size: 1.2rem;
  text-align: center;
}
.btn--store02{
  height: 55px;
  padding-top: 20px;
  margin-bottom: 40px;
}
.btn--store__item02{
  text-align: center;
  padding: 3px;
  font-size: 1.1rem;
  border: solid 1px;
  vertical-align: middle;
  text-decoration: none;
  width: 135px;
  margin: 0 auto;
  /* margin-top: 15px; */
  background-color: white;
}
.btnAll{
  display: flex;
  justify-content: center;
}
.btnAll a{
  position: relative;
  padding-right: 1em;
  text-decoration: underline;
  font-size: 1.4rem;
}
.btnAll a::after{
  content: '>';
  position: absolute;
  right: 0;
}
@media (min-width: 768px){
  .main--store ul{
    max-width: 1000px;
    margin: 0 auto;
  }
  .main--store__txt{
    font-size: 1.6rem;
  }
  .btnAll{
    padding-top: 30px;
  }
  .btnAll a{
    font-size: 1.8rem;
  }
}

/****************************************
ヘッダー
****************************************/
header{
	position: fixed;
	top: 0;
	display: flex;
	align-items: center;
	width: 100%;
	height: 60px;
	padding: 10px;
	background-color: #ffffff;
	line-height: 1.7;
	z-index: 3;
}
header .logo{
  margin: 0 auto;
}
.logo img{
	width: auto;
	height: 20px;
}
@media (min-width: 768px){
	header{
    height: 100px;
    padding: 30px;
	}
	.logo img{
		height: 33px;
	}
}

/****************************************
footer
****************************************/
footer{
	position: relative;
	background-color: #EFEFEF;
	padding: 15px 25px;
	margin-top: 186px;
	border: none;
	line-height: 1.7;
	letter-spacing: 0.05em;
}

/****ページトップへ****/
.page--top{
	position: absolute;
	top: -106px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	cursor: pointer;
}
.page--top:hover{
	opacity: 0.7;
}
.page--top__icon{
    border-top: solid 2px #333;
    border-left: solid 2px #333;
    width: 14px;
    height: 14px;
    transform: rotate(45deg);
    margin: 0 auto;
}
/****フッター下部****/
.footer--sns{
		display:-webkit-flex; display:flex;
		-webkit-flex-wrap:wrap; flex-wrap:wrap;
    margin-bottom: 40px;
}
.footer--sns li{
	margin: 0 40px 10px 0;
}
.footer--sns a{
	display: flex;
	align-items: center;
}
.footer--sns img{
    width: 20px;
    margin-right: 10px;
}
.copyright{
    text-align: center;
}
@media (min-width: 768px){
    .footer--sns{
			font-size: 16px;
    }
}
