@charset "utf-8";

/* GoogleFonts読み込み 下記のライセンス記述は削除禁止 */
/*
* "Noto Sans JP" licensed under the SIL Open Font License 1.1
* by https://fonts.google.com/specimen/Noto+Sans+JP
*/
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/NS-400.woff2") format("woff2"), url("fonts/NS-400.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 900;
  src: url("fonts/NS-900.woff2") format("woff2"), url("fonts/NS-900.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP vertical";
  font-style: normal;
  font-weight: 900;
  src: url("fonts/NS-900-vertical.woff2") format("woff2"), url("fonts/NS-900-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: 'Noto Sans JP', sans-serif;
	-webkit-text-size-adjust: none;
	word-break: break-word;
	word-wrap: break-word;
	overflow-wrap: break-word;
	overflow-x: hidden;
}

a {
	color: #000;
  text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha(opacity=60)";
}

img {
	max-width: 100%;
	width: 100%;
	height: auto;
}

strong {
	font-weight: 900;
}

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

.wh {
  color: #fff;
}

.c01 {
  color: #f76b01 ;
}
.c02 {
  color: #fd4538;
}
.c03 {
  color:#9079fd;
}
.c04 {
  color: #00bb9a;
}

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

.bd {
  border: 3px solid #000;
}

.br70 {
  border-radius: 70px;
}

.bs {
  box-shadow: 6px 6px 6px 0 rgba(0,0,0,0.12);
}

@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;
	}
  
  .bd {
    border: 2px solid #000;
  }

  .br70 {
    border-radius: 35px;
  }
}



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

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



/*--------------------------------------
　Header
---------------------------------------*/
header {
  background:#000000;
	width: 100%;
	min-width: 1200px;
}

header .sitenameWrap {
  font-size: 1.3rem;
	line-height: 1.5;
	text-align: right;
}

.sitename {
    background: #000000;
    display: inline-block;
    padding: 0.5rem 0.8rem;
    color: #ffffff;
    border-radius: 30px 0 0 30px;
}
.sitename a{
    color: #ffffff;
}

.header_lower {
  padding: 0 0 13rem;
  border-bottom: 4px solid #000;
  position: relative;
	background: #ffe047;
}

.header_lower .logoWrap {
  max-width: 1200px;
  margin: -1.5rem auto 0;
  position: relative;
  z-index: 1;
}
.header_lower .logo {
  width: 170px;
}
.header_lower .logo a {
  display: block;
}

.header_lower_slide {
  position: absolute;
  top: 70px;
  left: 0;
  background:#ffd400;
  width: 100%;
  padding: 2rem 0;
}
.header_lower_slide .slide_img {
  background: url("img/header_lower_slide.png") repeat-x;
  background-size: 1230px auto;
  width: 100%;
  height: 60px;
  -webkit-animation: slideAuto01 125s linear infinite;
  animation: slideAuto01 125s linear infinite;
}

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

  header .sitenameWrap {
    padding: 2px 5px;
    font-size: 1.2rem;
    text-align: center;
	        background: #000000;  
  }
	.sitename {
    background: #000000;
    display: inline-block;
    border-radius: 30px;
}


  .header_lower {
    padding: 0 0 9rem;
    border-bottom: 2px solid #000;
  }
  .header_lower .logoWrap {
    max-width: 100%;
    margin: 5px auto 0;
    padding: 0 1rem;
  }
  .header_lower .logo {
    width: 32%;
  }

  .header_lower_slide {
    top: 50px;
    padding: 1.5rem 0;
  }
  .header_lower_slide .slide_img {
    background: url("img/header_lower_slide.png") repeat-x;
    background-size: 615px auto;
    width: 100%;
    height: 30px;
    -webkit-animation: slideAuto01 60s linear infinite;
    animation: slideAuto01 60s linear infinite;
  }
}



/*--------------------------------------
　#hb-menu
---------------------------------------*/
/*----- hb-menu -----*/
#hb-menu {
  position: fixed;
	top: 15px;
	right: 0;
  background: url("img/hb_menu.png") left top no-repeat;
  background-size: contain;
	width: 166px;
	height: 97px;
	transition: .5s;
	cursor: pointer;
	z-index: 10000;
}
.hb-open #hb-menu {
	top: 30px;
  right: 20px;
  background: url("img/hb_close.png") left top no-repeat;
  background-size: contain;
}

/* 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: rgba(0,0,0,0.4);
	pointer-events: auto;
}

/*----- g-nav -----*/
.g-nav {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 9999;
}
.g-nav .g-nav-inner {
	position: fixed;
	top: 20px;
  bottom: 0;
	right: 0;
	background: #fff;
	width: 40%;
	max-height: calc(100% - 40px);
	padding: 0 0;
  border: 3px solid #000;
  border-radius: 70px;
	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%);
  scrollbar-width: none;
	z-index: 9999;
}
.g-nav .g-nav-inner::-webkit-scrollbar {
  display: none;
}
.hb-open .g-nav .g-nav-inner {
	position: fixed;
	top: 20px;
	right: 20px;
	transform: translateX(0);
	-ms-transform: translateX(0);
	-webkit-transform: translateX(0);
	transform: translateZ(0);
	-ms-transform: translateZ(0);
	-webkit-transform: translateZ(0);
}

.g-nav .hb_upper {
  background: #000;
  padding: 15rem 5rem 3rem;
}

.g-nav .btn-web a {
  max-width: 400px;
  margin: 0 auto 0;
}
.g-nav .btn-web a .sb {
  position: absolute;
  bottom: calc(100% + 5px);
  left: 50%;
  transform: translate(-50%,0);
  background: #fff;
  width: 100%;
  max-width: 90%;
  padding: 8px 1rem;
  color: #000;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.3;
  border: 3px solid #000;
  border-radius: 100px;
}
.g-nav .btn-web a .sb::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -6px;
  border: 6px solid transparent;
  border-top: 10px solid #fff;
  z-index: 2;
}
.g-nav .btn-web a .sb::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 15px solid #000;
  z-index: 1;
}
.g-nav .btn-web a .sb img {
  display: block;
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translate(0,-50%);
  width: 32px;
}

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


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


.hb_menu_title {
	padding: 2.5rem 0 2.5rem 1.5rem;
	border-bottom: 1px solid rgba(0,0,0,0.6);
}

