@charset "UTF-8";
/*
skeltone.css

文字色：#111111
グレー：#
ターコイズ：#00A8C6
黄色：#FFF100
*/


/**
* Common
*********************************************************/

.inner {
	width: auto;
	margin: 0 auto;
	position: relative;
}
main.aside article .inner {
	width: 100%;
}
@media screen and (min-width: 1200px) {
	.inner.wide { width: 1200px; }
}
@media screen and (min-width: 1000px) {
	.inner { width: 1000px; }
}
@media screen and (max-width: 999px) {
	.inner {
		overflow-x: hidden;
	}
}
@media screen and (max-width: 567px) {
	.inner {
		margin-left: 5px;
		margin-right: 5px;
	}
}



/**
* Header
*********************************************************/
body > header {
	background-color: #fff;
}
body > header .desc {
	display: block;
	background-color: #00a8c5;
	font-size: 14px;
	color: #fff;
	text-align: center;
	padding: 4px 0;
}
body > header .logo {
	width: 300px;
}
body > header h1 {
	text-indent: -200%;
	white-space: nowrap;
	overflow: hidden;
	margin-bottom: 4px;
}
body > header h1 a {
	display: block;
	height: 73px;
	background: url(../images/header_logo.png) no-repeat 0 0;
}
body > header .logo span {
	display: block;
	font-size: 13px;
	text-align: center;
}
body > header .contact {
	position: absolute;
	top: 10px;
	right: 0;
}
body > header .contact a {
	color: #00a8c5;
	font-family: "Oswald", sans-serif;
	font-weight: 700;
	font-size: 40px;
	line-height: 1.1;
	padding-left: 45px;
	background: url(../images/common_ico_phone.png) no-repeat 0 50%;
}
body > header .certified,
body > header.fixed {
	display: none;
}
@media all and (min-width: 1000px) {
	body > header > .inner {
		padding: 17px 0;
	}
	body > header .desc p {
		display: inline;
		padding-left: 25px;
		background: url(../images/common_ico_chain.png) no-repeat 0 50%;
	}
	body > header .certified {
		display: block;
		position: absolute;
		top: 10px;
		right: 0;
		font-size: 12px;
	}
	/*固定ヘッダ*/
	body > header.fixed {
		display: block;
		border-top: 3px solid #00a8c5;
		position: fixed;
		width: 100%;
		top: -70px;
		left: 0;
		right: 0;
		z-index: 100;
		box-shadow: 0 1px 3px rgba(0,0,0,0.5);
		-webkit-transition: all 0.3s;
		-moz-transition: all 0.3s;
		transition: all 0.3s;
	}
	body > header.fixed.on {
		top: 0;
	}
	body > header.fixed .desc,
	body > header.fixed .certified {
		display: none;
	}
	body > header.fixed .inner {
		padding: 7px 0;
	}
	body > header.fixed .logo {
		width: 365px;
	}
	body > header.fixed h1 a {
		background: url(../images/header_logo_small.png) no-repeat 0 0;
		height: 45px;
	}
}
@media all and (max-width: 999px) {
	body > header h1 {
		margin-bottom: 0;
		padding: 8px;
	}
	body > header h1 a {
		height: 50px;
		background-size: contain;
		background-position: 0 50%;
	}
}
@media all and (max-width: 567px) {
	body > header {
		position: relative;
		box-shadow: 0 1px 1px rgba(0,0,0,0.5);
	}
	body > header .desc {
		text-align: left;
		line-height: 1.0;
		font-size: 10px;
		padding-left: 0.5em;
	}
	body > header h1 {
		padding: 1px 4px;
	}
	body > header h1 a {
		width: 150px;
	}
}


/**
* Navigation
*********************************************************/
nav#gnavi {
	display: none;
	position: absolute;
	bottom: 18px;
	right: 0;
	width: 580px;
}
@media screen and (min-width: 1000px) {
	nav#gnavi {
		display: block;
	}
}
nav#gnavi ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
nav#gnavi li {
	width: 20%;
	-webkit-flex-basis: 20%;
	flex-basis: 20%;
}
nav#gnavi li a {
	display: block;
	text-align: center;
	color: #111111;
	font-size: 22px;
	line-height: 24px;
	padding-top: 2px;
	font-weight: bold;
	border-left: 2px solid #00a8c5;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
nav#gnavi li a.smaller {
	font-size: 17px;
}
nav#gnavi li:last-child a {
	border-right: 2px solid #00a8c5;
}
nav#gnavi li a:hover,
nav#gnavi li a:focus {
	color: #fff;
	background-color: #00a8c5;
}


/**
* Navigation - SP
*********************************************************/
@media all and (min-width: 768px), print {
	nav#spnavi { display: none; }
}
nav#spnavi > ul {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	background-color: #00A8C6;
	z-index: 100;
	box-shadow: 0 -1px 1px rgba(0,0,0,0.2);
}
nav#spnavi,
nav#spnavi a { color: #fff; }
nav#spnavi > ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
nav#spnavi > ul > li {
	width: 20%;
	-webkit-flex-basis: 20%;
	flex-basis: 20%;
}
nav#spnavi > ul > li > a,
nav#spnavi > ul > li > span {
	display: block;
	height: 70px;
	text-align: center;
	line-height: 1.0;
	font-size: 10px;
	position: relative;
}
nav#spnavi > ul > li > a::before,
nav#spnavi > ul > li > span::before {
	font-family: "FontAwesome";
	font-size: 35px;
	line-height: 50px;
	display: block;
	width: 100%;
	height: 49px;
	position: relative;
}
nav#spnavi > ul > li.menu > a,
nav#spnavi > ul > li.menu > span { background-color: #00878E; }
nav#spnavi > ul > li.menu > a::before,
nav#spnavi > ul > li.menu > span::before { content:"\f0c9"; }
nav#spnavi > ul > li.flow > a::before,
nav#spnavi > ul > li.flow > span::before { content: "\f0d1"; }
nav#spnavi > ul > li.quote > a::before,
nav#spnavi > ul > li.quote > span::before { content: "\f157"; top: 3px; }
nav#spnavi > ul > li.voice > a::before,
nav#spnavi > ul > li.voice > span::before { content: "\f27a"; }
nav#spnavi > ul > li.gotop > a::before,
nav#spnavi > ul > li.gotop > span::before { content: "\f0aa"; }
@media all and (max-width: 360px){
	nav#spnavi > ul > li > a,
	nav#spnavi > ul > li > span {height: calc( 100vw / 5 ); }
	nav#spnavi > ul > li.gotop > a::before,
	nav#spnavi > ul > li.gotop > span::before { font-size: 9vw; }
}
nav#spnavi .submenu {
	position: fixed;
	top: 100vh;
	left: 0;
	right: 0;
	width: 100vw;
	height: 100vh;
	z-index: 90;
	background-color: rgba(0,0,0,0.9);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
nav#spnavi .submenu ul {
	background-color: rgba(0,0,0,0.9);
}
nav#spnavi .submenu ul:nth-of-type(1) {
	border-top: 5px solid #00A8C6;
}
nav#spnavi .submenu ul:last-child {
	margin-bottom: 150px;
}
nav#spnavi .submenu li {
	border-bottom: 1px solid #00A8C6;
}
nav#spnavi .submenu a {
	color: rgba(255,255,255,0.9);
	display: block;
	font-weight: bold;
	padding: 15px 0 15px 15px;
	background-repeat: no-repeat;
	background-position: 4px 11px;
	background-size: 45px auto;
}
nav#spnavi .submenu a::before {
	font-family: "FontAwesome";
	content: "\f0da";
	margin-right: 6px;
}


