html {
	/*↓↓↓remで指定しない時は切ること*/
	font-size: 62.5%;
}
body {
	color: #000;
	font-size: 1.4rem;
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'Meiryo', 'メイリオ', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	/*font-family: Avenir , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;*/
	line-height: 1.8;
	letter-spacing: 0.1em;
	width: 100%;
}

/* Webフォントの表示調整 */
h2,h3,h4{
	transform: rotate(0.001deg);
}

/* スマホ時のfocusの青枠削除 */
a,
a:focus,
button,
button:focus{
	outline: none;
	-webkit-tap-highlight-color : rgba(0,0,0,0);
}

a{
	color: #000;
	text-decoration: none;
}
a:hover,a:active{
	color: #DC002B;
}

/* a アニメーション */
@media screen and (min-device-width:768px){
	a{
		-webkit-transition: color 0.3s;
		-moz-transition: color 0.3s;
		-ms-transition: color 0.3s;
		transition: color 0.3s;
	}
	a:hover{

	}
}

/* 選択時のマーカー色　backgroundで設定 */
::selection {
	background: #ddd;
	color: #555;
}
::-moz-selection {
	background: #ddd;
	color: #555;
}

img{
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}


/*============================================================================

		formパーツ

============================================================================*/
/*input要素デフォルトcss削除用*/
select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 0;
	border: 0;
	margin: 0;
	padding: 0;
	background: none transparent;
	vertical-align: middle;
	font-size: inherit;
	color: inherit;
	box-sizing: content-box;
}
input {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 0;
	border: 0;
	margin: 0;
	padding: 0;
	background: none transparent;
	vertical-align: middle;
	font-size: inherit;
	color: inherit;
	box-sizing: content-box;
	outline: 0px none black;
}
input[type=text],
textarea{
	font-size : 16px;
	border : 1px solid #888;
	-webkit-border-radius : 0;
	-webkit-appearance : none;
	-webkit-tap-highlight-color : rgba(0,0,0,0);
    outline: none;
}
select:-ms-expand {
	display: none;
}
label{
	position: relative;
	display: block;
	-webkit-tap-highlight-color : rgba(0,0,0,0);
}


/*============================================================================

		共通パーツ

============================================================================*/

/*ページ内リンク*/
.page_decoy_wrap{
	margin-top: -65px;
	padding-top: 65px;
}

@media print, screen and (min-width:768px){
	.page_decoy_wrap{
		margin-top: -70px;
		padding-top: 70px;
	}
}
@media print, screen and (min-width:992px){
	.page_decoy_wrap{
		margin-top: -94px;
		padding-top: 94px;
	}
}

#wrap{
	width: 100%;
	overflow: hidden;
}

/*inner max-widthは適時変更*/
.inner_small,
.inner_medium,
.inner_large{
	width: 92%;
	margin: 0 4%;
}
@media print, screen and (min-width:920px){
	.inner_small{
		width: 100%;
		max-width: 900px;
		margin: 0 auto;
	}
}
@media print, screen and (min-width:1020px){
	.inner_medium{
		width: 100%;
		max-width: 1000px;
		margin: 0 auto;
	}
}
@media print, screen and (min-width:1120px){
	.inner_medium{
		width: 100%;
		max-width: 1000px;
		margin: 0 auto;
	}
}

/*2カラム(paddingなし、sp時1カラム)*/
.page_colm2_wrap,
.page_calm2_row{
	width: 100%;
}
@media print, screen and (min-width:768px){
	.page_calm2_row{
		display: table;
		table-layout: fixed;
	}
	.page_calm2_cont{
		display: table-cell;
		width: 50%;
		vertical-align: top;
	}
}

/*3カラム(paddingなし、sp時1カラム)*/
.page_colm3_wrap,
.page_calm3_row{
	width: 100%;
}
@media print, screen and (min-width:768px){
	.page_calm3_row{
		display: table;
		table-layout: fixed;
	}
	.page_calm3_cont{
		display: table-cell;
		width: 33.333333%;
		vertical-align: top;
	}
}
/*4カラム(paddingなし、sp時2カラム)*/
.page_colm4_wrap,
.page_calm4_row{
	width: 100%;
}
.page_calm4_row{
	display: table;
	table-layout: fixed;
}
.page_calm4_cont{
	display: table-cell;
	width: 50%;
	vertical-align: top;
}
@media print, screen and (min-width:768px){
	.page_calm4_cont{
		width: 25%;
	}
}

