@charset "utf-8";

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

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

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

@font-face {
  font-family: "Zen Kaku Gothic New vertical";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/ZKG-700-vertical.woff2") format("woff2"), url("fonts/ZKG-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;
  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.5rem;
  font-family: "Zen Kaku Gothic New", 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;
}

strong {
	font-weight: bold;
}

html {
	height: 100vh;
}
body {
  height: auto;
}

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

.wh {
  color: #fff;
}
.cl-or {
	color: #ff8b3f;
}
.cl-rd {
	color: #ca0d0d;
}

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

.bg-wh {
  background: #fff;
}

.bd01 {
  border: 2px solid #000;
}

.br20 {
  border-radius: 20px;
}

.vertical {
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: upright;
  text-orientation: upright;
  font-family: "Zen Kaku Gothic New vertical";
}

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

  .bd01 {
    border: 2px solid #000;
  }

  .br20 {
    border-radius: 10px;
  }
  
  .vertical {
    -webkit-writing-mode: inherit;
    -moz-writing-mode: inherit;
    -ms-writing-mode: inherit;
    writing-mode: inherit;
  }
  .vertical_SP {
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: upright;
    text-orientation: upright;
    font-family: "Zen Kaku Gothic New vertical";
  }
}



/*--------------------------------------
　animation
---------------------------------------*/
@keyframes txtSlide {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -432vw 0;
  }
}


.fadeInUp {
  opacity : 0;
  transition: all 0.3s linear;
}
.fadeInUp.isActive {
  -webkit-animation: fadeInUp 0.6s ease-in-out forwards;
          animation: fadeInUp 0.6s ease-in-out forwards;
  animation-delay: 0.5s;
}
@keyframes fadeInUp {
  0% {
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}


.rotation {
  transition: all 0.3s linear;
}
.rotation.isActive {
  -webkit-animation: rotation 600ms cubic-bezier(0.65, 0, 0.35, 1);
          animation: rotation 600ms cubic-bezier(0.65, 0, 0.35, 1);
  animation-delay: 0.5s;
}
@keyframes rotation {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}


.txtColor01.isActive {
  animation: txtColor01 2s ease-in-out forwards;
  animation-delay: 1s;
}
@keyframes txtColor01 {
  0% {
    color: #fff;
  }
  100% {
    color: #fee567;
  }
}

.txtColor02.isActive {
  animation: txtColor02 2s ease-in-out forwards;
  animation-delay: 1s;
}
@keyframes txtColor02 {
  0% {
    color: #fff;
  }
  100% {
    color: #ff954f;
  }
}


.zoomIn {
  opacity: 0;
}
.zoomIn.isActive {
  animation: zoomIn 0.3s forwards;
  animation-delay: 0.5s;
}
@keyframes zoomIn {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}



/*--------------------------------------
　Header
---------------------------------------*/
header {
	width: 100%;
	min-width: 1100px;
  position: relative;
}

header .sitenameWrap {
  font-size: 1.4rem;
	text-align: right;
}
header .sitename {
  display: inline-block;
}
header .operation {
  display: inline-block;
  margin: 0 0 0 1rem;
}

.header_lower {
  background: #fee567;
	min-width: 1200px;
  height: 130px;
  border-bottom: 5px solid #000;
}
.header_lower .inner {
  max-width: 1200px;
  margin: auto;
  position: relative;
}
.header_lower .sitenameWrap {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1rem 0 0;
}
.header_lower .logo {
  background: #fff;
  width: 300px;
  height: 125px;
}
.header_lower .logo img {
  display: block;
  width: 250px;
  margin: auto;
}
.header_lower .logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.header_lower .txtSlide {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0,-50%);
  width: 100%;
  margin: 1rem 0 0;
}
.header_lower .txtSlide_img {
  background: url("img/header_lower_txtSlide.png") left top repeat-x;
  background-size: 1150px auto;
  width: 100%;
  height: 100px;
  animation: txtSlide 200s linear infinite;
}

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

  header .sitenameWrap {
    font-size: 1.3rem;
    text-align: center;
  }
  header .sitename {
    display: block;
  }
  header .operation {
    display: block;
    margin: 0 0 0 0;
  }

  .header_lower {
    min-width: 100%;
    height: auto;
    border-bottom: 3px solid #000;
  }
  .header_lower .inner {
    max-width: 100%;
  }
  .header_lower .sitenameWrap {
    position: relative;
    padding: 5px 5px 1rem;
  }
  .header_lower .logo {
    width: 50%;
    height: auto;
    margin: auto;
    padding: 1rem 0;
	          background: #FFD700;
         border-radius: 10px 10px 0 0;
  }
  .header_lower .logo img {
    width: 80%;
  }
  .header_lower .logo a {
    display: block;
  }
  .header_lower .txtSlide {
    top: inherit;
    bottom: 0;
    left: 0;
    transform: translate(0,0);
    width: 100%;
    margin: 0 0 0;
  }
  .header_lower .txtSlide_img {
    background: url("img/header_lower_txtSlide.png") left top repeat-x;
    background-size: 575px auto;
    width: 100%;
    height: 50px;
    animation: txtSlide 50s linear infinite;
  }
}

/*--------------------------------------
　#hb-menu
---------------------------------------*/
/*----- hb-menu -----*/
#hb-menu {
	display: table;
	position: fixed;
	top: 0;
	right: 0;
	width: 95px;
	height: 70px;
	background: #000;
	box-sizing: border-box;
  border-radius: 0 0 0 30px;
	cursor: pointer;
	z-index: 10000;
}
#hb-menu .hb-inner {
	display: table-cell;
	vertical-align: middle;
}
#hb-menu span {
	display: block;
	background: #fff;
	width: 43px;
	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){
	margin-top: 15px;
}

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

/* overlay */
.overlay {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: transparent;
	pointer-events: none;
	z-index: 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: 0 0;
  border-right: none;
	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);
}


.hb_logo {
  background: #fee567;
  padding: 4rem 4rem;
}
.hb_logo img {
  display: block;
  width: 300px;
  margin: auto;
}
.hb_logo a {
  display: block;
}


.hb_menu_wrapper {
	max-width: 80%;
	margin: auto;
  padding: 3rem 0 3rem;
}


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


.hb_menu_title {
	padding: 2rem 0 2rem;
	border-bottom: 1px solid rgba(0,0,0,0.16);
}

