@charset "utf-8";
/*===============================================================
	
	2020/6/16
	
===============================================================*/

/* 初期化
----------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-style:normal;
	font-weight: normal;
	font-size: 100%;
	vertical-align: baseline;
	outline: none;
}
blockquote, q {	quotes: none;	}
blockquote:before, blockquote:after,
q:before, q:after {	content: '';	content: none;}
input, textarea { margin: 0;	padding: 0;}
input[type="submit"], textarea { font-family: inherit; }
table{	border-collapse: collapse; border-spacing:0;	}
body { font-family:'Hiragino Kaku Gothic Pro','メイリオ','Meiryo','ＭＳ Ｐゴシック',Osaka,sans-serif; }
h1,h2,h3,h4,h5,h6,p,li,th,td,dt,dd { font-size:14px; line-height:1.5; }
caption,th,td { text-align:left; vertical-align:top; }
img { vertical-align:top; border:0; }
ul,li { list-style:none; }
option { padding-right:1em; }
address,caption { font-style:normal; font-weight:normal; }
a {	outline:none;	text-decoration:underline; }
a:focus {	outline:none;	}
ul a ,li a {	zoom:1;	}
strong{ font-weight: bold; }
em{ font-style: italic; }

form {
    margin: 0;
    padding: 0;
}

input,
select,
textarea {
	/*font-family: Arial, Verdana, Helvetica, sans-serif;*/
	border: 1px solid #ddd;
	background-color: transparent;
	padding:5px;
	font-size: 16px;
	line-height: 1.6;
}


/* HTML5
----------------------------------------------------------------*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

/* 文字サイズ、装飾
----------------------------------------------------------------*/
.bold	{	font-weight:bold; }
.cap {
	font-size:12px;
	line-height:15px;
	}		
.red	{	color:#943023;		}
.yellow	{	color:#cbb847;		}
.blue	{	color:#0047a2;		}
.lightblue { color:#00afd7; }
.green	{	color:#5b9000;	}
.brown	{	color:#633;		}
.pink	{	color:#f3c;		}
.gray	{	color:#eaeeed;		}
.deepgray { color:#92999f ;}
.align_center	{	text-align:center;		}
.align_right	{	text-align:right;		}
.align_left	{	text-align:left;		}
.replace {	overflow:hidden;	white-space:nowrap;	text-indent:100%;	}

/* フロート関係
----------------------------------------------------------------*/
.clear {
	width:100%;
	overflow:hidden;
}
.clearboth {
	clear:both;
}
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
.cf {
  *zoom: 1;
}
.flol {
	float:left;
}
.flor {
	float:right;
}
/* マージン
----------------------------------------------------------------*/
.mt0	{	margin-top:0px !important; }
.mt05	{	margin-top:5px;		}
.mt10	{	margin-top:10px;	}
.mt15	{	margin-top:15px;	}
.mt20	{	margin-top:20px;	}
.mt25	{	margin-top:25px;	}
.mt30	{	margin-top:30px;	}
.mt40	{	margin-top:40px;	}
.mt50	{	margin-top:50px;	}
.mt60	{	margin-top:60px;	}
.mt70	{	margin-top:70px;	}
.mt80	{	margin-top:80px;	}
.mt90	{	margin-top:90px;	}
.mt100	{	margin-top:100px;	}

.mb05	{	margin-bottom:5px;	}
.mb10	{	margin-bottom:10px;	}
.mb15	{	margin-bottom:15px;	}
.mb20	{	margin-bottom:20px;	}
.mb25	{	margin-bottom:25px;	}
.mb30	{	margin-bottom:30px;	}
.mb40	{	margin-bottom:40px;	}
.mb50	{	margin-bottom:50px;	}

/* html/body設定
----------------------------------------------------------------*/
html {
}
body {
	width: 100%;
	color:#333;
	background:#666;
	text-align:left;
	font-size:14px;
	line-height:25px;
	-webkit-text-size-adjust:none; /* 縦横文字サイズ同じ */
	-webkit-font-smoothing: antialiased;
}
a {
	color:#000;
	transition: all 0.3s;
	text-decoration: none;
}
a:hover { color:#D6000F; }

.overflow_hidden {
	overflow: hidden;
	background: #fff;
}
.blur {
	-ms-filter: blur(3px);
  filter: blur(3px);
}
.boxshadow {
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.20);
}
/* タブレット以下 */
@media screen and (max-width: 1070px) {
}	/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～640px */
@media only screen and (max-width: 800px) {
}	/* for SP max-width: 800px */

/*===============================================================
	
	基本文字サイズ
	
===============================================================*/
h2 {
	/*font-size:172%;	/* 24px */
	font-weight:bold;
}
h3 {
	/*font-size:172%;	/* 24px */
	font-weight:bold;
}
h4 {
	/*font-size:115%;	/* 16px */
	line-height:1.4;
	font-weight:bold;
}
p {
	/*font-size:100%;	/* 14px */
	line-height:1.8;
}
sup {
	margin:0;
	padding:0;
	font-size:11px;
	line-height:15px;
}
/*===============================================================
	
	文字
	
===============================================================*/

/*===============================================================
	
	noto sans + yakuhan
	
===============================================================*/
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
	src: local("Noto Sans CJK JP Regular"),url('/common/webfont/NotoSansCJKjp-Regular_subset.woff') format('woff');
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: bold;
  font-weight: 700;
  src: local("Noto Sans CJK JP Bold"),url('/common/webfont/NotoSansCJKjp-Bold_subset.woff') format('woff');
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: bold;
  font-weight: 800;
  src: local("Noto Sans CJK JP Black"),url('/common/webfont/NotoSansCJKjp-Black_subset.woff') format('woff');
}
@font-face {
    font-family: "YakuHanJP";
    font-style: normal;
    font-weight: normal;
    src: url("/common/webfont/yakuhan/YakuHanJP-Regular.woff2") format("woff2"),
    url("/special/common/webfont/yakuhan/YakuHanJP-Regular.woff") format("woff");
}
@font-face {
    font-family: "YakuHanJP";
    font-style: normal;
    font-weight: bold;
    src: url("/common/webfont/yakuhan/YakuHanJP-Bold.woff2") format("woff2"),
    url("/special/common/webfont/yakuhan/YakuHanJP-Bold.woff") format("woff");
}
@font-face {
    font-family: "YakuHanJP";
    font-style: normal;
    font-weight: bold;
    src: url("/common/webfont/yakuhan/YakuHanJP-Black.woff2") format("woff2"),
    url("/special/common/webfont/yakuhan/YakuHanJP-Black.woff") format("woff");
}

* {
	font-family: 'YakuHanJP','Noto Sans JP', sans-serif;
}
.en {
	font-family: 'Lato','YakuHanJP','Noto Sans JP', sans-serif;
}




/*===============================================================
	
	PC/SP/TABLET
	
===============================================================*/
.sp {
	display:none;
}
.pc {
}
.tablet {
	display:none;
}
.sp {
	display:none;
}
.sp_tablet {
	display:none;
}
.none {
	display:none !important;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {
.pc {
	display:none;
}
.tablet,
.pc_tablet,
.sp_tablet {
	display:block;
}
}	/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.sp {
	display:block;
}
.pc_tablet,
.tablet {
	display:none;
}
}	/* for SP max-width: 800px */

/*===============================================================
	
	img fig
	
===============================================================*/
.thumb img, 
.fitimg img, 
.photo img {
	width:100%;
	height:auto;
}
/* タブレット以下 */
@media screen and (max-width: 1070px) {

}	/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.content .fig {
	margin-top:15px;
}
.photo_sp_full {
	overflow: hidden;
	width:calc(100% + 16vw);
	margin-left: -8vw;
}	
}	/* for SP max-width: 800px */


/*===============================================================
	
	画像バリア
	
===============================================================*/
.wrapper img {
	pointer-events:none;
	-webkit-touch-callout:none;
}
.wrapper .barrier img {
	pointer-events: auto;
}
/* タブレット以下 */
@media screen and (max-width: 1070px) {

}	/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
}	/* for SP max-width: 800px */


/*===============================================================
	
	レイアウト
	
===============================================================*/
.wrapper {
}
.full_width {
	width: 100%;
	padding: 0 50px;
	box-sizing: border-box;
}
.max_width {
	max-width:1500px;
	margin-left:auto;
	margin-right:auto;
	padding: 0 100px;
	box-sizing:border-box;
}
.wide_width {
	width:1200px;
	margin-left:auto;
	margin-right:auto;
	box-sizing:border-box;
}
.content_width {
	width:1070px;
	margin-left:auto;
	margin-right:auto;
	box-sizing:border-box;
}
.narrow_width {
	width:700px;
	margin-left:auto;
	margin-right:auto;
	box-sizing:border-box;
}
/* タブレット以下 */
@media screen and (max-width: 1600px) {
.full_width,
.max_width {
	width:100%;
	padding: 0 100px;
}
}	/* for tablet max-width: 1400px */
/* タブレット以下 */
@media screen and (max-width: 1300px) {
.wide_width {
	width:100%;
	padding: 0 50px;
}
.wide_width .content_width {
	width:100%;
	padding: 0 0;
}
.max_width {
	width:100%;
	padding: 0;
}
}	/* for tablet max-width: 1400px */

/* タブレット以下 */
@media screen and (max-width: 1070px) {
.full_width,
.wide_width {
	width:100%;
	padding: 0 0;
}
}	/* for tablet max-width: 1400px */


/* タブレット以下 */
@media screen and (max-width: 1070px) {
.content_width {
	width:100%;
}
}	/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.narrow_width {
	width:100%;
}
}	/* for SP max-width: 800px */

/*===============================================================
	
	header
	
===============================================================*/
.header_bg {
	min-height: 100px;
	background: #666;
}
.header {
	border-top: solid 3px #D6000F;
	background: #1d1919;
	background: -moz-linear-gradient(top,  rgba(0,0,0,0.7) 0%, rgba(1,1,1,0.9) 1%, rgba(104,101,101,0) 100%);
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0.7) 0%,rgba(1,1,1,0.9) 1%,rgba(104,101,101,0) 100%);
	background: linear-gradient(to bottom,  rgba(0,0,0,0.7) 0%,rgba(1,1,1,0.9) 1%,rgba(104,101,101,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6000000', endColorstr='#00686565',GradientType=0 );
	width: 100%;
	height: 100px;
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items: center;
	padding: 0 20px;
	position: fixed;
	transition: all 0.3s;
	z-index: 1000;
	box-sizing: border-box;
}
.scrolled .header_bg {
	min-height: 50px;
}
.scrolled .header {
	height: 50px;
}
.humberger{
	display: none;
}
/* タブレット以下 */
@media screen and (max-width: 1300px) {
.header_bg {
	min-height: 100px;
}
.header {
	border-top: solid 3px #D6000F;
	height: 100px;
	padding: 0 20px;
}
.scrolled .header_bg {
	min-height: 50px;
}
.scrolled .header {
	height: 50px;
}
}/* for tablet max-width: 1300px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.scrolled .header_bg ,
.header_bg {
	min-height: 20vw;
}
.scrolled .header,
.header {
	height: 20vw;
	padding: 0 3vw;
}
	
.scrolled .header_bg {
	min-height: 13vw;
}
.scrolled .header {
	height: 13vw;
	padding: 0 3vw;
}
.humberger{
	display: block;
}
.header_menu .store-btn{
	display: none;
}
}/* for SP max-width: 800px */

/*-------------------------------------------------------------
	header_logo	
-------------------------------------------------------------*/
.header .header_logo {
	width: 225px;
	height: 60px;
	transition: all 0.3s;
}
.header_logo a {
	text-decoration: none;
	color: #fff;
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items: center;
}
.header_logo a:hover {
	color: #D6000F;
}
.header .header_logo img {
	width: 60px;
	height: 60px;
	transition: all 0.3s;
}
.header .header_logo span {
	font-size: 20px;
}
.scrolled .header .header_logo {
	width: 145px;
	height: 30px;
}
.scrolled .header .header_logo img {
	width: 30px;
	height: 30px;
}
.scrolled .header .header_logo span {
	font-size: 14px;
}

/* タブレット以下 */
@media screen and (max-width: 1000px) {
.header .header_logo {
	width: 200px;
	height: 50px;
}
.header .header_logo img {
	width: 50px;
	height: 50px;
}
.header .header_logo span {
	font-size: 18px;
}

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.header_logo a {
	justify-content: flex-start;
}
.header .header_logo {
	width: 58vw;
	height: 12vw;
}
.header .header_logo img {
	width: 12vw;
	height: 12vw;
}
.header .header_logo span {
	font-size: 5vw;
	padding-left: 3vw;
}
.scrolled .header .header_logo {
	width: 50vw;
	height: 8vw;
}
.scrolled .header .header_logo img {
	width: 8vw;
	height: 8vw;
}
.scrolled .header .header_logo span {
	font-size: 4vw;
}
}/* for SP max-width: 800px */

/*-------------------------------------------------------------
	header_nav	
-------------------------------------------------------------*/
.header .header_nav {
	width: 450px;
	position: absolute;
	top: 0; bottom: 0; left: 0; right: 0;
	margin: auto;
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items: center;
	transition: all 0.3s;
} 
.header .header_nav li a {
	display: block;
	width: 150px;
	height: 95px;
	line-height: 95px;
	text-align: center;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	border-bottom: solid 3px rgba(0,0,0,0);
	box-sizing: border-box;
	transition: all 0.3s;
}
.header .header_nav li a:hover {
	border-bottom: solid 3px #fff;
}
.header .header_nav li a.current:hover,
.header .header_nav li a.current {
	border-bottom: solid 3px #D6000F;
}

.scrolled .header .header_nav li a {
	height: 50px;
	line-height: 50px;
	font-size: 14px;
}
.header_menu .store-btn .red-button{
	display: block;
	position: fixed;
	top: 36px;
	right: 20px;
	margin: 0;
	z-index: 1001;
}
.scrolled .header_menu .store-btn .red-button{
	top: 10px;
	padding: 5px 10px;
}
.humberger{
		display: none;
}
/* タブレット以下 */
@media screen and (max-width: 1300px) {
.header .header_nav {
	width: 300px;
} 
.header .header_nav li a {
	width: 100px;
	height: 95px;
	line-height: 95px;
	font-size: 16px;
	border-bottom: solid 3px rgba(0,0,0,0);
}
.header .header_nav li a:hover {
	border-bottom: solid 3px #D6000F;
}
}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.header .header_nav {
	display: none;
}
.humberger{
	display: block;
}
.header_menu .store-btn .red-button{
	display: none;
}
}/* for SP max-width: 800px */


/*===============================================================
	
	header_menu
	
===============================================================*/
.header_menu {
}
.header_menu .humberger {
	position: fixed;
	top: 36px;
	right: 20px;
	z-index: 1020;
	width: 40px;
	height: 24px;
	cursor: pointer;
	transition: all 0.3s;
}
.header_menu .humberger span {
	position: relative;
	width: 40px;
	height: 2px;
	color: #f00;
	background: #fff;
	display: block;
	transition: all 0.1s;
	transform: translateY(12px);
	cursor: pointer;
}
.header_menu .humberger span::before,
.header_menu .humberger span::after {
	content:'';
	position:absolute;
	top: 0; bottom: 0; left: 0; right: 0;
	width: 40px;
	height: 2px;
	background: #fff;
	transition: all 0.3s;
	transform: translateY(-12px);
}
.header_menu .humberger span::before {
	transform: translateY(12px);
}
.header_menu .red-button{
	background-color: #d6000f;
	font-weight:normal;
	padding: 10px 20px;
	color: #FFF;
	text-decoration: none;
	text-align:center;
	cursor: pointer;
	line-height: 20px;
	border: none;
	transition: all 0.2s ease-in-out;
	display: block;
    max-width: 130px;
	letter-spacing: 0.1em;
	margin: 50px 0;
}
/* hover	*/
.header_menu .humberger:hover span {
}
.header_menu .humberger:hover span:after {
	transform: translateY(-8px);
}
.header_menu .humberger:hover span:before {
	transform: translateY(8px);
}
.header_menu .menu_panel .menu a.red-button:hover{
	color: white;
}
/* active	*/
.header_menu.opend .humberger span {
	width: 0;
	background: #000;
}
.header_menu.opend .humberger span::after {
	transform: translateY(0px) rotate(135deg);
	background: #fff;
}
.header_menu.opend .humberger span::before {
	transform: translateY(0px) rotate(-135deg);
	background: #fff;
}
.header_menu.opend .humberger:hover span::after,
.header_menu.opend .humberger:hover span::before,
.header_menu.opend .humberger:hover span {
	background: #D6000F;
}

.scrolled .header_menu .humberger {
	position: fixed;
	top: 15px;
}
/* タブレット以下 */
@media screen and (max-width: 1300px) {
.header_menu .humberger {
	top: 36px;
	right: 20px;
}
}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.header_menu .humberger {
	top: 8vw;
	right: 3vw;
	width: 8vw;
	height: 4vw;
}
.header_menu .humberger span {
	width: 8vw;
	height: 2px;
	transform: translateY(2vw);
}
.header_menu .humberger span::before,
.header_menu .humberger span::after {
	width: 8vw;
	height: 2px;
	transform: translateY(-2vw);
}
.header_menu .humberger span::before {
	transform: translateY(2vw);
}
}/* for SP max-width: 800px */

/*-------------------------------------------------------------
	menu背景	
-------------------------------------------------------------*/
.header_shopnav {
	position:relative;
	z-index: 999;
	height: 160px;
}
.menu_panel_bg,
.shop_menu_panels_bg {
	position: fixed;
	right: 0;
	background: rgba(0,0,0,0.0);
	z-index: 1005;
	width: 100vw;
	height: 100vh;
	transition: all 0.3s;
	pointer-events: none;
}
.shop_menu_panels_bg.active,
.menu_panel_bg.active {
	background: rgba(0,0,0,0.7);
	pointer-events:inherit;
}
.shop_menu_panels_bg {
	z-index: 500;
	height: calc(100vh - 130px);
	top: 130px;
}

/* タブレット以下 */
@media screen and (max-width: 1300px) {
.shop_menu_panels_bg {
	height: calc(100vh - 100px);
	top: 100px;
}
}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.header_shopnav {
	height: 20vw;
	height: calc(35vw - 3px);
}
.scrolled .header_shopnav {
	height: calc(33vw - 3px);
}
.shop_menu_panels_bg {
	height: calc(100vh - 20vw);
	top: 20vw;
}
}/* for SP max-width: 800px */

/*===============================================================
	
	header_menu .menu_panel
	
===============================================================*/
.header_menu .menu_panel {
	position: fixed;
	top: 0;
	right: -300px;
	background: #fff;
  background: #343434;
  background: linear-gradient(0deg, #343434 0%, #282828 100%);
	width: 300px;
	height: 100vh;
	z-index: 1010;
	box-sizing: border-box;
	padding: 100px 30px 80px 30px;
	overflow-y: scroll;
	display:flex;
	flex-direction:column;
	flex-wrap:wrap;
	justify-content:space-between;
	transition: all 0.3s;
}

.header_menu.opend .menu_panel {
	top: 0;
	right: 0;
}

.header_menu .menu_panel .menu li + li {
	margin-top: 20px;
}
.header_menu .menu_panel .menu li + li.about {
	margin-top: 50px;
}
.header_menu .menu_panel .menu a {
	color: #fff;
	font-size: 18px;
	line-height: 1.5;
	text-decoration: none;
	font-weight: bold;
}
.header_menu .menu_panel .menu .sub a {
	font-size: 14px;
	font-weight: normal;
}
.header_menu .menu_panel .menu a:hover {
	color: #D6000F;
}
.header_menu .menu_panel .sns {
	height: 30px;
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
}
.header_menu .menu_panel .sns li {
	margin-right: 10px;
}
.header_menu .menu_panel .sns a {
	display: block;
	width: 30px;
	height: 30px;
	background: #000;
	border-radius: 50%;
}
.header_menu .menu_panel .sns a:hover {
	background: #D6000F;
}
.header_menu .menu_panel .sns a img {
	width:100%; height: auto;
}
/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.header_menu .menu_panel {
	justify-content:flex-start;
}
.header_menu .menu_panel .menu li + li {
	margin-top: 4vw;
}
.header_menu .menu_panel .menu li + li.about {
	margin-top: 8vw;
}
.header_menu .menu_panel .menu a {
	font-size: 5vw;
	line-height: 1.5;
	font-weight: bold;
}
.header_menu .menu_panel .menu .sub a {
	font-size: 3vw;
	font-weight: normal;
}
.header_menu .menu_panel .sns {
	height: 40px;
	justify-content: space-between;
}
.header_menu .menu_panel .sns a {
	width: 40px;
	height: 40px;
}

}/* for SP max-width: 800px */


/*===============================================================
	
	shop_nav
	
===============================================================*/
.shop_nav {
	width: 100%;
	height: 60px;
	background:rgba(255,255,255,1);
	border-bottom: solid 1px #ccc;
	position: relative;
	z-index: 1000;
	position: fixed;
	top: 100px;
	transition: all 0.3s;
}
.scrolled .shop_nav {
	position: fixed;
	top: 50px;
	height: 40px;
	background:rgba(255,255,255,0.9);
}
.shop_nav .navigation {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:center;
	align-items: center;
}
.shop_nav .navigation li {
	width: 250px;
	text-align: center;
	text-decoration: none;
}
.shop_nav .navigation li a {
	display: block;
	margin: 0 auto;
	width: 150px;
	max-width: 150px;
	font-size: 16px;
	line-height: 58px;
	color: #000;
	position: relative;
	border-bottom: solid 3px rgba(0,0,0,0);
	text-decoration: none;
}
.scrolled .shop_nav .navigation li a {
	line-height: 38px;
	font-size: 14px;
}
.shop_nav .navigation li.current a,
.shop_nav .navigation li.current a:hover,
.shop_nav .navigation li a:hover {
	color: #D6000F;
	border-color:#D6000F;
}
.shop_nav .navigation li a span {
	position: relative;
	padding-right: 25px;
}
.shop_nav .navigation li.haspanel a span::after {
	content:'';
	position:absolute;
	top: 0; bottom: 0; right: 0;
	margin: auto;
	border-bottom:solid 1px #000;
	border-right:solid 1px #000;
	width:8px;
	height:8px;
	transform: rotate(45deg) translate(-1px,-1px);
	transition: all 0.3s;
}
.shop_nav .navigation li.haspanel.current a span::after {
	transform: rotate(-135deg) translate(-1px,-1px);
	border-color:#D6000F;
}
.shop_nav .navigation li.haspanel a:hover span::after {
	border-color:#D6000F;
}
.shop_nav .navigation li.cart a {
	display: block;
	margin: 0 auto;
	width: 30px;
	height: 30px;
	background:url("/common/images/asset/icon_cart.svg") no-repeat 0 0;
	background-size: cover;
	white-space: nowrap;
	overflow: hidden;
	text-indent: 200%;
	border: none;
}
.shop_nav .navigation li.cart a:hover {
	background:url("/common/images/asset/icon_cart_hover.svg") no-repeat 0 0;
	background-size: cover;
	border: none;
}
/* タブレット以下 */
@media screen and (max-width: 1250px) {
.shop_nav .navigation li {
	width: 20%;
}

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.shop_nav {
	width: 100%;
	height: 15vw;
	top:20vw;
	/*padding: 0 3vw;*/
	box-sizing: border-box;
}
.scrolled .shop_nav {
	height: 11vw;
	top:13vw;
}
.shop_nav .navigation li.product {
	width: 24vw;
}
.shop_nav .navigation li.explore {
	width: 21vw;
}
.shop_nav .navigation li.help {
	width: 20vw;
}
.shop_nav .navigation li.login {
	width: 17vw;
}
.shop_nav .navigation li.cart {
	width: 13vw;
}
.shop_nav .navigation li a {
	width: 100%;
	font-size:4vw;
	line-height: calc(15vw - 3px);
}
.scrolled .shop_nav .navigation li a {
	width: 100%;
	font-size:4vw;
	line-height: calc(11vw - 3px);
}
.shop_nav .navigation li a span {
	position: relative;
	padding-right: 3.5vw;
}
.shop_nav .navigation li.haspanel a span::after {
	width:1.5vw;
	height:1.5vw;
}
.shop_nav .navigation li.haspanel a:hover span::after {
	border-color:#D6000F;
}
.shop_nav .navigation li.cart a,
.shop_nav .navigation li.cart a:hover {
	background:url("/common/images/asset/icon_cart.svg") no-repeat 0 0;
	width: 6vw;
	height: 6vw;
	background-size: 6vw 6vw;
}

}/* for SP max-width: 800px */

/*===============================================================
	
	for_foreigner
	
===============================================================*/
.for_foreigner {
	display: none;
	position: fixed;
	top: 50%;
	right: -101px;
	transform: rotate(90deg);
	z-index: 110;
}
.to_onlineshop {
	right: -58px;
	z-index: 100;
}
.for_foreigner .red-button {
	background-color: #d6000f;
	font-weight:normal;
	padding: 10px 20px;
	color: #FFF !important;
	text-decoration: none;
	min-width:150px;
	text-align:center;
	cursor: pointer;
	line-height: 20px;
	border: none;
	transition: all 0.2s ease-in-out;
	width: 100%;
	letter-spacing: 0.1em;
}

.for_foreigner .red-button:hover{
	background-color: #444;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.for_foreigner {
	display: block;
	position: fixed;
	top: auto;
	bottom: 0;
	right: 0;
	transform: rotate(0deg);
	z-index: 1000;
	width: 100%;
}
.for_foreigner .red-button {
	display: block;
	font-size: 4vw;
	line-height: 1;
	padding: 3vw 4vw;
	box-sizing: border-box;
}
.shop_page {
}
}/* for SP max-width: 800px */




/*===============================================================
	
	shop_menu_panels
	
===============================================================*/
.shop_menu_panels {
	/*position: absolute;*/
  position: fixed;
	top: 161px;
	width: 100%;
	padding: 30px 0 50px 0;
	box-sizing: border-box;
	background: #F5EEE9;
	z-index: 999;
	display: none;
  transition: display 0.3s,top 0.3s;
}
.scrolled .shop_menu_panels {
	top: 91px;
}
.shop_menu_panels .menu_panel {
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
	display: none;
}
.shop_menu_panels .menu_panel.opend {
	height: auto;
	display:flex;
}
.shop_menu_panels .menu_panel .navigation {
	width: 45%;
}
.shop_menu_panels .menu_panel.txt_wrp .navigation {
	width: 50%;
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
	margin-top: -20px;
}
.shop_menu_panels .menu_panel.txt_wrp .navigation li {
	width: 50%;
	margin-top: 20px;
}
.shop_menu_panels .menu_panel .feature {
	width: 50%;
}

/* タブレット以下 */
@media screen and (max-width: 1300px) {

}/* for tablet max-width: 1300px */

/* タブレット以下 */
@media screen and (max-width: 1070px) {
.shop_menu_panels {
	padding: 30px;
}
}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.shop_menu_panels {
  position: absolute;
	top: 35vw;
	padding: 5vw;
	padding-bottom: 10vw;
}
.shop_menu_panels .menu_panel .navigation {
	width: 100%;
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
	margin-top: -4vw;
}
.shop_menu_panels .menu_panel.txt_wrp .navigation {
	width: 100%;
	margin-top: -4vw;
}
.shop_menu_panels .menu_panel .navigation li {
	width: 50%;
	margin-top: 4vw;
}
.shop_menu_panels .menu_panel.txt_wrp .navigation li {
	margin-top: 4vw;
}
.shop_menu_panels .menu_panel .feature {
	width: 100%;
	margin-top: 5vw
}
/* 	*/
.shop_menu_opened {
	overflow: hidden;
	height: 100vh;
}
.shop_menu_opened .shop_menu_panels {
	height: calc(100vh - 35vw - 10vw);
	box-sizing: border-box;
	overflow-y:scroll;
}
.shop_menu_opened .menu_panel_bg.active,
.shop_menu_opened .shop_menu_panels_bg.active {
	background: #F5EEE9;
}
	

}/* for SP max-width: 800px */

