@charset "utf-8";

html {
	overflow-x: auto;
	overflow-y: scroll;
	font-size: 62.5%;
}
* {
	font-size: inherit;
	line-height: inherit;
}
*, *:before, *:after {
	box-sizing: inherit;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6, p, ul, ol, li, div, dl, dt, dd, form, img, hr, table, tr, td, br, em, figure {
	margin: 0px;
	padding: 0px;
	border: none;
	font-style: normal;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	font-size: 1.8rem;
}
img {
	max-width: 100%;
	height: auto;
	box-sizing: border-box;
	vertical-align: middle;
}
img.radius {
	border-radius: 6px;
}
body {
	margin: 0 auto;
	padding: 0;
	line-height: 1;
	font-size: 2.0rem;
	color: #555;
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	background: #FFF;
	-webkit-text-size-adjust: 100%;
	word-break: break-all;
}

@media screen and (max-width: 768px) {
	body {
		font-size: 1.8rem;
	}
}
@media screen and (max-width: 560px) {
	body {
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 320px) {
	body {
		font-size: 1.4rem;
	}
}

/****************************************
 * レスポンシブ
*****************************************/

@media screen and (min-width: 1025px) {/*1025px以上で*/
	.tb {
		display: none !important;
	}
	.pc {
		display: block !important;
	}
	.sp {
		display: none !important;
	}
}
@media screen and (max-width:1024px) {/*1024px以下で*/
	.tb {
		display: block !important;
	}
	.pc {
		display: none !important;
	}
	.sp {
		display: none !important;
	}
}
@media screen and (max-width: 560px) {/*560px以下で*/
	.tb {
		display: none !important;
	}
	.sp {
		display: block !important;
	}
}

/****************************************
 * リンク
*****************************************/

a:link, a:visited {
	color: #ed1b2e;
	text-decoration: none;
	transition: 0.5s;
}
a:hover {
	opacity: 0.75;
}
::-moz-selection {
	color: #FFF;
	background: #432D32;
}
.alpha a img {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.alpha a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
.no_alpha a img {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}
.no_alpha a:hover img {
  opacity: 1.0;
  filter: alpha(opacity=100);
}


/****************************************
 * ボタン
*****************************************/

input.btn,
a.btn {
	display: inline-block;
	min-width: 320px;
	padding: 18px 30px;
	border-radius: 4px !important;
	transform: translateY(-4px);
	text-decoration: none;
    transition: 0.5s;
}
input.btn:hover,
a.btn:hover {
	transform: translateY(-2px);
}


/* 赤いボタン */
input.btn_red,
a.btn_red {
	display: inline-block;
	background: #ed1b2e;
    color: #FFF;
	box-shadow:0 4px 0 0 #C6101F;
}
input.btn_red:hover,
a.btn_red:hover {
	box-shadow:0 2px 0 0 #C6101F;
}

a.btn_circle {
	display: inline-block;
	background: #FFF;
    color: #ed1b2e;
    border: 2px solid #ed1b2e;
	padding: 18px 30px;
	min-width: 320px;
	border-radius: 60px;
}
a.btn_circle span {
	border-bottom: 1px solid #ed1b2e;
}
a.btn_circle:hover {
	background: #ed1b2e;
	color: #FFF;
}

a.arrow {
	position: relative;
	padding-left: 28px;
}
a.arrow:before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	top: 45%;
	transform: translateY(-50%);
	background: url(images/icons/icon_arrow.webp) no-repeat;
	background-size: 100%;
	width: 20px;
	height: 20px;
}


/* 商品ページ */
a.btn_prdct {
	margin: 40px auto 0;
	width: 710px;
	padding: 30px 25px;
	letter-spacing: .1em;
	font-weight: bold;
	background: #004b79;
    color: #FFF;
	box-shadow:0 4px 0 0 #00253b;
}
a.btn_prdct span {
	display: inline-block !important;
}
a.btn_prdct:hover {
	box-shadow:0 2px 0 0 #00253b;
}

/* 商品ページのメーカー */
a.btn_maker {
	width: 40%;
	letter-spacing: .1em;
	font-weight: bold;
	background: #ed1b2e;
    color: #FFF;
	box-shadow:0 4px 0 0 #89111c;
}
a.btn_maker:hover {
	box-shadow:0 2px 0 0 #89111c;
}

/* お問い合わせ */
a.btn_inq {
	letter-spacing: .1em;
	font-weight: bold;
	background: #004b79;
    color: #FFF;
	box-shadow:0 4px 0 0 #00253b;
}
a.btn_inq:hover {
	box-shadow:0 2px 0 0 #00253b;
}

@media screen and (max-width: 1024px) {
	a.btn_prdct {
		min-width: 100% !important;
		width: 100%;
	}
	
}
@media screen and (max-width: 768px) {
	
	
}
@media screen and (max-width: 560px) {
	input.btn,
	a.btn {
		min-width: 100%;
		font-weight: bold;
		letter-spacing: .1rem;
	}
	a.btn_prdct {
		margin: 18px auto 0;
		padding: 18px 25px;
	}
}

/* -----------------------------------------------------------
    clear
-------------------------------------------------------------- */
.clear {
  height: 0px;
  margin: 0px;
  padding: 0px;
  line-height: 0px;
  clear: both;
  font-size: 0px;
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.clearfix {
  display: inline-block;
}
/* Hides from IE-mac \*/
* html .clearfix {
  zoom: 1;
}
.clearfix {
  display: block;
}
/* End hide from IE-mac */


/*********************************
* レイアウト
* ******************************/

.main {
	padding: 0;
}
.inner {
	width: 1200px;
	margin: 0 auto;
}
section {
	padding: 30px 0;
}
.main_contents {
	padding: 0 0 80px;
}

/* 準備中 */
p.getting_ready {
	min-height: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* サイドバー */
.contents2column {
	display: flex;
	justify-content: space-between;
}
.contents2column .contents_left {
	width: 850px;
}
aside {
	width: 300px;
}
.contents_right .inner_right {
	margin: 0 0 0 auto;
}

/* ボタンボックス */
.button_box {
	margin-top: 30px;
}
.button_box.left {
	text-align: left;
	margin-top: 30px;
}
.button_box.center {
	text-align: center;
	margin-top: 30px;
}
.button_box.right {
	text-align: right;
	margin-top: 30px;
}

@media screen and (max-width: 1024px) {
	.inner {
		width: 100%;
		padding: 0 30px;
	}
	
	/*サイドバー*/
	.contents2column .contents_left {
		width: 720px;
	}
	aside {
		width: 220px;
	}
}
@media screen and (max-width: 768px) {
	
	/*サイドバー*/
	.contents2column .contents_left {
		width: 100%;
	}
	aside {
		display: none;
	}
}
@media screen and (max-width: 560px) {
	.inner {
		padding: 0 20px;
	}
	
	/*サイドバー*/
	aside {
		display: none;
	}
}

/*********************************
 * ページ内リンク （FAQ、お客様の声）
 * ******************************/

ul.jump {
	display: flex;
	flex-wrap: wrap;
	margin-top: -20px;
	margin-bottom: 50px;
}
ul.jump li {
	display: flex;
    align-items: center;
	border: 1px solid #D3D8DC;
    background: #F6F6F8;
    letter-spacing: 0.1rem;
	width: calc(100% / 2 - 10px);
    margin: 20px 20px 0 0;
}
ul.jump li:nth-child(even) {
	margin-right: 0;
}
ul.jump li a {
	display: block;
	padding: 20px;
}
ul.jump li a:hover {
	background: #EAEAEA;
}
    
@media screen and (max-width: 430px) {
	ul.jump li {
		width: 100%;
		margin: 12px 0 0;
	}
	ul.jump li a {
		width: 100%;
		padding: 15px;
		font-weight: bold;
	}
}

/*********************************
 * ブロック
 * ******************************/

.block {
	margin-top: 50px;
}
.block .block_title {
	font-size: 2.6rem;
	font-weight: bolder;
	letter-spacing: 0.1em;
	line-height: 1.5;
	color: #ed1b2e;
	padding: 0 0 10px 0;
	border-bottom: #787878;
}
.block_box {
	margin: 25px;
}
.block_box p {
	line-height: 1.6;
	letter-spacing: 0.03em;
	margin-bottom: 2em;
}
.block_box p:last-child {
	margin-bottom: 0;
}
.block_flex {
	display: flex;
}
.block_flex .block_flex___txt {
	width: calc(100% - 450px);
}
.process_block .block_flex .block_flex___txt {
	width: calc(100% - 580px);
}
.block_flex .block_flex___img {
	width: 450px;
}
.process_block .block_flex .block_flex___img {
	width: 580px;
}
.block_flex .block_flex___img p.photo {
	margin-left: 50px;
}
.block_flex .block_flex___img p.photo img {
	margin-top: 25px;
	border-radius: 6px;
}
p.block_txt {
	margin: 25px;
	line-height: 1.6;
	letter-spacing: 0.03em;
}
.block ol.block_list {
	padding: 0 0 0 1.3em;
	margin: 1em 0 1em 1em;
	list-style: decimal;
}
.block ol.block_list li {
	margin-top: .3em;
	line-height: 1.6;
}
.block ul.block_list {
	padding: 0 0 0 1.3em;
	margin: 1em 0 1em 1em;
	list-style: disc;
}
.block ul.block_list li {
	margin-top: .3em;
	line-height: 1.6;
}
.block table.normal_table {
	border-collapse: collapse;
	table-layout: fixed;
	font-size: .7em;
}
.block table.normal_table tr {
	
}
.block table.normal_table th {
	width: auto;
	padding: 12px;
    text-align: center;
	background: #fafafa;
	border: 1px solid #EDEDED;
}
.block table.normal_table td {
	padding: 12px;
	text-align: center;
	border: 1px solid #EDEDED;
}

@media screen and (max-width: 1024px) {
	.process_block .block_flex .block_flex___txt {
		width: calc(100% - 450px);
	}
	.process_block .block_flex .block_flex___img {
		width: 450px;
	}
}
@media screen and (max-width: 768px) {

	.block_flex .block_flex___txt,
	.process_block .block_flex .block_flex___txt {
		width: calc(100% - 280px);
	}
	.block_flex .block_flex___img,
	.process_block .block_flex .block_flex___img {
		width: 280px;
	}
	.block_flex .block_flex___img p.photo {
		margin-left: 0;
	}
}
@media screen and (max-width: 560px) {
	.block {
		margin-top: 30px;
	}
	.block .block_title {
		font-size: 2.0rem;
	}
	.block_box {
		margin: 25px 12px;
	}
	.block_flex {
		margin-top: 20px;
		flex-direction: column;
	}
	.block_flex .block_flex___txt,
	.process_block .block_flex .block_flex___txt {
		width: 100%;
		order: 2;
	}
	.block_flex .block_flex___img,
	.process_block .block_flex .block_flex___img {
		width: 100%;
		order: 1;
	}
	.block_flex .block_flex___img p.photo img,
	.process_block .block_flex .block_flex___img img {
		margin-top: 0;
		width: 100%;
	}
	p.block_txt {
		margin: 25px 12px;
	}
	.block ul.block_list,
	.block ol.block_list {
		margin: 1em 0 1em 0;
	}
	.block ul.block_list li,
	.block ol.block_list li {
		margin-top: 1em;
	}
	.loadingBar {
		display: block;
		margin-left: auto;
		margin-bottom: 18px;
		width: 120px;
		height: 3px;
		background-image: linear-gradient(
			90deg,
			#f3f3f3,
			#f3f3f3 50%,
			#999999 50%,
			#999999
		);
		background-size: 200%, 100%;
		border-radius: 5px;
		animation-name: loading-bar;
		animation-duration: 1.4s;
		animation-timing-function: cubic-bezier(0.83, 0, 0.17, 1); /* easeInOutQuintのイージング */
		animation-iteration-count: infinite;
	}
	@keyframes loading-bar {
		0% {
			background-position: 100% 0;
		}
		50% {
			background-position: 0% 0;
		}
		100% {
			background-position: -100% 0;
		}
	}
	.block .table_scroll {
		overflow-x: scroll;
	}
	.block table.normal_table {
		width: 100%;
		min-width: 600px;
		font-size: .9em;
		margin-bottom: 1em;
	}
}
@media screen and (max-width: 430px) {
	.block .block_title {
		font-size: 1.8rem;
		letter-spacing: 0;
	}
}


/*********************************
 * メーカーの商品バナー
 * ******************************/

.p-products_bnr {
	margin-top: 30px;
}
#page .p-products_bnr {
	margin: 50px 0;
}
.p-products_bnr ul.p-products_bnr_items {
	margin-top: -30px;
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.p-products_bnr ul.p-products_bnr_items li {
	margin-top: 30px;
}

@media screen and (max-width: 1024px) {
	.p-products_bnr ul.p-products_bnr_items li {
		width: calc(100% / 2 - 12px);
	}
}
@media screen and (max-width: 560px) {
	.p-products_bnr ul.p-products_bnr_items li {
		width: calc(100% / 2 - 6px);
		margin-top: 12px;
	}
}
@media screen and (max-width: 560px) {
	.p-products_bnr ul.p-products_bnr_items li {
		width: 100%;
		margin-top: 8px;
	}
}

/********************************
 * 電話・メール
 * *****************************/

.p-contact_set a {
	display: inline-block;
}
.p-contact_set .p-contact_set_flex {
	display: flex;
	justify-content: center;
	align-items: center;
}
.p-contact_set .p-contact_set_flex .p-contact_set_flex___logo { /*お問い合わせページのみ */
	margin-right: 30px;
}
.p-contact_set .p-contact_set_flex .p-contact_set_flex___phone {
	margin-right: 12px;
}

/********************************
 * アイコン付きボックス
 * *****************************/

.iine {
	position: relative;
	margin: 30px 0 0 40px;
	background: #c6dbe8;
	border: 1px #004b79 solid;
	padding: 30px 30px 30px 90px;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	color: #004b79;
	font-weight: bold;
	line-height: 1.5;
	font-size: 1.6rem;
}
.icon {
	position: absolute;
	left: -40px;
	top: 15px;
}
.iine .icon.s {
	left: -30px;
	top: 18px;
}
.iine .icon.s img {
	width: 80px;
}

@media screen and (max-width: 560px) {
	.iine {
		padding: 20px 20px 20px 75px;
	}
}
@media screen and (max-width: 430px) {
	.iine {
		padding: 15px 15px 15px 72px;
	}
}



/* -----------------------------------------------------------
    main
-------------------------------------------------------------- */
/*	 メインタイトル   */
.low_titlebg {
  background: url(../img/low_title_bg.jpg) no-repeat center 50px;
  background-size: 100% auto;
}



/*	 矢印付きテキストリンク   */
/*.next_link {
  font-size: 2.0rem;
  text-align: right;
}

.next_link a {
  display: inline-block;
  padding: 5px;
}
.next_link a {
  display: inline-block;
  padding: 5px 5px 5px 25px;
  background: url(../img/icon_right01.png) no-repeat left 5px;
  background-size: 20px 18px;
}
*/
.back_link {
  font-size: 1.5rem;
  text-align: left;
}
.back_link a {
  display: inline-block;
  padding: 5px;
}
.back_link a::before {
  display: inline-block;
  margin: 0 10px 0 0;
  content: "\f104";
  font-family: FontAwesome;
  font-size: 1.8rem;
}
.back_link.green a {
  background: url(../img/icon_arrow03.png) no-repeat left 40%;
  background-size: 11px 11px;
}


/*********************************
 * ヘッダー
 * ******************************/

.header_info {
	width: 100%;
	padding: 12px 0;
}
.header_info .header_info_flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header_info .header_info_flex .header_info_logo {
	
}
p.header_logo {
	margin-top: 5px;
}
p.header_catch {
	margin: 0;
	font-size: 1.3rem;
	font-style: italic;
	color: #4B4B4B;
}
.header_info .header_info_flex .header_info_search {
	width: 260px;
}
.header_info .header_info_flex .header_info_search_btn {
	display: none;
}
.header_nav {
	border-bottom: 3px solid #C6101F;
	background: #ed1b2e;
	box-shadow: 2px 2px 6px -1px rgb(19 71 52 / 30%);
	transition: transform .6s;
}
.header_nav.fixed { /* 途中から固定*/
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9;
}
.header_nav ul#pc_nav_list {
	display: flex;
    align-items: center;
    justify-content: space-evenly;
	position: relative;
}
.header_nav ul#pc_nav_list li {
	width: 100%;
	font-size: 1.8rem;
	text-align: center;
	border-right: 1px solid #D1192B;
	border-left: 1px solid #EE3443;
}
.header_nav ul#pc_nav_list li.nav_about {
	min-width: 170px;
}
.header_nav ul#pc_nav_list li.nav_home {
	width: 75px;
}
.header_nav ul#pc_nav_list li.nav_ih {
	min-width: 220px;
}
.header_nav ul#pc_nav_list li:first-child:before {
	content: "";
	position: absolute;
	top: 0;
	left: -1px;
    border-left: 1px solid #D1192B;
    width: 1px;
    height: 100%;
}
.header_nav ul#pc_nav_list li:last-child:before {
	content: "";
	position: absolute;
	top: 0;
	right: -1px;
    border-left: 1px solid #EE3443;
    width: 1px;
    height: 100%;
}
.header_nav ul#pc_nav_list li a {
	display: block;
	padding: 18px 0;
	font-size: .93em;
	color: #FFF !important;
	cursor: pointer;
}
.header_nav ul#pc_nav_list li.nav_home a {
	width: 75px;
}
.header_nav ul#pc_nav_list li a:hover {
	background: #DD1A2E;
}
.header_nav_sub { /* 下層メニュー */
	width: 100%;
	position: absolute;
	top: 99%;
	left: 0;
	padding: 0;
	color: #333;
	background: #DD1A2E;
	visibility: hidden;
	opacity: 0;
	transition: .3s opacity;
}
.header_nav ul#pc_nav_list li.mega:hover .header_nav_sub {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}
.header_nav ul#pc_nav_list li.mega:hover .header_nav_sub a:hover {
	background: #D1192B;
}
.header_nav ul.sub-menu {
	display: flex;
	
}