.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.5rem;
    line-height: 1.6;
    font-weight: bold;
	position: relative;
}
.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 {
    width: 50px;
    height: 40px;
    border-radius: 0 0 0 15px;
  }
  #hb-menu span {
    width: 24px;
    height: 1px;
  }
  #hb-menu span:nth-of-type(2){
    margin-top: 11px;
  }

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

  /*----- g-nav -----*/
  .g-nav .g-nav-inner {
    width: 100%;
    border: none;
  }


  .hb_logo {
    padding: 1.5rem 2rem;
  }
  .hb_logo img {
    width: 55%;
    margin: 0;
  }


  .hb_menu_wrapper {
    max-width: 100%;
    padding: 2rem 2rem 2rem;
  }


  .hb_menu_title {
    padding: 1.5rem 2.5rem 1.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.16);
    position: relative;
  }
	.hb_menu_title:after {
		content: "";
		position: absolute;
		top: 50%;
		right: 0;
    transform: translate(0,-50%);
    background: url("img/hb_acc_open.png") left top no-repeat;
    background-size: contain;
		width: 22px;
		height: 22px;
    transition: all 0.3s ease;
	}
	.hb_menu_title.open:after {
    background: url("img/hb_acc_close.png") left top no-repeat;
    background-size: contain;
	}	
	.hb_menu_title.first {
		padding: 1.5rem 0 1.5rem 0;
	}
	.hb_menu_title.first:after {
		display: none;
	}

  .hb_menu_title_link {
    display: block;
    padding: 0 0 0 0;
    font-size: 1.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;
  }

  .hb_menu_list_item {
    margin: 0 0 0 0;
    border-bottom: 1px solid rgba(0,0,0,0.16);
  }
  .hb_menu_list_item:first-child {
    display: block;
  }

  .hb_menu_list_link {
    padding: 1.5rem 2.5rem 1.5rem 1.5rem;
  }
  .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: 1200px;
	margin: 2rem auto 0;
  color: #888;
  font-size: 1.4rem;
  position: relative;
}
#pankuzu a {
	display: inline-block;
  text-decoration: underline;
  color: #888;
	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: #2a2a2a;
	width: 100%;
	min-width: 1100px;
  position: relative;
  z-index: 1111;
}

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


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

.l-footer-block {
  display: flex;
  justify-content: space-between;
}

.l-footer-left {
  width: 340px;
}

.l-footer-logo {
  background: #fff;
  width: 100%;
  padding: 2rem 0;
  border-radius: 10px;
}
.l-footer-logo img {
  display: block;
  width: 270px;
  margin: auto;
}
.l-footer-logo a {
	display: block;
  width: 100%;
  height: 100%;
}


.l-footer-right {
  width: calc(100% - 410px);
}

.l-footer-menu-wrapper {
  margin: 0 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 rgba(255,255,255,0.4);
	position: relative;
}

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


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

.l-footer-menu__list__item {
  width: calc(100% / 2);
	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;
	font-weight: bold;
	padding: 0 2rem 0 0;
	color: #fff;
	font-size: 1.5rem;
	line-height: 1.6;
	position: relative;
}
.l-footer-menu__list__link:after {
	content: "";
 	position: absolute;
	top: 50%;
	right: 0;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}


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

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

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


.l-footer-area .menseki {
	max-width: 100%;
  margin: 3rem auto 0;
  box-sizing: border-box;
	color: #fff;
	font-size: 1.3rem;
	line-height: 2;
}
.l-footer-area .menseki span {
  display: inline-block;
}


.l-footer-area .ucp {
  margin: 2rem auto 0;
	color: #fff;
	font-size: 1.3rem;
	line-height: 1.8;
}


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

.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;
  color: #fff;
	font-size: 1.4rem;
	line-height: 1.5;
}
.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 #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%;
  }


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

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

  .l-footer-left {
    width: 100%;
  }

  .l-footer-logo {
    width: 60%;
    margin: auto;
    padding: 1rem 0;
    border-radius: 10px;
  }
  .l-footer-logo img {
    width: 80%;
  }


  .l-footer-right {
    width: 100%;
    margin: 2rem 0 0;
  }

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


  .l-footer-menu__title {
    padding: 1.5rem 2.5rem 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.4);
  }
	.l-footer-menu__title:after { 
		content: "";
		position: absolute;
		top: 50%;
		right: 5px;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		background: none;
		border-top: solid 1px #fff;
		border-right: solid 1px #fff;
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	.l-footer-menu__title.open:after {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}

  .l-footer-menu__title__link {
    display: block;
    padding: 0 0 0 0;
    font-size: 1.5rem;
    pointer-events: none;
  }
  .l-footer-menu__title__link:after {
    display: none;
  }


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

  .l-footer-menu__list__item {
    width: 100%;
    margin-bottom: 0;
    padding: 0 0;
    border-bottom: 1px solid rgba(255,255,255,0.4);
  }
  .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 {
    content: "";
    position: absolute;
    top: 50%;
    right: 5px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }


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

  .l-footer-submenu__list__item {
    margin: 0 0 0 0;
    border-top: 1px solid rgba(255,255,255,0.4);
  }

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


  .l-footer-area .menseki {
    margin: 2rem auto 0;
    font-size: 1.2rem;
  }


  .l-footer-area .ucp {
    margin: 1.5rem auto 0;
    font-size: 1.2rem;
  }


  .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;
		color: #fff;
		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 #fff;
		border-right: 1px solid #fff;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
  }
}



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

.l-pagetop__link {
  display: block;
}

@media screen and (max-width: 768px) {
	.l-pagetop {
		bottom: 10px;
		right: 5px;
	}
}



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

.contents {
  width: 900px;
	min-width: 900px;
  margin: auto;
  padding: 10rem 0 6rem;
  position: relative;
  z-index: 0;
}

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

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

.sv_parts .flexBox img {
border: 2px solid;
}
.sec04_sv .sec04_sv_inner .slick-slide img {
    border: 2px solid;
}

