@charset "utf-8";

/*----------------------------------------------------------------------------
　reset
-----------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  font-weight:normal;
  vertical-align: baseline;
}
body {
  line-height:1;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
table, tr, th, td, caption {
  vertical-align: middle;
  text-align: left;
}
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
	width: 100%;
}
textarea {
	vertical-align: top;
}





/*----------------------------------------------------------------------------
　Base
-----------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #111;
  font-size: 1.4rem;
  font-family: 'Noto Sans JP', sans-serif;
	-webkit-text-size-adjust: none;
	word-break: break-word;
	word-wrap: break-word;
	overflow-wrap: break-word;
	overflow-x: hidden;
}

a {
	display: block;
	color: #111;
  text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha(opacity=60)";
}

img {
	max-width: 100%;
	width: 100%;
	height: auto;
}

strong {
	font-weight: bold;
}

body, html {
	height: 100%;
}

.fl {
  float: left;
}
.fr {
  float: right;
}

.sp_br {
	display: none;
}
.pc_br {
	display: block;
}

.sp_only {
  display: none;
}
.pc_only {
  display: block;
}

.cf:after {
  content: "";
  clear: both;
  display: block;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	.sp_br {
		display: block;
	}
	.pc_br {
		display: none;
	}

	.sp_only {
		display: block;
	}
	.pc_only {
		display: none;
	}
}





/*--------------------------------------
　Font
---------------------------------------*/
.ff01 {
	font-family: 'La Belle Aurore', cursive;
}




/*--------------------------------------
　Header
---------------------------------------*/
header {
	width: 100%;
	min-width: 1000px;
}

header .boxInner {
	background: #67c2b1;
}  

header .sitename {
	padding: 0.5rem 2rem;
	margin: auto;
	box-sizing: border-box;
	color: #fff;
  font-size: 1.4rem;
	line-height: 1.5;
	text-align: right;
}

header .sitename a {
	color: #fff;
}

header .logo {
	width: 314px;
	margin: auto;
	padding: 1rem 0 2rem;
}  

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	header {
		width: 100%;
		min-width: 100%;
	}
	
	header .sitename {
		padding: 0.5rem 1rem;
		font-size: 1.1rem;
	}
	
	header .logo {
		width: 50%;
		padding: 0.5rem 0 1rem;
	}  
}


/*--------------------------------------
　SP Navi
---------------------------------------*/
/*----- hb-menu -----*/
#hb-menu {
	display: table;
	position: fixed;
	top: 5rem;
	right: 0;
	width: 85px;
	height: 85px;
	background: none;
	cursor: pointer;
	z-index: 10000;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
#hb-menu .hb-inner {
	display: table-cell;
	vertical-align: middle;
}
#hb-menu span {
	display: block;
	background: #67c2b1;
	width: 44px;
	height: 2px;
	margin: auto;
	border-radius: 0;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}
#hb-menu span:nth-of-type(2),
#hb-menu span:nth-of-type(3){
	margin-top: 12px;
}

/* ナビゲーションアイコン：アクティブ */
.hb-open #hb-menu {
	top: 0;
}
.hb-open #hb-menu span {
	background: #67c2b1;
}
.hb-open span:nth-of-type(1) {
	-webkit-transform: translateY(14px) translateX(0) rotate(45deg);
	-ms-transform: translateY(14px) translateX(0) rotate(45deg);
	transform: translateY(14px) translateX(0) rotate(45deg);
}
.hb-open span:nth-of-type(2) {
	margin-top: 5px;
	opacity: 0;
	-webkit-transform: translateY(10px);
	-ms-transform: translateY(10px);
	transform: translateY(10px);
}
.hb-open span:nth-of-type(3) {
	-webkit-transform: translateY(-14px) translateX(0) rotate(-45deg);
	-ms-transform: translateY(-14px) translateX(0) rotate(-45deg);
	transform: translateY(-14px) translateX(0) rotate(-45deg);
}

/* overlay */
.overlay {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: transparent;
	pointer-events: none;
	z-index: 9999;
	transition: 0.2s;
}
.hb-open .overlay {
	background: none;
	pointer-events: auto;
}

/*----- sp-g-nav -----*/
.sp-g-nav {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 9999;
}
.hb-open .sp-g-nav .g-nav-inner {
	position: fixed;
	top: 0;
	transform: translateX(0);
	-ms-transform: translateX(0);
	-webkit-transform: translateX(0);
	transform: translateZ(0);
	-ms-transform: translateZ(0);
	-webkit-transform: translateZ(0);
}
.sp-g-nav .g-nav-inner {
	position: fixed;
	top: 0;
	right: 0;
	background: rgba(34,34,34,0.96);
	width: 100%;
	height: 100%;
	padding: 10rem 0;
	box-sizing: border-box;
	-ms-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	overflow-x: hidden;
	overflow-y: auto;
	transition: .5s;
	transform: translateX(100%);
	-ms-transform: translateX(100%);
	-webkit-transform: translateX(100%);
	z-index: 9999;
}


.hb_menu_wrapper {
	max-width: 80%;
	margin: auto;
}

.hb_menu {
  margin-bottom: 5rem;
}
.hb_menu:last-child {
  margin-bottom: 0;
}