.sp{
	display: block;
}
.sp_inline{
	display: inline;
}
.pc,
.pc_inline{
	display: none!important;
}
@media print, screen and (min-width:768px){
	.pc{
		display: block!important;
	}
	.pc_inline{
		display: inline!important;
	}
	.sp,
	.sp_inline{
		display: none!important;
	}
}

a.link_btn{
	position: relative;
	display: block;
	min-height: 52px;
	padding: 12px 0 10px 10px;
	text-align: center;
	background: #fff;
	border:1px solid #000;
	border-radius: 4px;
	-webkit-transition: color 0.4s, border-color 0.4s;
	-moz-transition: color 0.4s, border-color 0.4s;
	-ms-transition: color 0.4s, border-color 0.4s;
	transition: color 0.4s, border-color 0.4s;
}
a.link_btn:before {
	position: absolute;
	content: "\e900";
	font-family: 'icomoon';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	top: 50%;
	left: 0;
	transform: translate(15px);
	margin-top: -7px;
	color: #DC002B;
}
a.link_btn:hover{
	color: #DC002B;
	border-color: #a6a6a6;
}
a.link_btn:hover:before{
    animation-name: anime-arrow-move;
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}
@keyframes anime-arrow-move{
    0%  {transform: translate(15px);}
    50% {transform: translate(20px);}
}

/*============================================================================

		header

============================================================================*/
.header_main{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 52px;
	background: #fff;
	z-index: 1000;
}
.header_main .header_inner{
	position: relative;
	height: 52px;
	margin: 0 auto;
}
.header_main h1{
	position: absolute;
	top: 10px;
	left: 10px;
	width: 68px;
	overflow: hidden;
	transform-origin:left top;
	z-index: 3000;
}
.header_main h1 img{
	width: 68px;
	height: auto;
}
.header_main h1.loaded{
	-webkit-transition: top 0.3s, transform 0.3s;
	-moz-transition: top 0.3s, transform 0.3s;
	-ms-transition: top 0.3s, transform 0.3s;
	transition: top 0.3s, transform 0.3s;
}
.header_main h1.loaded img{
	-webkit-transition: transform 0.3s;
	-moz-transition: transform 0.3s;
	-ms-transition: transform 0.3s;
	transition: transform 0.3s;
}
.header_scroll h1{
	top: 7px;
	height: 68px;
	transform: scale(0.55);
}
.header_toggle{
	width: 100px;
	margin: 0 0 0 auto;
	padding: 13px 15px 0 0;
	z-index: 3000;
}
.header_sp_btn{
	display: block;
	position: relative;
	width: 29px;
	height: 24px;
	margin: 0 0 0 auto;
	padding: 0;
	background: none;
	border: none;
}
.header_sp_btn span{
	position: absolute;
	display: block;
	width: 100%;
	height: 4px;
	background: #000;
}
.header_sp_btn span:nth-child(1){
	top: 0;
}
.header_sp_btn span:nth-child(2){
	top: calc(50% - 2px);
}
.header_sp_btn span:nth-child(3){
	bottom: 0;
}

.header_sp_btn.active span{
	width: 90%;
	top: calc(50% - 2px);
}
.header_sp_btn.active span:nth-child(1){
	transform: rotate(45deg);
}
.header_sp_btn.active span:nth-child(2){
	transform: rotate(-45deg);
}
.header_sp_btn.active span:nth-child(3){
	display: none;
}
.header_nav_wrap{
	display: none;
	z-index: 2000;
	position: fixed;
	top: 52px;
	width: 100%;
	height: calc(100% - 52px);
	padding: 70px 50px;
	overflow: hidden;
	overflow-y: scroll;
	background-color: rgba(255,255,255,0.9);
}
.header_scroll .header_nav_wrap{
	padding-top: 40px;
}
.header_main_nav_list{
	padding: 0;
}
.header_main_nav_list > li{
	margin-bottom: 25px;
	font-family: GENJ;
	font-weight: bold;
	font-size: 2.0rem;
	line-height: 1;
	transform: rotate(0.001deg);
}
.dropdown_nav{
	font-size: 1.6rem;
	padding-left: 10px;
}
.dropdown_nav li{
	margin-top: 15px;
	padding-left: 20px;
	line-height: 1;
	background: url(../img/sq_arrow.svg) left 2px no-repeat;
	background-size: 12px 12px;
}
.dropdown_nav .svg_img{
	display: none;
}
.header_sub_nav li,
.header_sp_nav li{
	margin-bottom: 15px;
	line-height: 1;
}

