@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;
}
@font-face {
  font-family: "Noto Sans JP vertical";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/NS-700-vertical.woff2") format("woff2"), url("fonts/NS-700-vertical.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%;
  image-rendering: -webkit-optimize-contrast;
}
textarea {
	vertical-align: top;
}





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

body {
  color: #000;
  font-size: 1.6rem;
  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: #000;
  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;
}

.f-bold {
	font-weight: bold;
}

/* 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;
	}
	
  body {
    font-size: 1.5rem;
  }
}





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

header .sitename {
	padding: 0.6rem 2rem;
	box-sizing: border-box;
	color: #f2e8d7;
  font-size: 1.5rem;
	line-height: 1.5;
	text-align: center;
}
header .sitename a {
	color: #f2e8d7;
}
header .sitename:before {
  content: "PR";
  display: inline-block;
  background: #fff;
  color: #000;
  text-align: center;
  width: 3rem;
  margin-right: 1rem;
  font-size: 1.4rem;←本文と同じ文字サイズ
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	header {
		width: 100%;
		min-width: 100%;
	}
	
	header .sitename {
		padding: .4rem 1rem;
		font-size: 1.1rem;
		text-align: center;
	}  
}






/*--------------------------------------
　fix-header
---------------------------------------*/
.fix-header {
	background: #f2e8d7;
	min-width: 1100px;
	width: 100%;
	height: 100px;
	box-sizing: border-box;
	position: fixed;
	top: 0;
	z-index: 1111;
	display: none;	
}
.fix-header.fix-header_lower {
	background: none;
	height: inherit;
}

.fix-header .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
	height: 100px;
}

.fix-header .f-logo {
	width: 242px;
	margin-top: -1rem;
	padding-left: 1rem;
}

.fix-header .header_nav ul {
	display: flex;
	align-items: center;
	text-align: center;
}
.fix-header .header_nav li {
	border-right: solid 1px #654d27;
	margin-right: 1.2rem;
	padding-right: 1.2rem;
}
.fix-header .header_nav li:last-child {
	border-right: none;
}
.fix-header .header_nav li a {
	font-size: 1.5rem;
	color: #654d27;
	line-height: 1.4;
	font-weight: bold;
	padding: 0.5rem 0;
	height: 100%;
}

@media screen and (max-width: 768px){
  .fix-header {
    background: #f2e8d7;
    min-width: 100%;
    width: 100%;
    height: 50px;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    z-index: 1111;
    display: none;	
  }
	.fix-header.fix-header_lower {
		background: #f2e8d7;
		height: 50px;
	}

  .fix-header .f-logo {
		display: block;
		width: 128px;
		height: 60px;
		margin-top: -3.5rem;
		padding-left: 0.5rem;
		position: relative;
		z-index: 111111;
		}

  .fix-header .header_nav ul {
    display: flex;
    align-items: center;
    text-align: center;
  }
  .fix-header .header_nav li {
    border-right: solid 1px #654d27;
    margin-right: 1.2rem;
    padding-right: 1.2rem;
  }
  .fix-header .header_nav li:last-child {
      border-right: none;
  }	
  .fix-header .header_nav li a {
    font-size: 1.5rem;
    color: #654d27;
    line-height: 1.4;
    font-weight: bold;
    padding: 0.5rem 0;
    height: 100%;
  }
}





/*--------------------------------------
　SP Navi
---------------------------------------*/
/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	/*----- hb-menu -----*/
	#hb-menu {
		display: block;
		position: fixed;
		top: 6px;
		right: 6px;
    width: 100px;
		border-radius: 4px;
    border: solid 1px #fff;
    height: 38px;
    background: #262626;
		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 .menu-t {
		position: relative;
	}
	
	#hb-menu .menu-t::before {
    content: "MENU";
		position: absolute;
		color: #fff;
		right: 10px;
		font-weight: bold;
		top: 9px;
	}
	
	
	#hb-menu .hb-inner {
		display: table-cell;
		vertical-align: middle;
	}
	#hb-menu span {
		display: block;
		background: #fff;
		width: 20px;
		height: 2px;
		margin: auto;
		margin-left: 10px;
		margin-top: 9px;
		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: 6px;
	}

	/* ナビゲーションアイコン：アクティブ */
	.hb-open span:nth-of-type(1) {
		-webkit-transform: translateY(7px) translateX(0) rotate(45deg);
		-ms-transform: translateY(7px) translateX(0) rotate(45deg);
		transform: translateY(7px) 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 .menu-t::before {
    content: "CLOSE";
		position: absolute;
		color: #fff;
		right: 10px;
		font-weight: bold;
		top: 9px;
	}
	
	
	
	
	/* 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;
	}
	
	/*----- g-nav -----*/
	.g-nav {
		position: fixed;
		bottom: 0;
		right: 0;
		z-index: 9999;
	}
	.g-nav .g-nav-inner {
		position: fixed;
		bottom: 0;
		right: 0;
		background: #f2e8d7;
		width: 100%;
		height: calc(100% - 50px);
		padding: 3rem 2rem 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-open .g-nav .g-nav-inner {
		position: fixed;
		bottom: 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 {
		margin-bottom: 0;
	}
	.hb_menu:last-child {
		margin-bottom: 0;
	}

	
	.s-nav-wrapper .s-nav01 {
		display: none;
	}
	.s-nav-wrapper .s-nav01:first-child {
		display: block;
	}
	
	.s-nav01 .sttl {
		margin: auto;
		width: 80%;
		text-align: center;
		position: relative;
		z-index: 1;
	}
	.s-nav01 .sttl a {
		border: solid 2px #f3d28a;
		box-sizing: border-box;
		color: #fff;
		padding: 1.5rem 0;
		margin: auto;
		font-size: 1.6rem;
		font-weight: bold;
		line-height: 1.5;
		position: relative;
		width: 100%;
		border-radius: 5px;
		background: linear-gradient(to bottom, #654d27 0%, #654d27 50%, #573f19 50%, #573f19 100%);
		top: 2rem;
		display: block;
	}
	.s-nav01 .sttl a:after {
		content: "";
		position: absolute;
		top: 50%;
		right: 1rem;
		margin-top: -4px;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 6px 0 6px 7px;
		border-color: transparent transparent transparent #fff;
	}

	.s-nav01 .box {
		background: url("img/side-bg.jpg") left top repeat-y;
		background-size: 100% auto;
		width: 100%;
		padding-top: 5rem;
		margin-top: -1rem;
		padding-bottom: 1rem;
		position: relative;
		z-index: 0;
	}
	.s-nav01 .box:before {
		content: "";
		position: absolute;
		left: 0;
		bottom: 100%;
		background: url("img/side-top-bg.jpg") left top no-repeat;
		background-size: 100% auto;
		width: 100%;
		height: 0;
		padding-top: calc(100%*10/234);
		z-index: -1;
	}
	.s-nav01 .box:after {
		content: "";
		position: absolute;
		left: 0;
		top: 100%;
		background: url("img/side-bottom-bg.jpg") left top no-repeat;
		background-size: 100% auto;
		width: 100%;
		height: 0;
		padding-top: calc(100%*10/234);
		z-index: -1;
	}

	.s-nav01 .link-item .btn-internal {
		margin-bottom: 2rem!important;
	}

	.s-nav01 .link-item p{
		margin: 0!important;
	}

	.s-nav01 .link-item .btn-internal a {
		display: block;
		max-width: 82%;
		padding: 2rem 0;
		color: #fff;
		text-shadow:0 0 10px #000;
		font-size: 1.5rem;
		text-align: left;
		line-height: 1.5;
		border-radius: 10px;
		text-decoration: none!important;
		position: relative;
		box-shadow:0px 0px 0px 3px rgba(0, 0, 0, 1);
		box-sizing: border-box;
		z-index:1;
		background:linear-gradient(to right, #b59229, #fbfccf, #b59229);
		margin: auto!important;
	}
	.s-nav01 .link-item .btn-internal a:after {
		content: "";
		position: absolute;
		top: 50%;
		margin-top: -1rem;
		right: 0.8rem;
		background: url("img/arrow01.png") 0 0 no-repeat;
		background-size: 100% auto;
		width: 18px;
		height: 23px;
	}
	.s-nav01 .link-item .btn-internal a span {
		position: relative;
		font-weight: bold;
		padding-left: 4.3rem;
	}
	.s-nav01 .link-item .btn-internal a span::before {
		content: "";
		position: absolute;
		top: 0;
		margin-top: -1rem;
		left: 0.2rem;
		background: url("img/icon01.png") 0 0 no-repeat;
		background-size: 100% auto;
		width: 42px;
		height: 42px;
	}	
	
	
	.hb_menu_wrapper {
		max-width: 100%;
		background-color: rgba(38, 38, 38, 0.9);
		margin: 3rem 0 0;
		padding: 1rem 2rem 3.5rem;
		box-sizing: border-box;
		border-radius: 10px;
		border: solid 2px #fff;			
	}
	
	.hb_menu:nth-child(2) {
		display: none;
	}
	
	.hb_menu_title {
		padding: 1.5rem 0 1.5rem 0;
		border-bottom: 1px solid #fff;
		position: relative;
	}

	.hb_menu_title_link {
		display: block;
		padding: 0 2.5rem 0 0;
		color: #fff;
		font-size: 1.5rem;
		font-weight: bold;
		line-height: 1.6;
		position: relative;
	}
	.hb_menu_title .hb_menu_title_link:after {
		content: "";
		position: absolute;
		top: 50%;
		right: 5px;
		transform: translate(0,-50%);
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 5px 0 5px 8px;
		border-color: transparent transparent transparent #fff;		
	}
	
	.g-nav .close {
		width: 60%;
		margin: 3rem auto 0;
		padding: 1.5rem 1.5rem;
		color: #fff;
		font-size: 1.5rem;
		text-align: center;
		background: #262626;
		border-radius: 100px;
	}
}





/*--------------------------------------
　fix-nav
---------------------------------------*/
.fix-nav {
	position: fixed;
	right: 0;
	top: 16rem;
	width: 96px;
	z-index: 11;
}
.fix-nav a {
	-ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
	color: #fff;
	width: 96px;
	position: relative;
	line-height: 1.5;
	background: url("img/fix-btn02.png") 0 0 no-repeat;
	background-size: 100% auto;
	height: 295px;
	font-family: 'Noto Sans JP vertical';
}
.top-fix-nav a {
	-ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
	color: #fff;
	width: 96px;
	position: relative;
	line-height: 1.5;
	background: url("img/fix-btn.png") 0 0 no-repeat;
	background-size: 100% auto;
	height: 295px;
}
.fix-nav a span {
	font-weight: bold;
	text-shadow:0 0 10px #000;
	font-size: 1.7rem;
	padding-right: 1.2rem;
	padding-top: 3rem;
	display: inline-block;
}





/*--------------------------------------
　MV
---------------------------------------*/
.mv_lower {
	background: url("img/mv_lower-bg.gif") 0 0 no-repeat;
	width: 100%;
	background-size: cover;
	height: 155px;
	margin: auto;
}
.mv_lower .mv_inner { 
	margin: auto;
	height: 155px;
	min-width: 1100px;
}
.mv_lower .logo {
	width: 286px;
	margin: auto;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .mv_lower {
    background: url("img/mv_lower-bg.gif") 0 0 no-repeat;
    width: 100%;
    background-size: cover;
    height: auto;
    margin: auto;
  }
  .mv_lower .mv_inner { 
    margin: auto;
    height: auto;
    min-width: 100%;
  }
  .mv_lower .logo {
    width: 52%;
    margin: auto;
    padding: 0;
  }	
}


.fixed-background{
  position: relative;
}

.back-g01:before {
	content:"";
	position:fixed;
	top:0;
	left:0;
	z-index:-1;
	width:100vw;
	height:100vh;
	background: url("img/bg01.jpg")center center no-repeat;
	-webkit-background-size:contain;
	background-size:cover;
}




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

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	#pankuzu {
		width: 100%;
		margin: 1rem 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
---------------------------------------*/
.sideBox01_wrap .sideBox01 {
	display: none;
}
.sideBox01_wrap .sideBox01:first-child {
	display: block;
}
#side .sideBox01 .sttl {
	margin: auto;
	width: 90%;
	text-align: center;
	position: relative;
	z-index: 1;
}
#side .sideBox01 .sttl a {
	display: block;
	width: 100%;
	border: solid 2px #f3d28a;
	box-sizing: border-box;
	color: #fff;
	padding: 1.5rem 3rem 1.5rem 2.5rem;
	margin: auto;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.5;
	position: relative;
	border-radius: 5px;
	background: linear-gradient(to bottom, #654d27 0%, #654d27 50%, #573f19 50%, #573f19 100%);
	top: 1.5rem;
}
#side .sideBox01 .sttl a:after {
	content: "";
	position: absolute;
	top: 46%;
	right: 1.1rem;
	margin-top: -3px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 0 6px 7px;
	border-color: transparent transparent transparent #fff;
}

#side .sideBox01 .box {
	background: url("img/side-bg.jpg") left top repeat-y;
	background-size: 100% auto;
	width: 100%;
	padding-top: 5rem;
	margin-top: -1rem;
	padding-bottom: 1rem;
	position: relative;
	z-index: 0;
}
#side .sideBox01 .box:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 100%;
	background: url("img/side-top-bg.jpg") left top no-repeat;
	background-size: 100% auto;
	width: 100%;
	height: 10px;
	z-index: -1;
}
#side .sideBox01 .box:after {
	content: "";
	position: absolute;
	left: 0;
	top: 100%;
	background: url("img/side-bottom-bg.jpg") left top no-repeat;
	background-size: 100% auto;
	width: 100%;
	height: 10px;
	z-index: -1;
}