/*===============================================================
	
	.shop_menu_panels .menu_panel
	
===============================================================*/
.shop_menu_panels .menu_panel .navigation li {
}
.shop_menu_panels .menu_panel .navigation li + li {
	margin-top: 20px;
}
.shop_menu_panels .menu_panel .navigation a {
	font-size: 14px;
	line-height: 1.4;
	color: #000;
}
.shop_menu_panels .menu_panel .navigation a:hover {
	color: #D6000F;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
/*
.shop_menu_panels .menu_panel .navigation li + li {
	margin-top: 4vw;
}
*/
.shop_menu_panels .menu_panel .navigation a {
	font-size: 3.8vw;
}
}/* for SP max-width: 800px */


/*-------------------------------------------------------------
	shop_menu_panels .feature
-------------------------------------------------------------*/
.shop_menu_panels .feature a {
	color: #000;
}
.shop_menu_panels .feature a:hover {
	color: #D6000F;
}
.shop_menu_panels .feature .txt {
	background: #fff;
	text-align: center;
	padding: 10px;
}
.shop_menu_panels .feature .txt p {
	font-size: 14px;
	line-height: 1.5;
}
.shop_menu_panels .flex_container {
	margin-top: -30px;
}
.shop_menu_panels .flex_container .item_2_1 {	
	margin-top: 30px;
}
/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.shop_menu_panels .flex_container {
	margin-top: 0vw;
}
.shop_menu_panels .flex_container .item_2_1 {	
	width:48%;
	margin-right:4%;
	margin-top: 5vw;
}
.shop_menu_panels .feature .txt {
	padding: 2vw 3vw;
}
.shop_menu_panels .feature .txt p {
	font-size: 3.5vw;
}
}/* for SP max-width: 800px */


/*-------------------------------------------------------------
	shop_menu_panels .closebtn	
-------------------------------------------------------------*/
.shop_menu_panels .closebtn {
	margin: 0 auto;
	margin-top: 30px;
	width: 40px;
	height: 40px;
	position: relative;
	cursor: pointer;
}
.shop_menu_panels .closebtn::after,
.shop_menu_panels .closebtn::before {
	content:'';
	position:absolute;
	top: 0; bottom: 0; left: 0; right: 0;
	margin: auto;
	width:40px;
	height:1px;
	background: #000;
	transform: rotate(-45deg);
	transition: all 0.3s;
}
.shop_menu_panels .closebtn::before {
	transform: rotate(45deg);
}
.shop_menu_panels .closebtn:hover::after,
.shop_menu_panels .closebtn:hover::before {
	background: #D6000F;
}
/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {

}/* for SP max-width: 800px */

/*===============================================================
	
	フッタ
	
===============================================================*/
.footer {	
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
	padding: 50px 30px 30px 30px;
	border-top: solid 1px rgba(0,0,0,0.1);
	background: #fff;
}
.footer .footer_link {	
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
}
.footer .footer_sns {	
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
}
.footer .footer_bottom {	
	width: 100%;
	margin-top: 80px;
	padding-top: 30px;
	border-top: solid 1px #ddd;
}
.footer .footer_bottom .copyright {	
	font-size: 12px;
	line-height: 1.2;
}
/* タブレット以下 */
@media screen and (max-width: 1070px) {
.footer .footer_link,
.footer .footer_sns,
.footer .footer_bottom {	
	width: 100%;
}
}	/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.footer {	
	padding: 4vw;
	padding-bottom: 30px;
}
.footer .footer_bottom {	
	margin-top: 10vw;
	padding-top: 30px;
}
.footer .footer_bottom .copyright {	
	font-size: 3vw;
}
}	/* for SP max-width: 800px */

/*-------------------------------------------------------------
	footer_link	
-------------------------------------------------------------*/
.footer .footer_link ul {
	margin-right: 50px;
}
.footer .footer_link a {	
	color: #000;
}
.footer .footer_link a:hover {	
	color: #D6000F;
}
.footer .footer_link .heading a {	
	font-weight: bold;
	font-size: 14px;
	line-height: 1.5;
}
.footer .footer_link .sub a {	
	font-size: 12px;
	line-height: 1.5;
}
.footer .footer_link .heading + *{
	margin-top: 30px;
}
.footer .footer_link .sub + *{
	margin-top: 10px;
}
/* タブレット以下 */
@media screen and (max-width: 1070px) {
.footer .footer_link {
	justify-content:space-between;
}
.footer .footer_link ul {
	margin-right: 0;
}
.footer .footer_link .heading a {	
	font-size: 14px;
}
.footer .footer_link .sub a {	
	font-size: 12px;
}
.footer .footer_link .heading + *{
	margin-top: 20px;
}
.footer .footer_link .sub + *{
	margin-top: 5px;
}
}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.footer .footer_link ul {
	width:50%;
	margin-top: 5vw;
}
.footer .footer_link .heading a {	
	font-size: 3.5vw;
}
.footer .footer_link .sub a {	
	font-size: 3.2vw;
}
.footer .footer_link .heading + *{
	margin-top: 2vw;
}
.footer .footer_link .sub + *{
	margin-top: 0vw;
}

}/* for SP max-width: 800px */

/*-------------------------------------------------------------
	footer_sns	
-------------------------------------------------------------*/
.footer .footer_sns {
	margin-right: -20px;
}
.footer .footer_sns li {
	margin-right: 20px;
}
.footer .footer_sns a {	
	background: #000;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: block;
}
.footer .footer_sns a:hover {	
	background: #D6000F;
}
/* タブレット以下 */
@media screen and (max-width: 1070px) {
.footer .footer_sns {
	margin-right: 0;
	margin-top: 50px;
}
}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.footer .footer_sns {
	margin-right: 0;
	margin-top: 10vw;
	justify-content:center;
}
}/* for SP max-width: 800px */


/*===============================================================
	
	section_one_community
	
===============================================================*/
.section_one_community {
	background: #D6000F;
  border-bottom: 30px solid #FF3347;
}
.section_one_community .section_inner {
	padding: 80px 0;
}
.section_one_community .content {
	/*overflow: hidden;*/
}
.section_one_community .title {
	color: #fff;
  font-size: 30px;
  line-height: 1.4;
  font-weight: normal;
  text-align: center;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {
.section_one_community .section_inner {
	padding: 50px 0;
}  

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.section_one_community {
  border-bottom: 2vw solid #FF3347;
}  
.section_one_community .section_inner {
	padding: 8vw 0;
}
.section_one_community .title {
  font-size: 5vw;
}

}/* for SP max-width: 800px */

/*-------------------------------------------------------------
	one_community	
-------------------------------------------------------------*/
.one_community {
}
.one_community .item {
	background: #fff;
  margin: 40px 15px 0;
  box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
}
.one_community .item .txt {
	padding: 20px;
}
.one_community .item .txt p {
	font-size: 16px;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {
.one_community {
}  

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.one_community {
}  
.one_community .item {
	margin: 6vw 3vw 0;
}
.one_community .item .txt {
	padding: 2vw;
}
.one_community .item .txt p {
	font-size: 3.5vw;
}  

}/* for SP max-width: 800px */

/*-------------------------------------------------------------
	.slick_slider .slick-arrow
-------------------------------------------------------------*/
/* Arrows */
.slick-prev,
.slick-next {
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 50%;
	display: block;
	width: 30px;
	height: 75px;
	padding: 0;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	cursor: pointer;
	color: transparent;
	border: none;
	outline: none;
	/*background: #000;*/
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
	color: #000;
	outline: none;
	/*background: #000;*/
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
	opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
	opacity: 1;
}
.slick-prev:before {
	font-family: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: '';
	position:absolute;
	top: 0; bottom: 0; left: 0; right: 0; margin: auto;
	border-right: solid 1px #fff;
	border-bottom: solid 1px #fff;
	width: 20px;
	height: 20px;
	transform: rotate(135deg)translate(-2px,-2px);
	transition: all .1s ease;
	opacity: 1;
}
.slick-prev:hover:before {
	opacity: 0.7;
}
.slick-next:before {
	font-family: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: '';
	position: absolute;
	top: 0; bottom: 0; left: 0; right: 0; margin: auto;
	border-right: solid 1px #fff;
	border-bottom: solid 1px #fff;
	width: 20px;
	height: 20px;
	transform: rotate(-45deg)translate(-2px,-2px);
	transition: all .1s ease;
	opacity: 1;
}
.slick-next:hover:before {
	opacity: 0.7;
}
.slick-prev {
	z-index: 1001;
	left: -30px;
}
[dir='rtl'] .slick-prev {
	right: 10px;
	left: auto;
}
[dir='rtl'] .slick-prev:before {
	content: '';
}
.slick-next {
	z-index: 1001;
	right: -30px;
}
[dir='rtl'] .slick-next {
	right: auto;
	left: -25px;
}
[dir='rtl'] .slick-next:before {
	content: '';
}


/* タブレット以下 */
@media screen and (max-width: 1070px) {
.slick-prev {
	left: 10px;
}
.slick-next {
	right: 10px;
}	

}	/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {

}	/* for SP max-width: 800px */

/*===============================================================
	
	遅延表示  
	
===============================================================*/
.delay_view {
	transform: translate(0,50px);
	opacity:0;
	transition: all 2s;
}
.delay_view.view_active {
	transform: translate(0,0);
	opacity:1;
}
.delay_photo {
	overflow: hidden;
	background: #fff;
}
.delay_photo img {
	transform: scale(1.2,1.2);
	opacity:0;
	transition: all 1s;
}
.delay_photo.view_active img {
	transform: scale(1,1);
	opacity:1;
}

.favorites_box .delay_photo {
	overflow: hidden;
	background: #F5EEE9;
}
.favorites_box .delay_photo img {
	transform: scale(1,1) translateY(-50px);
	opacity:0;
	transition: all 1s;
}
.favorites_box .delay_photo.view_active img {
	transform: scale(1,1) translateY(0);
	opacity:1;
}

.fade_photo .delay_photo,
.prduct_list .delay_photo {
	overflow: hidden;
	background: #fff;
}
.fade_photo .delay_photo img,
.prduct_list .delay_photo img {
	transform: scale(1.2,1.2);
	opacity:0;
	transition: all 1s;
}
.fade_photo .delay_photo.view_active img,
.prduct_list .delay_photo.view_active img {
	transform: scale(1,1);
	opacity:1;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.delay_view {
	transform: translate(0,50px);
	opacity:0;
	/*transition:all .8s;*/
}
.delay_view.view_active {
	transform: translate(0,0);
	opacity:1;
}

}/* for SP max-width: 800px */

/*===============================================================
	
	grid
	
===============================================================*/
.gridconatiner {
	margin-top:-50px;
}
.gridconatiner .grid {
	float:left;
}
.grid {
	margin-top:50px;
}
/*	gridSize :445 gutterSize :50 column :2 */
.gridwrp_2 { width:105.319%;}
.gridwrp_2 .grid_2 { width:94.949%; margin-right:5.051%; }
.gridwrp_2 .grid_1 { width:44.949%; margin-right:5.051%; }
.gridwrp_2 .grid:nth-child(2n+1) {
	clear:both;
}

/*	gridSize :280 gutterSize :50 column :3 */
.gridwrp_3 { width:105.319%;}
.gridwrp_3 .grid_3 { width:94.949%; margin-right:5.051%; }
.gridwrp_3 .grid_2 { width:61.616%; margin-right:5.051%; }
.gridwrp_3 .grid_1 { width:28.283%; margin-right:5.051%; }
.gridwrp_3 .grid:nth-child(3n+1) {
	clear:both;
}

/*	gridSize :210 gutterSize :40 column :4 */
.gridwrp_4 { width:104.167%;}
.gridwrp_4 .grid_4 { width:96.000%; margin-right:4.000%; }
.gridwrp_4 .grid_3 { width:71.000%; margin-right:4.000%; }
.gridwrp_4 .grid_2 { width:46.000%; margin-right:4.000%; }
.gridwrp_4 .grid_1 { width:21.000%; margin-right:4.000%; }
.gridwrp_4 .grid:nth-child(4n+1) {
	clear:both;
}

.column + .gridconatiner {
	margin-top:-20px;
} 

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}	/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.gridconatiner {
	margin-top:-20px;
}
.gridwrp_3,
.gridwrp_3 .grid_1,
.gridwrp_2,
.gridwrp_2 .grid_1 {
	width:100%; margin-right:0;
}
.gridwrp_4 { width:105.000%;}
.gridwrp_4 .grid_1 { width:45.238%; margin-right:4.762%; }

.grid {
	margin-top:20px;
}
.grid:first-child {
	/*margin-top:0px;*/
}
.gridwrp_4 .grid:nth-child(2) {
	/*margin-top:0;*/
}

.sp_gridwrp2 .gridwrp_3 { width:105.319%;}
.sp_gridwrp2 .gridwrp_3 .grid_2 { width:94.949%; margin-right:5.051%; }
.sp_gridwrp2 .gridwrp_3 .grid_1 { width:44.949%; margin-right:5.051%; }
.sp_gridwrp2 .gridwrp_3 .grid:nth-child(2n+1) {
	clear:both;
}
.sp_gridwrp2 .gridwrp_3 .grid:nth-child(3n+1) {
	clear:none;
}
.sp_gridwrp2 .gridwrp_2 { width:105.319%;}
.sp_gridwrp2 .gridwrp_2 .grid_2 { width:94.949%; margin-right:5.051%; }
.sp_gridwrp2 .gridwrp_2 .grid_1 { width:44.949%; margin-right:5.051%; }
.sp_gridwrp2 .gridwrp_2 .grid:nth-child(2n+1) {
	clear:both;
}
.sp_gridwrp2 .gridwrp_2 .grid:nth-child(3n+1) {
	clear:none;
}
.sp_gridwrp2 .linkarea p {
	padding: 0;
}
.column + .gridconatiner {
	margin-top:0;
} 
}	/* for SP max-width: 800px */

/*===============================================================
	
	flex_container
	
===============================================================*/
.flex_container {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:flex-start;
}
.flex_container .item {
	flex-basis:auto;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}	/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {

}	/* for SP max-width: 800px */

/*----------------------------------------------------------------
アイテム比率
----------------------------------------------------------------*/
.flex_container .item_2_1 {
	width:48%;
	margin-right:4%;
}
.flex_container .item_3_1 {
	width:31%;
	margin-right:3.5%;
}
.flex_container .item_4_1 {
	width:23%;
	margin-right:2.6666%;
}
.flex_container .item_5_1 {
	width:18.75%;
	margin-right:1.5625%;
}
.flex_container .item_2_1:nth-child(2n),
.flex_container .item_3_1:nth-child(3n),
.flex_container .item_4_1:nth-child(4n),
.flex_container .item_5_1:nth-child(5n) {
	margin-right:0;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {
/*4→3カラム*/	
.flex_container .item_4_1,
.flex_container .item_4_1:nth-child(4n) {	
	width:31%;
	margin-right:3.5%;
}
/*5→4カラム*/		
.flex_container .item_5_1,
.flex_container .item_5_1:nth-child(5n) {	
	width:23%;
	margin-right:2.6666%;
}
.flex_container .item_4_1:nth-child(3n),
.flex_container .item_5_1:nth-child(4n) {
	margin-right:0;
}

}	/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
/*2→1カラム*/	
/*3→1カラム*/	
.flex_container .item_2_1,
.flex_container .item_3_1 {
	width:100%;
	margin-right:0;
}
/*4→2カラム*/	
/*5→2カラム*/		
.flex_container .item_4_1,
.flex_container .item_4_1:nth-child(3n),
.flex_container .item_4_1:nth-child(4n),
.flex_container .item_5_1,
.flex_container .item_5_1:nth-child(4n),
.flex_container .item_5_1:nth-child(5n) {	
	width:48%;
	margin-right:4%;
}	
.flex_container .item_4_1:nth-child(2n),
.flex_container .item_5_1:nth-child(2n) {
	margin-right:0;
}	

}	/* for SP max-width: 800px */




/*===============================================================
	
	fixed
	
===============================================================*/
.fixed {
	position: fixed;
	top: 0;
}
.bg_fixed {
	background-attachment: fixed;
}
/* タブレット以下 */
@media screen and (max-width: 1070px) {
.fixed {
	position: fixed;
	top: 0;
}
}	/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {

}	/* for SP max-width: 800px */


/*===============================================================
	
	PAGETOP
	
===============================================================*/
#btn_pagetop {
	width:100%;
	overflow:hidden;
}
#btn_pagetop a {
	display:block;
	right:-300px; top:0;
	width:40px; height:40px;
	color:#fff;
	background-color:#000;
	text-indent:100%;
	overflow:hidden;
	white-space:nowrap;
	z-index:101;
	position:fixed;
	border-radius:50%;
}
#btn_pagetop a:hover {
	background-color:#D6000F;
}
#btn_pagetop a:after {
	position:absolute;
	content:" ";
	width:14px; height:14px;
	top:16px; left:0; right:0; bottom:auto;
	margin:auto;
	border-top:solid 2px #fff;
	border-left:solid 2px #fff;
	transform: rotate(45deg);
	border-radius:2px;
}

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
#btn_pagetop a {
	width:40px;
	height:40px;
}
#btn_pagetop a:after {
	width:12px; height:12px;
	top:17px; left:0; right:0; bottom:auto;
}
}	/* for SP max-width: 800px */



/*===============================================================
	
	フォーム
	
===============================================================*/
.form {
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}	/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {

}	/* for SP max-width: 800px */

/*===============================================================
	
	btn_detail
	
===============================================================*/
.btn_detail {
	width:400px;
	margin:0 auto;
	margin-top:40px;
}
.btn_detail a {
	position:relative;
	text-decoration:none;
	display:block;
	background-color:#1d50a2;
	text-align:center;
	color:#fff;
	font-size:20px;
	line-height:20px;
	font-weight:bold;
	padding:20px 0;
}
.btn_detail a:after {
	position:absolute;
	content:" ";
	width:13px; height:13px;
	top:0; left:auto; bottom:0; right:10px;
	margin:auto;
	border-top:solid 1px #fff;
	border-left:solid 1px #fff;
	transform: rotate(135deg);
}
.btn_detail a:hover {
	text-decoration:none;
	background-color:#2b6bec;
}
.btn_detail_red a {
	background-color:#c91b36;
}
.btn_detail_red a:hover {
	background-color:#e31838;
}
.btn_detail_black a {
	background-color:#000;
}
.btn_detail_black a:hover {
	background-color:#222;
}
/* タブレット以下 */
@media screen and (max-width: 1070px) {
.btn_detail {
	width:100%;
}
}	/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.btn_detail {
	width:100%;
	margin:0 auto;
	margin-top:20px;
}
.btn_detail a {
	font-size:16px;
}
}	/* for SP max-width: 800px */

/*-------------------------------------------------------------
	btn_white	
-------------------------------------------------------------*/
.btn_white {
	width:300px;
	margin:0 auto;
	margin-top:30px;
}
.btn_white a {
	text-decoration:none;
	display:block;
	background-color:#fff;
	text-align:center;
	color:#1d50a2;
	font-size:18px;
	line-height:20px;
	font-weight:bold;
	padding:15px 0;
	border:solid 1px #1d50a2;
}
.btn_white a:hover {
	text-decoration:none;
	color:#fff;
	background-color:#1d50a2;
}
.btn_white a:after {
	border-top:solid 1px #1d50a2;
	border-left:solid 1px #1d50a2;
}
.btn_white a:hover:after {
	border-top:solid 2px #fff;
	border-left:solid 2px #fff;
}
/* タブレット以下 */
@media screen and (max-width: 1070px) {

}	/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.btn_white {
	width:80%;
	margin:0 auto;
	margin-top:20px;
}
.btn_white a {
	font-size:14px;
	line-height:20px;
	padding:10px 0;
}
}	/* for SP max-width: 800px */