.hb_menu_title {
	padding: 0 0 2rem;
	border-bottom: 1px solid #fff;
}

.hb_menu_title_link {
	display: inline-block;
	padding: 0 3rem 0 0;
	color: #fff;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.6;
	position: relative;
}
.hb_menu_title_link:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 10px;
	height: 10px;
	margin-top: -5px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.hb_menu_list {
	display: flex;
  flex-flow: row wrap;
	box-sizing: border-box;
	margin-top: 3rem;
}

.hb_menu_list_item {
  width: calc(100% / 3);
	margin: 0 0 2rem 0;
	padding: 0 2rem;
	box-sizing: border-box;
	position: relative;
}
.hb_menu_list_item:first-child {
	display: none;
}

.hb_menu_list_link {
	padding: 0 2rem 0 0;
	color: #fff;
	font-size: 1.5rem;
	line-height: 1.6;
	position: relative;
}
.hb_menu_list_link:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	/*----- hb-menu -----*/
	#hb-menu {
		top: 3rem;
		width: 50px;
		height: 50px;
	}
	#hb-menu span {
		width: 28px;
		height: 2px;
	}
	#hb-menu span:nth-of-type(2),
	#hb-menu span:nth-of-type(3){
		margin-top: 8px;
	}

	/* ナビゲーションアイコン：アクティブ */
	.hb-open #hb-menu {
		top: 0;
	}
	.hb-open span:nth-of-type(1) {
		-webkit-transform: translateY(10px) translateX(0) rotate(45deg);
		-ms-transform: translateY(10px) translateX(0) rotate(45deg);
		transform: translateY(10px) translateX(0) rotate(45deg);
	}
	.hb-open span:nth-of-type(3) {
		-webkit-transform: translateY(-10px) translateX(0) rotate(-45deg);
		-ms-transform: translateY(-10px) translateX(0) rotate(-45deg);
		transform: translateY(-10px) translateX(0) rotate(-45deg);
	}

	
	.sp-g-nav .g-nav-inner {
		padding: 5rem 1.5rem;
	}


	.hb_menu_wrapper {
		max-width: 100%;
	}

	.hb_menu {
		margin-bottom: 0;
	}

	.hb_menu_title {
		padding: 1.5rem 2rem 1.5rem 0;
		position: relative;
	}
	.hb_menu_title:after {
		content: "";
		position: absolute;
		top: 50%;
		right: 0.5rem;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		background: none;
		border-top: solid 1px #fff;
		border-right: solid 1px #fff;
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	.hb_menu_title.open:after {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}	
	
	.hb_menu_title.first {
		padding: 1.5rem 0 1.5rem 0;
	}
	.hb_menu_title.first:after {
		display: none;
	}
	
	.hb_menu_title_link {
		display: block;
		padding: 0 0 0 0;
		font-size: 1.4rem;
		pointer-events: none;
	}
	.hb_menu_title_link:after {
		display: none;
	}
	
	.hb_menu_title.first .hb_menu_title_link {
		pointer-events: auto;
		position: relative;
	}
	.hb_menu_title.first .hb_menu_title_link:after {
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		right: 0.5rem;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		background: none;
		border-top: solid 1px #fff;
		border-right: solid 1px #fff;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	
	.hb_menu_list {
		display: none;
		margin-top: 0;
	}

	.hb_menu_list_item {
		width: 100%;
		margin: 0 0 0 0;
		padding: 0 0;
		border-bottom: 1px solid #fff;
	}
	.hb_menu_list_item:first-child {
		display: block;
	}

	.hb_menu_list_link {
		padding: 1.5rem 2rem 1.5rem 1rem;
		font-size: 1.4rem;
	}
	.hb_menu_list_link:after {
		content: "";
		position: absolute;
		top: 50%;
		right: 0.5rem;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
}





/*--------------------------------------
　Pankuzu
---------------------------------------*/
#pankuzu {
	width: 1000px;
	margin: 3.5rem auto 0;
  font-size: 1.4rem;
  position: relative;
	z-index: 1;
}
#pankuzu a {
	display: inline-block;
  text-decoration: underline;
	font-weight: 500;
	line-height: 1.8;
}
#pankuzu a:hover {
  text-decoration: none;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	#pankuzu {
		width: 100%;
		margin: 1.5rem auto 0;
		padding: 0 1rem 1rem 1rem;
		box-sizing: border-box;
		font-size: 1.2rem;
		white-space: nowrap;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}
	#pankuzu::-webkit-scrollbar{
		height: 4px;
}
	#pankuzu::-webkit-scrollbar-track{
		background: #dcdcdc;
		margin: 0 1rem;
		border: none;
		border-radius: 0;
		box-shadow: none;
	}
	#pankuzu::-webkit-scrollbar-thumb {
		background: #a7a7a7;
		border-radius: 0;
		box-shadow: none;
	}
}





/*--------------------------------------
　Footer
---------------------------------------*/
.l-footer-area {
	background: #333;
	width: 100%;
	min-width: 1000px;
	box-sizing: border-box;
}


.l-footer-area__inner {
  max-width: 1000px;
  margin: 0 auto;
	padding: 8rem 0 5rem;
}


.l-footer-logo {
	width: 327px;
	margin: auto;
}


.l-footer-menu-wrapper {
  margin: 6rem auto 0;
}