#side .sideBox01 .link-item .btn-internal {
	margin-bottom: 2rem!important;
}
#side .sideBox01 .link-item .btn-internal a {
	display: block;
	max-width: 200px;
	padding: 2rem 0;
	color: #fff;
	text-shadow:0 0 10px #000;
	font-size: 1.5rem;
	text-align: left;
	line-height: 1.5;
	border-radius: 10px;
	text-decoration: none!important;
	position: relative;
	box-shadow:0px 0px 0px 3px rgba(0, 0, 0, 1);
	box-sizing: border-box;
	z-index:1;
	background:linear-gradient(to right, #b59229, #fbfccf, #b59229);
	margin: auto!important;
}
#side .sideBox01 .link-item .btn-internal a:after {
	content: "";
	position: absolute;
	top: 50%;
	margin-top: -1rem;
	right: 0.8rem;
  background: url("img/arrow01.png") 0 0 no-repeat;
	background-size: 100% auto;
	width: 18px;
	height: 23px;
}
#side .sideBox01 .link-item .btn-internal a span {
	position: relative;
	font-weight: bold;
	padding: 0 3.3rem 0 4.3rem;
	display: block;
}
#side .sideBox01 .link-item .btn-internal a span::before {
	content: "";
	position: absolute;
	top: 0;
	margin-top: -1rem;
	left: 0.2rem;
  background: url("img/icon01.png") 0 0 no-repeat;
	background-size: 100% auto;
	width: 42px;
	height: 42px;
}

#side .sideBox01 .link-item p{
	margin: 0!important;
}


#side .sideBox02 {
	background-color: rgba(38, 38, 38, 0.9);
	margin: 4rem 0 0;
	padding: 3rem 2rem 2rem;
	box-sizing: border-box;
	border-radius: 10px;
	border: solid 2px #fff;
}


#side .sideBox02 ul {
	margin: 0 0 0 0;
}
#side .sideBox02 li {
	margin: 0 0 1.5rem 0;
	border-bottom: solid 1px #fff;
	padding-bottom: 1.5rem;
}
#side .sideBox02 li:last-child {
	border: none;
	margin: 0 0 0 0;
}
#side .sideBox02 li:first-child {
	display: none;
}
#side .sideBox02 li a {
	display: block;
	padding: 0 0 0 2rem;
	line-height: 1.5;
	position: relative;
	color: #fff;
	font-weight: bold;
}
#side .sideBox02 li a::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
  margin-top: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 8px;
  border-color: transparent transparent transparent #fff;
}


#side .sideBox03 {
	background-color: rgba(38, 38, 38, 0.9);
	margin: 4rem 0 0;
	padding: 3rem 2rem 2rem;
	box-sizing: border-box;
	border-radius: 10px;
	border: solid 2px #fff;
}

#side .sideBox03 .c-image {
	width: 155px;
	margin: auto;
}
#side .sideBox03 .s-neme {
	color: #fff;
	font-weight: bold;
	text-align: center;
	border-bottom: solid 2px #fff;
	padding-bottom: 1.2rem;
	line-height: 1.5;
	margin-top: 1.3rem;
	font-size: 2rem;
}

#side .sideBox03 .txt {
	color: #fff;
	line-height: 1.5;
	margin-top: 1.5rem;
}





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

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

#side {
  float: left;
  width: 250px;
	box-sizing: border-box;
}

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

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

	#side {
		display: none;
	}
}




.bgpattern01-inner {
	background: url("img/bgpattern02.png") 0 0 repeat-y;
	background-size: 100% auto;
	position: relative;
	padding: 2rem 5rem;
}

.bgpattern02-inner {
	background: url("img/bgpattern01.png") 0 0 repeat-y;
	background-size: 100% auto;
	position: relative;
	padding: 0 7rem;
}

.bgpattern03-inner {
	background: url("img/bgpattern03.png") 0 0 repeat-y;
	background-size: 100% auto;
	position: relative;
	padding: 0 7rem;
	padding-top: 10rem;
	margin-top: -5.2rem;
}

.bgpattern04-inner {
	position: relative;
	padding: 0 7rem;
}

@media screen and (max-width: 768px){
  .bgpattern01-inner {
    background: url("img/bgpattern02.png") 0 0 repeat-y;
    background-size: 100% auto;
    position: relative;
    padding: 1rem 2rem;
  }
  .bgpattern02-inner {
    background: url("img/bgpattern01.png") 0 0 repeat-y;
    background-size: 100% auto;
    position: relative;
    padding: 0 2rem;
  }
  .bgpattern03-inner {
    background: url("img/bgpattern03.png") 0 0 repeat-y;
    background-size: 100% auto;
    position: relative;
    padding: 0 3rem;
		padding-top: 7rem;
		margin-top: -5.2rem;
  }	
  .bgpattern04-inner {
    position: relative;
    padding: 0 2rem;	
	}
}





/*--------------------------------------
　Title
---------------------------------------*/
h2,
h3,
h4,
h5,
h6,
.cc {
	font-weight: bold;
	line-height: 1.4;
	box-sizing: border-box;
}
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	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 5rem;
	color: #654d27;
	font-size: 3.8rem;
	font-weight: bold;
	line-height: 1.4;
	text-align: center;
	position: relative;
}
#category h1:after,
#page h1:after {
	content: "";
	position: absolute;
  background: url("img/h1-bg.png") 0 0 no-repeat;
	background-size: 100% auto;
	width: 100%;
	height: 16px;
	right: 0;
	margin: auto;
	left: 0;
	bottom: -30px;
}


#category h2,
#page h2 {
	background: #2d4563;
	margin: 4rem 0 2rem;
	padding: 2rem 3rem 2.5rem 4rem;
	color: #fff;
	font-size: 3rem;
	text-align: center;
	border:solid 2px #c48f3a;
	position: relative;	
}
#category h2::before,
#page h2:before,
#category h2:after,
#page h2:after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 43px;
}
#category h2::before,
#page h2:before {
	top: 0;
  background: url("img/h2-bg01.png") 0 0 no-repeat;
	background-size: 100% auto;
}
#category h2::after,
#page h2:after {
	bottom: 0;
  background: url("img/h2-bg02.png") 0 bottom no-repeat;
	background-size: 100% auto;
}

#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;
  margin-top: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 12px;
  border-color: transparent transparent transparent #fff;
}


#category h3,
#page h3 {
	margin: 4rem 0 2rem;
	padding: 1.5rem 0 1.5rem 3.2rem;
	font-size: 2.6rem;
	color: #654d27;
	border-bottom: 2px solid #654d27;
	border-top: 2px solid #654d27;
	box-sizing: border-box;
	position: relative;
}
#category h3::before,
#page h3::before{
	content: "";
	position: absolute;
  background: url("img/icon02.png") 0 0 no-repeat;
	background-size: 100% auto;
	width: 22px;
	height: 32px;
	top: 1.8rem;
	left: 0;
}

#category h3 a,
#page h3 a {
	padding: 0 3rem 0 0;
	position: relative;
	color: #654d27;
}
#category h3 a:after,
#page h3 a:after{
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  margin-top: -9px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 12px;
  border-color: transparent transparent transparent #654d27;
}


