@charset "utf-8";

/* GoogleFonts読み込み 下記のライセンス記述は削除禁止 */

/*
* "Noto Sans JP" licensed under the SIL Open Font License 1.1
* by https://fonts.google.com/specimen/Noto+Sans+JP
*/

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/NS-400.woff2") format("woff2"), url("fonts/NS-400.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: url("fonts/NS-500.woff2") format("woff2"), url("fonts/NS-500.woff") format("woff");
  font-display: swap;
}





/*----------------------------------------------------------------------------
　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 {
	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) {
	a:hover {
		opacity: 1;
		filter: alpha(opacity=100);
		-ms-filter: "alpha(opacity=100)";
	}
	
	.sp_br {
		display: block;
	}
	.pc_br {
		display: none;
	}

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





/*--------------------------------------
　Main Contents
---------------------------------------*/
.contents {
  width: 1000px;
	min-width: 1000px;
  margin: auto;
  padding: 9rem 0 12rem;
	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: 4rem 1.5rem 6rem;
	}

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





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

header .logo_area {
	width: 150px;
}

header .logo_block {
	background: #111;
	width: 150px;
	height: 150px;
	padding: 3rem 0;
	box-sizing: border-box;
	position: relative;
}

header .logo_block a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 3rem 0;
	box-sizing: border-box;
}

header .logo {
	width: 76px;
	margin: auto;
}

header .sitename {
	margin: 1rem 0 0;
	color: #fff;
	font-size: 1rem;
	text-align: center;
	line-height: 1.6;
	letter-spacing: 0.5em;
}

header .sponsore {
	margin: 0.5rem 0 0;
	color: #fff;
	font-size: 1.4rem;
	text-align: center;
	line-height: 1.4;
	letter-spacing: 0.1em;
}

.header_lower {
	background: url("img/low_mvbg.jpg") center center no-repeat;
	background-size: cover;
	padding: 0 0 3rem;
}

.header_lower .logo_block {
	padding: 0 0;
}

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

	header .logo_area {
		width: 95px;
	}

	header .logo_block {
		width: calc(100vw - 6rem);
		height: 58px;
		padding: 0.5rem 1rem;
		position: relative;
		background: rgba(0,0,0,0.5);
	}

	header .logo_block a {
		padding: 0.5rem 1rem;
	}

	header .logo {
		/* width: 7rem; */
		display: inline-block;
		top: 1rem;
		margin: 0;
		position: absolute;
	}
	header .logo img {
		vertical-align:unset;
		top: 0;
	}

	header .sitename {
		margin: 0;
		padding-left: 9rem;
		font-size: 1.4rem;
		line-height: 1.6;
		letter-spacing: 0.3em;
		display: inline-block;
		text-align: left;
	}

	header .sponsore {
		margin: 0.1rem 0 0;
		font-size: 0.9rem;
		position: absolute;
		top: 6rem;
		left: 1rem;
	}

	.header_lower {
		background: url("img/low_mvbg.jpg") left center no-repeat;
		background-size: cover;
		padding: 0 0 2rem;
	}
}


/*--------------------------------------
　Navi
---------------------------------------*/
/*----- hb-menu -----*/
#hb-menu {
	display: table;
	position: fixed;
	top: 2rem;
	right: 2rem;
	width: auto;
	height: auto;
	background: none;
	box-sizing: border-box;
	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: #fff;
	width: 35px;
	height: 1px;
	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: 10px;
}
#hb-menu span:nth-of-type(4){
	background: none;
	width: auto;
	height: auto;
	margin-top: 10px;
	position: relative;
}
#hb-menu span:nth-of-type(4):before {
	content: "MENU";
	display: block;
	color: #fff;
	font-size: 1rem;
	text-align: center;
	letter-spacing: 0.1em;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}

#hb-menu.fixed span {
	background: #111;
}
#hb-menu.fixed span:nth-of-type(4){
	background: none;
}
#hb-menu.fixed span:nth-of-type(4):before {
	color: #111;
}