.l-footer-menu {
  margin-bottom: 4rem;
}
.l-footer-menu:last-child {
  margin-bottom: 0;
}


.l-footer-menu__title {
	padding: 0 0 1.5rem 0;
	border-bottom: 1px solid #fff;
	position: relative;
}

.l-footer-menu__title__link {
	display: inline-block;
	padding: 0 3rem 0 0;
	color: #fff;
  font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.5;
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
	position: relative;
}
.l-footer-menu__title__link:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 10px;
	height: 10px;
	margin-top: -5px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


.l-footer-menu__list {
  display: flex;
  flex-flow: row wrap;
	box-sizing: border-box;
	margin-top: 3rem;
}

.l-footer-menu__list__item {
  width: calc(100% / 3);
	margin-bottom: 1.5rem;
	padding: 0 2rem;
	box-sizing: border-box;
	position: relative;
}
.l-footer-menu__list__item:first-child {
  display: none;
}

.l-footer-menu__list__link {
	padding: 0 2rem 0 0;
	color: #fff;
	font-size: 1.5rem;
	line-height: 1.5;
	position: relative;
}
.l-footer-menu__list__link:after {
	content: "";
 	position: absolute;
	top: 50%;
	right: 0;
	width: 10px;
	height: 10px;
	margin-top: -5px;
	border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}


.l-footer-submenu__list {
	margin: 1rem 0 0 0;
	padding: 0 2rem;
}

.l-footer-submenu__list__item {
	margin: 0 0 1rem 0;
	position: relative;
}

.l-footer-submenu__list__link {
	padding: 0 0 0 1.5rem;
	color: #fff;
	font-size: 1.4rem;
	line-height: 1.5;
	position: relative;
}
.l-footer-submenu__list__link:before {
	content: "";
 	position: absolute;
	top: 10px;
	left: 0;
	background: #fff;
	width: 6px;
	height: 1px;
}


.l-footer-area .menseki {
	max-width: 880px;
  margin: 5rem auto 0;
  padding: 2rem 3rem;
  background: #3d3d3d;
	box-sizing: border-box;
	color: #fff;
	font-size: 1.2rem;
	line-height: 2;
}

.l-footer-area .menseki span {
  display: inline-block;
}


.l-footer-area .ucp {
  margin: 1.5rem auto 0;
	color: #fff;
  font-size: 1rem;
  text-align: center;
	line-height: 1.8;
}


.l-footer-copy-wrapper {
  background: #fff;
}

.l-footer-copy {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
	font-size: 1.4rem;
}

.l-footer-copy a {
	display: inline-block;
  text-decoration: underline;
}
.l-footer-copy a:hover {
  text-decoration: none;
}