@media screen and (max-width: 1024px) {
	.header_info .header_info_flex .header_info_logo {
		width: 280px;
		padding-right: 20px;
	}
	p.header_catch {
		font-size: 1.1rem;
	}
	.header_info .header_info_flex .header_info_contact {
		max-width: 400px;
	}

	.header_nav ul#pc_nav_list li {
		font-size: 1.6rem;
	}
	.header_nav ul#pc_nav_list li.nav_home,
	.header_nav ul#pc_nav_list li.nav_home a {
		width: 50px;
	}
	.header_nav ul#pc_nav_list li.nav_about {
		min-width: 140px;
	}
	.header_nav ul#pc_nav_list li.nav_ih {
		min-width: 180px;
	}
}
@media screen and (max-width: 768px) {
	.header_info .inner,
	.header_nav .inner {
		padding: 0 12px;
	}
	.header_info .header_info_flex .header_info_search {
		display: none;
	}
	.header_info .header_info_flex .header_info_search_btn {
		display: block;
		padding-right: 12px;
	}
	.header_info .header_info_flex .header_info_contact {
		max-width: 374px;
	}
	
	.header_nav ul#pc_nav_list {
		border-left: 1px solid #D1192B;
	}
	.header_nav ul#pc_nav_list li {
		font-size: 1.4rem;
	}
	.header_nav ul#pc_nav_list li.nav_home,
	.header_nav ul#pc_nav_list li.nav_home a {
		display: none;
	}
	.header_nav ul#pc_nav_list li.nav_home,
	.header_nav ul#pc_nav_list li.nav_home a {
		width: 50px;
	}
	.header_nav ul#pc_nav_list li.nav_about {
		min-width: 120px;
	}
	.header_nav ul#pc_nav_list li.nav_ih {
		min-width: 160px;
	}
	
}
@media screen and (max-width: 560px) {
	header {
		border-bottom: 3px solid #ed1b2e;
	}
	.header_info .inner {
		padding: 0 30px;
	}
	.header_info .header_info_flex .header_info_logo {
		width: 100%;
		padding-right: 60px;
	}
	.header_info .header_info_flex .header_info_logo img {
		width: 200px;
	}
	.header_nav {
		display: none;
	}
	
}
@media screen and (max-width: 430px) {
	.header_info .inner {
		padding: 0 20px;
	}
	.header_info .header_info_flex .header_info_logo img {
		width: 180px;
	}
}
@media screen and (max-width: 380px) {
	.header_info .header_info_flex .header_info_logo {
		padding-right: 30px;
	}
	.header_info .header_info_flex .header_info_logo img {
		width: 150px;
	}
}