/* ナビゲーションアイコン：アクティブ */
.hb-open span:nth-of-type(1) {
	-webkit-transform: translateY(11px) translateX(0) rotate(45deg);
	-ms-transform: translateY(11px) translateX(0) rotate(45deg);
	transform: translateY(11px) 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(-11px) translateX(0) rotate(-45deg);
	-ms-transform: translateY(-11px) translateX(0) rotate(-45deg);
	transform: translateY(-11px) translateX(0) rotate(-45deg);
}
.hb-open #hb-menu span:nth-of-type(4):before {
	content: "CLOSE";
}

.hb-open #hb-menu.fixed span {
	background: #fff;
}
.hb-open #hb-menu.fixed span:nth-of-type(4){
	background: none;
}
.hb-open #hb-menu.fixed span:nth-of-type(4):before {
	color: #fff;
}


/* 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: #111;
	width: 100%;
	height: 100%;
	padding: 15rem 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: 8px;
	height: 8px;
	margin-top: -4px;
	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 {
	display: block;
	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 Navi
---------------------------------------*/
/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	/*----- hb-menu -----*/
	#hb-menu {
		display: table;
		position: fixed;
		top: 1.5rem;
		right: 1.5rem;
		width: auto;
		height: auto;
		background: none;
		box-sizing: border-box;
		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: #fff;
		width: 30px;
		height: 1px;
		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: 8px;
	}
	#hb-menu span:nth-of-type(4){
		background: none;
		width: auto;
		height: auto;
		margin-top: 8px;
		position: relative;
	}
	#hb-menu span:nth-of-type(4):before {
		content: "MENU";
		display: block;
		color: #fff;
		font-size: 0.9rem;
		text-align: center;
		letter-spacing: 0.1em;
	}

	/* ナビゲーションアイコン：アクティブ */
	.hb-open span:nth-of-type(1) {
		-webkit-transform: translateY(9px) translateX(0) rotate(45deg);
		-ms-transform: translateY(9px) translateX(0) rotate(45deg);
		transform: translateY(9px) 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(-9px) translateX(0) rotate(-45deg);
		-ms-transform: translateY(-9px) translateX(0) rotate(-45deg);
		transform: translateY(-9px) translateX(0) rotate(-45deg);
	}
	.hb-open #hb-menu span:nth-of-type(4):before {
		content: "CLOSE";
	}

	/* 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: #111;
		width: 100%;
		height: 100%;
		padding: 6rem 1.5rem;
		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: 100%;
		margin: auto;
	}

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

	.hb_menu_title {
		padding: 1.5rem 2rem 1.5rem 0;
		border-bottom: 1px solid #fff;
		position: relative;
	}
	.hb_menu_title:after {
		content: "";
		position: absolute;
		top: 50%;
		right: 0.5rem;
		width: 6px;
		height: 6px;
		margin-top: -3px;
		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;
		color: #fff;
		font-size: 1.5rem;
		font-weight: bold;
		line-height: 1.6;
		pointer-events: none;
		position: relative;
	}
	.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: 6px;
		height: 6px;
		margin-top: -3px;
		background: none;
		border-top: solid 1px #fff;
		border-right: solid 1px #fff;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	
	
	.hb_menu_list {
		display: none;
		box-sizing: border-box;
		margin-top: 0;
	}

	.hb_menu_list_item {
		width: 100%;
		margin: 0 0 0 0;
		padding: 0 0;
		box-sizing: border-box;
		border-bottom: 1px solid rgba(255,255,255,0.6);
		position: relative;
	}
	.hb_menu_list_item:first-child {
		display: block;
	}

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





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

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





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


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


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

.l-footer-logo a {
	display: block;
}

.l-footer-logo .logo_block {
	background: #111;
	width: 150px;
	height: 150px;
	padding: 3rem 0;
	box-sizing: border-box;
	position: relative;
}

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

.l-footer-logo .sitename {
	margin: 1rem 0 0;
	color: #fff;
	font-size: 1rem;
	text-align: center;
	line-height: 1.6;
	letter-spacing: 0.5em;
}

.l-footer-logo .sponsore {
	margin: 0.5rem 0 0;
	color: #111;
	font-size: 1.4rem;
	text-align: center;
	line-height: 1.4;
	letter-spacing: 0.1em;
}


.l-footer-menu-wrapper {
  margin: 5rem 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 #111;
	position: relative;
}

.l-footer-menu__title__link {
	display: inline-block;
	padding: 0 3rem 0 0;
  font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.6;
  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__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 {
	display: block;
	padding: 0 0 0 1.2rem;
	font-size: 1.4rem;
	line-height: 1.6;
	position: relative;
}
.l-footer-menu__list__link:before {
	content: "";
 	position: absolute;
	top: 10px;
	left: 0;
	background: #111;
	width: 6px;
	height: 2px;
}


.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 {
	display: block;
	padding: 0 0 0 1.2rem;
	font-size: 1.4rem;
	line-height: 1.6;
	position: relative;
}
.l-footer-submenu__list__link:before {
	content: "";
 	position: absolute;
	top: 10px;
	left: 0;
	background: #111;
	width: 6px;
	height: 2px;
}


.l-footer-area .menseki {
	background: #f0f0f0;
  margin: 5rem auto 0;
  padding: 2rem 3rem;
  box-sizing: border-box;
	font-size: 1.2rem;
	line-height: 2;
}

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


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


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

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

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

.l-footer-copy .sitemap {
  text-align: right;
}
.l-footer-copy .sitemap a {
	padding: 0 1.5rem 0 0;
	color: #fff;
 	position: relative;
}
.l-footer-copy .sitemap a:after {
	content: "";
 	position: absolute;
	top: 50%;
	right: 0;
	width: 6px;
	height: 6px;
	margin-top: -3px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* 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: 95px;
	}

	.l-footer-logo .logo_block {
		width: 95px;
		height: 95px;
		padding: 1.4rem 0;
	}

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

	.l-footer-logo .sitename {
		margin: 0.5rem 0 0;
		font-size: 0.5rem;
		line-height: 1.6;
		letter-spacing: 0.3em;
	}

	.l-footer-logo .sponsore {
		margin: 0.5rem 0 0;
		font-size: 0.9rem;
	}


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


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


	.l-footer-menu__title {
		padding: 1.5rem 2.5rem 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 #111;
		border-right: solid 1px #111;
		-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__list {
		display: none;
		margin-top: 0;
	}

	.l-footer-menu__list__item {
		width: 100%;
		margin-bottom: 0;
		padding: 0 0;
		border-bottom: 1px solid rgba(55,57,61,0.5);
	}
	.l-footer-menu__list__item:first-child {
		display: block;
	}

	.l-footer-menu__list__link {
		padding: 1.5rem 2rem 1.5rem 1.5rem;
	}
	.l-footer-menu__list__link:before {
		display: none;
	}
	.l-footer-menu__list__link:after {
		content: "";
		position: absolute;
		top: 50%;
		right: 0.5rem;
		width: 6px;
		height: 6px;
		margin-top: -3px;
		border-top: 1px solid #111;
		border-right: 1px solid #111;
		-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 1rem 0;
	}
	.l-footer-submenu__list__item:last-child {
		margin: 0 0 1.5rem 0;
	}

	.l-footer-submenu__list__link {
		padding: 0 0 0 2.5rem;
	}
	.l-footer-submenu__list__link:before {
		content: "";
		position: absolute;
		top: 1.2rem;
		left: 1.5rem;
		background: #111;
		width: 6px;
		height: 1px;
	}


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


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


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

	.sitemap {
		margin: 2rem 0 0 0;
		text-align: center;
	}
	.sitemap a {
		padding: 0 1rem 0 0;
		font-size: 1.3rem;
		text-decoration: underline;
		position: relative;
	}
	.sitemap a:after {
		content: "";
		position: absolute;
		top: 50%;
		right: 0;
		width: 6px;
		height: 6px;
		margin-top: -3px;
		border-top: 1px solid #111;
		border-right: 1px solid #111;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
}





/*--------------------------------------
　PageTop
---------------------------------------*/
.l-pagetop {
  width: 45px;
  height: 45px;
	box-sizing: border-box;
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  z-index: 0;
}

