@charset "UTF-8";
/* css common */

@import url("fonts.css");
@import url("globalnavi.css");
@import url("font-awesome/all.min.css");
@import url("https://use.fontawesome.com/releases/v5.11.2/css/all.css");
@import url("https://fonts.googleapis.com/css?family=Kosugi+Maru|Noto+Serif+JP:500,700|Open+Sans:400,600&display=swap&subset=japanese");

/*---------------------------------------------------- */
/* Base */
/*---------------------------------------------------- */
html {
	font-size: 100%;
	min-height: 100%;
	margin: 0;
	padding: 0;
	position: relative; 
}

body { 
	color: #2e3031;
	font-family: メイリオ, Meiryo, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 游ゴシック体, "Yu Gothic", YuGothic, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: 400;
	font-size: 13px;
	line-height: 1.231;
	width: 100%;
	min-width: 300px;
	height: 100%;
	/* margin-bottom: 55em; */
	/* margin-bottom: 62em; */
	/* margin-bottom: 69em; */
	margin-bottom: 76em;
	padding: 0;
	background-color: #fff;
}

p {
	line-height: 160%;
}

img {
	border: 0;
	outline: none;
	-ms-interpolation-mode: bicubic; 
	vertical-align: middle;
}
 
/* Correct overflow not hidden in IE9 */
figure { 
	margin: 0; 
}

a, a:focus, a:hover, a:active {
	outline: 0 none;
	-moz-outline: 0 none;
}

a {
	color: #0f79df;
	text-decoration: none;
	cursor: pointer;
	-webkit-transition: color 0.25s ease-in-out;
	-ms-transition: color 0.25s ease-in-out;
	transition: color 0.25s ease-in-out;
}

a:hover {
	color: #b52f00;
	text-decoration: underline;
}

/*
 * Remove text-shadow in selection highlight
 * These selection declarations have to be separate
 * Also: hot pink! (or customize the background color to match your design)
 */

::-moz-selection { 
	background: #358be0; 
	color: #fff; 
	text-shadow: none; 
}

::selection { 
	background: #358be0; 
	color: #fff; 
	text-shadow: none; 
}


/* Typography == */
address {
	font-weight: normal;
	font-style: normal;
}

hr { 
	display: block; 
	height: 1px; 
	border: 0; 
	border-top: 1px solid #e1e3e6; 
	margin: 20px 0; 
	padding: 0;
}

.center {
	text-align: center;
}

.right {
	text-align: right;
}

/* Lists */
ul, ol { 
	margin: 0;
	padding: 0;
	list-style: none;
	list-style-image: none; 
}

dd { 
	margin: 0; 
}

/* Contain floats:Clearfix */
.cf:after {
    content:" ";
    display:table;
    clear:both;
}

/* === primary styles / Author:IMUCO === */
/*---------------------------------------------------- */
/* Breadcrumbs */
/*---------------------------------------------------- */
.rcrumbs {
	font: 11px "Kosugi Maru", メイリオ, Meiryo, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 游ゴシック体, "Yu Gothic", YuGothic, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	white-space: nowrap;
	line-height: 1;
  max-width: 1080px;
  margin: 50px auto 0;
  padding: 5px 10px;
	background-color: #f8f8f8;
	border: 1px solid #ebeced;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-sizing: border-box; 
	-ms-box-sizing: border-box; 
	box-sizing: border-box;
}

.rcrumbs > ul {
  padding: 0;
  list-style: none;
}

.rcrumbs > ul > li {
  overflow: hidden;
  display: none;
}

.rcrumbs > ul > li.show {
  display: inline-block;
}

.rcrumbs > ul > li.ellipsis {
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
}

.rcrumbs a {
  color: #83878b;
  text-decoration: none;
}

.rcrumbs a:hover {
  color: #cd5900;
}

.rcrumbs .divider {
  color: #bfc4c5;
  padding: 0;
	margin-right: .5em;
	margin-left: .5em;
}

.rcrumbs .divider:before {
	content: "\f054";
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
}