/*===============================================================
	
	section_headline
	
===============================================================*/
.redline {
	border-top: solid 3px #D6000F;
}
.section_headline {
	text-align: left;
}
.section_headline .title {
	font-size: 35px;
	line-height: 1.4;
	letter-spacing: 0.2em;
}
.section_headline .read {
	font-size: 16px;
	line-height: 1.8;
	margin-top: 30px;
}
.section_headline .read2 {
/*
	font-size: 18px;
	line-height: 1.8;
*/
	margin-top: 30px;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}	/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.section_headline .section_inner {
	padding-bottom: 5vw;
}
.section_headline .title {
	font-size: 6vw;
	line-height: 1.4;
	letter-spacing: 0.1em;
}
.section_headline .read {
	font-size: 3.5vw;
	line-height: 1.8;
	margin-top: 3vw;
}
.section_headline .read2 {
	font-size: 3.5vw;
	line-height: 1.8;
	margin-top: 3vw;
}

}	/* for SP max-width: 800px */
/*===============================================================
	
	subhead
	小見出し
	
===============================================================*/
.subhead {
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}	/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {

}	/* for SP max-width: 800px */
/*===============================================================
	
	背景
	
===============================================================*/
.bg_gray {
	background-color: #f9f9f9;
}
.linebox {
/*	border-top: solid 3px #D6000F;*/
}

/*===============================================================
	
	seciton
	headlineとcontentなど、複数の要素、機能を取りまとめるコンテナ的な親要素。
	幅はsection_innerに記述する
	
===============================================================*/
.section_wrp {
	color: #000;
	background: #fff;
	transition: all 0.3s;
}
.section {
	width:100%;
}
.section_inner {
	margin:0 auto;
	padding-top: 100px;
	padding-bottom: 150px;
	padding-left: 0;
	padding-right: 0;
	box-sizing: border-box;
}
/* タブレット以下 */
@media screen and (max-width: 1300px) {
.section_inner {
	margin:0 auto;
	padding-top: 50px;
	padding-bottom: 100px;
	padding-left: 50px;
	padding-right: 50px;
}
}	/* for tablet max-width: 1070px */

/* タブレット以下 */
@media screen and (max-width: 1070px) {
.section_inner {
	margin:0 auto;
	padding-top: 50px;
	padding-bottom: 50px;
	padding-left: 50px;
	padding-right: 50px;
}
}	/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.section_inner {
	margin:0 auto;
	padding: 8vw;
	padding-bottom: 15vw;
}
}	/* for SP max-width: 800px */


/*===============================================================
	
	content 
	個別のコンテンツ
	
===============================================================*/
.content {
}
.headline + .content {
	margin-top:60px;
}
.content + .content {
	margin-top:80px;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {
.content {
	width:100%;
	margin:0 auto;
	box-sizing:border-box;
}
}	/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.content {
	width:100%;
	margin:0 auto;
}
.headline + .content {
	margin-top:5vw;
} 
.content + .content {
	margin-top:8vw;
}
}	/* for SP max-width: 800px */


/*===============================================================
	
	column
	囲み、メモなどサブ的な括り。
	
===============================================================*/
.column {
	width:700px;
	margin:0 auto;
}
.column h3 {
	font-size:20px;
	font-weight:bold;
	text-align:center;
	margin-top:30px;
}
.column h4 {
	font-size:18px;
	font-weight:bold;
	text-align:center;
	margin-top:30px;
}
.column p {
	margin-top:30px;
	font-size:16px;
}
.column * + p {
	margin-top:20px;
	font-size:16px;
}
.column p.caution {
	font-size:12px;
}
.column .bbottom {
	border-bottom:1px solid #000;
	padding-bottom:10px;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}	/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.column {
	width:100%;
	margin:0 auto;
}
.column h3 {
	font-size:18px;
	margin-top:15px;
}
.column h4 {
	font-size:16px;
	margin-top:15px;
}
.column p {
	margin-top:10px;
	font-size:14px;
	line-height:1.6;
}
}	/* for SP max-width: 800px */

/*-------------------------------------------------------------
	.notes	
-------------------------------------------------------------*/
.notes {
	background:#eee;
	padding:20px;
	margin-top:20px;
}
.notes p {
	font-size:12px;
	line-height:20px;
}
.notes > p {
	margin-top:0;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}	/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {

}	/* for SP max-width: 800px */


/*===============================================================
	
	modal 2016/10/11
		
===============================================================*/
.modal_bg {
	position: absolute;
	top: 0;
	left: 0;
	background: #000;
	display: none;
	z-index: 9998;
}
.modal {
	position: absolute;
	top: calc((100vh - 400)/2);
	left: calc((100vw - 720)/2);
	width: 800px;
	height: auto;
	display: none;
	z-index: 9999;
	-webkit-transition: top 0.2s linear, left 0.1s linear;
	transition: top 0.2s linear, left 0.1s linear;
	color: #fff;
}
.modal .close {
	position: absolute;
	width: 30px;
	height: 30px;
	top: 0;
	right: 0;
	text-indent: 100%;
	overflow: hidden;
	white-space: nowrap;
	cursor: pointer;
	z-index: 9999;
}
.modal .close:before {
	content: "";
	position: absolute;
	width: 30px;
	height: 2px;
	background: #fff;
	top: 10px;
	right: 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.modal .close:after {
	content: "";
	position: absolute;
	width: 30px;
	height: 2px;
	background: #fff;
	top: 10px;
	right: 0;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.modal .close:hover {
	opacity: 0.7;
}
.modal .modal_container {
	padding: 0;
	position: relative;
}
.modal .modal_contents_wrp {
	position: relative;
	padding: 40px;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}
.modal .modal_inner {
	padding: 30px;
	background: #333;
}
.modal .modal_contents_wrp::-webkit-scrollbar {
	display: none;
}
/* タブレット以下 */
@media screen and (max-width: 1030px) {

} /* for tablet max-width: 1030px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.modal {
	width: 100%;
}
.modal .close {
	top: 5px;
	right: 0px;
}
.modal .modal_contents_wrp {
	padding: 30px;
}
.modal .modal_inner {
	padding: 5vw;
}
.modal .close {
	top: 30px;
	right: 0px;
}
} /* for SP max-width: 800px */

/*-------------------------------------------------------------
	foo	
-------------------------------------------------------------*/
.modal_photos .modal_inner {
	padding: 0;
	background: #333;
}
.modal_photos .modal_inner img {
	width:100%; height: auto;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {

}/* for SP max-width: 800px */

/*-------------------------------------------------------------
	.modal .modal_pager
-------------------------------------------------------------*/
.modal .modal_pager li a {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	display: block;
	width: 30px;
	height: 30px;
	white-space: nowrap;
	text-indent: 100%;
	overflow: hidden;
}
.modal .modal_pager li a:after {
	position: absolute;
	content: '';
	width: 15px;
	height: 15px;
	top: 6px;
	left: 0;
	border-top: solid 2px #fff;
	border-left: solid 2px #fff;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}
.modal .modal_pager li.prev a {
	left: 0;
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}
.modal .modal_pager li.next a {
	right: 0;
}
/* タブレット以下 */
@media screen and (max-width: 1030px) {

} /* for tablet max-width: 1030px */

/* SP向けレイアウトの指定：～736px */
@media only screen and (max-width: 736px) {
	
} /* for SP max-width: 736px */

/*-------------------------------------------------------------
	.modal_container
-------------------------------------------------------------*/
.modal .modal_container .modal_header {}
.modal .modal_container .modal_header h3 {
	font-size: 25px;
	line-height: 1.5;
	text-align: center;
	font-weight: bold;
	text-shadow: none;
}
.modal .modal_container .modal_header p {
	font-size: 14px;
	line-height: 1.8;
	text-align: center;
	font-weight: bold;
}
/* タブレット以下 */
@media screen and (max-width: 1030px) {

} /* for tablet max-width: 1030px */

/* SP向けレイアウトの指定：～736px */
@media only screen and (max-width: 736px) {
.modal .modal_container .modal_header h3 {
	font-size: 6vw;
	line-height: 1.4;
	padding-top: 0;
}
.modal .modal_container .modal_header p {
	font-size: 4vw;
	line-height: 1.6;
}
} /* for SP max-width: 736px */

/*-------------------------------------------------------------
	.modal_container
-------------------------------------------------------------*/
.modal .modal_container .modal_body {
}
.modal .modal_container .modal_body h3 {
	font-size: 25px;
	line-height: 1.5;
	font-weight: bold;
	text-shadow: none;
}
.modal .modal_container .modal_body p {
	font-size: 16px;
	line-height: 1.8;
}
/* タブレット以下 */
@media screen and (max-width: 1030px) {

} /* for tablet max-width: 1030px */

/* SP向けレイアウトの指定：～736px */
@media only screen and (max-width: 736px) {
.modal .modal_container .modal_body h3 {
	font-size: 5vw;
	line-height: 1.4;
	padding-top: 0;
}
.modal .modal_container .modal_body p {
	font-size: 4vw;
	line-height: 1.6;
}
} /* for SP max-width: 736px */

/*-------------------------------------------------------------
	.modal_container .btn
-------------------------------------------------------------*/
.modal_container .btn {
	width: 400px;
	margin: 0 auto;
	margin-top: 40px;
}
.modal_container .btn a {
	position: relative;
	display: block;
	background-color: #e61e19;
	text-align: center;
	color: #fff;
	font-size: 20px;
	line-height: 1;
	font-weight: bold;
	padding: 15px 0;
}
.modal_container .btn a:hover {
	text-decoration: none;
	background-color: #f00;
}
.modal_container .btn a:after {
	position: absolute;
	content: '';
	width: 6px;
	height: 6px;
	top: 0;
	left: auto;
	bottom: 0;
	right: 10px;
	margin: auto;
	border-top: solid 1px #fff;
	border-left: solid 1px #fff;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}
/* タブレット以下 */
@media screen and (max-width: 1030px) {

} /* for tablet max-width: 1030px */

/* SP向けレイアウトの指定：～736px */
@media only screen and (max-width: 736px) {
.modal_container .btn {
	width: 100%;
	margin: 0 auto;
	margin-top: 4vw;
}
.modal_container .btn a {
	font-size: 4.5vw;
	padding: 4vw 0;
}
} /* for SP max-width: 736px */

/*-------------------------------------------------------------
	nodata	
-------------------------------------------------------------*/
.modal .nodata {
	padding: 30px 0;
	text-align: center;
}
.modal .nodata h3 {
	font-size: 16px;
}
.modal .closebtn a {
	display: block;
	width: 120px;
	color: #fff;
	font-size: 16px;
	line-height: 30px;
	text-align: center;
	text-decoration: none;
	border: solid 1px #fff;
	margin: 0 auto;
	margin-top: 20px;
	box-sizing: border-box;
}
.modal_gamedetail .closebtn a:hover {
	color: #000;
	background: #fff;
	text-decoration: none;
}

/* タブレット以下 */
@media screen and (max-width: 1030px) {

} /* for tablet max-width: 1030px */

/* SP向けレイアウトの指定：～736px */
@media only screen and (max-width: 736px) {
	.modal .nodata {
		padding: 4vw 0;
	}
	.modal .nodata h3 {
		font-size: 4vw;
	}
	.modal .closebtn a {
		width: 50%;
		font-size: 4vw;
		line-height: 2;
		margin-top: 4vw;
	}
} /* for SP max-width: 736px */

/*===============================================================
	
	txtlink 2016/11/16
	
===============================================================*/
.txtlink a {
	padding-left:15px;
	color:#000;
	text-decoration:none;
	position:relative;
	display:inline-block;
}
.txtlink a:hover {
	color:#c00;
}
.txtlink a:after {
	position:absolute;
	content:" ";
	width:6px; height:6px;
	top:7px; bottom:auto; left:0; right:auto;
	margin:auto;
	border-top:solid 2px #c00;
	border-left:solid 2px #c00;
	transform: rotate(135deg);
}
.txtlink.arw_prev a {
}
.txtlink.arw_prev a:after {
	top:7px; bottom:auto; left:3px; right:auto;
	transform: rotate(-45deg);
}
.txtlink.arw_after a {
	padding-left:0;
	padding-right:10px;
}
.txtlink.arw_after a:after {
	left:auto; right:0;
}
.txtlink.arw_down a:after {
	top:7px; bottom:auto; left:2px; right:auto;
	transform: rotate(-135deg);
}
.txtlink.arw_after_down a {
	padding-left:0;
	padding-right:10px;
}
.txtlink.arw_after_down a:after {
	top:7px; bottom:auto; left:auto; right:0;
	transform: rotate(-135deg);
}
/*	arw_box */
.txtlink.arw_box a {
	padding-left:25px;
}
.txtlink.arw_box a:before {
	content:' ';
	width:20px;
	height:20px;
	background:#000;
	position:absolute;
	top:2px; bottom:auto; left:0; right:auto; margin:auto;
}
.txtlink.arw_box a:after {
	border-top:solid 1px #fff;
	border-left:solid 1px #fff;
	top:8px; bottom:auto; left:5px; right:auto;
}




/*===============================================================
	
	基本のレイアウト
	section_contents
	
===============================================================*/
.section_contents {
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}	/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {

}	/* for SP max-width: 800px */

/*-------------------------------------------------------------
	headline	
-------------------------------------------------------------*/
.section_contents .headline {
	text-align:center;
}
.section_contents .headline .title {
	font-size:35px;
	line-height:1.5;
}
.section_contents .headline .read {
	font-size:22px;
	line-height:1.5;
	font-weight:bold;
	margin-top:5px;
}
/* タブレット以下 */
@media screen and (max-width: 1070px) {

}	/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {

}	/* for SP max-width: 800px */

/*-------------------------------------------------------------
	visual	
-------------------------------------------------------------*/
.section_contents .visual {
	margin-top:30px;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}	/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {

}	/* for SP max-width: 800px */

/*-------------------------------------------------------------
	content	
-------------------------------------------------------------*/
.section_contents .headline + .content, 
.section_contents .visual + .content {
	margin-top:30px;
}
.section_contents .content + .content {
	margin-top:80px;
}
/*	h3	*/
.section_contents .content h3 {
	font-size:25px;
	line-height:1.8;
}
/*	h4	*/
.section_contents .content h4 {
	font-size:18px;
	line-height:1.8;
}
/*	p	*/
.section_contents .content p {
	font-size:16px;
	line-height:2;
}
/*	margin	*/	
.section_contents .content * + h3,
.section_contents .content * + h4,
.section_contents .content * + p {
	margin-top:2em;
}
.section_contents .content h3 + p,
.section_contents .content h3 + h4,
.section_contents .content h4 + p {
	margin-top:0;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}	/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.section_contents .headline + .content, 
.section_contents .visual + .content {
	margin-top:15px;
}
.section_contents .content + .content {
	margin-top:30px;
}
/*	h3	*/
.section_contents .content h3 {
	font-size:20px;
}
/*	h4	*/
.section_contents .content h4 {
	font-size:16px;
}
/*	p	*/
.section_contents .content p {
	font-size:14px;
}
/*	margin	*/	
.section_contents .content * + h3,
.section_contents .content * + h4,
.section_contents .content * + p {
	margin-top:1em;
}


}	/* for SP max-width: 800px */



/*===============================================================
	
	section_shop_categoey_header
	
===============================================================*/
.section_shop_categoey_header .categoey_header {
	display:flex;
	flex-direction:row-reverse;
	flex-wrap:wrap;
	justify-content:space-between;
}
.section_shop_categoey_header .section_inner {
	padding: 30px 0;
}
.section_shop_categoey_header .category_info {
	width: 40%;
	display:flex;
	flex-direction:column;
	flex-wrap:wrap;
	justify-content:flex-start;
	padding-right: 50px;
	box-sizing: border-box;
	background-image: url("/common/images/shop/area_arita.jpg");
	background-repeat: no-repeat;
	background-position: top right;
}
.section_shop_categoey_header .photo {
	width: 58%;
}
/* タブレット以下 */
@media screen and (max-width: 1300px) {
.section_shop_categoey_header .section_inner {
	padding: 30px;
}
}	/* for tablet max-width: 1070px */
/* タブレット以下 */
@media screen and (max-width: 1200px) {
.section_shop_categoey_header .category_info {
	width: 45%;
	background-size: contain;
}
.section_shop_categoey_header .photo {
	width: 52%;
}
}	/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.section_shop_categoey_header .section_inner {
	padding: 0;
}
.section_shop_categoey_header .category_info {
	width: 100%;
	background-size: 45% auto;
	padding-right: 0;
	padding: 20px 20px 30px 20px;
}
.section_shop_categoey_header .photo {
	width: 100%;
	margin-top: -1px;
}
}	/* for SP max-width: 800px */

/*-------------------------------------------------------------
	section_shop_categoey_header .category_info .title
-------------------------------------------------------------*/
.section_shop_categoey_header .category_info .title {
	font-size: 40px;
	line-height: 1.2;
	font-weight: bold;
	padding-top: 30px;
	letter-spacing: 0.1em;
}
.section_shop_categoey_header .category_info .ja {
	font-size: 16px;
	line-height: 1.2;
	margin-top: 5px;
	letter-spacing: 0.1em;
}
.section_shop_categoey_header .category_info .maker {
	font-size: 16px;
	line-height: 1.5;
	margin-top: 20px;
	letter-spacing: 0.1em;
	font-weight: bold;
}
.section_shop_categoey_header .category_info .txt {
	font-size: 14px;
	line-height: 2;
	letter-spacing: 0.1em;
	margin-top: auto;
}
/* タブレット以下 */
@media screen and (max-width: 1500px) {
.section_shop_categoey_header .category_info .title {
	font-size: 2.67vw;
	padding-top: 2.00vw;
}
.section_shop_categoey_header .category_info .ja {
	font-size: 1.07vw;
	margin-top: 0.33vw;
}
.section_shop_categoey_header .category_info .maker {
	font-size: 1.33vw;
	margin-top: 2.00vw;
}
.section_shop_categoey_header .category_info .txt {
	font-size: 1.20vw;
}

}	/* for tablet max-width: 1070px */

/* タブレット以下 */
@media screen and (max-width: 1200px) {
.section_shop_categoey_header .category_info .title {
	font-size: 3.33vw;
	line-height: 1.2;
	padding-top: 1vw;
}
.section_shop_categoey_header .category_info .ja {
	font-size: 2.08vw;
	line-height: 1.2;
	margin-top: 0.83vw;
}
.section_shop_categoey_header .category_info .maker {
	font-size: 1.67vw;
	line-height: 1.6;
	margin-top: 2.50vw;
}
.section_shop_categoey_header .category_info .txt {
	font-size: 1.4vw;
	line-height: 2;
	margin-top: auto;
}
}	/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.section_shop_categoey_header .category_info .title {
	font-size:6vw;
	padding-top: 0;
}
.section_shop_categoey_header .category_info .ja {
	font-size:3.5vw;
	line-height: 1.2;
	margin-top: 1.5vw;
}
.section_shop_categoey_header .category_info .maker {
	font-size:4vw;
	line-height: 1.6;
	margin-top: 4vw;
}
.section_shop_categoey_header .category_info .txt {
	font-size:3.5vw;
	line-height: 1.8;
	margin-top: 4vw;
}

}	/* for SP max-width: 800px */

/*-------------------------------------------------------------
	エリアマップ　バリエーション
-------------------------------------------------------------*/
.section_shop_categoey_header .category_info.area_arita {
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {

}/* for SP max-width: 800px */


/*===============================================================
	
	section_shop_product_list
	
===============================================================*/
.section_shop_product_list {
}
.prduct_list {
	margin-top: -50px;
}
* + .prduct_list {
	margin-top: 0;
}
.prduct_list .item {
	margin-top: 50px;
}
.prduct_list a {
	color: #000;
}
.prduct_list a:hover {
	color: #D6000F;
}
.prduct_list .item .title {
	font-size: 16px;
	line-height: 1.4;
	font-weight: bold;
	margin-top: 10px;
}
.prduct_list .item .price {
	font-size: 12px;
	line-height: 1.4;
	margin-top: 5px;
}
.prduct_list .item .thumb {
	overflow: hidden;
}
.prduct_list .item a .thumb img {
	transition: all 1s;
}
.prduct_list .item a:hover .thumb img {
	transform: scale(1.1,1.1);
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}	/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.prduct_list {
	margin-top: -5vw;
}
* + .prduct_list {
	margin-top: 0;
}
.prduct_list .item {
	margin-top: 5vw;
}
.prduct_list .item .title {
	font-size: 4vw;
	margin-top: 3vw;
}
.prduct_list .item .price {
	font-size: 3.5vw;
	margin-top: 1vw;
}
}	/* for SP max-width: 800px */


/*===============================================================
	
	section_shop_item_detail
	
===============================================================*/
.section_shop_item_detail .item_detail {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
}
.section_shop_item_detail .item_detail .photo_block {
	width: 57%;
}
.section_shop_item_detail .item_detail .txt_block {
	width: 38%;
}
.section_shop_item_detail .item_detail .photo_block img {
	width:100%; height: auto;
}
.section_shop_item_detail .item_detail .photo_block .photo {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
	margin-top: -30px;
}
.section_shop_item_detail .item_detail .photo_block .photo li {
	width: calc((100% - 30px)/2);
	margin-top: 30px;
}
.section_shop_item_detail .item_detail .photo_block .photo li {
	overflow: hidden;
}
.section_shop_item_detail .item_detail .photo_block .photo a img {
	transition: all 1s;
}
.section_shop_item_detail .item_detail .photo_block .photo a:hover img {
	transform: scale(1.1,1.1);
}


/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.section_shop_item_detail .item_detail .photo_block {
	width: calc(100% + 10vw);
	margin-left: -5vw;
	margin-top: -5vw;
}
.section_shop_item_detail .item_detail .photo_block .photo {
	display:none;
}
.section_shop_item_detail .item_detail .txt_block {
	width: 100%;
	margin-top: 5vw;
}
}/* for SP max-width: 800px */

/*===============================================================
	
	.section_shop_item_detail .item_detail
	
===============================================================*/
.section_shop_item_detail .item_detail .txt_block .title {
	font-size: 35px;
	line-height: 1.2;
	font-weight: bold;
	letter-spacing: 0.1em;
}
.section_shop_item_detail .item_detail .txt_block .category_name {
	font-size: 14px;
	line-height: 1.3;
	letter-spacing: 0.1em;
	margin-top: 10px;
}
.section_shop_item_detail .item_detail .txt_block .maker {
	font-size: 12px;
	line-height: 1.5;
	letter-spacing: 0.1em;
	margin-top: 10px;
}
.section_shop_item_detail .item_detail .txt_block .price {
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: 0.1em;
	margin-top: 15px;
}
.section_shop_item_detail .item_detail .txt_block .product_code {
	font-size: 12px;
	line-height: 1.5;
	letter-spacing: 0.1em;
}
.section_shop_item_detail .item_detail .txt_block .subtitle {
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.1em;
	padding-bottom: 20px;
}
.section_shop_item_detail .item_detail .item_description {
	font-size: 14px;
	line-height: 1.8;
}
/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.section_shop_item_detail .item_detail .txt_block .title {
	font-size:6vw;
}
.section_shop_item_detail .item_detail .txt_block .category_name {
	font-size:4vw;
	margin-top: 2vw;
}
.section_shop_item_detail .item_detail .txt_block .maker {
	font-size:3.5vw;
	margin-top: 1.25vw;
}
.section_shop_item_detail .item_detail .txt_block .price {
	font-size:6vw;
	margin-top: 2vw;
}
.section_shop_item_detail .item_detail .txt_block .product_code {
	font-size:3.5vw;
}
.section_shop_item_detail .item_detail .txt_block .subtitle {
	font-size:4vw;
	padding-bottom: 5vw;
}
.section_shop_item_detail .item_detail .item_description {
	font-size:3.5vw;
	line-height: 1.8;
}
}/* for SP max-width: 800px */


