@charset "utf-8";

/* GoogleFonts読み込み 下記のライセンス記述は削除禁止 */
/*
* "Zen Maru Gothic" licensed under the SIL Open Font License 1.1
* by https://fonts.google.com/specimen/Zen+Maru+Gothic
*/

@font-face {
  font-family: "Zen Maru Gothic";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/ZMG-400.woff2") format("woff2"), url("fonts/ZMG-400.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Zen Maru Gothic";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/ZMG-700.woff2") format("woff2"), url("fonts/ZMG-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;
  box-sizing: border-box;
}
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: #000;
  font-size: 1.6rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
	-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;
}

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;
}

.fb {
  font-weight: bold;
}
.fb span {
  font-weight: bold;
}

@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;
	}
}



/*--------------------------------------
　color
---------------------------------------*/
.cl-wh {
  color: #fff;
}
.cl-br {
  color: #884d00;
}
.cl-bl {
  color: #1e939b;
}



/*--------------------------------------
　Header
---------------------------------------*/
header {
	width: 100%;
  height: 185px;
	min-width: 1100px;
  padding: 1rem 2rem;
  z-index: 1;
}

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

header .logo_wrap {
  display: inline-block;
}
header .logo_wrap a {
  display: block;
}
header .logo_inner {
  display: flex;
  align-items: center;
}
header .logo_wrap .logo {
  width: 60px;
}
header .sitename {
  margin: 0 0 0 5px;
  font-size: 11px;
  font-weight: bold;
}
header .sitename .large {
  display: block;
  margin: 5px 0 0 0;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
}
header .sponsored {
  margin: 3px 0 0;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

header .boxRight {
  position: fixed;
  top: 10px;
  right: 100px;
  z-index: 1;
}

header .btn-web a {
	display: block;
	max-width: 240px;
	margin: 0 auto 0;
	padding: 1.5rem 4rem 1.5rem 2rem;
	font-size: 1.4rem;
	border: 2px solid #000;
	box-shadow: 5px 5px 0px 0px rgba(0,0,0,0.16);
}
header .btn-web a::after {
	right: 15px;
	width: 16px;
	height: 16px;
	margin-top: -8px;
}


.header_lower {
  background-color: #f7f2e9;
  background-image: 
    url("img/header_lower_bg01.png"),
    url("img/header_lower_bg02.png");
  background-position: left top, right bottom;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, contain;
  position: relative;
}
.header_lower::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%,0);
  background: url("img/header_lower_illust.png") left top no-repeat;
  background-size: contain;
  width: 430px;
  height: 158px;
  margin: auto;
}

@media screen and (max-width: 768px) {
  header {
    width: 100%;
    height: 170px;
    min-width: 100%;
    padding: 1rem 1rem;
  }

  header .boxInner {
    display: block;
  }

  header .logo_wrap .logo {
    width: 22%;
  }
  header .sitename {
    margin: 0 0 0 3px;
    font-size: 11px;
  }
  header .sitename .large {
    margin: 3px 0 0 0;
    font-size: 2.2rem;
  }
  header .sponsored {
    font-size: 11px;
  }

  header .boxRight {
    top: inherit;
    bottom: 0;
    right: 0;
    width: 100%;
  }
  
  header .btn_wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
    transition: all 0.3s ease;
  }
  header .btn_wrap.stop {
    opacity: 0;
  }
  header .btn_wrap.stop a {
    pointer-events: none;
  }

  header .btn-web {
    width: 50%;
  }
  header .btn-web a {
    display: flex;
    align-items: center;
    max-width: 100%;
    margin: 0 auto 0;
    padding: 1rem 3rem 1rem 1.5rem;
    font-size: 3.1vw;
    text-align: left;
    border: 2px solid #000;
    border-radius: 24px 0 0 0;
    box-shadow: 5px 5px 0px 0px rgba(0,0,0,0.16);
  }
  header .btn-web a::after {
    right: 10px;
    width: 14px;
    height: 14px;
    margin-top: -7px;
  } 

  header .btn-tel {
    width: 50%;
  }
  header .btn-tel a {
    display: flex;
    align-items: center;
    max-width: 100%;
    margin: 0 auto 0;
    padding: 1rem 3rem 1rem 1.5rem;
    font-size: 3.1vw;
    text-align: left;
    border: 2px solid #000;
    border-left: none;
    border-radius: 0 24px 0 0;
  }
  header .btn-tel a::before {
    right: 10px;
    width: 18px;
    height: 18px;
    margin-top: -9px;
  }
  

  .header_lower {
    background-image: 
      url("img/header_lower_bg01.png"),
      url("img/header_lower_bg02.png");
    background-position: left top, right bottom;
    background-repeat: no-repeat, no-repeat;
    background-size: 60% auto, 60% auto;
  }
  .header_lower::after {
    width: 55%;
    height: 0;
    padding-top: calc(55%*158/430);
  }  
}


/*--------------------------------------
　#hb-menu
---------------------------------------*/
/*----- hb-menu -----*/
#hb-menu {
	display: table;
	position: fixed;
	top: 15px;
	right: 20px;
	width: 60px;
	height: 60px;
	background: #fff;
	box-sizing: border-box;
  border: 2px solid #000;
  border-radius: 50%;
	cursor: pointer;
	z-index: 10000;
}
#hb-menu .hb-inner {
	display: table-cell;
	vertical-align: middle;
}
#hb-menu span {
	display: block;
	background: #000;
	width: 18px;
	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 #hb-menu span:nth-of-type(1) {
	-webkit-transform: translateY(8px) translateX(0) rotate(45deg);
	-ms-transform: translateY(8px) translateX(0) rotate(45deg);
	transform: translateY(8px) translateX(0) rotate(45deg);
}
.hb-open #hb-menu span:nth-of-type(2) {
	margin-top: 5px;
	opacity: 0;
	-webkit-transform: translateY(10px);
	-ms-transform: translateY(10px);
	transform: translateY(10px);
}
.hb-open #hb-menu span:nth-of-type(3) {
	-webkit-transform: translateY(-8px) translateX(0) rotate(-45deg);
	-ms-transform: translateY(-8px) translateX(0) rotate(-45deg);
	transform: translateY(-8px) translateX(0) rotate(-45deg);
}

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