/**
* Main
*********************************************************/
@media screen and (min-width: 768px) {
	main.aside > .inner,
	.inner.aside {
		display: -webkit-box;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
	}
	.aside article {
		width: 72%;
		-webkit-flex-basis: 72%;
		flex-basis: 72%;
	}
	.aside aside {
		width: 24%;
		-webkit-flex-basis: 24%;
		flex-basis: 24%;
	}	
}



/**
* Article
*********************************************************/
article {
	margin-bottom: 120px;
}


/**
* Sidebar
*********************************************************/
aside {}



/**
* Footer
*********************************************************/
footer {
	padding: 20px 0 0;
	background-color: #000;
	color: #fff;
	border-top: 16px solid #898989;
	position: relative;
}
@media screen and (min-width: 568px) {
	footer .inner {
		background: url(../images/footer_bg.jpg) no-repeat top right;
	}
	footer .inner::after {
		content: "";
		display: block;
		width: 400px;
		height: 170px;
		background: url(../images/footer_deco_message.png) no-repeat 0 0;
		position: absolute;
		bottom: 0;
		right: -50px;
	}
}
/*見積りフォームページのみ例外処理*/
.page-form footer .inner {
	background-image: none;
}
.page-form footer .inner::after {
	display: none;
}
.page-form #footer_logo {
	text-align: center;
}
footer a {
	color: #fff;
}
footer::before {
	content: "";
	display: block;
	width: 50%;
	height: 16px;
	background-color: #00A8C6;
	position: absolute;
	top: -16px;
	left: 0;
}
#footer_sitemap a {
	font-weight: bold;
}
#footer_sitemap a::before {
	content: "□";
	color: #00A8C6;
	font-size: 160%;
	margin-right: 5px;
}
#footer_logo {
	padding: 10px 0 30px;
}
#footer_contact {
	width: 500px;
	padding-left: 15px;
	border-left: 6px solid #00A8C6;
}
#footer_contact span {
	display: inline-block;
	margin-right: 1em;
}


footer .copyright {
	text-align: center;
	padding: 8px 0;
	font-size: 12px;
}

@media screen and (min-width: 568px) {
	#footer_sitemap {
		display: -webkit-box;
		display: -webkit-flex;
		display: flex;
		margin-bottom: 20px;
	}
	#footer_sitemap > li {
		width: 35%;
		-webkit-flex-basis: 35%;
		flex-basis: 35%;
	}
}
@media screen and (max-width: 567px) {
	footer {
		padding-bottom: 80px;
	}
	#footer_sitemap {
		margin-left: 2em;
		margin-bottom: 1.5em;
	}
	#footer_logo {
		text-align: center;
		padding-bottom: 15px;
	}
	#footer_logo img {
		width: 60%;
		height: auto;
		display: block;
		margin: 0 auto;
	}
}
@charset "UTF-8";
/**
 * module.css
 */

