@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: 700;
  src: url("fonts/NS-700.woff2") format("woff2"), url("fonts/NS-700.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: #222222;
  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: #333;
  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;
	image-rendering: -webkit-optimize-contrast;
}

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;
}
/*--------------------------------------
コメントパーツ
---------------------------------------*/
.com-item {
	margin: 1.5rem 0;
}

.com-item .box .image {
	width: 150px;
	position: relative;
}

.com-item .box .image .name {
	background: #fff;
	font-weight: bold;
	text-align: center;
	font-size: 1.6rem;
	border: solid 2px #f6ed54;
	box-sizing: border-box;
	border-radius: 100px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	padding: 0.3rem 1rem;
	line-height: 1.4;
}

.com-item .box .speech {
	width: 562px;
	position: relative;
	border: solid 5px #f6ed54;
	box-sizing: border-box;
	border-radius: 20px;
	background: #fffeef;
}
.com-item-l .box .speech:before {
	content: "";
	position: absolute;
	top: 24%;
	left: -3.9rem;
	background: url("img/s-arrow02.png") left 0 no-repeat;
	background-size: 100% auto;
	width: 39px;
	height: 34px;
}
.com-item-r .box .speech:before {
	content: "";
	position: absolute;
	top: 24%;
	right: -3.9rem;
	background: url("img/s-arrow05.png") left 0 no-repeat;
	background-size: 100% auto;
	width: 39px;
	height: 34px;
}

.com-item .box .speech .s-inner {
	padding: 2rem 3rem;
}

.com-item .box .speech .s-inner .c-catch {
	color: #00baa3;
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1.6;
}

.com-item .box .speech .s-inner .txt {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.com-item-l .box .image {
	float: left;
}


#page .com-item-l .box .image img,
#page .com-item-r .box .image img {
	height: 15rem;
	width: auto;
	display: block;
	margin: 0 auto;
}

.com-item-l .box .speech {
	float: right;
}

.com-item-r .box .image {
	float: right;
}

.com-item-r .box .speech {
	float: left;
}
/* 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;
	}
}





/*--------------------------------------
　Header
---------------------------------------*/
header {
	width: 100%;
	min-width: 1000px;
	box-sizing: border-box;
	background: #ededed;
	padding-bottom: 3.5rem;
}

header .sitename {
	padding: 1rem 2rem;
	box-sizing: border-box;
  font-size: 1.4rem;
	line-height: 1.5;
	text-align: right;
}


header .inner {
	width: 1000px;
	margin: auto;
}
header .h-logo {
	width: 318px;
	margin-top: -10px;
}


.header_home h1 {
	font-weight: normal;
}
.header_home .inner {
	width: calc(100% - 3rem);
	margin: auto;
}


.header_home .h-logo {
	width: 318px;
	margin-top: -20px;
}

.header_home {
	position: relative;
}
.header_home::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background-size: 100% auto;
	width: 356px;
	height: 181px;
	z-index: -1;
}






/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	header {
		width: 100%;
		min-width: 100%;
		padding-bottom: 1rem;
	}
	
	header .sitename {
		padding: 0.5rem 1rem;
		font-size: 1rem;
		text-align: left;
	}  
	
  header .inner {
    width: 100%;
    margin: auto;
  }
  header .h-logo {
    width: 218px;
    margin-top: -0.3rem;
    margin-left: 1rem;
  }	
	
	
.header_home .inner {
   width: 100%;
    margin: auto;
}	
.header_home .h-logo {
    width: 218px;
    margin-top: -0.3rem;
    margin-left: 1rem;
}
	
.header_home::before {
	content: "";
	position: absolute;
	top: 5rem;
	left: 0;
	background-size: 100% auto;
	width: 32%;
	height: 114px;
	z-index: -1;
}
	

}


/*--------------------------------------
　Navi
---------------------------------------*/
/*----- hb-menu -----*/
#hb-menu {
	display: table;
	position: fixed;
	top: 40px;
	right: 8px;
	width: 70px;
	height: 70px;
	background: #00c2aa;
	border-radius: 5px;
	box-sizing: border-box;
	cursor: pointer;
	z-index: 888;
	-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: 36px;
	height: 3px;
	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 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: 777;
	transition: 0.2s;
}
.hb-open .overlay {
	background: rgba(246,238,93,0.9);  ;
	pointer-events: auto;
}

/*----- g-nav -----*/
.g-nav {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 777;
}
.g-nav .g-nav-inner {
	position: fixed;
	top: 0;
	right: 0;
	background: #fff;
	width: 40%;
	height: 100%;
	padding: 12rem 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: 777;
}
.hb-open .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);
}


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


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


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