/*---------------------------------------------------- */
/* Scroll Navi Part */
/*---------------------------------------------------- */
#toTop {
	display:none;
	text-decoration:none;
	position:fixed;
	bottom: 40px;
	right: 0;
	overflow:hidden;
	width: 32px;
	height: 32px;
	border:none;
	text-indent:100%;
	background-color: rgba(0, 0, 0, .5);
	background-image: url(../images/arrow_top.png);
	background-repeat: no-repeat;
	-webkit-background-size: 12px 13px;
	background-size: 12px 13px;
	background-position: 50% 50%;
	-webkit-border-radius: 3px 0 0 3px;
	-ms-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
	z-index: 90;
}

#toTopHover {
	width: 32px;
	height: 32px;
	display:block;
	overflow:hidden;
	float:left;
	background-color: rgba(0, 0, 0, .75);
	background-image: url(../images/arrow_top.png);
	-webkit-background-size: 12px 13px;
	background-size: 12px 13px;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	opacity: 0;
	-moz-opacity: 0;
	filter:alpha(opacity=0);
}

#toTop:active, #toTop:focus {
	outline:none;
}

/*---------------------------------------------------- */
/* Fade Transition */
/*---------------------------------------------------- */
.fade-efct a {
	opacity: 0;
	-webkit-transition: opacity 0.25s ease-in-out;
	-ms-transition: opacity 0.25s ease-in-out;
	transition: opacity 0.25s ease-in-out;
}

.fade-efct a:hover {
	opacity: 1;
	-webkit-transition: opacity 0.25s ease-in-out;
	-ms-transition: opacity 0.25s ease-in-out;
	transition: opacity 0.25s ease-in-out;
}

/* Decoration */
.warning {
	padding: 8px 10px 6px;
	background-color: #fcf7ea;
	border: 1px solid #f9edd3;
	-webkit-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
}

.link:after {
	content:"\f045";
	font: bold 90% "Font Awesome 5 Free";
	margin-left: .2em;
	margin-right: .1em;
}

/*---------------------------------------------------- */
/* Main Contents Part */
/*---------------------------------------------------- */
.mobile {
	visibility: hidden!important;
}

#maincontainer {
	width: 100%;
	margin: 0;
	padding: 0 0 30px;
	background-color: #fff;
	position: relative;
}

#mc-contents {
	padding-top: 110px;
}

#content-container {
	width: 100%;
}

.wrapper {
	max-width: 1080px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 10px;
	padding-left: 10px;
	position: relative;
}


/*  PC  */
@media print, screen and (min-width: 960px) {
/*---------------------------------------------------- */
/* Only */
/*---------------------------------------------------- */
.only_tab {
	display: none;
	visibility: hidden;
}

.only_sp {
	display: none;
	visibility: hidden;
}

.only_tabsp {
	display: none;
	visibility: hidden;
}


}

/*  PC  */
/*---------------------------------------------------- */
/* Header */
/*---------------------------------------------------- */
header {
	width: 100%;
	height: 110px;
	margin: 0;
	padding: 0;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(13, 6, 0, .95);
	-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
	box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
	z-index: 99;
	webkit-transition: height .25s ease-in-out, background .25s ease-in-out;
	-ms-transition: height .25s ease-in-out, background .25s ease-in-out;
	transition: height .25s ease-in-out, background .25s ease-in-out;
}