/**
* Common
*********************************************************/
section {
  padding: 0 0 35px;
  margin-bottom: 35px;
}
section > h2,
section .inner > h2 {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
section  > h2 i,
section .inner > h2 i {
  display: block;
  font-size: 25px;
  color: #00a8c5;
}
section  > h2 i span,
section .inner > h2 i span {
  border-bottom: 3px solid #00a8c5;
}
section > h2 > span,
section .inner > h2 > span {
  display: block;
  font-size: 14px;
}
.aside section h2 {
  text-align: left;
}
.sleeve a {
  display: block;
  margin: 0 auto;
  width: 70%;
  text-align: center;
  background-color: #00a8c5;
  color: #fff;
  font-size: 25px;
  padding: 5px 0 0;
  border-radius: 4px;
}

.banner img {
  display: block;
  width: 100%;
  height: auto;
}


/* ------------------------------------------------
// カラムレイアウト
// -----------------------------------------------*/
.cols {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cols > li,
.cols > div {
  position: relative;
}
.cols li > a {
  display: block;
}

@media screen and (min-width: 1200px) {
  .cols { margin: 0 -10px; }
  .cols.nomargin { margin: 0; }
  .cols li > a,
  .cols li > div { margin: 10px }
  .cols.nomargin li > a,
  .cols.nomargin li > div { margin: 0; }
}
@media screen and (max-width: 1199px) {
  .cols li > a,
  .cols li > div { padding: 8px }
  .cols.nomargin li > a,
  .cols.nomargin li > div { margin: 0; }
}

@media screen and (min-width: 1000px) {
  .col2 > li,
  .col2 > div {
    width: 50%;
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }
  .col3 > li,
  .col3 > div {
    width: 33.33%;
    -webkit-flex-basis: 33.33%;
    flex-basis: 33.33%;
  }
  .col4 > li,
  .col4 > div {
    width: 25%;
    -webkit-flex-basis: 25%;
    flex-basis: 25%;
  }
  .col5 > li,
  .col5 > div {
    width: 20%;
    -webkit-flex-basis: 20%;
    flex-basis: 20%;
  }
  .col6 > li,
  .col6 > div {
    width: 16.666%;
    -webkit-flex-basis: 16.666%;
    flex-basis: 16.666%;
  }
  .col7 > li,
  .col7 > div {
    width: 14.2857%;
    -webkit-flex-basis: 14.2857%;
    flex-basis: 14.2857%;
    font-size: 80%;
  }
  .col8 > li,
  .col8 > div {
    width: 12.5%;
    -webkit-flex-basis: 12.5%;
    flex-basis: 12.5%;
    font-size: 80%;
  }
}
@media screen and (min-width: 568px) and (max-width: 999px) {
  .tab2 > li,
  .tab2 > div {
    width: 50%;
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }
  .tab3 > li,
  .tab3 > div {
    width: 33.33%;
    -webkit-flex-basis: 33.33%;
    flex-basis: 33.33%;
  }
  .tab4 > li,
  .tab4 > div {
    width: 25%;
    -webkit-flex-basis: 25%;
    flex-basis: 25%;
  }
  .tab5 > li,
  .tab5 > div {
    width: 20%;
    -webkit-flex-basis: 20%;
    flex-basis: 20%;
  }
  .tab6 > li,
  .tab6 > div {
    width: 16.666%;
    -webkit-flex-basis: 16.666%;
    flex-basis: 16.666%;
  }
  .tab7 > li,
  .tab7 > div {
    width: 14.2857%;
    -webkit-flex-basis: 14.2857%;
    flex-basis: 14.2857%;
    font-size: 80%;
  }
  .tab8 > li,
  .tab8 > div {
    width: 12.5%;
    -webkit-flex-basis: 12.5%;
    flex-basis: 12.5%;
    font-size: 80%;
  }
}
@media screen and (max-width: 567px) {
  .sp2 > li,
  .sp2 > div {
    width: 50%;
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }
  .sp3 > li,
  .sp3 > div {
    width: 33.33%;
    -webkit-flex-basis: 33.33%;
    flex-basis: 33.33%;
  }
  .sp4 > li,
  .sp4 > div {
    width: 25%;
    -webkit-flex-basis: 25%;
    flex-basis: 25%;
  }
  .sp5 > li,
  .sp5 > div {
    width: 20%;
    -webkit-flex-basis: 20%;
    flex-basis: 20%;
  }
  .sp6 > li,
  .sp6 > div {
    width: 16.666%;
    -webkit-flex-basis: 16.666%;
    flex-basis: 16.666%;
  }
  .sp7 > li,
  .sp7 > div {
    width: 14.2857%;
    -webkit-flex-basis: 14.2857%;
    flex-basis: 14.2857%;
    font-size: 80%;
  }
  .sp8 > li,
  .sp8 > div {
    width: 12.5%;
    -webkit-flex-basis: 12.5%;
    flex-basis: 12.5%;
    font-size: 80%;
  }
}


/* ------------------------------------------------
// タイル
// -----------------------------------------------*/
.tile a,
.tile span {
    display: block;
}
@media screen and (min-width: 568px) {
    .tile {}
    .tile a,
    .tile span {
        padding: 8px;
        text-decoration: none;
    }
    .tile h3 {
      font-size: 16px;
      line-height: 1.3;
      margin-bottom: 4px;
    }
    .tile .pic {
      position: relative;
      overflow: hidden;
    }
    .tile .desc {
      color: #111;
    }
    .tile .desc h3 {
      font-weight: bold;
      font-size: 22px;
    }
    .tile .desc h3 i {
      font-size: 12px;
      color: #aaa;
    }
    .tile .desc p {
      line-height: 1.4;
      text-align: justify;
    }
    .tile .meta {
      display: -webkit-box;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
      justify-content: space-between;
    }
    .tile .meta {
      font-size: 20px;
      position: relative;
      padding-bottom: 5px;
    }
    .tile .meta::after {
      content: "";
      display: block;
      height: 5px;
      background-color: #b6b6b6;
      position: absolute;
      bottom: 0;
      right: 0;
      left: 0;
    }
    .tile .meta .date {
      color: #b6b6b6;
    }
    .tile .meta a {
      color: #00a8c5;
    }
    .tile .meta a::after {
      content: "\f138";
      font-family: "FontAwesome";
      margin-left: 6px;
    }
}
@media screen and (max-width: 567px) {
    .tile {
        width: 100%;
        position: relative;
        padding-bottom: 8px;
        margin-bottom: 10px;
        border-bottom: 1px dashed #999;
    }
    .tile > a,
    .tile > span {
      display: -webkit-box;
      display: -webkit-flex;
      display: flex;
      color: #111;
    }
    .tile .pic {
        width: 20%;
        -webkit-flex-basis: 20%;
        flex-basis: 20%;
        margin-right: 18px;
    }
    .tile .desc {
      flex: 1;
    }
    .tile .meta {
        position: absolute;
        bottom: 0;
        right: 0;
    }
}


/**
* brick 汎用レイアウトボックス
*********************************************************/
.brick {
  margin-bottom: 40px;
}
.brick:last-child  {
  margin-bottom: 0;
}
/*通常ブロック*/


/*強調ブロック*/
.brick.strong {
  font-weight: bold;
}


/*見出し*/
.brick.midashi h3 {
  font-weight: bold;
  font-size: 28px;
  text-align: center;
  padding-bottom: 80px; 
}
.brick.midashi h3 span {
  padding-bottom: 70px;
  background: url(../images/common_line_beak.png) no-repeat 50% 100%;
}




/*写真＋テキスト*/
.brick.withpic {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  position: relative;
}
.brick.withpic:nth-child(2n) {
  flex-direction: row-reverse;
}
.brick.withpic .pic {
  width: 350px;
  -webkit-flex-basis: 350px;
  flex-basis: 350px;
  margin-left: 40px;
  position: relative;
}
.brick.withpic:nth-child(2n) .pic {
  margin-left: 0; 
  margin-right: 40px; 
}
.brick.withpic .pic > div {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 350px;
}
.brick.withpic .desc {
  flex: 1;
}


/**
* List
*********************************************************/
.list.bike li a {
    color: #111;
}
.list li .pic {
    margin-bottom: 10px;
}
.list li .desc {
    font-size: 14px;
    padding-bottom: 25px;
}
.list li .pic img {
    width: 100%;
    height: auto;
    display: block;
}
.list li .desc h3 {
    font-weight: bold;
    font-size: 1.3rem;
    line-height: 1.2;
    margin-bottom: 6px;
}
@media screen and (min-width: 1000px) {
    .list {
        margin-left: -8px;
        margin-right: -8px;
        margin-bottom: 70px;
    }
}
@media screen and (min-width: 768px) {
    .list li {
        position: relative;
        margin-bottom: 30px;
        width: 33.33%;
        -webkit-flex-basis: 33.33%;
        flex-basis: 33.33%;
    }
}
@media screen and (max-width: 767px) and (min-width: 568px) {
    .list li {
        margin-bottom: 30px;
        width: 50%;
        -webkit-flex-basis: 50%;
        flex-basis: 50%;
    }
}
@media screen and (min-width: 568px) {
    .list {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
@media screen and (max-width: 567px) {
    .list {
        margin-bottom: 20px;
    }
    .list li::before {
        font-size: 12px;
        padding: 2px 8px 0;
        top: -2px;
        left: -2px;
    }
}
.list .terms {}
.list .terms span {
    display: inline-block;
    margin-right: 5px;
}
.list .terms span::before {
    font-family: "FontAwesome";
    content: "\f02b";
    color: #777;
}


/**
* Storycontent
*********************************************************/
main header h1 {
  background-color: #00A8C6;
  color: #fff;
  font-size: 30px;
  padding: 10px 15px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  margin-bottom: 25px;
}
#mokuji {
  margin-bottom: 30px;
  border: 3px solid #777;
  padding: 10px 20px;
  border-radius: 15px;
}
#mokuji::before {
  content: "-目次-";
  font-size: 14px;
  font-weight: bold;
}
#mokuji a {}
.storycontent::after,
.storycontent .inner::after {
  content: "";
  display: table;
  clear: both;
}
.storycontent {
  font-size: 18px;
  line-height: 1.8;
}
.storycontent h1, .storycontent h2, .storycontent h3, .storycontent h4, .storycontent h5, .storycontent h6 {
  font-weight: bold;
  margin-bottom: 0.7em;
  line-height: 1.4;
}
.storycontent h1 { font-size: 30px; }
.storycontent h2 { font-size: 25px; }
.storycontent h3 { font-size: 23px; }
.storycontent h4 { font-size: 22px; }
.storycontent h5 { font-size: 20px; }
.storycontent h6 { font-size: 18px; }
.storycontent a {
  text-decoration: underline;
}
.storycontent p {
  text-align: justify;
  margin-bottom: 1em;
}
.storycontent p:last-child {
  margin-bottom: 0;
}
.storycontent strong {
  font-weight: 700;
}
.storycontent hr,
.storycontent div.clear {
  clear: both;
  border: none;
  border-bottom: 1px dashed #999;
  padding-top: 40px;
  margin-bottom: 60px;
}
.storycontent ul,
.storycontent ol {
  margin-left: 2em;
  margin-bottom: 1.5em;
}
.storycontent ul li {
  line-height: 1.5;
  margin-bottom: 5px;
}
.storycontent ul li:last-child {
  margin-bottom: 0;
}
.storycontent ul li {
  list-style-type: square;
}
.storycontent ol li {
  list-style-type: decimal;
}
.storycontent img {
  max-width: 100%;
  height: auto;
}
.storycontent img.border {
  border: 1px solid #ddd;
}
.storycontent blockquote {
  text-align: justify;
  background-color: #f6f6f6;
  padding: 50px 40px;
  margin-bottom: 40px;
  position: relative;
}
.storycontent blockquote::before,
.storycontent blockquote::after {
  font-family: "FontAwesome";
  font-size: 25px;
  line-height: 1.0;
  color: #ddd;
  position: absolute;
  left: 10px;
}
.storycontent blockquote::before {
  content:"\f10d";
  top: 10px;
}
.storycontent blockquote::after {
  content:"\f10e";
  bottom: 10px;
}
.storycontent table,
.storycontent table thead,
.storycontent table tbody,
.storycontent table tfoot,
.storycontent table tr,
.storycontent table th,
.storycontent table td {
  max-width: 100%!important;
}
.storycontent table {
  border-collapse: collapse;
  border: 1px #CCC solid;
  width: 100%!important;
  margin: 15px 0 30px;
}
.storycontent th,
.storycontent td {
  padding: 10px;
  border: 1px #CCC solid;
}
.storycontent .th_title {
  background-color: #6D9258;
  padding: 5px;
  color: #FFF;
}
.storycontent .th_title_light {
  background-color: #81AE68;
  padding: 5px;
  color: #FFF;
}
.storycontent .th01 {
  background-color: #DDFBE2;
}
.storycontent .th02 {
  background-color: #4C663D;
  padding: 5px;
  color: #FFF;
  text-align: center;
}
.storycontent .wp-caption-text {
  display: block;
  font-size: 14px;
  line-height: 1.3;
  margin-top: 5px;
}
.storycontent td span {
  display: block;
}
.storycontent td span+br {
  display: none;
}
.storycontent .wp-caption {
  padding: 15px;
  background-color: #f3f3f3;
}
.storycontent .wp-caption img {}
.storycontent .wp-caption p {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
}
.storycontent .tiled-gallery .gallery-row > p {
  margin-bottom: 0;
}
.storycontent iframe.youtube-player {
  width: 100%;
}
.storycontent p a[target="_blank"]::after {
  content: "\f08e";
  font-family: "FontAwesome";
  margin-left: 2px;
}
@media screen and (min-width: 768px) {
  .storycontent figure {
    max-width: 100%;
    max-width: calc( 100% - 30px );
    margin-left: 0;
    margin-right: 0;
  }
  .storycontent img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  .storycontent .alignnone,
  .storycontent .aligncenter,
  .storycontent .alignleft,
  .storycontent .alignright {
    margin-bottom: 20px;
  }
  .storycontent .alignnone,
  .storycontent .aligncenter {
    clear: both;
  }
  .storycontent .alignleft {
    float: left;
    margin-right: 35px;
    margin-left: 0;
  }
  .storycontent .alignright {
    float: right;
    margin-left: 35px;
    margin-right: 0;
  }
  .storycontent .alignleft + h4 {
    float: left;
  }
  .storycontent .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .storycontent .size-large {
    margin-left: 0;
    margin-right: 0;
  }

}
@media screen and (max-width: 767px) {
  .storycontent figure {
    max-width: 100%;
    max-width: calc( 100% - 30px );
    margin-left: 0;
    margin-right: 0;
  }
  .storycontent p {
    line-height: 1.6;
  }
  .storycontent img.alignleft,
  .storycontent img.alignright {
    display: block;
    margin: 0 auto 15px;
  }
  .storycontent table,
  .storycontent table thead,
  .storycontent table tbody,
  .storycontent table tfoot,
  .storycontent table tr,
  .storycontent table th,
  .storycontent table td {
    display: block;
    border: none;
    padding: 0;
    width: auto!important;
  }
  .storycontent table {
    margin-bottom: 30px;
    border: 1px solid #aaa;
    height: auto!important;
  }
  .storycontent table tr {
    height: auto!important;
    width: auto!important;
  }
  .storycontent table th,
  .storycontent table td {
    height: auto!important;
    width: auto!important;
    padding: 5px;
    border-bottom: 1px solid #aaa;
  }
  .storycontent table th,
  .storycontent table td:first-child {
    background-color: #f3f3f3;
  }
  .storycontent table tr:last-child td:last-child {
    border-bottom: none;
  }
}
@media screen and (max-width: 650px) {
  .storycontent {
    margin-left: 5px;
    margin-right: 5px;
  }
  .storycontent iframe.youtube-player {
    width: 100vw;
    height: 75vw;
  }
}
@media screen and (max-width: 567px) {
  .storycontent figure {
    padding: 0!important;
    margin: 0 0 1em;
  }
  .storycontent figure img {
    width: 100%;
    height: auto;
  }
  .storycontent figure .wp-caption-text {
    margin-top: 0;
    padding: 4px 8px 10px;
    font-size: 12px;
  }
}


/* ------------------------------------------------
// pic wrapper
// -----------------------------------------------*/
.pic img {
  width: 100%;
  height: auto;
  display: block;
}
.pic > div {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;
}
@media screen and (max-width: 567px) {
    .pic {
        position: relative;
        overflow: hidden;
    }
}


/* ------------------------------------------------
// ZOOM効果
// -----------------------------------------------*/
@media screen and (min-width: 568px) {
    a .zoom > img,
    a .zoom > div {
        transition: all 0.8s ease-out;
        transform: matrix3d(
            1, 0, 0, 0,
            0, 1, 0, 0,
            0, 0, 1, 0,
            0, 0, 0, 1
        );
        will-change: transform;
    }
    a:hover .zoom img,
    a:hover .zoom > div {
        transform: matrix3d(
            1, 0, 0, 0,
            0, 1, 0, 0,
            0, 0, 1, 0,
            0, 0, 0, 0.9
        );
    }
}


/**
* Title Obi
*********************************************************/
#titleobi {
  background-color: #00a8c5;
  color: #fff;
  padding: 20px 0;
  margin-bottom: 0;
}
#titleobi h1 {
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  margin: 20px;
}
@media screen and (min-width: 568px) {
    #titleobi .inner {
      overflow: hidden;
    }
    #titleobi .inner > div > div {
      display: -webkit-box;
      display: -webkit-flex;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
      align-items: center;
      background-repeat: no-repeat;
      background-position: 50% 50%;
      background-size: cover;
    }
    #titleobi.thick {
      padding: 0;
      background-color: transparent;
    }
    #titleobi.thick .inner > div > div {
      height: 250px;
    }
    #titleobi.thick h1 {
      color: #fff;
      text-align: left;
      font-size: 40px;
      line-height: 1.0;
    }
    #titleobi.audiowide h1 {
      font-family: 'Audiowide', sans-serif;
      font-size: 70px;
      font-style: italic;
    }
    #titleobi.inv h1 {
      color: #000;
    }
    #titleobi.waku .inner > div {
      background-color: #898989;
      padding: 20px;
      position: relative;
      z-index: 1;
    }
    #titleobi.waku .inner > div::after {
      content: "";
      display: block;
      position: absolute;
      bottom: 0;
      left: -40%;
      height: 900px;
      width: 100%;
      background-color: #00A8C6;
      -moz-transform: rotate(45deg);
      -webkit-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    #titleobi.waku .inner > div > div {
      background-color: #fff;
      position: relative;
      z-index: 20;
    }
}
@media screen and (max-width: 567px) {
    #titleobi {
        padding: 0!important;
        margin-bottom: 20px;
    }
    #titleobi .inner > div > div {
        background-image: none!important;
    }
    #titleobi h1 {
        font-size: 27px;
        margin: 9px;
        padding-top: 
    }
}