.hb_menu_title_link {
	display: block;
	padding: 0 3rem 0 0;
	color: #222;
	font-size: 1.6rem;
	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 #222;
	border-right: 2px solid #222;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


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

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

.hb_menu_list_link {
	display: block;
	padding: 0 0 0 1.5rem;
	color: #222;
	font-size: 1.4rem;
	line-height: 1.6;
	position: relative;
}
.hb_menu_list_link:before {
	content: "";
	position: absolute;
	top: 11px;
	left: 0;
	background: #222;
	width: 8px;
	height: 1px;
}

/*--------------------------------------
　SP Navi
---------------------------------------*/
/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	/*----- hb-menu -----*/
	#hb-menu {
		display: table;
		position: fixed;
		top: 1rem;
		right: 1rem;
		width: 50px;
		height: 50px;
		border-radius: 3px;
		background: #00c2aa;
		box-sizing: border-box;
		cursor: pointer;
		z-index: 888;
		-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: 22px;
		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: 7px;
	}

	/* ナビゲーションアイコン：アクティブ */
	.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);
	}

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

	/*----- g-nav -----*/
	.g-nav {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 777;
	}
	.g-nav .g-nav-inner {
		position: fixed;
		top: 0;
		right: 0;
		background: #fff;
		width: 100%;
		height: 100%;
		padding: 6rem 2rem;
		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: 777;
	}
	.hb-open .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);
	}

	
	.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 2.5rem 1.5rem 0;
		border-bottom: 1px solid #dbdbdb;
		position: relative;
	}
	.hb_menu_title:after {
		content: "";
		position: absolute;
		top: 50%;
		right: 5px;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		background: none;
		border-top: solid 1px #222;
		border-right: solid 1px #222;
		-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: #222;
		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: 5px;
		width: 6px;
		height: 6px;
		margin-top: -3px;
		background: none;
		border-top: solid 1px #222;
		border-right: solid 1px #222;
		-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 #dbdbdb;
		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: #222;
		font-size: 1.4rem;
		line-height: 1.6;
		position: relative;
	}
	.hb_menu_list_link:before {
		display: none;
	}
	.hb_menu_list_link:after {
		content: "";
		position: absolute;
		top: 50%;
		right: 5px;
		width: 6px;
		height: 6px;
		margin-top: -3px;
		border-top: 1px solid #222;
		border-right: 1px solid #222;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	
	
	.g-nav .close {
		width: 80%;
		margin: 3rem auto 0;
		padding: 1.5rem 1.5rem;
		color: #222;
		font-size: 1.5rem;
		text-align: center;
		border: 1px solid #dbdbdb;
		border-radius: 100px;
	}
}




/*--------------------------------------
　Pankuzu
---------------------------------------*/
#pankuzu {
	width: 1000px;
	margin: 1rem 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: 2rem auto 0;
		padding: 0 1.5rem 0.5rem 1.5rem;
		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 1.5rem;
		border: none;
		border-radius: 0;
		box-shadow: none;
	}
	#pankuzu::-webkit-scrollbar-thumb {
		background: #cacaca;
		border-radius: 0;
		box-shadow: none;
	}
}






/*--------------------------------------
　Side
---------------------------------------*/
#side .sideBox {
	margin: 0 0 0!important;
	padding: 0 0 0!important;
	box-sizing: border-box;
}

#side .sideBox ul {
	margin: 0 0 0 0!important;
	padding: 2rem 0 2rem 0;
}
#side .sideBox li {
	margin: 0 0 1.5rem 0;
	border-bottom: dotted 2px #00c2aa;
	padding-bottom: 1.6rem;
}
#side .sideBox li:last-child {
	margin: 0 0 0 0;
}
#side .sideBox li a {
	display: block;
	padding: 0 2rem 0 0;
	line-height: 1.5;
	position: relative;
	font-size: 1.5rem;
	font-weight: bold;
}
#side .sideBox li a:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 6px;
	height: 6px;
	margin-top: -3px;
	border-top: solid 2px #000;
	border-right: solid 2px #000;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}





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

#category,
#page {
  float: left;
  width: 750px;
  margin: 0!important;
  padding: 0!important;
	box-sizing: border-box;
}

#side {
  float: right;
  width: 210px;
	box-sizing: border-box;
}

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

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

	#side {
		display: none;
	}
}





/*--------------------------------------
　Title
---------------------------------------*/
h1,
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 {
	display: block;
	font-weight: bold;
	box-sizing: border-box;
}
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
	font-weight: bold;
}


#category h1,
#page h1 {
	margin: 0 0 4rem;
	color: #222;
	font-size: 4.2rem;
	font-weight: bold;
	line-height: 1.4;
	text-align: center;
	position: relative;
	z-index: 1;
}