header > .wrapper {
	height: 100%;
	display: -webkit-flex; 
	display: -ms-flexbox; 
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row; 
	flex-direction: row;
	-webkit-flex-wrap: nowrap; 
	-ms-flex-wrap: nowrap; 
	flex-wrap: nowrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

header .logo {
	width: 243px; 
	height: 100%;
	margin: 0 14px 0 0;
	padding: 0;
	display: table;
	-webkit-transition: width .25s ease-in-out;
	-ms-transition: width .25s ease-in-out;
	transition: width .25s ease-in-out;
}

header .logo h1 {
	width: 243px; 
	height: 60px;
	margin: 0;
	padding: 0;
	display: table-cell;
	vertical-align: middle;
	-webkit-transition: all .25s ease-in-out;
	-ms-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}

header h1 a {
	width: 100%;
	height: 0;
	margin: 0;
	padding: 60px 0 0;
	display: block;
	overflow: hidden;
	background: url(../images/logo_white@2x.png) 0 0 no-repeat;
	background-size: auto 60px;
	-webkit-transition: all .25s ease-in-out;
	-ms-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}

header #header-nav {
	max-width: 770px;
	height: 100%;
	position: relative;
	display: -webkit-flex; 
	display: -ms-flexbox; 
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column; 
	flex-direction: column;
	-webkit-flex-wrap: nowrap; 
	-ms-flex-wrap: nowrap; 
	flex-wrap: nowrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

header .sub {
	width: 100%;
	height: auto;
	margin-top: 10px;
	position: relative;
	display: -webkit-flex; 
	display: -ms-flexbox; 
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row; 
	flex-direction: row;
	-webkit-flex-wrap: nowrap; 
	-ms-flex-wrap: nowrap; 
	flex-wrap: nowrap;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: all .25s ease-in-out;
	-ms-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}

header .sub ul {
	height: auto;
	margin: 0 60px 0 0;
	padding: 0;
}

header .sub ul a {
	font: 400 13px "Kosugi Maru", メイリオ, Meiryo, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 游ゴシック体, "Yu Gothic", YuGothic, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #fff;
	text-decoration: none;
	position: relative;
}

header .sub ul a:hover {
	color: #fff;
}

header .sub ul a i {
	color: rgba(255, 255, 255, .8);
	margin-right: 5px;
	-webkit-transition: all .25s ease-in-out;
	-ms-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}

header .sub ul a:hover i {
	color: rgb(132, 143, 30);
}

header .sub ul li {
	margin: 0;
	padding: 0;
	display: inline-block;
}

header .sub ul li + li {
	padding-left: 30px;
}

header .sub .phone-info {
	color: #fff;
}

header .sub .phone-info h3 {
	margin: 0;
	padding: 0;
	font: 600 24px "Open Sans", "Lucida Grande", Arial, sans-serif;
}

header .sub .phone-info i {
	margin-right: 5px;
}

/*---------------------------------------------------- */
/* Global Navigation */
/*---------------------------------------------------- */
header #header-nav #globalnav {
	width: auto;
	position: relative;
	bottom: 0;
	right: 0;
}

/*---------------------------------------------------- */
/* Header Resize */
/*---------------------------------------------------- */
header.smaller {
	height: 46px;
	background-color: rgba(13, 6, 0, .95);
}

header.smaller .logo {
	width: 239px; 
}

header.smaller .logo h1 {
	width: 239px; 
	height: 28px;
}

header.smaller h1 a {
	padding: 28px 0 0;
	background: url(../images/logo_white@2x_smaller.png) 0 0 no-repeat;
	background-size: auto 28px;
}

header.smaller .sub {
	height: 0;
	margin-top: 0;
	opacity: 0;
}

header.smaller #main-nav > ul > li:not(.comp-info) {
  height: 46px;
}

header.smaller #main-nav > ul li a {
  font-size: 14px!important;
}

header.smaller #main-nav ul li.mobile-child-nav a {
	font-size: 15px!important;
}

/*---------------------------------------------------- */
/* Footer */
/*---------------------------------------------------- */
footer {
	width: 100%;
	/*height: 62em;*/
	/*height: 69em;*/
	height: 76em;
	margin: 0;
	padding: 0;
	position: absolute;
	bottom: 0;
	//background-color: #fbf7e7;
	background-color: #210901;
	-webkit-box-sizing: border-box;  
	-ms-box-sizing: border-box; 
	box-sizing: border-box;
}

footer a {
	color: #515457;
	color: #fff;
	text-decoration: none;
}

footer a:hover {
	color: #212223;
	color: #fff;
	text-decoration: none;
}