/*----- g-nav -----*/
.g-nav {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 9999;
}
.g-nav .g-nav-inner {
	position: fixed;
	top: 0;
	right: 0;
	background: #fff;
	width: 45%;
	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: 9999;
}
.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);
}
.g-nav .g-nav-inner::-webkit-scrollbar {
  display: none;
}


.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 0;
	border-bottom: 1px solid #000;
  position: relative;
}

.hb_menu_title_link {
	display: block;
	padding: 0 3rem 0 0;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.6;
	position: relative;
}
.hb_menu_title_link::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 5px;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	-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;
	font-size: 1.4rem;
	line-height: 1.6;
	position: relative;
	font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "Helvetica Neue", Arial, sans-serif;
}
.hb_menu_list_link::before {
	content: "";
	position: absolute;
	top: 12px;
	left: 0;
	background: #000;
	width: 8px;
	height: 1px;
}


/*--------------------------------------
　SP #hb-menu
---------------------------------------*/
@media screen and (max-width: 768px) {
  /*----- hb-menu -----*/
  #hb-menu {
    top: 5px;
    right: 5px;
    width: 45px;
    height: 45px;
  }
  #hb-menu span {
    width: 15px;
    height: 2px;
  }
  #hb-menu span:nth-of-type(2),
  #hb-menu span:nth-of-type(3){
    margin-top: 5px;
  }

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

  /*----- g-nav -----*/
  .g-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
  }
  .g-nav .g-nav-inner {
    width: 100%;
    height: 100%;
    padding: 6rem 1.5rem;
  }


  .hb_menu_wrapper {
    max-width: 100%;
  }


  .hb_menu_title {
    padding: 1.5rem 0 1.5rem 0;
    border-bottom: 1px solid #000;
  }
	.hb_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);
	}
	.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 {
    padding: 0 2.5rem 0 0;
    font-size: 1.5rem;
    pointer-events: none;
  }
  .hb_menu_title_link::after {
    display: none;
  }
	.hb_menu_title.first .hb_menu_title_link {
		pointer-events: auto;
		position: relative;
	}
	.hb_menu_title.first .hb_menu_title_link::after {
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		right: 5px;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		background: none;
		border-top: solid 1px #000;
		border-right: solid 1px #000;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}


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

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

  .hb_menu_list_link {
    display: block;
    padding: 0 2.5rem 0 0;
  }
  .hb_menu_list_link::before {
    display: none;
  }
	.hb_menu_list_link::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 5px;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		border-top: 1px solid #000;
		border-right: 1px solid #000;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
}



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

@media screen and (max-width: 768px) {
	#pankuzu {
		width: 100%;
		margin: 3rem auto 0;
		padding: 0 1.5rem 0.5rem 1.5rem;
		box-sizing: border-box;
		font-size: 1.2rem;
		white-space: nowrap;
		overflow: auto;
	}
	#pankuzu::-webkit-scrollbar{
		height: 2px;
}
	#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;
	}
}



/*--------------------------------------
　Footer
---------------------------------------*/
.l-footer-area {
	background: #f7f2e9;
	width: 100%;
	min-width: 1100px;
  margin-top: -120px;
  border-radius: 120px 120px 0 0;
  position: relative;
}

.l-footer-area br {
  display: none;
}


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


.l-footer-logo {
  text-align: center;
}
.l-footer-logo .logo_wrap a {
  display: flex;
  justify-content: center;
}
.l-footer-logo .logo {
  width: 80px;
}
.l-footer-logo .sitename {
  margin: 0 0 0 5px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: left;
}
.l-footer-logo .sitename .large {
  display: block;
  margin: 5px 0 0 0;
  font-size: 3.8rem;
  font-weight: bold;
  line-height: 1;
}
.l-footer-logo .sitename br {
  display: block;
}
.l-footer-logo .sponsored {
  margin: 5px 0 0;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}


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


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


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

.l-footer-menu__title__link {
	display: inline-block;
	padding: 0 3rem 0 0;
  font-size: 1.7rem;
	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;
	font-size: 1.4rem;
  font-weight: bold;
	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;
	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: 8px;
	height: 1px;
}


.l-footer-area .menseki {
	background: #fff;
	max-width: 100%;
  margin: 5rem auto 0;
  padding: 2rem 3rem;
  box-sizing: border-box;
	font-size: 1.2rem;
	line-height: 2;
	font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "Helvetica Neue", Arial, sans-serif;
}
.l-footer-area .menseki span {
  display: inline-block;
}
.l-footer-area .menseki .operation {
  display: block;
}

.l-footer-area .ucp {
  margin: 1.5rem auto 0;
  font-size: 1rem;
  text-align: center;
  line-height: 1.8;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "Helvetica Neue", Arial, sans-serif;
}
.l-footer-copy-wrapper {
  background: #f7f2e9;
  border-top: 1px solid #000;
}

.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;
}
.l-footer-copy a {
	display: inline-block;
  text-decoration: underline;
}
.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 #333;
	border-right: 1px solid #333;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
  .l-footer-area {
    min-width: 100%;
    margin-top: -60px;
    border-radius: 60px 60px 0 0;
  }

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


  .l-footer-logo .logo {
    width: 18%;
  }
  .l-footer-logo .sitename {
    font-size: 1rem;
  }
  .l-footer-logo .sitename .large {
    font-size: 2.8rem;
  }
  .l-footer-logo .sponsored {
    margin: 3px 0 0;
    font-size: 1rem;
  }


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


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


.l-footer-menu__title {
	padding: 1.5rem 0 1.5rem 0;
	border-bottom: 1px solid #000;
}
	.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 2.5rem 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 #000;
  }
  .l-footer-menu__list__item:first-child {
    display: block;
  }

  .l-footer-menu__list__link {
    padding: 1.5rem 2.5rem 1.5rem 1.5rem;
    font-size: 1.4rem;
  }
  .l-footer-menu__list__link::after {
    right: 5px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
  }


  .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 #000;
  }

  .l-footer-submenu__list__link {
    padding: 1.5rem 0 1.5rem 3rem;
  }
  .l-footer-submenu__list__link::before {
    top: 26px;
    left: 15px;
    width: 6px;
  }


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


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


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

	.sitemap {
		margin: 2rem 0 0 0;
		text-align: center;
	}
	.sitemap a {
		padding: 0 1.5rem 0 1.5rem;
		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: 70px;
  height: 70px;
  z-index: 0;
}

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