@media print, screen and (min-width:920px){
	.header_main{
		height: 105px;
		padding: 0 15px;
	}
	.header_main h1{
		width:136px;
		top: 28px;
		left: -5px;
		transform-origin:center top;
	}
	.header_main h1 img{
		width: 136px;
	}
	.header_main .header_inner{
		max-width: 1250px;
		height: 105px;
		padding-left: 136px;
	}
	.header_scroll h1{
		top: 18px;
		height: 136px;
		transform: scale(0.5);
	}
	.header_nav_open{
		top: 18px!important;
		height: 136px!important;
		transform: scale(0.5)!important;
	}
	.header_nav_wrap{
		display: flex;
		position: relative;
		top: inherit;
		max-width: 875px;
		height: 105px;
		margin: 0 0 0 auto;
		padding: 0;
		justify-content: space-between;
		overflow: inherit;
		overflow-y: inherit;
	}
	.header_scroll .header_nav_wrap{
		padding-top: 0;
	}
	.header_toggle{
		display: none;
	}
	.header_main_nav_list{
		display: flex;
		padding: 25px 0 0;
	}
	.header_main_nav_list > li{
		position: relative;
		min-width: 110px;
		height: 65px;
		margin:25px 15px 0;
		font-size: 1.8rem;
		text-align: center;
	}
	.header_main_nav_list .dropdown > span{
	    display: block;
	    max-width: 110px;
	    height: 55px;
	    margin: 0 auto;
	}
	.header_main_nav_list .dropdown > span:hover{
		cursor: pointer;
	}
	.header_main_nav_list .active > span{
		color: #DC002B;
	}

	.header_sub_nav ul{
		padding-top: 40px;
		display: flex;
		border-bottom: 1px solid #B2B2B2;
	}
	.header_sub_nav li{
		margin: 0 0 0 20px;
	}
	.header_sub_nav li:first-child{
		margin-left: 0;
	}
	.header_sub_nav a{
		position: relative;
		display: block;
		padding: 10px 0;
		font-size:  1.3rem;
		line-height: 1;
		letter-spacing: 0.1em;
	}
	.header_sub_nav a:hover{
		color: #000;
	}
	.header_sub_nav a:before{
		content: '';
		position: absolute;
		display: block;
		bottom: -1px;
		left: 0;
		width: 100%;
		height: 1px;
		background: #DC002B;
		transform: scaleX(0);
		-webkit-transition: transform 0.2s;
		-moz-transition: transform 0.2s;
		-ms-transition: transform 0.2s;
		transition: transform 0.2s;
	}
	.header_sub_nav a:hover:before,
	.header_sub_nav .active a:before{
		transform: scaleX(1);
	}
	.header_sub_nav .active a:before{
		-webkit-transition: none;
		-moz-transition: none;
		-ms-transition: none;
		transition: none;
	}
	.header_sp_nav{
		display: none;
	}

	.dropdown_nav{
		display: none;
		position: absolute;
		left: 0;
		width: 650px;
		padding: 40px;
		background-color: rgba(255,255,255,0.97);
		border-top: 1px solid #eee;
	}
	.dropdown_nav_inner{
		display: flex;
		max-width: 1170px;
		margin: 0 auto;
		padding: 30px 20px;
	}

	.info_dropdown{
		display: flex;
		justify-content: center;
		width: 100%;
	}

	.dropdown_nav{
		font-size: 1.6rem;
		padding:0;
	}
	.dropdown_nav li{
		width: 285px;
		margin: 0 10px;
		padding: 0;
		background: none;
	}
	.info_dropdown a{
		display: flex;
		width: 100%;
		padding: 20px 30px;
		background: #e0e0e0;
		-webkit-transition: color 0.3s, background 0.3s;
		-moz-transition: color 0.3s, background 0.3s;
		-ms-transition: color 0.3s, background 0.3s;
		transition: color 0.3s, background 0.3s;
	}
	.info_dropdown div{
		width: 50px;
	}
	.dropdown_nav .svg_img{
		width: 50px;
		height: 45.5px;
		display: inherit;
		fill: #a6a6a6;
		-webkit-transition: fill 0.3s;
		-moz-transition: fill 0.3s;
		-ms-transition: fill 0.3s;
		transition: fill 0.3s;
	}
	.info_dropdown span{
		display: block;
		width: calc(100% - 50px);
		padding-top: 13px;
		text-align: center;
		font-size: 2.0rem;
	}
	.info_dropdown a:hover{
		background: #e5e5e5;
	}
	.dropdown_nav a:hover .svg_img{
		fill: #222;
	}
}
@media print, screen and (min-width:1200px){
	.header_nav_wrap{
		max-width: 915px;
	}
	.header_main_nav_list > li{
		min-width: 150px;
	}

	.header_sub_nav li{
		margin: 0 0 0 30px;
	}
	.header_sub_nav li:first-child{
		margin-left: 0;
	}
	.header_sub_nav a{
		letter-spacing: 0.2em;
	}
	.dropdown_nav{
		left: 50%;
		transform: translateX(-50%);
	}
}
@media print, screen and (min-width:1380px){
	.header_main h1{
		top: 28px;
		left: -45px;
	}
	.header_scroll h1{
		top: 15px;
		left: -45px;
	}
	.header_nav_open{
		top: 15px!important;
	}
}