.hb_menu_title_link {
	display: block;
	padding: 0 5rem 0 0;
	font-size: 1.6rem;
	font-weight: 900;
	line-height: 1.6;
	position: relative;
}
.hb_menu_title_link:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  background: url("img/arrow02.png") left top no-repeat;
  background-size: contain;
	width: 20px;
	height: 12px;
	margin-top: -6px;
}


.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;
}
.hb_menu_list_link::before {
	content: "";
	position: absolute;
	top: 12px;
	left: 0;
	background: rgba(0,0,0,0.2);
	width: 8px;
	height: 1px;
}


/*--------------------------------------
　SP #hb-menu
---------------------------------------*/
@media screen and (max-width: 768px) {
  /*----- hb-menu -----*/
  #hb-menu {
    top: 10px;
    right: -10px;
    width: 100px;
    height: 58px;
  }
  .hb-open #hb-menu {
    top: 15px;
    right: 5px;
  }

  /*----- g-nav -----*/
  .g-nav .g-nav-inner {
    top: 10px;
    width: calc(100% - 20px);
  	max-height: auto;
    border: 2px solid #000;
    border-radius: 35px;
  }
  .hb-open .g-nav .g-nav-inner {
    top: 10px;
    right: 10px;
  }

  .g-nav .hb_upper {
    padding: 12rem 2rem 3rem;
  }

  .g-nav .btn-web a {
    max-width: 90%;
  }
  .g-nav .btn-web a .sb {
    bottom: calc(100% + 5px);
    width: 100%;
    max-width: 70%;
    padding: 8px 12px 10px;
    font-size: 1.4rem;
    border: 2px solid #000;
  }
  .g-nav .btn-web a .sb::before {
    margin-left: -6px;
    border: 6px solid transparent;
    border-top: 9px solid #fff;
  }
  .g-nav .btn-web a .sb::after {
    margin-left: -8px;
    border: 8px solid transparent;
    border-top: 12px solid #000;
  }
  .g-nav .btn-web a .sb img {
    left: -11px;
    width: 28px;
  }

  .hb_menu_wrapper {
    padding: 2rem 2rem 6rem;
  }


  .hb_menu_title {
    padding: 1.5rem 2.5rem 1.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.6);
    position: relative;
  }
	.hb_menu_title:after {
		content: "";
		position: absolute;
		top: 50%;
		right: 5px;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		background: none;
		border-top: solid 1px #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 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 {
    width: 100%;
    margin: 0 0 0 0;
    border-bottom: 1px solid rgba(0,0,0,0.6);
  }
  .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: 0 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: 0 auto 0;
		padding: 0 2rem 0.5rem 0;
		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 0 0 0;
		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: #000;
	width: 100%;
	min-width: 1200px;
}

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


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


.l-footer-upper {
  display: flex;
  justify-content: space-between;
  padding: 5rem 6rem 5rem;
  position: relative;
  z-index: 0;
}
.l-footer-upper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: #202020;
  width: 100vw;
  height: 100%;
  min-width: 1200px;
  border-radius: 0 70px 0 0;
  z-index: -1;
}

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

.l-footer-about {
	width: calc(100% - 210px);
}
.l-footer-about .about_ttl {
  font-size: 2.2rem;
}
.l-footer-about .txt {
  margin: 2rem 0 0;
  font-size: 1.4rem;
  line-height: 2;
}
.l-footer-about .txt a  {
   color: #fff;
	    text-decoration: underline;
	font-weight: 900;
}
.l-footer-about .btn-link a {
  margin: 2rem 0 0;
  color: #fff;
}
.l-footer-about .btn-link a::after {
  background: url("img/arrow03.png") left top no-repeat;
  background-size: contain;
}


.l-footer-flex {
  display: flex;
  justify-content: space-between;
  margin: 6rem 0 0;
}

.l-footer-right {
  width: 740px;
  order: 2;
}

.l-footer-menu-wrapper {
  
}


.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 #fff;
	position: relative;
}

.l-footer-menu__title__link {
	display: inline-block;
	padding: 0 3rem 0 0;
	color: #fff;
  font-size: 1.6rem;
	font-weight: 900;
	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;
  background: url("img/arrow03.png") left top no-repeat;
  background-size: contain;
	width: 20px;
	height: 12px;
	margin-top: -6px;
}


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

.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;
	padding: 0 3rem 0 0;
	color: #fff;
	font-size: 1.4rem;
	line-height: 1.6;
	position: relative;
}
.l-footer-menu__list__link:after {
  content: "";
	position: absolute;
	top: 50%;
	right: 0;
  background: url("img/arrow03.png") left top no-repeat;
  background-size: contain;
	width: 20px;
	height: 12px;
	margin-top: -6px;
}


.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-left {
  width: 390px;
  order: 1;
}

.l-footer-area .menseki {
	background: none;
	max-width: 100%;
  margin: 0 auto 0;
  padding: 0 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 .menseki a {
    color: #fff;
	text-decoration: underline;
}

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


.l-footer-copy-wrapper {
  background: #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: 1200px;
  margin: 0 auto;
  padding: 1.5rem 0;
  color: #fff;
	font-size: 1.3rem;
	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 #fff;
	border-right: 1px solid #fff;
  -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: 3rem 1.5rem 4rem;
}


  .l-footer-upper {
    display: block;
    padding: 2rem 1.5rem 3rem 0;
  }
  .l-footer-upper::after {
    min-width: 100%;
    border-radius: 0 35px 0 0;
  }

  .l-footer-logo {
    width: 35%;
    margin: auto;
  }

  .l-footer-about {
    width: 100%;
    margin: 2rem 0 0;
  }
  .l-footer-about .about_ttl {
    font-size: 1.8rem;
    text-align: center;
  }
  .l-footer-about .txt {
    margin: 1.5rem 0 0;
    font-size: 1.4rem;
    line-height: 1.8;
  }
  .l-footer-about .btn-link a {
    margin: 1.5rem 0 0;
  }


  .l-footer-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 3rem 0 0;
  }

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


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


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

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


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

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

  .l-footer-menu__list__link {
    padding: 1.5rem 2.5rem 1.5rem 1.5rem;
  }
  .l-footer-menu__list__link:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 5px;
    background: none;
    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.6);
  }

  .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-left {
    width: 100%;
  }

  .l-footer-area .menseki {
    background: #383838;
    padding: 1.5rem 1.5rem;
    font-size: 1rem;
  }


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


  .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: 30px;
  right: 20px;
  width: 90px;
  z-index: 0;
}