/*-------------------------------------------------------------
	.section_shop_item_detail .item_detail
-------------------------------------------------------------*/
.section_shop_item_detail .item_detail .detail_content {
	border-top: solid 1px #ddd;
	margin-top: 40px;
	padding-top: 30px;
}
.section_shop_item_detail .item_detail select {
	line-height: 2;
	height: 35px;
	margin-left: 10px;
}
.section_shop_item_detail .item_detail input {
	margin-left: 10px;
	height: 40px;
	box-sizing: border-box;
}
.section_shop_item_detail .item_detail .option,
.section_shop_item_detail .item_detail .put_cart {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:flex-end;
	align-items: center;
}
.section_shop_item_detail .item_detail .put_cart {
	margin-top: 20px;
}
.section_shop_item_detail input[type=submit] {
	background-color: #d6000f;
	padding: 10px 20px;
	color: #FFF !important;
	text-decoration: none;
	min-width:250px;
	text-align:center;
	font-size: 20px;
	font-weight: bold;
	line-height: 1;
	border: none;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	cursor: pointer;
	-webkit-appearance: none;
	border-radius: 0;
}
.section_shop_item_detail input[type=submit]:hover {
	background-color: #000;
}
/* タブレット以下 */
@media screen and (max-width: 1070px) {
.section_shop_item_detail input[type=submit] {
	min-width:180px;
}
}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.section_shop_item_detail .item_detail .detail_content {
	margin-top: 10vw;
	padding-top: 6vw;
}
.section_shop_item_detail .item_detail select {
	margin-left: 0vw;
	margin-top: 1vw;
	width: 100%;
	height: 12vw;
}
.section_shop_item_detail .item_detail input {
	margin-left: 2vw;
	height: 12vw;
}
.section_shop_item_detail input[type=submit] {
	padding: 2vw 3vw;
	min-width:50vw;
	font-size:5vw;
}
.section_shop_item_detail .item_detail .option dt {
	font-size: 3.5vw;
	width: 100%;
}
.section_shop_item_detail .item_detail .option dd {
	width: 100%;
}
.section_shop_item_detail .item_detail .put_cart {
	margin-top: 5vw;
}

}/* for SP max-width: 800px */

/*-------------------------------------------------------------
	accordion_box	
-------------------------------------------------------------*/
.accordion_box {
	margin-top: 40px;
}
.accordion_box + .accordion_box {
	margin-top: 0;
}
.accordion_box:last-child {
	border-bottom: solid 1px #ddd;
}
.accordion_title a {
	display: block;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.1em;
	padding: 30px 0;
	border-top: solid 1px #ddd;
	color: #000;
	position: relative;
}
.accordion_title a::after {
	content:'';
	position:absolute;
	top: 0; bottom: 0; right: 10px;
	margin: auto;
	border:solid 1px #000;
	width:10px;
	height:10px;
	border-top:none;
	border-left:none;
	transform: rotate(45deg) translate(-5px,-5px);
	transform: rotate(45deg);
	transition: all 0.3s;
}
.accordion_title.active a::after {
	transform: rotate(225deg);
}
.accordion_title a:hover {
	color: #d6000f;
}
.accordion_title a:hover::after {
	border-color: #d6000f;
}
.accordion_body {
	display: none;
	padding-bottom: 50px;
}
/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.accordion_box {
	margin-top: 5vw;
}
.accordion_box + .accordion_box {
	margin-top: 0;
}
.accordion_title a {
	font-size:4vw;
	padding: 5vw 0;
}
.accordion_title a::after {
	top: 0; bottom: 0; right: 10px;
	width:6px;
	height:6px;
}
.accordion_body {
	padding-bottom: 10vw;
}
}/* for SP max-width: 800px */


/*===============================================================
	
	shop_headline
	
===============================================================*/
.shop_headline {
	text-align: center;
}
.shop_headline .title {
	font-size: 30px;
	line-height: 1.4;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.shop_headline .title {
	font-size: 5vw;
}
}/* for SP max-width: 800px */

/*===============================================================
	
	.carousel_slider .slider
	
===============================================================*/
.carousel_slider {
	man-height: 500px;
}
.carousel_slider .slider {
	position:relative;
	opacity: 0;
}
.carousel_slider.noslider .slider {
	position:relative;
	opacity: 1;
}
.carousel_slider .slider .slide {
	width:100%;
	position:relative;
}
.carousel_slider .slider .slide img {
	width:100%;
}
/* タブレット以下 */
@media screen and (max-width: 1070px) {

}	/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.carousel_slider {
}
.carousel_slider .slider .slide {
	width:100%;
}
}	/* for SP max-width: 800px */


/*-------------------------------------------------------------
	.carousel_slider .slider .pager
-------------------------------------------------------------*/

.carousel_slider .slider .pager {
	position:absolute;
	top:0;
	bottom:0;
	margin:auto;
	width:30px;
	height:75px;
	z-index:5;
}
.carousel_slider .slider .prev {
	left: -15px;
}
.carousel_slider .slider .next {
	right: -15px;
}
/* タブレット以下 */
@media screen and (max-width: 960px) {
.carousel_slider .slider .prev {
	left: 0;
}
.carousel_slider .slider .next {
	right: 0;
}
}	/* for tablet max-width: 960px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {

}	/* for SP max-width: 800px */

/*-------------------------------------------------------------
	.carousel_slider .slider .pager a
-------------------------------------------------------------*/
.carousel_slider .slider .pager a {
	display:block;
	width:30px;
	height:75px;
	overflow:hidden;
	text-indent:-200%;
	position:relative;
}
.carousel_slider .slider .pager a:hover {
	opacity: 0.7;
}
.carousel_slider .slider .pager a:after {
	content:'';
	position:absolute;
	top:0; bottom:0; left:0; right:0; margin:auto;
	border-right:solid 1px #000;
	border-bottom:solid 1px #000;
	width:10px;
	height:10px;
	transform: rotate(-45deg) translate(-2px,-2px);
	transition: all .3s;
}
.carousel_slider .slider .prev a:after {
	transform: rotate(135deg) translate(-2px,-2px);
}
.carousel_slider .slider .pager a:hover:after {
}

/* タブレット以下 */
@media screen and (max-width: 960px) {

}	/* for tablet max-width: 960px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {

}	/* for SP max-width: 800px */


/*-------------------------------------------------------------
	.carousel_slider .slider .slide .photo
-------------------------------------------------------------*/
.carousel_slider .slider .slide .photo img {
	width: inherit;
	max-width: 100%;
	min-width: 100%;
	height: auto;
}

/* タブレット以下 */
@media screen and (max-width: 960px) {

}	/* for tablet max-width: 960px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {

}	/* for SP max-width: 800px */

/*-------------------------------------------------------------
	.carousel_slider .slider .slide .txt
-------------------------------------------------------------*/
.carousel_slider .slider .slide .txt {
	position:absolute;
	top:0; bottom:0; left:0; right:0; margin:auto;
	text-align:center;
	background:rgba(0,0,0,0.1);
	padding:20px;
	box-sizing:border-box;
	color: #fff;
	height: 200px;
}
.carousel_slider .slider .slide .txt h3 {
	font-size:20px;
	line-height:30px;
}
.carousel_slider .slider .slide .txt .btn {
	width:200px;
	margin:0 auto;
	margin-top:20px;
}
.carousel_slider .slider .slide .txt .btn a {
	display:block;
	font-size:16px;
	line-height:20px;
	padding:10px 0;
	text-align:center;
	color:#fff;
	text-decoration:none;
	border:solid 3px #fff;
	box-sizing:border-box;
}
.carousel_slider .slider .slide .txt .btn a:hover {
	background:#fff;
	color:#000;
}
/* タブレット以下 */
@media screen and (max-width: 960px) {

}	/* for tablet max-width: 960px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.carousel_slider .slider .slide .txt {
	height: auto;
}
}	/* for SP max-width: 800px */


/*===============================================================
	
	section_shop_favorites
	
===============================================================*/
.favorites_box {
	position: relative;
	padding: 80px 50px;
}
.favorites_box::after {
	content:'';
	position: absolute;
	top: 0; bottom: 0;
	margin: auto;
	background: #F5EEE9;
	width: 50vw;
	height: auto;
	z-index: 1;
}
.favorites_box {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items: center;
/*
	z-index: 1;
	position: relative;
*/
}
.section_shop_favorites .favorites_box .photo_block,
.section_shop_favorites .favorites_box .txt_block {
	box-sizing: border-box;
	position: relative;
	z-index: 2;
}
.section_shop_favorites .favorites_box .photo_block {
	width: 60%;
}
.section_shop_favorites .favorites_box .txt_block {
	width: 40%;
}
.section_shop_favorites .favorites_box .txt_block .photo {
	margin-top: 20px;
	overflow: hidden;
}
.section_shop_favorites .favorites_box .photo {
	overflow: hidden;
}
.section_shop_favorites .favorites_box .photo a img {
	transition: all 1s;
}
.section_shop_favorites .favorites_box .photo a:hover img {
	opacity: 0.7;
}
.section_shop_favorites .favorites_box .photo_block.photo a:hover img {
	transform: scale(1.1,1.1);
	opacity: 1;
}

.favorites_box:nth-child(even):after  {
	left: 0;
}
.favorites_box:nth-child(odd):after {
	right: 0;
}
.favorites_box:nth-child(odd){
	flex-direction:row-reverse;
}
.favorites_box:nth-child(even) .txt_block  {
	padding-left: 50px;
}
.favorites_box:nth-child(odd) .txt_block {
	padding-right: 50px;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.favorites_box {
	position: relative;
	padding: 5vw;
}
.favorites_box::after {
	display: none;
}
.favorites_box:nth-child(odd),
.favorites_box {
	flex-direction:column;
}

.section_shop_favorites .favorites_box .photo_block,
.section_shop_favorites .favorites_box .txt_block {
	width: 100%;
}
.section_shop_favorites .favorites_box .txt_block .photo {
	margin-top: 3vw;
}
.favorites_box:nth-child(even) .txt_block,
.favorites_box:nth-child(odd) .txt_block {
	padding: 5vw;
	background: #F5EEE9;
}
.favorites_box .delay_block::before {
	background-color: #F5EEE9;
}
}/* for SP max-width: 800px */

/*-------------------------------------------------------------
	favorites_box	
-------------------------------------------------------------*/
.favorites_box .subtitle {
	font-size: 18px;
	line-height: 1.4;
}
.favorites_box .title {
	font-size: 35px;
	line-height: 1.4;
	margin-top: 20px;
	letter-spacing: 0.1em;
}
.favorites_box .txt {
	font-size: 14px;
	line-height: 1.8;
	margin-top: 20px;
}
.favorites_box .btn_viewmore {
	margin-top: 50px;
	max-width: inherit;
}
/* タブレット以下 */
@media screen and (max-width: 1070px) {
.favorites_box .subtitle {
	font-size: 2.24vw;
}
.favorites_box .title {
	font-size: 4.21vw;
	margin-top: 2.2vw;
}
.favorites_box .txt {
	font-size: 1.50vw;
	margin-top: 2.2vw;
}
.favorites_box .btn_viewmore {
	margin-top: 3vw;
}
}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.favorites_box .subtitle {
	font-size: 3.5vw;
	margin-top: 1vw;
}
.favorites_box .title {
	font-size: 6vw;
	margin-top: 1.5vw;
}
.favorites_box .txt {
	font-size: 3.5vw;
	margin-top: 1.5vw;
}
.favorites_box .btn_viewmore {
	margin-top: 4vw;
}
}/* for SP max-width: 800px */


/*===============================================================
	
	btn_viewmore
	
===============================================================*/
.btn_viewmore {
	margin: 0 auto;
	margin-top: 40px;
	max-width: 450px;
}
.btn_viewmore a {
	display: block;
	border: solid 1px #D6000F;
	color: #D6000F;
	text-align: center;
	font-size: 18px;
	line-height: 1.2;
	padding: 20px 0;
	border-radius: 2px;
	letter-spacing: 0.2em;
	background: #fff;
}
.btn_viewmore a:hover {
	color: #fff;
	background: #D6000F;
}

.btn_viewmore_red a {
	display: block;
	border: solid 1px #D6000F;
	color: #fff;
	text-align: center;
	font-size: 18px;
	line-height: 1.2;
	padding: 20px 0;
	border-radius: 2px;
	letter-spacing: 0.2em;
	background: #D6000F;
}
.btn_viewmore_red a:hover {
	color: #D6000F;
	background: #fff;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {
.btn_viewmore {
	margin: 0 auto;
	margin-top: 3.74vw;
	max-width: 42.06vw;
}
.btn_viewmore_red a,
.btn_viewmore a {
	font-size: 1.5vw;
	padding: 1vw 0;
}
}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.btn_viewmore {
	margin-top: 5vw;
	max-width: 100%;
	width: 100%;
}
.btn_viewmore a {
	font-size: 4.5vw;
	padding: 3vw 0;
}


}/* for SP max-width: 800px */


/*===============================================================
	
	section_discover_favorites
	
===============================================================*/
.section_discover_favorites {
	background: #F5EEE9;
}
.section_discover_favorites .title_block {
	text-align: center;
}
.section_discover_favorites .title_block .subtitle {
	font-size: 20px;
	line-height: 1.4;
	letter-spacing: 0.1em;
}
.section_discover_favorites .title_block .title {
	font-size: 35px;
	line-height: 1.4;
	letter-spacing: 0.1em;
}
.section_discover_favorites a .photo {
	overflow: hidden;
}
.section_discover_favorites a .photo img {
	transition: all 1s;
}
.section_discover_favorites a:hover .photo img {
	transform: scale(1.1,1.1)
}
/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.section_discover_favorites .title_block .subtitle {
	font-size: 4vw;
}
.section_discover_favorites .title_block .title {
	font-size: 6vw;
}

}/* for SP max-width: 800px */


/*-------------------------------------------------------------
	section_discover_favorites	
-------------------------------------------------------------*/
.section_discover_favorites .content {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
	margin-top: 60px;
}
.section_discover_favorites .content .item {
	width: 33.33%;
}
.section_discover_favorites .content .item .title {
	margin-top: 20px;
	font-size: 18px;
	line-height: 1.4;
	letter-spacing:0.05em;
}
.section_discover_favorites .content .item .price {
	margin-top: 5px;
	font-size: 14px;
	line-height: 1.4;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.section_discover_favorites .content {
	margin-top: 5vw;
}
.section_discover_favorites .content .item {
	width: 100%;
}
.section_discover_favorites .content .item + .item {
	margin-top: 5vw;
}
.section_discover_favorites .content .item .title {
	margin-top: 2vw;
	font-size: 4vw;
}
.section_discover_favorites .content .item .price {
	margin-top: 0vw;
	font-size: 3.5vw;
}

}/* for SP max-width: 800px */


/*===============================================================
	
	section_information
	
===============================================================*/

.section_information .title_block .title {
	font-size: 30px;
	line-height: 1.4;
	letter-spacing:0.1em;
}
.section_information .news_list {
	margin-top: 60px;
	border-top: solid 1px #ddd;
}
.section_information .news_list .line {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items: center;
	border-bottom: solid 1px #ddd;
	padding: 20px 0;
}
.section_information .news_list .date {
	font-size:30px;
	line-height: 1.2;
	text-align: center;
	width: 160px;
}
.section_information .news_list .date .year {
	font-size:14px;
	line-height: 1.2;
}
.section_information .news_list .txt {
	font-size:16px;
	line-height: 1.6;
	width: calc(100% - 160px);
	padding: 30px 0 30px 40px;
	box-sizing: border-box;
	border-left: solid 1px #ddd;
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items: center;
}
.section_information .news_list .txt p {
	width: calc(100% - 150px);
}
.section_information .news_list .btn_viewmore {
	width: 130px;
	margin: 0;
}
.section_information .news_list .btn_viewmore a {
	font-size:12px;
	line-height: 1.2;
	padding: 15px 0;
}
.section_information .btn_viewmore {
	margin-top: 50px;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {
.section_information .news_list .txt p + p{
	margin-top: 10px;
}
}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.section_information {
	margin-top: 0;
}
.section_information .title_block .title {
	font-size: 5vw;
}
.section_information .news_list {
	margin-top: 3vw;
}
.section_information .pickup_news + .news_list {
	margin-top: 5vw;
}
.section_information .news_list .line {
	padding: 3vw 0;
	position: relative;
}
.section_information .news_list .date {
	font-size:5vw;
	width: 15vw;
}
.section_information .news_list .date .year {
	font-size:3.2vw;
	margin-top: 0.2vw;
}
.section_information .news_list .txt {
	font-size:3.5vw;
	width: calc(100% - 15vw);
	padding: 2vw 0vw 6vw 5vw;
}
.section_information .news_list .txt p {
	width: 100%;
	font-size:3.5vw;
	line-height: 1.5;
	height: 3em;
	overflow: hidden;
	position: relative;
}
.section_information .news_list .txt p + p{
	margin-top: 2vw;
}
.section_information .news_list .txt p::after {
	content:'...';
	position:absolute;
	bottom: 0; right: 0;
	margin: auto;
	width:1em;
	height:1.5em;
	background: #fff;
	font-size:3.5vw;
	line-height: 1.5;
	}
.section_information .news_list .btn_viewmore {
	width: auto;
	margin: 0;
	position: absolute;
	bottom: 4vw;
	right: 0;
}
.section_information .news_list .btn_viewmore a {
	font-size:3vw;
	line-height: 1.2;
	padding: 0vw;
	border: 0;
}
.section_information .news_list .btn_viewmore a:hover {
	background: none;
	color: #D6000F;
	opacity: 0.7;
}
.section_information .btn_viewmore {
	margin-top: 5vw;
}

}/* for SP max-width: 800px */


/*-------------------------------------------------------------
	pickup_news	
-------------------------------------------------------------*/
.pickup_news {
	margin-top: 60px;
}
.pickup_news .date {
	font-size:45px;
	line-height: 1.2;
}
.pickup_news .date .year {
	font-size:20px;
	line-height: 1.2;
	display: inline-block;
	padding-left: 20px;
}
.pickup_news .news_box {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
	margin-top: 30px;
}
.pickup_news .photo {
	width: 45%;
}
.pickup_news .txt_block {
	width: 52%;
	font-size: 16px;
	line-height: 1.8;
}
.pickup_news .txt_block .delay_block + .delay_block {
	margin-top: 30px;
}


/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.pickup_news {
	margin-top: 5vw;
}
.pickup_news .date {
	font-size:6vw;
}
.pickup_news .date .year {
	font-size:4vw;
	padding-left: 1vw;
}
.pickup_news .news_box {
	margin-top: 5vw;
}
.pickup_news .photo {
	width: 100%;
}
.pickup_news .txt_block {
	width: 100%;
	font-size: 3.5vw;
	line-height: 1.8;
	margin-top: 5vw;
}
.pickup_news .txt_block .delay_block + .delay_block {
	margin-top: 5vw;
}
}/* for SP max-width: 800px */

/*===============================================================
	
	section_shop_top_slider
	
===============================================================*/
.section_shop_top_slider {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items: center;
	/*max-height: calc(100vw - 220px);*/
}
.section_shop_top_slider .left_slider {
	width: 550px;
	height: 650px;
	padding: 50px;
	box-sizing: border-box;
	position: relative;
}
.section_shop_top_slider .right_slider {
	width: calc(100% - 550px);
	height: 650px;
	position: relative;
}
.section_shop_top_slider .slider {

}	


/* タブレット以下 */
@media screen and (max-width: 1500px) {

.section_shop_top_slider .left_slider {
	width: 32.5%;
	padding: 40px;
	height: auto;
}
.section_shop_top_slider .right_slider {
	width: 67.5%;
	height: auto;
}
}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.section_shop_top_slider {
	flex-direction:column-reverse;
}
.section_shop_top_slider .left_slider {
	width: 100%;
	padding: 5vw 0;
}
.section_shop_top_slider .right_slider {
	width: 100%;
}
}/* for SP max-width: 800px */

/*-------------------------------------------------------------
	left_slider	
-------------------------------------------------------------*/
.section_shop_top_slider .left_slider .title {
	font-size: 30px;
	line-height: 1.4;
	margin-top: 20px;
	letter-spacing:0.1em;
	font-weight: bold;
}
.section_shop_top_slider .left_slider p {
	font-size: 14px;
	line-height: 2;
	margin-top: 20px;
}
.section_shop_top_slider .left_slider .fig {
	text-align: center;
}
.section_shop_top_slider .left_slider .fig img {
	width:100%; height: auto;
	max-width: 300px;
	margin: 0 auto;
}
/* タブレット以下 */
@media screen and (max-width: 1500px) {
.section_shop_top_slider .left_slider .title {
	font-size: 2.00vw;
	line-height: 1.4;
	margin-top: 1.33vw;
}
.section_shop_top_slider .left_slider p {
	font-size: 0.93vw;
	margin-top: 1.33vw;
}
.section_shop_top_slider .left_slider .fig {
	text-align: center;
}
.section_shop_top_slider .left_slider .fig img {
	width:100%; height: auto;
	max-width: 25.33vw;
	margin: 0 auto;
}

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.section_shop_top_slider .left_slider .slide a {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items: center;
}
.section_shop_top_slider .left_slider .title {
	font-size: 5vw;
	line-height: 1.4;
	margin-top: 0vw;
}
.section_shop_top_slider .left_slider p {
	font-size: 3.5vw;
	line-height: 1.8;
	margin-top: 2vw;
}
.section_shop_top_slider .left_slider .txt {
	width: 100%;
	padding: 0 5vw;
	box-sizing: border-box;
}	
.section_shop_top_slider .left_slider .fig {
	text-align: center;
	width: 30%;
	display: none;
}
.section_shop_top_slider .left_slider .fig img {
	width:100%; height: auto;
	max-width: 40vw;
	margin: 0 auto;
}

}/* for SP max-width: 800px */


/*-------------------------------------------------------------
	right_slider	
-------------------------------------------------------------*/
.section_shop_top_slider .right_slider .fig img {
	width:100%;
	max-height: 650px;
	object-fit:cover;
	font-family:'object-fit:cover;'
}
/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {

}/* for SP max-width: 800px */

/*-------------------------------------------------------------
	slider_ui	
-------------------------------------------------------------*/
.slider_ui {
	position: absolute;
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
	bottom: 10px;
	right: 10px;
}
.slider_ui .deactive a {
	opacity: 0.2;
}
.slider_ui a {
	display: block;
	width: 30px; 
	height: 30px;
	position: relative;
	white-space: normal;
	text-indent: 200%;
	overflow: hidden;
}
.slider_ui a::after {
	content:'';
	position:absolute;
	top: 0; bottom: 0; left: 0; right: 0;
	margin: auto;
	border:solid 1px #000;
	width:8px;
	height:8px;
	border-top:none;
	border-left:none;
	transform: rotate(135deg) translate(-1px,-1px);
	transition: all 0.3s;
}
.slider_ui .prev a::after {
	transform: rotate(-45deg) translate(-1px,-1px);
}
.slider_ui a:hover::after {
	border-color: #D6000F;
}
/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.slider_ui {
	top: -33px;
	bottom: auto;
	right: 0;
	background: #fff;
	z-index: 3;
}
}/* for SP max-width: 800px */

/*-------------------------------------------------------------
	right_slider	
-------------------------------------------------------------*/
.right_slider .progress {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: #fff;
	z-index: 2;
}
.right_slider .progress .bar {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 3px;
	background: #D6000F;
	z-index: 5;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.right_slider .progress,
.right_slider .progress .bar {
	bottom: 0px;
}
}/* for SP max-width: 800px */


/*===============================================================
	
	共通パンくずリスト(変更不可）
	
===============================================================*/
#breadclumb {
	background: #f9f9f9;
}
#breadclumb .container {
	padding: 0 30px;
}
.topiclist {
	clear: both;
	text-align: left;
}
.topiclist li {
	display: inline;
	margin-right: 5px;
	font-size: 11px;
}
.topiclist{
	margin: 0;
	padding: 5px 0;
}
.topiclist li br{
    display: none;
}



/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
#breadclumb .container {
	padding: 0 3vw;
}
.topiclist{
	margin: 0;
	padding: 0 0;
}
.topiclist li {
	margin-right: 1vw;
	font-size: 2.5vw;
}
}/* for SP max-width: 800px */

/*===============================================================
	
	youtube
	
===============================================================*/
.youtube_video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube_video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {

}/* for SP max-width: 800px */

/*===============================================================
	
	Youtube背景動画
	
===============================================================*/
.bg_youtube {
  position: relative;
  width: 100%;
 	height: 0;
	height: 56.25vw;
  /*padding-bottom: 56.25%;*/
  overflow: hidden;
	background: #000;
}
.bg_youtube video {
/*	position: fixed;*/
  width: 100%;
	height: 56.25vw;
	background: #000;
}
#backmovie {
  width: 100%;
  height: 100%;
	z-index: 1;
}
#backmovie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.bg_youtube_cover {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
	/*background: rgba(0,0,0,0.4);*/
	z-index: 1;
	/*display: none;*/
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.bg_youtube,
.bg_youtube video,
.top_page .bg_youtube {
	height: 100vw;
} 
.bg_youtube video {
	height: 100vw;
} 
#backmovie,
.bg_youtube video,
.top_page #backmovie {
  width: 177.7777vw;
  height: 100vw;