.l-pagetop__link {
	background: #333;
  width: 100%;
  height: 100%;
  display: block;
	box-sizing: border-box;
  position: relative;
	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:after {
	display: block;
	content: "";
	position: absolute;
	top: 43%;
	left: 50%;
	width: 10px;
	height: 10px;
	margin-left: -6px;
	border-top: 4px solid #fff;
	border-left: 4px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.l-pagetop span {
	display: none;
}

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





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


#category h1,
#page h1 {
	margin: 0 0 5rem;
	padding: 0 0 1.5rem;
	box-sizing: border-box;
	font-size: 3.6rem;
	font-weight: 500;
	line-height: 1.6;
	text-align: center;
	border-bottom: 5px solid #111;
}


#category h2,
#page h2 {
	background: #f2f4f6;
	margin: 9rem 0 3rem;
	padding: 2.5rem 3rem;
	font-size: 3rem;
}

#category h2 a,
#page h2 a {
	padding-right: 3.5rem;
	position: relative;
}
#category h2 a:after,
#page h2 a:after{
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
	background: url("img/arrow01.png") right center no-repeat;
	background-size: 100% auto;
	width: 17px;
	height: 9px;
}


#category h3,
#page h3 {
	display: inline-block;
	background: #444;
	margin: 4rem 0 2rem;
	padding: 1.5rem 3rem;
	color: #fff;
	font-size: 2.4rem;
}