#category h4,
#page h4 {
	color: #654d27;
	margin: 3rem 0 1rem;
	font-size: 2rem;
}

#category h4 a,
#page h4 a {
	display: inline-block;
	padding: 0 3rem 0 0;
	position: relative;
	color: #654d27;
}
#category h4 a:after,
#page h4 a:after{
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  margin-top: -6px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent #654d27;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	#category h1,
	#page h1 {
		margin: 0 0 3rem;
		color: #654d27;
		font-size: 2.5rem;
		font-weight: bold;
		line-height: 1.4;
		text-align: center;
		position: relative;
	}
	#category h1:after,
	#page h1:after{
		content: "";
		position: absolute;
		background: url("img/sp-h1-bg.png") 0 0 no-repeat;
		background-size: 100% auto;
		width: 100%;
		height: 16px;
		right: 0;
		margin: auto;
		left: 0;
		bottom: -30px;
	}

	#category h2,
	#page h2 {
		margin: 4rem 0 2rem;
		padding: 1.5rem 2rem 2rem 2rem;
		font-size: 2.2rem;
	}
	#category h2::before,
	#page h2:before,
	#category h2:after,
	#page h2:after {
		width: 100%;
		height: 0;
		padding-top: calc(100%*43/694);
	}

	#category h2 a,
	#page h2 a {
		padding: 0 1.5rem 0 0;
		position: relative;
	}
	#category h2 a:after,
	#page h2 a:after{
		content: "";
		position: absolute;
		top: 50%;
		right: 0;
		margin-top: -6px;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 8px 0 8px 10px;
		border-color: transparent transparent transparent #fff;
	}


	#category h3,
	#page h3 {
		margin: 2.2rem 0 2rem;
		padding: 1.2rem 0 1.2rem 2rem;
		font-size: 1.8rem;
		color: #654d27;
		border-bottom: 2px solid #654d27;
		border-top: 2px solid #654d27;
		box-sizing: border-box;
		position: relative;
	}
	#category h3::before,
	#page h3::before{
		content: "";
		position: absolute;
		background: url("img/icon02.png") 0 0 no-repeat;
		background-size: 100% auto;
		width: 14px;
		height: 24px;
		top: 1.5rem;
		left: 0;
	}	

	#category h3 a,
	#page h3 a {
		padding: 0 1.5rem 0 0;
	}
	#category h3 a:after,
	#page h3 a:after{
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -6px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 0 7px 9px;
    border-color: transparent transparent transparent #654d27;
	}


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

	#category h4 a,
	#page h4 a {
		padding: 0 1.5rem 0 0;
	}
	#category h4 a:after,
	#page h4 a:after{
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  margin-top: -6px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #654d27;
	}
}





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

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

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


.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;
		font-size: 1.5rem;
	}
	
	.caption {
		margin: 1rem 0 0 0;
	}
}





/*--------------------------------------
　リスト
---------------------------------------*/
/*----- ulリスト -----*/
#category ul,
#page ul {
	margin: 4rem 0 4rem 2rem;
}
#category ul li,
#page ul li {
  margin: 0 0 1rem 0;
  padding: 0 0 0 2rem;
	font-size: 1.6rem;
  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: "";
	position: absolute;
  background: url("img/icon03.png") 0 0 no-repeat;
	background-size: 100% auto;
	width: 15px;
	height: 15px;
	top: 0.8rem;
	left: 0;
	display: inline-block;
}
#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 1rem;
	}
	#category ul li,
	#page ul li {
		padding: 0 0 0 1.5rem;
		font-size: 1.5rem;
	}
	#category ul li:before,
	#page ul li:before {
		content: "";
		position: absolute;
		background: url("img/icon03.png") 0 0 no-repeat;
		background-size: 100% auto;
		width: 12px;
		height: 12px;
		top: 0.8rem;
		left: 0;
		display: inline-block;
	}
}





/*--------------------------------------
　リンク
---------------------------------------*/
.btn-web a,
.btn-internal a {
	display: block;
	max-width: 410px;
	margin: 4rem auto 4rem;
	padding: 2.5rem 5rem;
	color: #fff;
	text-shadow:0 0 10px #000;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
	border-radius: 10px;
	text-decoration: none!important;
	position: relative;
	box-shadow:0px 0px 0px 3px rgba(0, 0, 0, 1);
	box-sizing: border-box;
	z-index:1;
	background:linear-gradient(to right, #b59229, #fbfccf, #b59229);
}
.btn-web a:after,
.btn-internal a:after {
	content: "";
	position: absolute;
	top: 50%;
	margin-top: -1.2rem;
	right: 1rem;
  background: url("img/arrow01.png") 0 0 no-repeat;
	background-size: 100% auto;
	width: 22px;
	height: 27px;
}


/*----- btn-web（外部リンク） -----*/
.btn-web a::before{
  content: "";
  position:absolute;
  top:0;
  left:0;
  z-index:-1;
  box-sizing:border-box;
  border-radius:10px;
  padding:2px;
  width:100%;
  height:100%;
  background: -moz-linear-gradient(top, #ff1d1d, #870707);
  background: -webkit-linear-gradient(top, #ff1d1d, #870707);
  background: linear-gradient(to bottom, #ff1d1d, #870707);
  background-clip:content-box;
}


/*----- btn-internal（内部リンク） -----*/
.btn-internal a::before{
  content: "";
  position:absolute;
  top:0;
  left:0;
  z-index:-1;
  box-sizing:border-box;
  border-radius:10px;
  padding:2px;
  width:100%;
  height:100%;
  background: -moz-linear-gradient(top, #079a15, #024008);
  background: -webkit-linear-gradient(top, #079a15, #024008);
  background: linear-gradient(to bottom, #079a15, #024008);
  background-clip:content-box;
}


/*----- 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.6rem;
	line-height: 1.5;
	text-decoration: underline;
	position: relative;
	font-weight: bold;
}
.btn-link a:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  margin-top: -6px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent #000;
}

.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: 2rem 3.5rem;
		color: #fff;
		text-shadow:0 0 10px #000;
		font-size: 1.6rem;
		font-weight: bold;
		text-align: center;
		line-height: 1.5;
		border-radius: 10px;
		text-decoration: none!important;
		position: relative;
		box-shadow:0px 0px 0px 3px rgba(0, 0, 0, 1);
		box-sizing: border-box;
		z-index:1;
		background:linear-gradient(to right, #b59229, #fbfccf, #b59229);
	}
	.btn-internal a:after,
	.btn-web a:after {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -1.1rem;
    right: 0.8rem;
    background: url("img/arrow01.png") 0 0 no-repeat;
    background-size: 100% auto;
    width: 22px;
    height: 27px;
	}

	
	/*----- btn-link（テキストリンク） -----*/
	.btn-link {
		text-align: center;
	}
	.btn-link a {
		margin: 2rem 0 2rem;
		padding: 0 1.7rem 0 0;
		font-size: 1.5rem;
	}
	.btn-link a:after {
		content: "";
		position: absolute;
		top: 50%;
		right: 0;
		margin-top: -6px;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 7px 0 7px 9px;
		border-color: transparent transparent transparent #000;
	}

	
	/*----- btn-tel（電話ボタン） -----*/
	.btn-tel a {
		display: block;
		max-width: 85%;
		margin: 3rem auto 3rem;
		padding: 2rem 3.5rem;
		color: #fff;
		text-shadow:0 0 10px #000;
		font-size: 1.6rem;
		font-weight: bold;
		text-align: center;
		line-height: 1.5;
		border-radius: 10px;
		text-decoration: none!important;
		position: relative;
		box-shadow:0px 0px 0px 3px rgba(0, 0, 0, 1);
		box-sizing: border-box;
		z-index:1;
		background:linear-gradient(to right, #b59229, #fbfccf, #b59229);
	}	
	.btn-tel a::before{
		content: "";
		position:absolute;
		top:0;
		left:0;
		z-index:-1;
		box-sizing:border-box;
		border-radius:10px;
		padding:2px;
		width:100%;
		height:100%;
		background: -moz-linear-gradient(top, #009dd7, #005ad8);
		background: -webkit-linear-gradient(top, #009dd7, #005ad8);
		background: linear-gradient(to bottom, #009dd7, #005ad8);
		background-clip:content-box;
	}
	.btn-tel a:after {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -1.3rem;
    left: 1.5rem;
    background: url("img/tel_icon.png") 0 0 no-repeat;
    background-size: 100% auto;
    width: 15px;
    height: 27px;
	}	
}





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


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

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


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


.float-txt-r {
	float: right;
	width: 365px;
}
.float-txt-l {
	float: left;
	width: 365px;
}
.float-wrap ul {
	margin-top: 0!important;
	margin-bottom: 2rem!important;
}
.float-wrap li {
	margin-top: 1rem!important;
	margin-bottom: 0.5rem!important;
}

/* 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-txt-r {
    float: none;
    width: 100%;
  }
  .float-txt-l {
    float: none;
    width: 100%;
  }	

  .float-wrap ul {
    margin-top: 0!important;
    margin-bottom: 1rem!important;
  }
  .float-wrap li {
    margin-top: 0rem!important;
    margin-bottom: 0.5rem!important;
  }
}





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

table th {
	background: #c5b090;
	padding: 1.5rem;
	box-sizing: border-box;
	text-align: center;
	font-size: 1.6rem;
	line-height: 1.4;
  word-break: break-all;
	border-left: 1px solid #654d27;
	border-bottom: 1px solid #654d27;
}
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.6rem;
	line-height: 1.4;
  word-break: break-all;
	border-left: 1px solid #654d27;
	border-bottom: 1px solid #654d27;
}
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 {
		padding: 1.2rem;
		font-size: 1.5rem;
	}

	table td {
		padding: 1.2rem;
		font-size: 1.4rem;
	}
	
	table tbody tr:last-child td:last-child {
		border-bottom: none;
	}
}





/*--------------------------------------
　toc_parts
---------------------------------------*/
.toc_parts {
	background-color: rgba(38, 38, 38, 0.9);
	margin: 7rem 0 5rem;
	padding: 3rem 4rem;
	box-sizing: border-box;
	border-radius: 10px;
	border: solid 2px #fff;
}

.toc_parts_inner {
	 display: flex;
  justify-content: center;
}

.toc_parts .ttl {
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	width: 16%;
	box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;	
}

#toc {
  border-left: solid 1px #eee;
  box-sizing: border-box;
	width: 84%;
}
#toc .chapter {
	margin: 0 0 0;
	padding-left: 5rem;
}
#toc .chapter li {
	margin: 0 0 1rem 0;
	padding: 0 0 0 3rem;
	overflow-wrap: break-word;
	position: relative;
}
#toc .chapter li:before {
	content: "";
	position: absolute;
  background: url("img/icon01.png") 0 0 no-repeat;	
  background-size: 100% auto;
	width: 55px;
	height: 55px;
	left: -2.5rem;
	top: -1.3rem;
}

#toc .chapter li:last-child {
	margin: 0 0 0;
}
#toc .chapter li a {
	display: block;
	box-sizing: border-box;
	text-decoration: none;
	font-size: 1.6rem;
  line-height: 1.8;
	color: #fff;
	font-weight: bold;
}

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

#toc .chapter li br {
	display: none;
}

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

	.toc_parts_inner {
		 display: block;
		justify-content: center;
	}
	
	.toc_parts .ttl {
		color: #fff;
		font-size: 1.8rem;
		font-weight: bold;
		text-align: center;
		width: 100%;
		box-sizing: border-box;
		display: inline-block;
		justify-content: center;
		align-items: center;	
	}
	

#toc {
  border-left: none;
	border-top: solid 1px #eee;
  box-sizing: border-box;
	width: 100%;		
  margin: 2rem 0 0 0;
  padding: 2rem 2rem;
	}
	
	#toc .chapter {
		margin: 0 0 0;
		padding-left: 0;
	}
	#toc .chapter li {
	margin: 0 0 1rem;
	padding: 0 0 0 2.5rem;
	position: relative;
	}
	
	#toc .chapter li:before {
		content: "";
		position: absolute;
		background: url("img/icon01.png") 0 0 no-repeat;	
		background-size: 100% auto;
		width: 50px;
		height: 50px;
		left: -2.5rem;
		top: -1.2rem;
	}
}





