
 /*------------- top ::: header ------------*/
header {
    display: flex;
    flex-flow: column;
    height: 300px;
    background-color: #e0dad3;
}
header .top_sns {
	text-align: right;
	padding-right: 20px;
	height: 30px;
}
header .top_sns a{
    position:relative;
} 
header .top_sns img {
	width: 30px;
	padding: 5px 5px 0;
	box-sizing: border-box;
}
header .top_logo {
	height: 450px;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	margin-top: -30px;
}
header .top_logo img {
	width: 300px;
}
.top_base {
	text-align: center;
	vertical-align: middle;
	height: 40px;
	margin: 0 auto;
	padding: 10px 0 0;
	bottom: 0;
	color: #FFF;
	background-color: #000;
}
.top_base img {
	height: 28px;
	padding: 3px 0 10px;
	box-sizing: border-box;
}
 /*------------- top ::: items ------------*/

#container {
    overflow:hidden;
}
.content {
    max-width: 1000px;
    display: flex;
    width: 100%;
    padding: 50px 20px;
}
.item01_txt {
    display: flex;
    flex-flow: column;
    align-items: flex-end;
    right: -5%;
    padding: 30px 0 0 0;
    line-height: 2.3em;
    letter-spacing: 0.05em;
    z-index: 1;
}
.item02_txt {
    padding: 30px 0 0 20px;
    text-align: left;
    line-height: 2.3em;
    letter-spacing: 0.05em;
    z-index: 1;
}
.item01_pict img,
.item02_pict img {
    width: 100%;
}
.item01_about {
	min-width:405px;
    padding: 20px 0 20px 0;
    text-align: left;
    line-height: 1.5em;
}
.item02_about {
    padding: 20px 0 20px 5px;
    line-height: 1.5em;
}
.about_pict {
    background-image: url("../images/about.jpg");
    width: 100%;
    height: 500px;
    display: flex;
    text-align: center;
    margin: 0 auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
}
.about_pict img {
	width: 1000px;
	text-align: center;
	margin: 0 auto;
}
.about_txt p {
	padding: 0;
	margin: 0;
    line-height: 1.5em;
}
 /*-----arrow RIGHT----*/
.btnarrow_r {
    position: relative;
    display: inline-block;
    margin: 10px 0;
    padding: 0 20px 0 0;
    color: #000;
    text-decoration: none;
    outline: none;
    font-size: 2.8em;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    letter-spacing: 0.03em;
}
.btnarrow_r::before {
    content: '';
    /*絶対配置で下線の位置を決める*/
    position: absolute;
    bottom: -12px;
    right: -70px;
    /*下線の形状*/    
    width: 500px;
    height: 2px;
    background:#000;
    transition: all .3s;
}
.btnarrow_r::after {
    content: '';
    position: absolute;
    bottom: 0px;
    right: -72px;
    /*矢印の形状*/    
    width: 40px;
    height: 2px;
    background:#000;
    transform: rotate(35deg);
    transition: all .3s;
}
.btnarrow_r:hover::before{
    right: -22.5%;
}
.btnarrow_r:hover::after{
    right: -23.1%;
}
/*-----arrow LEFT----*/
.btnarrow_l {
   position: relative;
   display: inline-block;
   margin: 10px 0;
   padding: 0;
   color: #000;
   text-decoration: none;
   outline: none;
   font-size: 2.8em;
   font-family: 'Montserrat', sans-serif;
   font-weight: bold;
   letter-spacing: 0.05em;
}
.btnarrow_l::before {
   content: '';
   /*絶対配置で下線の位置を決める*/
   position: absolute;
   bottom: -11px;
   right: -13px;
   /*下線の形状*/    
   width: 500px;
   height: 2px;
   background:#000;
   transition: all .3s;
}
.btnarrow_l::after {
   content: '';
   position: absolute;
   bottom: 0px;
   left: -72px;
   /*矢印の形状*/    
   width: 40px;
   height: 2px;
   background:#000;
   transform: rotate(-35deg);
   transition: all .3s;
}
.btnarrow_l:hover::before{
   right: 2.8%;
}
.btnarrow_l:hover::after{
   left: -23.0%;
}

 /*------------- top ::: store ------------*/