#category h1::before,
#page h1::before {
	content: "";
	position: absolute;
	top: 0;
	left: calc(50% - 101px);
	background: url("img/h1-bg.png") center top no-repeat;
	background-size: 100% auto;
	margin-top: -2.8rem;
	width: 202px;
	height: 220px;
	z-index: -1;
	display: inline-block;
}



#category h2,
#page h2 {
	background: #00c2aa;
	margin: 4rem 0 2rem;
	padding: 2rem 3rem 2rem 4.4rem;
	color: #fff;
	font-size: 3.2rem;
	position: relative;
}
#category h2::before,
#page h2::before{
	content: "";
	position: absolute;
	top: 3rem;
	left: 2.6rem;
	width: 6px;
	height: 28px;
	background: #f6ed54;
	display: inline;
}
#category h2 a,
#page h2 a {
	padding: 0 3rem 0 0;
	color: #fff;
	position: relative;
}
#category h2 a:after,
#page h2 a:after{
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 14px;
	height: 14px;
	margin-top: -7px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


#category h3,
#page h3 {
	margin: 4rem 0 2rem;
	padding: 0 0 1.5rem 0;
	font-size: 2.8rem;
	border-bottom: 3px solid #00c2aa;
}

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


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

#category h4 a,
#page h4 a {
	display: inline-block;
	padding: 0 3rem 0 0;
	color: #01bca2;
	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: solid 2px #01bca2;
	border-right: solid 2px #01bca2;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}



/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	#category h1,
	#page h1 {
		margin: 0 0 3rem;
		font-size: 2.5rem;
	}

#category h1::before,
#page h1::before {
	content: "";
	position: absolute;
	top: 0;
	left: calc(50% - 60px);
	background: url("img/h1-bg.png") left top no-repeat;
	background-size: 100% auto;
	margin-top: -1rem;
	width: 102px;
	height: 120px;
	z-index: -1;
	display: inline-block;
}
	
	
	#category h2,
	#page h2 {
		margin: 3rem 0 2rem;
		padding: 1.5rem 2rem 1.5rem 3rem;
		font-size: 2.2rem;
	}
	
#category h2::before,
#page h2::before{
	content: "";
	position: absolute;
	top: 1.5rem;
	left: 1.6rem;
	width: 4px;
	height: calc(100% - 3rem);
	background: #f6ed54;
	display: inline;
}	

	#category h2 a,
	#page h2 a {
		padding: 0 1.5rem 0 0;
		position: relative;
	}
	#category h2 a:after,
	#page h2 a:after{
		width: 10px;
		height: 10px;
		margin-top: -5px;
		border-top: solid 1px #fff;
		border-right: solid 1px #fff;
	}


	#category h3,
	#page h3 {
		margin: 3rem 0 2rem;
		padding: 0 0 1rem 0;
		font-size: 1.8rem;
		border-bottom: 2px solid #00c2aa;
	}

	#category h3 a,
	#page h3 a {
		padding: 0 1.5rem 0 0;
	}
	#category h3 a:after,
	#page h3 a:after{
		width: 10px;
		height: 10px;
		margin-top: -5px;
		border-top: solid 1px #222;
		border-right: solid 1px #222;
	}


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

	#category h4 a,
	#page h4 a {
		padding: 0 1.5rem 0 0;
		display: inline-block;
	}
	#category h4 a:after,
	#page h4 a:after{
		width: 8px;
		height: 8px;
		margin-top: -4px;
		border-top: solid 1px #01bca2;
		border-right: solid 1px #01bca2;
	}
}





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

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

.txt_bold {
	color: #01bca2;
	font-weight: bold;
}
.marker {
	background: linear-gradient(transparent 70%, #f6ed54 0%);
	font-weight: bold;
}

.contents_top p.caption,
p.caption {
	margin: 1rem 0 0 0;
	padding: 0 0 0.5rem 0;
	font-size: 1rem;
	color: #888;
	line-height: 1.3;
	word-wrap: break-word;
	word-break: break-all;
	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;
}

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





/*--------------------------------------
　リスト
---------------------------------------*/
/*----- ulリスト -----*/
#category ul,
#page ul {
	margin: 4rem 0 4rem;
}
#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;
	background: #f6ed54;
  width: 10px;
  height: 10px;
	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) {
	/*----- ulリスト -----*/
	#category ul,
	#page ul {
		margin: 2rem 0 2rem;
	}
	#category ul li,
	#page ul li {
		padding: 0 0 0 1.5rem;
		font-size: 1.4rem;
	}
	#category ul li:before,
	#page ul li:before {
		top: 10px;
		width: 8px;
		height: 8px;
	}
	
}



/*--------------------------------------
　画像＋テキスト
---------------------------------------*/
.float-wrap {
	margin: 8rem 0 8rem;
	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: 300px;
  padding-right: 4rem;
}
.float-img.fr {
  float: right;
  width: 300px;
  padding-left: 4rem;
}

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

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