#category .slide_wrap h3, #page .slide_wrap h3 {
	margin: 0;
}

#category h3 a,
#page h3 a {
	padding-right: 3.5rem;
	color: #fff;
	position: relative;
}
#category h3 a:after,
#page h3 a:after{
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
	background: url("img/arrow02.png") right center no-repeat;
	background-size: 100% auto;
	width: 17px;
	height: 9px;
}


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

#category h4 a,
#page h4 a {
	display: inline-block;
	padding-right: 3.5rem;
	position: relative;
}
#category h4 a:after,
#page h4 a:after{
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
	background: url("img/arrow01.png") right center no-repeat;
	background-size: 100% auto;
	width: 17px;
	height: 9px;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	#category h1,
	#page h1 {
		margin: 0 0 4rem;
		padding: 0 0 1rem;
		font-size: 2.5rem;
		line-height: 1.4;
		border-bottom: 3px solid #111;
	}


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

	#category h2 a,
	#page h2 a {
		padding-right: 3rem;
	}


	#category h3,
	#page h3 {
		margin: 3rem 0 2rem;
		padding: 1rem 2rem;
		font-size: 2rem;
	}

	#category h3 a,
	#page h3 a {
		padding-right: 3rem;
	}


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

	#category h4 a,
	#page h4 a {
		padding-right: 3rem;
	}
}





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

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

.contents p span {
	color: #379346;
	font-size: 1.7rem;
	font-weight: bold;
}


.caption {
	font-size: 1rem;
	color: #888;
	line-height: 1.3;
	word-wrap: break-word;
	word-break: break-all;
	margin: 1rem 0 0 0;
	padding: 0 0 0.5rem 0;
	overflow-x: auto;
	overflow-y: hidden;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
	scrollbar-color: #aeaeae #e7e7e7;
	scrollbar-width: thin;
}
.caption::-webkit-scrollbar {
	height: 2px;
}
.caption::-webkit-scrollbar-track {
	background: #e7e7e7;
	margin: 0 0;
	border: none;
	border-radius: 0;
	box-shadow: none;
}
.caption::-webkit-scrollbar-thumb {
	background: #aeaeae;
	border-radius: 0;
	box-shadow: none;
}

.caption a {
	color: #888;
	text-decoration: underline;
}

#point .point_block.point_block01 .point_block01_box .caption {
	margin-top: 2rem;
}

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

	
	.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 2.5rem;
	font-size: 1.4rem;
  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: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  background: #333;
	box-sizing: border-box;
}

#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;
	}
	
	#category ul li,
	#page ul li {
		padding: 0 0 0 2rem;
	}
	#category ul li::before,
	#page ul li::before {
		top: 10px;
		left: 0;
		width: 8px;
		height: 8px;
	}
}