.l-pagetop__link {
  display: block;
}

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



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

.contents {
  width: 100%;
  margin: auto;
  position: relative;
  z-index: 0;
}

.contents_inner {
  overflow: hidden;
}

.contents_inner .wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 0 26rem;
  position: relative;
}
.contents_inner .wrap::after {
  content: "";
  position: absolute;
  bottom: -23px;
  right: -10px;
  background: url("img/illust01.png") left bottom no-repeat;
  background-size: contain;
  width: 350px;
  height: 350px;
}

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

@media screen and (max-width: 768px) {
  .contents_wrap {
    min-width: 100%;
  }
  
  .contents_inner .wrap {
    max-width: 100%;
    padding: 0 1.5rem 15rem;
  }
  .contents_inner .wrap::after {
height: 42px;
        right:-136px;
        padding-top: calc(65%* 330 / 590);
  }
}



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


.contents .h1Wrap {
  background: #000;
  max-width: 1200px;
  margin: -9rem auto 4rem;
  padding: 4rem 5rem 4rem;
  border-radius: 0 60px 0 0;
  box-shadow: 6px 6px 6px 0 rgba(0,0,0,0.12);
  position: relative;
  z-index: 0;
}
.contents .h1Wrap::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  background: #000;
  width: 100vw;
  height: 100%;
  min-width: 1200px;
  box-shadow: 6px 6px 6px 0 rgba(0,0,0,0.12);
  z-index: -1;
}
.contents h1 {
  margin: 1rem 0 0;
	color: #fff;
	font-size: 4.5rem;
	font-weight: 900;
	line-height: 1.4;
}
.contents .h1Wrap .operation {
  font-size: 1.2rem;
  margin: 2rem 0 0;
  color: #717171;
}


.contents h2 {
	background: #f8f6f0;
  max-width: 1100px;
	margin: 8rem auto 3rem;
	padding: 2rem 3rem 2rem 3rem;
	font-size: 3.6rem;
  border: 3px solid #000;
  border-left: 10px solid #000;
  border-radius: 0 20px 0 0;
	position: relative;
}

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


.contents h3 {
  background: #fff;
  max-width: 1100px;
	margin: 5rem auto 2rem;
  padding: 1rem 2rem 1rem;
	font-size: 3rem;
	border-bottom: 2px solid #000000;
	border-radius: 0 20px 0 0;
}

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


.contents h4 {
  max-width: 1100px;
	margin: 4rem auto 2rem;
  padding: 0 0 0 2rem;
	font-size: 2.4rem;
  position: relative;
}
.contents h4::before {
	content: "";
	background: #fd4538;
	position: absolute;
	top: 9px;
	left: 0;
  background: #fd4538;
	width: 2px;
	height: calc(100% - 1.5rem);
}

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

@media screen and (max-width: 768px) {
  .contents .h1Wrap {
    max-width: calc(100% - 2rem);
    margin: -7.5rem 0 0;
    padding: 2rem 2rem 2rem;
    border-radius: 0 30px 0 0;
  }
  .contents h1 {
    font-size: 2.8rem;
  }
  .contents .h1Wrap .operation {
    margin: 1rem 0 0;
  }


  .contents h2 {
    max-width: 100%;
    margin: 4rem auto 2rem;
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    font-size: 2.2rem;
    border: 2px solid #000;
    border-left: 5px solid #000;
    border-radius: 0 10px 0 0;
  }

  .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: 25px;
    height: 16px;
    margin-top: -8px;
  }


  .contents h3 {
    max-width: 100%;
    margin: 3rem auto 2rem;
    padding: 1rem 1.5rem 1rem;
    font-size: 1.8rem;
 border-radius: 0 10px 0 0;
  }

  .contents h3 a {
    padding: 0 3.5rem 0 0;
  }
  .contents h3 a::before {
    top: -10px;
    left: -20px;
    width: calc(100% + 4rem);
    height: calc(100% + 2rem);
  }
  .contents h3 a::after {
    width: 20px;
    height: 12px;
    margin-top: -6px;
  }


  .contents h4 {
    max-width: 100%;
    margin: 3rem auto 2rem;
    padding: 0 0 0 1.5rem;
    font-size: 1.6rem;
  }
  .contents h4::before {
    top: 6px;
    width: 2px;
    height: calc(100% - 1rem);
  }

  .contents h4 a {
    padding: 0 3.5rem 0 0;
  }
  .contents h4 a::after {
    width: 20px;
    height: 12px;
    margin-top: -6px;
  }
}



/*--------------------------------------
　テキスト
---------------------------------------*/
.contents p {
  max-width: 1100px;
	margin: 2rem auto 2rem;
	font-size: 1.5rem;
	line-height: 2;
}

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

.txt_bold {
	color: #f63527;
	font-weight: 900;
}
.txt_bold a{
    color: #f63527;
    font-weight: 900;
}
.marker {
  border-bottom: 2px solid #ff8224;
	font-weight: 900;
}


.caption {
  max-width: 1100px;
	margin: 1rem auto 0 auto!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 {
    max-width: 100%;
		margin: 2rem 0 2rem;
		line-height: 1.8;
	}
	
	.caption {
    max-width: 100%;
		margin: 1rem 0 0 0!important;
    font-size: 1rem;
	}
}



/*--------------------------------------
　リスト
---------------------------------------*/
/*----- ulリスト -----*/
.contents ul {
  max-width: 1100px;
	margin: 4rem auto 4rem;
}
.contents ul li {
  margin: 0 0 1rem 0;
  padding: 0 0 0 2rem;
	font-size: 1.5rem;
  line-height: 1.8;
	position: relative;
}
.contents ul li:last-child {
  margin: 0 0 0 0;
}

.contents ul li::before {
  content: "";
  display: block;
	position: absolute;
  top: 12px;
  left: 0;
	background: #ff8224;
  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;
}

.contents ol{
        max-width: 1100px;
    margin: 4rem auto 4rem;
    counter-reset: number;
}

.contents ol:not([class]) li {
    margin: 0 0 1rem 0;
    padding: 0 0 0 2rem;
    font-size: 1.5rem;
    line-height: 1.8;
    position: relative;
    counter-increment: number;
}

.contents ol:not([class]) li::before {
   content: counter(number, decimal-leading-zero);
    color: #29d1b5;
    font-weight: bold;
    text-align: center;
    position: absolute;
    top: 0;
    left: -2px;
}



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