/**
* breadcrumb
*********************************************************/
#breadcrumb {
  padding: 30px 0;
  font-size: 14px;
}
#breadcrumb ol {}
#breadcrumb ol li {
  display: inline-block;
}
#breadcrumb ol li a {
  padding-right: 35px;
  background: url(../images/common_ico_chain_xsmall.png) no-repeat 100% 50%;
  margin-right: 7px;
  font-weight: bold;
}
#breadcrumb ol li a,
#breadcrumb ol li a:link,
#breadcrumb ol li a:visited {
  color: #111;
}
#breadcrumb ol li:first-child a::before {
  font-family: "FontAwesome";
  content: "\f015";
  font-size: 140%;
  margin-right: 5px;
  color: #00A8C6;
}
@media screen and (min-width: 568px) {}
@media screen and (max-width: 567px) {
    #breadcrumb {
        display: none;
    }
}

/**
* Pagenavi
*********************************************************/
#pagenavi {
  margin-bottom: 15px;
}
#pagenavi ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#pagenavi li a {
  display: block;
  padding: 5px 20px;
  margin: 0 5px;
  color: #111;
  background-color: #eee;
}
#pagenavi li a::before {
  font-family: "FontAwesome";
  color: #111;
  font-size: 130%;
  margin-right: 8px;
}
#pagenavi li a[href*="takuhai"]::before { content: "\f0d1"; }
#pagenavi li a[href*="syuccho"]::before { content: "\f135"; }
#pagenavi li a[href*="tento"]::before { content: "\f2b5"; }
@charset "UTF-8";
/*
chunk.css

文字色：#111111
グレー：#
ターコイズ：#00A8C6
黄色：#FFF100
*/