/* Contact & Related Clumn Area */
footer .contactclumn {
	color: #fff;
	font-family: "Noto Serif JP", 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", HGS明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: 500;
	width: 100%;
	margin: 0;
	padding: 40px 0;
	position: relative;
	background-color: #311005;
}

footer .contactclumn .office-info {
	display: -webkit-flex; 
	display: -ms-flexbox; 
	display: flex;
	-webkit-box-orient: horizontal; 		
	-webkit-box-direction: normal;
	-ms-flex-direction: row; 
	flex-direction: row;
	-webkit-flex-wrap: nowrap; 
	-ms-flex-wrap: nowrap; 
	flex-wrap: nowrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

footer .contactclumn .office-info > div {
	width: 32%;
	position: relative;
}

footer .contactclumn a, footer .contactclumn a:hover {
	text-decoration: none;
}

footer .contactclumn .office-name {
	text-align: left;
}

footer .contactclumn .office-name h2 {
	width: 100%;
	margin: 0;
	padding: 0;
}

footer .contactclumn .office-name h2 a {
	width: auto;
	height: 0;
	margin: 0;
	padding: 46px 0 0;
	display: block;
	overflow: hidden;
	background: url(../images/logo_white@2x.png) 0 0 no-repeat;
	background-size: auto 46px;
}

footer .contactclumn .phone-info {
	font-family: "Open Sans", "Lucida Grande", Arial, sans-serif!important;
	text-align: center;
	margin: 0;
	padding: 0;
}

footer .contactclumn .phone-info h3 {
	font-size: 30px;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	margin: 0;
	padding: 0;
}

footer .contactclumn .phone-info h3 span {
	font: 50%/1 "Noto Serif JP", 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", HGS明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	display: block;
	margin-bottom: .3em;
}

footer .contactclumn .phone-info i {
	font-size: 86.666666%;
	margin-right: 7px;
	position: relative;
	top: -.03em;
}

footer .contactclumn .address-info {
	margin: 0;
	position: relative;
	text-align: right;
}

footer .contactclumn .address-info p {
	font-size: 16px;
	line-height: 1;
	text-align: left;
	white-space: nowrap;
	margin: 0;
	padding: 0;
	display: inline-block;
}

footer .contactclumn .address-info p span {
	display: block;
	margin-bottom: .4em;
}

footer .contactclumn hr {
	margin: 30px 0;
	border-top-color: rgba(255, 255, 255, .3);
}

footer .contactclumn .group-info {
	margin: 0;
}

footer .contactclumn .group-info h4 {
	font-size: 18px;
	text-align: center;
	letter-spacing: 1px;
	margin: 0 0 20px;
	padding: 0;
}

footer .contactclumn .group-info ul {
	display: -webkit-flex; 
	display: -ms-flexbox; 
	display: flex;
	-webkit-box-orient: horizontal; 		
	-webkit-box-direction: normal;
	-ms-flex-direction: row; 
	flex-direction: row;
	-webkit-flex-wrap: nowrap; 
	-ms-flex-wrap: nowrap; 
	flex-wrap: nowrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

footer .contactclumn .group-info ul li {
	text-align: center;
	width: calc((400 / 1080) * 100%);
	height: calc((80 / 400) * 100%);
}

footer .contactclumn .group-info ul li + li {
	margin-left: calc((60 / 1080) * 100%);
}

footer .contactclumn .group-info ul li a {
	width: 100%;
	height: 0;
	padding: calc((80 / 400) * 100%) 17px 0;
	position: relative;
	display: block;
	overflow: hidden;
	background-color: rgba(255, 255, 255, .2);
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: auto 40%;
	-webkit-border-radius: 6px;
	-ms-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-sizing: border-box; 
	-ms-box-sizing: border-box; 
	box-sizing: border-box;
	webkit-transition: all .25s ease-in-out;
	-ms-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}

/*footer .contactclumn .group-info ul li a:hover {
	background-color: #848f1e;
}*/

footer .contactclumn .group-info ul li.koubou-nagaoka a:hover {
	background-color: #002870;
}

footer .contactclumn .group-info ul li.ikona a:hover {
	background-color: #bf2d16;
}

footer .contactclumn .group-info .koubou-nagaoka a {
	background-image: url(../images/logo_w_koubou-nagaoka@2x.png);
}

footer .contactclumn .group-info .ikona a {
	background-image: url(../images/logo_w_ikona@2x.png);
}

/* Site Navigation Area */
footer #footer-navi {
	font-family: "Kosugi Maru", メイリオ, Meiryo, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 游ゴシック体, "Yu Gothic", YuGothic, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: 400;
	width: 100%;
	margin-bottom: 20px;
	padding-top: 40px;
}

/* Common Setting */
footer #footer-navi ul li a {
	margin: 0;
	position: relative;
}