/*--------------------------------------
　リンク
---------------------------------------*/
.btn-web a,
.btn-internal a {
	display: block;
	max-width: 490px;
	margin: 4rem auto 4rem;
	padding: 2rem 7rem;
	box-sizing: border-box;
	color: #fff;
	font-size: 1.8rem;
	font-weight: 900;
	text-align: center;
	line-height: 1.5;
	border-radius: 100px;
	text-decoration: none!important;
	position: relative;
}
.btn-web a .small,
.btn-internal a .small {
  font-size: 1.5rem;
	font-weight: 900;
}
.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: #f63527;
}
.btn-web a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
  background: url("img/icon_link_off.png") left top no-repeat;
  background-size: contain;
	width: 32px;
	height: 32px;
	margin-top: -16px;
  transition: all 0.3s ease;
}
.btn-web a:hover {
  background: #fff;
  color: #f63527;
  box-shadow: 0 0 40px 0 rgba(246,53,39,0.8);
}
.btn-web a:hover::after {
  background: url("img/icon_link_on.png") left top no-repeat;
  background-size: contain;
}


/*----- btn-internal（内部リンク） -----*/
.btn-internal a {
	background: #000;
  border: 3px solid #fff;
}
.btn-internal a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
  background: #fff;
	width: 14px;
	height: 14px;
	margin-top: -7px;
  border-radius: 50%;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.btn-internal a:hover {
  background: #fff;
  color: #000;
  border: 3px solid #000;
}
.btn-internal a:hover::after {
  background: #000;
}


/*----- btn-link（テキストリンク） -----*/
.btn-link {
  max-width: 1100px;
  margin: auto;
	text-align: right;
}
.btn-link a {
	display: inline-block;
	margin: 4rem 0 4rem;
	padding: 0 3rem 0 0;
	font-size: 1.4rem;
  font-weight: 900;
	line-height: 1.5;
	text-decoration: underline;
	position: relative;
}
.btn-link a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  background: url("img/arrow02.png") left top no-repeat;
  background-size: contain;
	width: 20px;
	height: 12px;
	margin-top: -6px;
}
.btn-link a:hover {
	text-decoration: none;
}


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


.btnBox {
 display: flex;
    justify-content: center;
    z-index: 1;
    position: relative;
}
.btnBox > div {
  display: table;
  width: 380px;
  margin: 0 1.5rem;
}
.btnBox > div a {
  display: table-cell;
  vertical-align: middle;
  max-width: 100%;
  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.4rem;
  }
  .btn-web a .small,
  .btn-internal a .small {
    font-size: 1.3rem;
  }
  

  /*----- btn-web（外部リンク） -----*/
  .btn-web a::after {
    right: 15px;
    width: 22px;
    height: 22px;
    margin-top: -11px;
  }
  .btn-web a:hover {
    box-shadow: 0 0 25px 0 rgba(246,53,39,0.6);
  }


  /*----- btn-internal（内部リンク） -----*/
  .btn-internal a {
    border: 2px solid #fff;
  }
  .btn-internal a::after {
    right: 15px;
    width: 10px;
    height: 10px;
    margin-top: -5px;
  }
  .btn-internal a:hover {
    border: 2px solid #000;
  }


  /*----- btn-link（テキストリンク） -----*/
  .btn-link {
    max-width: 100%;
  }
  .btn-link a {
    margin: 3rem 0 3rem;
    padding: 0 2.5rem 0 0;
  }
  .btn-link a::after {
    width: 16px;
    height: 10px;
    margin-top: -5px;
  }
  
	
	/*----- btn-tel（電話ボタン） -----*/
	.btn-tel a {
		display: block;
		background: #ff8224;
		max-width: 90%;
		margin: 3rem auto 3rem;
		padding: 1.8rem 5rem;
		box-sizing: border-box;
		color: #fff;
		font-size: 1.5rem;
		font-weight: 900;
		text-align: center;
		line-height: 1.5;
		border-radius: 100px;
		text-decoration: none!important;
		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 {
    display: block;
  }
  .btnBox > div {
    display: block;
    width: 90%;
    margin: 0 auto 1.5rem;
  }
  .btnBox > div:last-child {
    margin: 0 auto 0;
  }
  .btnBox > div a {
    display: block;
  }
}



/*--------------------------------------
　Table
---------------------------------------*/
table {
	background: #fff;
  width: 100%;
  max-width: 1100px;
  margin: 4rem auto 4rem;
	box-sizing: border-box;
	border-collapse: collapse;
  border-spacing: 0;
  border: 2px solid #585858;
}

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

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

@media screen and (max-width: 768px) {
	table {
    max-width: 100%;
		margin:4rem 0 4rem;
    border: 1px solid #585858;
	}

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

	table td {
		display: block;
		padding: 1.2rem;
		font-size: 1.4rem;
		border-left: none;
		border-bottom: 1px solid #585858;
	}
	
	table tbody tr:last-child td:last-child {
		border-bottom: none;
	}
  
  .table_parts02 table {
    display: table;
  }
  .table_parts02 table th {
    display: table-cell;
		border-left: 1px solid #585858;
  }
  .table_parts02 table td {
    display: table-cell;
		border-left: 1px solid #585858;
  }
	.scroll {
        position: static;
        overflow-x: scroll;
        width: 100%;
    }
	.scroll table{
        width: 600px;
        max-width: none;
		margin: 2rem 0px;
    }
	.scteki{
       text-align:center;
		margin: auto;
    }
}



/*--------------------------------------
　画像＋テキスト
---------------------------------------*/
.float-wrap {
  max-width: 1100px;
	margin: 5rem auto 5rem;
	box-sizing: border-box;
}

.float-img {
  position: relative;
}
.float-wrap ul {
    margin: 2rem auto 2rem;
}

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

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

.float-img .caption {
  max-width: 100%;
	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;
	font-size: 2.4rem;
	font-weight: 900;
	line-height: 1.5;
}
.float-wrap.ct .catch {
  text-align: center;
}

.float-wrap p {
  max-width: 100%;
	margin: 2rem 0 2rem;
}

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

  .float-img .flame img {
    width: 100%;
  }

  .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 {
    max-width: 100%;
    margin: 1.5rem 0 1.5rem;
  }
}



/*--------------------------------------
　toc_parts
---------------------------------------*/
.toc_parts {
  max-width: 1100px;
	margin: 7rem auto 6rem;
  position: relative;
}