@media screen and (max-width: 768px) {
  .contents_wrap {
    min-width: 100%;
  }
  
	.contents {
		width: 100%;
		min-width: 100%;
		padding: 4rem 2rem 6rem;
	}
  
  .flexBox {
    display: block;
  }
  
  .flexSP {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}



/*--------------------------------------
　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 10rem;
	font-size: 4.8rem;
	font-weight: bold;
  text-align: center;
	line-height: 1.4;
  position: relative;
}
.contents h1::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: url("img/ttl_bg01.png") left top no-repeat;
  background-size: contain;
  width: 660px;
  height: 200px;
  z-index: -1;
}


.contents h2 {
	background: #fffce9;
	margin: 8rem 0 2rem;
	padding: 2rem 3rem 2rem 3rem;
	font-size: 3.6rem;
  border-radius: 5px 25px 25px 5px;
  border: 2px solid #000;
  border-left: 16px solid #000;
	position: relative;
}

.contents h2 a {
	padding: 0 6rem 0 0;
	position: relative;
}
.contents h2 a::before {
	content: "";
	position: absolute;
	top: -20px;
	left: -30px;
	width: calc(100% + 6rem);
	height: calc(100% + 4rem);
}
.contents h2 a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  background: url("img/arrow_bk01.png") left top no-repeat;
  background-size: contain;
	width: 32px;
	height: 32px;
	margin-top: -16px;
}


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

.contents h3 a {
	padding: 0 5rem 0 0;
	position: relative;
}
.contents h3 a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100% + 2rem);
}
.contents h3 a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  background: url("img/arrow_bk01.png") left top no-repeat;
  background-size: contain;
	width: 30px;
	height: 30px;
	margin-top: -15px;
}


.contents h4 {
	margin: 5rem 0 2rem;
  padding: 0 0 0 2.5rem;
	font-size: 2.4rem;
  position: relative;
}
.contents h4::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  background: #ffc834;
  width: 3px;
  height: 24px;
	transform: rotate(-35deg);
}

.contents h4 a {
	padding: 0 4rem 0 0;
	position: relative;
}
.contents h4 a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  background: url("img/arrow_bk01.png") left top no-repeat;
  background-size: contain;
	width: 24px;
	height: 24px;
	margin-top: -12px;
}

@media screen and (max-width: 768px) {
  .contents h1 {
    margin: 0 0 5rem;
    font-size: 2.5rem;
  }
  .contents h1::after {
    width: 100%;
    height: 0;
    padding-top: calc(100%*200/660);
  }


  .contents h2 {
    margin: 4rem 0 2rem;
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    font-size: 2.2rem;
    border-radius: 3px 12px 12px 3px;
    border: 2px solid #000;
    border-left: 8px solid #000;
  }

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


  .contents h3 {
    margin: 4rem 0 2rem;
    padding: 0 0 1.5rem 0;
    font-size: 1.8rem;
    border-bottom: 2px solid #ffc834;
  }

  .contents h3 a {
    padding: 0 4rem 0 0;
  }
  .contents h3 a::before {
    height: calc(100% + 1.5rem);
  }
  .contents h3 a::after {
    width: 24px;
    height: 24px;
    margin-top: -12px;
  }


  .contents h4 {
    margin: 3rem 0 2rem;
    padding: 0 0 0 1.5rem;
    font-size: 1.6rem;
  }
  .contents h4::before {
    top: 6px;
    width: 2px;
    height: 16px;
  }

  .contents h4 a {
    padding: 0 3rem 0 0;
  }
  .contents h4 a::after {
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
}



/*--------------------------------------
　icon_ttl
---------------------------------------*/
h2.icon_ttl,
h3.icon_ttl,
h4.icon_ttl {
	background: none;
	margin: 9rem 0 5rem;
	padding: 0 0 2rem 15rem;
  font-size: 3rem;
  border-radius: 0;
  border: none;
  border-left: none;
  border-bottom: 3px solid #000;
}
h2.icon_ttl::before,
h3.icon_ttl::before,
h4.icon_ttl::before {
  content: "";
	position: absolute;
  top: inherit;
  bottom: -10px;
  left: -6px;
  background: url("img/icon_ttl_illust.png") left top no-repeat;
  background-size: contain;
	width: 150px;
	height: 120px;
	transform: rotate(351deg);
}

.icon_ttl {
    margin: 8rem 0 5rem;
    padding: 0 0 1rem 14rem;
  font-size: 3rem;
  font-weight: bold;
  border-bottom: 2px solid #000;
  position: relative;
}
.icon_ttl::before {
  content: "";
	position: absolute;
  bottom: -4px;
  left: 0;
  background: url("img/icon_ttl_illust.png") left top no-repeat;
  background-size: contain;
	    width: 130px;
    height: 100px;
}

@media screen and (max-width: 768px) {
  h2.icon_ttl,
  h3.icon_ttl,
  h4.icon_ttl {
    margin: 5rem 0 3rem;
    padding: 0 0 1.5rem 9rem;
    font-size: 1.8rem;
    border-bottom: 2px solid #000;
  }
  h2.icon_ttl::before,
  h3.icon_ttl::before,
  h4.icon_ttl::before {
    bottom: -7px;
    width: 90px;
    height: 72px;
  }
  
  .icon_ttl {
    margin: 5rem 0 3rem;
    padding: 0 0 1.5rem 8rem;
    font-size: 1.8rem;
    border-bottom: 2px solid #000;
  }
  .icon_ttl::before {
	  bottom: 11px;
        width: 79px;
        height: 63px;
  }
}



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

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

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


.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: #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;
}
@-moz-document url-prefix() {
  .caption {
    scrollbar-color: #aeaeae #e7e7e7;
  	scrollbar-width: thin;
  }
}

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



/*--------------------------------------
　リスト
---------------------------------------*/
/*----- ulリスト -----*/
.contents ul {
	margin: 4rem 0 4rem;
}
.contents ul li {
  margin: 0 0 1rem 0;
  padding: 0 0 0 2rem;
	font-size: 1.6rem;
  line-height: 1.8;
	position: relative;
	    font-weight: 500;
}
.contents ul li:last-child {
  margin: 0 0 0 0;
}
.contents ul li::before {
  content: "";
  display: block;
	position: absolute;
  top: 12px;
  left: 0;
	background: #9ca2e2;
  width: 8px;
  height: 8px;
	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;
}

@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: 9px;
	}
}



/*--------------------------------------
　リンク
---------------------------------------*/
.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.6rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
	border-radius: 100px;
	text-decoration: none!important;
	position: relative;
}
.btn-web a:hover,
.btn-internal a:hover {
	opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
}


/*----- btn-web（外部リンク） -----*/
.btn-web a {
	background: #5daac8;
	box-shadow: 5px 5px 0px 0px rgba(0,0,0,0.2);
  border: 3px solid #5daac8;
}
.btn-web a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 30px;
	width: 10px;
	height: 10px;
	margin-top: -5px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.btn-web a:hover {
  background: #fff;
  color: #5daac8;
}
.btn-web a:hover::after {
	border-top: solid 2px #5daac8;
	border-right: solid 2px #5daac8;
}


/*----- btn-internal（内部リンク） -----*/
.btn-internal a {
	background: #fff;
  color: #ff7b24;
	box-shadow: 5px 5px 0px 0px rgba(0,0,0,0.2);
  border: 3px solid #ff7b24;
}
.btn-internal a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 30px;
	width: 10px;
	height: 10px;
	margin-top: -5px;
	border-top: solid 2px #ff7b24;
	border-right: solid 2px #ff7b24;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.btn-internal a:hover {
  background: #ff7b24;
  color: #fff;
}
.btn-internal a:hover::after {
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
}


/*----- btn-link（テキストリンク） -----*/
.btn-link {
	text-align: right;
}
.btn-link a {
	display: inline-block;
	margin: 4rem 0 4rem;
	padding: 0 3rem 0 0;
	font-size: 1.5rem;
  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_bk02.png") left top no-repeat;
  background-size: contain;
	width: 18px;
	height: 18px;
	margin-top: -9px;
}

.btn-link a:hover {
	text-decoration: none;
}
.sv_block .btn-link a{
	margin: 2rem 0 0;
}

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


/*----- btnBox -----*/
.btnBox {
  display: flex;
  justify-content: center;
  margin: 3rem 0 3rem;
}
.btnBox > div {
  width: 400px;
  margin: 0 2rem 0;
}
.btnBox > div a {
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 0;
}