footer #footer-navi ul li a:hover {
	text-decoration: none;
}

footer #footer-navi ul:not(.button-navi) li a:after {
	content: "";
	width: 0;
	margin-right: auto;
	margin-left: auto;
	border-bottom: 0px solid rgba(216, 137, 140, 0);
	position: absolute;
	bottom: -2px;
	right: 0;
	left: 0;
	webkit-transition: all .25s ease-in-out;
	-ms-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}

footer #footer-navi ul:not(.button-navi) li a:hover:after {
	width: 100%;
	border-bottom: 2px solid #a0a662;
}

footer #footer-navi .button-navi {
	text-align: center;
}

footer #footer-navi .button-navi a {
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	width: 100%;
	margin: 0;
	padding: 1.2em 1em;
	display: inline-block;
	position: relative;
	-webkit-border-radius: 4px;
	-ms-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-sizing: border-box; 
	-ms-box-sizing: border-box; 
	box-sizing: border-box;
	-webkit-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

footer #footer-navi .button-navi a i {
	margin-right: 7px;
}

/* Site-Main Navigation Area */
footer #footer-navi .site-main {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

footer #footer-navi .site-main > ul:not(.button-navi) {
	//width: 32%;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

footer #footer-navi .site-main > ul + ul {
	margin-left: 20px;
}

footer #footer-navi .site-main > ul > li {
	font-size: 16px;
	//font-weight: 600;
	margin-bottom: 1.5em;
	padding-left: .6em;
	position: relative;
}

footer #footer-navi .site-main > ul:not(.button-navi) > li:before {
	content: "";
	width: 5px;
	height: 1.2em;
	background-color: #848f1e;
	position: absolute;
	top: -.03em;
	left: 0;
	-webkit-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-sizing: border-box; 
	-ms-box-sizing: border-box; 
	box-sizing: border-box;
}

footer #footer-navi .site-main ul > li:last-child {
	margin-bottom: 0;
}

footer #footer-navi .site-main ul > li ul {
	font-size: 0;
	width: 100%;
	margin: 0 0 0 15px;
	padding: 0;
}

footer #footer-navi .site-main ul > li ul li {
	font-size: 14px;
	font-weight: 400;
	margin: .5em 0 0;
	padding: 0;
	display: inline-block;
	position: relative;
}

footer #footer-navi .site-main ul > li ul li + li {
	margin-left: 1.5em;
}

footer #footer-navi .site-main ul > li ul li:before {
	content: "\f0da";
	font: bold 14px "Font Awesome 5 Free";
	color: #848f1e;
	margin-right: .2em;
	-webkit-transition: color 0.25s ease-in-out;
	-ms-transition: color 0.25s ease-in-out;
	transition: color 0.25s ease-in-out;
}

footer #footer-navi .site-main .button-navi {
	//width: auto;
	-webkit-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
}

footer #footer-navi .site-main .button-navi li {
	width: 100%;
	-webkit-box-sizing: border-box; 
	-ms-box-sizing: border-box; 
	box-sizing: border-box;
}

footer #footer-navi .site-main .button-navi .confirmation a {
	background-color: #679abb;	
}

footer #footer-navi .site-main .button-navi .confirmation a:hover {
	background-color: #2cb0d2;	
}