.l-pagetop span {
	display: none;
}

@media screen and (max-width: 768px) {
	.l-pagetop {
		bottom: 70px;
		right: 5px;
		width: 45px;
		height: 45px;
	}
		
	.l-pagetop__link::after {
		width: 8px;
		height: 8px;
		margin-left: -4px;
	}
}



/*--------------------------------------
　Main Contents
---------------------------------------*/
.contents_wrap {
  width: 100%;
	min-width: 1000px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.contents {
  width: 1000px;
	min-width: 1000px;
  margin: auto;
  padding: 4rem 0 24rem;
  position: relative;
  z-index: 0;
}

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

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

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



/*--------------------------------------
　Title
---------------------------------------*/
h2,
h3,
h4,
h5,
h6,
.cc {
	font-weight: bold;
	line-height: 1.5;
}
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	display: block;
	font-weight: bold;
}
h2 span,
h3 span,
h4 span,
h5 span,
h6 span,
.cc span {
	font-weight: bold;
}
h2 br,
h3 br,
h4 br,
h5 br,
h6 br,
.cc br {
	line-height: 0;
}
*:not(br){
  line-height: 1.5;
}

.contents h1 {
	margin: 0 0 4rem;
	font-size: 3.6rem;
	font-weight: bold;
  text-align: center;
	line-height: 1.4;
}


.contents h2 {
	background: #f7f2e9;
	margin: 4rem 0 2rem;
	padding: 2rem 3rem 2rem 4rem;
	font-size: 3.2rem;
  border-radius: 12px;
	position: relative;
}

.contents h2 a {
	padding: 0 3rem 0 0;
	position: relative;
}
.contents h2 a::before {
	content: "";
	position: absolute;
	top: -20px;
	left: -40px;
	width: calc(100% + 7rem);
	height: calc(100% + 4rem);
}
.contents h2 a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  background: url("img/arrow-bl01.png") left top no-repeat;
  background-size: contain;
	width: 24px;
	height: 24px;
	margin-top: -12px;
  box-sizing: border-box;
}


.contents h3 {
	margin: 4rem 0 2rem;
	padding: 0 0 1.5rem 0;
	font-size: 2.8rem;
	border-bottom: 2px dashed #884d00;
	color:#884d00;
}

.contents h3 a {
	padding: 0 3rem 0 0;
	position: relative;
	color:#884d00;
}
.contents h3 a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100% + 1.5rem);
}
.contents h3 a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  background: url("img/arrow-bl01.png") left top no-repeat;
  background-size: contain;
	width: 24px;
	height: 24px;
	margin-top: -12px;
  box-sizing: border-box;
}


.contents h4 {
	color: #1e939b;
	margin: 4rem 0 2rem;
	font-size: 2.6rem;
}

.contents h4 a {
	display: inline-block;
	padding: 0 3rem 0 0;
	color: #1e939b;
	position: relative;
}
.contents h4 a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  background: url("img/arrow-bl01.png") left top no-repeat;
  background-size: contain;
	width: 24px;
	height: 24px;
	margin-top: -12px;
  box-sizing: border-box;
}


.contents h5 {
	margin: 4rem 0 2rem;
	font-size: 2.2rem;
}

.contents h5 a {
	display: inline-block;
	padding: 0 3rem 0 0;
	position: relative;
}
.contents h5 a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  background: url("img/arrow-bl01.png") left top no-repeat;
  background-size: contain;
	width: 24px;
	height: 24px;
	margin-top: -12px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .contents h1 {
    margin: 0 0 2rem;
    font-size: 2.6rem;
  }


  .contents h2 {
    margin: 3rem 0 2rem;
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    font-size: 2.2rem;
    border-radius: 6px;
  }

  .contents h2 a {
    padding: 0 2.5rem 0 0;
  }
  .contents h2 a::before {
    top: -15px;
    left: -15px;
    width: calc(100% + 3rem);
    height: calc(100% + 3rem);
  }
  .contents h2 a::after {
    width: 18px;
    height: 18px;
    margin-top: -9px;
  }


  .contents h3 {
    margin: 3rem 0 2rem;
    padding: 0 0 1rem 0;
    font-size: 2rem;
    border-bottom: 1px dashed #000;
  }

  .contents h3 a {
    padding: 0 2.5rem 0 0;
  }
  .contents h3 a::before {
    height: calc(100% + 1rem);
  }
  .contents h3 a::after {
    width: 18px;
    height: 18px;
    margin-top: -9px;
  }


  .contents h4 {
    margin: 3rem 0 2rem;
    font-size: 1.8rem;
  }

  .contents h4 a {
    padding: 0 2.5rem 0 0;
  }
  .contents h4 a::after {
    width: 18px;
    height: 18px;
    margin-top: -9px;
  }


  .contents h5 {
    margin: 3rem 0 2rem;
    font-size: 1.6rem;
  }

  .contents h5 a {
    padding: 0 2.5rem 0 0;
  }
  .contents h5 a::after {
    width: 18px;
    height: 18px;
    margin-top: -9px;
  }
}



/*--------------------------------------
　テキスト
---------------------------------------*/
.contents p {
	margin: 2rem 0 2rem;
	font-size: 1.6rem;
  font-family: "Noto Sans JP","Hiragino Sans","Hiragino Kaku Gothic ProN", Meiryo, "Helvetica Neue", Arial, sans-serif;
	line-height: 2;
	color:#222;
}

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