.toc_parts .toc_ttl {
  margin: 0 0 -2rem;
  position: relative;
}
.toc_parts .toc_ttl::after {
  content: "";
  position: absolute;
  top: 28px;
  left: 200px;
  width: 100vw;
  min-width: 1100px;
	border-top: 4px solid #000;
}
.toc_parts .toc_ttl img {
  display: block;
  width: 180px;
  margin: 0 0 0 -1.5rem;
}

#toc {
  display: none;
  width: 100vw;
  padding: 6rem 6rem 6rem;
  position: relative;
}
#toc::before {
  content: "";
    position: absolute;
    bottom: 204px;
    left: 929px;
    background: none;
    background-size: contain;
    width: 269px;
    height: 490px;
    z-index: -1;
}
#toc::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #f7f7f7;
  width: 100vw;
  height: 100%;
  min-width: 1100px;
  z-index: -1;
}
#toc ul.chapter {
  max-width: 100%;
	margin: 0 0 0;
}
#toc ul.chapter li {
  margin: 0 0 1rem 0;
	padding: 0 0 0 3.5rem;
  font-size: 1.6rem;
  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: -8px;
  left: 0;
	background: none;
  width: inherit;
  height: inherit;
  border-radius: 0;
	color: #917aff;
	font-size: 2rem;
  font-weight: 900;
}
#toc ul.chapter li a {
	display: block;
  font-weight: 900;
	text-decoration: none;
}
#toc .chapter .chapter {
  max-width: 100%;
  margin: 0 0 3rem 3.5rem;
}
#toc .chapter .chapter li {
	margin: 0 0 1rem 0;
	padding: 0 0 0 1.2rem;
	font-size: 1.4rem;
	position: relative;
	counter-increment: none;
}
#toc .chapter .chapter li::before {
	content: "";
	position: absolute;
	top: 11px;
	left: 0;
  background: #000;
	width: 5px;
	height: 1px;
}
#toc .chapter .chapter li a {
  font-weight: 400;
}
#toc ul.chapter li br {
	display: none;
}

.toc_parts .acc_btn {
	position: absolute;
  top: 0;
	left: 0;
	background: #000;
	width: 190px;
	margin: 0 0 0 18rem;
	padding: 1.8rem 5rem;
	box-sizing: border-box;
	font-size: 1.5rem;
	font-weight: 900;
	text-align: center;
	line-height: 1.5;
	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: 15px;
	background: #fff;
	width: 15px;
	height: 2px;
	margin-top: -1px;
	transition: all 0.4s;
}
.toc_parts .acc_btn::after {
	transform: rotate(90deg);
}
.toc_parts .acc_btn.open::before {
  display: none;
}
.toc_parts .acc_btn.open::after {
  transform: rotate(180deg);
}
.toc_parts .acc_btn span {
  color: #fff;
	font-weight: 900;
}
.toc_parts .acc_btn span:before {
	content: "目次を開く";
}
.toc_parts .acc_btn.open span:before {
	content: "目次を閉じる";
}

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

  .toc_parts .toc_ttl {
    margin: 0 0 -4%;
  }
  .toc_parts .toc_ttl::after {
    top: 18px;
    left: 35%;
    width: 100%;
    min-width: 100%;
    border-top: 2px solid #000;
  }
  .toc_parts .toc_ttl img {
    width: 35%;
    margin: 0 0 0 -1rem;
  }

  #toc {
    width: calc(100% + 1.5rem);
    padding: 4rem 2rem 3rem;
  }
  #toc::before {
    top: -90px;
    bottom: inherit;
    left: inherit;
    right: -15px;
    background: none;
    background-size: contain;
    width: 40%;
    height: 0;
    padding-top: calc(20%*490/240);
    z-index: -1;
  }
  #toc::after {
    width: calc(100% + 1.5rem);
    min-width: 100%;
  }

  #toc ul.chapter li {
    margin: 0 0 1.5rem 0;
    padding: 0 0 0 3.2rem;
    font-size: 1.5rem;
  }
  #toc ul.chapter li::before {
    top: -5px;
    font-size: 1.8rem;
  }
  #toc .chapter .chapter {
    margin: 0 0 2rem 3.2rem;
  }

  .toc_parts .acc_btn {
    left: 35%;
    width: 45%;
    margin: 0 0 0 0;
    padding: 1.2rem 3rem;
    font-size: 3.5vw;
  }
  .toc_parts .acc_btn::before,
  .toc_parts .acc_btn::after {
    right: 10px;
    width: 12px;
    height: 1px;
  }
}



/*--------------------------------------
　check_ttl
---------------------------------------*/
.check_ttl {
  max-width: 1100px;
  margin: 6rem auto 4rem;
}

.check_ttl .eng {
	display: flex;
	align-items: center;
	justify-content: center;
  position: relative;
}
.check_ttl .eng::after {
	content: "";
	display: block;
	margin-top: 15px;
	margin-left: 20px;
	border-top: 4px solid #000;
	flex-grow: 1;
}
.check_ttl .eng img {
  width: 130px;
}

.check_ttl h2,
.check_ttl h3,
.check_ttl h4 {
  background: none;
  max-width: 100%;
  margin: 1rem 0 0;
  padding: 0 0 0 5rem;
  border: none;
}
.check_ttl h2::before,
.check_ttl h3::before,
.check_ttl h4::before {
  display: none;
}

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

  .check_ttl .eng::after {
    margin-top: 10px;
    margin-left: 10px;
    border-top: 2px solid #000;
  }
  .check_ttl .eng img {
    width: 30%;
  }

  .check_ttl h2,
  .check_ttl h3,
  .check_ttl h4 {
    margin: 5px 0 0;
    padding: 0 0 0 0;
  }
}



/*--------------------------------------
　summary_parts
---------------------------------------*/
.summary_parts {
  max-width: 1100px;
  margin: 10rem auto 10rem;
}

.summary_parts .upper {
  display: flex;
  align-items: center;
  margin: 0 0 0 6rem;
}

.summary_parts .logo {
  width: 150px;
  margin: 0 1rem 0 0;
}

.summary_parts .eng {
  width: 340px;
}

.summary_parts .summary_block {
  margin: -6rem 0 0;
  border: 3px solid #000;
  border-radius: 0 70px 0 70px;
  box-shadow: 10px 10px 0 0 #ffc79d;
}

.summary_parts .txtBox {
  padding: 7rem 6rem 5rem;
}

.summary_parts .cc {
  font-size: 2.8rem;
}

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