/*--------------------------------------
　リンク
---------------------------------------*/
.btn-web a,
.btn-internal a {
	display: block;
	max-width: 425px;
	margin: 4rem auto 4rem;
	padding: 2.2rem 6rem;
	box-sizing: border-box;
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
	text-decoration: none!important;
	position: relative;
}


/*----- btn-internal（内部リンク） -----*/
.btn-internal a {
	background: #fff url("img/arrow01.png") right 3rem center no-repeat;
	background-size: 17px auto;
	border: 1px solid #111;
}


/*----- btn-web（外部リンク） -----*/
.btn-web a {
	background: #379346 url("img/arrow02.png") right 3rem center no-repeat;
	background-size: 17px auto;
	color: #fff;
	box-shadow: 6px 6px 0px 0px #9a9a9a;
}
.btn-web a:hover {
	background: #46bd59 url("img/arrow02.png") right 3rem center no-repeat;
	background-size: 17px auto;
	box-shadow: 6px 6px 0px 0px #b9b5b5;
	opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
}


/*----- btn-link（テキストリンク） -----*/
.btn-link {
	text-align: right;
}
.btn-link a {
	display: inline-block;
	margin: 4rem 0 4rem;
	padding: 0 2rem 0 0;
	font-size: 1.4rem;
	line-height: 1.5;
	text-decoration: underline;
	position: relative;
}
.btn-link a:after{
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 6px;
	height: 6px;
	margin-top: -3px;
	border-top: solid 2px #111;
	border-right: solid 2px #111;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.btn-link a:hover {
	text-decoration: none;
}


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

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	.btn-web a,
	.btn-internal a {
		display: block;
		max-width: 85%;
		margin: 3rem auto 3rem;
		padding: 1.8rem 4rem;
		box-sizing: border-box;
		font-size: 1.6rem;
		font-weight: bold;
		text-align: center;
		line-height: 1.5;
		text-decoration: none!important;
		position: relative;
	}


	/*----- btn-internal（内部リンク） -----*/
	.btn-internal a {
		background: #fff url("img/arrow01.png") right 1.5rem center no-repeat;
		background-size: 17px auto;
	}

	
	/*----- btn-web（外部リンク） -----*/
	.btn-web a {
		background: #379346 url("img/arrow02.png") right 1.5rem center no-repeat;
		background-size: 17px auto;
		box-shadow: 4px 4px 0px 0px #9a9a9a;
	}
	.btn-web a:hover {
		background: #46bd59 url("img/arrow02.png") right 1.5rem center no-repeat;
		background-size: 17px auto;
		box-shadow: 4px 4px 0px 0px #b9b5b5;
	}
	

	/*----- btn-link（テキストリンク） -----*/
	.btn-link {
		text-align: right;
	}
	.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;
		text-decoration: none!important;
		border: 1px solid #111;
		position: relative;
	}
	.btn-link a:after{
		content: "";
		position: absolute;
		top: 50%;
		right: 1.5rem;
		width: 6px;
		height: 6px;
		margin-top: -3px;
		border-top: solid 2px #111;
		border-right: solid 2px #111;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}


	/*----- btn-tel（電話ボタン） -----*/
	.btn-tel a {
		display: block;
		background: #9a9a9a url("img/tel_icon.png") left 2rem center no-repeat;
		background-size: 15px auto;
		max-width: 85%;
		margin: 3rem auto 3rem;
		padding: 1.8rem 5rem;
		box-sizing: border-box;
		color: #fff;
		font-size: 1.4rem;
		font-weight: bold;
		text-align: center;
		line-height: 1.5;
		text-decoration: none!important;
		position: relative;
	}
}





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

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

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

table th a {
	color: #fff;
	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 #dad9d9;
	}

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





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

.float-img {
  position: relative;
}

.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: right;
  padding-left: 4rem;
}

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

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

.float-wrap .catch-copy {
	margin: 2rem 0 2rem 0;
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1.5;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	.float-wrap {
		margin: 2rem 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;
	}
}