/*********************************
 * スマホナビゲーション
 * ******************************/

#acd_nav {
	display: none;
}

@media screen and (max-width: 560px) {
	#acd_nav {
		display: block;
	}
	
	#acd_nav .hamburger {
		position: fixed;
		right: 30px;
		top: 10px;
		width: 40px;
		height: 40px;
		z-index: 9999;
	}
	#acd_nav .hamburger .hamburger_btn {
		position: relative;
	}
	#acd_nav .hamburger .hamburger_btn:before {
		content: "";
		display: inline-block;
		position: absolute;
		background: url(images/common/menu_open.png) no-repeat;
		background-size: 100%;
		width: 40px;
		height: 40px;
		transition: all .3s;
	}
	#acd_nav .hamburger.active .hamburger_btn:before {
		content: "";
		display: inline-block;
		position: absolute;
		background: url(images/common/menu_close.png) no-repeat;
		background-size: 100%;
		width: 40px;
		height: 40px;
	}
	
	#acd_nav nav.acd_nav-menu {
		overflow: auto;
		background: #FFF;
		display: none;
		height: 100%;
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		z-index: 999;
	}
	#acd_nav .menu-sp-menu-container {
		width: 90%;
		margin: 50px auto;
		padding-right: 5px; /*スクロールバー分*/
	}
	#acd_nav .menu-sp-menu-container ul#menu-sp-menu,
	#acd_nav .menu-sp-menu-container ul#menu-sp-menu ul.sub-menu {
		list-style: none;
		padding: 0;
		margin: 0;
	}
	#acd_nav .menu-sp-menu-container ul#menu-sp-menu li {
		border-bottom: 1px solid #fff;
	}
	#acd_nav .menu-sp-menu-container ul#menu-sp-menu li.menu-item-206 {
		padding-bottom: 5px;
	}
	#acd_nav .menu-sp-menu-container ul#menu-sp-menu li ul.sub-menu {
		margin-left: 30px;
	}
	#acd_nav .menu-sp-menu-container ul#menu-sp-menu li ul.sub-menu li {
		padding: 0;
		border: none;
	}
	#acd_nav .menu-sp-menu-container ul#menu-sp-menu a {
		color: #fff;
		font-size: 1.3em;
		transition: .5s;
		padding: 15px;
		display: block;
	}
	#acd_nav .sp_nav {
		padding: 0 0 30px;
		height: 100vh;
		overflow-y: scroll;
	}
	#acd_nav .sp_nav .sp_nav_logo {
		padding: 12px 30px;
	}
	#acd_nav .sp_nav .sp_nav_logo img {
		width: 200px;
	}
	
	#acd_nav ul.sp_nav_list {
		list-style: none;
		margin: 0;
		padding: 0;
		display: flex;
		flex-wrap: wrap;
	}
	#acd_nav ul.sp_nav_list li.ac-menu {
		width: 100%;
		text-align: left;
		font-weight: bold;
		border-bottom: 1px solid #ededed;
		position: relative;
	}
	#acd_nav ul.sp_nav_list li.ac-menu:first-child {
		border-top: 1px solid #ededed;
	}

	/* アコーディオン */
	.ac-menu input {
		display: none;
	}
	.ac-menu label {
		display: flex;
		justify-content: space-between;
		align-items: center;
		color: #1F1F1F;
		font-size: 1.6rem;
		cursor: pointer;
		position: relative;
	}
	.ac-menu div.ac-menu-inside {
		height: 0;
		overflow: hidden;
		opacity: 0;
		transition: .6s;
	}
	.ac-menu input:checked~div.ac-menu-inside {
		height: auto;
		opacity: 1;
		transform: .3s;
	}
	.ac-menu a.nav_item {
		display: block;
		font-size: 1.6rem;
		color: #1F1F1F;
		padding: 20px 30px 20px 60px;
		position: relative;
	}
	.ac-menu a.nav_item:before {
		content: "";
		display: inline-block;
		position: absolute;
		left: 30px;
		top: 50%;
		transform: translateY(-50%);
		background: #ed1b2e;
		width: 15px;
		height: 5px;
	}
	.ac-menu ul.sub_list {
		display: block;
		margin: 0 0 0 2em;
		padding: 0;
		border-top: 1px solid #ededed;
	}
	.ac-menu ul.sub_list li {
		padding: 0;
		border-bottom: 1px solid #ededed;
	}
	.ac-menu ul.sub_list li:last-child {
		border-bottom: none !important;
	}
	.ac-menu ul.sub_list li a {
		padding: 20px 30px 20px 45px;
		position: relative;
	}
	.ac-menu ul.sub_list li a:before {
		content: "-";
		display: inline-block;
		position: absolute;
		left: 18px;
		top: 50%;
		transform: translateY(-50%);
		background: none; /*親の打ち消し*/
		width: auto; /*親の打ち消し*/
		height: auto; /*親の打ち消し*/
	}

	span.down_icon {
		display: inline-block;
		position: relative;
		right: 30px;
		z-index: 9;
	}
	span.down_icon:before {
		content: '';
		position: absolute;
		top: 50%;
		right: 30px;
		transform: rotate(135deg) translateY(-100%) translateX(-220%);
		width: 12px;
		height: 12px;
		border-top: solid 4px #ed1b2e;
		border-right: solid 4px #ed1b2e;
	}
}
@media screen and (max-width: 430px) {
	#acd_nav .sp_nav .sp_nav_logo {
		padding: 12px 20px;
	}
	#acd_nav .sp_nav .sp_nav_logo img {
		width: 180px;
	}
	#acd_nav .hamburger {
		right: 20px;
	}
}
@media screen and (max-width: 380px) {
	#acd_nav .sp_nav .sp_nav_logo img {
		width: 150px;
	}
	#acd_nav .hamburger {
		right: 12px;
	}
	.ac-menu a.nav_item {
		font-size: 1.4rem;
		padding: 18px 20px 18px 45px;
	}
	.ac-menu a.nav_item:before {
		left: 20px;
		width: 13px;
		height: 4px;
	}
	.ac-menu ul.sub_list li a {
		padding: 18px 20px 18px 32px;
	}
}
@media screen and (max-width: 320px) {
	#acd_nav .sp_nav .sp_nav_logo img {
		width: 150px;
	}
	#acd_nav .hamburger {
		right: 12px;
	}
	.ac-menu a.nav_item {
		font-size: 1.2rem;
	}
}