/**
* Brandlist
*********************************************************/
.brandlist {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.brandlist li {
	width: 31.5%;
	-webkit-flex-basis: 31.5%;
	flex-basis: 31.5%;
}
.brandlist li a,
.brandlist li span {
	display: block;
}
.brandlist li a img,
.brandlist li span img {
	width: 100%;
	height: auto;
	display: block;
}

/**
* Hero Image
*********************************************************/
#heroimage {
	width: 100%;
	overflow: hidden;
	position: relative;
	padding: 0;
	margin: 0;
	background-color: #898989;
}
#heroimage > div {
	background: url(../images/heroimage_00.jpg) no-repeat 50% 50%;
	background-size: cover;
}
#heroimage .inner {
	height: calc(95vh - 148px);
	max-height: 700px;
	z-index: 10;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
}
#heroimage .copy {
	background: url(../images/heroimage_slogan.png) no-repeat 0 100%;
	background-size: contain;
	width: 100%;
	height: 500px;
	position: relative;
	left: -100px;
}
#heroimage .bullet {
	width: 162px;
	height: 32px;
	background: url(../images/heroimage_bullet.png) no-repeat 0 0;
	position: absolute;
	bottom: 46px;
	right: 0;
}
#heroimage::after {
	content: "";
	display: block;
	width: 50%;
	height: 15px;
	background-color: #00A8C6;
}
@media all and (max-width: 1130px) {
	#heroimage .copy {
		left: 0;
	}
}
@media all and (max-width: 567px) {
	#heroimage .bullet {
		display: none;
	}
	#heroimage .copy {
		position: absolute;
		width: auto;
		height: auto;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-position: 50% 50%;
	}
	#heroimage > div {
		background-position: 60% 50%;
	}
	#heroimage .inner {
		height: 140vw;
	}
}


/**
* Contents
* 前オーナーの想い
* TOPICS
*********************************************************/
#contents h2,
#topics h2 {
	font-size: 44px;
	line-height: 1.0;
}
#contents h2::after,
#omoi h2::after,
#topics h2::after {
	content: "";
	display: block;
	width: 33px;
	height: 20px;
	margin: 0 auto;
	border-bottom: 3px solid #00A8C6;
}


/**
* Greeting
*********************************************************/
#greeting {
	background: url(../images/top_greeting_bg.png) no-repeat bottom center #010000;
	color: #fff;
	min-height: 230px;
}
#greeting .inner {
	padding-top: 30px;
}
#greeting h2 {
	text-align: left;
	font-size: 32px;
}
#greeting h2 i {
	display: inline;
	margin-left: 15px;
	color: #00a8c5;
}
#greeting p {
	line-height: 1.7;
}
#greeting .special_message > div {

}
@media screen and (max-width: 999px) {
	#greeting .inner {
		overflow-x: visible;
		padding-left: 10px;
		padding-right: 10px;
	}
	#greeting .special_message {
		right: 5px;
	}
}
@media screen and (min-width: 768px) {
	#greeting .special_message {
		position: absolute;
		top: -44px;
		right: -4px;
		line-height: 1.7;
		font-size: 26px;
		background-color: #00A8C6;
		padding: 7px;
	}
	#greeting .special_message > div {
		-webkit-writing-mode: vertical-rl;
		-ms-writing-mode: tb-rl;
		writing-mode: vertical-rl;
		border: 2px solid #fff;
		padding: 10px;
	}
}
@media screen and (max-width: 767px) {
	#greeting p {
		display: block;
		margin-bottom: 1em;
	}
	#greeting .special_message {
		font-size: 1.6rem;
		line-height: 1.4;
		color: #fff;
		font-weight: bold;
		text-align: center;
		padding-top: 15px;
	}
}
@media all and (max-width: 567px) {
	#greeting p {
		text-align: justify;
	}
	#greeting p br {
		display: none;
	}
	#greeting .special_message {
		padding-top: 0;
		font-size: 1.5rem;
	}
}


/**
* Slogan
*********************************************************/
#slogan .inner {
	padding-bottom: 180px;
	background: url(../images/slogan_prompt_read_next.png) no-repeat 50% 100%;
	overflow: visible;
}
#slogan span {
	font-family: 'Noto Sans Japanese', sans-serif;
	font-weight: 900;
	font-size: 110px;
	line-height: 1.2;
	color: #00a8c5;
	display: block;
	transform: rotate(-7deg);
	position: relative;
	top: -85px;
}
#slogan .inner::after {
	content: "";
	display: block;
	width: 200px;
	height: 200px;
	background: url(../images/slogan_circle_bestprice.png) no-repeat 50% 50%;
	position: absolute;
	bottom: -80px;
	right: 0;
	z-index: 30;
}
@media all and (min-width: 1200px) {
	#slogan span {
		width: 110%;
	}
}
@media all and (max-width: 1199px) {
	#slogan span {
		width: 90%;
		font-size: 8.5vw!important;
		margin: 0 auto;
	}
}
@media all and (max-width: 767px) {
	#slogan span {
		top: -30px;
	}
}
@media all and (max-width: 567px) {
	#slogan .inner {
		padding-bottom: 100px;
		background-size: 200px auto;
	}
	#slogan .inner::after {
		width: 100px;
		height: 100px;
		background-size: contain;
		right: 30px;
	}
}


/**
* OUR SERVICE
*********************************************************/
#ourservice {
	background: url(../images/common_bg_ourservice.png) repeat 50% 50% #00a8c5;
	color: #fff;
	padding-top: 60px;
}
#ourservice h2 {
	background-color: #111;
	text-align: center;
	font-weight: bold;
	font-size: 18px;
	padding: 4px 0;
	margin-bottom: 25px;
}
#ourservice li {
	margin-bottom: 30px;
	display: block;
	border: 3px solid #fff;
	background-color: #00a8c5;
	background-color: rgba( 26, 168, 195, 0.9 );
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
#ourservice li.blank {
	visibility: hidden;
}
#ourservice li > div,
#ourservice li > a {
	display: block;
	padding: 20px 20px 25px;
	color: #fff;
}
#ourservice li h3 {
	font-size: 35px;
	text-align: center;
	border-bottom: 4px solid #fff;
	margin: 0 20px 18px;
}
#ourservice li:hover {
	background-color: #fff;
}
#ourservice li:hover a {
	color: #00a8c5;
}
#ourservice li:hover h3 {
	border-color: #00a8c5;
}