@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.5rem;
  }


  /*----- btn-web（外部リンク） -----*/
  .btn-web a {
    box-shadow: 4px 4px 0px 0px rgba(0,0,0,0.2);
    border: 2px solid #5daac8;
  }
  .btn-web a::after {
    right: 20px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
  }
  .btn-web a:hover::after {
    border-top: solid 1px #5daac8;
    border-right: solid 1px #5daac8;
  }

  
  /*----- btn-internal（内部リンク） -----*/
  .btn-internal a {
    box-shadow: 4px 4px 0px 0px rgba(0,0,0,0.2);
    border: 2px solid #ff7b24;
  }
  .btn-internal a::after {
    right: 20px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: solid 1px #ff7b24;
    border-right: solid 1px #ff7b24;
  }
  .btn-internal a:hover::after {
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
  }


  /*----- btn-link（テキストリンク） -----*/
  .btn-link {
    text-align: right;
  }
  .btn-link a {
    margin: 3rem 0 3rem;
    padding: 0 2.5rem 0 0;
    font-size: 1.4rem;
  }
  .btn-link a::after {
    width: 16px;
    height: 16px;
    margin-top: -8px;
  }
  
	
	/*----- btn-tel（電話ボタン） -----*/
	.btn-tel a {
		display: block;
		background: #000;
		max-width: 90%;
		margin: 3rem auto 3rem;
		padding: 1.8rem 5rem;
		box-sizing: border-box;
		color: #fff;
		font-size: 1.4rem;
		font-weight: bold;
		text-align: center;
		line-height: 1.5;
		border-radius: 100px;
		text-decoration: none!important;
    box-shadow: 4px 4px 0px 0px rgba(0,0,0,0.2);
		position: relative;
	}
  .btn-tel a::before {
		content: "";
		position: absolute;
		top: 50%;
    left: 25px;
    background: url("img/icon_tel.png") left top no-repeat;
    background-size: contain;
		width: 15px;
		height: 26px;
		margin-top: -13px;
	}
  
  
  /*----- btnBox -----*/
  .btnBox {
    display: block;
    margin: 3rem 0;
  }
  .btnBox > div {
    width: 90%;
    margin: 0 auto 1.5rem;
  }
  .btnBox > div:last-child {
    margin: 0 auto 0;
  }
}



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

table th {
	background: #f6f6f6;
	padding: 2rem;
	box-sizing: border-box;
	text-align: center;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.4;
  word-break: break-all;
	border-left: 2px solid #000;
	border-bottom: 2px solid #000;
}
table th a {
	font-weight: bold;
	text-decoration: underline;
}
table th a:hover {
	text-decoration: none;
}

table td {
	padding: 2rem;
	box-sizing: border-box;
	text-align: center;
	font-size: 1.5rem;
	line-height: 1.4;
	font-weight:bold;
  word-break: break-all;
	border-left: 2px solid #000;
	border-bottom: 2px solid #000;
}
table td a {
	text-decoration: underline;
	font-weight:bold;
}
table td a:hover {
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	table {
		margin: 5rem 0 5rem;
    border: 1px solid #000;
	}

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

	table td {
		display: block;
		padding: 1.5rem;
		font-size: 1.4rem;
		border-left: none;
		border-bottom: 1px solid #000;
	}
	
	table tbody tr:last-child td:last-child {
		border-bottom: none;
	}
  
  .table_parts02 table th {
    display: table-cell;
    border-left: 1px solid #000;
  }
  .table_parts02 table td {
    display: table-cell;
    border-left: 1px solid #000;
  }
}



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

.float-img {
  position: relative;
}

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

.float-img.fl {
  float: left;
  width: 490px;
  padding-right: 5rem;
}
.float-img.fr {
  float: right;
  width: 490px;
  padding-left: 5rem;
}

.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: #2ea7e0;
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.5;
}
.float-wrap.ct .catch {
  text-align: center;
}

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

@media screen and (max-width: 768px) {
	.float-wrap {
		margin: 4rem 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: 910px;
	margin: 8rem auto 8rem;
	padding: 4rem 6rem 4rem;
  border: 3px solid #d9d9d9;
  border-radius: 20px;
  position: relative;
}

.toc_parts .ttl {
	font-size: 2.4rem;
	font-weight: bold;
  position: relative;
}

#toc {
	margin: 2rem 0 0 0;
  padding: 0 3rem;
}

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


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


.toc_parts .toc_parts_inner {
  padding: 0 0 3rem;
}
.toc_parts .acc_btn {
	position: absolute;
	left: 0;
	right: 0;
  bottom: -30px;
	background: #fff;
	max-width: 190px;
	margin: auto;
	padding: 1.5rem 4rem;
	box-sizing: border-box;
  border: 2px solid #3a2429;
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
	line-height: 1;
	cursor: pointer;
  border-radius: 100px;
	transition: all 0.4s;
  z-index: 2;
}
.toc_parts .acc_btn::before,
.toc_parts .acc_btn::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
	background: #3a2429;
	width: 15px;
	height: 2px;
	margin-top: -1px;
	transition: all 0.4s;
}
.toc_parts .acc_btn::after {
	transform: rotate(90deg);
}
.toc_parts .acc_btn.is-show::before {
  display: none;
}
.toc_parts .acc_btn.is-show::after {
  transform: rotate(180deg);
}
.toc_parts .acc_btn span {
	font-weight: bold;
}
.toc_parts .acc_btn span:before {
	content: "もっと見る";
}
.toc_parts .acc_btn.is-show span:before {
	content: "閉じる";
}

.toc_parts .acc_box {
	overflow: hidden;
	position: relative;
}
.toc_parts .acc_box.is-hide {
  height: 200px;
}
.toc_parts .acc_box::before {
	content: "";
	position: absolute;
	bottom: 0;
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,.8) 50%, rgba(255,255,255,.8) 50%, #fff 100%);
  background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,.8) 50%, rgba(255,255,255,.8) 50%, #fff 100%);
	width: 100%;
  height: 80px;
	transition: all 0.4s;
  z-index: 1;
}
.toc_parts .acc_btn.is-show + .acc_box::before {
	background: none;
	height: auto;
}

@media screen and (max-width: 768px) {
  .toc_parts {
    max-width: 100%;
    margin: 5rem auto 5rem;
    padding: 2rem 2rem 2rem;
    border: 2px solid #d9d9d9;
    border-radius: 10px;
  }

  .toc_parts .ttl {
    font-size: 2rem;
  }

  #toc {
    margin: 1.5rem 0 0 0;
    padding: 0 0;
  }

  #toc ul.chapter li {
    margin: 0 0 1rem 0;
    padding: 0 0 0 2.8rem;
    font-size: 1.6rem;
  }
  #toc ul.chapter li::before {
    top: -3px;
    font-size: 1.8rem;
  }
  #toc .chapter .chapter {
    margin: 0 0 1.5rem 3rem;
  }
  #toc .chapter .chapter li {
    margin: 0 0 1rem 0;
    padding: 0 0 0 1.5rem;
    font-size: 1.4rem;
  }
  #toc .chapter .chapter li::before {
    width: 6px;
  }
  
  .toc_parts .toc_parts_inner {
    padding: 0 0 3rem;
  }
  .toc_parts .acc_btn {
    bottom: -25px;
    max-width: 55%;
    margin: auto;
    padding: 1.2rem 3rem;
    border: 2px solid #000;
  }
  .toc_parts .acc_btn::before,
  .toc_parts .acc_btn::after {
    right: 10px;
    width: 16px;
    height: 2px;
  }
}



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