.between {
    -webkit-box-pack:justify;
    -ms-flex-pack:justify;
    justify-content:space-between;
}
.store_item {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin: 0 auto;
    padding: 0 10px;
}
.store_pict {
    padding-bottom: 10px;
    margin: 0 10px;
    text-align: center;
}
.store_pict:last-child {
    margin-right: 0;
}
.store_pict img {
    width: 100%;
}
.store_btn {
	padding: 0;
}
.store_btn h7 {
    font-size: 1.2em;
    font-weight: bold;
    padding: 20px 0 0;
}
.store_btn p {
    padding: 0;
	margin: -5px 0 0;
    line-height: 1.8em;
}
	.btn_store a {
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: relative;
		margin: 5px;
		padding: 10px 25px 10px 25px;
		width: 210px;
		height: 50px;
		color: #FFF;
		font-size: 16px;
		font-weight: 700;
		line-height: 1.0em;
		text-align: left;
		background-color: #000;
		transition: 0.3s;
		border-radius: 50vh;
	}

	.btn_store a::before {
		content: '';
		position: absolute;
		top: calc(50% - 2px);
		right: 1em;
		transform: translateY(calc(-50% - 2px)) rotate(30deg);
		width: 12px;
		height: 2px;
		background-color: #FFF;
		transition: 0.3s;
	}
	.btn_store a::after {
		content: '';
		position: absolute;
		top: 50%;
		right: 1em;
		transform: translateY(-50%);
		width: 50px;
		height: 2px;
		background-color: #FFF;
		transition: 0.3s;
	}
	.btn_store a:hover {
		text-decoration: none;
		background-color: #bbbbbb;
		color: #f15a24;
	}
	.btn_store a:hover::before,
	.btn_store a:hover::after {
		right: 0.5em;
		background-color: #f15a24;
	}

/*----------- for SP --------------------------*/
@media (max-width: 1024px) {
.content {
    max-width: 100%;
	display: flex;
	flex-flow: column;
    padding: 10px;
}
.col-5-,
.col-7-,
.col-12{
	width: 100%;
}
header {
	height: 200px;
}
header .top_sns {
	padding-right: 0;
	height: 20px;
    z-index: 10;
}
header .top_logo img {
	width: 70%;
}
.item01_txt,
.item02_txt {
	min-width: none;
	width: 100%;
    right: 0;
    padding: 5px 0 0;
    text-align: center;
	margin: 0 auto;
    align-items :flex-start;
    line-height: 2.3em;
}
.item01_about,
.item02_about {
	min-width: none;
	width: 100%;
    padding: 10px 10px 20px;
    text-align: left;
    box-sizing: border-box;
}
 /*-----arrow RIGHT----*/
.btnarrow_r,
.btnarrow_l {
	text-align: center;
    margin: 10px auto;
    padding: 0;
    font-size: 2.3em;
    letter-spacing: 0.01em;
}
.btnarrow_r::before,
.btnarrow_l::before {
    bottom: -10px;
    right: 0;
    width: 100%;
    height: 2px;
}
.btnarrow_r::after,
.btnarrow_l::after {
	display: none;
}
	
 /*------------- topSP ::: store ------------*/
.store_item {
	display: flex;
    flex-flow: column;
    padding: 0 10px 20px;
}
.store_btn {
    width: 80%;
    padding: 0 0;
    box-sizing: border-box;
    text-align: center;
    margin: 0 auto;
}
.store_btn h7 {
    font-size: 1.6em;
}
.btn_store a {
    text-align: center;
    width: 90%;
    height: 50px;
    margin: 5px auto;
} 

/*------------- topSP ::: about ------------*/

.about_pict {
    background-image: url("../images/about_sp.jpg");
    height: 500px;
    background-size: cover;
    background-position: center center;
}
    .about_txt p {
	padding: 10px 0 0;
}
	
	
}