@media screen and (min-width: 568px) {
	#ourservice ul {
		margin-left: 0;
		margin-right: 0;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	#ourservice li {
	    width: 31%;
	    -webkit-flex-basis: 31%;
	    flex-basis: 31%;
	}
}
@media screen and (max-width: 567px) {
	#ourservice h2 {
		line-height: 1.3;
		padding: 8px;
	}
	#ourservice li {
	    margin-bottom: 8px;
	}
}


/**
* Banners
*********************************************************/
.banner {
	display: block;
	margin-bottom: 20px;
}
.banner:last-child {
	margin-bottom: 0;
}
.banner img {
	display: block;
	margin: 0 auto;
}


/**
* Database
*********************************************************/
#database {
	padding: 0;
}
#database .inner {
	background: url(../images/top_database_bg.png) repeat-y 50% 0;
	padding: 35px 0;
}
#database h2 {
	color: #fff;
	font-size: 16px;
	background: url(../images/top_database_lab.png) no-repeat 50% 0;
	padding-top: 55px;
	margin-bottom: 35px;
}
#database h2 span {
	display: inline-block;
	padding-bottom: 20px;
	background: url(../images/common_deco_h2_underline.png) no-repeat 50% 100%;
}
#database h2::after {
	display: none;
}
#database ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
#database li {
	text-align: center;
	position: relative;
	background-color: #fff;
	overflow: hidden;
}
@media screen and (min-width: 568px) {
	#database ul {
		margin: 0 30px 20px;
	}
	#database li {
		width: 23.5%;
		-webkit-flex-basis: 23.5%;
		flex-basis: 23.5%;
		margin-bottom: 18px;
	}
}
@media screen and (max-width: 567px) {
	#database .inner {
		padding-bottom: 10px;
	}
	#database h2 {
		background-size: contain;
	}
	#database ul {
		margin: 0 10px;
	}
	#database li {
		width: 49%;
		-webkit-flex-basis: 49%;
		flex-basis: 49%;
		margin-bottom: 8px;
	}
}
#database li div,
#database li a {
	display: block;
	padding: 10px;
	position: relative;
	z-index: 5;
	color: #222;
}
#database li div img,
#database li a img {
	width: 70%;
	height: auto;
	display: block;
	margin: 0 auto;
}
#database .sleeve {
	margin-bottom: 30px;
}
@media screen and (min-width: 568px) {
	#database li::before,
	#database li::after {
		opacity: 0;
		content: "";
		display: block;
		position: absolute;
		width: 25px;
		height: 25px;
		z-index: 10;
		-webkit-transition: all 0.3s;
		-moz-transition: all 0.3s;
		transition: all 0.3s;
	}
	#database li::before {
		top: 0;
		left: 0;
		border-left: 10px solid #00A7C5;
		border-top: 10px solid #00A7C5;
	}
	#database li::after {
		bottom: 0;
		right: 0;
		border-right: 10px solid #00A7C5;
		border-bottom: 10px solid #00A7C5;
	}
	#database li:hover::before,
	#database li:hover::after {
		opacity: 1;
	}	
}


/**
* List - Bike
*********************************************************/
.list.bike li::before {
	content: "NEW";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	background-color: #00a8c5;
	color: #fff;
	line-height: 1.5;
	font-size: 22px;
	padding: 2px 8px 0;
}
.list.bike li .desc dl {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
}
.list.bike li .desc dt {
	width: 20%;
	margin-right: 8px;
}
.list.bike li .desc dd {
	flex: 1;
}
@media screen and (max-width: 567px) {
	.list.bike li::before {
		font-size: 12px;
		padding: 2px 8px 0;
		top: -2px;
		left: -2px;
	}
	.list.bike dl {
		font-size: 1.1rem;
		font-weight: bold;
	}
}



/**
* List - Uservoice
*********************************************************/
.list.uservoice {
	margin-bottom: 50px;
}
.list.uservoice li {
	margin-bottom: 30px;
	padding-left: 80px;
	background: url(../images/voice_ico_baloon.png) no-repeat 0 0;
	font-size: 20px;
}
.list.uservoice li h3 {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 10px;
}
.list.uservoice li h3 i {
	font-size: 14px;
	color: gray;
	margin-left: 20px;
	font-weight: normal;
}
@media screen and (min-width: 568px) {}
@media screen and (max-width: 567px) {
	.list.uservoice li {
		padding-left: 0;
		background-image: none;
	}
	.list.uservoice li h3 {
		padding-left: 50px;
		background: url(../images/voice_ico_baloon.png) no-repeat 0 0;
		background-size: 40px auto;
		line-height: 1.3;
	}
	.list.uservoice li h3 i {
		display: block;
		margin-left: 0;
	}
}


/**
* List - BLOG
*********************************************************/
.list.blog {}
.list.blog h2 {
	font-family: 'Oswald', sans-serif;
	font-size: 50px;
}
.list.blog .tile {
	padding-bottom: 15px;
}
.list.blog .tile h3 {
	font-size: 18px;
}
.list.blog .tile .meta {
	margin-left: 15px;
	margin-right: 15px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}
.list.blog .tile .terms span {
	display: inline-block;
	margin-right: 5px;
	font-size: 14px;
}
.list.blog .tile .terms span::before {
	font-family: "FontAwesome";
	content: "\f02b";
	color: #777;
}
@media screen and (min-width: 568px) {
	.list.blog .tile .pic {
		min-height: 230px;
	}
}
@media screen and (max-width: 567px) {}


/**
* Database
*********************************************************/
.database {}
.database ul {
	margin-bottom: 30px;
}


/**
* Reason
*********************************************************/
.reason {}
.reason .why,
.reason .because {
	margin-bottom: 30px;
}
.reason .why > div,
.reason .because > div {
	margin-bottom: 40px;
}
.reason .why {
	padding-top: 120px;
	background: url(../images/reason_why_title.png) no-repeat 50% 0;
}
.reason .because {
	padding-top: 120px;
	background: url(../images/reason_because_title.png) no-repeat 50% 0;
}
.reason h3 {
	font-weight: bold;
	font-size: 28px;
	text-align: center;
	padding-bottom: 80px;	
}
.reason .why h3 span {
	padding-bottom: 70px;
	background: url(../images/common_line_beak.png) no-repeat 50% 100%;
}
.reason .because h3 span {
	padding-bottom: 30px;
	border-bottom: 4px solid #00A8C6;
}
.reason .because {
	text-align: justify;
	font-size: 18px;
}
.reason .because h4 {
	color: #00A8C6;
	font-size: 70px;
	line-height: 1.0;
}


/**
* Separator
*********************************************************/
.separator .inner {
	background: url(../images/common_separator_bg_01.jpg) no-repeat 50% 50%;
	background-size: cover;
	height: 290px;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
}
.separator .inner > div {
	font-family: 'Audiowide', sans-serif;
	font-size: 55px;
	color: #fff;
	text-align: left;
	line-height: 1.0;
	padding-left: 970px;
	font-style: italic;
}