/*	z-index: -1;*/
	z-index: 5;
  margin-left: -38.88885vw;
} 
.top_page .bg_youtube {
	height: 130vw;
	z-index: 2;
} 
.bg_youtube video,
.top_page #backmovie {
  width: 232vw;
  height: 130vw;
/*	z-index: -1;*/
	z-index: 5;
  margin-left: -66vw;
}  
}/* for SP max-width: 800px */

/*===============================================================
	
	header_visual
	
===============================================================*/
.header_visual {
	position: relative;
	width: 100%;
	max-height: 100vh;
	overflow: hidden;
}
.header_visual .txt_block {
	position: absolute;
	bottom: 10%; left: 0; right: 0;
	margin: auto;
/*  width: 550px;*/
/*	max-width: 550px;*/
	width: 800px;
	max-width: 800px;
	text-align: center;
	color: #fff;
	z-index: 5;
}
.header_visual .txt_block p {
	font-size: 20px;
	line-height: 1.7;
	position: relative;
	padding-bottom: 20px;
	transition: all 2s;
}
.header_visual .txt_block p::after {
/*
	content:'';
	position:absolute;
	bottom: 0; left: 0; right: 0;
	margin: auto;
	border:solid 1px #fff;
	width:20px;
	height:20px;
	border-top:none;
	border-left:none;
	transform: rotate(45deg);
	transition: all 0.3s;
*/
}
.header_visual .txt_block a {
	color: #fff;
}
.header_visual .txt_block p:hover {
/*	transform: translateY(20px);*/
}
/* タブレット以下 */
@media screen and (max-width: 1070px) {
.header_visual .txt_block {
	position: absolute;
	bottom: 10%; left: 0; right: 0;
	margin: auto;
  width: 51.40vw;
	max-width: 51.40vw;
	text-align: center;
	color: #fff;
}
.header_visual .txt_block p {
	font-size: 1.87vw;
	line-height: 1.7;
	position: relative;
	padding-bottom: 1.87vw;
}
.header_visual .txt_block p::after {
/*
	content:'';
	position:absolute;
	bottom: 0; left: 0; right: 0;
	margin: auto;
	border:solid 0.09vw #fff;
	width:1.87vw;
	height:1.87vw;
	border-top:none;
	border-left:none;
	transform: rotate(45deg);
	transition: all 0.3s;
*/
}
}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.header_visual .txt_block {
  z-index: 10;
  bottom: 0;
	/*position: relative;*/
	max-width: inherit;
	width: 100%;
	/*background: #D6000F;
	background: #000;*/
	padding: 5vw;
	box-sizing: border-box;
	/*border-bottom: solid 3px #D6000F;*/
}
.header_visual .txt_block p {
	font-size: 3.5vw;
	padding-bottom: 3vw;
}
.header_visual .txt_block p:hover {
	transform: translateY(0);
}
.header_visual .txt_block p::after {
/*
  border: solid 1px #fff;
  width: 2vw;
  height: 2vw;
  border-top: none;
	border-left: none;
*/
}

}/* for SP max-width: 800px */