.summary_parts .btnWrap {
  background: #000;
  padding: 5rem 5rem;
  border-radius: 0 0 0 67px;
}

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

  .summary_parts .upper {
    margin: 0 0 0 1rem;
  }

  .summary_parts .logo {
    width: 25%;
    margin: 0 5px 0 0;
  }

  .summary_parts .eng {
    width: 55%;
  }

  .summary_parts .summary_block {
    margin: -10% 0 0;
    border: 2px solid #000;
    border-radius: 0 35px 0 35px;
    box-shadow: 5px 5px 0 0 #ffc79d;
  }

  .summary_parts .txtBox {
    padding: 4rem 2rem 3rem;
  }

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

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

  .summary_parts .btnWrap {
    padding: 2rem 2rem;
    border-radius: 0 0 0 28px;
  }
}



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

.sv_parts .eng {
  width: 160px;
}

.sv_parts .btn-link a {
    margin: 2rem 0 0;
    color: #fff;
}

.sv_parts .btn-link a::after {
    background: url(img/arrow03.png) left top no-repeat;
    background-size: contain;
}

.sv_parts .sv_ttl {
  display: flex;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
}
.sv_parts .sv_ttl .sub {
  display: flex;
  align-items: center;
  background: #ffe047;
  padding: 1rem 1.5rem;
  font-size: 1.3rem;
  border: 3px solid #000;
  border-right: none;
}
.sv_parts .sv_ttl .ttl {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 1rem 1.5rem;
  font-size: 2rem;
  border: 3px solid #000;
  border-left: 3px solid #000;
}

.sv_parts .sv_block {
  background: #f8f6f0;
  margin: -3rem 0 0;
  padding: 6rem 0 0;
  border-radius: 0 70px 0 70px;
  box-shadow: 10px 10px 0 0 #ffe047;
  position: relative;
}

.sv_parts .logo_maruhan {
  position: absolute;
  top: -40px;
  right: 20px;
  width: 95px;
}
.sv_parts .logo_maruhan::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: url("img/logo_maruhan02.png") left top no-repeat;
  background-size: contain;
  width: 130px;
  height: 130px;
  margin: -65px 0 0 -65px;
  animation: rotate 15s linear infinite;
}
@keyframes rotate {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(-360deg);
  }
}

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

.sv_parts .boxL {
  width: 380px;
  position: relative;
  z-index: 1;
}

.sv_parts .imgBox img {
  border: 3px solid #000;
}
.sv_parts .caption {
  color: #888;
	padding-left: 2rem;
}

.sv_parts .boxR {
  width: calc(100% - 430px);
}

.sv_parts .c_name {
  padding: 0 10rem 3rem 0;
  font-size: 2.8rem;
}

.sv_parts .txtBox {
  background: #000;
  padding: 4rem 10rem 6rem 0;
  position: relative;
  z-index: 0;
}
.sv_parts .txtBox .txt_bold {
    color: #f4cd0b;
}

.sv_parts .txtBox::before {
  content: "";
    position: absolute;
    top: 0;
    right: 100%;
    background: #000 url(img/sec03_illust02.png) no-repeat;
    background-position:12px 205px;
    width: 430px;
    background-size: 85%;
    height: 100%;
    border-radius: 0 0 0 70px;
    z-index: -1;
}

.sv_parts .txt {
  margin: 0 0 0;
	font-size: 1.6rem;
}

.sv_parts .btnBox {
  width: calc(100% + 150px);
  margin: 4rem 0 0 -12rem;
}

@media screen and (max-width: 768px) {
  .sv_parts {
    margin: 6rem 0 6rem;
  }
.sv_parts .txt {
	font-size: 1.5rem;
}
  .sv_parts .eng {
    width: 45%;
	margin-left: -1rem;  
  }

  .sv_parts .sv_ttl {
    max-width: 75%;
	   margin: 0 0 0 -2rem;
  }
  .sv_parts .sv_ttl .sub {
    justify-content: center;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    border: 2px solid #000;
    border-right: none;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    font-family: "Noto Sans JP vertical";
	          background: #ffe047;
  }
  .sv_parts .sv_ttl .ttl {
    padding: 1rem 3rem 1rem 3rem;
    font-size: 1.8rem;
    border: 2px solid #000;
    border-left: 2px solid #000;
  }

  .sv_parts .sv_block {
    width: calc(100% + 3rem);
    margin: -4rem 1.5rem 0 -1.5rem;
    padding: 7rem 0 0;
    border-radius: 0 35px 0 35px;
    box-shadow: 5px 5px 0 0 #ffe047;
  }
  

  .sv_parts .logo_maruhan {
    top: inherit;
    bottom: calc(100% - 30px);
    right: 28px;
        width: 20%;
  }
  .sv_parts .logo_maruhan::after {
    width: 122%;
    height: 0;
    margin: -61% 0 0 -61%;
    padding-top: 122%;
    animation: rotate 10s linear infinite;
  }
  
  .sv_parts .flexBox {
    display: block;
  }

  .sv_parts .boxL {
    width: 100%;
  }

  .sv_parts .imgBox {
    width: 80%;
    margin: auto;
  }
  .sv_parts .imgBox img {
    border: 2px solid #000;
  }

  .sv_parts .boxR {
    width: 100%;
  }

  .sv_parts .c_name {
    margin: 2rem 0 0;
    padding: 0 1.5rem 2rem 1.5rem;
    font-size: 2rem;
  }

  .sv_parts .txtBox {
    padding: 3rem 1.5rem 4rem 1.5rem;
    border-radius: 0 0 0 35px;
  }
  .sv_parts .txtBox::before {
    display: none;
  }

  .sv_parts .btnBox {
    width: 100%;
    margin: 3rem 0 0 0;
  }
}



/*--------------------------------------
　comment_parts
---------------------------------------*/
.comment_parts {
  max-width: 1100px;
  margin: 10rem auto 10rem;
}

.comment_parts .comment_item {
  position: relative;
}

.comment_parts .imgWrap {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0,-50%);
  width: 185px;
  text-align: center;
}

.comment_parts .nameWrap {
  margin: 5px 0 0;
}
.comment_parts .name {
  background: #000;
  padding: 5px 1rem;
  font-size: 1.6rem;
}

.comment_parts .txtBox {
  background: #fff;
  max-width: 1010px;
  margin: 0 0 0 auto;
  padding: 4rem 6rem 4rem 13rem;
  border: 3px solid #000;
  border-radius: 20px;
  box-shadow: 6px 6px 6px 0 rgba(0,0,0,0.12);
}