.l-footer-copy .sitemap {
  text-align: right;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	.l-footer-area {
		min-width: 100%;
	}


	.l-footer-area__inner {
		max-width: 100%;
		padding: 3rem 1.5rem 4rem;
	}


	.l-footer-logo {
		width: 60%;
	}


	.l-footer-menu-wrapper {
		margin: 3rem auto 0;
	}


	.l-footer-menu {
		margin-bottom: 0;
	}


.l-footer-menu__title {
	padding: 1.5rem 2rem 1.5rem 0;
}
	.l-footer-menu__title:after { 
		content: "";
		position: absolute;
		top: 50%;
		right: 0.5rem;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		background: none;
		border-top: solid 1px #fff;
		border-right: solid 1px #fff;
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	.l-footer-menu__title.open:after {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	
	.l-footer-menu__title__link {
		display: block;
		padding: 0 0 0 0;
		font-size: 1.5rem;
		pointer-events: none;
	}
	.l-footer-menu__title__link:after {
		display: none;
	}


	.l-footer-menu__list {
		display: none;
		margin-top: 0;
	}

	.l-footer-menu__list__item {
		width: 100%;
		margin-bottom: 0;
		padding: 0 0;
		border-bottom: 1px solid #fff;
	}
	.l-footer-menu__list__item:first-child {
		display: block;
	}

	.l-footer-menu__list__link {
		padding: 1.5rem 2rem 1.5rem 1.5rem;
		font-size: 1.4rem;
	}
	.l-footer-menu__list__link:after {
		content: "";
		position: absolute;
		top: 50%;
		right: 0.5rem;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}


	.l-footer-submenu__list {
		margin: 0 0 0 0;
		padding: 0 0;
	}

	.l-footer-submenu__list__item {
		margin: 0 0 0 0;
		border-top: 1px solid #fff;
	}

	.l-footer-submenu__list__link {
		padding: 1.5rem 2rem 1.5rem 1.5rem;
		font-size: 1.4rem;
	}
	.l-footer-submenu__list__link:before {
		display: none;
	}
	.l-footer-submenu__list__link:after {
		content: "";
		position: absolute;
		top: 50%;
		right: 0.5rem;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	.l-footer-area .menseki {
		max-width: 100%;
		margin: 3rem auto 0;
		padding: 1.5rem 1.5rem;
		font-size: 1rem;
	}


	.l-footer-area .ucp {
		margin: 1rem auto 0;
	}


	.l-footer-copy {
		max-width: 100%;
		padding: 1.5rem 1.5rem;
		display: block;
		font-size: 1.2rem;
		line-height: 1.6;
		text-align: center;
	}

	
	.sitemap {
		margin: 2rem 0 0 0;
		text-align: center;
	}
	.sitemap a {
		font-size: 1.4rem;
		color: #fff;
		text-decoration: underline;
	}
}




/*--------------------------------------
　PageTop
---------------------------------------*/
.l-pagetop {
  width: 64px;
  height: 64px;
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  z-index: 2;
  transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
}

.l-pagetop__link {
	background: #fff;
  width: 100%;
  height: 100%;
  display: block;
	box-sizing: border-box;
	border-radius: 50%;
	border: 2px solid #222;
  position: relative;
}
.l-pagetop__link:after {
	display: block;
	content: "";
	position: absolute;
	top: 43%;
	left: 50%;
	width: 12px;
	height: 12px;
	margin-left: -6px;
	border-top: 3px solid #222;
	border-left: 3px solid #222;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.l-pagetop span {
	display: none;
}

.l-pagetop.hide {
	opacity: 0;
}

/* SP ------------------------------*/
	@media screen and (max-width: 768px) {
	.l-pagetop {
		width: 40px;
		height: 40px;
		bottom: 10%;
		right: 1rem;
	}
		
	.l-pagetop__link {
		border: 1px solid #222;
	}
	.l-pagetop__link:after {
		width: 10px;
		height: 10px;
		margin-left: -5px;
		border-top: 1px solid #222;
		border-left: 1px solid #222;
	}
}





/*--------------------------------------
　MV
---------------------------------------*/
.low_mv {
	background: url("img/low_mv.jpg") top center no-repeat;
	background-size: cover;
	width: 100%;
	height: 148px;
	min-width: 1000px;
	box-sizing: border-box;
	position: relative;
}

.low_mv .mv_inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	max-width: 1000px;
	margin: auto;
}

.low_mv .logo {
	width: 314px;
	margin: auto;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	.low_mv {
		background: url("img/sp_low_mv.jpg") center 0 no-repeat;
		background-size: cover;
		width: 100%;
		height: 0;
		min-width: 100%;
		padding-top: calc(100%*148/750);
	}

	.low_mv .mv_inner {
		max-width: 100%;
	}

	.low_mv .logo {
		width: 50%;
	}
}





/*--------------------------------------
　Main Contents
---------------------------------------*/
.contents {
  width: 1000px;
	min-width: 1000px;
  margin: auto;
  padding: 7rem 0 13rem;
	box-sizing: border-box;
}

#category,
#page {
  width: 100%;
  margin: 0!important;
  padding: 0!important;
	box-sizing: border-box;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	.contents {
		width: 100%;
		min-width: 100%;
		padding: 3rem 1.5rem 6rem;
	}

	#category,
	#page {
		width: 100%;
	}
}





/*--------------------------------------
　Title
---------------------------------------*/
h2,
h3,
h4,
h5,
h6,
.cc {
	font-weight: bold;
	line-height: 1.4;
	box-sizing: border-box;
}
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	font-weight: bold;
}
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
	font-weight: bold;
}


#category h1,
#page h1 {
	background: #67c2b1;
	margin: 0 0 5rem;
	padding: 2.5rem 5rem 2.5rem 4rem;
	box-sizing: border-box;
	color: #fff;
	font-size: 3.6rem;
	font-weight: bold;
	line-height: 1.4;
	position: relative;
	overflow: hidden;
}
#category h1:before,
#page h1:before,
#category h1:after,
#page h1:after {
	content: "";
	position: absolute;
	background: #9ed8cd;
	width: 80px;
	height: 2px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#category h1:before,
#page h1:before {
	bottom: 55px;
	right: -15px;
}
#category h1:after,
#page h1:after {
	bottom: 26px;
	right: -12px;
}

#category h1 a,
#page h1 a {
	padding-right: 3rem;
	color: #fff;
	font-weight: bold;
	position: relative;
}
#category h1 a:after,
#page h1 a:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 16px;
	height: 16px;
	margin-top: -8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


#category h2,
#page h2 {
	background: linear-gradient(0deg, #aee8dd, #eef8f6);	
	background: -moz-linear-gradient(0deg, #aee8dd, #eef8f6);
	background: -webkit-linear-gradient(0deg, #aee8dd, #eef8f6);
	margin: 4rem 0 2rem;
	padding: 2.5rem 4rem 2.5rem 4rem;
	font-size: 3.2rem;
}

#category h2 a,
#page h2 a {
	padding-right: 3rem;
	font-weight: bold;
	position: relative;
}
#category h2 a:after,
#page h2 a:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 16px;
	height: 16px;
	margin-top: -8px;
	border-top: 2px solid #111;
	border-right: 2px solid #111;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


#category h3,
#page h3 {
	margin: 4rem 0 2rem;
	font-size: 2.8rem;
	position: relative;
}
#category h3:after,
#page h3:after {
	content: "";
  display: block;
  background: -webkit-linear-gradient(to right, #4ddac0, #8db9e6);
  background: linear-gradient(to right, #4ddac0, #8db9e6);
	width: 100%;
  height: 2px;
	margin-top: 1.5rem;
}

#category h3 a,
#page h3 a {
	display: inline-block;
	padding-right: 3rem;
	font-weight: bold;
	position: relative;
}
#category h3 a:after,
#page h3 a:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 12px;
	height: 12px;
	margin-top: -6px;
	border-top: 2px solid #111;
	border-right: 2px solid #111;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