/**
* Method
*********************************************************/
.method {}
.method h2 {
	text-indent: -200%;
	white-space: nowrap;
	overflow: hidden;
	height: 217px;
	background: url(../images/reason_ban_method.png) no-repeat 50% 50%;
}
.method .inner > div > div {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.method .inner > div > div > div {
	width: 32%;
	-webkit-flex-basis: 32%;
	flex-basis: 32%;
}
.method .inner > div > div > div > div {
	border: 10px solid #00A8C6;
	padding: 15px;
	text-align: center;
	background-color: #fff;
	min-height: 340px;
	position: relative;
}
.method .inner > div > div > div > div::before,
.method .inner > div > div > div > div::after {
	content: "";
	display: block;
	position: absolute;
	left: -10px;
	right: -10px;
	height: 10px;
	border-left: 10px solid #B5B5B6;
	border-right: 10px solid #B5B5B6;
}
.method .inner > div > div > div > div::before {
	top: -10px;
}
.method .inner > div > div > div > div::after {
	bottom: -10px;
}
.method h3 {
	text-indent: -200%;
	white-space: nowrap;
	overflow: hidden;
	height: 226px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	margin-bottom: 18px;
}
.method .syuccho h3 { background-image: url(../images/kaitori_method_syuccho.png); }
.method .tento h3 { background-image: url(../images/kaitori_method_tento.png); }
.method .takuhai h3 { background-image: url(../images/kaitori_method_takuhai.png); }
.method p {
	font-weight: bold;
	font-size: 18px;
}


/**
* Flow
*********************************************************/
.flow .midashi {
	margin-bottom: 30px;
}
.flow .midashi li {
	margin-bottom: 15px;
	background-color: #00A8C6;
	padding: 10px;
	border-right: 10px solid #FFF100;
}
.flow .midashi li h3 {
	text-indent: -200%;
	white-space: nowrap;
	overflow: hidden;
	height: 75px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	margin-right: 20px;
}
.flow .midashi li > div {
	flex: 1;
	font-size: 24px;
	color: #fff;
	line-height: 1.3;
}
.flow .midashi li.takuhai h3 { background-image: url(../images/kaitori_ban_takuhai.png); }
.flow .midashi li.syuccho h3 { background-image: url(../images/kaitori_ban_syuccho.png); }
.flow .midashi li.tento h3 { background-image: url(../images/kaitori_ban_tento.png); }
.flow .steps .step {
	border: 10px solid #00A8C6;
	border-right-color: #FFF100;
	position: relative;
	padding: 17px 30px 80px;
	margin-bottom: 30px;
}
.flow .leadtxt {
	font-size: 18px;
	margin-bottom: 30px;
}
.flow .steps .step::before,
.flow .steps .step::after {
	content: "";
	display: block;
	width: 50%;
	height: 10px;
	position: absolute;
	background-color: #FFF100;
	right: -10px;
}
.flow .steps .step::before { top: -10px; }
.flow .steps .step::after { bottom: -10px; }
.flow .steps .step > span {
	background: url(../images/flow_steps_bg_label.png) no-repeat 0 0;
	background-size: contain;
	display: block;
	padding: 5px 15px;
	font-size: 50px;
	color: #FFF100;
	line-height: 1.0;
	width: 50%;
	position: absolute;
	top: 0;
	left: 0;
}
.flow .step .heading {
	font-size: 30px;
	line-height: 1.0;
	font-weight: bold;
	padding: 0 0 0 180px;
	margin-bottom: 35px;
}
.flow .step .heading + div::after {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	bottom: 5px;
	right: 5px;
	width: 150px;
	height: 89px;
	background: url(../images/common_ico_bike.png) no-repeat 50% 50%;
}
.flow .step h3 {
	display: inline-block;
	font-weight: bold;
	font-size: 40px;
	border: 7px solid #00A8C6;
	line-height: 1.0;
	position: relative;
	margin-bottom: 32px;
	padding: 10px;
}
.flow .step h3::after {
	content: "";
	display: block;
	width: 32px;
	height: 32px;
	position: absolute;
	bottom: -32px;
	left: 50px;
	background: url(../images/common_beak_below.png) no-repeat 0 0;
}
.flow .step ul {
	margin-left: 0;
}
.flow .step li {
	font-size: 20px;
	position: relative;
	padding-left: 1.3em;
	margin-bottom: 5px;
	list-style: none;
}
.flow .step li::before {
	content: "■";
	color: #00A8C6;
	position: absolute;
	top: 0;
	left: 0;
}
.flow .step li a {
	text-decoration: underline;
}
.flow .step p.note {
	font-size: 18px;
	position: relative;
	z-index: 10;
}
@media screen and (min-width: 568px) {
	.flow .inner {
		padding: 10px;
	}
	.flow .midashi li {
		display: -webkit-box;
		display: -webkit-flex;
		display: flex;
		-webkit-box-align: center;
		-webkit-align-items: center;
		align-items: center;
	}
	.flow .midashi li h3 {
		width: 440px;
		-webkit-flex-basis: 440px;
		flex-basis: 440px;
	}
}
@media screen and (max-width: 567px) {
	.flow .steps .step {
		padding: 17px 15px 60px;
	}
	.flow .step .heading {
		padding: 70px 0 0 0;
		font-size: 26px;
		margin-bottom: 20px;
	}
	.flow .step h3 {
		display: block;
		font-size: 31px;
	}
	.flow .step .heading + div::after {
		width: 90px;
		height: 55px;
		background-size: contain;
	}
	.flow .midashi li h3 {
		width: auto;
		background-size: contain;
		margin-right: 0;
	}
	.flow .midashi li h3 br,
	.flow .midashi li > div br {
		display: none;
	}
	.flow .midashi li > div {
		font-size: 1rem;
	}
}

/**
* voice
*********************************************************/
.voice {}
.voice .inner h2 {
	border-left: 15px solid #00A8C6;
	text-align: left;
	padding-left: 15px;
	line-height: 1.2;
	font-weight: bold;
	position: relative;
	overflow: visible;
	margin-bottom: 50px;
}
.voice .inner h2 span {
	font-size: 45px;
}
.voice h2::after {
	content: "";
	display: block;
	width: 273px;
	height: 165px;
	position: absolute;
	bottom: 0;
	right: 0;
	background: url(../images/voice_deco_baloon.png) no-repeat 0 0;
}
.voice h2 span {
	vertical-align: top;
}
.voice h2 span::after {
	content: "";
	display: inline-block;
	width: 122px;
	height: 57px;
	background: url(../images/voice_lab_feedback.png) no-repeat 0 0;
	margin-left: 23px;
	position: relative;
	top: 3px;
}


/**
* sideblock
*********************************************************/
.sideblock {
	margin-bottom: 30px;
}
/*見出し文字*/
.sideblock h5.simple {
	font-size: 35px;
	text-align: center;
	color: #00A8C6;
	margin-bottom: 15px;
}
.sideblock h5.simple::after {
	content: "";
	display: block;
	height: 3px;
	background-color: #00A8C6;
	width: 33px;
	margin: 0 auto;
}
.sideblock h5.waku {
	font-size: 25px;
	font-weight: bold;
	color: #00A8C6;
	border: 7px solid #00A8C6;
	padding: 8px 8px 6px;
	margin-bottom: 15px;
}
.sideblock h5.waku::before {
	content: "";
	display: inline-block;
	width: 35px;
	height: 35px;
	background: url(../images/common_ico_attention.png) no-repeat 50% 50%;
	background-size: contain;
	margin-right: 6px;
	vertical-align: top;
}

/*お問い合わせ*/
.sideblock.contact {}
.sideblock.contact h4 {
	background-color: #00A8C6;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	padding: 6px 0 6px 10px;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
	margin-bottom: 5px;
}
.sideblock.contact h4::before {
	content: "■";
	color: #FFF100;
	font-size: 70%;
	margin-right: 4px;
}
.sideblock.contact dl {
	text-align: center;
}
.sideblock.contact dl::after {
	content: "";
	display: block;
	height: 6px;
	background-color: #898989;
	border-radius: 3px;
}

.sideblock.contact dt {
	font-weight: bold;
	padding: 8px 0 4px;
}
.sideblock.contact dd {
	font-size: 34px;
	font-weight: bold;
	text-align: left;
	white-space: nowrap;
}
.sideblock.contact dd a {
	color: #00A8C6;
}
.sideblock.contact .freedial a::before {
	content: "";
	display: inline-block;
	width: 38px;
	height: 26px;
	background: url(../images/common_ico_freedial.png) no-repeat 0 0;
	margin-right: 5px;
}
.sideblock.contact .directcall a::before {
	content: "\f10b";
	font-family: "FontAwesome";
	margin-right: 5px;
	font-size: 125%;
}
.sideblock.contact .businesshour {
	padding: 15px 0;
	text-align: center;
	line-height: 1.4;
	font-weight: bold;
	font-size: 18px;
}
.sideblock.contact .businesshour span {
	display: block;
}
.sideblock.contact .web > div {
	padding-top: 10px;
	border-bottom: 10px solid #00A8C6;
}
.sideblock.contact .web a {
	background-color: #FFF100;
	color: #00A8C6;
	font-size: 20px;
	line-height: 1.0;
	font-weight: bold;
	display: block;
	text-align: center;
	padding: 10px;
	border-radius: 30px;
}
.sideblock.contact .web a::after {
	content: "\f138";
	font-family: "FontAwesome";
	margin-left: 3px;
	font-size: 110%;
}
.sideblock.contact .web > div > div {
	padding: 14px 0;
	text-align: center;
}
.sideblock.contact .web > div > div span {
	line-height: 1.0;
	padding: 0 1em;
	border-left: 4px solid #00A8C6;
	border-right: 4px solid #00A8C6;
}

/*見積もりフォーム*/
.sideblock.mitsumori a {
	display: block;
	position: relative;
	overflow: hidden;
}
.sideblock.mitsumori a img {
	width: 100%;
	height: auto;
	display: block;
}
.sideblock.mitsumori a > div {
	height: 44px;
	position: absolute;
	bottom: 16px;
	left: 0;
	right: 0;
	padding-right: 10px;
	text-align: right;
    animation-delay:1s;
    animation-iteration-count: 2;
}
.sideblock.mitsumori a > div::after {
	content: "\f138";
	font-family: "FontAwesome";
	display: block;
	width: 100%;
	line-height: 42px;
	color: #fff;
	font-size: 24px;
}

.sideblock.mitsumori .animated {
	
}

/*買取対象メーカー*/
.sideblock.brands h4 {
	text-indent: -200%;
	white-space: nowrap;
	overflow: hidden;
	height: 134px;
	background: url(../images/aside_lab_brand.png) no-repeat 0 0;
	margin-bottom: 15px;	
}


/**
* Topics - Pickup
*********************************************************/
.topics {
	margin-bottom: 50px;
}
.topics h2 {
	color: #00A8C6;
	font-weight: bold;
	line-height: 1.0;
	position: relative;
	margin-bottom: 40px;
	text-align: left;
}
.topics .inner h2 span {
	display: block;
	position: relative;
	overflow: hidden;
	font-size: 45px;
	padding-left: 20px;
	border-left: 8px solid #FFF100;
}
.topics h2.new::after {
	content: "NEW!";
	font-style: italic;
	font-family: "Audiowide", sans-serif;
	font-size: 55px;
	color: #FFF100;
	position: absolute;
	bottom: 0;
	right: 0;
}


/**
* Database
*********************************************************/
.data {}
.data h2 {
	font-size: 28px;
	padding: 8px 0 8px 60px;
	text-align: left;
	background-color: #eee;
	position: relative;
	overflow: hidden;
}
.data h2::before,
.data h2::after {
	content: "";
	display: block;
	position: absolute;
	width: 40px;
	top: -20px;
	bottom: -20px;
	background-color: #888;
	border-right: 8px solid #fff;
	-moz-transform: rotate(20deg);
	-webkit-transform: rotate(20deg);
	-o-transform: rotate(20deg);
	-ms-transform: rotate(20deg);
	transform: rotate(20deg);
}
.data h2::before { left: -8px; }
.data h2::after { left: -25px; }
.data .summary {
	font-weight: bold;
	margin-bottom: 20px;
}
.data .summary .pic {
	margin-bottom: 25px;
	background-color: #eee;
	padding: 3px;
}
.data .summary .desc {}
.data .summary h3 {
	font-family: "Oswald", sans-serif;
	font-size: 22px;
	margin-bottom: 15px;
}
.data .summary h3 span {
	padding: 0 15px;
	line-height: 1.0;
	border-left: 4px solid #00A8C6;
	border-right: 4px solid #00A8C6;
}
.data .summary dl {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.data .summary dt {
	width: 50%;
	-webkit-flex-basis: 50%;
	flex-basis: 50%;
}
.data .summary dd {
	width: 50%;
	-webkit-flex-basis: 50%;
	flex-basis: 50%;
}
.data .summary li > div {
	font-size: 14px;
	line-height: 1.4;
	text-align: justify;
}
.data h4 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
}
.data table {
	width: 100%;
	font-size: 14px;
}
.data table,
.data th,
.data td {
	border: 1px solid #aaa;
}
.data th,
.data td {
	padding: 5px;
}
.data th {
	width: 30%;
}



/**
* この記事を編集
*********************************************************/
#edit_this {
	text-align: center;
	font-size: 10px;
	font-weight: bold;
	line-height: 1.2;
	position: fixed;
	bottom: 10px;
	right: 10px;
}
#edit_this a {
	display: block;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background-color: #00A8C6;
	color: #fff;
	box-shadow: 2px 2px 2px #888;
}
#edit_this a::before {
	content: "\f040";
	font-family: "FontAwesome";
	display: block;
	font-size: 40px;
	line-height: 1.4;
	padding-top: 2px;
}