/*===============================================================
	
	oneoff_menu
	
===============================================================*/
.oneoff_menu {
  position: absolute;
  bottom: 30px; left: 0; right: 0;
  margin: auto;
  z-index: 1;
  width: 900px;
	padding: 5px;
  background: rgba(0,0,0,0.6);
  box-sizing: border-box;
}
.oneoff_menu .inner{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.oneoff_menu .title_block {
	width: 25%;
}
.oneoff_menu .menu_block {
	width: 75%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	box-sizing: border-box;
}

/* タブレット以下 */
@media screen and (max-width: 900px) {
.oneoff_menu {
  bottom: 0;
  width: 100%;
}  

}/* for tablet max-width: 900px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.oneoff_menu {
  position: static;
	padding: 0;
}
.oneoff_menu .inner {
	display:block;
	padding: 0;
}
.oneoff_menu .title_block {
	display: none;
}
.oneoff_menu .menu_block {
	width: 100%;
}
  
}/* for SP max-width: 800px */

/*-------------------------------------------------------------
	title_block	
-------------------------------------------------------------*/
.oneoff_menu .title_block .title {
  color: #fff;
	font-size: 16px;
  font-weight: normal;
  text-align: center;
}

/* タブレット以下 */
@media screen and (max-width: 900px) {
.oneoff_menu .title_block .title {
	/*font-size: 1.8vw;*/
}

}/* for tablet max-width: 900px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {

}/* for SP max-width: 800px */

/*-------------------------------------------------------------
	menu_block	
-------------------------------------------------------------*/
.oneoff_menu .menu_block .item {
/*	width: 24.4%;*/
	width: 19.3%;
  margin-right: 0.8%;
}
.oneoff_menu .menu_block .item:last-child {
  margin-right: 0;
}
.oneoff_menu .menu_block .item a {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	/*padding: 10px;*/
	box-sizing: border-box;
	width: 100%;
	position: relative;
  color: #fff;
  background: rgba(0,0,0,0.7);
  padding: 10px;
}
.oneoff_menu .menu_block .item a:hover {
  color: #000;
	background: #fff;
}
.oneoff_menu .menu_block .item.current a {
	background: #D6000F;
}
.oneoff_menu .menu_block .item.current a:hover {
	color: #fff;
}
.oneoff_menu .menu_block .item.current a::after {
	content: '';
	position: absolute;
	bottom: 0; left: 0; right: 0;
	width: 100%;
	height: 2px;
	background-color: #D6000F;
  display: none;
}
.oneoff_menu .menu_block .item a .photo {
	width: 55%;
  background: none !important;
}
.oneoff_menu .menu_block .item a p {
	width: 40%;
	font-size: 14px;
	line-height: 1.2;
  text-align: center;
}

/* タブレット以下 */
@media screen and (max-width: 900px) {
.oneoff_menu .menu_block .item a p {
	/*font-size: 1.5vw;*/
}  

}/* for tablet max-width: 900px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.oneoff_menu .menu_block .item {
	width: 50%;
  margin: 0;
}
.oneoff_menu .menu_block .item:first-child {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
}
.oneoff_menu .menu_block .item a {
	padding: 3vw;
  background: #222;
}
.oneoff_menu .menu_block .item a {
  border-left: solid 1px rgba(255,255,255,0.1);
  border-top: solid 1px rgba(255,255,255,0.1);
}  
.oneoff_menu .menu_block .item:nth-child(odd) a {
  border-left: none;
}  
.oneoff_menu .menu_block .item:nth-child(1) a,
.oneoff_menu .menu_block .item:nth-child(2) a {
  border-top: none;
}
.oneoff_menu .menu_block .item.current a {
  background: #D6000F;
}
.oneoff_menu .menu_block .item.current a::after {
	display: none;
}  
.oneoff_menu .menu_block .title {
  color: #fff;
	font-size: 4vw;
	padding: 3vw;
} 
.oneoff_menu .menu_block .item a .photo {
	width: 50%;
}  
.oneoff_menu .menu_block .item a p {
	width: 43%;
	font-size: 4vw;
	line-height: 1.2;
}
  
}/* for SP max-width: 800px */

/*===============================================================
	
	content_bg_pc
	
===============================================================*/
.content_bg_pc {
  position: relative;
  padding-bottom: 50px;
}
.content_bg_pc > * {
  position: relative;
  z-index: 1;
}
.content_bg_pc:after {
	content: '';
  position: absolute;
  z-index: 0;
  bottom: 0; left: 0;
  width: 100vw;
  height: 350px;
  background: #f9f9f9;
  margin-left: calc((100vw - 100%)/-2);
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {
.content_bg_pc:after {
  height: 25vw;
}  

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.content_bg_pc {
	padding-bottom: 0;
}  
.content_bg_pc:after {
	display: none;
}

}/* for SP max-width: 800px */

/*===============================================================
	
	section_brand_project_menu
	
===============================================================*/
.section_brand_project_menu {
	text-align: center;
	background: #1d1919;
	background: -moz-linear-gradient(top,  #1d1919 0%, #686565 100%);
	background: -webkit-linear-gradient(top,  #1d1919 0%,#686565 100%);
	background: linear-gradient(to bottom,  #1d1919 0%,#686565 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1d1919', endColorstr='#686565',GradientType=0 );
	
	background: #f2f2f2;
	padding: 50px;
	padding-bottom: 60px;
	box-sizing: border-box;
}
.section_brand_project_menu .title_block .title {
  color: #959595;
	font-size: 25px;
	line-height: 1.2;
	letter-spacing: 0.1em;
}
.section_brand_project_menu .menu_block {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
	margin-top: 50px;
}
.section_brand_project_menu .menu_block .item {
	width: calc((100% - 80px)/5);
}
.section_brand_project_menu .menu_block .item a {
	display: block;
	background: #fff;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 5px 5px 10px 0 rgba(0,0,0,0.1);
}
.section_brand_project_menu .menu_block .item a p {
	font-size: 16px;
	margin-top: 20px;
}
/* タブレット以下 */
@media screen and (max-width: 1300px) {
.section_brand_project_menu {
	padding: 3.33vw;
	padding-bottom: 4.00vw;
}
.section_brand_project_menu .title_block .title {
	font-size: 2.00vw;
}
.section_brand_project_menu .menu_block {
	margin-top: 3.33vw;
}
.section_brand_project_menu .menu_block .item {
	width: calc((100% - 60px)/5);
}
.section_brand_project_menu .menu_block .item a {
	padding: 1.33vw;
	border-radius: 0.67vw;
}
.section_brand_project_menu .menu_block .item a p {
	font-size: 1.47vw;
	margin-top: 1.33vw;
}
}/* for tablet max-width: 1070px */

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
/*
.section_brand_project_menu {
	padding: 5vw;
}
.section_brand_project_menu .title_block .title {
	font-size: 4vw;
	line-height: 1.5;
}
.section_brand_project_menu .menu_block {
	margin-top: 2vw;
}
.section_brand_project_menu .menu_block .item {
	width: 50%;
	padding:0 1.5vw;
	margin-top: 3vw;
	box-sizing: border-box;
}
.section_brand_project_menu .menu_block .item a {
	padding: 1vw;
	border-radius: 10px;
}
.section_brand_project_menu .menu_block .item a p {
	font-size: 3.5vw;
	padding: 1vw 0 2vw 0;
}
	*/
}/* for SP max-width: 800px */


/*  縦積みバージョン	*/
/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.section_brand_project_menu {
	padding: 5vw;
}
.section_brand_project_menu .title_block .title {
	font-size: 4vw;
	line-height: 1.5;
}
.section_brand_project_menu .menu_block {
	margin-top: 2vw;
	flex-direction: column;
}
.section_brand_project_menu .menu_block .item {
	width: 100%;
	padding:0 1.5vw;
	margin-top: 3vw;
	box-sizing: border-box;
}
.section_brand_project_menu .menu_block .item a {
	padding: 2vw;
	border-radius: 3px;
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items: center;
	overflow: hidden;
	position: relative;
	/*padding-right: 10vw;*/
}
.section_brand_project_menu .menu_block .item a::after {
	content:'';
	position:absolute;
	top: 0; bottom: 0; right: 3vw;
	margin: auto;
	border:solid 1px #000;
	width:6px;
	height:6px;
	border-top:none;
	border-left:none;
	transform: rotate(-45deg) translate(-1px,-1px);
	transition: all 0.3s;
  display: none;
}
.section_brand_project_menu .menu_block .item a .photo {
	width: 30vw;
}
.section_brand_project_menu .menu_block .item a p {
	font-size: 4vw;
	margin: 0;
	line-height: 1;
	text-align: left;
	padding: 3vw;
	width: calc(100% - 34vw);
	box-sizing: border-box;
}
}/* for SP max-width: 800px */
/*===============================================================
	
	linebox_animation_wrp
	
===============================================================*/
.linebox_animation_wrp {
	position: relative;
	padding-bottom: 5px;
	overflow: hidden;
	border-top: solid 5px #D6000F;
}

.linebox_animation_wrp::after {
	content:'';
	position:absolute;
	bottom: 0; left: 0; right: 0;
	width:100%;
	height:5px;
	background: #D6000F;
	z-index: 2;
}
.linebox_animation_wrp .linebox {
	position: relative;
}
.linebox_animation_wrp .linebox.line_active {
/*	background: #555;*/
}
.linebox_animation_wrp .line {
	width: 0;
	height: 0;
	background: #D6000F;
	position: absolute;
	z-index: 2;
/*	transition: all 0.1s;*/
}
.linebox_animation_wrp .line.line_v {
	top: 0;
	width: 5px;
}
.linebox_animation_wrp .line.line_h {
	bottom: 0;
	height: 5px;
}
.linebox_animation_wrp .line.line_l {
	left: 0;
}
.linebox_animation_wrp .line.line_r {
	right: 0;
}

.linebox_animation_wrp .linebox:last-child .line_h {
	display: none;
	/*width: 100%;*/
}


/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.linebox_animation_wrp {
	border-top: solid 4px #D6000F;
}

.linebox_animation_wrp .line.line_v {
	top: 0;
	width: 4px;
}
.linebox_animation_wrp .line.line_h {
	bottom: 0;
	height: 4px;
}
.linebox_animation_wrp {
	padding-bottom: 0vw;
}
.linebox_animation_wrp::after {
	height: 4px;
	display: none;
}
.linebox_animation_wrp .linebox:last-child .line_h {
	display: block;
	/*width: 100%;*/
}
}/* for SP max-width: 800px */


/*===============================================================
	
	section_business_domein_title
	
===============================================================*/
.section_business_domein_title {
	background: #D6000F;
	color: #fff;
}
.section_business_domein_title .title_block {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
  align-items: center;
}
.section_business_domein_title .title_block .txt {
	width: 68%;
}
.section_business_domein_title .title_block .img {
	width: 28%;
}
.section_business_domein_title .title {
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: 0.1em;
}
.section_business_domein_title p {
	font-size: 16px;
	line-height: 1.8;
	margin-top: 30px;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.section_business_domein_title .title_block .txt {
	width: 100%;
}
.section_business_domein_title .title_block .img {
	width: 80%;
  margin: 0 auto;
  margin-top: 3vw;
}  
.section_business_domein_title .title {
	font-size: 5vw;
}
.section_business_domein_title p {
	font-size: 3.5vw;
	margin-top: 3vw;
}
.section_business_domein_title .section_inner {
	padding: 8vw;
}
}/* for SP max-width: 800px */


/*===============================================================
	
	section_business_domein
	
===============================================================*/
.section_business_domein:nth-child(odd) {
  background: #eeeeee;
  background: linear-gradient(45deg, #f9f9f9 0%, #eeeeee 100%);
}
.section_business_domein:nth-child(even) {
  background: #eeeeee;
	background: linear-gradient(45deg, #eeeeee 0%, #f9f9f9 100%);
}
.section_business_domein .section_inner {
/*
	display:flex;
	flex-direction:row-reverse;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items: center;
*/
}
.section_business_domein:nth-child(even) .section_inner {
/*
	flex-direction:row;
*/
}
.section_business_domein .section_inner .flex_container {
	display:flex;
	flex-direction:row-reverse;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items: center;
	margin: 0 80px 0 0;
	position: relative;
	/*background: #f9f9f9;*/
}
.section_business_domein:nth-child(even) .flex_container {
  margin: 0 0 0 80px;
	flex-direction:row;
}
.section_business_domein .txt_block {
	padding-top: 0;
	width: 40%;
	box-sizing: border-box;
	display:flex;
	flex-direction:column;
	flex-wrap:wrap;
}
.section_business_domein .txt_block .item {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	max-width: 500px;
	padding-left: 50px;
}
.section_business_domein:nth-child(even) .txt_block .item {
	padding-left: 0;
	padding-right: 50px;
}
.section_business_domein .photo_block {
	width: 60%;
	overflow: hidden;
}
.section_business_domein .txt_block {
	mix-blend-mode: multiply;
}
.section_business_domein .vtxt {
	font-size: 3vw;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #fff;
	transform: rotate(90deg);
  transform-origin: left bottom;
	position: absolute;
	top: -60px;
	left: 10px;
	font-style: italic;
}
.section_business_domein:nth-child(even) .vtxt {
	right: 10px;
	left: auto;
	transform: rotate(-90deg);
  transform-origin: right bottom;
}

/* タブレット以下 */
@media screen and (max-width: 1700px) {
.section_business_domein .txt_block .item {
	max-width: 400px;
}
.section_business_domein .section_inner .flex_container {
	margin: 0 50px 0 0;
}
.section_business_domein:nth-child(even) .flex_container {
  margin: 0 0 0 50px;
}

}

/* タブレット以下 */
@media screen and (max-width: 1400px) {
.section_business_domein .section_inner .flex_container {
	margin: 0 50px;
}
.section_business_domein:nth-child(even) .flex_container {
  margin: 0 50px;
}
.section_business_domein .vtxt {
  top: -30px;
  left: -40px;
}
.section_business_domein:nth-child(even) .vtxt {
  right: -40px;
}
.section_business_domein .txt_block {
	padding: 40px;
	padding-top: 20px;
	padding-bottom: 0;
	width: 35%;
}
.section_business_domein .txt_block .inner {
	max-width: inherit;
}
.section_business_domein .photo_block {
	width: 65%;
}
.section_business_domein .txt_block .item {
	width: 100%;
	max-width: inherit;
}
.section_business_domein .txt_block .item {
	padding-left: 0px;
}
.section_business_domein:nth-child(even) .txt_block .item {
	padding-left: 0;
	padding-right: 0px;
}
}/* for tablet max-width: 1400px */

/* タブレット以下 */
@media screen and (max-width: 1300px) {
.section_business_domein .section_inner {
	padding: 50px 0;
}
}/* for tablet max-width: 1070px */


/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.section_business_domein:nth-child(odd) {
  background: #fff;
  background: linear-gradient(135deg, #D6D6D6 0%, #D6D6D6 20%, #fff 100%);
}
.section_business_domein:nth-child(even) {
  background: #fff;
	background: linear-gradient(135deg, #D6D6D6 0%, #D6D6D6 20%, #fff 100%);
}  
.section_business_domein .section_inner {
	padding: 0;
}
.section_business_domein .section_inner .flex_container {
	margin: 0;
}
.section_business_domein .vtxt {
	display: none;
}
.section_business_domein .txt_block {
	padding: 8vw;
	width: 100%;
}
.section_business_domein .photo_block {
	width: 100%;

}

.section_business_domein .txt_block .photo {
	text-align: center;
}
.section_business_domein .txt_block .photo img {
	text-align: center;
	width: 80%;
	height: auto;
}
}/* for SP max-width: 800px */

/*-------------------------------------------------------------
	section_business_domein .txt_block
-------------------------------------------------------------*/
.section_business_domein .txt_block .subtitle {
	font-size: 18px;
	line-height: 1.8;
	margin-top: 25px;
}
.section_business_domein .txt_block .title {
	font-size: 35px;
	line-height: 1.2;
	letter-spacing: 0.05em;
}
.section_business_domein .txt_block p {
	font-size: 12px;
	line-height: 1.4;
	margin-top: 20px;
	letter-spacing: 0.1em;
}
.section_business_domein .txt_block .photo {
	margin-top: 50px;
}
.section_business_domein .txt_block .btn_viewmore {
  padding-left: 50px;
}
.section_business_domein .txt_block .btn_viewmore a {
	max-width: 250px;
}

/* タブレット以下 */
@media screen and (max-width: 1600px) {
.section_business_domein .txt_block .subtitle {
	font-size: 1.33vw;
	margin-top: 1.56vw;
}
.section_business_domein .txt_block .title {
	font-size: 2.2vw;
	line-height: 1.2;
	letter-spacing: 0.05em;
}
.section_business_domein .txt_block p {
	font-size: 1vw;
	line-height: 1.4;
	margin-top: 1.25vw;
	letter-spacing: 0.1em;
}
.section_business_domein .txt_block .photo {
	margin-top: 3vw;
}
.section_business_domein .txt_block .btn_viewmore {
	margin-top: 2vw;
}

}/* for tablet max-width: 1070px */

/* タブレット以下 */
@media screen and (max-width: 1400px) {
.section_business_domein .txt_block .subtitle {
	margin-top: 1.79vw;
}
.section_business_domein .txt_block .photo {
	margin-top: 2.14vw;
}
.section_business_domein .txt_block .btn_viewmore {
  width:100%;
  padding-left: 0px;
}
.section_business_domein .txt_block .btn_viewmore a {
	max-width: 100%;
}  

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.section_business_domein .txt_block .subtitle {
	font-size: 3.5vw;
  line-height: 1.4;
	margin-top: 3vw;
}
.section_business_domein .txt_block .title {
	font-size: 6vw;
}
.section_business_domein .txt_block p {
	font-size: 2.5vw;
	margin-top: 3vw;
}
.section_business_domein .txt_block .photo {
	margin-top: 3vw;
}
.section_business_domein .txt_block .btn_viewmore {
	margin-top: 5vw;
}
}/* for SP max-width: 800px */

/*-------------------------------------------------------------
	btn_viewmore	
-------------------------------------------------------------*/
.section_business_domein .btn_viewmore a {
	color: #fff;
	background: #D6000F;
}
.section_business_domein .btn_viewmore a:hover {
	color: #D6000F;
	background: #fff;
}


/*===============================================================
	
	delay_block
	
===============================================================*/
.delay_block {
	position: relative;
	display: inline-block;
	color: transparent;
}

.detail_content.delay_block ,
.item_description.delay_block {
	display: block;
	width: 100%;
}
.delay_block img {
	opacity: 0;
}
.delay_block::before,
.delay_block::after {
	content: "";
	display: block;
	position: absolute;
	top: -5px;
	left: 0;
	width: 0%;
	height: 3px;
	background-color: #D6000F;
	transform-origin: 0 0;
	transition: all 0.4s cubic-bezier(.51,-0.01,.21,1.01);
	z-index: 10;
}
.delay_block::before {
	width: 100%;
	height: 100%;
	top: auto;
	bottom: 0;
	background-color: #fff;
	transition: all 0.4s cubic-bezier(.51,-0.01,.21,1.01);
/*	mix-blend-mode: multiply;*/
}
.bg_gray .delay_block::before {
	background-color: #f9f9f9;
}
.section_discover_favorites .delay_block::before {
	background-color: #F5EEE9;
}

/* 表示　*/
.delay_block.show {
}
.delay_block.show img {
}
.delay_block.show::after {
	width: 100%;
}
/* 表示　*/
.delay_block.done.show {
	color: #000;
	background: transparent;
	overflow-wrap: anywhere;
}
.delay_block.done.show img {
	opacity: 1;
}
.delay_block.done.show::after {
	left: auto;
	right: 0;
	width: 0%;
}
.delay_block.done.show::before {
	height: 0%;
}
/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.delay_block::after {
	top: 0;
	height: 2px;
}

}/* for SP max-width: 800px */



/*===============================================================
	
	section_oneoff_menu
	
===============================================================*/
.section_oneoff_menu {
	padding: 5px 0;
	border-bottom: solid 1px #ccc;
}
.section_oneoff_menu .inner{
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items: center;
}
.section_oneoff_menu .title_block {
	width: 28%;
}
.section_oneoff_menu .menu_block {
	width: 72%;
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items: center;
	border-right: solid 1px #ddd;
	box-sizing: border-box;
}
.section_oneoff_menu .menu_block .item {
	width: 20%;
	border-left: solid 1px #ddd;
	box-sizing: border-box;
}
.section_oneoff_menu .menu_block .item a {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items: center;
	padding: 10px 15px;
	box-sizing: border-box;
	width: 100%;
	position: relative;
}
.section_oneoff_menu .menu_block .item a:hover {
	background: #f9f9f9;
}
.section_oneoff_menu .menu_block .item.current a::after {
	content:'';
	position:absolute;
	bottom: -5px; left: 0; right: 0;
	width:100%;
	height:2px;
	background-color: #D6000F;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {
.section_oneoff_menu .inner {
	padding: 0 10px;
}
.section_oneoff_menu .menu_block .item a {
	padding: 0.93vw 1.40vw;
}

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.section_oneoff_menu {
	padding: 0;
}
.section_oneoff_menu .inner {
	display:block;
	padding: 0;
}
.section_oneoff_menu .title_block {
	width: 100%;
	display: none;
}
.section_oneoff_menu .menu_block {
	width: 100%;
	overflow-y: scroll;
	border-right: solid 0px #ddd;
	align-items: center;
	margin-top: 0vw;
}
.section_oneoff_menu .menu_block .item {
	width: 50%;
	border-left: solid 0px #ddd;
	background: #eeeeee;
	background: -moz-linear-gradient(top,  #eeeeee 0%, #ffffff 100%);
	background: -webkit-linear-gradient(top,  #eeeeee 0%,#ffffff 100%);
	background: linear-gradient(to bottom,  #eeeeee 0%,#ffffff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#ffffff',GradientType=0 );
	min-height: 19vw;
}
.section_oneoff_menu .menu_block .item:first-child {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	align-items: center;
}
.section_oneoff_menu .menu_block .item:nth-child(even) {
	border-left: solid 1px #ddd;
}
.section_oneoff_menu .menu_block .item a {
	padding: 3vw;
	align-items: center;
}
.section_oneoff_menu .menu_block .item a:hover {
	background: none;
}
.section_oneoff_menu .menu_block .item.current a::after {
	content:'';
	position:absolute;
	bottom:auto;
	top: 0;
	width:100%;
	height:2px;
	background-color: #D6000F;
	display: none;
}
.section_oneoff_menu .menu_block .item.current a {
	color: #D6000F;
}
}/* for SP max-width: 800px */

/*-------------------------------------------------------------
	txt	
-------------------------------------------------------------*/
.section_oneoff_menu .title_block .title {
	font-size: 25px;
}
.section_oneoff_menu .menu_block .item .photo {
	width: 40%;
}
.section_oneoff_menu .menu_block .item p {
	width: 55%;
	font-size: 14px;
	line-height: 1.2;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {
.section_oneoff_menu .title_block .title {
	font-size: 2.34vw;
}
.section_oneoff_menu .menu_block .item p {
	font-size: 1.31vw;
	width: 50%;
}

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.section_oneoff_menu .title_block .title {
	font-size:4vw;
	padding-left: 0vw;
	padding: 3vw;
}
.section_oneoff_menu .menu_block .item .photo {
	width: 50%;
}
.section_oneoff_menu .menu_block .title {
	font-size:4vw;
	padding: 3vw;
}
.section_oneoff_menu .menu_block .item p {
	width: 43%;
	font-size:3.5vw;
	line-height: 1.2;
}

}/* for SP max-width: 800px */

/*===============================================================
	
	readmore
	
===============================================================*/
.readmore_txt {
	height: 5.5em;
	overflow: hidden;
	text-align: justify;
	font-size: 14px;
}
.readmore_txt img {
  max-width: 100%;
}
.readmore {
	margin-top: 20px;
	display:flex;
	flex-direction:row-reverse;
}
.readmore a {
	display: inline-block;
	position: relative;
	padding-right: 15px;
	color: #777;
	font-size: 12px;
}
.readmore a::before,
.readmore a::after {
	content:'';
	position:absolute;
	top: 0; bottom: 0; right: 0;
	margin: auto;
	width:8px;
	height:1px;
	background: #666;
	transition: all 0.3s;
}
.readmore a::after {
	transform: rotate(90deg) ;
	transition: all 0.3s;
}
.readmore_txt.opned + .readmore a::after {
	transform: rotate(0deg);
}

.readmore a:hover {
	color: #D6000F;
}
.readmore a:hover::before,
.readmore a:hover::after {
	background: #D6000F;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.readmore_txt {
	height: 18vw;
}
.readmore_txt p {
	font-size: 3.5vw;
}
.readmore {
	margin-top: 2vw;
}
.readmore a {
	font-size: 3vw;
}	
}/* for SP max-width: 800px */


/*===============================================================
	
	section_outline
	
===============================================================*/
.section_outline {
	text-align: center;
}
.section_outline .title_block .head {
	font-size: 20px;
	line-height: 1.4;
	font-weight: normal;
}
.section_outline .title_block .title {
	font-size: 25px;
	line-height: 1.8;
	font-weight: normal;
}
.section_outline .title_block .head + .title {
	margin-top: 30px;
}
.section_outline .title_block .title .l {
  display: block;
	font-size: 30px;
}
.section_outline * + .title_block {
	margin-top: 120px;
}
.section_outline .content + .title_block {
	margin-top: 200px;
}
.section_outline .title_block + .content {
	margin-top: 50px;
}
.section_outline .txt_block {
	text-align: left;
}
.section_outline .flex_container {
	justify-content: space-between;
}
.section_outline .flex_container .txt_block {
	width: calc((100% - 50px)/2);
}


/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.section_outline .title_block .head {
	font-size: 4vw;
}  
.section_outline .title_block .title {
	font-size: 5vw;
	padding: 7vw 0 0vw 0;
} 
.section_outline .title_block .head + .title {
	margin-top: 4vw;
}
.section_outline * + .title_block .title {
  padding: 15vw 0 0vw 0;
} 
.section_kod_pageheader + .section_outline .title_block:nth-child(1) .title {
	padding-top:0;
}
.section_outline .title_block .title .l {
	font-size: 6vw;
} 
.section_outline * + .title_block,
.section_outline .content + .title_block {
	margin-top: 0;
}
.section_outline .title_block + .content {
	margin-top: 8vw;
}
.section_outline .txt_block {
	margin-top: 0vw;
}
.section_outline .txt_block + .txt_block {
	margin-top: 5vw;
}
.section_outline .flex_container .txt_block {
	width: 100%;
}
}/* for SP max-width: 800px */

/*-------------------------------------------------------------
	foo	
-------------------------------------------------------------*/
.section_outline .photo + .caption {
	margin-top: 20px;
	font-size: 14px;
	line-height: 1.4;
	text-align: left;
}
.section_outline .caption + .photo {
	margin-top: 60px;
}
.section_outline .caption + .flex_container .item {
	margin-top: 60px;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.section_outline .photo + .caption {
	margin-top: 3vw;
	font-size: 3vw;
	line-height: 1.5;
}
.section_outline .caption + .photo {
	margin-top: 6vw;
}  
.section_outline .caption + .flex_container .item {
	margin-top: 6vw;
} 
  
}/* for SP max-width: 800px */

/*-------------------------------------------------------------
	section_outline_oneoff	
-------------------------------------------------------------*/
.section_outline_oneoff {
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.section_outline_oneoff .section_inner {
	padding: 8vw;
}
}/* for SP max-width: 800px */

/*===============================================================
	
	slider_thumbs
	
===============================================================*/
.slider_thumbs {
	margin-top: 50px;
}
.slider_thumbs .thumb_list {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:center;
	align-items: center;
	margin-top: -4px;
}
.slider_thumbs .thumb_list .thumb {
	width: 10%;
	margin-top: 4px;
	cursor: pointer;
	box-sizing: border-box;
}
.slider_thumbs .thumb_list .thumb:hover {
	opacity: 0.7;
	transition: all 0.3s;
}
.slider_thumbs .thumb_list .thumb img {
	width:100%; height: auto;
	padding: 0 2px;
	box-sizing: border-box;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.slider_thumbs {
	margin-top: 5vw;
	display: none;
}
.slider_thumbs .thumb_list {
	display: block;
	overflow-x: hidden;
	width: auto;
}
.slider_thumbs .thumb_list .thumb {
	width: 20vw;
	margin-top: 4px;
	cursor: pointer;
	display: inline-block;
}
.sp_images .thumb_list {
	overflow: hidden;
	width: calc(100% + 16vw);
	margin-left: -8vw;
}
.sp_images .thumb_list .thumb + .thumb {
	margin-top: 3vw;
}
	
}/* for SP max-width: 800px */

/*-------------------------------------------------------------
	.thumbnail_slider .slider .pager
-------------------------------------------------------------*/

.thumbnail_slider .slider .pager {
	position:absolute;
	top:0;
	bottom:0;
	margin:auto;
	width:30px;
	height:75px;
	z-index:5;
}
.thumbnail_slider .slider .prev {
	left: -50px;
}
.thumbnail_slider .slider .next {
	right: -50px;
}
/* タブレット以下 */
@media screen and (max-width: 1070px) {
.thumbnail_slider .slider .prev {
	left: -30px;
}
.thumbnail_slider .slider .next {
	right: -30px;
}

}	/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.thumbnail_slider .slider .prev {
	left: -7vw;
}
.thumbnail_slider .slider .next {
	right: -7vw;
}
}	/* for SP max-width: 800px */

/*-------------------------------------------------------------
	.thumbnail_slider .slider .pager a
-------------------------------------------------------------*/
.thumbnail_slider .slider .pager a {
	display:block;
	width:30px;
	height:75px;
	overflow:hidden;
	text-indent:-300%;
	position:relative;
}
.thumbnail_slider .slider .pager a:hover {
	opacity: 0.7;
}
.thumbnail_slider .slider .pager a:after {
	content:'';
	position:absolute;
	top:0; bottom:0; left:0; right:0; margin:auto;
	border-right:solid 1px #666;
	border-bottom:solid 1px #666;
	width:20px;
	height:20px;
	transform: rotate(-45deg) translate(-2px,-2px);
	transition: all .3s;
}
.thumbnail_slider .slider .prev a:after {
	transform: rotate(135deg) translate(-2px,-2px);
}
.thumbnail_slider .slider .pager a:hover:after {
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}	/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {

}	/* for SP max-width: 800px */

/*===============================================================
	
	thumbnail_slider
	
===============================================================*/
.thumbnail_slider {
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.thumbnail_slider {
	width: calc(100% + 16vw);
	margin-left: -8vw;
	overflow:hidden;
}
}/* for SP max-width: 800px */

/*-------------------------------------------------------------
	sp_slider_menu	
-------------------------------------------------------------*/
.sp_slider_menu {
	display: none;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.sp_slider_menu {
	display: block;
	margin-top: 3vw;
}
}/* for SP max-width: 800px */

/*===============================================================
	
	sp_slider_progress
	
===============================================================*/
.sp_slider_progress {
	display: none;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.sp_slider_progress {
	display: block;
	position: relative;
	width: 75%;
	margin: 0 auto;
	margin-top: 3vw;
	box-sizing: border-box;
}
.sp_slider_progress {
	margin-top: 5vw;
	position: relative;
	height: 3vw;
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items: center;
}
.sp_slider_progress .num {
	font-size: 3vw;
	line-height: 1;
	color: #D6000F;
	width: 15%;
	text-align: center;
}

.sp_slider_progress .bar,
.sp_slider_progress .progress {
	height: 1px;
}
.sp_slider_progress .progress {
	background: #ccc;
	width: 70%;
	position: relative;
	overflow: hidden;
}
.sp_slider_progress .bar {
	position: absolute;
	width: 0%;
	left: 0;
	background: #D6000F;
}	
}/* for SP max-width: 800px */

/*-------------------------------------------------------------
	collabo	
-------------------------------------------------------------*/
.collabo {
}
.collabo .item {
  position: relative;
  text-align: left;
  margin-top: 100px;
  padding-bottom: 50px;
}
.collabo .item:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: 0; left: 0;
  width: 100vw;
  height: 350px;
  background: #f9f9f9;
  margin-left: calc((100vw - 100%)/-2);
}
.collabo .item .head {
	font-size: 25px;
	line-height: 1.4;
	font-weight: normal;
	letter-spacing: 0.2em;
}
.collabo .item .box {
  position: relative;
  z-index: 2;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
  margin-top: 50px;
}
.collabo .item .left {
	width: 23%;
}
.collabo .item .right {
	width: 70%;
}
.collabo .item .left p {
	margin-top: 30px;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {  
.collabo .item:after {
  height: 25vw;
}  

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.collabo .item {
  margin-top: 8vw;
  padding-bottom: 8vw;
}  
.collabo .item:after {
  height: 2px;
}  
.collabo .item .head {
	font-size: 5vw;
}
.collabo .item .box {
  margin-top: 5vw;
}
.collabo .item .left {
  display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
}
.collabo .item .right {
	width: 100%;
  margin-top: 8vw;
}
.collabo .item .left .img {
  width: 38%;
}  
.collabo .item .left p {
  width: 58%;
  font-size: 3.5vw;
	margin-top: 0;
}

}/* for SP max-width: 800px */

/*-------------------------------------------------------------
	concept_sketch_slider	
-------------------------------------------------------------*/
.concept_sketch_slider {
	position: relative;
  padding-bottom: 50px;
}
.concept_sketch_slider > * {
	position: relative;
  z-index: 2;
}
.concept_sketch_slider:after {
	content: '';
  position: absolute;
  z-index: 0;
  bottom: 0; left: 0;
  width: 100vw;
  height: 350px;
  background: #fff;
  margin-left: calc((100vw - 100%)/-2);
}
.concept_sketch_slider .carousel_slider {
	padding: 80px;
  background: #CECECE;
  box-sizing: border-box;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {
.concept_sketch_slider:after {
  height: 25vw;
}
.concept_sketch_slider .carousel_slider {
	padding: 50px;
}  

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.concept_sketch_slider {
	padding-bottom: 8vw;
}  
.concept_sketch_slider:after {
	height: 40vw;
}
.concept_sketch_slider .carousel_slider {
	padding: 0;
  background: none;
}

}/* for SP max-width: 800px */

/*===============================================================
	
	fig_section
	
===============================================================*/
.fig_section { 
	position: relative;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
	background-color: #000;
	z-index: 100;
}

.fig_section img {
	display:none;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {
.fig_section {
	background:#000;
}
.fig_section img {
	display:block;
	background:none;
	width:100%;
	height:auto;
}
}	/* for tablet max-width: 960px */


/*===============================================================
	
	section_contact_btn
	
===============================================================*/
.section_contact_btn {
	background: #D6000F;
	padding: 80px 0;
}
.section_contact_btn p {
	color: #fff;
}
.section_contact_btn p + p {
	margin-top: 10px;
}
.section_contact_btn .btn_detail {
	margin-top: 0;
}
.section_contact_btn * + .btn_detail {
	margin-top: 30px;
}
.section_contact_btn .btn_detail a {
	color: #D6000F;
	background: #fff;
	font-weight: normal;
}
.section_contact_btn .btn_detail a:hover {
	color: #000;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {
.section_contact_btn {
	padding: 80px 50px;
}  
.section_contact_btn .btn_detail {
	width: 400px;
}  

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.section_contact_btn {
	padding: 8vw;
}
.section_contact_btn p {
	font-size: 3.5vw;
}
.section_contact_btn p + p {
	margin-top: 4vw;
}  
.section_contact_btn .btn_detail {
	width: 100%;
}
.section_contact_btn * + .btn_detail {
	margin-top: 5vw;
}  
  
}/* for SP max-width: 800px */
	
	

/*===============================================================
	
	section_kod_pageheader
	
===============================================================*/
.section_kod_pageheader .inner {
	padding: 80px 0;
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items: flex-start;
}
.section_kod_pageheader .title {
	font-size: 22px;
	line-height: 1.4;
}
.section_kod_pageheader .subpage {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
}
.section_kod_pageheader .subpage li {
	margin-right: 50px;
	position: relative;
	padding-bottom: 5px;
}
.section_kod_pageheader .subpage li:last-child {
	margin-right: 0;
}
.section_kod_pageheader .subpage .current::after {
	content:'';
	position:absolute;
	bottom: 0; left: 0; right: 0;
	margin: auto;
	width:100%;
	height:2px;
	background: #D6000F;
}
.section_kod_pageheader .txt {
	margin-top: 40px;
}
.section_kod_pageheader_center .inner {
	justify-content: center;
}
.section_kod_pageheader_center .subpage li {
	margin: 0 25px;
}

/* タブレット以下 */
@media screen and (max-width: 1300px) {
.section_kod_pageheader .inner {
	padding: 50px 100px;
}
.section_kod_pageheader .subpage li {
	margin-right: 30px;
}
.section_kod_pageheader_center .subpage li {
	margin: 0 15px;
}

}/* for tablet max-width: 1070px */

/* タブレット以下 */
@media screen and (max-width: 1070px) {
.section_kod_pageheader .inner {
	padding: 30px 50px;
}
.section_kod_pageheader .subpage li {
	margin-right: 20px;
}
.section_kod_pageheader_center .subpage li {
	margin: 0 10px;
}
.section_kod_pageheader .title {
	font-size: 22px;
}
}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.section_kod_pageheader {
	border-bottom: solid 0px #ddd;
	text-align: center;
}
.section_kod_pageheader .inner {
	padding: 8vw;
	flex-direction:column;
}
.section_kod_pageheader .title {
	font-size: 5vw;
	width: 100%;
}
.section_kod_pageheader .subpage {
	margin-top: 2vw;
/*	overflow: scroll;*/
	display: block;
	text-align: center;
	width: 100%;
}
.section_contact_btn + .section_kod_pageheader .subpage {
	display: block;
}
.section_kod_pageheader .subpage li:last-child,
.section_kod_pageheader .subpage li {
	font-size: 3vw;
	display: inline-block;
	margin: 0 2vw;
	margin-top: 4vw;
	padding-bottom: 1vw;
}
.section_kod_pageheader_center .subpage {
	margin-top: 0;
}   
.section_kod_pageheader_center .subpage li {
	margin: 0 2vw;
}  
.section_kod_pageheader .txt {
	margin-top: 5vw;
	text-align: left;
}
.section_kod_pageheader .txt p {
	font-size: 3.5vw;
}
}/* for SP max-width: 800px */

/*-------------------------------------------------------------
	sp_footer_loaclnav	
-------------------------------------------------------------*/

.sp_footer_loaclnav {
	display: none;
}


/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.local_category_nav .subpage {
	display: none;
}
.local_category_nav.notitle {
	display: none;
}

.sp_footer_loaclnav {
	display: block;
}
.sp_footer_loaclnav {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
	border-top: solid 1px rgba(0,0,0,0.1);
}
.sp_footer_loaclnav li {
	width: 50%;
	text-align: center;
}
.sp_footer_loaclnav li a {
	display: block;
	color: #000;
	font-size: 3.5vw;
	line-height: 1.2;
	padding: 4vw 0;
	border-bottom: solid 1px rgba(0,0,0,0.1);
	border-right: solid 1px rgba(0,0,0,0.1);
}
.sp_footer_loaclnav li.current a {
	display: block;
	color: #fff;
	background: #D6000F;
}


}/* for SP max-width: 800px */
/*===============================================================
	
	project_headline
	
===============================================================*/
.project_headline {
	background: #fff;
	text-align: left;
	padding: 30px 0 0 0;
}
.project_headline .title {
	font-size: 20px;
	line-height: 1.4;
}
.project_headline .title .name {
	padding-left: 50px;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.project_headline {
	padding: 10vw 0 2vw 0;
	text-align: center;
}
.project_headline .title {
	font-size: 2.8vw;
}
.project_headline .title .name {
	padding-left: 0;
	display: block;
	margin-top: 1.5vw;
	font-size: 4vw;
}
}/* for SP max-width: 800px */



/*===============================================================
	
	section_works_detail
	
===============================================================*/
.section_works_detail {
	padding: 50px 0;
}
.section_works_detail .txt_block .title {
	font-size: 25px;
}
.section_works_detail .txt_block .subtitle {
	font-size: 18px;
	margin-top: 5px;
}
.section_works_detail .txt_block .status {
	margin-top: 30px;
}
.section_works_detail .txt_block .status li {
	display: inline-block;
	margin-right: 20px;
	font-size: 14px;
	line-height: 1.5;
}
.section_works_detail .txt_block .readmore_txt {
	margin-top: 30px;
}

.section_works_detail .awards {
	margin-top: 5px;
}
/* タブレット以下 */
@media screen and (max-width: 1070px) {
.section_works_detail {
	padding: 30px 0;
}
.section_works_detail .txt_block .title {
	font-size: 2.34vw;
}
.section_works_detail .txt_block .subtitle {
	font-size: 1.68vw;
}
.section_works_detail .txt_block .status {
	margin-top: 2.80vw;
}
.section_works_detail .txt_block .status li {
	margin-right: 1.87vw;
	font-size: 1.31vw;
}
.section_works_detail .txt_block .readmore_txt {
	margin-top: 2.80vw;
}


}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.section_works_detail {
	padding: 0;
}
.section_works_detail .txt_block {
	padding: 8vw;
}
.section_works_detail .txt_block .title {
	font-size:6vw;
}
.section_works_detail .txt_block .subtitle {
	font-size:4vw;
	margin-top: 1vw;
}
.section_works_detail .txt_block .status {
	margin-top: 2vw;
}
.section_works_detail .txt_block .status li {
	margin-right: 3vw;
	font-size:3vw;
}
.section_works_detail .txt_block .readmore_txt {
	margin-top: 5vw;
}
.section_works_detail .awards {
	margin-top: 2vw;
	line-height: 1.5;
}
}/* for SP max-width: 800px */


/*===============================================================
	
	txt_slider_block_wrp
	
===============================================================*/
.txt_slider_block_wrp {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
}
.txt_slider_block_wrp .txt_block {
	width: 40%;
	box-sizing: border-box;
	padding: 0 60px;
}
.txt_slider_block_wrp .slider_block {
	width: 60%;
	overflow: hidden;
} 
.txt_slider_block_wrp .carousel_slider {
	width: -webkit-calc(100% + 150px); /*左側のちょい見えスライダーを隠す*/
	width: calc(100% + 150px);
  margin-left: -150px;
} 
.txt_slider_block_wrp .carousel_slider.noslider {
	width: 100%; 
	margin-left: 0;
} 
.txt_slider_block_wrp .carousel_slider .slider {
  margin: 0 ;
}
.txt_slider_block_wrp .carousel_slider .slick-list {
  margin-right: -30px;  /* ガター分ネガティブマージン */
}
.txt_slider_block_wrp .carousel_slider .slick-slide {
  margin-right: 30px;  /* ガター */
}
/* タブレット以下 */
@media screen and (max-width: 1200px) {
.txt_slider_block_wrp .txt_block {
	width: 30%;
	padding: 0 50px;
}
.txt_slider_block_wrp .slider_block {
	width: 70%;
} 
}/* for tablet max-width: 1070px */

/* タブレット以下 */
@media screen and (max-width: 1070px) {
.txt_slider_block_wrp .txt_block {
	width: 30%;
	padding: 0 30px;
}
.txt_slider_block_wrp .slider_block {
	width: 70%;
} 
}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.txt_slider_block_wrp {
	flex-direction:column;
}
.txt_slider_block_wrp .txt_block {
	width: 100%;
	padding: 8vw;
}
.txt_slider_block_wrp .slider_block,
.txt_slider_block_wrp .carousel_slider {
	width: 100%;
  margin-left: 0;
} 
.section_works_detail .sp_ui_block {
	padding: 8vw;
	padding-top: 0vw;
} 
.txt_slider_block_wrp .carousel_slider .slider {
  margin: 0 ;
}
.txt_slider_block_wrp .carousel_slider .slick-list {
  margin-right: 0;  /* ガター分ネガティブマージン */
}
.txt_slider_block_wrp .carousel_slider .slick-slide {
  margin-right: 0;  /* ガター */
}
}/* for SP max-width: 800px */

/*-------------------------------------------------------------
	.carousel_slider .slider .pager
-------------------------------------------------------------*/
.slider_block .carousel_slider .slider .pager {
	position:absolute;
	top:0;
	bottom:0;
	margin:auto;
	width:8.0%;
	height:100%;
	z-index:5;
	/*mix-blend-mode: overlay;*/
}
.slider_block .carousel_slider .slider .pager a {
	width:100%;
	height:100%;
	box-sizing: border-box;
	background: rgba(255,255,255,0);
	opacity: 0;
}
.slider_block .carousel_slider .slider .pager a:hover {
	opacity: 0.7;
	background: rgba(255,255,255,0);
}
.slider_block .carousel_slider .slider .pager a::after {
	width: 30px;
	height: 30px;
	border-width: 1px;
}
.slider_block .carousel_slider .slider .prev {
	display: none;
}
.slider_block .carousel_slider .slider .next {
	right: 20px;
}
/* タブレット以下 */
@media screen and (max-width: 1070px) {

}	/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.slider_block .carousel_slider .slider .next {
	display: none;
}  

}	/* for SP max-width: 800px */


/*===============================================================
	
	works_detail_pager
	
===============================================================*/
.works_detail_pager {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
	margin-top: 80px;
}
.works_detail_pager .btn_viewmore {
	width: 300px;
	margin: 0;
}
.works_detail_pager .btn_viewmore a {
	border: solid 1px #777;
	color: #000;
}
.works_detail_pager .btn_viewmore a:hover {
	border: solid 1px #D6000F;
	color: #fff;
}
.works_detail_pager .pager {
	width: 63px;
}
.works_detail_pager .pager a {
	width: 63px;
	height: 63px;
	display: block;
	position: relative;
	white-space: nowrap;
	overflow: hidden;
	text-indent: 200%;
	border: solid 1px #777;
	box-sizing: border-box;
}
.works_detail_pager .pager a::after {
	content:'';
	position:absolute;
	top: 0; bottom: 0; left: 0; right: 0;
	margin: auto;
	border:solid 1px #666;
	width:12px;
	height:12px;
	border-top:none;
	border-left:none;
	transform: rotate(-45deg) translate(-3px,-3px);
	transition: all 0.3s;
}
.works_detail_pager .prev a::after {
	transform: rotate(135deg) translate(-3px,-3px);
}
.works_detail_pager .pager a:hover {
	border: solid 1px #D6000F;
	background: #D6000F;
}
.works_detail_pager .pager a:hover::after {
	border-color: #fff;
}
/* タブレット以下 */
@media screen and (max-width: 1070px) {
.works_detail_pager {
	padding: 0 30px;
}
.works_detail_pager .pager {
	width: 42px;
}
.works_detail_pager .pager a {
	width: 42px;
	height: 42px;
}
}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.works_detail_pager {
	padding: 8vw;
	margin-top: 0;
}
.works_detail_pager .btn_viewmore {
	width: 60%;
	margin: 0;
}
.works_detail_pager .pager {
	width: 12vw;
}
.works_detail_pager .pager a {
	width: 12vw;
	height: 12vw;
}
}/* for SP max-width: 800px */


/*===============================================================
	
	section_works_list
	
===============================================================*/
.section_works_list .content_worklist .title {
	font-size: 22px;
	line-height: 1.4;
	border-bottom: solid 1px #666;
	padding-bottom: 10px;
}
.worklist {
	margin-top: 30px;
}
.worklist li {
	position: relative;
}
.worklist li a {
	font-size: 16px;
	line-height: 1.4;
	padding: 10px;
	padding-left: 25px;
	position: relative;
	display: block;
	z-index: 1;
}
.worklist li a::after {
	content:'';
	position:absolute;
	top: 0; bottom: 0; left: 10px;
	margin: auto;
	border:solid 1px #000;
	width:6px;
	height:6px;
	border-top:none;
	border-left:none;
	transform: rotate(-45deg);
	transition: all 0.3s;
}
.worklist li a:hover {
	background: #f9f9f9;
}
.worklist li a:hover::after {
	border-color:  #D6000F;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.section_works_list .content_worklist .title {
	font-size:6vw;
	padding-bottom: 3vw;
}
.worklist {
	margin-top: 0vw;
}
.worklist li {
	margin-top: 5vw;
}
.worklist li a {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items: center;
	font-size:3.5vw;
	padding: 0vw;
	z-index: 1;
	color:transparent;
}
.worklist li a span {
	color: #000;
	display: block;
	width: 100%;
}
.worklist li a:hover span {
	color: #D6000F;
}
.worklist li a .category {
	font-size: 3vw;
	margin-top: -1.2em;
	color: #666;
}	
.worklist li a::after {
	display: none;
}
.worklist li a:hover {
	background: #fff;
}
.worklist li a:hover::after {
	border-color:  #D6000F;
}

}/* for SP max-width: 800px */								