/*============================================================================

		main_contents

============================================================================*/
.top_slider{
	margin: 0 auto;
	padding: 0 15px;
}
.top_slider .slick-dots li{
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0 2px;
    padding: 0;
    cursor: pointer;
}
.top_slider .slick-dots li button{
	display: block;
	width: 70px;
	height: 4px;
	padding: 0;
	background: #A6A6A6;
	border: 3px solid #fff;
	box-sizing: content-box;
	-webkit-transition: background 0.4s;
	-moz-transition: background 0.4s;
	-ms-transition: background 0.4s;
	transition: background 0.4s;
}
.top_slider .slick-dots li button:before{
	content: none;
}
.top_slider .slick-dots li:hover button{
	background: #555;
}
.top_slider .slick-dots li.slick-active button{
	background: #dc002b;
}
.top_slider .slick-dotted.slick-slider{
    margin-bottom: 45px;
}
.main_contents{
	padding-top: 52px;
}
@media print, screen and (min-width:768px){
	.top_slider{
		max-width: 1250px;
		padding: 0;
	}
	.slick-dots li button{
		width: 80px;
	}
}
@media print, screen and (min-width:920px){
	.main_contents{
		padding-top: 105px;
	}
}

/*---------- .top_concept ----------*/
.top_concept{
	padding: 20px 20px 0;
    font-family: GENJ;
    font-weight: bold;
}
.top_concept h2{
    font-size: 2.0rem;
    line-height: 1.6;
}
.top_concept h2 span{
	display: inline-block;
}

.top_concept_inner p{
	margin-top: 15px;
	transform: rotate(0.001deg);
}
.top_concept_inner p a{
	display: inline-block;
	color: #dc002b;
	border-bottom: 1px solid #dc002b;
}
.top_concept_img{
	padding: 25px 10px;
	text-align: center;
}
.top_concept_img img{
	width: 100%;
	max-width: 400px;
}
.top_concept_text .imgs{
	display: none;
}