/**
* エリア
*********************************************************/
.areasummary > h1 {}
.areasummary h2 {
	background-color: #eee;
	padding: 8px 8px 8px 12px;
	border-left: 6px solid #777;
}
.areasummary .flag {
	background-color: #eee;
	padding: 20px;
	width: 30%;
	float: left;
	margin: 0 1.5em 1em 0;
}
.areasummary .flag img {
	margin-bottom: 0;
}


/**
* 関連動画
*********************************************************/
#rel_movies {}
#rel_movies h2 {
	font-size: 25px;
	font-weight: bold;
	color: #fff;
	background-color: #00A8C6;
	padding: 10px 15px;
	margin-bottom: 20px;
}
#rel_movies ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
#rel_movies li {
	width: 48%;
	-webkit-flex-basis: 48%;
	flex-basis: 48%;
	margin-bottom: 25px;
}
#rel_movies li iframe {
	width: 100%;
}














button[class^="wpcf7-field-group-"] {
    font-size: 30px;
    line-height: 1.0;
    font-weight: bold;
    padding: 0 0 3px;
    width: 35px;
    text-align: center;
    background-color: #222;
    color: #FFF;
}






/**
* ASIDE PARTS
*********************************************************/
/*TOPICS*/
.sideblock.topics li {
	margin-bottom: 1em;
}
.sideblock.topics li a {
	color: #111;
}
.sideblock.topics .desc {
	font-weight: bold;
	line-height: 1.3;
	padding: 8px 0;
}