.summary_block {
  padding: 4rem 8rem 1rem;
  position: relative;
}
.summary_block::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 30px;
  background: url("img/summary_parts_illust.png") left top no-repeat;
  background-size: contain;
  width: 350px;
  height: 110px;
  z-index: -1;
}

.summary_block .cc {
  font-size: 3rem;
}
.summary_block h3 {
 font-size: 3rem;
    margin: 0;
    padding: 0;
    border-bottom: none;
}

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

.summary_block p{
  margin: 3rem 0 0;
}

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

  .summary_block {
    padding: 3rem 2rem 1rem;
  }
  .summary_block::before {
    left: 15px;
    width: 60%;
    height: 0;
    padding-top: calc(60%*110/350);
  }

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

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



/*--------------------------------------
　summary_parts
---------------------------------------*/
.sv_parts {
  margin: 20rem 0 10rem;
  position: relative;
}

.sv_parts .sv_parts_illust {
  position: absolute;
  bottom: calc(100% - 6px);
  right: 0;
  width: 115px;
}
.sv_parts .sv_parts_sb {
  position: absolute;
  bottom: calc(100% + 15px);
  right: 115px;
  width: 64px;
}

.sv_parts .sponsored {
  height: 40px;
  position: relative;
}
.sv_parts .sponsored::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #000 url("img/sponsored_txt.png") left 25px center repeat-x;
  background-size: 620px auto;
  width: 100vw;
  height: 100%;
  min-width: 1100px;
  border-radius: 20px 0 0 0;
}

.sv_block {
  padding: 6rem 7rem 6rem;
  position: relative;
}
.sv_block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #fdf6ce;
  width: 100vw;
  height: 100%;
  min-width: 1100px;
  border-radius: 0 0 0 20px;
  z-index: -1;
}

.sv_block .boxL {
  width: 360px;
}
#category .sv_block .boxL,#page .sv_block .boxL {
  width: 336px;
}

#category .sv_block .boxR,#page .sv_block .boxR{
    width: calc(100% - 390px);
}
#category .sv_block,#page .sv_block{
    padding: 6rem 0rem 4rem 4rem;
}

.sv_block .caption {
  text-align: center;
}

.sv_block .btn-web a {
  max-width: 90%;
  margin: 4rem auto 0;
}
#category .sv_block .btn-web a,#page .sv_block .btn-web a{
  margin: 2rem auto 0;
}
#category .sv_block .btn-internal a,#page .sv_block .btn-internal a {
    margin: 3rem auto 0;
}
.sv_block .btn-internal a {
max-width: 90%;
    margin: 4rem auto 0;
}

.sv_block .boxR {
  width: calc(100% - 420px);
}

.sv_block .sv_ttl {
  font-size: 3.2rem;
  text-align: center;
}
.sv_block .sv_ttl .dot {
	background-image: radial-gradient(circle at center, #ff8b3f 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.5em;
  padding-top: 10px;
}
.sv_block .sv_ttl .c_name {
  display: inline-block;
  background: #fff;
  margin: 2rem 0 0;
  padding: 1rem 1.5rem;
  font-size: 3rem;
  border-radius: 9px;
  line-height: 1;
}

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

@media screen and (max-width: 768px) {
  .sv_parts {
    margin: 10rem 0 3rem;
  }

  .sv_parts .sv_parts_illust {
    bottom: calc(100% - 4px);
    right: inherit;
    left: 50%;
    transform: translate(-50%,0);
    width: 20%;
  }
  .sv_parts .sv_parts_sb {
    bottom: calc(100% + 10px);
    right: inherit;
    left: 25%;
    width: 15%;
  }  

  .sv_parts .sponsored {
    height: 35px;
  }
  .sv_parts .sponsored::after {
    left: 50%;
    transform: translate(-50%,0);
    background: #000 url("img/sponsored_txt_SP.png") center center no-repeat;
    background-size: 80% auto;
    width: calc(100% + 4rem);
    height: 100%;
    min-width: 100%;
    border-radius: 10px 10px 0 0;
  }

  .sv_block {
    padding: 3rem 0 4rem;
  }
	
	#category .sv_block,#page .sv_block {
    padding: 3rem 0 4rem;
  }
  .sv_block::after {
    left: 50%;
    transform: translate(-50%,0);
    width: calc(100% + 4rem);
    height: 100%;
    min-width: 100%;
    border-radius: 0 0 10px 10px;
  }

  .sv_block .boxL {
    width: 100%;
  }

	#category .sv_block .boxL,#page .sv_block .boxL{
    width: 100%;
  }
  .sv_block .btn-web a {
    margin: 3rem auto 0;
  }
	#category .sv_block .btn-web a, #page .sv_block .btn-web a {
    margin: 3rem auto 0;
}
	 .sv_block .btn-internal a {
    margin: 3rem auto 0;
  }



  .sv_block .boxR {
    width: 100%;
    margin: 3rem 0 0;
  }
	
	#category .sv_block .boxR,#page .sv_block .boxR{
    width: 100%;
    margin: 3rem 0 0;
  }

  .sv_block .sv_ttl {
    font-size: 2.2rem;
  }
  .sv_block .sv_ttl .c_name {
    margin: 1rem 0 0;
    padding: 8px 1rem;
    font-size: 1.9rem;
    border-radius: 5px;
  }

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



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

.voice_block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.voice_block .voice_item {
  background: #f5f5f5;
  width: calc(50% - 2rem);
  margin: 0 0 8rem;
  padding: 4rem 4rem 4rem;
  position: relative;
}
.voice_block .voice_item:nth-child(2n) {
  margin: 4rem 0 4rem;
}
.voice_block .voice_item::before {
	content: "";
  position: absolute;
  bottom: 100%;
  left: 40px;
  background: url("img/eng_voice.png") left top no-repeat;
  background-size: contain;
	width: 140px;
	height: 34px;
}
.voice_block .voice_item::after {
	content: "";
  position: absolute;
  bottom: calc(100% - 20px);
  left: 190px;
  background: url("img/icon_sb.png") left top no-repeat;
  background-size: contain;
	width: 88px;
	height: 54px;
}

.voice_block .voice_ttl {
  font-size: 2rem;
}

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

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

  .voice_block {
    display: block;
  }

  .voice_block .voice_item {
    width: 100%;
    margin: 5rem 0;
    padding: 3rem 2rem 3rem;
  }
  .voice_block .voice_item:nth-child(2n) {
    margin: 0 0 4rem;
  }
  .voice_block .voice_item:last-child {
    margin: 0 0 0;
  }
  .voice_block .voice_item::before {
    left: 15px;
    width: 32%;
    height: 0;
    padding-top: calc(32%*34/140);
  }
  .voice_block .voice_item::after {
    bottom: calc(100% - 15px);
    left: calc(32% + 20px);
    width: 15%;
    height: 0;
    padding-top: calc(15%*54/88);
  }

  .voice_block .voice_ttl {
    font-size: 1.8rem;
  }

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