.float-wrap p {
	margin: 1rem 0 3rem;
}

.float-wrap .t-box {
	width: 410px;
}
.float-wrap .t-box table {
	margin-top: 2rem;
	margin-bottom: 2rem;;
}


/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	.float-wrap {
		margin: 5rem 0 5rem;
	}
	
	.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;
	}
	
	.float-wrap p {
		margin: 2rem 0 2rem;
	}
	
.float-wrap .t-box {
	width: 100%;
}
.float-wrap .t-box table {
	margin-top: 2rem;
	margin-bottom: 2rem;;
}	
}



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

table th {
	background: #eff4ee;
	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 #999999;
	border-bottom: 1px solid #999999;
}
table th a {
	text-decoration: underline;
}
table th a:hover {
	text-decoration: none;
}

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 #999999;
	border-bottom: 1px solid #999999;
}
table td a {
	text-decoration: underline;
}
table td a:hover {
	text-decoration: none;
}

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

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

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




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


/*----- btn-web（外部リンク） -----*/
.btn-web a {
	background: #ee6f12;
	

}


/*----- btn-internal（内部リンク） -----*/
.btn-internal a {
	background: #0065b3;
}


/*----- btn-link（テキストリンク） -----*/
.btn-link {
	text-align: right;
}
.btn-link a {
	display: inline-block;
	margin: 4rem 0 4rem;
	padding: 0 2.5rem 0 0;
	font-size: 1.5rem;
	line-height: 1.5;
	text-decoration: underline;
	position: relative;
	font-weight: bold;
}
.btn-link a:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
	background: url("img/link_arrow_01.png") left top no-repeat;
	background-size: 100% auto;
	width: 19px;
	height: 19px;
}

.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: 100px;
		position: relative;
		box-shadow: 0px 2px 5px 0px #999;
	}
	.btn-internal a:after,
	.btn-web a:after {
		content: "";
		position: absolute;
		top: 50%;
		right: 20px;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		border-top: solid 2px #fff;
		border-right: solid 2px #fff;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	
	/*----- btn-web（外部リンク） -----*/
	.btn-web a {
		
	}


	/*----- btn-internal（内部リンク） -----*/
	.btn-internal a {
		
	}


	/*----- btn-link（テキストリンク） -----*/
	.btn-link {
		text-align: center;
	}
	.btn-link a {
		margin: 3rem 0 3rem;
		padding: 0 2.5rem 0 0;
	}
	.btn-link a:after {
		background: url("img/link_arrow_01.png") left top no-repeat;
		background-size: 100% auto;
		width: 18px;
		height: 18px;
	}

	
	/*----- btn-tel（電話ボタン） -----*/
	.btn-tel a {
		display: block;
		background: #f0a400 url("img/icon_tel.png") left 25px 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;
		border-radius: 100px;
		text-decoration: none!important;
		box-shadow: 0px 2px 5px 0px #999;
		position: relative;
	}
}












/*--------------------------------------
　toc_parts
---------------------------------------*/
.toc_parts {
	margin: 5rem auto 8rem;
	box-sizing: border-box;
	position: relative;
}

.toc_parts::before {
	content: "";
	position: absolute;	
	background: #f6ed54;
	width: 42px;
	height: 42px;
	border-radius: 100px;
	display: block;
	z-index: 1;
	right: 3rem;
	top: 2.5rem;
}

.toc_parts .toc_ttl {
	padding: 2.8rem 2rem;
	font-size: 2.8rem;
	text-align: center;
  border: 5px solid #eff4ee;
  position: relative;
	border-bottom: none;
  background: #fff;
  font-weight: bold;
  cursor: pointer;
}

.toc_parts .toc_ttl:before,
.toc_parts .toc_ttl:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 3.4rem;
	background: #000;
	width: 24px;
	height: 3px;
	margin-top: -2px;
	transition: all 0.4s;
	z-index: 2;
}






.toc_parts .toc_ttl:after {
	 border-bottom: none;
}
.toc_parts .toc_ttl.open:before {
 	transform: rotate(90deg);
}
.toc_parts .toc_ttl.open {
	border-bottom: 5px solid #eff4ee;
}





.toc {
	margin-top: -2px;
	padding: 1rem 5rem 3rem;
	box-sizing: border-box;
	border: 5px solid #eff4ee;
	border-top: none;
	position: relative;
	background: #fff;
}