@media print, screen and (min-width:768px){
	.top_concept{
		max-width: 1250px;
		margin: 0 auto;
		padding: 60px 50px 0;
	}
	.top_concept h2{
	    font-size: 3.8rem;
	}
	.top_concept_inner{
		padding-top: 0;
	}
	.top_concept_inner p{
		margin-top: 25px;
	    font-size: 1.6rem;
	    line-height: 2.2;
	}
	.top_concept_inner p a{
	    line-height: 1.7;
	}
	.top_concept_img{
		padding: 40px 0 0;
	}
}
@media print, screen and (min-width:900px){
	.top_concept_img img{
		width: auto;
		max-width: 100%;
	}
	.top_concept_inner{
		display: flex;
	}
	.paragraph_01 .top_concept_text{
		width: 60%;
		padding: 0 50px 0 0;
	}
	.paragraph_01 .top_concept_img{
		width: 40%;
		padding: 0;
	}
	.paragraph_02 .top_concept_text{
		order: 2;
		width: 50%;
		padding: 30px 0 0 50px;
	}
	.paragraph_02 .top_concept_img{
		order: 1;
		position: relative;
		width: 50%;
	}
	.top_concept_text .imgs{
		display: block;
		text-align: right;
	}
	.paragraph_02 .top_concept_text .imgs img{
		width: 166px;
	}
}
@media print, screen and (min-width:1250px){
	.paragraph_01 .top_concept_text{
		width: 65%;
		padding: 20px 0 0;
	}
	.paragraph_01 .top_concept_img{
		width: 35%;
	}
	.paragraph_02{
		padding-top: 30px;
	}
	.paragraph_02 .top_concept_text{
		padding: 40px 0 0;
	}
	.paragraph_02 .top_concept_img{
		padding-top: 0;
	}
	.paragraph_01 .top_concept_img img{
		width: 545px;
		max-width: inherit;
	}
	.paragraph_02 .top_concept_img img{
		width: 615px;
		max-width: inherit;
		transform: translateX(-85px);
	}
}

/*---------- .top_contents ----------*/
.top_contents{
	padding: 30px 0 50px;
}
.top_contents h2{
	position: relative;
}
.top_contents h2:before{
	content: '';
	position: absolute;
	display: block;
	top: 50%;
	width: 100%;
	height: 1px;
	background-color: #B1B1B1;
	z-index: 1;
}
.top_contents h2 span{
	position: relative;
	display: block;
	width: 260px;
	margin: 0 auto;
    font-family: GENJ;
    font-weight: bold;
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	text-align: center;
	background: #fff;
	z-index: 2;
}
.top_contents_list{
	display: flex;
	flex-wrap: wrap;
	padding: 25px 20px 0;
}
.top_contents_list article{
	width: 100%;
	padding: 0 0 25px;
	text-align: center;
}
.top_contents article a{
	display: block;
}
.top_contents article a:hover{
	color: #000;
}
.top_contents article h3{
    position:relative;
	margin-top: 10px;
	padding: 0 0 10px;
	font-size: 1.5rem;
	font-weight: normal;
}
.top_contents article h3:before{
    content:"";
    position:absolute;
    display:block;
    bottom:0;
    left:0;
    width:100%;
    height:3px;
    background-color:#dc002b;
    transform:scale(0,1.0);
    transform-origin:bottom right;
    transition: transform 0.5s ease;
}
.top_contents article a:hover h3:before{
    transform-origin:bottom left;
    transform:scale(1.0,1.0);
    transition: transform 0.3s ease;
}
.top_contents article a:hover h3:after{
    content:"→";
    position:absolute;
    display:block;
    top: 0;
    right: 15px;
}
.top_contents article a img{
	vertical-align: top;
}

@media print, screen and (min-width:768px){
	.top_contents{
		padding: 70px 0 100px;
	}
	.top_contents h2 span{
		width: 390px;
		font-size: 2.0rem;
	}
	.top_contents_list {
		max-width: 1250px;
		margin: 0 auto;
		padding: 60px 40px 0;
	}
	.top_contents_list article{
		width: 33.2%;
		padding: 0 10px;
	}
	.top_contents article h3{
		margin-top: 15px;
		padding: 0 0 18px;
		font-size: 1.6rem;
	}
}
@media print, screen and (min-width:900px){
	.top_contents_list {
		max-width: 1250px;
		padding: 60px 30px 0;
	}
	.top_contents_list article{
		width: 33.2%;
		padding: 0 20px;
	}
}

/*---------- .top_info ----------*/
.top_info{
	padding: 0 20px;
}
.top_info a{
	display: flex;
	width: 100%;
	max-width: 320px;
	margin: 0 auto;
	padding: 20px 20px;
	border: 1px solid #ccc;
	-webkit-transition: background-color 0.4s ease;
	-moz-transition: background-color 0.4s ease;
	-ms-transition: background-color 0.4s ease;
	transition: background-color 0.4s ease;
}
.top_info a:hover{
	color: #000;
}
.top_info_img{
	width: 55px;
}
.top_info_img .svg_img{
	width: 55px;
	height: 50px;
	vertical-align: middle;
}
.top_info_title{
	display: flex;
	flex-wrap: wrap;
	padding-left: 10px;
}
.top_info_title p{
	width: 100%;
	padding: 3px 0 3px;
	font-size: 1.4rem;
	line-height: 1;
}
.top_info_title h3{
	width: 100%;
    font-family: GENJ;
	font-size: 1.8rem;
    font-weight: bold;
	line-height: 1;
}