/*--------------------------------------
　アイコン見出し
---------------------------------------*/
.icon-title {
	margin: 4rem 0 4rem;
	padding: 0 0 2rem 8rem;
	box-sizing: border-box;
	font-size: 2.6rem;
	font-weight: 500;
	line-height: 1.4;
	border-bottom: 4px solid #111;
	position: relative;
}
.icon-title::before {
	content: "";
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	top: calc(50% - 39px);
	left: 0;
	background: #616365;
	width: 60px;
	height: 60px;
	color: #fff;
	font-size: 1.2rem;
}
.icon-voice-title::before {
	content: "VOICE";
}
.icon-point-title::before {
	content: "POINT";
}
.icon-check-title::before {
	content: "CHECK";
}


/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	.icon-title {
		margin: 3rem 0 3rem;
		padding: 0 0 1.5rem 5.5rem;
		font-size: 1.8rem;
		border-bottom: 2px solid #111;
	}
	.icon-title::before {
		width: 45px;
		height: 45px;
		font-size: 1.1rem;
		top: calc(50% - 29px);
	}
}





/*--------------------------------------
　slick
---------------------------------------*/
.low_slide_parts {
	margin: 8rem 0 8rem;
}

.slide_wrap {
	display: flex;
	justify-content: space-between;
}

.slide_wrap .l_box {
	width: 38%;
	box-sizing: border-box;
}

.slide_wrap .r_box {
	width: calc(62% - 4rem);
	box-sizing: border-box;
}

.slide_wrap .r_box .slide_box {
	margin: 3rem 0 0;
}

.slide_wrap .r_box .ttl {
	display: inline-block;
	padding: 0.8rem 3rem;
	background: #111;
	color: #fff;
	font-size: 2rem;
	font-weight: 500;
}

.slide_wrap .r_box .txt {
	margin: 2rem 0 0;
}

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

.slider {
	position: relative;
}
.slider .slide-arrow {
	display: block;
	position: absolute;
	top: 50%;
	width: 28px;
	height: 28px;
	margin-top: -14px;
	z-index: 1;
	cursor: pointer;
}
.slider .prev-arrow {
	left: -14px;
	background: url("img/arrow_prev.png") left center no-repeat;
	background-size: 100% auto;
}
.slider .next-arrow {
	right: -14px;
	background: url("img/arrow_next.png") right center no-repeat;
	background-size: 100% auto;
}

.thumbnail {
	position: relative;
}

.thumbnail-item {
	margin: 0 5px;
}

.thumbnail .slide-arrow {
	display: block;
	position: absolute;
	top: 50%;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	border-top: solid 2px #111;
	border-right: solid 2px #111;
	z-index: 1;
	cursor: pointer;
}
.thumbnail .prev-arrow {
	left: -15px;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
.thumbnail .next-arrow {
	right: -15px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.slick-slide:focus {
  outline: none;
}
.slick-slide {
  display: none;
}
.slick-initialized .slick-slide{
  display: block;
}

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

	.s_txt {
		font-size: 1.3rem;
		text-align: center;
	}
	
	.slide_wrap {
		display: block;
		margin: 2rem 0 0;
	}

	.slide_wrap .l_box {
		width: 100%;
	}

	.slide_wrap .r_box {
		width: 100%;
		margin: 3rem 0 0;
	}

	.slide_wrap .r_box .slide_box {
		margin: 0 0 0;
	}

	.slider .slick-slide {
		margin: 0 0.5rem 0;
	}

	.slide_wrap .r_box .ttl {
		padding: 0.5rem 2rem;
		font-size: 1.6rem;
	}

	.slide_wrap .r_box .txt {
		margin: 1.5rem 0 0;
	}


	.thumbnail {
		display: none;
	}

	.thumbnail-item {
		margin: 0 0;
	}

	.thumbnail .slide-arrow {
		display: none;
	}
}





/*--------------------------------------
　com_parts01
---------------------------------------*/
.com_parts01 {
	width: 100%;
	min-width: 1000px;
	box-sizing: border-box; 
}

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

.com_parts01 .sub {
	display: inline-block;
	background: #111;
	padding: 0.8rem 2rem;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 500;
}

.com_parts01 .c_name {
	margin: 1.5rem 0 0;
	font-size: 3.4rem;
	font-weight: 500;
	line-height: 1.4;
	position: relative;
}
.com_parts01 .c_name:after {
	content: "";
	display: block;
	background: url("img/dot01.png") left top no-repeat;
	background-size: 100% auto;
	width: 36px;
	height: 8px;
	margin: 1.5rem 0 0;
}


.com_parts01_block {
	margin: 5rem 0 0;
	position: relative;
}
.com_parts01_block:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: url("img/com_parts01_bg.jpg") center center no-repeat;
	background-size: cover;
	width: 70%;
	height: 100%;
	z-index: -1;
}