#category h4,
#page h4 {
	margin: 4rem 0 2rem;
	color: #67c2b1;
	font-size: 2.2rem;
}

#category h4 a,
#page h4 a {
	display: inline-block;
	padding-right: 3rem;
	color: #67c2b1;
	font-weight: bold;
	position: relative;
}
#category h4 a:after,
#page h4 a:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 10px;
	height: 10px;
	margin-top: -5px;
	border-top: 2px solid #67c2b1;
	border-right: 2px solid #67c2b1;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	#category h1,
	#page h1 {
		margin: 0 0 3rem;
		padding: 1.5rem 2rem 1.5rem 2rem;
		font-size: 2.5rem;
	}
	#category h1:before,
	#page h1:before,
	#category h1:after,
	#page h1:after {
		width: 40px;
		height: 1px;
	}
	#category h1:before,
	#page h1:before {
		bottom: 30px;
		right: -10px;
	}
	#category h1:after,
	#page h1:after {
		bottom: 14px;
		right: -6px;
	}

	#category h1 a,
	#page h1 a {
		padding-right: 2rem;
	}
	#category h1 a:after,
	#page h1 a:after {
		width: 12px;
		height: 12px;
		margin-top: -6px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
	}


	#category h2,
	#page h2 {
		margin: 3rem 0 2rem;
		padding: 1.5rem 2rem 1.5rem 2rem;
		font-size: 2.2rem;
	}

	#category h2 a,
	#page h2 a {
		padding-right: 2rem;
		font-weight: bold;
		position: relative;
	}
	#category h2 a:after,
	#page h2 a:after {
		width: 12px;
		height: 12px;
		margin-top: -6px;
		border-top: 1px solid #111;
		border-right: 1px solid #111;
	}


	#category h3,
	#page h3 {
		margin: 3rem 0 2rem;
		font-size: 1.9rem;
	}
	#category h3:after,
	#page h3:after {
		height: 1.5px;
		margin-top: 1rem;
	}

	#category h3 a,
	#page h3 a {
		display: block;
		padding-right: 2rem;
	}
	#category h3 a:after,
	#page h3 a:after {
		width: 10px;
		height: 10px;
		margin-top: -5px;
		border-top: 1px solid #111;
		border-right: 1px solid #111;
	}


	#category h4,
	#page h4 {
		margin: 3rem 0 2rem;
		font-size: 1.5rem;
	}

	#category h4 a,
	#page h4 a {
		padding-right: 2rem;
	}
	#category h4 a:after,
	#page h4 a:after {
		width: 8px;
		height: 8px;
		margin-top: -4px;
		border-top: 1px solid #67c2b1;
		border-right: 1px solid #67c2b1;
	}
}





/*--------------------------------------
　テキスト
---------------------------------------*/
.contents p {
	margin: 3rem 0;
	font-size: 1.5rem;
	line-height: 2;
}

.contents p a {
	text-decoration: underline;
}
.contents p a:hover {
	text-decoration: none;
}
.contents .btn-internal a{
	text-decoration: none;
}

span.txt_marker {
	background: #f1ffba;
	font-weight: bold;
}

.contents p.caption {
  margin: 1.5rem 0;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #C0C0C0 #eee;
	font-size: 1.3rem;
	color:#666;
}
/* for chrome, safari */
.caption::-webkit-scrollbar {
  height: 5px;
}

.caption::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #C0C0C0;
}

.caption::-webkit-scrollbar-track {
  border-radius: 2px;
  background: #eee;
}
.contents p.caption a {
	color: #666;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	.contents p {
		margin: 2rem 0;
		font-size: 1.4rem;
		line-height: 1.8;
	}
	
	.caption {
		margin: 1rem 0 0 0;
	}
}





/*--------------------------------------
　リスト
---------------------------------------*/
/*----- ulリスト -----*/
#category ul,
#page ul {
	margin: 3rem 0;
}

#category ul li,
#page ul li {
  margin: 0 0 1rem 0;
  padding: 0 0 0 2rem;
	font-size: 1.5rem;
  line-height: 1.8;
	position: relative;
}
#category ul li:last-child,
#page ul li:last-child {
  margin: 0 0 0 0;
}
#category ul li::before,
#page ul li::before {
  content: "";
  display: block;
	position: absolute;
  top: 11px;
  left: 0;
  width: 10px;
  height: 10px;
  background: #67c2b1;
	box-sizing: border-box;
  border-radius: 50%;
}

#category ul li a,
#page ul li a {
	display: inline-block;
	text-decoration: underline;
}

#category ul li a:hover,
#page ul li a:hover {
	text-decoration: none;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	#category ul,
	#page ul {
		margin: 2rem 0;
	}
}





/*--------------------------------------
　リンク
---------------------------------------*/
.btn-internal a,
.btn-web a {
	display: block;
	max-width: 485px;
	margin: 4rem auto 4rem;
	padding: 2.5rem 5rem;
	box-sizing: border-box;
	color: #fff;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
	border-radius: 50px;
	position: relative;
}
.btn-internal a:after,
.btn-web a:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 3rem;
	width: 10px;
	height: 10px;
	margin-top: -5px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/*----- btn-web（外部リンク） -----*/