.top_info_event{
	margin-bottom: 15px;
}
.top_info_event a{
	border: 1px solid #92aecd;
	background: #e2e9f2;
	background-color: rgba(226,234,243,1);
}
.top_info_event a:hover{
	background-color: rgba(226,234,243,0.5);
}
.top_info_event .svg_img{
	fill: #7b9dc3;
}
.top_info_sale a{
	border: 1px solid #a69968;
	background-color: rgba(222,216,197,1);
}
.top_info_sale a:hover{
	background-color: rgba(222,216,197,0.3);
}
.top_info_sale .svg_img{
	fill: #858062;
}

@media print, screen and (min-width:360px){
	.top_info_title{
		padding-left: 30px;
	}
}
@media print, screen and (min-width:520px){
	.top_info a{
		max-width: 560px;
		padding: 20px 40px 20px 20px;
	}
	.top_info_title{
		display: flex;
		justify-content: space-between;
		width: 100%;
	}
	.top_info_title p{
		width: 58%;
		margin: 0;
		padding-top: 17px;
		text-align: left;
		font-size: 1.6rem;
	}
	.top_info_title h3{
		width: 42%;
		padding-top: 13px;
		text-align: center;
		font-size: 2.0rem;
	}
}
@media print, screen and (min-width:768px){
	.top_info{
		max-width: 1250px;
		margin: 50px auto 0;
		padding: 0 50px;
	}
	.top_info a{
		padding: 25px 30px 25px 20px;
	}
	.top_info_title{
		padding-left: 20px;
	}
	/*.top_info_title p{
		width: 100%;
		padding: 0 0 4px;
		text-align: center;
	}
	.top_info_title h3{
		width: 100%;
		padding-top: 0px;
	}
	.top_info{
		display: flex;
	}
	.top_info_event, .top_info_sale{
		width: calc(50% - 15px);
	}
	.top_info_event{
		margin-right: 15px;
	}
	.top_info_sale{
		margin-left: 15px;
	}*/
}

@media print, screen and (min-width:1150px){
	.top_info a{
		padding: 25px 50px 25px 20px;
	}
	.top_info_title{
		padding-left: 50px;
	}
	.top_info_title p{
		width: 58%;
		margin: 0;
		padding-top: 17px;
		text-align: left;
	}
	.top_info_title h3{
		width: 42%;
		padding-top: 13px;
	}
}