.txt_bold {
	color: #884d00;
	font-weight: bold;
}
.marker {
	background: linear-gradient(transparent 60%, #fdd6a3 0%);
	font-weight: bold;
}

p.operation {
  color: #888;
  font-size: 1.3rem;
  text-align: center;
}


.caption {
	margin: 1rem 0 0 0!important;
	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;
}
.caption::-webkit-scrollbar {
	height: 2px;
}
.caption::-webkit-scrollbar-track {
	background: #efefef;
	margin: 0 0;
	border: none;
	border-radius: 0;
	box-shadow: none;
}
.caption::-webkit-scrollbar-thumb {
	background: #cacaca;
	border-radius: 0;
	box-shadow: none;
}
.caption a {
	color: #888;
	text-decoration: underline;
}
@-moz-document url-prefix() {
  .caption {
    scrollbar-color: #cacaca #efefef;
  	scrollbar-width: thin;
  }
}

@media screen and (max-width: 768px) {
	.contents p {
		margin: 1.5rem 0 1.5rem;
    font-size: 1.6rem;
		line-height: 1.8;
	}
	
  p.operation {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  
	.caption {
		margin: 1rem 0 0 0!important;
    font-size: 1rem;
	}
}



/*--------------------------------------
　リスト
---------------------------------------*/
/*----- ulリスト -----*/
.contents ul {
	margin: 4rem 0 4rem;
}
.contents ul li {
  margin: 0 0 1.5rem 0;
  padding: 0 0 0 2rem;
  font-size: 1.6rem;
  line-height: 1.8;
  position: relative;
  font-weight:bold;
}
.contents ul li:last-child {
  margin: 0 0 0 0;
}
.contents ul li::before {
  content: "";
  display: block;
	position: absolute;
  top: 11px;
  left: 0;
	background: #f29f34;
  width: 10px;
  height: 10px;
	box-sizing: border-box;
  border-radius: 50%;
}
.contents ul li a {
	display: inline-block;
	text-decoration: underline;
}
.contents ul li a:hover {
	text-decoration: none;
}


/*----- olリスト -----*/
.contents ol {
	margin: 4rem 0 4rem;
	list-style-type: none;
	counter-reset: count;
}
.contents ol li {
  margin: 0 0 1rem 0;
	padding: 0 0 0 3.5rem;
	font-size: 1.6rem;
  line-height: 1.8;
	position: relative;
	counter-increment: count;
	font-weight:bold;
}
.contents ol li:last-child {
  margin: 0 0 0 0;
}
.contents ol li::before{
  content: counter(count,decimal-leading-zero);
	position: absolute;
	top: -4px;
	left: 0;
	color: #E5952E;
	font-size: 2rem;
  font-weight: bold;
}
.contents ol a {
	display: inline-block;
	text-decoration: underline;
}
.contents ol li a:hover {
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	/*----- ulリスト -----*/
	.contents ul {
		margin: 2rem 0 2rem;
	}
	.contents ul li {
		padding: 0 0 0 1.5rem;
		font-size: 1.4rem;
    line-height: 1.6;
	}
	.contents ul li::before {
		top: 10px;
		width: 8px;
		height: 8px;
	}
	
	
	/*----- olリスト -----*/
	.contents ol {
		margin: 2rem 0 2rem;
	}
	.contents ol li {
    padding: 0 0 0 3rem;
		font-size: 1.4rem;
    line-height: 1.6;
	}
	.contents ol li::before {
    top: -4px;
		font-size: 1.8rem;
	}
}



/*--------------------------------------
　リンク
---------------------------------------*/
.btn-web a,
.btn-internal a {
	display: block;
	max-width: 460px;
	margin: 4rem auto 4rem;
	padding: 2.5rem 6rem;
	box-sizing: border-box;
	color: #fff;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.4;
  border: 4px solid #000;
	border-radius: 100px;
	text-decoration: none!important;
	box-shadow: 8px 8px 0px 0px rgba(0,0,0,0.16);
	position: relative;
}


/*----- btn-web（外部リンク） -----*/
.btn-web a {
	background: #1e939b;
}
.btn-web a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 25px;
  background: url("img/icon-web.png") left top no-repeat;
  background-size: contain;
	width: 19px;
	height: 19px;
	margin-top: -9px;
}


/*----- btn-internal（内部リンク） -----*/
.btn-internal a {
	background: #e5952e;
}
.btn-internal a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 25px;
  background: url("img/arrow-wh01.png") left top no-repeat;
  background-size: contain;
	width: 24px;
	height: 24px;
	margin-top: -12px;
}

/*----- 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.4rem;
  font-weight: bold;
	line-height: 1.5;
	text-decoration: underline;
	position: relative;
}
.btn-link a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  background: url("img/arrow-bl01.png") left top no-repeat;
  background-size: contain;
	width: 18px;
	height: 18px;
	margin-top: -9px;
}
.btn-link a:hover {
	text-decoration: none;
}


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

@media screen and (max-width: 768px) {
  .btn-web a,
  .btn-internal a {
    max-width: 90%;
    margin: 3rem auto 3rem;
    padding: 1.8rem 4rem;
    font-size: 1.6rem;
    border: 3px solid #000;
    box-shadow: 5px 5px 0px 0px rgba(0,0,0,0.16);
  }


  /*----- btn-web（外部リンク） -----*/
  .btn-web a::after {
    right: 15px;
    width: 16px;
    height: 16px;
    margin-top: -8px;
  }


  /*----- btn-internal（内部リンク） -----*/
  .btn-internal a::after {
    right: 15px;
    width: 18px;
    height: 18px;
    margin-top: -9px;
  }

  /*----- btn-link（テキストリンク） -----*/
  .btn-link a {
    margin: 3rem 0 3rem;
    padding: 0 2.2rem 0 0;
  }
  .btn-link a::after {
    width: 16px;
    height: 16px;
    margin-top: -8px;
  }

	
	/*----- btn-tel（電話ボタン） -----*/
	.btn-tel a {
		display: block;
		background: #884d00;
		max-width: 90%;
		margin: 3rem auto 3rem;
		padding: 1.8rem 5rem;
		box-sizing: border-box;
		color: #fff;
		font-size: 1.6rem;
		font-weight: bold;
		text-align: center;
		line-height: 1.5;
    border: 3px solid #000;
		border-radius: 100px;
		text-decoration: none!important;
		box-shadow: 5px 5px 0px 0px rgba(0,0,0,0.16);
		position: relative;
	}
  .btn-tel a::before {
		content: "";
		position: absolute;
		top: 50%;
    right: 20px;
    background: url("img/icon-tel.png") left top no-repeat;
    background-size: contain;
		width: 24px;
		height: 24px;
		margin-top: -12px;
	}
}