/*--------------------------------------
comment01
---------------------------------------*/
.comment01,
.comment02 {
	margin-bottom: 4rem;
}

.comment01 span,
.comment02 span {
	color: #fadd3c;
	font-weight: bold;
} 

.comment01 .c-image {
	float: left;
	width: 130px;
	image-rendering: -webkit-optimize-contrast;
}
.comment02 .c-image {
	float: right;
	width: 130px;
}

.comment01 .c-txt {
	float: left;
	width: 382px;
	margin: 0 0 0 3rem;
}
.comment02 .c-txt {
	float: right;
	width: 382px;
	margin: 0 3rem 0 0;
}

.comment01 .name,
.comment02 .name {
	display: inline-block;
	background: #413f3c;
	margin: 0 0 -2px 1.5rem;
	padding: 1rem 2rem 1rem;
	box-sizing: border-box;
	color: #fff;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1;
	border: solid 2px #fff;
	border-bottom: none;
	border-radius: 10px 10px 0 0;
	position: relative;
}

.comment01 .txt,
.comment02 .txt {
	background: #413f3c;
	margin: 0 0 0;
	padding: 2rem 3rem;
	box-sizing: border-box;
	color: #fff;
	border: solid 2px #fff;
	border-radius: 10px;
	box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.2);
}

@media screen and (max-width: 768px) {
	.comment01,
	.comment02 {
		margin-bottom: 2.5rem;
	}

	.comment01 .c-image {
		float: left;
		width: 30%;
		margin: 0 1.5rem 0 0;
	}
	.comment02 .c-image {
		float: right;
		width: 30%;
		margin: 0 0 0 1.5rem;
	}

	.comment01 .c-txt {
		float: inherit;
		width: 100%;
		margin: 0 0 0 0;
	}
	.comment02 .c-txt {
		float: inherit;
		width: 100%;
		margin: 0 0 0 0;
	}

	.comment01 .name,
	.comment02 .name {
		margin: 0 0 -0.3rem 1rem;
		padding: 1rem 1.5rem 1rem;
		font-size: 1.6rem;
		border-radius: 5px 5px 0 0;
	}

	.comment01 .txt,
	.comment02 .txt {
		background: none;
		margin: 0 0 0;
		padding: 0 0;
		border: none;
		border-radius: 0;
		box-shadow: none;
	}

	.comment01 .txt-box,
	.comment02 .txt-box {
		background: #413f3c;
		padding: 2rem 2rem;
		box-sizing: border-box;
		color: #fff;
		border: solid 2px #fff;
		border-radius: 5px;
		box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.2);
	}
}





/*--------------------------------------
summary
---------------------------------------*/
.summary {
	margin: 8rem 0 4rem;
}

.summary .s-inner{
	background: #fff;
	border: solid 4px #654d27;
	border-radius: 10px;
	position: relative;
	box-sizing: border-box;
	box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.2);  
}
.summary .s-inner::after {
	content: "";
	position: absolute;
  background: url("img/box-icon05.png") 0 0 no-repeat;
	background-size: 100% auto;
	width: 262px;
	height: 24px;
	bottom: -14px;
	left: 0;
	right: 0;
	margin: auto;
}


.summary .sum {
	margin: auto;
	background: url("img/sum-bg.png") 0 0 no-repeat;	
  background-size: 100% auto;
	width: 170px;
	height: 56px;
	margin-top: -30px;
	position: relative;
	z-index: 1;
	text-align: center;
}
.summary .sum span {
	font-weight: bold;
	color: #fff;
	font-size: 2rem;
	padding-top: 1.7rem;
	text-align: center;
	display: inline-block;
}

.summary .box {
	width: 580px;
	border: solid 2px #654d27;
	border-radius: 10px;
	margin: auto;
	margin-bottom: 3px;
	margin-top: -22px;
	padding: 3rem 5rem;
}

.summary .catch-t {
	text-align: center;
	color: #0a274d;
	font-size: 2.2rem;
	font-weight: bold;
	border-bottom: solid 2px #654d27;
	padding-bottom: 2rem;
	line-height: 1.5;
	margin-top: 1rem;
	margin-bottom: 2rem;
}

.summary p {
	margin: 0;
	padding: 0;
	margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  .summary {
    margin: 8rem -1rem 4rem;
  }
	
  .summary .s-inner{
    background: #fff;
    border: solid 4px #654d27;
    border-radius: 10px;
    position: relative;
    box-sizing: border-box;
    box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.2);  
  }
  .summary .s-inner::after {
    content: "";
    position: absolute;
    background: url("img/box-icon05.png") 0 0 no-repeat;
    background-size: 100% auto;
    width: 200px;
    height: 20px;
    bottom: -6px;
    left: 0;
    right: 0;
    margin: auto;
  }

  .summary .sum {
    margin: auto;
    background: url("img/sum-bg.png") 0 0 no-repeat;	
    background-size: 100% auto;
    width: 150px;
    height: 56px;
    margin-top: -25px;
    position: relative;
    z-index: 1;
    text-align: center;
  }
  .summary .sum span {
    font-weight: bold;
    color: #fff;
    font-size: 1.8rem;
    padding-top: 1.5rem;
    text-align: center;
    display: inline-block;
  }
	
  .summary .box {
    width: 96%;
    border: solid 2px #654d27;
    border-radius: 10px;
    margin: auto;
    margin-bottom: 4px;
    margin-top: -7%;
    padding: 2% 0;
  }

  .summary .catch-t {
    text-align: center;
    color: #0a274d;
    font-size: 1.8rem;
    font-weight: bold;
    border-bottom: solid 2px #654d27;
    padding-bottom: 1.6rem;
    line-height: 1.5;
    margin: auto;
    margin-top: 2.5rem;
    margin-bottom: 1.6rem;
    width: 90%;
  }

  .summary p {
    padding: 0;
    margin-bottom: 1rem;
    width: 90%;
    margin: auto;
  }	
}





/*--------------------------------------
com-parts01
---------------------------------------*/
.com-parts01 {
	background: #f2e8d7;
	border: solid 2px #654d27;
	box-sizing: border-box;
	margin: 4rem 0;
}

.com-parts01 .inner {
	width: 680px;
	border: solid 2px #654d27;
	margin: auto;
	margin-bottom: 5px;
	padding: 3rem 3rem;
	margin-top: 5px;
	position: relative;
	z-index: 1;
	box-sizing: border-box;
}
.com-parts01 .inner::before {
	content: "";
	position: absolute;
  background: url("img/box-icon06.gif") 0 0 no-repeat;
	background-size: 100% auto;
	width: 20px;
	height: 20px;
	left: -2px;
	top: -2px;
	z-index: 2;
}
.com-parts01 .inner::after {
	content: "";
	position: absolute;
  background: url("img/box-icon07.gif") 0 0 no-repeat;
	background-size: 100% auto;
	width: 20px;
	height: 20px;
	bottom: -2px;
	left: -2px;
	z-index: 2;
}

.com-parts01 .box {
  display: flex;
  justify-content: space-between;
	align-items: center;
  flex-wrap: wrap; 
}
.com-parts01 .box::before {
	content: "";
	position: absolute;
  background: url("img/box-icon08.gif") 0 0 no-repeat;
	background-size: 100% auto;
	width: 20px;
	height: 20px;
	right: -2px;
	top: -2px;
	z-index: 2;
}
.com-parts01 .box::after {
	content: "";
	position: absolute;
  background: url("img/box-icon09.gif") 0 0 no-repeat;
	background-size: 100% auto;
	width: 20px;
	height: 20px;
	bottom: -2px;
	right: -2px;
	z-index: 2;
}

.com-parts01 .box .left-box {
	width:20%;
	text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;	
}
.com-parts01 .box .left-box .icon {
	width: 33px;
	text-align: center;
	margin: auto;	
	margin-bottom: 0.5rem;
}
.com-parts01 .box .left-box .ttl {
	font-size: 17px;
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
}

.com-parts01 .box .right-box {
	width: 78%;
	border-left: 1px solid #654d27;
	box-sizing: border-box;
}
.com-parts01 .box .right-box p {
	margin: 0;
	padding: 0;
	padding-left: 2rem;
	font-size: 1.6rem;
	line-height: 1.8;
}