/****************************************
 * サイドバー
*****************************************/

.aside_category .aside_category_title {
	background: #ed1b2e;
	color: #FFF;
	font-size: 1.9rem;
	padding: 25px 15px;
	text-align: center;
	border-radius: 6px 6px 0 0;
	letter-spacing: 0.1em;
}
.aside_category ul.aside_category_list {
	border: 1px solid #DFDFDF;
	border-bottom: none;
}
.aside_category ul.aside_category_list li {
	border-bottom: 1px solid #DFDFDF;
	line-height: 40px;
	letter-spacing: 0.05em;
	font-size: 1.8rem;
}
.aside_category ul.aside_category_list li img {
	width: 100%;
	border-radius: 4px;
}
.aside_category ul.aside_category_list li span {
	display: inline-block;
}
.aside_category ul.aside_category_list li a {
	display: block;
	padding: 10px 15px 0 15px;
	color: #555;
}
.aside_category ul.aside_category_list li a:hover {
	color: #ed1b2e;
	background: #F8F8F8;
}


/****************************************
 * アイコン
*****************************************/

.icons_main {
	display: inline-block;
	padding-left: 47px;
	position: relative;
}
.icons_main:before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.icon_ecocute:before {
    background: url(images/icons/icon_ecocute.webp) no-repeat;
	background-size: 100%;
	width: 40px;
    height: 39px;
}
.icon_onsuiki:before {
    background: url(images/icons/icon_onsuiki.webp) no-repeat;
	background-size: 100%;
	width: 40px;
    height: 39px;
}
.icon_ih:before {
    background: url(images/icons/icon_ih.webp) no-repeat;
	background-size: 100%;
	width: 40px;
    height: 39px;
}
.icon_solar:before {
    background: url(images/icons/icon_solar.webp) no-repeat;
	background-size: 100%;
	width: 40px;
    height: 39px;
}
ul.products_list li.icons_main:before {
	left: 20px;
	width: 30px;
    height: 30px;
}