/*--------------------------------------
　Table
---------------------------------------*/
table {
	background: #fff;
  width: 100%;
  margin: 8rem 0 8rem;
	box-sizing: border-box;
	border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #808080;
    font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "Helvetica Neue", Arial, sans-serif;
}

table th {
	background: #e9e9e9;
	padding: 1.5rem;
	box-sizing: border-box;
	text-align: center;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.4;
  word-break: break-all;
	border-left: 1px solid #808080;
	border-bottom: 1px solid #808080;
}
table th a {
	font-weight: bold;
	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.5rem;
	line-height: 1.4;
  word-break: break-all;
	border-left: 1px solid #808080;
	border-bottom: 1px solid #808080;
}
#category table td,
#page table td{
	text-align: left;
}
#category table th,
#page table th{
	min-width:250px;
}
table td a {
	text-decoration: underline;
}
table td a:hover {
	text-decoration: none;
}

@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 #808080;
	}

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



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

.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 {
	margin: 2rem 0 2rem 0;
  color: #884d00;
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.5;
	font-family: "Zen Maru Gothic", sans-serif;
}
.float-wrap.ct .catch {
  text-align: center;
}

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

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

	.float-wrap .catch {
		margin: 1.5rem 0 1.5rem;
		font-size: 1.8rem;
	}
	.float-wrap.ct .catch {
    text-align: left;
  }

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



/*--------------------------------------
　toc_parts
---------------------------------------*/
.toc_parts {
  background: #fff;
  max-width: 700px;
	margin: 5rem auto 5rem;
  border: 4px solid #000;
  border-radius: 48px;
  position: relative;
}

.toc_parts .ttl_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 8rem 2.5rem 4rem;
  position: relative;
  cursor: pointer;
}
.toc_parts .ttl_wrap::before,
.toc_parts .ttl_wrap::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 40px;
	background: #000;
	width: 20px;
	height: 3px;
	margin-top: -2px;
	transition: all 0.4s;
}
.toc_parts .ttl_wrap::after {
	transform: rotate(90deg);
}
.toc_parts .ttl_wrap.open::before {
  display: none;
}
.toc_parts .ttl_wrap.open::after {
  transform: rotate(180deg);
}
.toc_parts .ttl {
	font-size: 2.4rem;
	font-weight: bold;
}
.toc_parts .eng {
  color: #e8d9bd;
	font-size: 2.7rem;
	font-weight: bold;
  letter-spacing: 0.05em;
}

.toc_block {
  display: none;
  width: calc(100% - 8rem);
	margin: 0 auto;
  padding: 3rem 0 3rem;
  border-top: 2px dashed #000;
}

.toc_block ul.chapter {
	margin: 0 0 0;
}
.toc_block ul.chapter li {
  margin: 0 0 2rem 0;
	padding: 0 0 0 3.5rem;
  font-size: 1.8rem;
  overflow-wrap: break-word;
	position: relative;
	counter-increment: toccount;
}
.toc_block ul.chapter li:last-child {
	margin: 0 0 0 0;
}
.toc_block ul.chapter li::before {
	content: counter(toccount,decimal-leading-zero);
	position: absolute;
  top: -8px;
  left: 0;
	background: none;
  width: inherit;
  height: inherit;
  border-radius: 0;
	color: #f29f34;
	font-size: 2.2rem;
  font-weight: bold;
}
.toc_block ul.chapter li a {
	display: block;
  font-weight: bold;
	text-decoration: none;
}
.toc_block .chapter .chapter {
  margin: 0 0 2rem 5rem;
}
.toc_block .chapter .chapter li {
	margin: 0 0 1rem 0;
	padding: 0 0 0 0;
  font-size: 1.8rem;
	position: relative;
	counter-increment: none;
}
.toc_block .chapter .chapter li::before {
  display: none;
}

.toc_block ul.chapter li br {
	display: none;
}

@media screen and (max-width: 768px) {
  .toc_parts {
    max-width: 100%;
    margin: 3rem auto 3rem;
    border: 2px solid #000;
    border-radius: 24px;
  }

  .toc_parts .ttl_wrap {
    padding: 1.5rem 4.5rem 1.5rem 2rem;
  }
  .toc_parts .ttl_wrap::before,
  .toc_parts .ttl_wrap::after {
    right: 20px;
    width: 16px;
    height: 2px;
    margin-top: -1px;
  }
  .toc_parts .ttl {
    font-size: 1.5rem;
  }
  .toc_parts .eng {
    font-size: 1.8rem;
  }

  .toc_block {
    width: calc(100% - 4rem);
    margin: 0 auto;
    padding: 2rem 0 2rem;
    border-top: 2px dashed #000;
  }

  .toc_block ul.chapter li {
    margin: 0 0 1.5rem 0;
    padding: 0 0 0 2.5rem;
    font-size: 1.5rem;
  }
  .toc_block ul.chapter li::before {
    top: -5px;
    font-size: 1.8rem;
  }
  .toc_block .chapter .chapter {
    margin: 0 0 1.5rem 3.5rem;
  }
  .toc_block .chapter .chapter li {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
  }
}


/*--------------------------------------
　related-article01-frame
---------------------------------------*/
.related-article01-frame {
  background: #f7f2e9;
  max-width: 780px;
  margin: 10rem auto 10rem;
  padding: 7rem 5rem 7rem;
  border-radius: 24px;
  position: relative;
}

.related-article01-title {
  position: absolute;
  top: -25px;
  left: -20px;
  display: inline-block;
  background: #e5952e;
  padding: 1.2rem 3rem;
  color: #fff;
	font-size: 2rem;
	font-weight: bold;
  border-radius: 8px 8px 8px 0;
}
.related-article01-title:after {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 20px 15px 0;
	border-color: transparent #bf6c1b transparent transparent;
}
.related-article01-title span {
	font-weight: bold;
}

