@charset "utf-8";
/* CSS Document */

body {
font-family: 'Zen Kaku Gothic Antique', sans-serif;}

img {
	width: 100%;
}



h1 {
    width: 80%;
    margin: auto;
    max-width: 890px;
}


h2 {
    text-align: center;
    line-height: 3;
    font-size: 2rem;
	font-family: 'Secular One', sans-serif;
}

span.emphasis {
    font-weight: 600;
}





section {
width: 100%;
margin: 100px auto;
}



article {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.img_container {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
}

.img_container img{
border: solid 2px #FFF
}

.img_container ul {
    display: flex;
    padding: 0;
    margin: 0;
    line-height: 0;
}


/*========= ヘッダーナビゲーションのためのCSS ===============*/

/*==ヘッダーの形状*/
#header{
	height: 50px;
	width:100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background:#ffdba1;
	color:#fff;
	text-align: center;
	padding: 20px;
}

/*.doneクラスがついたヘッダー*/
#header.dnone {
	opacity: 0;/*透過0にして非表示に*/
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたら*/
#header.dnone.panelactive {
	opacity: 1;/*不透明にして出現*/
}


/*==ヘッダーのテキストナビゲーションの形状*/
#g-navi ul{
	list-style: none;
	display: flex;
	justify-content: center;
}

#g-navi ul li a{
	display: block;
	text-decoration: none;
	color: #666;
	padding:10px;
}

#g-navi ul li.current a,
#g-navi ul li a:hover{
	color:#fff;	
}

/*.doneクラスがついたヘッダーのテキストナビゲーションの形状*/
#header.dnone #g-navi{
    /*固定位置にして最背面に*/
    position:fixed;
	top: 0;
    left: 0;
	z-index: -1000;
    /*高さと幅*/  
	width:100%;
	height: 100vh;
    /*天地中央＆テキスト中央揃え*/  
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
    /*はじめは透過0に*/  
    opacity: 0;
	transition: all 0.4s;
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたナビゲーションの形状*/
#header.dnone.panelactive #g-navi{
	opacity: 1;/*不透明に*/
	z-index:3;/*最前面に*/
	background:#eee;
}

#header.dnone.panelactive #g-navi ul{
	display:block;/*flexの横並びをblockにして縦並びに*/
}


/*リストの形状*/

#header.dnone.panelactive #g-navi li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	transition:all 0.3s;
}



i.fas.fa-book-open {
    font-size: 1.5rem;
}

i.fab.fa-instagram {
    font-size: 1.5rem;
}


i.fab.fa-line {
    font-size: 1.5rem;
}



/*========= 本文 ===============*/



/*アランチャロゴ*/
.logo {
    width: 100px;
}




.sp {
display: none;
}
p.text_intro {
    width: 80%;
    max-width: 860px;
    margin: 2rem auto;
    line-height: 1.9;
    text-align: justify;
}


p.text_pointup {
    width: 80%;
    max-width: 860px;
    margin: 2rem auto;
    line-height: 1.9;
    text-align: justify;
}



p.text_description {
    line-height: 1.7;
    margin: 1rem;
}




ul.item_list {
    display: inline-block;
    width: 100%;
}

ul.item_list {
    margin: 0 1rem;
}

ul.item_list li {
    font-size: 0.7rem;
    float: left;
    margin-right: 0.5em;
    padding-right: 0.5em;
    border-right: solid 1px;
    line-height: 2;
}



.slick-dots li button {

    display: none;
}


@media (max-width: 735px) {


h1 {
display: none;
}

h2 {
    text-align: center;
    line-height: 3;
    font-size: 1.5rem;
	font-family: 'Secular One', sans-serif;
}

.sp {
display: block;
width: 90%;
margin: 0 auto 1rem;
}

p.text_intro {
    font-size: 0.8rem;
}

p.text_pointup {
    font-size: 0.8rem;
}

p.text_description {
    font-size: 0.7rem;
    line-height: 2;
}


ul.item_list li {
    font-size: 0.6rem;
    float: left;
    margin-right: 0.5em;
    padding-right: 0.5em;
    border-right: solid 1px;
    line-height: 2;
}


.sliderArea {
display: none;
}




}






/*アイテムカテゴリーへのリンク*/

a.btn-border {
  border: 2px solid #000;
  border-radius: 0;
  background: #fff;
}

a.btn-border:hover {
  color: #fff;
  background: #000;
}


.item_link ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    text-align: center;
    width: 80%;
}
.item_link ul li {
    padding: 0 5px;
    margin: 0.5em;
}
.item_link ul li a{
padding: 0 5px;
}

footer {
    margin: 200px auto 100px;
    text-align: center;
}


/*========= ページトップのためのCSS ===============*/

/*リンクの形状*/
#page-top a{
  display: flex;
  justify-content:center;
  align-items:center;
  background:#ffdba1;
  border-radius: 5px;
  width: 60px;
  height: 60px;
  text-align: center;
  text-transform: uppercase; 
  text-decoration: none;
  font-size:0.6rem;
  transition:all 0.3s;
}

#page-top a:hover{
  background: #777;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom:10px;
  z-index: 2;
    /*はじめは非表示*/
  opacity: 0;
  transform: translateX(100px);
}

/*　左の動き　*/

#page-top.LeftMove{
  animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime{
  from {
    opacity: 0;
  transform: translateX(100px);
  }
  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/*　右の動き　*/

#page-top.RightMove{
  animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime{
  from {
    opacity: 1;
  transform: translateX(0);
  }
  to {
    opacity: 1;
  transform: translateX(100px);
  }
}