@media screen and (max-width: 560px) {
	.pickup_title .icons_main {
		padding: 48px 0 0;
	}
	.pickup_title .icons_main:before {
		left: 50%;
		top: 0;
		transform: translateX(-50%);
	}
	.icon_ecocute:before,
	.icon_onsuiki:before,
	.icon_ih:before,
	.icon_solar:before {
		width: 34px;
		height: 33px;
	}
}
@media screen and (max-width: 430px) {
	
}


/****************************************
 * メインタイトル
*****************************************/

.main_title {
	font-size: 3.3rem;
	letter-spacing: 0.1em;
	line-height: 1.5;
	padding: 0 200px 0 55px;
	color: #1F1F1F;
	position: relative;
}
.main_title:before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
}
.main_title.about:before {
	background: url(images/icons/icon_about_red.webp) no-repeat;
	background-size: 100%;
	background-position: center;
}
.main_title.works:before {
	background: url(images/icons/icon_works_red.webp) no-repeat;
	background-size: 100%;
	background-position: center;
}
.main_title.process:before {
	background: url(images/icons/icon_process_red.webp) no-repeat;
	background-size: 100%;
	background-position: center;
}
.main_title.ecocute:before,
.main_title.ecocute-exchange:before,
.main_title.ecocute-process:before {
	background: url(images/icons/icon_ecocute.webp) no-repeat;
	background-size: 100%;
	background-position: center;
}
.main_title.onsuiki:before,
.main_title.onsuiki-process:before {
	background: url(images/icons/icon_onsuiki.webp) no-repeat;
	background-size: 100%;
	background-position: center;
}
.main_title.ih:before,
.main_title.ih-process:before {
	background: url(images/icons/icon_ih.webp) no-repeat;
	background-size: 100%;
	background-position: center;
}
.main_title.solar:before,
.main_title.solar-process:before {
	background: url(images/icons/icon_solar.webp) no-repeat;
	background-size: 100%;
	background-position: center;
}
.main_title.flow:before {
	background: url(images/icons/icon_flow_red.webp) no-repeat;
	background-size: 100%;
	background-position: center;
}
.main_title.faq:before {
	background: url(images/icons/icon_faq_red.webp) no-repeat;
	background-size: 100%;
	background-position: center;
}
.main_title.company:before {
	background: url(images/icons/icon_company_red.webp) no-repeat;
	background-size: 100%;
	background-position: center;
}
.main_title.area:before {
	background: url(images/icons/icon_area_red.webp) no-repeat;
	background-size: 100%;
	background-position: center;
}
.main_title.voice:before {
	background: url(images/icons/icon_voice_red.webp) no-repeat;
	background-size: 100%;
	background-position: center;
}
.main_title.search:before {
	background: url(images/icons/icon_search.webp) no-repeat;
	background-size: 100%;
	background-position: center;
}
.main_title.privacy-policy:before {
	background: url(images/icons/icon_privacy_red.webp) no-repeat;
	background-size: 100%;
	background-position: center;
}
.main_title.sitemap:before {
	background: url(images/icons/icon_sitemap_red.webp) no-repeat;
	background-size: 100%;
	background-position: center;
}

.main_en_title {
	font-size: 1.3rem;
	color: #ed1b2e;
	letter-spacing: 0.2em;
	font-family: 'Oswald';
	padding: 0 0 0 60px;
}
.main_sub_title {
	font-size: 1.5rem;
	color: #ed1b2e;
	letter-spacing: 0.05em;
	padding: 0 0 0 60px;
	line-height: 1.6;
}

@media screen and (max-width: 768px) {
	.main_title {
		font-size: 3rem;
		padding: 0 90px 0 55px;
	}
}
@media screen and (max-width: 560px) {
	.main_title {
		font-size: 2.3rem;
		padding: 0 50px 0 44px;
	}
	.main_title:before {
		width: 32px;
		height: 32px;
	}
	.main_sub_title {
		padding: 0 0 0 45px;
	}
}
@media screen and (max-width: 430px) {
	.main_title {
		font-size: 1.8rem;
		font-weight: bold;
		padding: 0 45px 0 45px;
	}
	.main_title:before {
		/*width: 22px;
		height: 22px;*/
	}
	.main_en_title {
		font-size: 1.2rem;
		padding: 0 0 0 45px;
	}
	.main_sub_title {
		padding: 0 0 0 45px;
		font-size: 1.2rem;
		font-weight: bold;
	}
}
@media screen and (max-width: 380px) {
	.main_title {
		font-size: 1.6rem;
		padding: 0 0 0 45px;
	}
	.main_en_title {
		font-size: 1.1rem;
		padding: 0 0 0 45px;
	}
	.main_sub_title {
		font-size: 1.1rem;
	}
}


/****************************************
 * そのほかタイトル
*****************************************/

.red_title {
	font-size: 2.6rem;
	font-weight: bolder;
	letter-spacing: 0.1em;
	line-height: 1.5;
	color: #ed1b2e;
	padding: 0 0 10px 0;
}
.dotts_title {
	font-size: 1.8rem;
	border-bottom: 1px #CCC dotted;
	padding: 0 0 8px 25px;
	margin-bottom: 30px;
	font-weight: bold;
	line-height: 1.4;
}
.common_title {
	border: 1px #DDD solid;
	border-bottom: 4px #EDEDED solid;
	margin: 40px 0 0 0;
	padding: 18px 30px 18px 30px;
	font-size: 2.2rem;
	font-weight: bold;
	background: url(images/common/title_redline.webp) #FFF no-repeat 0 50%;
	background-size: 6px 20px;
}
.band_title {
	position: relative;
	padding: 18px 30px;
	margin-bottom: 30px;
	background: #ed1b2e;
	border-radius: 6px;
	font-size: 2.2rem;
	font-weight: bold;
	letter-spacing: 0.05em;
	color: #fff;
}
.band_title a {
	color: #FFF;
	display: inline-block;
}

@media screen and (max-width:560px) {
	.red_title,
	.common_title,
	.band_title {
		font-size: 2.0rem;
	}
	.dotts_title {
		padding: 0 0 8px 0;
	}
}
@media screen and (max-width:430px) {
	.red_title,
	.common_title,
	.band_title {
		font-size: 1.8rem;
	}
}

/****************************************
 * メーカー画像
*****************************************/

p.maker_logo {
	width: 150px;
    margin-left: auto;
}

@media screen and (max-width: 768px) {
	p.maker_logo {
		width: 90px;
	}
}
@media screen and (max-width: 560px) {
	p.maker_logo {
		width: 100%;
		height: auto;
		margin-top: 12px;
	}
}


/****************************************
 * ページタイトル
*****************************************/

.page_title_box {
	padding: 50px 0 0;
	background: url(images/common/page_title_bg.jpg.webp) no-repeat center 50px;
	background-size: 100% auto;
}

@media screen and (max-width: 560px) {
	.page_title_box {
		padding: 30px 0;
	}
}



/* 施工事例 
 * ***************************************/

.page_title_box p.category {
  display: inline-block;
  margin: 0 10px 0 0;
  padding: 5px 10px;
  background: #ed1b2e;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
}
.page_title_box .model_number {
	display: inline-block;
	letter-spacing: 0.02em;
}
.page_title_box .model_number a {
	border-bottom: 1px solid;
}
.page_title_box .works_title {
	padding: 15px 0 0;
	font-size: 2.2rem;
	line-height: 1.3;
	letter-spacing: 0.05em;
	color: #1F1F1F;
}