/*--------------------------------------
　comment_parts
---------------------------------------*/
.comment_parts {
  margin: 8rem 0 7rem;
}

.comment_block {
  background: #fdf6ce;
  max-width: 900px;
  margin: 0 0 0 auto;
  padding: 4rem 4rem 4rem 14rem;
  position: relative;
}
.comment_block::before {
	content: "";
  position: absolute;
  bottom: 100%;
  right: 150px;
  background: url("img/eng_comment.png") left top no-repeat;
  background-size: contain;
	width: 220px;
	height: 34px;
}
.comment_block::after {
	content: "";
  position: absolute;
  bottom: calc(100% - 20px);
  right: 40px;
  background: url("img/icon_sb.png") left top no-repeat;
  background-size: contain;
	width: 88px;
	height: 54px;
}

.comment_block .imgBox {
  position: absolute;
  bottom: -4px;
  left: -70px;
  width: 184px;
}

.comment_block .name {
  position: absolute;
  bottom: 3px;
  left: 3px;
  right: 3px;
  background: rgba(0,0,0,0.45);
  width: calc(100% - 6px);
  padding: 1rem 1rem;
  font-size: 1.5rem;
  text-align: center;
  border-radius: 0 0 10px 10px;
}
.comment_block .name .large {
  font-size: 2rem;
}

.comment_block .comment_ttl {
  font-size: 2rem;
}

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

@media screen and (max-width: 768px) {
  .comment_parts {
    margin: 10rem 0 5rem;
  }

  .comment_block {
    max-width: 100%;
    margin: 0 0 0 0;
    padding: 9rem 2rem 3rem 2rem;
  }
  .comment_block::before {
    top: 20px;
    bottom: inherit;
    right: 15px;
    width: 50%;
    height: 0;
    padding-top: calc(50%*34/220);
  }
  .comment_block::after {
    bottom: calc(100% - 15px);
    right: 15px;
    width: 15%;
    height: 0;
    padding-top: calc(15%*54/88);
  }

  .comment_block .imgBox {
    bottom: calc(100% - 76px);
    left: 0;
    width: 34%;
  }

  .comment_block .name {
    bottom: 2px;
    left: 2px;
    right: 2px;
    width: calc(100% - 4px);
    padding: 5px 5px;
    font-size: 3.2vw;
    border-radius: 0 0 5px 5px;
  }
  .comment_block .name .large {
    font-size: 4.2vw;
  }

  .comment_block .comment_ttl {
    font-size: 1.8rem;
  }

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



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

.flow_block .flexBox {
  align-items: center;
}

.flow_block .boxL {
 width: 35%;
    padding: 0 2rem;
    text-align: center;
}

.flow_block .flow_ttl {
  display: inline-block;
  font-size: 2rem;
  position: relative;
}
.flow_block .flow_ttl::before {
	content: "";
  position: absolute;
  bottom: 100%;
  left: -50px;
  background: url("img/icon_1day.png") left top no-repeat;
  background-size: contain;
	width: 110px;
	height: 70px;
  margin: 0 0 1rem;
}
.flow_block .flow_ttl .large {
  font-size: 3rem;
}
.flow_block .flow_ttl .double {
  position: relative;
}
.flow_block .flow_ttl .double::before {
	content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%,0);
  background: url("img/border_double01.png") left top no-repeat;
  background-size: 100% auto;
	width: 100%;
	height: 12px;
  margin: 0 0 -1.5rem;
}

.flow_block .boxR {
  width: 65%;
}

.flow_block .slideWrap {
  background: #f5f5f5;
  padding: 3rem 0 3rem 4rem;
  border-left: 2px solid #000;
}

.flow_slider .slick-slide {
	width: 175px;
  margin: 0 2rem;
}

.flow_block .time {
  font-size: 1.8rem;
  text-align: center;
}

.flow_block .imgBox {
  margin: 1rem 0 0;
  position: relative;
}
.flow_block .imgBox::after {
  content: "";
	position: absolute;
	top: 50%;
  left: 100%;
  transform: translate(0,-50%);
  background: #d0d0d0;
	width: 40px;
	height: 20px;
}
.flow_block .slick-slide:last-child .imgBox::after {
  display: none;
}
.flow_block .imgBox img {
  border-radius: 10px;
}

.flow_block .flow_txt {
  margin: 1rem 0 0;
  font-size: 1.6rem;
  text-align: center;
}

.flow_block .txt {
  margin: 1rem 0 0;
  font-size: 1.4rem;
  line-height: 1.6;
}

.flow_slider .slide-arrow {
  background: url("img/arrow_wh01.png") left top no-repeat;
  background-size: contain;
	width: 40px;
	height: 40px;
  margin-top: -20px;
}
.flow_slider .prev-arrow {
  left: -60px;
  transform: scale(-1, 1);
}
.flow_slider .next-arrow {
	right: -20px;
}


.flow_block .flow_ttl_pt::before {
    content: "";
    position: absolute;
    bottom: calc(100% - 15px);
    left: -50px;
    background: url(img/icon_trajectory.png) left top no-repeat;
    background-size: contain;
    width: 180px;
    height: 80px;
}

.flow_block .flow_ttl_pt {
    display: inline-block;
    font-size: 2rem;
    position: relative;
}
.flow_block .flow_ttl_pt .double {
    position: relative;
}

.flow_block .flow_ttl_pt .large {
    font-size: 3rem;
}
.flow_block .flow_ttl_pt .double::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    background: url(img/border_double01.png) left top no-repeat;
    background-size: 100% auto;
    width: 100%;
    height: 12px;
    margin: 0 0 -1.5rem;
}

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

  .flow_block .boxL {
    width: 100%;
    padding: 0 0;
  }

  .flow_block .flow_ttl {
    font-size: 1.5rem;
  }
  .flow_block .flow_ttl::before {
    left: 0;
    width: 45%;
    height: 0;
    margin: 0 0 0;
    padding-top: calc(45%*80/110);
  }
  .flow_block .flow_ttl .large {
    font-size: 2.2rem;
  }
  .flow_block .flow_ttl .double::before {
    width: 100%;
    height: 0;
    margin: 0 0 -1rem;
    padding-top: calc(100%*12/156);
  }
	
	 .flow_block .flow_ttl_pt {
    font-size: 1.5rem;
  }
 .flow_block .flow_ttl_pt::before {
bottom: calc(100% - 15px);
        left: -50px;
        width: 100%;
        height: 0;
        margin: 0 0 0;
        padding-top: 6rem;
  }
.flow_block .flow_ttl_pt .large {
    font-size: 2.2rem;
  }