/*-------------------------------------------------------------
	thumbnail	
-------------------------------------------------------------*/
.worklist li .thumbnail {
	opacity: 0;
	transition: all 0.3s;
	position: absolute;
	width: 20vw;
	max-width: 300px;
	min-width: 200px;
	bottom: 80px;
	left: -10px;
	pointer-events: none;
	box-shadow: 5px 5px 10px 0 rgba(0,0,0,0.1);
}
.worklist li .thumbnail img {
	width:100%; height: auto;
	border: solid 5px #D6000F;
	box-sizing: border-box;
	position: relative;
}
.worklist li .thumbnail::after {
	content:'';
	position:absolute;
	bottom: -18px; left: 0; right: 0;
	margin: auto;
	width:10px;
	height:10px;
	border-top: 5px solid #D6000F;
	border-bottom: 5px solid transparent;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-width: 10px;
	transform: translate(3px,0);
	box-sizing:border-box;
	transition:all .3s;
	z-index: 11;
}
.worklist li a:hover .thumbnail {
	display: block;
	opacity: 1;
	z-index: 10;
	bottom: 50px;
}
/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.worklist li .thumbnail {
	position: static;
	width: 40%;
	min-width: inherit;
	max-width: inherit;
	opacity: 1;
	box-shadow: 5px 5px 0 0 rgba(0,0,0,0.0);
}
.worklist li .txt {
	position: static;
	width: 56%;
}
.worklist li .thumbnail::after {
	display: none;
}
.worklist li .thumbnail img {
	border: solid 0 #D6000F;
}
}/* for SP max-width: 800px */


/*===============================================================
	
	fig_label
	
===============================================================*/
.fig_label {
}
.fig_label .title {
	display: inline-block;
	font-size: 20px;
	line-height: 1.5;
	padding: 10px 40px;
	border: solid 1px #999;
}
.fig_label + * {
	margin-top: 50px;
}
/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.fig_label + * {
	margin-top: 8vw;
	width: 100%;
}
.fig_label .delay_block {
	width: 100%;
	display: block;
}
.fig_label .title {
	font-size: 4vw;
	padding: 1.5vw 3vw;
	width: 100%;
	text-align: center;
	display: block;
	box-sizing: border-box;
}
}/* for SP max-width: 800px */

/*===============================================================
	
	fig_pyramid
	
===============================================================*/

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
  
}/* for SP max-width: 800px */

/*===============================================================
	
	content_brand_pyramid
	
===============================================================*/
.content_brand_pyramid .delay_block {
  display: block !important;
}
.pyramid_detail {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.fig_pyramid {
	overflow: hidden;
	width: calc(100% + 20vw);
	margin-left: -17vw;
}  
.content_pyramid_detail {
  width: calc(100% + 8vw) !important;
  margin-left: -4vw !important;
}  
  
}/* for SP max-width: 800px */