@media screen and (max-width: 560px) {
	.page_title_box p.category {
		font-size: 1.2rem;
	}
	.page_title_box .model_number {
		font-size: 1.5rem;
	}
	.page_title_box .works_title {
		font-weight: bold;
	}
}
@media screen and (max-width: 430px) {
	.page_title_box .works_title {
		font-size: 1.8rem;
	}
}


/* ページタイトル下の見出し （施工事例、工事対応エリア）
 * ***************************************/

.top_txtarea {
	padding: 0 0 50px 0;
}
.top_txtarea .top_title {
	font-size: 2.2rem;
	letter-spacing: 0.05em;
	line-height: 1.5;
	color: #E71B29;
	padding: 0 20px 0 0;
}
.top_txtarea .top_txt {
	line-height: 1.5;
	padding: 5px 20px 0 0;
}

@media screen and (max-width: 560px) {
	.top_txtarea {
		padding: 0 0 30px 0;
	}
	.top_txtarea .top_title {
		font-size: 2rem;
		font-weight: bold;
	}
}


/****************************************
 * 取り扱い商品
*****************************************/

ul.products_list {
	overflow: hidden;
	margin: 40px 0 0;
	border-left: 1px solid #DFDFDF;
	border-top: 1px solid #DFDFDF;
}
ul.products_list li {
	float: left;
	width: 25%;
	border-right: 1px solid #DFDFDF;
	border-bottom: 1px solid #DFDFDF;
	font-size: 1.8rem;
	/*text-align: center;*/
}
ul.products_list li a {
	display: block;
	padding: 25px 0 25px 20px;
	color: #444;
	background: #FFF;
}
ul.products_list li a:hover {
	opacity: 1;
	color: #E61A28;
}
ul.products_list li .icon_products {
	display: inline-block;
	width: 30px;
	height: 30px;
	margin: 0 10px 0 0;
	vertical-align: -5px;
}

@media screen and (max-width: 1024px) {
	ul.products_list li {
		font-size: 1.4rem;
	}
	ul.products_list li a {
		padding: 25px 0 25px 18px;
	}
}
@media screen and (max-width: 768px) {
	ul.products_list li {
		width: 50%;
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 560px) {
	ul.products_list li {
		text-align: left;
	}
}
@media screen and (max-width: 430px) {
	ul.products_list li {
		width: 100%;
		text-align: left;
	}
	ul.products_list li a {
		font-weight: bold;
	}
}

/****************************************
 * パンくず
*****************************************/

.breadcrumbs {
	text-align: right;
	margin: 60px auto 50px;
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	color: #777;
}
.breadcrumbs ul {
	display: flex;
	justify-content: flex-end;
    align-items: center;
}
.breadcrumbs ul li {
	padding-right: 18px;
	position: relative;
}
.breadcrumbs ul li:last-child {
	padding-right: 0;
}
.breadcrumbs ul li:after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 10px;
	height: 10px;
	margin: 0;
	border-top: 1px solid #1F1F1F;
	border-right: 1px solid #1F1F1F;
}
.breadcrumbs ul li:last-child:after {
	content: none;
}
.breadcrumbs ul li.home:before {
	content: none !important;
}
.breadcrumbs ul li a.home span {
	display: inline-block;
	background: url(images/common/nav_home_red.png) no-repeat;
    background-size: 100%;
	background-position: center;
    width: 18px;
    height: 18px;
    margin-right: 6px;
}

@media screen and (max-width: 768px) {
	.breadcrumbs {
		display: none;
	}
}


/*********************************
 * 工事の流れのテンプレート
 * ******************************/

.p_construction_area {
	margin: 80px 0 0 0;
	padding: 0 0 80px;
}
.p_construction_area .flow_img {
	padding: 30px 0 0 0;
	text-align: center;
}
.p_construction_area .flow_img {
	padding: 30px 0 0 0;
	text-align: center;
}
.p_construction_area .flow_sub_title {
	font-size: 1.8rem;
	font-weight: bold;
	padding: 40px 0 25px 25px;
	background: url(images/common/title_redline.webp) no-repeat left 48px;
	background-size: 10px 3px;
}
.p_construction_area .flow_sub_title span {
	font-size: 1.5rem;
}
.p_construction_area ul.flow_list {
	margin: 0 0 0 0;
	line-height: 1.7;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
}
.p_construction_area ul.flow_list li {
	width: calc(100% / 3 - 22px);
	padding: 30px;
	margin: 0 22px 20px 0;
	border: 1px solid #DDD;
	box-shadow: 2px 2px 3px #EDEDED;
	min-height: 250px;
	border-radius: 6px;
	position: relative;
}
.p_construction_area ul.flow_list li:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	right: -19px;
	transform: translateY(-50%);
	background: url(images/common/flow_arrow.png.webp) no-repeat;
	background-size: 100%;
	width: 12px;
	height: 15px;
}
.p_construction_area ul.flow_list li:nth-child(3n):before,
.p_construction_area ul.flow_list li:last-child:before {
	content: none;
}
.p_construction_area ul.flow_list li .flow_title {
	text-align: center;
	color: #ed1b2e;
	font-weight: bold;
}
.p_construction_area ul.flow_list li .flow_title span {
	font-family: 'Oswald';
	font-size: 1.2rem;
	font-weight: normal;
}
.p_construction_area ul.flow_list li .flow_txt {
	font-size: 1.5rem;
	padding: 10px 0 0 0;
}
.p_construction_area ul.flow_list li .cau_txt {
	font-size: 1.3rem;
	padding: 10px 0 0 0;
	color: #ed1b2e;
}
.p_construction_area .staff_txt_box {
	position: relative;
	margin: 30px 0 0 0;
	background: #c6dbe8;
	border: 1px #004b79 solid;
	padding: 40px 50px;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
}
.p_construction_area .staff_txt_box .ill {
	position: absolute;
	left: -50px;
	top: -20px;
}
.p_construction_area .staff_txt_box .ill img {
	width: 80px;
}
.p_construction_area .staff_txt_box .staff_txt_title {
	color: #004b79;
	font-weight: bold;
}
.p_construction_area .staff_txt_box .staff_txt {
	line-height: 1.8;
	padding: 15px 0 0 0;
	font-size: 1.8rem;
}