.toc .chapter {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.toc .chapter li {
	width: 100%;
	margin: 0 0 2rem;
	padding: 0 4rem 0 2rem;
	box-sizing: border-box;
  position: relative;
}
.toc .chapter li::before {
	content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
	background: #18baa1;
	box-sizing: border-box;
	border-radius: 50%;
}


.toc .chapter li a {
	font-size: 1.5rem;
	line-height: 1.6;
	position: relative;
}


.toc .chapter li {
	margin: 0 0 1rem 0;
	padding: 0 0 0 4rem;
	font-size: 1.5rem;
  line-height: 1.8;
	overflow-wrap: break-word;
	position: relative;
	counter-increment: count;
}
.toc .chapter li:before {
	content: counter(count,decimal-leading-zero);
	position: absolute;
	top: -6px;
	left: 0;
	background: none;
	font-weight: bold;
	width: inherit;
	height: inherit;
	border-radius: 0;
	color: #01bca2;
	font-size: 2.2rem;
}

.toc .chapter .chapter li {
	margin: 0 0 1rem;
	padding: 0 4rem 0 1.5rem;
	font-size: 1.4rem;
	position: relative;
	counter-increment: none;
}
.toc .chapter .chapter li:before {
	content: "";
	position: absolute;
	top: 12px;
	left: 0;
	background: #6a7a5e;
	width: 8px;
	height: 1px;
}

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

	
	
	
.toc_parts::before {
	content: "";
	position: absolute;	
	background: #f6ed54;
	width: 40px;
	height: 40px;
	border-radius: 100px;
	display: block;
	z-index: 1;
	right: 1.5rem;
	top: 4.4rem;
}

.toc_parts .toc_ttl {
	padding: 2.8rem 2rem;
	font-size: 2rem;
	text-align: center;
  border: 3px solid #eff4ee;
  position: relative;
	border-bottom: none;
  background: #fff;
  font-weight: bold;
  cursor: pointer;
}	
	
	


.toc_parts .toc_ttl:before,
.toc_parts .toc_ttl:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 2rem;
	background: #000;
	width: 22px;
	height: 2px;
	margin-top: -2px;
	transition: all 0.4s;
	z-index: 2;
}



.toc_parts .toc_ttl:after {
	 border-bottom: none;
}
.toc_parts .toc_ttl.open:before {
 	transform: rotate(90deg);
}
.toc_parts .toc_ttl.open {
	border-bottom: 3px solid #eff4ee;
}
	
	
	
	
	
.toc {
	margin-top: -2px;
	padding: 0 2rem 2rem;
	box-sizing: border-box;
	border: 3px solid #eff4ee;
	border-top: none;
	position: relative;
	background: #fff;
	
}

	/* ナンバリングをする場合 */
	.toc .chapter li {
		padding: 0 0 0 3rem;
		line-height: 1.6;
	}
	.toc .chapter li:before {
		top: -2px;
		width: inherit;
		height: inherit;
		font-size:2rem;
	}

	.toc .chapter .chapter li {
		padding: 0 3rem 0 1.5rem;
	}
	.toc .chapter .chapter li:before {
		top: 11px;
		width: 8px;
		height: 1px;
	}
}









/*--------------------------------------
.parts01
---------------------------------------*/

.parts01 {
	border: solid #00c2aa 5px;
	box-sizing: border-box;
	margin:4rem 0;
}

.parts01 .c-ttl {
	background:#00c2aa;
	text-align: center;
	color: #fff;
	font-weight: bold;
	font-size: 2.8rem;
	padding: 3.5rem 0;
}

.parts01 .c-inner {
	padding: 3rem 5rem;
}

.parts01 .c-inner .image-box {
	float: left;
	width: 210px;
}

.parts01 .caption {
	margin: 0;
	margin-top: 1rem;
	font-size: 1.2rem;
	line-height: 1.3;
}

.parts01 .c-inner .text-box {
	float: right;
	width: 390px;
}

.parts01 .c-catch {
	font-size: 2rem;
	color: #01bca2;
	font-weight: bold;
	line-height: 1.6;
}
.parts01 .btn-internal a {
	width: 90%;
	margin-top: 3rem;
}


@media screen and (max-width: 768px) {

.parts01 {
	border: solid #00c2aa 3px;
	box-sizing: border-box;
	margin:4rem 0;
	padding-bottom: 1rem;
}

.parts01 .c-ttl {
	background:#00c2aa;
	text-align: center;
	color: #fff;
	font-weight: bold;
	font-size: 2.2rem;
	padding: 2.5rem 0;
}

.parts01 .c-inner {
	padding: 2rem 2rem 0;
}

.parts01 .c-inner .image-box {
	float: left;
	width: 30%;
}

.parts01 .caption {
	margin: 0;
	margin-top: 1rem;
	font-size: 1.2rem;
	line-height: 1.3;
}

.parts01 .c-inner .text-box {
	float: right;
	width: 65%;
}

.parts01 .c-catch {
	font-size: 1.6rem;
	color: #01bca2;
	font-weight: bold;
	line-height: 1.6;
}
	
	.parts01 .btn-internal {
		margin-top: 0;
	}	
.parts01 .btn-internal a {
	width: 90%;
	margin-top: 0;
}
	
}