.related-article01-frame p.catch-01 {
  margin: 0 0 0;
  font-weight: bold;
}

ul.related-article01-list {
	margin: 0 0 0;
}
ul.related-article01-list li {
  margin: 0 0 0 0;
	padding: 1rem 0 1rem 0;
  font-size: 1.8rem;
  border-bottom: 1px dashed #8e8e8e;
	position: relative;
}
ul.related-article01-list li:first-child {
	padding: 0 0 1rem 0;
}
ul.related-article01-list li:last-child {
	padding: 1rem 0 0 0;
  border-bottom: none;
}
ul.related-article01-list li::before {
  display: none;
}
ul.related-article01-list li a {
  padding: 0 0 0 4rem;
  font-weight: bold;
	text-decoration: none;
  position: relative;
}
ul.related-article01-list li a::after {
	content: "";
	position: absolute;
	top: 50%;
  left: 0;
  background: url("img/arrow-bl01.png") left top no-repeat;
  background-size: contain;
	width: 20px;
	height: 20px;
	margin-top: -10px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .related-article01-frame {
    max-width: calc(100% - 15px);
    margin: 6rem 0 6rem auto;
    padding: 4rem 2rem 3rem;
    border-radius: 12px;
  }

  .related-article01-title {
    top: -20px;
    left: -15px;
    padding: 1rem 2rem;
    font-size: 1.8rem;
    border-radius: 4px 4px 4px 0;
  }
  .related-article01-title:after {
    border-width: 0 15px 12px 0;
  }

  ul.related-article01-list {
    margin: 0 0 0;
  }
  ul.related-article01-list li {
    padding: 1.5rem 0 1.5rem 0;
    font-size: 1.5rem;
  }
  ul.related-article01-list li:first-child {
    padding: 0 0 1.5rem 0;
  }
  ul.related-article01-list li:last-child {
    padding: 1.5rem 0 0 0;
  }
  ul.related-article01-list li a {
    padding: 0 0 0 2.5rem;
  }
  ul.related-article01-list li a::after {
    width: 16px;
    height: 16px;
    margin-top: -8px;
  }
}



/*--------------------------------------
　points_parts
---------------------------------------*/
.points_parts {
  background: #f7f2e9;
  max-width: 780px;
  margin: 10rem auto 10rem;
  padding: 7rem 5rem 7rem;
  border-radius: 24px;
  position: relative;
}

.points_parts .points_ttl {
  position: absolute;
  top: -25px;
  left: -20px;
  font-size: 2rem;
}

.points_parts ul {
  margin: 0 0 0;
}
.points_parts ul li {
  margin: 0 0 2rem;
  padding: 0 0 0 4rem;
  font-size: 2rem;
  font-weight: bold;
  position: relative;
}
.points_parts ul li:last-child {
  margin: 0 0 0;
}
.points_parts ul li::before {
	content: "";
	position: absolute;
	top: 50%;
  left: 0;
  transform: translate(0,-50%);
  background: url("img/icon-check.png") left top no-repeat;
  background-size: contain;
	width: 22px;
	height: 22px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .points_parts {
    max-width: calc(100% - 15px);
    margin: 6rem 0 6rem auto;
    padding: 4rem 2rem 3rem;
    border-radius: 12px;
  }

  .points_parts .points_ttl {
    top: -20px;
    left: -15px;
    font-size: 1.8rem;
  }

  .points_parts ul li {
    margin: 0 0 1.5rem;
    padding: 0 0 0 3rem;
    font-size: 1.5rem;
  }
  .points_parts ul li::before {
    width: 18px;
    height: 18px;
  }
}



/*--------------------------------------
　sv_parts
---------------------------------------*/
.sv_parts {
  background: #fff;
  margin: 10rem 0 10rem;
  padding: 9rem 8rem 7rem;
  border: 4px solid #000;
  border-radius: 48px;
  position: relative;
}

.sv_parts .icon_wrap {
  position: absolute;
  top: -20px;
  left: -10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e5952e;
  width: 120px;
  padding: 0 0 2rem;
  text-align: center;
  border-radius: 0 0 6px 6px;
}
.sv_parts .icon_wrap::before {
  content: "";
  position: absolute;
  bottom: calc(100% - 1px);
  left: 50%;
  transform: translate(-50%,0);
  background: url("img/ttl_deco02.png") left top no-repeat;
  background-size: contain;
  width: 100%;
  height: 35px;
}
.sv_parts .icon {
  font-size: 3.3rem;
}
.sv_parts .small {
  display: block;
  font-size: 1.2rem;
  line-height: 1;
}

.sv_parts .sv_parts_block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.sv_parts .boxL {
  width: calc(100% - 340px);
}

.sv_parts .sv_ttl {
  background: url("img/border_wave.png") left bottom repeat-x;
  background-size: 87px auto;
  padding: 0 0 3rem;
  font-size: 2.4rem;
}
.sv_parts .sv_ttl .sub {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0 3rem;
  position: relative;
}
.sv_parts .sv_ttl .sub::before,
.sv_parts .sv_ttl .sub::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0,-50%);
  background: url("img/ttl_deco01.png") left top no-repeat;
  background-size: contain;
  width: 22px;
  height: 26px;
  box-sizing: border-box;
}
.sv_parts .sv_ttl .sub::before {
  left: 0;
}
.sv_parts .sv_ttl .sub::after {
  right: 0;
  transform: translate(0,-50%) scale(-1,1);
}

.sv_parts .txt {
  margin: 3rem 0 0;
}

.sv_parts .note {
  margin: 3rem 0 0;
  color: #707070;
  font-size: 1.2rem;
}
.sv_parts .note a{
  text-decoration:underline;
  color: #707070;
  font-size: 1.2rem;
}
.sv_parts .btn-link {
  text-align: left;
}
.sv_parts .btn-link a {
  margin: 3rem 0 0;
}

.sv_parts .boxR {
  width: 260px;
}