footer #footer-navi .site-main .button-navi .contact a {
	background-color: #cb656a;
}

footer #footer-navi .site-main .button-navi .contact a:hover {
	background-color: #dd597e;
}

/*== btn LINE ==*/
footer #footer-navi .site-main .button-navi .line a {
	background-color: #22ba22;
}

footer #footer-navi .site-main .button-navi .line a:hover {
	background-color: #00b900;
}

/*== btn Facebook ==*/
footer #footer-navi .site-main .button-navi .fb a {
	background-color: #3b5998;
	font-size: 23px;
	padding: .8em 1em;
}

footer #footer-navi .site-main .button-navi .fb a:hover {
	background-color: #4979c0;
	font-size: 23px;
	padding: .8em 1em;
}

/*== btn instagram ==*/
footer #footer-navi .site-main .button-navi .insta a {
	padding: .8em 1em;
	background-color: #fff;
	background: linear-gradient(to right, #5478f2 0%, #f23f79 60%, orange 100%);
	-webkit-border-radius: 4px;
	-ms-border-radius: 4px;
	border-radius: 4px;
	font-size: 23px;
	color: #fff;
}

footer #footer-navi .site-main .button-navi .insta a:hover {
	opacity: .7;
	filter: alpha(opacity=70);
	text-decoration: none;
	font-size: 23px;
	padding: .8em 1em;
}

/*== hr ==*/
footer #footer-navi hr {
	margin-top: 30px;
	margin-bottom: 30px;
	//border-top-color: #d1c0a5;
	border-top-color: rgba(255, 255, 255, .3);
}

/* Site-Related Navigation Area */
footer #footer-navi .site-related ul {
	font-size: 0;
	text-align: center;
	width: 100%;
	margin: 0 0 16px;
	padding: 0;
	list-style-type: none;
	list-style-position: outside;
}

footer #footer-navi .site-related ul li {
	font-size: 14px;
	margin: 0;
	padding: 0 .8em;
	display: inline-block;
	position: relative;
}

footer #footer-navi .site-related ul li + li:before {
	content: "";
	width: 1px;
	height: 100%;
	//background-color: #999da0;
	background-color: rgba(255, 255, 255, .3);
	position: absolute;
	top: 0;
	left: 0;
}

/*footer #footer-navi .site-related ul li:first-child {
	margin-bottom: 1.5em;
	padding: 0;
	display: block;
}*/

footer #footer-navi .site-related ul li:last-child {
	margin-top: 1.5em;
	padding: 0;
	display: block;
}

/*footer #footer-navi .site-related ul li:first-child + li {
	padding-left: 0;
}*/

/*footer #footer-navi .site-related ul li:first-child + li:before, */footer #footer-navi .site-related ul li:last-child:before {
	width: 0;
	background-color: transparent;
}

footer .copyright { 
	font: 400 11px 'Open Sans', 'Lucida Grande', Arial, sans-serif;
	//color: #515457;
	color: rgba(255, 255, 255, .7);
	text-align: center;
	max-width: 1080px;
	margin: 3em auto 0;
	padding: 0;
}

/* width 1100px to 960px */
@media all and (max-width: 1100px) and (min-width: 960px) {
.rcrumbs {
	margin-right: 10px;
	margin-left: 10px;
}


}


/* Minimum width 959px and Tablet */
@media all and (max-width: 959px) and (min-width: 600px) {
/*---------------------------------------------------- */
/* Only */
/*---------------------------------------------------- */
.only_pc {
	display: none;
	visibility: hidden;
}

.only_sp {
	display: none;
	visibility: hidden;
}

.only_pcsp {
	display: none;
	visibility: hidden;
}

/*---------------------------------------------------- */
/* Base */
/*---------------------------------------------------- */
body {
	margin-bottom: 0;
}

.wrapper {
	width: 100%;
	padding: 0 15px;
	-webkit-box-sizing: border-box; 
	-ms-box-sizing: border-box; 
	box-sizing: border-box;
}

.rcrumbs {
	margin-top: 40px;
	margin-right: 15px;
	margin-left: 15px;
}

/*---------------------------------------------------- */
/* Main Contents */
/*---------------------------------------------------- */
.mobile {
	visibility: hidden;
}

#maincontainer {
	padding: 0 0 30px;
	background-color: #fff;
}