/*--------------------------------------
.parts02
---------------------------------------*/

.parts02 {
	border: solid #eff4ee 5px;
	box-sizing: border-box;
	margin:8rem 0;
	position: relative;
	background: #fff;
}

.parts02 .c-inner {
	padding: 3rem 5rem 1rem;
}

.parts02:before {
	content: "";
	position: absolute;
	top: -1rem;
	left: -1rem;
	background: #f6ed54;
	width: 80px;
	z-index: -2;
	height: 80px;
}
.parts02::after {
	content: "";
	position: absolute;
	bottom: -1rem;
	right: -1rem;
	background: #f6ed54;
	width: 60px;
	z-index: -2;
	height: 60px;
}




.parts02 .c-inner .f-box {
	display: flex;
  justify-content: space-between;
  flex-wrap: wrap; 
}
.parts02 .c-inner .image-box {
	width: 145px;
}

.parts02 .c-inner .image-box .name {
	text-align: center;
	margin-top: 0;
	margin-bottom: 0;
	font-weight: bold;
}
.parts02 .c-inner .text-box {
	width: 465px;
  display: flex;
  align-items: center;	
}

.parts02 .c-catch {
	font-size: 2rem;
	color: #01bca2;
	font-weight: bold;
	line-height: 1.6;
	margin-top: -3rem;
}

.parts02 .txt {
	margin-top: 1rem;
}

.parts02 .caption {
	text-align: right;
	font-size: 1.2rem;
}


@media screen and (max-width: 768px) {
.parts02 {
	border: solid #eff4ee 5px;
	box-sizing: border-box;
	margin:8rem 0;
	position: relative;
	background: #fff;
}

.parts02 .c-inner {
	padding: 3rem 2rem 1rem;
}

.parts02:before {
	content: "";
	position: absolute;
	top: -0.9rem;
	left: -0.9rem;
	background: #f6ed54;
	width: 50px;
	z-index: -2;
	height: 50px;
}
.parts02::after {
	content: "";
	position: absolute;
	bottom: -0.9rem;
	right: -0.9rem;
	background: #f6ed54;
	width: 30px;
	z-index: -2;
	height: 30px;
}




.parts02 .c-inner .f-box {
	display: flex;
  justify-content: space-between;
  flex-wrap: wrap; 
}
.parts02 .c-inner .image-box {
	width: 30%;
}

.parts02 .c-inner .image-box .name {
	text-align: center;
	margin-top: 0;
	margin-bottom: 0;
	font-size: 1.3rem;
	font-weight: bold;
}
.parts02 .c-inner .text-box {
	width: 65%;
  display: flex;
  align-items: center;	
}

.parts02 .c-catch {
	font-size: 1.6rem;
	color: #01bca2;
	font-weight: bold;
	line-height: 1.6;
	margin-top: 0;
}

.parts02 .txt {
	margin-top: 1rem;
}

.parts02 .caption {
	text-align: right;
	font-size: 1rem;
}
	
}


/*--------------------------------------
.parts03
---------------------------------------*/

.parts03 {
	border: solid #00c2aa 3px;
	box-sizing: border-box;
	margin:8rem 0;
	position: relative;
	background: #fff;
	padding-bottom: 4rem;
}

.parts03 .c-inner {
	padding: 3rem 5rem 1rem;
}


.parts03 .cttl-box {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 -4rem;
	line-height: 1.2;
	background: #00c2aa;
	color: #fff;
	padding: 2rem;
}

#category .parts03 .cttl-box {
	margin: 0 -2rem;
	line-height: 1.2;
	background: #00c2aa;
	color: #fff;
	padding: 2rem;
}

.parts03 .l-ttl {
	font-weight: bold;
	color: #222;
	line-height: 1.2;
	background: #fff;
	padding: 0.5rem  0.7rem;
	font-size: 2.3rem;
	margin-right: 2rem;
}

.parts03 .r-ttl {
	font-weight: bold;
	font-size: 3.4rem;
	display: flex;
	align-items: center;
	line-height: 1.5;
}

.parts03 .text-box {
	margin-top: 4rem;
}
.parts03 .c-catch {
	font-size: 2rem;
	color: #01bca2;
	font-weight: bold;
	line-height: 1.6;
}

.parts03 .f-item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; 	
	margin-top: 5rem;
}
.parts03 .f-item .image {
	width: 173px;
}

.parts03 .speech {
	width: 408px;
	position: relative;
	border: solid 5px #eff4ee;
	box-sizing: border-box;
	border-radius: 20px;
	margin-top: -1rem;
	margin-bottom: 2.5rem;
}

.parts03 .speech:before {
	content: "";
	position: absolute;
	top: 20%;
	left: -3.9rem;
	background: url("img/s-arrow01.png") left 0 no-repeat;
	background-size: 100% auto;
	width: 39px;
	height: 34px;
}