.com_parts01_block .inner {
	display: flex;
	justify-content: space-between;
}

.com_parts01_block .l_box {
	width: calc(100% - 410px);
	padding: 9rem 5rem 9rem 0;
	box-sizing: border-box;
}

.com_parts01_block .cc {
	font-size: 2rem;
}

.com_parts01_block .txt {
	margin: 2rem 0 0;
	line-height: 2;
}

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

.com_parts01_block .r_box {
	width: 410px;
	margin: -8rem 0 0;
	box-sizing: border-box;
}

.com_parts01_block .link {
	margin: 5rem 0 0;
	text-align: right;
}

.com_parts01_block .link a {
	padding: 0 3rem 0 0;
	box-sizing: border-box;
	font-size: 1.4rem;
	position: relative;
}
.com_parts01_block .link a:after{
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
	background: url("img/arrow01.png") right center no-repeat;
	background-size: 100% auto;
	width: 17px;
	height: 9px;
}

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

	.com_parts01 .inner {
		max-width: 100%;
	}
	
	.com_parts01_head {
		padding: 0 1.5rem;
	}
	
	.com_parts01_head .inner {
		display: flex;
		justify-content: space-between;
	}

	.com_parts01_head .ttl_box {
		width: calc(60%);
		box-sizing: border-box;
	}

	.com_parts01 .sub {
		padding: 0.5rem 1rem;
		font-size: 1.3rem;
	}

	.com_parts01 .c_name {
		margin: 1rem 0 0;
		font-size: 2.3rem;
	}
	.com_parts01 .c_name:after {
		margin: 1rem 0 0;
	}
	
	.com_parts01_head .img_box {
		width: 64%;
		box-sizing: border-box;
		margin-right: -1.5rem;
	}
	

	.com_parts01_block {
		margin: -3% 0 0;
		padding: 0 1.5rem;
		position: relative;
	}
	.com_parts01_block:before {
		width: 100%;
	}

	.com_parts01_block .inner {
		display: block;
	}

	.com_parts01_block .l_box {
		width: 100%;
		padding: 4rem 0 5rem 0;
	}

	.com_parts01_block .cc {
		font-size: 1.8rem;
	}

	.com_parts01_block .txt {
		margin: 1.5rem 0 0;
		line-height: 2;
	}

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

	.com_parts01_block .r_box {
		width: 100%;
		margin: 0 0 0;
	}

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





/*--------------------------------------
　float_btn
---------------------------------------*/
.float_btn  {
	position: fixed;
	bottom: 15rem;
  right: 0.5rem;
	width: 100%;
	z-index: 1;
}

.float_btn a {
	display: block;
	background: #379346 url("img/arrow02.png") right 2rem center no-repeat;
	background-size: 17px auto;
	max-width: 245px;
	margin: 0 0 0 auto;
	box-sizing: border-box;
	padding: 2rem 4rem;
	color: #fff;
	box-shadow: 6px 6px 0px 0px #9a9a9a;
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
	position: relative;
}

.float_btn.is-fixed {
	display: none!important;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	.float_btn  {
		position: fixed;
		bottom: 1.4rem;
		right: 0.4rem;
	}

	.float_btn a {
		background: #379346 url("img/arrow02.png") right 1.5rem center no-repeat;
		background-size: 17px auto;
		max-width: 85%;
		margin: 0 auto 0 auto;
		padding: 1.8rem 4rem;
		box-shadow: 4px 4px 0px 0px #9a9a9a;
		font-size: 1.3rem;
	}
}