/*-------------------------------------------------------------
	label_block	
-------------------------------------------------------------*/
.pyramid_detail .label_block {
  display:flex;
	flex-flow: column;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items: center;
	width: 160px;
	padding: 30px 0;
	box-sizing: border-box;
	background: #d6000f;
	background: -moz-linear-gradient(top,  #d6000f 0%, #fd8a92 100%);
	background: -webkit-linear-gradient(top,  #d6000f 0%,#fd8a92 100%);
	background: linear-gradient(to bottom,  #d6000f 0%,#fd8a92 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d6000f', endColorstr='#fd8a92',GradientType=0 );
}
.pyramid_detail .label_block .label {
	width: 120px;
	height: 120px;
	border: solid 1px #fff;
  border-radius: 50%;
	text-align: center;
}
.pyramid_detail .label_block .label .txt {
	font-size: 25px;
	line-height: 120px;
	color:#fff;
}
.pyramid_detail .label_block .between {
	width: 4px;
	flex: 1;
	background: #fff;
	padding: 0 0;
	margin: 30px 0; 
	position: relative;
}
.pyramid_detail .label_block .between::after ,
.pyramid_detail .label_block .between::before {
	content:'';
	position:absolute;
	left: 0; right: 0;
	margin: auto;
	width:20px;
	height:60px;
	border-top: 30px solid transparent;
	border-bottom: 30px solid transparent;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	box-sizing:border-box;
}
.pyramid_detail .label_block .between::after {
	top: -40px; left: -8px;
	border-bottom: 30px solid #fff;
	box-sizing:border-box;
}
.pyramid_detail .label_block .between::before {
	bottom: -40px; left: -8px;
	border-top: 30px solid #fff;
	box-sizing:border-box;
}
/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.pyramid_detail .label_block {
	width: 10%;
	padding: 2vw;
}  
.pyramid_detail .label_block .label {
	width: 100%;
	height: 15%;
  border-radius: 0;
}
.pyramid_detail .label_block .label .txt {
	font-size: 3vw;
	line-height: 1;
  transform: rotate(-90deg) translate(-150%,-0%);
}
.pyramid_detail .label_block .between {
	width: 0.5vw;
	margin: 4vw 0; 
}
.pyramid_detail .label_block .between::after ,
.pyramid_detail .label_block .between::before {
	width: 3vw;
	height: 4vw;
	border-top: 4vw solid transparent;
	border-bottom: 4vw solid transparent;
	border-left: 1.5vw solid transparent;
	border-right: 1.5vw solid transparent;
}
.pyramid_detail .label_block .between::after {
	top: -5vw; left: -1.2vw;
	border-bottom: 4vw solid #fff;
	box-sizing:border-box;
}
.pyramid_detail .label_block .between::before {
	bottom: -5vw; left: -1.2vw;
	border-top: 4vw solid #fff;
	box-sizing:border-box;
}  

}/* for SP max-width: 800px */

/*-------------------------------------------------------------
	detail_block	
-------------------------------------------------------------*/
.pyramid_detail .detail_block {
  flex: 1;
	text-align: left;
	border-top: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
	box-sizing: border-box;
} 
.pyramid_detail .detail_block .item {
	padding: 30px;
  box-sizing: border-box;
}
.pyramid_detail .detail_block .item + .item {
	border-top: solid 1px #ccc;
}
.pyramid_detail .detail_block .item .title {
	font-size: 22px;
  line-height: 1.2;
}
.pyramid_detail .detail_block .item .title .s {
  display: block;
  font-size: 18px;
	margin-top: 10px;
}
.pyramid_detail .detail_block .item .ja {
  width: 400px;
	font-size: 22px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: solid 1px #ccc;
}
.pyramid_detail .detail_block .item .ja .s {
  display: block;
  font-size: 18px;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.pyramid_detail .detail_block .item {
	padding: 4vw;
  padding-right: 0;
} 
.pyramid_detail .detail_block .item .title {
	font-size: 3vw;
  padding-right: 40%;
}
.pyramid_detail .detail_block .item .title .s {
  font-size: 2.5vw;
	margin-top: 2vw;
}
.pyramid_detail .detail_block .item .ja {
  width: auto;
	font-size: 3vw;
  margin-top: 2vw;
  padding-top: 2vw;
  padding-right: 40%;
}
.pyramid_detail .detail_block .item .ja .s {
  font-size: 2.5vw;
}  

}/* for SP max-width: 800px */

/*-------------------------------------------------------------
	photo_block	
-------------------------------------------------------------*/
.pyramid_detail .photo_block {
	position: absolute;
  top: 0; right: 0;
	width: 20%;
}
.pyramid_detail .photo_block .photo {
  margin-top: 30px;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {  
.pyramid_detail .photo_block {
  width: 30%;
}
.pyramid_detail .photo_block .photo {
  margin-top: 4vw;
}  
  
}/* for SP max-width: 800px */

/*===============================================================
	
	content_development
	
===============================================================*/
.content_development {
}
.fig_mtops .delay_block {
  display: block;
}
.development_detail {
  border-bottom: solid 1px #ccc;
}
.development_detail .item {
  display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 50px 0;
  border-top: solid 1px #ccc;
  box-sizing: border-box;
}
.development_detail .item .head {
  position: relative;
  width: 360px;
  font-size: 22px;
  font-weight: normal;
}
.development_detail .item .head:before {
  content: '';
  position: absolute;
  top: 0; right: 50px;
  margin: auto;
  width: 30px;
  height: 10px;
  border-bottom: 1px solid #707070;
  border-right: 1px solid #707070;
  transform: skewX(55deg);
}
.development_detail .item .head:after {
  content: '';
  position: absolute;
  bottom: 0; right: 50px;
  margin: auto;
  width: 30px;
  height: 10px;
  border-top: 1px solid #707070;
  border-right: 1px solid #707070;
  transform: skewX(-55deg);
}
.development_detail .item .txt {
  flex: 1;
}
.development_detail .item .txt p {
  font-size: 22px;
}
.development_detail .item .txt .m {
  font-size: 20px;
}
.development_detail .item .txt .s {
  font-size: 16px;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.development_detail {
}
.fig_mtops {
  width: calc(100% + 8vw);
  margin-left: -4vw;
}
.development_detail .item {
  padding: 4vw 0;
}
.development_detail .item .head {
  width: 100%;
  font-size: 4.5vw;
  font-weight: normal;
}
.development_detail .item .head:before,
.development_detail .item .head:after {
  display: none;
}
.development_detail .item .txt {
  margin-top: 2vw;
}
.development_detail .item .txt p {
  font-size: 3.5vw;
}
.development_detail .item .txt .m {
  font-size: 3vw;
}   
.development_detail .item .txt .s {
  font-size: 2.5vw;
} 

}/* for SP max-width: 800px */


/*-------------------------------------------------------------
	content_brand_consulting	
-------------------------------------------------------------*/
.content_brand_consulting {
}
.fig_consulting .delay_block {
  display: block;
}
.consulting_detail {
}
.consulting_detail .flex_container {
  margin-top: -30px;
}
.consulting_detail .item {
  margin-top: 30px;
}
.consulting_detail .item .inner {
  width: 100%;
  height: 100%;
  padding: 30px 30px 50px;
  border: solid 1px #ccc;
  box-sizing: border-box;
  background: #fff;
}
.consulting_detail .item .head {
  height: 70px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
  align-items: center;
  font-size: 22px;
  line-height: 35px;
  font-weight: normal;
  padding-bottom: 20px;
  border-bottom: solid 1px #ccc;
}
.consulting_detail .item p {
  text-align: left;
  margin-top: 20px;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.fig_consulting {
  width: calc(100% + 8vw);
  margin-left: -4vw;
}  
.consulting_detail .flex_container {
  margin-top: -6vw;
}
.consulting_detail .item {
  margin-top: 6vw;
}
.consulting_detail .item .inner {
  padding: 4vw;
}  
.consulting_detail .item .head {
  height: auto;
  font-size: 4.5vw;
  line-height: 1.5;
  padding-bottom: 1.5vw;
  
}
.consulting_detail .item p {
  font-size: 3.5vw;
  margin-top: 3vw;
}  

}/* for SP max-width: 800px */


/*-------------------------------------------------------------
	hoge	
-------------------------------------------------------------*/

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {

}/* for SP max-width: 800px */

/*===============================================================
	
	メールフォーム
	
===============================================================*/
/*-------------------------------------------------------------
	form_section	
-------------------------------------------------------------*/
.form_section {
	margin: 0 auto;
	padding: 50px 0;
}
.form_section .headline .title {
	font-size: 25px;
	line-height: 1.4;
	font-weight: bold;
}
/* タブレット以下 */
@media screen and (max-width: 1030px) {
.form_section {
	width: 100%;
	margin: 0 auto;
	padding: 50px;
	box-sizing: border-box;
}
}	/* for tablet max-width: 1030px */

/* SP向けレイアウトの指定：～736px */
@media only screen and (max-width: 736px) {
.form_section {
	padding: 4vw;
}
.form_section .headline .title {
	font-size: 6vw;
}	
	
}	/* for SP max-width: 736px */

/*-------------------------------------------------------------
	.txt 	
-------------------------------------------------------------*/
.form_section .txt {
	margin-top: 30px;
}
.form_section .txt p {
}
.form_section .txt p + p {
	margin-top: 20px;
}


/* タブレット以下 */
@media screen and (max-width: 1030px) {
	
}	/* for tablet max-width: 1030px */

/* SP向けレイアウトの指定：～736px */
@media only screen and (max-width: 736px) {
.form_section .txt {
	margin-top: 4vw;
}
.form_section .txt p {
	font-size: 4vw;
}
	
}	/* for SP max-width: 736px */

/*-------------------------------------------------------------
	form	
-------------------------------------------------------------*/
.form_content {
	font-size: 16px;
	text-align: left;
	margin-top: 30px;
	border-top: solid 1px #ccc;
	/*border-bottom: solid 1px #fff;*/
}

/* タブレット以下 */
@media screen and (max-width: 1030px) {
	
}	/* for tablet max-width: 1030px */

/* SP向けレイアウトの指定：～736px */
@media only screen and (max-width: 736px) {
.form_content {
	font-size: 4vw;
	margin-top: 4vw;
}	
	
}	/* for SP max-width: 736px */


/*-------------------------------------------------------------
	form dl	
-------------------------------------------------------------*/
.form_content dl {
	margin: 0;
	/*border-top:solid 1px #fff;*/
	border-bottom: solid 1px #ccc;
}
.form_content dt {
	font-size: 16px;
	line-height: 20px;
	font-weight: bold;
	padding: 40px 0 20px;
	margin-right: 2%;
}
.form_content dt span {
	padding-left: 3px;
}
.form_content dd {
	float: right;
	width: 100%;
	font-size: 14px;
	line-height: 30px;
	padding: 0 0 45px;
}
.form_content .red {
	color: #D6000F;
	font-size:small;
	font-weight: normal;
	padding: 0 0.2em;
}

/* タブレット以下 */
@media screen and (max-width: 1030px) {
	
}	/* for tablet max-width: 1030px */

/* SP向けレイアウトの指定：～736px */
@media only screen and (max-width: 736px) {
.form_content dt {
	float: none;
	width: 100%;
	font-size: 4vw;
	line-height: 1.6;
	padding: 3vw 0 0 0;
}
.form_content dd {
	float: left;
	width: 100%;
	font-size: 4vw;
	line-height: 1.6;
	padding: 1.5vw 0 3vw 0;
}
.form_content .red {
	font-size: 2.5vw;
}
}	/* for SP max-width: 736px */


/*-------------------------------------------------------------
	テキスト入力
-------------------------------------------------------------*/
.txtinput {
	vertical-align: bottom;
	width: 100%;
	-webkit-appearance: none;
	outline: 0;
	font-size:14px;
	line-height: 1.6;
	margin: 0;
	padding: 10px;
	border: solid 1px #eee;
	border-radius: 3px;
	box-sizing: border-box;
	transition: all 0.1s linear;
	background: #f9f9f9;
}
.txtinput_postal {
	width: 150px;
}
.txtinput:focus,
.txtinput_postal:focus {
	border-color: #999;
}
/* タブレット以下 */
@media screen and (max-width: 1030px) {
	
}	/* for tablet max-width: 1030px */

/* SP向けレイアウトの指定：～736px */
@media only screen and (max-width: 736px) {
.txtinput{
	font-size: 4vw;
	padding: 3vw;
}
}	/* for SP max-width: 736px */

/*-------------------------------------------------------------
	ラジオボタン
-------------------------------------------------------------*/
.radio li input {
	width: auto;
  display: none;
  border: 0;
  margin: 0;
}
.radio li {
	padding: 0;
}
.radio li + li {
	margin-top: 10px;
}
/*　ラジオボタンの装飾　*/
.radio li label {
	display: inline-block;
	vertical-align: middle; 
	position: relative;
	font-size: 14px;
	line-height: 20px;
	padding-left: 24px;
	cursor: pointer; 
}
.radio li label:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 16px;
	height: 16px;
	background: #fff;
	border: 1px solid #333;
	border-radius: 50%;
	box-sizing: border-box;
}
.radio li label:after {
  content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 4px;
	margin: auto;
	width: 8px;
	height: 8px;
	background: #333;
	border-radius: 50%;
	transition: all 0.1s linear;
	transform: scale(0);
}
.radio li input:checked + label:after {
	transform: scale(1);
}

/* タブレット以下 */
@media screen and (max-width: 1030px) {
	
}	/* for tablet max-width: 1030px */

/* SP向けレイアウトの指定：～736px */
@media only screen and (max-width: 736px) {
.radio li label {
	font-size: 4vw;
	line-height: 1.5;
}
.radio li + li {
	margin-top: 3vw;
}
}	/* for SP max-width: 736px */

/*-------------------------------------------------------------
	チェックボックス
-------------------------------------------------------------*/
.checkbox li {
	float: left;
	width: 33.3333%;
	padding: 0;
}
.checkbox li:nth-child(4),
.checkbox li:nth-child(5),
.checkbox li:nth-child(6) {
	margin-top: 10px;
}
.agreebox {
	font-size: 14px; 
	line-height: 20px;
	text-align: center;
	padding-top: 20px;
}
.checkbox li input,
.agreebox input {
	width: auto;
	display: none;
  border: 0;
  margin: 0;
}
/*　チェックボックスの装飾　*/
.checkbox li label,
.agreebox label {
	display: inline-block;
	vertical-align: middle; 
	position: relative;
	font-size: 14px; 
	line-height: 20px;
	padding-left: 24px;
	cursor: pointer;
}
.checkbox li label:before,
.agreebox label:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 16px;
	height: 16px;
	background: #fff;
	border-radius: 10%;
	border: 1px solid #333;
	box-sizing: border-box;
}
.checkbox li label:after,
.agreebox label:after {
  content: "";
	position: absolute;
	top: -4px;
  left: 5px;
	margin: auto;
  width: 6px;
  height: 14px;
  border-right: 2px solid transparent;
  border-bottom: 2px solid transparent;
  transform: rotate(40deg);
	transition: border-bottom-color, border-right-color .2s linear;
}
.checkbox li input:checked + label:after,
.agreebox input:checked + label:after {
	border-color: #333;
}

/* タブレット以下 */
@media screen and (max-width: 1030px) {

}	/* for tablet max-width: 1030px */

/* SP向けレイアウトの指定：～736px */
@media only screen and (max-width: 736px) {
.checkbox li {
	width: 100%;
}	
.checkbox li + li {
	margin-top: 3vw;
}
.checkbox li label,
.agreebox label {
	font-size: 4vw; 
}	
.agreebox {
	font-size: 4vw; 
	text-align: left;
	padding-top: 3vw;
}

}	/* for SP max-width: 736px */


/*-------------------------------------------------------------
	.セレクト 
-------------------------------------------------------------*/
.select {
	background: #fff;
}
.select option {
	color: #333;
	background: #fff;
}
.select optgroup.area {
	color: #333;
	background: #eee;
}
/*	 セレクタの装飾 */
.select_wrap {
	position: relative;
	overflow: hidden;
	display: inline-block;
	min-width: 30em;
	color: #333;
	background-color: #fff;
	background-image: -webkit-linear-gradient(top, #fff 0%, #eee 100%);
	background-image: linear-gradient(top, #fff 0%, #eee 100%);
	border: 1px solid #ddd;
	border-radius: 3px;
	box-sizing: border-box;
	transition: all 0.1s linear;
}
.select_wrap:hover {
	border: 1px solid #999;
}
.select_wrap2 {
	min-width: 20em;
}
.select_wrap3 {
	min-width: 10em;
	margin-right: 5px;
}
.select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: relative;
	z-index: 2;
	display: block;
	width: 200%;
	/* fallback non calc support */
	width: calc(100% + 5em);
	margin: 0;
	padding: 10px;
	font-size: 14px;
	line-height: 1.6;
	background: transparent;
	border: 0;
	outline: none;
	cursor: pointer; 
}
.select_wrap:after {
	content: '';
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 5px;
	height: 5px;
	border-top: 4px solid rgba(0,0,0,0.5);
	border-right: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 4px solid transparent;
	box-sizing: border-box;
}
.select_wrap:before {
	content: '';
	position: absolute;
	top: 10px;
	right: 10px;
	width: 5px;
	height: 5px;
	border-top: 4px solid transparent;
	border-right: 4px solid transparent;
	border-bottom: 4px solid rgba(0,0,0,0.5);
	border-left: 4px solid transparent;
	box-sizing: border-box;
}

/* タブレット以下 */
@media screen and (max-width: 1030px) {
	
}	/* for tablet max-width: 1030px */

/* SP向けレイアウトの指定：～736px */
@media only screen and (max-width: 736px) {
/*	 セレクタの装飾 */
.select_wrap {
	min-width: auto;
	width: 100%;
	padding: 0;
	margin: 0;
}
.select_wrap + .select_wrap {
	margin-top: 10px;
}	
.select {
	font-size: 4.5vw;
	padding: 10px;
}
.select_wrap:after {
	content: '';
	position: absolute;
	bottom: 8px;
	right: 10px;
	width: 5px;
	height: 5px;
	border-top: 4px solid rgba(0,0,0,0.5);
	border-right: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 4px solid transparent;
	box-sizing: border-box;
}
.select_wrap:before {
	content: '';
	position: absolute;
	top: 8px;
	right: 10px;
	width: 5px;
	height: 5px;
	border-top: 4px solid transparent;
	border-right: 4px solid transparent;
	border-bottom: 4px solid rgba(0,0,0,0.5);
	border-left: 4px solid transparent;
	box-sizing: border-box;
}
}	/* for SP max-width: 736px */


/*-------------------------------------------------------------
	サブミット
-------------------------------------------------------------*/
.submit {
	padding: 40px 0;
	margin: 0;
}
.submit input {
	width: 300px;
	margin: 0 auto;
	padding: 15px 0;
	display: block;
	color: #fff;
	font-size: 18px;
	line-height: 20px;
	font-weight: bold;
	text-decoration: none;
	border: 0;
	background: #D6000F;
	transition: all 0.1s linear;
	cursor: pointer;
	-webkit-appearance: none;
}
.submit input:hover {
	background: #000;
}
.submit .cap {
	color: #666;
	font-size: 12px;
	line-height: 1.6;
	text-align: center;
	margin-top: 40px;
}

/* タブレット以下 */
@media screen and (max-width: 1030px) {

}	/* for tablet max-width: 1030px */

/* SP向けレイアウトの指定：～736px */
@media only screen and (max-width: 736px) {
.submit {
	padding: 4vw 0;
}	
.submit input {
	width: 100%;
	font-size: 4vw;
	padding: 3vw 0;
}
.submit .cap {
	font-size: 3vw;
	margin-top: 4vw;
	}	

}	/* for SP max-width: 736px */

/*-------------------------------------------------------------
	サブミット
-------------------------------------------------------------*/
.submit_two {
	width: 440px;
	margin: 0 auto;
}
.submit_two .flol ,
.submit_two .flor {
	width: 50%;
}

/* タブレット以下 */
@media screen and (max-width: 1030px) {

}	/* for tablet max-width: 1030px */

/* SP向けレイアウトの指定：～736px */
@media only screen and (max-width: 736px) {
.submit_two {
	width: 100%;
}
.submit_two .flol ,
.submit_two .flor {
	width: 49%;
}

}	/* for SP max-width: 736px */

/*-------------------------------------------------------------	
	jquery mailform バリデート
-------------------------------------------------------------*/
.validate {
	margin-bottom: 10px;
	display: none;
}
.validate p {
	color: #c00;
	font-size: 12px;
	line-height: 1.2;
	padding: 8px;
	background: #fee;
}
.validate_submit {
	text-align: center;
	margin: 0 auto;
	padding-bottom: 20px;
}
.validate_submit p {
	padding: 10px;
}

/* タブレット以下 */
@media screen and (max-width: 1030px) {

}	/* for tablet max-width: 1030px */

/* SP向けレイアウトの指定：～736px */
@media only screen and (max-width: 736px) {
.validate {
	margin-bottom: 3vw;
}
.validate p {
	font-size: 3vw;
	padding: 2vw;
}	
.validate_submit {
	text-align: left;
	margin: 0 auto;
}

}	/* for SP max-width: 736px */


/*-------------------------------------------------------------
	search_box	
-------------------------------------------------------------*/
.search_box {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 300px;
}
.search_box input {
	width: 230px;
}
.search_box .search_btn {
	width: 60px;
}
.search_box .search_btn a {
	display: block;
	color: #fff;
	font-size: 15px;
	line-height: 2.8;
	text-align: center;
	letter-spacing: 0.2em;
	background: #a00;
	border-radius: 3px;
	margin-top: 1px;
}
.search_box .search_btn a:hover {
	text-decoration: none;
	background: #c00;
}
/* タブレット以下 */
@media screen and (max-width: 1030px) {

}/* for tablet max-width: 1030px */

/* SP向けレイアウトの指定：～736px */
@media only screen and (max-width: 736px) {
.search_box {
	width: 100%;
}
.search_box input {
	width: calc(100% - 22vw);
}
.search_box .search_btn {
	width: 20vw;
}
.search_box .search_btn a {
	font-size: 4.6vw;
	line-height: 2.8;
}
}/* for SP max-width: 736px */


/*===============================================================
	
	guide_page
	
===============================================================*/
.guide_page {
}
.section_guide .headline .title {
	font-size: 25px;
	line-height: 1.4;
}
.section_guide .content + .content,
.section_guide .headline + .content {
	margin-top: 80px;
}
.section_guide .content .title {
	font-size: 20px;
	line-height: 1.4;
	padding-top: 50px;
	border-top: solid 1px #999;
}
.section_guide .content * + .title {
	border-top: solid 0px #999;
}
.section_guide .content p {
	margin-top: 1em;
}
.section_guide .content .title + p {
	margin-top: 2em;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.section_guide .headline .title {
	font-size: 4vw;
}
.section_guide .content + .content,
.section_guide .headline + .content {
	margin-top: 10vw;
}
.section_guide .content .title {
	font-size: 4vw;
	padding-top: 8vw;
}
.section_guide .content p {
	font-size: 3.5vw;
}
}/* for SP max-width: 800px */



/*===============================================================
	
	テーブル
	
===============================================================*/
.guide_table {
	width:100%;
	text-align:left;
	font-size:14px;
	line-height:20px;
	border-collapse: separate;
    border-spacing: 0;
	border-bottom:solid 1px #ddd;
}
.guide_table td,
.guide_table th {
	padding:20px;
	border:solid 1px #ddd;
	box-sizing:border-box;
	font-size: 14px;
}
.guide_table th {
	font-weight:bold;
	border-right:0;
	border-bottom:0;
	background:rgba(0,0,0,0.05);
	width: 20%;
}
.guide_table td {
	border-bottom:0;
}
.guide_table td + td {
	border-left:0;
}

/* タブレット以下 */
@media screen and (max-width: 1030px) {

}	/* for tablet max-width: 1030px */

/* SP向けレイアウトの指定：～736px */
@media only screen and (max-width: 800px) {
.guide_table {
	padding:0;
	margin-top:0px;
}
.guide_table td,
.guide_table th {
	padding:3vw;
	font-size: 3.5vw;
}
.guide_table th {
	display: list-item;
	border-right:solid 1px #ddd;
	list-style:none;
	width:100%;
}
.guide_table td {
	display: list-item;
	list-style:none;
}

}	/* for SP max-width: 736px */

/*===============================================================
	
	photo_list
	
===============================================================*/
.photo_list {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
	margin-top: -30px;
}
.photo_list .photo {
	width: 100%;
	margin-top: 30px;
}
.photo_list .photo a {
	display: block;
}
.photo_list .photo .img_outer {
	overflow: hidden;
}
.photo_list .photo a:hover img {
	transform: scale(1.1,1.1);
}
.photo_list .photo_col2 {
	width: calc((100% - 30px)/2);
}
.photo_list  .photo_col2 .object_fit_img .img_cover ,
.photo_list  .photo_col2 .object_fit_img .img_contain {
	height: 380px;
}
.works_page .section_project_detail .section_inner {
	padding-top: 0;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.photo_list {
	margin-top: -5vw;
}
.photo_list .photo {
	width: 100%;
	margin-top: 5vw;
}
.photo_list .photo_col2 {
	width: 100%;
}
}/* for SP max-width: 800px */



/*===============================================================
	
	content_item_index
	
===============================================================*/
.content_item_index {
}
/*
.content_item_index .inner {
	width:105%;
	margin-top: -50px;
}
.content_item_index .item { 
	width:29.412%;
	margin-right:3.922%;
	margin-top: 50px;
	float: left;
}
*/
.content_item_index .inner {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin-top: -50px;
}
.content_item_index .item { 
	width: 31%;
	margin-right: 3.5%;
	margin-top: 50px;
}
.content_item_index .item:nth-child(3n) { 
	margin-right: 0;
}
.content_item_index .item a {
	display: block;
	border: solid 1px #ccc;
	padding: 20px;
	box-sizing: border-box;
	text-align: center;
}
.content_item_index .item a:hover {
	border: solid 1px #D6000F;
}
.content_item_index .item .photo {
}
.content_item_index .item .title {
	font-size: 20px;
	line-height: 1.4;
	margin-top: 20px;
}

.oneoff_page .content_item_index .item {
  width: 48%;
	margin-right: 4%;
}
.oneoff_page .content_item_index .item:nth-child(2n) {
	margin-right: 0;
}


/* タブレット以下 */
@media screen and (max-width: 1070px) {
.content_item_index .item .title {
	font-size: 2vw;
}  

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.content_item_index {
	margin-top: 8vw;
}
/*
.content_item_index .inner {
	width:105%;
	margin-top: -5vw;
}
.content_item_index .item { 
	width:47%;
	margin-right:3%;
	margin-top: 5vw;
}
*/
.content_item_index .inner {
	margin-top: -5vw;
}  
.content_item_index .item {
  width: 48%;
	margin-right: 4%;
  margin-top: 5vw;
}
.content_item_index .item:nth-child(3n) {
	margin-right: 4%;
}  
.content_item_index .item:nth-child(2n) {
	margin-right: 0;
}  
.content_item_index .item a {
	padding: 3vw;
}
.content_item_index .item .photo {
}
.content_item_index .item .title {
	font-size: 3.5vw;
	margin-top: 3vw;
}
}/* for SP max-width: 800px */


/*===============================================================
	
	section_project_detail
	
===============================================================*/
.section_project_detail {
	
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.section_project_detail .section_inner {
	padding: 8vw 0 15vw 0;
}
}/* for SP max-width: 800px */

/*===============================================================
	
	section_about
	
===============================================================*/
.about_page .section_kod_pageheader .subpage {
  /*opacity: 0;*/
}

.section_kod_pageheader + .section_about .section_inner {
  /*padding-top: 0;*/
}
.section_about .title_block .title {
	font-size: 22px;
}
.section_about .title_block + .content {
	margin-top: 80px;
}
.section_about .content + .title_block {
	margin-top: 80px;
}
.section_about .head {
	font-size: 25px;
  line-height: 2;
  font-weight: normal;
}
.section_about * + .head {
	margin-top: 60px;
}
.section_about p {
  font-size: 14px;
	margin-top: 30px;
}

/* タブレット以下 */
@media screen and (max-width: 1300px) {
.section_about .title_block + .content {
	margin-top: 50px;
}
  
}/* for tablet max-width: 1300px */  

/* タブレット以下 */
@media screen and (max-width: 1070px) {
.section_about * + .head {
	margin-top: 30px;
}  

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.about_page .section_kod_pageheader .subpage {
  /*opacity: 1;*/
}
.section_about .title_block .title {
	font-size: 5vw;
}
.section_about .title_block + .content {
  margin-top: 8vw;
}
.section_about .content + .title_block {
	margin-top: 15vw;
}  
.section_about .head {
	font-size: 5vw;
  line-height: 1.6;
}
.section_about * + .head {
	margin-top: 5vw;
}
.section_about p {
  font-size: 3.5vw;
	margin-top: 5vw;
}  

}/* for SP max-width: 800px */

/*-------------------------------------------------------------
	philosophy	
-------------------------------------------------------------*/
.philosophy .l {
  font-size: 20px;
}
.philosophy .img_r {
	width: 48%;
  margin-left: auto;
  margin-right: 0;
  margin-top: 50px;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.philosophy .l {
  font-size: 3.5vw;
}  
.philosophy .img_r {
	width: 80%;
  margin-right: auto;
  margin-top: 5vw;
}  

}/* for SP max-width: 800px */

/*-------------------------------------------------------------
	profile	
-------------------------------------------------------------*/
.profile {
	display: flex;
	flex-direction: row-reverse;
	flex-wrap: wrap;
	justify-content: space-between;
}
.profile .img {
	width: 30%;
}
.profile .txt {
	width: 66%;
}
.profile .head {
	font-size: 20px;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.profile {
}
.profile .img {
	width: 100%;
}   
.profile .txt {
	width: 100%;
  margin-top: 5vw;
}
.profile .head {
	font-size: 5vw;
}

}/* for SP max-width: 800px */

/*-------------------------------------------------------------
	booklist	
-------------------------------------------------------------*/
.booklist {
}
.booklist .item {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
  align-items: flex-start;
  padding: 50px;
  box-sizing: border-box;
}
.booklist .item:first-child {
  padding-top: 0;
}
.booklist .item:last-child {
  padding-bottom: 0;
}
.booklist .item + .item {
  margin-top: 50px;
}
.booklist .item .img {
  width: 24%;
}
.booklist .item .img .fitimg {
  border: 1px solid #707070;
  box-sizing: border-box;
}
.booklist .item .txt {
  width: 70%;
}
.booklist .item .txt .title {
  font-size: 20px;
  line-height: 1.4;
  font-weight: normal;
}
.booklist .item .txt p {
  margin-top: 15px;
}
.booklist .item .txt .s {
  font-size: 12px;
}
.booklist .btn_viewmore {
  width: 300px;
  margin-left: 0;
  margin-top: 30px;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {
.booklist .item {
  padding: 30px 0;
} 
.booklist .item + .item {
  margin-top: 0;
}  
.booklist .btn_viewmore {
	margin-top: 3.74vw;
	max-width: 42.06vw;
} 

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.booklist .item {
  padding: 0;
  margin-top: 5vw;
}
.booklist .item:last-child {
  padding-bottom: 0;
}
.booklist .item + .item {
  margin-top: 8vw;
}  
.booklist .item .img {
	width: 50%;
}  
.booklist .item .txt {
	width: 100%;
  margin-top: 5vw;
}
.booklist .item .txt .title {
	font-size: 4.5vw;
}
.booklist .item .txt p {
  font-size: 3.5vw;
  margin-top: 2vw;
}
.booklist .item .txt .s {
  font-size: 2.5vw;
} 
.booklist .btn_viewmore {
	margin-top: 5vw;
	max-width: 100%;
	width: 100%;
} 

}/* for SP max-width: 800px */

/*-------------------------------------------------------------
	company	
-------------------------------------------------------------*/
.company {
}
.company .item {
}
.company .item + .item {
	margin-top: 30px;
}
.company .item p {
	margin-top: 0;
}
.company .map {
  margin-top: 100px;
}
.company .map iframe {
  vertical-align: bottom;
  width: 100%;
  height: 500px;
}

/* タブレット以下 */
@media screen and (max-width: 1300px) {
.company .map iframe {
  height: 30vw;
}
  
}/* for tablet max-width: 1300px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.company .item + .item {
	margin-top: 4vw;
}
.company .item p {
	margin-top: 0;
}
.company .map {
  margin-top: 8vw;
}
.company .map iframe {
  height: 50vw;
}  

}/* for SP max-width: 800px */

/*-------------------------------------------------------------
	location	
-------------------------------------------------------------*/
.location {
	border-bottom: 1px solid #ddd;
}
.location .item {
  display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
  padding: 50px 0;
	border-top: 1px solid #ddd;
}
.location .item .txt {
  width: 24%;
}
.location .item .txt .head {
  line-height: 1.4;
}
.location .item .txt p + p {
  margin-top: 20px;
}
.location .item .img {
  width: 32%;
}
.location .item .map {
  width: 40%;
}
.location .item .text {
	width: 72%;
}
.location .item .map iframe {
  vertical-align: bottom;
  width: 100%;
  height: 240px;
}
.location .red-button{
	display: block;
	max-width: 155px;
	background-color: #d6000f;
    font-weight: normal;
    padding: 10px 20px;
    color: #FFF;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    line-height: 20px;
    border: none;
    transition: all 0.2s ease-in-out;
    width: 100%;
    letter-spacing: 0.1em;
}

/* タブレット以下 */
@media screen and (max-width: 1300px) {
.location .item .map iframe {
  height: 18vw;
}
  
}/* for tablet max-width: 1300px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.location {
	border-bottom: 1px solid #ddd;
}
.location .item {
  padding: 6vw 0;
}  
.location .item .txt {
  width: 100%;
}
.location .item .txt .head {
  font-size: 4.5vw;
}   
.location .item .txt p + p {
  margin-top: 2vw;
}  
.location .item .img {
  width: 100%;
  margin-top: 5vw;
}
.location .item .map {
  width: 100%;
  margin-top: 5vw;
}
.location .item .text {
  width: 100%;
  margin-top: 5vw;
}
.location .item .map iframe {
  height: 50vw;
}  

}/* for SP max-width: 800px */

/*===============================================================
	
	section_recruit
	
===============================================================*/

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {


}/* for SP max-width: 800px */
/*-------------------------------------------------------------
	recruit	
-------------------------------------------------------------*/
.recruit {
	border-bottom: 1px solid #ccc;
}
.recruit .item {
  display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
  padding: 50px 0;
	border-top: 1px solid #ccc;
}
.recruit .item .left {
  width: 22%;
}
.recruit .item .left .head {
  font-size: 25px;
  line-height: 1;
  font-weight: normal;
}
.recruit .item .left p {
  margin-top: 5px;
}
.recruit .item .right {
  width: 74%;
}
.recruit .item .right .box + .box {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #ccc;
}
.recruit .item .right .subhead {
  font-size: 20px;
  line-height: 1.4;
}
.recruit .item .right .subhead .new {
  display: inline-block;
  width: 30px;
  height: 20px;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  padding: 0 5px;
  background: #D6000F;
  margin-left: 10px;
}
.recruit .item .right p {
  margin-top: 0;
}
.recruit .item .right * + p {
  margin-top: 15px;
}
.recruit .item .right p + .subhead {
  margin-top: 40px;
}
.recruit .item .right ul {
  margin-top: 15px;
}
.recruit .item .right li {
  font-size: 14px;
  line-height: 1.8;
	text-indent: -0.5em;
	padding-left: 0.5em;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.recruit {
	border-bottom: none;
}
.recruit .item {
  padding: 0;
  border: none;
}
.recruit .item + .item {
  margin-top: 10vw;
}   
.recruit .item .txt {
  width: 100%;
}
.recruit .item .left {
  width: 100%;
  border: 1px solid #000;
  padding: 2vw;
}
.recruit .item .left .head {
  font-size: 4.5vw;
  line-height: 1;
  display: inline-block;
}  
.recruit .item .left p {
  display: inline-block;
  font-size: 3vw;
  margin-left: 2vw;
}
.recruit .item .right {
  width: 100%;
  margin-top: 5vw;
}
.recruit .item .right .box + .box {
  margin-top: 6vw;
  padding-top: 6vw;
}
.recruit .item .right .subhead {
  font-size: 4.5vw;
}
.recruit .item .right .subhead .new {
  width: 8vw;
  height: 4vw;
  font-size: 3vw;
  line-height: 4vw;
  padding: 0 1vw;
  margin-left: 2vw;
}
.recruit .item .right p {
  font-size: 3.5vw;
  margin-top: 0;
}
.recruit .item .right * + p {
  margin-top: 4vw;
}
.recruit .item .right p + .subhead {
  margin-top: 6vw;
}
.recruit .item .right ul {
  margin-top: 4vw;
}
.recruit .item .right li {
  font-size: 3.5vw;
}  

}/* for SP max-width: 800px */

/*===============================================================
	
	section_notfound
	
===============================================================*/
.notfound_error {
	text-align: center;
}
.notfound_error h3 {
	color: #D6000F;
	font-size: 25px;
}
.notfound_error h4 {
	font-size: 20px;
  font-weight: normal;
	margin-top: 30px;
}
.notfound_error h4 + p {
	margin-top: 20px;
}
.notfound_error p {
	margin-top: 30px;
}
.notfound_error .box {
	width: auto;
	max-width: 500px;
	padding: 40px;
	margin: 0 auto;
	margin-top: 30px;
  background: #f9f9f9;
	box-sizing: border-box;
}
.notfound_error li {
	font-size: 14px;
	line-height: 1.8;
	text-align: left;
	text-indent: -1em;
	padding-left: 1em;
}
.notfound_error li + li {
	margin-top: 5px;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}	/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.notfound_error {
}  
.notfound_error h3 {
	font-size: 5vw;
}
.notfound_error h4 {
	font-size: 4vw;
	margin-top: 5vw;
}
.notfound_error h4 + p {
	margin-top: 5vw;
}
.notfound_error p {
  font-size: 3.5vw;
	margin-top: 5vw;
}
.notfound_error .box {
	max-width: 500px;
	padding: 5vw;
	margin-top: 5vw;
}
.notfound_error li {
	font-size: 3vw;
}
.notfound_error li + li {
	margin-top: 0;
}  

}	/* for SP max-width: 800px */


/*===============================================================
	
	header_visual btn_circle 20200903
	
===============================================================*/
.header_visual .btn_circle {
	animation-name: btn_pickup;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
	animation-duration: 2s;
}
@keyframes btn_pickup {
	0%,100% {
		transform: translateY(0px);
	}
	10% {
		transform: translateY(-10px);
	}
	20% {
		transform: translateY(10px);
	}
}
.header_visual .btn_circle a {
	display: block;
	width: 50px;
	height: 50px;
	background-color: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	cursor: pointer;
	padding: 0;
	position: relative;
	z-index: 9999;
	margin: 0 auto;
}
.header_visual .btn_circle a:after {
	content:" ";
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	margin: auto;
	border: solid 2px #fff;
	width: 10px;
	height: 10px;
	border-top: none;
	border-left: none;
	transform: rotate(45deg);
	transition: all 0.3s;
}
/* タブレット以下 */
@media screen and (max-width: 1070px) {

}	/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.header_visual .btn_circle a {
	width: 10vw;
	height: 10vw;
}
.header_visual .btn_circle a:after {
	content:" ";
	position: absolute;
	bottom: 4vw;;
	left: 0;
	right: 0;
	margin: auto;
	border: solid 2px #fff;
	width: 2.5vw;
	height: 2.5vw;
	border-top: none;
	border-left: none;
	transform: rotate(45deg);
	transition: all 0.3s;
}
}	/* for SP max-width: 800px */


/*===============================================================
	
	no_post
	
===============================================================*/
.no_post {
	margin-top: 50px;
}
/* SP向けレイアウトの指定：～736px */
@media only screen and (max-width: 800px) {
.no_post {
	margin-top: 3vw;
}
}/* for SP max-width: 736px */



/*===============================================================
	
	暫定処理
	
===============================================================*/
.section_shop_information {
/*	display: none;*/
}
.section_discover_favorites {
	margin-top: 100px;
}
/* SP向けレイアウトの指定：～736px */
@media only screen and (max-width: 800px) {
.section_discover_favorites {
	margin-top: 5vw;
}
}/* for SP max-width: 736px */


/*===============================================================
	
	photo_caption
	
===============================================================*/
.photo_caption p {
	padding-top: 20px;
	padding-bottom: 20px;
	text-align: left;
	font-weight: bold;
	font-size: 12px;
}
.photo_caption p span {
	font-weight: normal;
/*	padding-right: 10px;*/
/*	color: #666;*/
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {

}	/* for tablet max-width: 1070px */

/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
.photo_caption p {
	padding-top: 0;
	padding-bottom: 0;
	padding: 0 8vw;
	margin-top: 3vw;
	font-size: 3.5vw;
}
}


/*===============================================================
	
	store
	
===============================================================*/
.store-news{
	position: relative;
	margin-bottom: 60px;
}
.section_about .store-news .head{
	font-size: 14px;
	background: white;
	padding: 10px 40px;
}
.section_information.store-news .news_list{
	margin-top: 0;
}
.store .location .item .txt{
	margin-top: 0;
}
@media only screen and (max-width: 800px) {
	.section_about .store-news .head{
		position: inherit;
		padding: 0;
	}
}