.flow_block .flow_ttl_pt .double::before {
    width: 100%;
    height: 0;
    margin: 0 0 -1rem;
    padding-top: calc(100%*12/156);
  }

  .flow_block .boxR {
    width: 100%;
    margin: 3rem 0 0;
  }

  .flow_block .slideWrap {
    width: calc(100% + 2rem);
    padding: 2rem 0 2rem 2rem;
    border-left: 2px solid #000;
  }

  .flow_slider .slick-slide {
    width: 165px;
    margin: 0 1rem;
  }

  .flow_block .time {
    font-size: 1.5rem;
  }

  .flow_block .imgBox::after {
    width: 20px;
    height: 12px;
  }
  .flow_block .imgBox img {
    border-radius: 5px;
  }

  .flow_block .flow_txt {
    font-size: 1.7rem;
  }

  .flow_block .txt {
    font-size: 1.4rem;
  }

  .flow_slider .slide-arrow {
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }
  .flow_slider .prev-arrow {
    left: -35px;
  }
  .flow_slider .next-arrow {
    right: 15px;
  }
}



/*--------------------------------------
　profile_parts
---------------------------------------*/
.profile_parts {
  max-width: 1000px;
  margin: 20rem auto 10rem;
}

.profile_block {
  background: #fee567;
  padding: 0 8rem 6rem;
  position: relative;
}
.profile_block::before {
  content: "";
	position: absolute;
  bottom: calc(100% - 20px);
  left: calc(50% - 280px);
  background: url("img/eng_ings.png") left top no-repeat;
  background-size: contain;
	width: 140px;
	height: 60px;
}
.profile_block::after {
  content: "";
	position: absolute;
  bottom: 100%;
  right: calc(50% - 243px);
  background: url("img/profile_parts_illust.png") left top no-repeat;
  background-size: contain;
	width: 100px;
	height: 80px;
}

.profile_block .imgBox {
  width: 210px;
  margin: auto;
  position: relative;
  top: -160px;
}

.profile_block .profile_ttl {
  margin: -13rem 0 0;
  font-size: 2.4rem;
  text-align: center;
}

.profile_block .profile_item {
  margin: 2rem 0 0;
}

.profile_block .boxL {
  display: flex;
  align-items: center;
  width: 30%;
}

.profile_block .eng {
  width: 90px;
  margin: auto;
}

.profile_block .boxR {
  width: 70%;
  padding: 2rem 3rem;
  border-left: 2px solid #000;
}

.profile_block .name {
  font-size: 2rem;
}