@media screen and (max-width: 768px) {
	.com-parts01 {
		background: #f2e8d7;
		border: solid 2px #654d27;
		box-sizing: border-box;
		margin: 4rem 0;
	}

	.com-parts01 .inner {
		width: 98%;
		border: solid 1px #654d27;
		margin: auto;
		margin-bottom: 5px;
		padding: 1rem 0 3rem;
		margin-top: 5px;
		position: relative;
		z-index: 1;
		box-sizing: border-box;
	}
	.com-parts01 .inner::before {
		content: "";
		position: absolute;
		background: url("img/box-icon06.gif") 0 0 no-repeat;
		background-size: 100% auto;
		width: 10px;
		height: 10px;
		left: -1px;
		top: -1px;
		z-index: 2;
	}
	.com-parts01 .inner::after {
		content: "";
		position: absolute;
		background: url("img/box-icon07.gif") 0 0 no-repeat;
		background-size: 100% auto;
		width: 10px;
		height: 10px;
		bottom: -1px;
		left: -1px;
		z-index: 2;
	}

	.com-parts01 .box {
		display: block;
		justify-content: space-between;
		flex-wrap: wrap; 
	}
	.com-parts01 .box::before {
		content: "";
		position: absolute;
		background: url("img/box-icon08.gif") 0 0 no-repeat;
		background-size: 100% auto;
		width: 10px;
		height: 10px;
		right: -1px;
		top: -1px;
		z-index: 2;
	}
	.com-parts01 .box::after {
		content: "";
		position: absolute;
		background: url("img/box-icon09.gif") 0 0 no-repeat;
		background-size: 100% auto;
		width: 10px;
		height: 10px;
		bottom: -1px;
		right: -1px;
		z-index: 2;
	}

	.com-parts01 .box .left-box {
		width:100%;
		text-align: center;
		display: block;
		flex-direction: column;
		justify-content: center;
		align-items: center;	
	}
	.com-parts01 .box .left-box .icon {
		width: 33px;
		text-align: center;
		margin: auto;	
		margin-bottom: 0.5rem;
		margin-top: 1rem;
	}
	.com-parts01 .box .left-box .ttl {
		font-size: 18px;
		font-weight: bold;
		text-align: center;
		line-height: 1.6;
	}

	.com-parts01 .box .right-box {
		width: 90%;
		border-left:none;
		border-top: 1px solid #654d27;
		box-sizing: border-box;
		margin: auto;
		margin-top: 1rem;
	}
	.com-parts01 .box .right-box p {
		margin: 0;
		padding: 0;
		padding-left: 0;
		display: block;
		padding-top: 1.5rem;
		font-size: 1.6rem;
		line-height: 1.8;
	}	
}





/*--------------------------------------
　com-parts02
---------------------------------------*/
.com-parts02 {
	background-color: rgba(38, 38, 38, 0.96);
	margin: 7rem 0 5rem;
	padding: 3rem 4rem;
	box-sizing: border-box;
	border-radius: 10px;
	border: solid 2px #fff;
}

.com-parts02 .inner {
	 display: flex;
  justify-content: center;
}

.com-parts02 .ttl {
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	width: 22%;
	box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;	
}

.com-parts02 .ls {
  border-left: solid 1px #888!important;
  box-sizing: border-box;
	width: 78%;
}

.com-parts02 ul {
	margin: 0 0 0!important;
	padding-left: 4rem;
}
.com-parts02 li {
	margin: 0 0 1rem 0;
	padding: 0 0 0 3rem!important;
	overflow-wrap: break-word;
	position: relative!important;
}
.com-parts02 li:before {
	content: "";
	position: absolute!important;
  background: url("img/icon01.png") 0 0 no-repeat!important;	
  background-size: 100% auto!important;
	width: 55px!important;
	height: 55px!important;
	left: -2.5rem!important;
	top: -1.3rem!important;
}
.com-parts02 li:last-child {
	margin: 0 0 0!important;
}
.com-parts02 li a {
	display: block;
	box-sizing: border-box;
	text-decoration: none!important;
	font-size: 1.6rem;
  line-height: 1.8;
	color: #fff;
	font-weight: bold;
}

@media screen and (max-width: 768px) {
  .com-parts02 {
    background-color: rgba(38, 38, 38, 0.96);
    margin: 5rem 0 3rem;
    padding: 3rem 2rem 1rem;
    box-sizing: border-box;
    border-radius: 10px;
    border: solid 2px #fff;
  }
	
  .com-parts02 .inner {
     display: block;
    justify-content: center;
  }
	
  .com-parts02 .ttl {
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;	
  }

  .com-parts02 .ls {
    border-left: none!important;
    border-top: solid 1px #eee;
    box-sizing: border-box;
    width: 100%;		
    margin: 2rem 0 0 0;
    padding: 2rem 2rem;
  }
	
  .com-parts02 ul {
    margin: 0 0 0!important;
    padding-left: 0;
  }
  .com-parts02 li {
    margin: 0 0 1rem 0;
    padding: 0 0 0 2.2rem!important;
    overflow-wrap: break-word;
    position: relative!important;
  }
  .com-parts02 li:before {
    content: "";
    position: absolute!important;
    background: url("img/icon01.png") 0 0 no-repeat!important;	
    background-size: 100% auto!important;
    width: 50px!important;
    height: 50px!important;
    left: -2.5rem!important;
    top: -1.1rem!important;
  }
  .com-parts02 li:last-child {
    margin: 0 0 0!important;
  }
  .com-parts02 li a {
    display: block;
    box-sizing: border-box;
    text-decoration: none!important;
    font-size: 1.6rem;
    line-height: 1.8;
    color: #fff;
    font-weight: bold;
  }	
}





/*--------------------------------------
　com-parts03
---------------------------------------*/
.com-parts03 {
	margin: 4rem 0 0;
	padding-bottom: 3rem;
}

.com-parts03 .ttl {
	max-width: 75%;
	margin: auto;
	position: relative;
	z-index: 1;
	top: 4rem;
	text-align: center;
}
.com-parts03 .ttl .ttl_inner {
	display: block;
	background: linear-gradient(180deg, #375172 0%, #375172 50%, #183d6d 50%, #183d6d 100%);
	margin: auto;
	padding: 2rem 5.5rem;
	box-sizing: border-box;
	font-weight: bold;
	color: #fff;
	font-size: 2.2rem;
	text-align: center;
	line-height: 1.4;
	border-top: 4px solid #c48f3a;
	border-bottom: 4px solid #c48f3a;
	position: relative;
}
.com-parts03 .ttl .ttl_inner:before,
.com-parts03 .ttl .ttl_inner:after{
	content: "";
	position: absolute;
	top: 50%;
	transform: translate(0,-50%);
	width: 30px;
	height: calc(100% + 0.8rem);
}
.com-parts03 .ttl .ttl_inner:before {
	left: -30px;
	background: url("img/ttl-bg01-01.png") left top no-repeat;
	background-size: 100% 100%;
}
.com-parts03 .ttl .ttl_inner:after {
	right: -30px;
	background: url("img/ttl-bg01-02.png") left top no-repeat;
	background-size: 100% 100%;
}
.com-parts03 .ttl .pr_txt {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
	display: inline-block;
	background: #122e52;
	padding: 0.5rem 1rem;
	color: #c48f3a;
	font-size: 1.8rem;
	font-weight: bold;
}

.com-parts03 .inner {
	position: relative;
	background: #fff;
	border: solid 4px #654d27;
	box-sizing: border-box;
	padding: 8rem 5rem 5rem;
	box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.2);  
	border-radius: 10px;
}
.com-parts03 .inner::before {
	content: "";
	position: absolute;
  background: url("img/box-icon10.gif") 0 0 no-repeat;
	background-size: 100% auto;
	width: 36px;
	height: 36px;
	left: 4px;
	top: 4px;
	z-index: 2;
}
.com-parts03 .inner::after {
	content: "";
	position: absolute;
  background: url("img/box-icon11.gif") 0 0 no-repeat;
	background-size: 100% auto;
	width: 36px;
	height: 36px;
	left: 4px;
	bottom: 4px;
	z-index: 2;
}

.com-parts03 .box::before {
	content: "";
	position: absolute;
  background: url("img/box-icon12.gif") 0 0 no-repeat;
	background-size: 100% auto;
	width: 36px;
	height: 36px;
	right: 4px;
	top: 4px;
	z-index: 2;
}
.com-parts03 .box::after {
	content: "";
	position: absolute;
  background: url("img/box-icon13.gif") 0 0 no-repeat;
	background-size: 100% auto;
	width: 36px;
	height: 36px;
	right: 4px;
	bottom: 4px;
	z-index: 2;
}

.com-parts03 .flame {
	width: 400px;
	margin: auto;
}

.com-parts03 .caption {
	font-size: 1.2rem;
	text-align: center;
	line-height: 1.4;
	margin: 0;
	margin-top: 1rem;
	margin-bottom: 4rem;
}

.com-parts03 .com-ttl {
	background: #654d27;
	position: relative;
	text-align: center;
	color: #fff;
	margin-bottom: 3rem;
}
.com-parts03 .com-ttl::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	background: #f2e8d7;
	top: 2px;
	display: block;
}
.com-parts03 .com-ttl::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	background: #f2e8d7;
	bottom: 2px;
	display: block;
}

.com-parts03 .c-ttl  {
	font-weight: bold;
	font-size: 2rem;
	padding: 1.5rem 0;
	line-height: 1.5;
}

.com-parts03 .ls-box {
	margin-bottom: 4rem;
}
.com-parts03 .ls-box .item {
	border-bottom: dotted 2px #654d27;
	padding-bottom: 2rem;
	margin-bottom: 2.5rem;
}
.com-parts03 .ls-box .item:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}
.com-parts03 .ls-box .point{
	display: flex;
  justify-content: space-between;
  flex-wrap: wrap; 
	margin-bottom: 1rem;
}
.com-parts03 .ls-box .p-icon {
	width: 70px;
  display: flex;
  align-items: center;	
}
.com-parts03 .ls-box .p-ttl {
	color: #0a274d;
	font-size: 2rem;
	font-weight: bold;
	width: 490px;
	line-height: 1.6;
}
.com-parts03 .ls-box p {
	margin: 0;
}
.com-parts03 .list ul {
	margin-top: -1rem!important;
	margin-bottom: 0!important;
}
.com-parts03 .list li {
	color: #0a274d;
	font-size: 1.8rem!important ;
	font-weight: bold;
	line-height: 1.5!important;
	margin-bottom: 1rem!important;
}
.com-parts03 .list .txt01 {
	margin: 0!important;
	margin-top: 2rem!important;
}
.com-parts03 .list {
	margin-bottom: 4rem;
}
.com-parts03 .list .btn-web {
	margin-bottom: 6rem;
}