.sv_parts .imgBox {
  position: relative;
}
.sv_parts .imgBox img {
  border-radius: 50%;
}
.sv_parts .imgBox .sb {
  position: absolute;
  top: -5px;
  right: -15px;
  color: #1e939b;
  font-size: 1.6rem;
  transform: rotate(30deg);
}
.sv_parts .imgBox .sb::after {
  content: "";
  display: block;
  background: url("img/sb_deco01.png") left top no-repeat;
  background-size: contain;
	width: 100px;
	height: 48px;
  margin-top: -1rem;
  box-sizing: border-box;
  transform: rotate(-30deg);
}

.sv_parts .patents {
  background: #c1eeee;
  margin: 2rem 0 0;
  padding: 5px 1rem;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  border-radius: 4px;
}

.sv_parts .name {
  margin: 1.5rem 0 0;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.8;
}
.sv_parts .name span {
  line-height: 1.8;
}
.sv_parts .name .small {
  display: block;
  font-size: 1.2rem;
}
.sv_parts .name .large {
  font-size: 2rem;
}

.sv_parts .btn-web a {
  max-width: 100%;
  margin: 3rem auto 0;
	padding: 1.5rem 3rem;
  font-size: 1.6rem;
}
.sv_parts .btn-web a::after {
	right: 15px;
	width: 16px;
	height: 16px;
	margin-top: -8px;
}

@media screen and (max-width: 768px) {
  .sv_parts {
    margin: 10rem 0 6rem;
    padding: 6rem 2rem 4rem;
    border: 3px solid #000;
    border-radius: 24px;
  }

  .sv_parts .icon_wrap {
    top: -30px;
    left: 50%;
    transform: translate(-50%,0);
    width: 85px;
    margin: auto;
    padding: 0 0 1rem;
    border-radius: 0 0 4px 4px;
  }
  .sv_parts .icon_wrap::before {
    width: 100%;
    height: 0;
    padding-top: calc(100%*35/120);
  }
  .sv_parts .icon {
    font-size: 2.4rem;
  }
  .sv_parts .small {
    font-size: 1rem;
  }

  .sv_parts .boxL {
    width: 100%;
    margin: 1rem 0 0;
    order: 2;
  }

  .sv_parts .sv_ttl {
    background: url("img/border_wave.png") left bottom repeat-x;
    background-size: 44px auto;
    padding: 0 0 2rem;
    font-size: 2rem;
	text-align:center;
  }
  .sv_parts .sv_ttl .sub {
    margin: 0 0 5px;
    padding: 0 2rem;
  }
  .sv_parts .sv_ttl .sub::before,
  .sv_parts .sv_ttl .sub::after {
    width: 15px;
    height: 18px;
  }

  .sv_parts .txt {
    margin: 1rem 0 0;
  }

  .sv_parts .note {
    margin: 2rem 0 0;
  }

  .sv_parts .btn-link {
    text-align: right;
  }
  .sv_parts .btn-link a {
    margin: 2rem 0 0;
  }

  .sv_parts .boxR {
    display: flex;
    justify-content: space-between;
    width: 100%;
    order: 1;
  }

  .sv_parts .imgBox {
    width: 25%;
  }
  .sv_parts .imgBox .sb {
    top: inherit;
    bottom: 100%;
    right: inherit;
    left: -5px;
    font-size: 1rem;
    transform: rotate(-25deg);
  }
  .sv_parts .imgBox .sb::after {
    width: 60px;
    height: 29px;
    margin-top: -5px;
    transform: rotate(-25deg);
  }

  .sv_parts .name_wrap {
    width: calc(75% - 1rem);
  }

  .sv_parts .patents {
    margin: 0 0 0;
    padding: 5px 5px;
    font-size: 2.9vw;
    border-radius: 2px;
	text-align:left;
	display:inline-block;
  }

  .sv_parts .name {
    margin: 0.5rem 0 0;
    font-size: 1.8rem;
    line-height: 1.4;
	text-align:left;
  }
  .sv_parts .name span {
    line-height: 1.6;
  }
  .sv_parts .name .small {
    font-size: 1.2rem;
  }
  .sv_parts .name .large {
    font-size: 1.8rem;
  }

  .sv_parts .btn-web a {
    max-width: 100%;
    margin: 2rem auto 0;
    padding: 1.5rem 3rem;
  }

  .sv_parts .btn-tel a {
    max-width: 100%;
    margin: 2rem auto 0;
    padding: 1.5rem 3rem;
  }
}



/*--------------------------------------
　qa_parts
---------------------------------------*/
.qa_parts {
  margin: 10rem 0 10rem;
}

.qa_parts .q_txt {
  padding: 0 0 0 8rem;
  font-size: 2.4rem;
  position: relative;
}
.qa_parts .q_txt::before {
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0,-50%);
  background: #e5952e;
  padding: 0 0 5px;
  width: 58px;
  height: 58px;
  color: #fff;
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  box-sizing: border-box;
  border-radius: 50%;
}
.qa_parts .q_txt::after {
  content: "";
  display: block;
  width: 100%;
  margin: 1.5rem 0 0;
  border-bottom: 2px dashed #000;
}

.qa_parts .a_box {
  margin: 3rem 0 0;
}
.qa_parts .a_txt {
  font-size: 2.2rem;
}

.qa_parts .txt {
  margin: 2rem 0 0;
}

@media screen and (max-width: 768px) {
  .qa_parts {
    margin: 6rem 0 6rem;
  }

  .qa_parts .q_txt {
    padding: 0 0 0 5rem;
    font-size: 1.8rem;
  }
  .qa_parts .q_txt::before {
    padding: 0 0 3px;
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
  }
  .qa_parts .q_txt::after {
    margin: 1rem 0 0;
    border-bottom: 1px dashed #000;
  }

  .qa_parts .a_box {
    margin: 2rem 0 0;
  }
  .qa_parts .a_txt {
    font-size: 1.7rem;
  }

  .qa_parts .txt {
    margin: 1.5rem 0 0;
  }
}



/*--------------------------------------
　summary_parts
---------------------------------------*/
.summary_parts {
  margin: 10rem 0 10rem;
  padding: 5rem 5rem 5rem;
  border: 4px solid #000;
  border-radius: 0 48px 48px 48px;
  position: relative;
}

.summary_parts .sub_ttl {
  position: absolute;
  top: -25px;
  left: -24px;
  font-size: 2rem;
}

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