.parts03 .speech .s-inner {
	padding: 2rem 3.5rem;
}
.parts03 .speech .s-inner .txt {
	margin-top: 1rem;
	margin-bottom: 1rem;
}


@media screen and (max-width: 768px)  {
.parts03 {
	border: solid #00c2aa 3px;
	box-sizing: border-box;
	margin:8rem 0;
	position: relative;
	background: #fff;
	padding-bottom: 1rem;
}

.parts03 .c-inner {
	padding: 1rem 2rem 1rem;
}


.parts03 .cttl-box {
	display: flex;
	justify-content: center;
	margin-top: 1rem;
	margin-left: 0;
	margin-right: 0;
	padding: 2rem 0;
}

#category .parts03 .cttl-box {
    margin: 0 -1rem;
}

.parts03 .l-ttl {
	font-weight: bold;
	line-height: 1.2;
	padding: 0.5rem  0.7rem;
	font-size: 4vw;
	margin-right: 1rem;
	display: block;
	width: 8vw;
}

.parts03 .r-ttl {
	font-weight: bold;
	font-size: 5vw;
	display: flex;
	line-height: 1.3;
	align-items: center;
}

.parts03 .text-box {
	margin-top: 2.5rem;
}
.parts03 .c-catch {
	font-size: 1.7rem;
	color: #01bca2;
	font-weight: bold;
	line-height: 1.6;
}

	
.parts03 .f-item {
  display:block;
  justify-content: space-between;
  flex-wrap: wrap; 	
	margin-top: 5rem;
	border: solid 3px #eff4ee;
	box-sizing: border-box;
	border-radius: 10px;
	padding: 2rem;
}
	
	.parts03 .f-item .sp-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
	}	
	
	
.parts03 .f-item .image {
	width: 30%;
	padding: 0;	
}

.parts03 .f-item .c-catch {
	width: 65%;
  display: flex;
  justify-content: center;
  align-items: center;	
}
	


.parts03 .f-item .txt {
	margin-top: 1.5rem;
	margin-bottom: 1rem;
}

}












/*--------------------------------------
　Footer
---------------------------------------*/
.l-footer-area {
	background: #363636;
	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 {
	max-width: 360px;
	margin: auto;
}
.l-footer-logo a {
	display: block;
}


.l-footer-menu-wrapper {
  margin: 4rem 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 #969696;
	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.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__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);
}


.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 2rem 0 0;
	color: #fff;
	font-size: 1.5rem;
	line-height: 1.6;
	position: relative;
}
.l-footer-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);
}


.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.5rem;
	color: #fff;
	font-size: 1.4rem;
	line-height: 1.6;
	position: relative;
}
.l-footer-submenu__list__link:before {
	content: "";
 	position: absolute;
	top: 11px;
	left: 0;
	background: #fff;
	width: 6px;
	height: 1px;
}


.l-footer-area .menseki {
	background: #222;
	max-width: 100%;
	margin: 5rem auto 0;
	padding: 2rem 3rem;
	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: #222;
}

.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: 1100px;
  margin: 0 auto;
  padding: 1.5rem 0;
	font-size: 1.4rem;
	line-height: 1.5;
	color: #fff;
}
.l-footer-copy a {
	display: inline-block;
  text-decoration: underline;
	color: #fff;
	
}
.l-footer-copy a:hover {
  text-decoration: none;
}

.l-footer-copy .sitemap {
	width: 15%;
	margin: 0 0 0 4rem;
	box-sizing: border-box;
  text-align: right;
}
.l-footer-copy .sitemap a {
	padding: 0 1.5rem 0 0;
 	position: relative;
	color: #fff;
}
.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%;
		padding: 0 1.5rem 0.5rem;
	}


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


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


	.l-footer-menu-wrapper {
		margin: 2rem 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: 5px;
		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 rgba(255,255,255,0.6);
	}
	.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: 5px;
		width: 6px;
		height: 6px;
		margin-top: -3px;
		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 rgba(255,255,255,0.6);
	}

	.l-footer-submenu__list__link {
		padding: 1.5rem 0 1.5rem 3rem;
	}
	.l-footer-submenu__list__link:before {
		content: "";
		position: absolute;
		top: 26px;
		left: 15px;
		background: #fff;
		width: 6px;
		height: 1px;
	}


	.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 {
		display: block;
		max-width: 100%;
		padding: 0 1rem;
		font-size: 1.2rem;
		margin-top: 0;
		text-align: center;
	}
	.top-footer-area .l-footer-copy {
		display: block;
		max-width: 100%;
		padding: 0 1rem;
		font-size: 1.2rem;
		margin-top: 0;
		text-align: center;
		padding-bottom: 0;
	}
	


	
	
	.sitemap {
		margin: 2rem 0 0 0;
		text-align: center;
		padding-bottom: 0;
	}
	.sitemap a {
		padding: 0 1rem 0 0;
		font-size: 1.4rem;
		color: #fff;
		text-decoration: underline;
		position: relative;
		margin-bottom: 0;
	}
	.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);
	}
}