#mc-contents {
	padding-top: 0;
}

/*---------------------------------------------------- */
/* Header */
/*---------------------------------------------------- */
header {
	width: 100%;
	height: 46px;
	margin: 0;
	padding: 0;
	position: fixed;
	top: 0;
	background-color: rgba(255, 255, 255, 0);
	-moz-box-shadow: none;
	box-shadow: none;
}

header .logo {
	display: none;
}

header #header-nav {
	width: 100%;
}

header .sub {
	display: none;
}

/*---------------------------------------------------- */
/* Global Navigation */
/*---------------------------------------------------- */
#globalnav {
	height: 46px;
	background-color: rgba(255, 255, 255, 0);
}

/*---------------------------------------------------- */
/* Header Resize */
/*---------------------------------------------------- */
header.smaller {
	background-color: rgba(20, 11, 0, 0);
}

header.smaller #main-nav > ul > li > a {
  font-size: 15px;
}

/*---------------------------------------------------- */
/* Footer */
/*---------------------------------------------------- */
footer {
	height: auto;
	position: relative;
	bottom: 0;
	padding-bottom: 10px;
}

footer .contactclumn .office-name h2 a {
	padding: 32px 0 0;
	background-size: auto 32px;
}

footer .contactclumn .phone-info h3 {
	font-size: 26px;
}

footer .contactclumn .address-info p {
	font-size: 13px;
}

footer .contactclumn .group-info h4 {
	font-size: 16px;
}

footer .contactclumn .group-info ul li a {
	background-size: auto 36%;
}

/* Site Navigation Area */
footer #footer-navi {
	margin-bottom: 20px;
	padding-top: 30px;
}

/* Common Setting */
footer #footer-navi .button-navi a {
	font-size: 16px;
}

/* Site-Main Navigation Area */
footer #footer-navi .site-main {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

footer #footer-navi .site-main > ul:not(.button-navi) {
	display: none;
}

footer #footer-navi .site-main > ul + ul {
	margin-left: 0;
}

/*== btn Facebook ==*/
footer #footer-navi .site-main .button-navi .fb a {
	font-size: 21px;
	padding: .7em 1em;
}

footer #footer-navi .site-main .button-navi .fb a:hover {
	font-size: 21px;
	padding: .7em 1em;
}

/*== btn instagram ==*/
footer #footer-navi .site-main .button-navi .insta a {
	font-size: 21px;
	padding: .7em 1em;
}

footer #footer-navi .site-main .button-navi .insta a:hover {
	font-size: 21px;
	padding: .7em 1em;
}


}


/* Phone */
/* Portrait and mode */
@media only screen and (max-width: 599px) {
/*---------------------------------------------------- */
/* Only */
/*---------------------------------------------------- */
.only_pc {
	display: none;
	visibility: hidden;
}

.only_tab {
	display: none;
	visibility: hidden;
}

.only_pctab {
	display: none;
	visibility: hidden;
}

/*---------------------------------------------------- */
/* Base */
/*---------------------------------------------------- */
body {
	margin-bottom: 0;
	background-color: #fff;
}

.wrapper {
	width: 100%;
	padding: 0 15px;
	-webkit-box-sizing: border-box; 
	-ms-box-sizing: border-box; 
	box-sizing: border-box;
}

.rcrumbs {
	margin-top: 30px;
	margin-right: 15px;
	margin-left: 15px;
}

/*---------------------------------------------------- */
/* Scroll Navi Part */
/*---------------------------------------------------- */
#toTop {
	bottom: 80px;
	right: 0;
}

/*---------------------------------------------------- */
/* Main Contents */
/*---------------------------------------------------- */
.mobile {
	visibility: visible;
}

#maincontainer {
	padding: 0 0 40px;
	background-color: #fff;
}