.profile_block ul.profileList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 1.5rem 0 0;
}
.profile_block ul.profileList li {
  width: calc(100% - 1.5rem);
  margin: 0 0 1rem 0;
  padding: 0 0 0 0;
  line-height: 1.5;
}
.profile_block ul.profileList li:last-child {
  margin: 0 0 1rem 0;
}
.profile_block ul.profileList li::before {
  display: none;
}
.profile_block ul.profileList dl {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.profile_block ul.profileList dt {
  background: #e6f7ff;
  width: 80px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  border-radius: 100px;
}
.profile_block ul.profileList dd {
  width: calc(100% - 90px);
	 font-weight: bold;
}

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

@media screen and (max-width: 768px) {
  .profile_parts {
    max-width: 100%;
    margin: 8rem auto 4rem;
  }

  .profile_block {
    padding: 0 2rem 4rem;
  }
  .profile_block::before {
    bottom: calc(100% - 10px);
    left: 0;
    width: 30%;
    height: 0;
    padding-top: calc(30%*60/140);
  }
  .profile_block::after {
    right: 20px;
    width: 20%;
    height: 0;
    padding-top: calc(20%*80/100);
  }

  .profile_block .imgBox {
    width: 40%;
    top: -70px;
  }

  .profile_block .profile_ttl {
    margin: -5rem 0 0;
    font-size: 1.8rem;
  }

  .profile_block .profile_item {
    margin: 2rem 0 0;
  }

  .profile_block .boxL {
    display: block;
    width: 100%;
    padding: 1.5rem 2rem 1rem;
  }

  .profile_block .eng {
    width: 30%;
  }

  .profile_block .boxR {
    width: 100%;
    padding: 1rem 2rem 2rem;
    border-left: none;
    border-top: 1px solid #000;
  }

  .profile_block .name {
    font-size: 1.6rem;
	  text-align: center;
  }

  .profile_block ul.profileList {
    display: block;
    margin: 1.5rem 0 0;
  }
  .profile_block ul.profileList li {
    width: 100%;
  }
  .profile_block ul.profileList li:last-child {
    margin: 0 0 0 0;
  }
  .profile_block ul.profileList dt {
    width: 70px;
  }
  .profile_block ul.profileList dd {
    width: calc(100% - 80px);
  }

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



/*--------------------------------------
　qa_parts01
---------------------------------------*/
.qa_parts01 {
  max-width: 1000px;
  margin: 6rem auto 5rem;
}

.qa_parts01 .q_ttl {
  padding: 0 0 2rem 7rem;
  font-size: 3.2rem;
  border-bottom: 2px solid #000;
  position: relative;
}
.qa_parts01 .q_ttl::before {
	content: "";
	position: absolute;
	top: 5px;
  left: 0;
  background: url("img/icon_q.png") left top no-repeat;
  background-size: contain;
	width: 46px;
	height: 46px;
}

.qa_parts01 .a_block {
  background: #fdf6ce;
  max-width: 900px;
  margin: 5rem 0 0 auto;
  padding: 4rem 4rem 4rem 14rem;
  position: relative;
}

.qa_parts01 .imgBox {
  position: absolute;
  bottom: 0;
  left: -70px;
  width: 184px;
}

.qa_parts01 .name {
  position: absolute;
  bottom: 3px;
  left: 3px;
  right: 3px;
  background: rgba(0,0,0,0.45);
  width: calc(100% - 6px);
  padding: 1rem 1rem;
  font-size: 1.5rem;
  text-align: center;
  border-radius: 0 0 10px 10px;
}
.qa_parts01 .name .large {
  font-size: 2rem;
	padding: 0 3px;
}

.qa_parts01 .a_ttl {
  padding: 0 0 2rem 5rem;
  font-size: 2.4rem;
  border-bottom: 2px solid #000;
  position: relative;
}
.qa_parts01 .a_ttl::before {
	content: "";
	position: absolute;
	top: 5px;
  left: 0;
  background: url("img/icon_a.png") left top no-repeat;
  background-size: contain;
	width: 40px;
	height: 30px;
}

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

@media screen and (max-width: 768px) {
  .qa_parts01 {
    max-width: 100%;
    margin: 6rem auto 6rem;
  }

  .qa_parts01 .q_ttl {
    padding: 0 0 1.5rem 4.5rem;
    font-size: 2rem;
    border-bottom: 1px solid #000;
  }
  .qa_parts01 .q_ttl::before {
    top: 0;
    width: 32px;
    height: 32px;
  }

  .qa_parts01 .a_block {
    max-width: 100%;
    margin: 3rem 0 0 auto;
    padding: 0 2rem 3rem 2rem;
  }

  .qa_parts01 .flexSP {
    align-items: flex-end;
  }

  .qa_parts01 .imgBox {
    position: relative;
    bottom: inherit;
    left: 0;
    width: 40%;
    margin: -2rem 0 0 -2rem;
  }

  .qa_parts01 .name {
    bottom: 2px;
    left: 2px;
    right: 2px;
    width: calc(100% - 4px);
    padding: 5px 5px;
    font-size: 3.2vw;
    border-radius: 0 0 5px 5px;
  }
  .qa_parts01 .name .large {
    font-size: 4.2vw;
  }

  .qa_parts01 .a_ttl {
    width: calc(60% + 2rem);
    padding: 1.5rem 0 1.5rem 2rem;
    font-size: 1.8rem;
    border-bottom: 1px solid #000;
  }
  .qa_parts01 .a_ttl::before {
    display: block;
    position: relative;
    top: -5px;
    left: 0;
    width: 28px;
    height: 21px;
  }

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



/*--------------------------------------
　related-article01-frame
---------------------------------------*/
.related-article01-frame {
  background: #fff;
  max-width: 910px;
  margin: 10rem auto 5rem;
  padding: 4rem 6rem 4rem;
  border: 3px solid #d9d9d9;
  border-radius: 20px;
}

.related-article01-title {
	font-size: 2.8rem;
}

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

ul.related-article01-list {
	margin: 2rem 0 0 2rem;
}
ul.related-article01-list li {
  margin: 0 0 1.5rem 0;
	padding: 0 0 0 0;
  font-size: 1.8rem;
	position: relative;
}
ul.related-article01-list li:last-child {
	margin: 0 0 0 0;
}
ul.related-article01-list li::before {
  display: none;
}
ul.related-article01-list li a {
  display: inline-block;
  padding: 0 3rem 0 0;
  font-weight: bold;
  position: relative;
}
ul.related-article01-list li a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  background: url("img/arrow_bk02.png") left top no-repeat;
  background-size: contain;
	width: 20px;
	height: 20px;
	margin-top: -10px;
}

@media screen and (max-width: 768px) {
  .related-article01-frame {
    max-width: 100%;
    margin: 6rem auto 3rem;
    padding: 2rem 2rem 3rem;
    border: 2px solid #d9d9d9;
    border-radius: 10px;
  }

  .related-article01-title {
    font-size: 1.8rem;
  }

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



/*--------------------------------------
　fixed_bnr
---------------------------------------*/
.fixed_bnr {
  position: fixed;
  bottom: 140px;
  right: 0;
  width: 180px;
  z-index: 9999;
  transition: all 0.3s ease;
}

.fixed_bnr a {
  display: block;
  background: #fff;
  padding:2rem 1rem 2rem;
  text-align: center;
  border: 2px solid #000;
  border-radius: 85px 85px 10px 10px;
  position: relative;
}
.fixed_bnr a::before {
	content: "";
	position: absolute;
  bottom: calc(100% - 45px);
  left: 50%;
  transform: translate(-50%,0);
  background: url("img/fixed_bnr_illust.png") left top no-repeat;
  background-size: contain;
	width: 95px;
	height: 130px;
  z-index: -1;
}
.fixed_bnr a::after {
	content: "";
	position: absolute;
  bottom: 10px;
	right: 10px;
  background: url("img/arrow_bl01.png") left top no-repeat;
  background-size: contain;
	width: 25px;
	height: 25px;
}
.fixed_bnr a:hover {
  background: #93cee5;
  opacity:1;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
}
.fixed_bnr a:hover::after {
  background: url("img/arrow_wh02.png") left top no-repeat;
  background-size: contain;
}

.fixed_bnr a:hover::before { 
  content: "";
  position: absolute;
  bottom: calc(100% - 45px);
  left: 50%;
  transform: translate(-50%,0);
  background: url("img/illust09.png") left top no-repeat;
  background-size: contain;
  width: 100px;
  height: 130px;
  z-index: -1;
}

.fixed_bnr .bnr_txt01 {
  font-size: 1.4rem;
  line-height: 2;
}
.fixed_bnr .bnr_txt01 span {
  font-size: 1.8rem;
}
.fixed_bnr .bnr_txt02 {
  font-size: 1.4rem;
	font-weight: bold;
}

.fixed_bnr.stop {
  opacity: 0;
}
.fixed_bnr.stop a {
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .fixed_bnr {
    bottom: 0;
    left: 45px;
    right: inherit;
    width: 62%;
  }

  .fixed_bnr a {
           padding: 5px 1.5rem 8px;
        border: 2px solid #000;
        border-radius: 80px 80px 5px 5px;
        background: #5daac8;
        color: #ffffff;
  }
     .fixed_bnr a::before {
        bottom: -6px;
        left: -45px;
        transform: translate(0, 0);
        background: url(img/fixed_bnr_illust.png) left top no-repeat;
        background-size: contain;
        width: 32%;
        height: 0;
        padding-top: 32%;
        z-index: 1;
    }
	.fixed_bnr a:hover::before { 
 bottom: -6px;
        left: -45px;
        transform: translate(0, 0);
  background: url("img/illust09.png") left top no-repeat;
   background-size: contain;
        width: 32%;
        height: 0;
        padding-top: 32%;
        z-index: 1;
}
	
  .fixed_bnr a::after {
    bottom: 5px;
        right: 5px;
        width: 14px;
        height: 16px;
        background: url(img/arrow_wh02.png) left top no-repeat;
        background-size: contain;
  }

  .fixed_bnr .bnr_txt01 {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .fixed_bnr .bnr_txt01 span {
    font-size: 1.6rem;
  }
  .fixed_bnr .bnr_txt02 {
    font-size: 1.3rem;
  }

}



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

.slick-slide:focus {
  outline: none;
}
.slick-slide a:focus {
  outline: none;
}
.slick-slide {
  display: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-slider div {
  transition: none;
}
.slick-vertical .slick-slide {
  border: none;
}


/* arrow */
.slide-arrow {
	display: block;
	position: absolute;
	top: 50%;
	z-index: 999;
	cursor: pointer;
}
.prev-arrow {
	left: 0;
}
.next-arrow {
	right: 0;
}


/* dots */
.slide-dots {
  text-align: center;
	margin: 2rem 0 0;
	padding: 0 0;
	font-size: 0;
}
.slide-dots li {
  display: inline-block;
  margin: 0 8px;
}
.slide-dots li button {
	background: #fff;
	width: 12px;
	height: 12px;
	box-sizing: border-box;
	border-radius: 50%;
  border: 1px solid #000;
  position: relative;
  text-indent: -9999px;
}
.slide-dots li.slick-active button {
  background: #000;
}


@media screen and (max-width: 768px) {
  /* dots */
  .slide-dots {
    margin: 1rem 0 0;
  }
  .slide-dots li {
    display: inline-block;
    margin: 0 5px;
  }
  .slide-dots li button {
    width: 10px;
    height: 10px;
  }
}