.btn-web a {
	background-image: linear-gradient(to right, #ffb400 0%, #fa713b 51%, #ffb400 100%);
	background-size: 200% auto;
	box-shadow: 0px 5px 0px 0px #c75212;
}
.btn-web a:hover {
	background-position: right center;
	opacity: 1;
}


/*----- btn-internal（内部リンク） -----*/
.btn-internal a {
	background: #111;
	box-shadow: 0px 5px 0px 0px #919191;
}


/*----- btn-link（テキストリンク） -----*/
.btn-link {
	text-align: right;
}
.btn-link a {
	display: inline-block;
	background: url("img/arrow01.png") right center no-repeat;
	background-size: 16px auto;
	margin: 4rem 0 4rem;
	padding: 0 2.5rem 0 0;
	font-size: 1.5rem;
	line-height: 1.5;
	text-decoration: underline;
	position: relative;
}
.btn-link a:hover {
	text-decoration: none;
}


/*----- btn-tel（電話ボタン） -----*/
.btn-tel a {
	display: none;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	.btn-internal a,
	.btn-web a {
		display: block;
		max-width: 85%;
		margin: 3rem auto 3rem;
		padding: 1.8rem 4rem;
		box-sizing: border-box;
		color: #fff;
		font-size: 1.4rem;
		font-weight: bold;
		text-align: center;
		line-height: 1.5;
		border-radius: 50px;
		position: relative;
	}
	.btn-internal a:after,
	.btn-web a:after {
		content: "";
		position: absolute;
		top: 50%;
		right: 2rem;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		border-top: solid 1px #fff;
		border-right: solid 1px #fff;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	/*----- btn-web（外部リンク） -----*/
	.btn-web a {
		background-image: linear-gradient(to right, #ffb400 0%, #fa713b 51%, #ffb400 100%);
		background-size: 200% auto;
		box-shadow: 0px 4px 0px 0px #c75212;
	}
	.btn-web a:hover {
		background-position: right center;
		opacity: 1;
	}


	/*----- btn-internal（内部リンク） -----*/
	.btn-internal a {
		box-shadow: 0px 4px 0px 0px #919191;
	}


	/*----- btn-link（テキストリンク） -----*/
	.btn-link {
		text-align: center;
	}
	.btn-link a {
		display: block;
		background: #fff;
		max-width: 85%;
		margin: 3rem auto 3rem;
		padding: 1.8rem 4rem;
		box-sizing: border-box;
		font-size: 1.4rem;
		font-weight: bold;
		text-align: center;
		line-height: 1.5;
		border: 1px solid #111;
		border-radius: 50px;
		text-decoration: none;
		position: relative;
	}
	.btn-link a:after {
		content: "";
		position: absolute;
		top: 50%;
		right: 2rem;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		border-top: solid 1px #111;
		border-right: solid 1px #111;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	
	/*----- btn-tel（電話ボタン） -----*/
	.btn-tel a {
		display: block;
		background: #2c85d1 url("img/tel_icon.png") left 2.5rem center no-repeat;
		background-size: 18px auto;
		max-width: 85%;
		margin: 3rem auto 3rem;
		padding: 1.8rem 4rem;
		box-sizing: border-box;
		color: #fff;
		font-size: 1.4rem;
		font-weight: bold;
		text-align: center;
		line-height: 1.5;
		border-radius: 50px;
		box-shadow: 0px 4px 0px 0px #04579d;
		position: relative;
	}
}



/*--------------------------------------
　Table
---------------------------------------*/
table {
	background: #fff;
  width: 100%;
  margin: 8rem 0;
	box-sizing: border-box;
	border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #b3b3b3;
}

table th {
	background: #f6f6f6;
	padding: 1.5rem;
	box-sizing: border-box;
	text-align: center;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.4;
  word-break: break-all;
	border-left: 1px solid #b3b3b3;
	border-bottom: 1px solid #b3b3b3;
}

table td {
	padding: 1.5rem;
	box-sizing: border-box;
	text-align: center;
	font-size: 1.5rem;
	line-height: 1.4;
  word-break: break-all;
	border-left: 1px solid #b3b3b3;
	border-bottom: 1px solid #b3b3b3;
}

table th a {
	font-weight: bold;
	text-decoration: underline;
}
table th a:hover {
	text-decoration: none;
}

table td a {
	text-decoration: underline;
}
table td a:hover {
	text-decoration: none;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	table {
		margin: 5rem 0;
	}

	table th {
		display: block;
		padding: 1.2rem;
		font-size: 1.4rem;
		border-left: none;
		border-bottom: 1px solid #b3b3b3;
	}

	table td {
		display: block;
		padding: 1.2rem;
		font-size: 1.4rem;
		border-left: none;
		border-bottom: 1px solid #b3b3b3;
	}
	
	table tbody tr:last-child td:last-child {
		border-bottom: none;
	}
}





/*--------------------------------------
　画像＋テキスト
---------------------------------------*/
.float-wrap {
	margin: 8rem 0;
	box-sizing: border-box;
}

.float-img {
  position: relative;
  z-index: 1;
}

.float-img .flame img {
	display: block;
	width: auto;
	margin: auto;
  vertical-align: top;
}

.float-img.fl {
  float: left;
  width: 380px;
  padding-right: 4rem;
}

.float-img.fr {
  float: right;
  width: 380px;
  padding-left: 4rem;
}

.float-img .caption {
	font-size: 1rem;
	color: #888;
	text-align: center;
	line-height: 1.3;
	word-wrap: break-word;
	margin: 1.5rem 0 0 0;
}

.float-wrap p {
	margin: 0 auto 0;
}

.float-wrap .catch-copy {
	margin: 2rem 0 2rem 0;
	color: #67c2b1;
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1.5;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	.float-wrap {
		margin: 5rem 0;
	}
	
	.float-img.fl {
		float: left;
		width: 100%;
		padding-right: 0;
	}
	.float-img.fr {
		float: right;
		width: 100%;
		padding-left: 0;
	}
	
	.float-img.fl.small {
		width: 40%;
		margin-right: 4%;
	}
	.float-img.fr.small {
		width: 40%;
		margin-left: 4%;
	}
	
	.float-img .caption {
		margin: 1rem 0 1.5rem 0;
	}

	.float-wrap .catch-copy {
		margin: 1.5rem 0 1.5rem 0;
		font-size: 1.8rem;
	}
}





/*--------------------------------------
　slide_box
---------------------------------------*/
.slider img {
	width: 100%;
	height: auto;
}

.slide-item {
	margin: 0 1rem;
	position: relative;
}

.slide-item .image {
	position: relative;
}
.slide-item .image:before {
	content: "";
	position: absolute;
	top: 1rem;
	left: -1rem;
	background: -webkit-linear-gradient(45deg, #8ce1d1, #87cfe7);
  background: linear-gradient(45deg, #8ce1d1, #87cfe7);
	width: 100%;
	height: 100%;
	z-index: -1;
}

.slick-slide:focus {
  outline: none;
}


button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.slide-arrow {
	display: block;
	position: absolute;
	top: 40%;
	width: 20px;
	height: 20px;
	border-top: solid 1px #111;
	border-right: solid 1px #111;
	z-index: 1;
	cursor: pointer;
}
.prev-arrow {
	left: -1.5rem;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
.next-arrow {
	right: -1.5rem;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	.slide-item {
		margin: 0 1rem;
	}
	
	.slide-item .image:before {
		top: 0.8rem;
		left: -0.8rem;
	}


	.slide-arrow {
		top: 45%;
		width: 18px;
		height: 18px;
	}
	.prev-arrow {
		left: -1.2rem;
	}
	.next-arrow {
		right: -1.2rem;
	}
}





/*--------------------------------------
　tag_list
---------------------------------------*/
.tag_list {
	display: flex;
	flex-wrap: wrap;
}
.tag_list li {
	font-size: 1.4rem;
	border: 1px solid #111;
	border-radius: 4px;
	box-sizing: border-box;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	.tag_list li {
		font-size: 1.3rem;
		border-radius: 2px;
	}
}





/*--------------------------------------
　com_parts01
---------------------------------------*/
.com_parts01 {
	background: #f5f5f5 url("img/com_parts01_bg.png") 15% 0 no-repeat;
	background-size: 350px auto;
	width: 100%;
	min-width: 1000px;
	padding: 8rem 0 12rem;
	box-sizing: border-box;
}



.com_parts01_inner {
	max-width: 1000px;
	margin: auto;
}



.com_parts01 .ttl_wrap {
	text-align: center;
}

.com_parts01 .main_ttl {
	display: inline-block;
}

.com_parts01 .ttl_eng {
	width: 228px;
	margin-left: -6rem;
}

.com_parts01 .ttl {
	margin-top: -5rem;
	font-size: 3.8rem;
	font-weight: bold;
	line-height: 1.4;
}



.com_parts01 .lead {
	margin: 4rem 0 0;
	padding: 0 12rem;
	box-sizing: border-box;
	line-height: 2;
}



.com_parts01_block {
	display: flex;
	justify-content: space-between;
	margin: 7rem 0 0;
}



.com_parts01_block .box {
	background: #fff;
	width: calc(33.33% - 2rem);
	padding: 0 2rem 5rem;
	box-sizing: border-box;
}


.com_parts01_block .cc {
	margin-top: -2rem;
	font-size: 2rem;
	text-align: center;
	line-height: 1.4;
}


.com_parts01_block .box_ttl {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 1.5rem 0 0;
	font-size: 3rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.2;
}
.com_parts01_block .box_ttl.small {
	font-size: 2.5rem;
}


.com_parts01_block .txt {
	margin: 1.5rem 0 0;
	font-size: 1.4rem;
	line-height: 2;
}
.com_parts01_block .caption{
	font-size:1.1rem;
	margin-top:1.5rem;
	color:#666;
}

.com_parts01_block .price {
	background: #67c2b1;
	margin: 2rem 0 0;
	padding: 1.5rem 1.5rem;
	color: #fff;
	font-size: 1.4rem;
	text-align: center;
	line-height: 1.2;
	position: relative;
}
.com_parts01_block .price:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 1px solid #fff;
	margin: 5px;
}
.com_parts01_block .price span {
	font-size: 2.4rem;
	font-weight: bold;
}


.com_parts01_block .img_area {
	margin: 1.5rem 0 0;
}


.com_parts01_block .table_area {
	margin: 2rem 0 0;
}

.com_parts01_block .table_area table {
	width: 100%;
	margin: 0 0 0;
	border: 1px solid #ebebeb;
	table-layout: fixed;
}

.com_parts01_block .table_area th {
	background: #ebebeb;
	width: 35%;
	padding: 0.5rem;
	font-size: 1.4rem;
	border-left: 1px solid #ebebeb;
	border-bottom: 1px solid #fff;
}
.com_parts01_block .table_area tr:last-child th {
	border-bottom: none;
}

.com_parts01_block .table_area td {
	padding: 1rem;
	box-sizing: border-box;
	font-size: 1.4rem;
	border-left: 1px solid #ebebeb;
	border-bottom: 1px solid #ebebeb;
}

.com_parts01_block .table_area .circle span {
	display: block;
	width: 32px;
	height: 32px;
	margin: auto;
	box-sizing: border-box;
	border-radius: 50%;
	border: 6px solid #f01d54;
}

.com_parts01_block .table_area .etc {
	width: 100%;
	text-align: right;
}

.com_parts01_block .table_area .tag_list {
	display: flex;
	flex-wrap: wrap;
}

.com_parts01_block .table_area .tag_list li {
	margin: 0 0.4rem 0.4rem 0;
	padding: 0.3rem 0.3rem;
	font-size: 1.1rem;
}


.com_parts01_block .btn-web a {
	margin: 2.5rem auto 0;
	padding: 1.6rem 4rem;
	font-size: 1.4rem;
}
.com_parts01_block .btn-web a:after {
	right: 2rem;
	width: 8px;
	height: 8px;
	margin-top: -4px;
}



.com_parts01 .note {
	margin: 2rem 0 0;
	color: #999;
	font-size: 1.4rem;
	line-height: 1.8;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	.com_parts01 {
		background: #f5f5f5 url("img/com_parts01_bg.png") 1rem -7rem no-repeat;
		background-size:60% auto;
		width: 100%;
		min-width: 100%;
		padding: 3rem 1.5rem 6rem;
	}



	.com_parts01_inner {
		max-width: 100%;
	}


	
	.com_parts01 .ttl_eng {
		width: 40%;
		margin-left: 2rem;
	}

	.com_parts01 .ttl {
		margin-top: -3rem;
		font-size: 2.5rem;
	}



	.com_parts01 .lead {
		margin: 2rem 0 0;
		padding: 0 0;
		line-height: 1.8;
	}



	.com_parts01_block {
		display: block;
		margin: 4rem 0 0;
	}



	.com_parts01_block .box {
		width: 100%;
		margin: 0 0 4rem;
		padding: 0 2rem 4rem;
	}
	.com_parts01_block .box:last-child {
		margin: 0 0 0;
	}


	.com_parts01_block .cc_wrap {
		text-align: center;
	}
	
	.com_parts01_block .cc {
		margin-top: 0;
		font-size: 1.8rem;
		line-height: 1.4;
		position: relative;
		top: -1.5rem;
	}


	.com_parts01_block .box_ttl {
		display: block;
		margin: 0 0 0;
		font-size: 3rem;
	}
	.com_parts01_block .box_ttl.small {
		font-size: 3rem;
	}


	.com_parts01_block .txt {
		line-height: 1.8;
	}


	.com_parts01_block .price {
		margin: 1.5rem 0 0;
		padding: 1.5rem 1.5rem;
		font-size: 1.3rem;
	}
	.com_parts01_block .price:after {
		margin: 3px;
	}
	.com_parts01_block .price span {
		font-size: 2.4rem;
		padding-right: 0.5rem;
	}


	.com_parts01_block .table_area {
		margin: 1.5rem 0 0;
	}

	.com_parts01_block .table_area tr {
		width: 50%;
		float: left;
	}
	.com_parts01_block .table_area tr:last-child {
		width: 100%;
	}

	.com_parts01_block .table_area th {
		width: 100%;
		padding: 0.8rem;
		border-left: 1px solid #fff;
		border-bottom: none;
		font-size: 1.2rem;
	}
	.com_parts01_block .table_area tr:last-child th {
		border-bottom: none;
	}
	.com_parts01_block .table_area tr:first-child th,
	.com_parts01_block .table_area tr:last-child th {
		border-left: none;
		font-size: 1.3rem;
	}

	.com_parts01_block .table_area td {
		width: 100%;
		padding: 1.2rem;
		border-bottom: none;
	}
	.com_parts01_block .table_area tr:first-child td,
	.com_parts01_block .table_area tr:last-child td {
		border-left: none;
	}

	.com_parts01_block .table_area .circle span {
		width: 30px;
		height: 30px;
		border: 5px solid #f01d54;
	}
	
	.com_parts01_block .table_area .etc {
		margin-top: -1rem;
	}

	
	.com_parts01_block .btn-web a {
		margin: 2rem auto 0;
	}

	.com_parts01_block .btn-tel a {
		margin: 1.5rem auto 0;
	}


	
	.com_parts01 .note {
		margin: 1.5rem 0 0;
		font-size: 1.2rem;
	}
}