.comment_parts .txt {
  margin: 0 0 0;
}
.comment_parts .check_ttl {
    margin-bottom: 3rem;
}

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

  .comment_parts .imgWrap {
    display: flex;
    align-items: center;
    position: relative;
    top: inherit;
    left: inherit;
    transform: translate(0,0);
    width: 100%;
    text-align: left;
  }

  .comment_parts .imgBox {
    width: 35%;
  }

  .comment_parts .nameWrap {
    width: 65%;
    margin: 0 0 0 1rem;
  }
  .comment_parts .name {
    display: inline-block;
    padding: 3px 8px;
    font-size: 1.4rem;
  }

  .comment_parts .txtBox {
    max-width: 100%;
    margin: -3rem 0 0 0;
    padding: 4rem 2rem 3rem 2rem;
    border: 2px solid #000;
    border-radius: 10px;
  }
	.comment_parts .check_ttl {
    margin-bottom: 1rem;
}
}



/*--------------------------------------
　interview_parts
---------------------------------------*/
.interview_parts {
  margin: 16rem auto 6rem;
    max-width: 1100px;
}

.interview_parts .interview_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ecfffc;
  padding: 0 5rem 3rem;
  border: 3px solid #000;
  border-radius: 20px;
  box-shadow: 6px 6px 6px 0 rgba(0,0,0,0.12);
}

.interview_parts .imgWrap {
  width: 210px;
  margin: -10rem 0 0;
  text-align: center;
}

.interview_parts .c_name {
  margin: 1rem 0 0;
  font-size: 1.4rem;
}

.interview_parts .name {
 background: #000;
    margin: 5px auto 0;
    padding: 5px 1rem;
    font-size: 1.4rem;
    width: 80%;
}

.interview_parts .txtBox {
  width: calc(100% - 250px);
  margin: -3rem 0 0;
}

.interview_parts .cc {
  display: inline-block;
  background: #fff;
  padding: 1rem 3rem;
  font-size: 2.4rem;
  border: 3px solid #000;
  position: relative;
}
.interview_parts .cc::after {
	content: "";
	position: absolute;
  bottom: calc(100% - 25px);
  left: calc(100% - 25px);
  background: url("img/emoji01.png") left top no-repeat;
  background-size: contain;
	width: 50px;
	height: 50px;
}

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

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

  .interview_parts .interview_item {
    display: block;
    padding: 2rem 2rem 3rem;
    border: 2px solid #000;
    border-radius: 10px;
  }

  .interview_parts .imgWrap {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 0 0;
    text-align: left;
  }
  
  .interview_parts .imgBox {
    width: 35%;
  }

  .interview_parts .nameWrap {
    width: 65%;
    margin: 0 0 0 1rem;
  }
  
  .interview_parts .c_name {
    margin: 0 0 0;
    font-size: 1.6rem;
  }
  
  .interview_parts .name {
    display: inline-block;
    padding: 3px 8px;
    font-size: 1.4rem;
  }

  .interview_parts .txtBox {
    width: 100%;
    margin: 2rem 0 0;
  }

  .interview_parts .cc {
    display: block;
    padding: 8px 1.5rem;
    font-size: 1.8rem;
    border: 2px solid #000;
  }
  .interview_parts .cc::after {
    bottom: calc(100% - 20px);
    left: calc(100% - 20px);
    width: 40px;
    height: 40px;
  }
  
  .interview_parts .txt {
    margin: 2rem 0 0;
  }
}



/*--------------------------------------
　schedule_parts
---------------------------------------*/
.schedule_parts {
  max-width: 1100px;
  margin: 6rem auto 6rem;
}

.schedule_parts .eng {
  width: 370px;
  margin: 0 0 -3px auto;
}

.schedule_parts .schedule_block {
  padding: 0 5rem 4rem;
    border-top: 3px solid #000;
    background: #f5f5f5;
}

.schedule_parts .name {
  display: inline-block;
  background: #000;
  margin: 0 0 0 -5rem;
  padding: 5px 1rem;
  font-size: 1.6rem;
  position: relative;
  top: -20px;
}

.schedule_parts .cc {
  margin: 2rem 0 2rem;
  font-size: 2.4rem;
}

.schedule_parts .schedule_item {
  display: block;
  justify-content: space-between; 
  align-items: flex-start;
  padding: 1.5rem 0 1.5rem 6rem;
  border-bottom: 2px solid #eaeaea;
  position: relative;
}
.schedule_parts .schedule_item:last-child {
  border-bottom: none;
}

.schedule_parts .item_inner {
  display: flex;
  justify-content: space-between; 
  width: 38%;
}

.schedule_parts .time {
  width: 24%;
  font-size: 2rem;
  position: relative;
}
.schedule_parts .time::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% + 45px);
  transform: translate(0,-50%);
  background: #ffe047;
  width: 16px;
  height: 16px;
  border: 2px solid #000;
  border-radius: 50%;
  box-sizing: border-box;
  z-index: 1;
}
.schedule_parts .time::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% + 15px);
  transform: translate(0,-50%);
  background: #000;
  width: 30px;
  height: 2px;
  box-sizing: border-box;
}

.schedule_parts .job {
  width: 76%;
  font-size: 2rem;
}