/*--------------------------------------
　PageTop
---------------------------------------*/
.l-pagetop {
  position: fixed;
  bottom: 40px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 10;
}

.t-pagetop {
  position: fixed;
  bottom: 40px;
  left: inherit;
	right: 20px;
  width: 60px;
  height: 60px;
  z-index: 2;
}


.l-pagetop__link {
	background: #f6ed54;
  width: 100%;
  height: 100%;
  display: block;
	box-sizing: border-box;
	border-radius: 50%;
	
  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: 12px;
	height: 12px;
	margin-left: -6px;
	border-top: 2px solid #222;
	border-left: 2px solid #222;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.l-pagetop span {
	display: none;
}



/* SP ------------------------------*/
	@media screen and (max-width: 768px) {
	.l-pagetop {
		bottom: 12%;
		right: 10px;
		width: 40px;
		height: 40px;
	}
		
.t-pagetop {
		bottom: 3%;
		left: inherit;
		right: 10px;
		width: 40px;
		height: 40px;
}	
		
	.l-pagetop__link {
		border: 1px solid #000;
	}
	.l-pagetop__link:after {
		width: 8px;
		height: 8px;
		margin-left: -4px;
		border-top: 1px solid #000;
		border-left: 1px solid #000;
	}
}

.fix-nav {
	position: fixed;
	right: 1rem;
	bottom: 3rem;
	width: 280px;
	z-index: 11;
}

.fix-nav .banner{
	width: 280px;
}

@media screen and (max-width: 768px) {
.fix-nav {
	position: fixed;
	background: #ee6f12;
	right: 0;
	left: 0;
	margin: auto;
	bottom: 0;
	width: 100%;
	z-index: 11;
}

.fix-nav .banner{
	width: 300px;
	margin: auto;
}

.com-item{
		width: 100%;
		position: relative;
		border: solid 3px #f6ed54;
		box-sizing: border-box;
		border-radius: 15px;
		background: #fffeef;
		margin: 3rem auto;
	}

	.com-item .box{
		padding: 2rem 2rem;
	}

	.com-item .box .sp-f-box {
		display: inline-block;
		justify-content:flex-start;
		width: 33%;
	}

	#page .com-item .box .sp-f-box {
		float: left;
		margin-left: 0;
		margin-right: 1.5rem;
		margin-bottom: 0;
	}

	#page .com-item .box .sp-f-box .image {
		margin-left: 0;
		max-height: 12rem;
	}

	#page .com-item .box .sp-f-box .image img {
		max-height: 12rem;
		height: auto;
		display: block;
		margin: 0 auto;
	}

	.com-item .box .image {
		width: 120px;
		position: relative;
	}

	.com-item .box .image .name {
		background: #fff;
		font-weight: bold;
		text-align: center;
		font-size: 1.1rem;
		border: solid 2px #f6ed54;
		box-sizing: border-box;
		border-radius: 100px;
		position: absolute;
		bottom: -1rem;
		left: 0;
		right: 0;
		margin: auto;
		padding: 0.3rem 0.3rem;
		line-height: 1.4;
	}

	.com-item .box .sp-f-box .c-catch {
		color: #00baa3;
		font-size: 1.8rem;
		font-weight: bold;
		line-height: 1.6;
		margin-left: 1.5rem;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		max-width: 47vw;
	}

	.com-item .box .speech {
		width: 100%;
		position: relative;
		border:none;
		box-sizing: border-box;
		border-radius: 0;
		background: none;	
	}
	.com-item-l .box .speech:before {
		content: "";
		display: none;
	}
	.com-item-r .box .speech:before {
		content: "";
		display: none;
	}

	.com-item .box .speech .s-inner {
		padding: 0;
	}

	.com-item .box .speech .s-inner .txt {
		margin-top: 0;
		margin-bottom: 1rem;
	}

	.com-item-l .box .image {
		float: none;
		width: 100%;
	}

	.com-item-l .box .speech {
		display: inline-block;
		width: calc(60% - 2rem);
	}

	.com-item-r .box .image {
		float: none;
		display: inline-block;
		width: 100%;
		margin-left: 2rem;
	}

	.com-item-r .box .speech {
		/* float: none; */
		display: inline-block;
		width: calc(60% - 2rem);
	}

	#page .com-item-r .box .speech,
	#page .com-item-l .box .speech {
		float: none;
		display: inline;
		width: 100%;
	}
	
}