@media screen and (max-width: 560px) {
	.p_construction_area {
		margin: 0 0 0 0;
		padding: 0 0 0;
	}
	.construction_title {
		float: none;
		padding: 0 0 5px;
		font-size: 1.8rem;
		font-weight: bold;
		text-align: center;
		line-height: 1.5;
		border-radius: 0;
		padding: 15px;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
	}
	.p_construction_area .flow_img {
		display: none;
	}
	.p_construction_area .flow_sub_title {
		font-size: 1.6rem;
		font-weight: bold;
		text-align: center;
		padding: 15px 0 15px 0;
		background: none;
		line-height: 1.6;
	}
	.p_construction_area .flow_sub_title span {
		font-size: 1.3rem;
	}
	.p_construction_area ul.flow_list {
		margin: 0 0 0 0;
		padding: 0 0 0 0;
		line-height: 1.7;
		flex-direction: column;
		border: none;
		box-shadow: none;
		min-height: inherit;
		border-radius: 0;
		border-bottom: 1px #FBD5DD solid;
	}
	.p_construction_area ul.flow_list li {
		width: 100%;
		padding: 0;
		margin: 0;
		border: none;
		box-shadow: none;
		min-height: inherit;
		border-radius: 0px;
		-webkit-border-radius: 0px;
		-moz-border-radius: 0px;
		border-bottom: 1px #FBD5DD solid;
	}
	.p_construction_area ul.flow_list li:before {
		content: none;
	}
	.p_construction_area .flow_list li.col3 {
		width: auto;
	}
	.p_construction_area .flow_list li:first-child .flow_title {
		border-top: 1px #FBD5DD solid;
	}
	.p_construction_area ul.flow_list li .flow_title {
		text-align: left;
		color: #444;
		font-weight: bold;
		padding: 15px 35px 15px 15px;
		margin: 0 0 0 0;
	}
	.p_construction_area .flow_list li .flow_title span {
		font-family: 'Oswald';
		font-size: 1.2rem;
		font-weight: normal;
		margin: 3px 0 5px 0;
		float: left;
		width: 55px;
		display: inline-block;
		display: block;
		color: #ed1b2e;
	}
	.p_construction_area .flow_list li .flow_txt {
		font-size: 1.5rem;
		padding: 15px 0 0 0;
	}
	.p_construction_area .flow_list li .cau_txt {
		font-size: 1.3rem;
		padding: 15px 0 0 0;
		color: #ed1b2e;
	}
	.p_construction_area .flow_list li .sp_more_area02 {
		box-shadow: 0 3px 3px -2px #CCC inset;
		padding: 12px 0;
	}
	.p_construction_area .staff_txt_box {
		margin: 70px 0 30px 0;
		background: #c6dbe8;
		border: 1px #004b79 solid;
		padding: 40px 15px 15px 15px;
	}
	.p_construction_area .staff_txt_box .ill {
		position: absolute;
		left: 50%;
		top: -50px;
		margin-left: -30px;
	}
	.p_construction_area .staff_txt_box .ill img {
		width: 60px;
	}
	.p_construction_area .staff_txt_box .staff_txt_title {
		text-align: center;
	}
	.p_construction_area .staff_txt_box .staff_txt {
		line-height: 1.7;
		font-size: 1.5rem;
		padding: 15px 0 0 0;
	}
}


/*********************************
 * ナビゲーション
 * ******************************/

nav.navigation {
	overflow: hidden;
	float: none;
	max-width: 100%;
	text-align: center;
	padding: 0;
	margin: 50px 0 0;
}
nav.navigation a {
	text-decoration: none;
	color: #251E1F;
}
nav.navigation > div {
	width: 30%;
}
nav.navigation h2.screen-reader-text {
	display: none;
}
nav.navigation .nav-links {
	width: 100%;
	display: block;
	font-size: .8em;
}
nav.navigation .nav-links span.current {
	display: inline-block;
    color: #999;
    background: #ededed;
    margin: 0 15px;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 40px;
}
nav.navigation .nav-links a.page-numbers {
	display: inline-block;
    color: #FFF;
    background: #ed1b2e;
    margin: 0 15px;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 40px;
}
nav.navigation .nav-links a:hover {
	display: inline-block;
}
nav.navigation .nav-links a.page-numbers:hover {
	opacity: .7;
}
nav.navigation .nav-links a.prev,
nav.navigation .nav-links a.next {
	width: auto;
	float: none;
	color: #ed1b2e;
	background: #FFF;
	margin: 0;
}
nav.navigation .nav-links a.prev {
	margin: 0 6px 0 0;
}
nav.navigation .nav-links a.next {
	margin: 0 0 0 6px;
}


@media screen and (max-width: 560px) {
	nav.navigation {
		margin: 30px 0 0;
		padding-bottom: 30px;
	}
}



/*********************************
 * 下部バナー
 * ******************************/

ul.p-bnr_item li {
	margin-top: 18px;
}

@media screen and (max-width: 560px) {
	.p-bnr {
		padding: 0;
	}
}


/*********************************
 * 下部お問い合わせ
 * ******************************/

.common_contact_title { /*問い合わせページも共有*/
	margin: 0 0 30px;
	padding: 30px;
	background: #004b79;
	box-shadow: 2px 2px 2px #BEBEBE;
	text-align: center;
	font-size: 2.2rem;
	letter-spacing: 0.15em;
	color: #fff;
}
.common_contact .contact_spnon_flex {
	display: flex;
	align-items: center;
	justify-content: space-around;
}
.common_contact .contact_spnon_flex .contact_logo {
	width: 305px;
	padding-right: 50px;
	border-right: 1px dotted #999;
}

@media screen and (max-width: 560px) {
	.common_contact_title {
		margin: 0;
		font-size: 1.5rem;
		font-weight: bold;
		line-height: 1.6;
	}
}
@media screen and (max-width: 430px) {
	.common_contact_title {
		padding: 20px;
	}
}

/*********************************
 * フッター
 * ******************************/

footer {
	border-top: 3px solid #ed1b2e;
}
footer .f_sitemap {
	padding: 60px 0;
	background: #F6F6F8;
	box-shadow: 0 5px 5px -2px #BEBEBE inset;
}
footer .footer_flex {
	display: flex;
}
footer ul.footer_list {
	padding-right: 90px;
}
footer .list01 {
	padding: 0 120px 0 0;
	min-width: 220px;
}
footer .list02 {
	padding: 0 120px 0 0;
	min-width: 390px;
}
footer .list03 {
	padding: 0 !important;
	max-width: 580px;
}
footer ul.footer_list li {
	font-size: 1.4rem !important;
	line-height: 2.5 !important;
}
footer ul.footer_list li::before {
	display: inline-block;
	margin: 0 5px 0 48px;
	content: "-";
}
footer .list05 li::before, footer .list06 li::before {
	margin: 0 5px 0 30px;
}
footer ul.footer_list .parent {
	padding: 0 0 0 26px;
	line-height: 3;
	position: relative;
}
footer ul.footer_list .parent::before {
	content: "" !important;
	display: inline-block !important;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 10px;
	height: 10px;
	margin: 0;
	border-top: 3px solid #ed1b2e;
	border-right: 3px solid #ed1b2e;
}
footer ul.footer_list li.child {
	font-size: 1.4rem !important;
	line-height: 2.5 !important;
	position: relative;
}
footer ul.footer_list li.child::before {
	content: "-";
	display: inline-block;
	margin: 0 5px 0 48px;
}
footer ul.footer_list li.child ul.gchild {
	padding: 0 0 0 6em;
	line-height: 3;
	position: relative;
	display: flex;
    flex-wrap: wrap;
}
footer ul.footer_list li.child ul.gchild li {
	display: inline-block;
	width: calc(100% / 2 - 12px);
    margin-right: 24px;
}
footer ul.footer_list li.child ul.gchild li:nth-child(even) {
	margin-right: 0;
}
footer ul.footer_list li.child ul.gchild li::before {
	content: "・";
	display: inline-block;
	margin: 0 5px 0 -19px;
}
footer ul.footer_list li a {
	color: #666;
}
footer .f_btm {
	padding: 60px 0 120px;
}
footer ul.f_btm_list {
	float: left;
}
footer ul.f_btm_list li {
	float: left;
	font-size: 1.4rem;
}
footer ul.f_btm_list li:first-child {
	margin: 0 7px 0 0;
	padding: 0 5px 0 0;
	border-right: 1px solid #666;
}
footer ul.f_btm_list li a {
	color: #666;
}
footer .copy {
	float: right;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1rem;
}