.schedule_parts .txt {
    width: 98%;
    margin: 1.5rem 0 0;
}

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

  .schedule_parts .eng {
    width: 60%;
    margin: 0 0 -2px auto;
  }

  .schedule_parts .schedule_block {
    padding: 0 0 2rem;
    border-top: 2px solid #000;
  }

  .schedule_parts .name {
    margin: 0 0 0 0;
    padding: 3px 8px;
    font-size: 1.4rem;
    top: 0;
  }

  .schedule_parts .cc {
    margin:1.5rem;
    font-size: 1.8rem;
  }

  .schedule_parts .schedule_item {
    display: block;
    padding: 1.5rem 0 1.5rem 4rem;
    border-bottom: 1px solid #eaeaea;
  }
  
  .schedule_parts .item_inner {
    width: 100%;
  }

  .schedule_parts .time {
    width: 20%;
    font-size: 1.6rem;
  }
  .schedule_parts .time::before {
    right: calc(100% + 25px);
    width: 12px;
    height: 12px;
    border: 1px solid #000;
  }
  .schedule_parts .time::after {
    right: calc(100% + 10px);
    width: 25px;
    height: 1px;
  }

  .schedule_parts .job {
    width: 75%;
    font-size: 1.6rem;
  }

  .schedule_parts .txt {
    width: 100%;
    margin: 1rem 0 0;
  }

  
  .acc_parts {
    position: relative;
  }

  .acc_parts .acc_btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    max-width: 60%;
    margin: auto;
    padding: 1.5rem 5rem;
    box-sizing: border-box;
    font-size: 1.4rem;
    text-align: center;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
  }
  .acc_parts .acc_btn::before,
  .acc_parts .acc_btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    background: #fff;
    width: 15px;
    height: 1px;
    margin-top: -1px;
    transition: all 0.3s ease;
  }
  .acc_parts .acc_btn:after {
    transform: rotate(90deg);
  }
  .acc_parts .acc_btn.is-open::before {
    display: none;
  }
  .acc_parts .acc_btn.is-open::after {
    transform: rotate(180deg);
  }
  .acc_parts .acc_btn span::before {
    content: "もっと見る";
    color: #fff;
    font-weight: 900;
  }
  .acc_parts .acc_btn.is-open span::before {
    content: "閉じる";
  }

  .acc_parts .acc_content {
    position: relative;
    overflow: hidden;
  }
  /* 最初に見えてるテキストエリアの高さ */
  .acc_parts .acc_content.is-hide {
    height: 680px;
  }
  .acc_parts .acc_content::after {
    content: "";
    position: absolute;
    bottom: 0;
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgb(245 245 245) 50%, rgb(245 245 245) 50%, #f5f5f5 100%);
    background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,.9) 50%, rgba(255,255,255,.9) 50%, #fff 100%);
    width: 100%;
    height: 150px;
    transition: all 0.4s;
    z-index: 1;
  }
  /* 続きを見るボタンをクリックしたらグラデーションを消す */
  .acc_parts .acc_btn.is-open + .acc_content::after {
    background: none;
    height: auto;
  }

  .acc_parts .acc_box {
    padding: 0 0 7rem;
	  margin: 0 1.5rem;
  }
}



/*--------------------------------------
　qa_parts
---------------------------------------*/
.qa_parts {
  max-width: 1100px;
	margin: 6rem auto 6rem;
}

.qa_parts .qa_item {
  margin: 0 0 6rem;
}
.qa_parts .qa_item:last-child {
  margin: 0 0 0;
}

.qa_parts .q_txt {
  padding: 0 0 0 5rem;
  font-size: 2rem;
  position: relative;
}
.qa_parts .q_txt::before {
  content: "";
	position: absolute;
  top: -8px;
	left: 0;
  background: url("img/icon_q.png") left top no-repeat;
  background-size: contain;
	width: 36px;
	height: 36px;
}

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

.qa_parts .txt {
  margin: 0 0 2rem;
  padding: 0 0 0 4rem;
  position: relative;
}

.qa_parts p {
  margin: 0 0 2rem;
  padding: 0 0 0 4rem;
  position: relative;
}


.qa_parts .txt:last-child {
  margin: 0 0 0;
}
.qa_parts .txt::before {
  content: "";
	position: absolute;
  top: 5px;
	left: 0;
  background: url("img/icon_q.png") left top no-repeat;
  background-size: contain;
	width: 32px;
	height: 22px;
}
.qa_parts .txt.pur::before {
  background: url("img/icon_sb01.png") left top no-repeat;
  background-size: contain;
}
.qa_parts .txt.org::before {
  background: url("img/icon_sb02.png") left top no-repeat;
  background-size: contain;
}

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

  .qa_parts .qa_item {
    margin: 0 0 4rem;
  }

  .qa_parts .q_txt {
    padding: 0 0 0 4rem;
    font-size: 1.6rem;
  }
  .qa_parts .q_txt::before {
    top: -6px;
    width: 30px;
    height: 30px;
  }

  .qa_parts .a_txt {
    margin: 1rem 0 0;
  }

  .qa_parts .txt {
    margin: 0 0 1rem;
    padding: 0 0 0 3.5rem;
    position: relative;
  }
	.qa_parts p {
    margin: 0 0 1rem;
    padding: 0 0 0 3.5rem;
    position: relative;
  }
  .qa_parts .txt::before {
    width: 26px;
    height: 18px;
  }
}



/*--------------------------------------
　related-article
---------------------------------------*/
.related-article01-frame {
  max-width: 1100px;
  margin: 10rem auto 10rem;
}

.related-article01-frame .eng {
  display: inline-block;
  vertical-align: bottom;
  width: 170px;
  margin: 0 0 -1rem -1rem;
  position: relative;
  z-index: 1;
}

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

.related-article01-title {
  display: inline-block;
  vertical-align: bottom;
  margin: 0 0 0 2rem;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
}

ul.related-article01-list {
  background: #f7f7f7;
  max-width: 100%;
  margin: 0 0 0;
  padding: 5rem 6rem 5rem;
  position: relative;
}
ul.related-article01-list::before {
  content: "";
	position: absolute;
  bottom: 0;
  left: 0;
  background: #000;
  width: 2px;
  height: 75%;
}
ul.related-article01-list::after {
  content: "";
	position: absolute;
  top: 0;
  left: 100%;
  background: #f7f7f7;
  width: 100vw;
  height: 100%;
  min-width: 1200px;
  z-index: -1;
}
ul.related-article01-list li {
  margin: 0 0 1.5rem 0;
  padding: 0 0 0 0;
	font-size: 1.6rem;
  line-height: 1.8;
}
ul.related-article01-list li::before {
  display: none;
}
ul.related-article01-list li a {
  display: inline-block;
  padding: 0 3.5rem 0 0;
  font-weight: 900;
  position: relative;
}
ul.related-article01-list li a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  background: url("img/arrow02.png") left top no-repeat;
  background-size: contain;
	width: 20px;
	height: 12px;
	margin-top: -6px;
}

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

  .related-article01-frame .eng {
    width: 40%;
    margin: 0 0 -5px -5px;
  }

  .related-article01-title {
    margin: 0 0 0 1rem;
  }

  ul.related-article01-list {
    padding: 3rem 5px 3rem 2.5rem;
  }
  ul.related-article01-list::before {
    width: 1px;
  }
  ul.related-article01-list::after {
    min-width: 100%;
  }
  ul.related-article01-list li {
    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: 10px;
    margin-top: -5px;
  }
}