.com-parts03 .human-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; 	
}
.com-parts03 .human-box .image-box {
	width: 150px;
}
.com-parts03 .human-box .image-box .name {
	font-weight: bold;
	margin: 0;
	text-align: center;
}
.com-parts03 .human-box .text-box {
	width: 420px;
}
.com-parts03 .human-box .text-box .tx-bg {
	float: left;
	background: #375172;
	display: inline-block;
	color: #fff;
	font-weight: bold;
	border-radius: 5px;
	width: 85px;
	padding: 1rem 0;
	text-align: center;
	margin: 0;
}
.com-parts03 .human-box .text-box .txt {
	float: right;
	width: 315px;
	margin: 0;
	line-height: 1.7;
	margin-top: -0.7rem;
}
.com-parts03 .human-box .t-box {
	margin-bottom: 3rem;
}

.com-parts03 .comment03 {
	margin-top: -2rem;
	margin-bottom: 7rem;
}
.com-parts03 .comment03 .name {
	margin: 0;
	font-weight: normal;
	font-size: 1.6rem;
	background-color: rgba(38, 38, 38, 1);
	display: inline-block;
	border: solid 2px #fff;
	border-radius: 10px;
	padding: 0.3rem 2rem 0.4rem;
	margin-left: 3rem;
	color: #fff;
	box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.2); 
	position: relative;
	z-index: 1;
	top: 2rem;
}
.com-parts03 .comment03 .txt {
	margin: 0;
	width: 100%;
	border-radius: 10px;
  background-color: rgba(38, 38, 38, 1);
	padding: 3rem 3rem 2rem;
	box-sizing: border-box;
	color: #fff;
	border: solid 2px #fff;	
	margin-top: -2px;
	box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.2);  
}


.v-box {
	margin-bottom: 5rem;
}

.c-voice {
	border-bottom: dotted 2px #654d27;
	padding-bottom: 4rem;
	margin-bottom: 4rem;
}
.c-voice:last-child {
	border-bottom:none;
	padding-bottom: 0;
}

.com-parts03 .f-box-l .flame {
	float: left;
	width: 248px;
}
.com-parts03 .f-box-l .text-box {
	float: right;
	width: 320px;
}

.com-parts03 .f-box-r .flame {
	float: right;
	width: 248px;
}
.com-parts03 .f-box-r .text-box {
	float: left;
	width: 320px;
}

.com-parts03 .f-box .c-name {
	position: relative;
	color: #375172;
	font-size: 22px;
	text-align: center;
	font-weight: bold;
	line-height: 1.5;
}
.com-parts03 .f-box .c-name:after{
	content: "";
	position: absolute;
  background: url("img/t-bg01.png") 0 0 no-repeat;
	background-size: 100% auto;
	width: 100%;
	height: 15px;
	right: 0;
	margin: auto;
	left: 0;
	bottom: -20px;
}
.com-parts03 .f-box .s-txt {
	text-align: center;
	font-weight: bold;
	margin-top: 3.5rem;
	line-height: 1.6;
	font-size: 1.8rem;
}
.com-parts03 .f-box .txt {
	margin: 0;
	margin-top: 0.5rem;
}


.c-voice .result {
	background: #f2e8d7;
	border-radius: 10px;
	padding: 2.5rem 4rem;
	margin-top: 2rem;
}

.c-voice .task {
	background: #efefef;
	border-radius: 10px;
	padding: 2.5rem 4rem;
	margin-top: 4rem;
}

.c-voice .sub-c .ttl01 {
	margin: 0;
	padding: 0 0 1.5rem 3rem;
	font-size: 2rem;
	color: #654d27;
	border-bottom: 2px solid #654d27;
	box-sizing: border-box;
	position: relative;
	font-weight: bold;
	line-height: 1.5;
}
.c-voice .sub-c .ttl01::before{
	content: "";
	position: absolute;
  background: url("img/icon02.png") 0 0 no-repeat;
	background-size: 100% auto;
	width: 20px;
	height: 30px;
	top: 0.1rem;
	left: 0;
}


.c-voice .sub-c ul {
	margin-top: 1.5rem!important;
	margin-bottom: 0!important;
}
.c-voice .sub-c li {
	margin-bottom: 0.5rem!important;
}

.c-voice .sub-c .txt {
	margin-top: 1rem!important;
	margin-bottom: 0!important;
}

.c-voice .task li:before {
	content: "";
	position: absolute;
  background: url("img/icon05.png") 0 0 no-repeat!important;
	background-size: 100% auto!important;
	width: 15px!important;
	height: 15px!important;
	top: 0.7rem!important;
	left: 0;
	display: inline-block;
}

.c-voice .result li:before {
	content: "";
	position: absolute;
  background: url("img/icon03.png") 0 0 no-repeat!important;
	background-size: 100% auto!important;
	width: 15px!important;
	height: 15px!important;
	top: 0.7rem!important;
	left: 0;
	display: inline-block;
}

.c-voice .arrow {
	width: 70px;;
	margin: auto;
	margin-top: 2rem;
}

.com-parts03 .accordion_wrap01 {
	margin-top: -2rem!important;
}

.com-parts03 .table-area table {
	margin-top: 0!important;
	margin-bottom: 3rem!important;
}
.com-parts03 .table-area th {
	width: 20%;
	font-weight: bold;
	background: #f2e8d7;
	padding: 0 3rem;
}
.com-parts03 .table-area td {
	background: #ffffff;
	text-align: left;
}