.totop {
	display: none;
}


@media screen and (max-width: 1024px) {
	footer .list01 {
		min-width: 190px;
	}
	footer .list02 {
		min-width: 320px;
	}
	footer ul.footer_list {
		padding-right: 30px;
	}
	footer ul.footer_list li::before {
		margin: 0 5px 0 34px;
	}
}
@media screen and (max-width: 768px) {
	footer .footer_flex {
		flex-wrap: wrap;
	}
	footer .list01 {
		min-width: 250px;
	}
	footer .list02 {
		min-width: 380px;
	}
}
@media screen and (max-width: 560px) {
	footer {
		padding: 30px 0;
	}
	footer .f_btm {
		padding: 0;
	}
	footer .copy {
		text-align: center;
	}
	
	.totop {
		display: block;
		text-align: center;
		position: relative;
		bottom: -18px;
		z-index: 1;
	}
	.totop a:hover,
	.totop img:hover {
		opacity: 1;
	}
}
@media screen and (max-width: 430px) {
	footer {
		padding: 30px 0 120px;
	}
}


/* 常時問い合わせ
 * ***************************************/

#page_top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 1;
}
#page_top a:hover {
	opacity: .7;
}


/* スマホ時常時問い合わせ
 * ***************************************/

#CONTACT_BTN {
	display: none;
}

@media screen and (max-width: 560px) {
	.spfixed_contact {
		overflow: hidden;
		padding: 0;
		width: 100%;
	}
	#CONTACT_BTN {
		display: block;
		background-color: rgba(0, 0, 0, 0.6);
		height: auto;
		padding: 0px;
		position: fixed;
		left: 0;
		bottom: 0;
		width: 100%;
		height: auto;
		text-align: center;
		z-index: 110;
	}
	#CONTACT_BTN .center {
		width: 100%;
		margin: 0 auto;
	}
	#CONTACT_BTN .CONTACT_flex {
		display: flex;
		justify-content: space-between;
	}
	#CONTACT_BTN .l_btn, #CONTACT_BTN .r_btn {
		width: calc(100% / 2);
		padding: 10px 10px;
	}
	#CONTACT_BTN .r_btn a, #CONTACT_BTN .l_btn a {
		font-size: 14px;
		line-height: 18px;
		padding: 10px 5px 8px;
		-webkit-border-radius: 5px;
		border: none;
		color: #fff;
		font-weight: bold;
		font-family: "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", sans-serif;
	}
	#CONTACT_BTN a.consultation {
		display: block;
		background: #e74519;
		-webkit-box-shadow: 0 3px #662424;
		border-bottom: 1px solid #e74519;
	}
	#CONTACT_BTN a.inexperience {
		display: block;
		background: #13ab56;
		-webkit-box-shadow: 0 3px #003417;
		border-bottom: 1px solid #13ab56;
	}
}
@media screen and (max-width: 320px) {
	#CONTACT_BTN .l_btn,
	#CONTACT_BTN .r_btn {
		padding: 10px 6px;
	}
	#CONTACT_BTN .r_btn a,
	#CONTACT_BTN .l_btn a {
		font-size: 12px;
	}
}


/*********************************
 * テーブル
 * ******************************/

table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #EDEDED;
	line-height: 1.8;
	letter-spacing: 0.05em;
}
table tr {
	border-bottom: 1px solid #EDEDED;
}
table th {
	padding: 25px;
	width: 25%;
	border-right: 1px solid #EDEDED;
	font-weight: normal;
	text-align: left;
	vertical-align: top;
}
table td {
	padding: 20px;
	text-align: left;
	vertical-align: top;
}
ul {
	list-style: none;
}
.list {
	list-style: disc;
}
.list li {
	margin: 10px 0 0 17px;
}
.num_list {
	list-style: decimal;
}
.num_list li {
	margin: 10px 0 0 20px;
}

.btn {
	line-height: 1;
}
.btn a {
	display: block;
	position: relative;
	/*
	z-index: 2;
	*/
	overflow: hidden;
	width: 40%;
	padding: 22px 15px 19px;
	font-weight: bold;
	letter-spacing: 0.05em;
	text-align: center;
}
.btn a::before, .btn a::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.btn a, .btn a::before, .btn a::after {
	-webkit-transition: all .7s;
	transition: all .7s;
}
.btn a:hover {
	opacity: 0.8;
}
.btn.center a {
	margin: 0 auto;
}
.btn.left a {
	margin: 0 auto;
}
.btn.right a {
	margin: 0 0 0 auto;
}
.btn.red a {
	color: #fff;
	background: #ed1b2e;
	border-bottom: 3px solid #89111c;
}
.btn.green a {
	color: #fff;
	background: #004b79;
	border-bottom: 3px solid #00253b;
}
.btn_maker .btn.maker a {
	margin: 0 auto;
	text-align: center;
	color: #FFF;
	background: #ed1b2e;
	border-bottom: 3px solid #89111c;
}
.btn.blue a {
	color: #fff;
	background: #00C6C5;
	border: 1px solid #00C6C5;
	-webkit-box-shadow: 5px 5px 0px 0px rgba(156, 217, 202, 1);
	-moz-box-shadow: 5px 5px 0px 0px rgba(156, 217, 202, 1);
	box-shadow: 5px 5px 0px 0px rgba(156, 217, 202, 1);
}
.btn.gray a {
	color: #fff;
	background: #999;
	border: 1px solid #999;
	-webkit-box-shadow: 5px 5px 0px 0px #bbb;
	-moz-box-shadow: 5px 5px 0px 0px #bbb;
	box-shadow: 5px 5px 0px 0px #bbb;
}
.btn.white a {
	color: #fff;
	background: #ed1b2e;
	border-bottom: 3px solid #89111c;
}
.btn.arrow01 a {
	background: url(../img/icon_arrow01.png) no-repeat 95% 50%;
	background-size: 11px 11px;
}
.btn.arrow02 a {
	background: url(../img/icon_arrow_red.png) no-repeat 95% 50%;
	background-size: 11px 11px;
}
.overflow_txt {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}


/* 検索ボックス
 * *******************************/

.searchform input#s {
	width: calc(100% - 55px);
	font-size: 1.3rem;
    padding: 8px;
	border: 1px solid;
	outline: none;
	transition: .5s;
}
.searchform input#s:focus,
.searchform input#s:active {
    background: #FFF;
	outline: none;
	border: 1px solid red;
}
.searchform button.search_btn {
	overflow: visible;
	width: auto;
	padding: 0;
	margin: 0;
	background: none;
	border: 0;
	font-size:0;
	line-height: 0;
	vertical-align: middle;
	cursor: pointer;
}
.searchform button.search_btn.txt {
	display: inline-block;
	background: #ed1b2e;
	color: #FFF;
	box-shadow: 0 4px 0 0 #C6101F;
	min-width: 100%;
	width: 100%;
	margin: 18px auto 0;
	padding: 18px 30px;
	border-radius: 4px !important;
	transform: translateY(-4px);
	text-decoration: none;
	font-size: 1.8rem;
	line-height: 1;
	transition: 0.5s;
}
.searchform button.search_btn.txt:hover {
	box-shadow:0 2px 0 0 #C6101F;
}