/*============================================================================

		footer

============================================================================*/
.footer_main{
	position: relative;
	padding: 40px 15px 20px;
	background: #F2F2F2;
}
.footer_main_nav{
	padding-bottom: 20px;
	border-bottom: 1px solid #B1B1B1;
}
.footer_main_nav ul{
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
}
.footer_main_nav li{
	text-align: center;
	font-size: 1.3rem;
}
.footer_main_nav li a{
	display: block;
}
.footer_main_nav li .svg_img{
	width: 45px;
	height: 45px;
}
.footer_main_nav li span{
	display: inline-block;
	min-width: 80px;
	margin-top: 10px;
	text-align: left;
	line-height: 1;
}
.footer_main_nav li span:before{
	content: "\e900";
	font-family: 'icomoon';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	display: inline-block;
	margin: -3px 2px 0 0;
	font-size: 0.9rem;
	line-height: 1;
	color: #DC002B;

}
.footer_sub_nav{
	margin: 30px auto 20px;
}
.footer_sub_nav ul{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
}
.footer_sub_nav li{
	display: inline-block;
	margin: 0 8px 15px;
	font-size: 1.2rem;
	line-height: 1;
	text-align: center;
}
.footer_sub_nav li a{
	display: inline-block;
	min-height: 12px;
	padding: 0 0 0 15px;
	background: url(../img/sq_arrow.svg) left top no-repeat;
	background-size: 12px 12px;
}
.footer_main_nav li a .st0{
	fill: #818181;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.footer_main_nav li a:hover .st0{
	fill: #222;
}
.footer_site_info{
	font-style: inherit;
	text-align: center;
}
.footer_shop_info{
	display: none;
}
.footer_logo{
	margin: 15px 0;
	/*margin-bottom: 15px;*/
	font-size: 1.6rem;
	font-weight: bold;
}
.copy{
	text-align: center;
	font-size: 0.9rem;
	letter-spacing: 0;
	line-height: 1.6;
}
@media print, screen and (min-width:360px){
	.footer_main_nav li a{
		min-width: 110px;
		max-width: 120px;
	}
}
@media print, screen and (min-width:768px){
	.footer_main{
		padding: 80px 50px 60px;
	}
	.footer_main .footer_inner{
		display: flex;
		flex-wrap: wrap;
		max-width: 1150px;
		margin: 0 auto;
	}
	.footer_main_nav{
		order: 1;
		width: 100%;
		padding-bottom: 60px;
	}
	.footer_main_nav ul{
		justify-content: space-between;
		max-width: 740px;
		margin: 0 auto;
	}
	.footer_main_nav li .svg_img{
		width: 70px;
		height: 70px;
	}
	.footer_main_nav li span{
		min-width: 95px;
		margin-top: 25px;
		font-size: 1.4rem;
	}
	.footer_main_nav li span:before{
		margin: 0 7px 0 0;
		font-size: 1.2rem;
	}

	.footer_site_info{
		order: 2;
		width: 100%;
		padding: 55px 0;
		text-align: left;
	}
	.footer_logo{
		margin: 0 0 25px;
	}
	.footer_shop_info{
		display: flex;
		font-size: 1.2rem;
	}
	.footer_shop_info ul{
		width: 50%;
		max-width: 430px;
		padding-right: 50px;
	}
	.footer_shop_info li{
		margin-bottom: 3px;
	}
	.footer_shop_info .fs_info_address{
		margin-bottom: 20px;
	}

	.footer_sub_nav{
		order: 3;
		width: 100%;
		margin: 0 auto 20px;
	}
	.footer_sub_nav li{
		margin: 0 0 0 25px;
	}
	.footer_sub_nav li:first-child{
		margin: 0;
	}
	.footer_sub_nav li a{
		padding: 0 0 0 20px;
	}

	.copy{
		order: 4;
		width: 100%;
	}

}
@media print, screen and (min-width:1024px){
	.copy{
		order: 3;
		width: 51%;
		text-align: left;
		letter-spacing: inherit;
	}
	.footer_sub_nav{
		order: 4;
		width: 49%;
		margin: 0;
	}
	.footer_sub_nav ul{
		justify-content: flex-end;
	}
}

.pagetop{
	position: fixed;
	bottom: 0;
	right: 0;
	width: 32px;
	height: 32px;
	z-index: -1;
	opacity: 0;
}
.pagetop.loaded{
	-webkit-transition: opacity 0.5s;
	-moz-transition: opacity 0.5s;
	-ms-transition: opacity 0.5s;
	transition: opacity 0.5s;
}
.pagetop.pagetop_scroll{
	opacity: 1;
	z-index: 100;
}
.pagetop.pagetop_footer{
	position: absolute;
	top: -32px;
	right: 0;
	bottom: inherit;
}
.pagetop a{
	display: block;
	height: 32px;
	padding: 10px 11px 0;
	line-height: 1;
	background: #d8d8d8;
	-webkit-transition: background 0.4s;
	-moz-transition: background 0.4s;
	-ms-transition: background 0.4s;
	transition: background 0.4s;
}
.pagetop svg{
	width: 10px;
	height: 12px;
	vertical-align: top;
	-webkit-transition: fill 0.4s;
	-moz-transition: fill 0.4s;
	-ms-transition: fill 0.4s;
	transition: fill 0.4s;
}
.pagetop a:hover {
	background: #e5e5e5;
}
.pagetop a:hover .st0{
	cursor: pointer;
	fill: #dc002b;
}


/*============================================================================

		プリント設定

============================================================================*/
@media print {
  body{
    width: 1200px;
    transform: scale(0.8);
    -moz-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    transform-origin: 0 0;
  }
  header{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	z-index: 1000;
	}
}