@media screen and (max-width: 768px) {
  .com-parts03 {
		width: calc(100% + 2rem);
    margin: 2rem 0 0 -1rem;
    padding-bottom: 3rem;
		box-sizing: border-box;
  }

	.com-parts03 .ttl {
		max-width: 70%;
		top: 3rem;
	}
	.com-parts03 .ttl .ttl_inner {
		padding: 1.5rem 3rem;
		font-size: 1.8rem;
		border-top: 2px solid #c48f3a;
		border-bottom: 2px solid #c48f3a;
	}
	.com-parts03 .ttl .ttl_inner:before,
	.com-parts03 .ttl .ttl_inner:after{
		width: 20px;
		height: calc(100% + 0.4rem);
	}
	.com-parts03 .ttl .ttl_inner:before {
		left: -20px;
		background: url("img/ttl-bg01-01.png") left top no-repeat;
		background-size: 100% 100%;
	}
	.com-parts03 .ttl .ttl_inner:after {
		right: -20px;
		background: url("img/ttl-bg01-02.png") left top no-repeat;
		background-size: 100% 100%;
	}
	.com-parts03 .ttl .pr_txt {
		left: -0.5rem;
		padding: 0.3rem 0.5rem;
		font-size: 1.2rem;
	}

  .com-parts03 .inner {
    position: relative;
    background: #fff;
    border: solid 2px #654d27;
    box-sizing: border-box;
    padding: 5rem 1.5rem 2rem;
    box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.2);  
    border-radius: 10px;
  }
  .com-parts03 .inner::before {
    content: "";
    position: absolute;
    background: url("img/box-icon10.gif") 0 0 no-repeat;
    background-size: 100% auto;
    width: 20px;
    height: 20px;
    left: 4px;
    top: 4px;
    z-index: 2;
  }
  .com-parts03 .inner::after {
    content: "";
    position: absolute;
    background: url("img/box-icon11.gif") 0 0 no-repeat;
    background-size: 100% auto;
    width: 20px;
    height: 20px;
    left: 4px;
    bottom: 4px;
    z-index: 2;
  }

  .com-parts03 .box::before {
    content: "";
    position: absolute;
    background: url("img/box-icon12.gif") 0 0 no-repeat;
    background-size: 100% auto;
    width: 20px;
    height: 20px;
    right: 4px;
    top: 4px;
    z-index: 2;
  }
  .com-parts03 .box::after {
    content: "";
    position: absolute;
    background: url("img/box-icon13.gif") 0 0 no-repeat;
    background-size: 100% auto;
    width: 20px;
    height: 20px;
    right: 4px;
    bottom: 4px;
    z-index: 2;
  }
	
  .com-parts03 .flame {
    width: 80%;
    margin: auto;
  }

  .com-parts03 .caption {
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.4;
    margin: 0;
    margin-top: 0.5rem;
    margin-bottom: 3rem;
  }
	
  .com-parts03 .com-ttl {
    background: #654d27;
    position: relative;
    text-align: center;
    color: #fff;
    margin-bottom: 2rem;
  }
  .com-parts03 .com-ttl::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: #f2e8d7;
    top: 2px;
    display: block;
  }
  .com-parts03 .com-ttl::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: #f2e8d7;
    bottom: 2px;
    display: block;
  }

  .com-parts03 .c-ttl  {
    font-weight: bold;
    font-size: 1.8rem;
    padding: 1.5rem 1rem;
    line-height: 1.5;
  }

  .com-parts03 .ls-box {
    margin-bottom: 4rem;
  }
  .com-parts03 .ls-box .item {
    border-bottom: dotted 2px #654d27;
    padding-bottom: 2.5rem;
    margin-bottom: 2rem;
  }
  .com-parts03 .ls-box .item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .com-parts03 .ls-box .point{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; 
    margin-bottom: 1rem;
  }
  .com-parts03 .ls-box .p-icon {
    width: 20%;
    display: flex;
    align-items: center;	
  }
  .com-parts03 .ls-box .p-ttl {
    color: #0a274d;
    font-size: 1.8rem;
    font-weight: bold;
    width: 70%;
    line-height: 1.6;
  }
  .com-parts03 .ls-box p {
    margin: 0;
  }

  .com-parts03 .list ul {
    margin-top: -1rem!important;
    margin-bottom: 0!important;
  }
  .com-parts03 .list li {
    color: #0a274d;
    font-size: 1.7rem!important ;
    font-weight: bold;
    line-height: 1.5!important;
    margin-bottom: 1rem!important;
  }
  .com-parts03 .list .txt01 {
    margin: 0!important;
    margin-top: 1rem!important;
  }
  .com-parts03 .list {
    margin-bottom: 4rem;
  }
  .com-parts03 .list .btn-web {
    margin-bottom: 6rem;
  }

  .com-parts03 .human-box {
    display: block;
    justify-content: space-between;
    flex-wrap: wrap; 	
  }
  .com-parts03 .human-box .image-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; 	
    margin-bottom: 2rem;
  }
	.com-parts03 .human-box .image-box .image {
		width: 35%;
	}
  .com-parts03 .human-box .image-box .name {
    font-weight: bold;
    margin: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;	
    width: 62%;
  }
  .com-parts03 .human-box .text-box {
    width: 100%;
  }
  .com-parts03 .human-box .text-box .tx-bg {
    float: none;
    background: #375172;
    display: inline-block;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    width: 100%;
    padding: 1rem 0;
    text-align: center;
    margin: 0;
  }
  .com-parts03 .human-box .text-box .txt {
    float: none;
    width: 100%;
    margin: 0;
    line-height: 1.7;
    margin-top: 1rem;
  }
  .com-parts03 .human-box .t-box {
    margin-bottom: 2rem;
  }

  .com-parts03 .comment03 {
    margin-top: -2rem;
    margin-bottom: 5rem;
  }
  .com-parts03 .comment03 .name {
    margin: 0;
    padding: 0;
    font-weight: normal;
    font-size: 1.6rem;
    background-color: rgba(38, 38, 38, 1);
    display: inline-block;
    border: solid 2px #fff;
    border-radius: 10px;
    padding: 0.3rem 2rem 0.4rem;
    margin-left: 2rem;
    color: #fff;
    box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.2); 
    position: relative;
    z-index: 1;
    top: 2rem;
  }
  .com-parts03 .comment03 .txt {
    margin: 0;
    padding: 0;
    width: 100%;
    border-radius: 10px;
    background-color: rgba(38, 38, 38, 1);
    padding: 3rem 2rem 2rem;
    box-sizing: border-box;
    color: #fff;
    border: solid 2px #fff;	
    margin-top: -2px;
    box-sizing: border-box;
    box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.2);  
  }


  .v-box {
    margin-bottom: 5rem;
  }

  .c-voice {
    border-bottom: dotted 2px #654d27;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
  }

  .c-voice:last-child {
    border-bottom:none;
    padding-bottom: 0;
  }

  .com-parts03 .f-box-l .flame {
    float: none;
    width: 100%;
    margin-top: 3rem;
  }
  .com-parts03 .f-box-l .text-box {
    float: none;
    width: 100%;
  }

  .com-parts03 .f-box-r .flame {
    float: none;
    width: 100%;
    margin-top: 3rem;
  }
  .com-parts03 .f-box-r .text-box {
    float: none;
    width: 100%;
  }

  .com-parts03 .f-box .c-name {
    position: relative;
    color: #375172;
    font-size: 2rem;
    text-align: center;
    font-weight: bold;
    line-height: 1.5;
  }
  .com-parts03 .f-box .c-name:after{
    content: "";
    position: absolute;
    background: url("img/t-bg01.png") 0 0 no-repeat;
    background-size: 100% auto;
    width: 100%;
    height: 15px;
    right: 0;
    margin: auto;
    left: 0;
    bottom: -20px;
  }
  .com-parts03 .f-box .s-txt {
    text-align: center;
    font-weight: bold;
    margin-top: 1.5rem;
    line-height: 1.6;
    font-size: 1.6rem;
  }
  .com-parts03 .f-box .txt {
    margin: 0;
    margin-top: 0.5rem;
  }


  .c-voice .result {
    background: #f2e8d7;
    border-radius: 10px;
    padding: 2rem 2rem;
    margin-top: 2rem;
  }
	
  .c-voice .task {
    background: #efefef;
    border-radius: 10px;
    padding: 2rem 2rem;
    margin-top: 2rem;
  }

  .c-voice .sub-c .ttl01 {
    margin: 0;
    padding: 0 0 1rem 2.2rem;
    font-size: 1.7rem;
    color: #654d27;
    border-bottom: 2px solid #654d27;
    box-sizing: border-box;
    position: relative;
    font-weight: bold;
    line-height: 1.5;
  }
  .c-voice .sub-c .ttl01::before{
    content: "";
    position: absolute;
    background: url("img/icon02.png") 0 0 no-repeat;
    background-size: 100% auto;
    width: 15px;
    height: 25px;
    top: 0.2rem;
    left: 0;
  }

  .c-voice .sub-c ul {
    margin-top: 1.5rem!important;
    margin-bottom: 0!important;
  }
  .c-voice .sub-c li {
    margin-bottom: 0.5rem!important;
  }
  .c-voice .sub-c .txt {
    margin-top: 1rem!important;
    margin-bottom: 0!important;
  }

  .c-voice .task li:before {
    content: "";
    position: absolute;
    background: url("img/icon05.png") 0 0 no-repeat!important;
    background-size: 100% auto!important;
    width: 13px!important;
    height: 13px!important;
    top: 0.8rem!important;
    left: 0;
    display: inline-block;
  }

  .c-voice .result li:before {
    content: "";
    position: absolute;
    background: url("img/icon03.png") 0 0 no-repeat!important;
    background-size: 100% auto!important;
    width: 13px!important;
    height: 13px!important;
    top: 0.8rem!important;
    left: 0;
    display: inline-block;
  }

  .c-voice .arrow {
    width: 70px;;
    margin: auto;
    margin-top: 2rem;
  }

  .com-parts03 .accordion_wrap01 {
    margin-top: 2rem!important;
  }

  .com-parts03 .table-area table {
    margin-top: 0!important;
    margin-bottom: 3rem!important;
  }
  .com-parts03 .table-area th {
		width: 30%;
    font-weight: bold;
    background: #f2e8d7;
    padding: 1rem 1rem;
  }
  .com-parts03 .table-area td {
    background: #ffffff;
    text-align: left;
  }
}





/*--------------------------------------
　com-parts04
---------------------------------------*/
.com-parts04 {
	margin-top: 6rem;
}

.com-parts04 .t-icon {
	width: 230px;
	margin: auto;
}

.com-parts04 .c-inner {
	background: rgba(38,38,38,0.9);  
  border: solid 4px #fff;
	box-sizing: border-box;
}

.com-parts04 .box {
	width: 698px;
	border: solid 2px #fff;
	margin: auto;
	margin-bottom: 5px;
	margin-top: 5px;
	padding: 3rem 4rem 4rem;
}

.com-parts04 .ttl {
	color: #fff;
	font-weight: bold;
	text-align: center;
	font-size: 28px;
	padding-top: 2rem;
	line-height: 1.6;
	position: relative;
}
.com-parts04 .ttl:after{
	content: "";
	position: absolute;
  background: url("img/t-bg02.png") 0 0 no-repeat;
	background-size: 100% auto;
	width: 100%;
	height: 15px;
	right: 0;
	margin: auto;
	left: 0;
	bottom: -25px;
}

.com-parts04 .comment02 {
	margin-top: 5rem;
	margin-right: 6rem;
	margin-bottom: 0;
}

.com-parts04 .link-box {
	display: flex;
  justify-content: space-between;
  flex-wrap: wrap; 
	margin-top: 3rem;
}