#mc-contents {
	padding-top: 0;
}

/*---------------------------------------------------- */
/* Header */
/*---------------------------------------------------- */
header {
	width: 100%;
	height: 46px;
	margin: 0;
	padding: 0;
	position: fixed;
	top: 0;
	background-color: rgba(255, 255, 255, 0);
	-moz-box-shadow: none;
	box-shadow: none;
}

header .logo {
	display: none;
}

header #header-nav {
	width: 100%;
}

header .sub {
	display: none;
}

/*---------------------------------------------------- */
/* Global Navigation */
/*---------------------------------------------------- */
#globalnav {
	height: 46px;
	background-color: rgba(255, 255, 255, 0);
}

/*---------------------------------------------------- */
/* Header Resize */
/*---------------------------------------------------- */
header.smaller {
	background-color: rgba(20, 11, 0, 0);
}

header.smaller #main-nav > ul > li > a {
  font-size: 15px;
}
	
/*---------------------------------------------------- */
/* Footer */
/*---------------------------------------------------- */
footer {
	height: auto;
	position: relative;
	bottom: 0;
	padding-bottom: 10px;
}

footer .contactclumn {
	padding: 30px 0;
}

footer .contactclumn .office-info > div {
	width: 100%;
}

footer .contactclumn .office-info > div + div {
	margin-top: 0;
}

footer .contactclumn .office-name {
	display: none;
}

footer .contactclumn .phone-info h3 {
	font-size: 26px;
}

footer .contactclumn .address-info {
	display: none;
}

footer .contactclumn .group-info h4 {
	font-size: 15px;
	margin-bottom: 15px;
}

footer .contactclumn .group-info ul {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

footer .contactclumn .group-info ul li {
	width: calc((500 / 1080) * 100%);
	height: calc((135 / 500) * 100%);
}

footer .contactclumn .group-info ul li + li {
	margin-left: calc((60 / 1080) * 100%);
}

footer .contactclumn .group-info ul li a {
	padding: calc((135 / 500) * 100%) 24px 0;
	background-size: auto 70%;
}

footer .contactclumn .group-info .koubou-nagaoka a {
	background-image: url(../images/logo_w_koubou-nagaoka_sp@2x.png);
}

footer .contactclumn .group-info .ikona a {
	background-image: url(../images/logo_w_ikona_sp@2x.png);
}

/* Site Navigation Area */
footer #footer-navi {
	margin-bottom: 20px;
	padding-top: 30px;
}

/* Common Setting */
footer #footer-navi .button-navi a {
	font-size: 16px;
}

/* Site-Main Navigation Area */
footer #footer-navi .site-main {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

footer #footer-navi .site-main > ul:not(.button-navi) {
	display: none;
}

footer #footer-navi .site-main > ul + ul {
	margin-left: 0;
}

/* Site-Related Navigation Area */
footer #footer-navi .site-related ul li:first-child {
	margin-bottom: 1.5em;
	padding: 0;
	display: block;
}

footer #footer-navi .site-related ul li:last-child {
	margin-top: 1.5em;
	padding: 0;
	display: block;
}

footer #footer-navi .site-related ul li:first-child + li {
	padding-left: 0;
}

footer #footer-navi .site-related ul li:first-child + li:before, footer #footer-navi .site-related ul li:last-child:before {
	width: 0;
	background-color: transparent;
}

/*== btn Facebook ==*/
footer #footer-navi .site-main .button-navi .fb a {
	font-size: 21px;
	padding: .7em 1em;
}

footer #footer-navi .site-main .button-navi .fb a:hover {
	font-size: 21px;
	padding: .7em 1em;
}

/*== btn instagram ==*/
footer #footer-navi .site-main .button-navi .insta a {
	font-size: 21px;
	padding: .7em 1em;
}

footer #footer-navi .site-main .button-navi .insta a:hover {
	font-size: 21px;
	padding: .7em 1em;
}

/*== copyright ==*/
footer .copyright {
	font-size: 10px;
}


}