.summary_parts .boxL {
  width: 220px;
}

.summary_parts .imgBox img {
  border-radius: 50%;
}

.summary_parts .name {
  margin: 1rem 0 0;
  font-size: 1.4rem;
  text-align: center;
}
.summary_parts .name .large {
  margin: 0 0 0 5px;
  font-size: 1.8rem;
}

.summary_parts .boxR {
  width: calc(100% - 280px);
}

.summary_parts .summary_ttl {
  background: url("img/border_wave.png") left bottom repeat-x;
  background-size: 87px auto;
  padding: 0 0 3rem;
  font-size: 2.4rem;
}
.summary_parts .summary_ttl .sub {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0 3rem;
  position: relative;
}
.summary_parts .summary_ttl .sub::before,
.summary_parts .summary_ttl .sub::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0,-50%);
  background: url("img/ttl_deco01.png") left top no-repeat;
  background-size: contain;
  width: 22px;
  height: 26px;
  box-sizing: border-box;
}
.summary_parts .summary_ttl .sub::before {
  left: 0;
}
.summary_parts .summary_ttl .sub::after {
  right: 0;
  transform: translate(0,-50%) scale(-1,1);
}

.summary_parts .txt {
  margin: 3rem 0 0;
}

@media screen and (max-width: 768px) {
  .summary_parts {
    max-width: calc(100% - 15px);
    margin: 6rem 0 6rem auto;
    padding: 3rem 2rem 3rem;
    border: 3px solid #000;
    border-radius: 0 24px 24px 24px;
  }

  .summary_parts .sub_ttl {
    top: -20px;
    left: -18px;
    font-size: 1.8rem;
  }

  .summary_parts .summary_parts_block {
    display: block;
  }

  .summary_parts .boxL {
    width: 100%;
  }

  .summary_parts .imgBox img {
    display: block;
    width: 40%;
    margin: auto;
  }

  .summary_parts .name {
    margin: 5px 0 0;
    font-size: 1.2rem;
  }
  .summary_parts .name .large {
    font-size: 1.6rem;
  }

  .summary_parts .boxR {
    width: 100%;
    margin: 2rem 0 0;
  }

  .summary_parts .summary_ttl {
    background: url("img/border_wave.png") left bottom repeat-x;
    background-size: 44px auto;
    padding: 0 0 2rem;
    font-size: 2rem;
	text-align:center;
  }
  .summary_parts .summary_ttl .sub {
    margin: 0 0 5px;
    padding: 0 2rem;
  }
  .summary_parts .summary_ttl .sub::before,
  .summary_parts .summary_ttl .sub::after {
    width: 15px;
    height: 18px;
  }

  .summary_parts .txt {
    margin: 2rem 0 0;
  }
}



/*--------------------------------------
　voice_parts
---------------------------------------*/
.voice_parts {
  margin: 10rem 0 10rem;
}

.voice_parts .voice_item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #f7f2e9;
  margin: 0 0 5rem;
  padding: 8rem 8rem 8rem;
  border-radius: 48px;
}
.voice_parts .voice_item:last-child {
  margin: 0 0 0;
}
.voice_parts .voice_item.rev {
  flex-direction: row-reverse;
}

.voice_parts .boxL {
  width: calc(100% - 260px);
}

.voice_parts .voice_ttl {
  padding: 0 0 2rem;
  font-size: 2.4rem;
  border-bottom: 2px dashed #884d00;
}

.voice_parts .txt {
  margin: 3rem 0 0;
}

.voice_parts .boxR {
  width: 200px;
}

.voice_parts .imgBox img {
  border-radius: 50%;
}

.voice_parts .img_txt {
  margin: 1rem 0 0;
  font-size: 1.4rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .voice_parts {
    margin: 6rem 0 6rem;
  }

  .voice_parts .voice_item {
    margin: 0 0 5rem;
    padding: 0 2rem 4rem;
    border-radius: 24px;
  }

  .voice_parts .boxL {
    width: 100%;
    order: 2;
    margin: -1rem 0 0;
  }

  .voice_parts .voice_ttl {
    padding: 0 0 1.5rem;
    font-size: 1.8rem;
    border-bottom: 1px dashed #884d00;
  }

  .voice_parts .txt {
    margin: 2rem 0 0;
  }

  .voice_parts .boxR {
    width: 100%;
    order: 1;
    position: relative;
    top: -30px;
  }

  .voice_parts .imgBox img {
    display: block;
    width: 25%;
    margin: auto;
  }
}



/*--------------------------------------
　com_parts
---------------------------------------*/
.com_parts {
  margin: 20rem 0 -24rem;
  padding: 14rem 0 26rem;
  position: relative;
  z-index: 0;
}
.com_parts::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,0);
  background: url("img/bg01.jpg") left top repeat;
  background-size: 52px auto;
  width: 100vw;
  height: 100%;
  border-radius: 120px 120px 0 0;
  z-index: -1;
}

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

.com_parts .sv_parts {
  margin: 0 0 0;
}

@media screen and (max-width: 768px) {
  .com_parts {
    width: calc(100% + 3rem);
    margin: 10rem 1.5rem -12rem -1.5rem;
    padding: 9rem 1.5rem 14rem;
  }
  .com_parts::after {
    background: url("img/bg01.jpg") left top repeat;
    background-size: 26px auto;
    width: 100%;
    border-radius: 30px 30px 0 0;
  }
  .com_parts .com_parts_inner {
    max-width: 100%;
  }
}


/*--------------------------------------
　ttl_ribbon
---------------------------------------*/
.ttl_ribbon {
  display: inline-block;
  background: #e5952e;
  padding: 1.2rem 3rem;
  color: #fff;
	font-weight: bold;
  border-radius: 8px 8px 8px 0;
  position: relative;
}
.ttl_ribbon:after {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 20px 15px 0;
	border-color: transparent #bf6c1b transparent transparent;
}

@media screen and (max-width: 768px) {
  .ttl_ribbon {
    padding: 1rem 2rem;
    border-radius: 4px 4px 4px 0;
  }
  .ttl_ribbon:after {
    border-width: 0 15px 12px 0;
  }
}