.com-parts04 .link-item {
	width: 32%;
	margin-bottom: 2.5%;
}
.com-parts04 .link-item .btn-internal {
	margin-bottom: 0!important;
}
.com-parts04 .link-item p{
	margin: 0!important;
}
.com-parts04 .link-item .btn-internal a {
	display: block;
	max-width: 100%;
	margin: 0!important;
	padding: 2rem 0;
	color: #fff;
	text-shadow:0 0 10px #000;
	font-size: 1.5rem;
	text-align: left;
	line-height: 1.5;
	border-radius: 10px;
	text-decoration: none!important;
	position: relative;
	box-shadow:0px 0px 0px 3px rgba(0, 0, 0, 1);
	box-sizing: border-box;
	z-index:1;
	background:linear-gradient(to right, #b59229, #fbfccf, #b59229);
}
.com-parts04 .link-item .btn-internal a:after {
	content: "";
	position: absolute;
	top: 50%;
	margin-top: -1rem;
	right: 0.8rem;
  background: url("img/arrow01.png") 0 0 no-repeat;
	background-size: 100% auto;
	width: 18px;
	height: 23px;
}
.com-parts04 .link-item .btn-internal a span {
	position: relative;
	font-weight: bold;
	padding-left: 4.3rem;
}
.com-parts04 .link-item .btn-internal a span::before {
	content: "";
	position: absolute;
	top: 0;
	margin-top: -1rem;
	left: 0.2rem;
  background: url("img/icon01.png") 0 0 no-repeat;
	background-size: 100% auto;
	width: 42px;
	height: 42px;
}

@media screen and (max-width: 768px) {
	.com-parts04 {
		margin-top: 4rem;
	}

	.com-parts04 .t-icon {
		width: 150px;
		margin: auto;
	}

	.com-parts04 .c-inner {
		background: rgba(38,38,38,0.9);  
		border: solid 3px #fff;
		box-sizing: border-box;
	}

	.com-parts04 .box {
		width: 96%;
		border: solid 1px #fff;
		margin: auto;
		margin-bottom: 5px;
		margin-top: 5px;
		padding: 1rem 0 2rem;
	}

	.com-parts04 .ttl {
		color: #fff;
		font-weight: bold;
		text-align: center;
		font-size: 2.2rem;
		padding-top: 1rem;
		width: 90%;
		margin: auto;
		line-height: 1.6;
		position: relative;
	}
	.com-parts04 .ttl:after{
		content: "";
		position: absolute;
		background: url("img/t-bg02.png") 0 0 no-repeat;
		background-size: 100% auto;
		width: 100%;
		height: 15px;
		right: 0;
		margin: auto;
		left: 0;
		bottom: -25px;
	}

	.com-parts04 .comment02 {
		margin-right: 0;
		margin-bottom: 0;
		width: 90%;
		margin: auto;
		margin-top: 7rem;
	}

	.com-parts04 .link-box {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap; 
		width: 90%;
		margin: auto;
		margin-top: 2rem;
	}

	.com-parts04 .link-item {
		width: 49%;
		margin-bottom: 2.5%;
	}

	.com-parts04 .link-item .btn-internal {
		margin-bottom: 0!important;
	}

	.com-parts04 .link-item p{
		margin: 0!important;
	}

	.com-parts04 .link-item .btn-internal a {
		max-width: 100%;
		margin: 0!important;
		padding: 2rem 0;
		color: #fff;
		text-shadow:0 0 10px #000;
		font-size: 1.3rem;
		text-align: left;
		line-height: 1.5;
		border-radius: 10px;
		display: flex;
		align-items: center;
		text-decoration: none!important;
		position: relative;
		box-shadow:0px 0px 0px 3px rgba(0, 0, 0, 1);
		box-sizing: border-box;
		z-index:1;
		background:linear-gradient(to right, #b59229, #fbfccf, #b59229);
	}
	.com-parts04 .link-item .btn-internal a:after {
		content: "";
		position: absolute;
		top: 50%;
		margin-top: -1rem;
		right: 0.8rem;
		background: url("img/arrow01.png") 0 0 no-repeat;
		background-size: 100% auto;
		width: 18px;
		height: 23px;
	}
	.com-parts04 .link-item .btn-internal a span {
		position: relative;
		font-weight: bold;
		padding-left: 0;
		margin-left: 3rem;
		display: inline-block;
	}
	.com-parts04 .link-item .btn-internal a span::before {
		content: "";
		position: absolute;
		top: 0;
		margin-top: -0.6rem;
		display: inline-block;
		left: -3rem;
		background: url("img/icon01.png") 0 0 no-repeat;
		background-size: 100% auto;
		width: 32px;
		height: 32px;
	}	
}





@media screen and (max-width: 768px) {
/*--------------------------------------
 com-parts05
---------------------------------------*/
	.com-parts05 {
		margin-top: 6rem;
	}

	.com-parts05 .sideBox03 {
		background-color: rgba(38, 38, 38, 0.9);
		margin: 4rem 0 0;
		padding: 2rem 2rem 2rem;
		box-sizing: border-box;
		border-radius: 10px;
		border: solid 2px #fff;
	}

	.com-parts05 .f-box {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap; 
	}

	.com-parts05 .sideBox03 .c-image.fl {
		width: 30%;
		margin: 0 1rem 0 0;
	}
	.com-parts05 .sideBox03 .c-image.fr {
		width: 30%;
		margin: 0 0 0 1rem;
	}

	.com-parts05 .sideBox03 .s-neme {
		color: #fff;
		font-weight: bold;
		width: 100%;
		line-height: 1.5;
		font-size: 1.7rem;
	}

	.com-parts05 .sideBox03 .txt {
		color: #fff;
		line-height: 1.5;
		margin: 1.5rem 0 0;
	}
}






/*--------------------------------------
　アコーディオン
---------------------------------------*/
.accordion_box {
  display: none;
}

.acc_all01,
.acc_all02,
.acc_all03,
.acc_all04,
.acc_all05,
.acc_all06,
.acc_all07 {
	max-width: 264px;
	margin: 3rem auto 0;
	padding: 1.5rem 5rem;
	box-sizing: border-box;
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.5;
	background: #262626;
	border-radius: 100px;
	position: relative;
	cursor: pointer;
	color: #fff;
	transition: all 0.3s ease;
}

.acc_all04 {
	max-width: 224px;
	margin: 0 auto 0;
	padding: 1.5rem 5rem;
	box-sizing: border-box;
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.5;
	background: #262626;
	border: solid 2px #fff;
	border-radius: 100px;
	position: relative;
	cursor: pointer;
	color: #fff;
	transition: all 0.3s ease;
	margin-top: -3rem;
}

.acc_all05 {
	border: solid 2px #fff;
}

.acc_all01:before,
.acc_all01:after,
.acc_all02:before,
.acc_all02:after,
.acc_all03:before,
.acc_all03:after,
.acc_all04:before,
.acc_all04:after,
.acc_all05:before,
.acc_all05:after,
.acc_all06:before,
.acc_all06:after,
.acc_all07:before,
.acc_all07:after{
	content: "";
	position: absolute;
	top: 50%;
	right: 2rem;
	width: 18px;
	height: 2px;
	margin-top: -0.5px;
	background: #fff;
	transition: all 0.4s;
}
.acc_all01:after , .acc_all02:after , .acc_all03:after , .acc_all04:after , .acc_all05:after , .acc_all06:after, .acc_all07:after {
	transform: rotate(90deg);
}
.acc_all01.is-open:before , .acc_all02.is-open:before , .acc_all03.is-open:before , .acc_all04.is-open:before , .acc_all05.is-open:before , .acc_all06.is-open:before , .acc_all07.is-open:before {
  display: none;
}
.acc_all01.is-open::after , .acc_all02.is-open::after , .acc_all03.is-open::after , .acc_all04.is-open::after , .acc_all05.is-open::after , .acc_all06.is-open::after , .acc_all07.is-open::after{
  transform: rotate(180deg);
}

.acc_all01:hover , .acc_all02:hover , .acc_all03:hover , .acc_all04:hover , .acc_all05:hover , .acc_all06:hover , .acc_all07:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha(opacity=60)";
}

@media screen and (max-width: 768px){
	.acc_all01,
	.acc_all02,
	.acc_all03,
	.acc_all04,
	.acc_all05,
	.acc_all06,
	.acc_all07 {
		max-width: 70%;
		margin: 2rem auto 0;
		padding: 1.2rem 3rem;
		box-sizing: border-box;
		font-size: 1.5rem;
		font-weight: 700;
		text-align: center;
		line-height: 1.5;
		background: #262626;
		border-radius: 100px;
		position: relative;
		cursor: pointer;
		color: #fff;
		transition: all 0.3s ease;
	}
	
	.acc_all01 {
		max-width: 80%;
		margin: 2rem auto 0;
		padding: 1.2rem 3rem;
		box-sizing: border-box;
		font-size: 1.5rem;
		font-weight: 700;
		text-align: center;
		line-height: 1.5;
		background: #262626;
		border-radius: 100px;
		position: relative;
		cursor: pointer;
		color: #fff;
		transition: all 0.3s ease;
	}	

	.acc_all04 {
		max-width: 60%;
		margin: 0 auto 0;
		padding: 1.2rem 3rem;
		box-sizing: border-box;
		font-size: 1.5rem;
		font-weight: 700;
		text-align: center;
		line-height: 1.5;
		background: #262626;
		border: solid 2px #fff;
		border-radius: 100px;
		position: relative;
		cursor: pointer;
		color: #fff;
		transition: all 0.3s ease;
		margin-top: -3rem;
	}	

	.acc_all01:before,
	.acc_all01:after,
	.acc_all02:before,
	.acc_all02:after,
	.acc_all03:before,
	.acc_all03:after,
	.acc_all04:before,
	.acc_all04:after,
	.acc_all05:before,
	.acc_all05:after,
	.acc_all06:before,
	.acc_all06:after,
	.acc_all07:before,
	.acc_all07:after{
		content: "";
		position: absolute;
		top: 50%;
		right: 1.2rem;
		width: 16px;
		height: 1px;
		margin-top: -0.3px;
		background: #fff;
		transition: all 0.4s;
	}	
}



















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


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


.l-footer-logo {
	max-width: 350px;
	margin: auto;
}
.l-footer-logo a {
	display: block;
}


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

.l-footer-menu__title__link {
	display: inline-block;
	padding: 0 3rem 0 0;
	color: #000;
  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 #000;
	border-right: 2px solid #000;
	-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: #000;
	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 #000;
	border-right: 2px solid #000;
  -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: #000;
	font-size: 1.4rem;
	line-height: 1.6;
	position: relative;
}
.l-footer-submenu__list__link:before {
	content: "";
 	position: absolute;
	top: 11px;
	left: 0;
	background: #000;
	width: 6px;
	height: 1px;
}


.l-footer-area .menseki {
	background: #ebe6df;
	max-width: 100%;
  margin: 5rem auto 0;
  padding: 2rem 3rem;
  box-sizing: border-box;
	color: #000;
	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: #000;
  font-size: 1rem;
  text-align: center;
	line-height: 1.8;
}


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

.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;
	font-size: 1.3rem;
	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;
}
.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: 70%;
	}


	.l-footer-menu-wrapper {
		margin: 0 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 #000;
		border-right: solid 1px #000;
		-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(0,0,0,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 #000;
		border-right: 1px solid #000;
		-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(0,0,0,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: #000;
		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: 1rem 1rem;
		font-size: 1.2rem;
		text-align: center;
	}

	
	.sitemap {
		margin: 2rem 0 0 0;
		text-align: center;
	}
	.sitemap a {
		padding: 0 1rem 0 0;
		font-size: 1.4rem;
		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 #000;
		border-right: 1px solid #000;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
}





/*--------------------------------------
　PageTop
---------------------------------------*/
.l-pagetop {
  position: fixed;
  bottom: 50px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 0;
	transition: all 0.3s ease;
}
.l-pagetop.hide {
	opacity: 0;
	pointer-events: none;
}

.l-pagetop__link {
	background: #282524;
  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 #fff;
	border-left: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.l-pagetop span {
	display: none;
}

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



/*--------------------------------------
#side .sideBox04
---------------------------------------*/
#side .sideBox04 {
}
#side .sideBox04 .bg-ttl01 {
	text-align: center;
	margin: auto;
	background: url("img/ttl-bg02.png") 0 0 no-repeat;
	background-size: 100% auto;
	height: 71px;
	position: relative;
	z-index: 1;
	top: 4.5rem;
}

#side .sideBox04 .bg-ttl01 span {
	font-weight: bold;
	color: #fff;
	font-size: 1.6rem;
	display: inline-block;
	padding-top: 2.2rem;
}
#side .sideBox04 .inner {
	background: #fff;
	border: solid 4px #375172;
	box-sizing: border-box;
	border-radius: 10px;
	box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.5);  
}

#side .sideBox04 .inner .box {
	padding: 0 2rem;
}

#side .sideBox04 .inner .box .txt01 {line-height: 1.6;}
#side .sideBox04 .inner .box .image {
	float: right;
	width: 225px;
	margin-left: 3rem;
	margin-top: 3rem;
}

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

  .com-parts05 .sideBox04 {
    min-width: 100%;
    margin: auto;
    margin-top: 0;	
  }

  .com-parts05 .sideBox04 .bg-ttl01 {
    text-align: center;
    margin: auto;
    background: url("img/ttl-bg02.png") 0 0 no-repeat;	
    background-size: 100% auto;
    width: 300px;
    height: 71px;
    position: relative;
    z-index: 1;
    top: 3.5rem;
  }

  .com-parts05 .sideBox04 .bg-ttl01 span {
    font-weight: bold;
    color: #fff;
    font-size: 1.8rem;
    display: inline-block;
    padding-top: 2.2rem;
  }
  .com-parts05 .sideBox04 .inner {
    background: #fff;
    border: solid 3px #375172;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.5);
  }

  .com-parts05 .sideBox04 .inner .box {
    padding: 1.5rem 2rem;
  }

  .com-parts05 .sideBox04 .inner .box .txt01 {
    font-size: 1.5rem;
  }
  .com-parts05 .sideBox04 .inner .box .image {
    float: none;
    width: 50%;
    margin-left: 0;
    margin-top: 0;
    margin: auto;
  }	
}