@charset "utf-8";

/* GoogleFonts読み込み 下記のライセンス記述は削除禁止 */
/*
* "Noto Sans JP" licensed under the SIL Open Font License 1.1
* by https://fonts.google.com/specimen/Noto+Sans+JP
*/
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/NS-400.woff2") format("woff2"), url("fonts/NS-400.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/NS-700.woff2") format("woff2"), url("fonts/NS-700.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans JP vertical";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/NS-700-vertical.woff2") format("woff2"), url("fonts/NS-700-vertical.woff") format("woff");
  font-display: swap;
}

/*----------------------------------------------------------------------------
　reset
-----------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  font-weight:normal;
  vertical-align: baseline;
  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: #474747;
  font-size: 1.4rem;
  font-family: 'Noto Sans JP', sans-serif;
	-webkit-text-size-adjust: none;
	word-break: break-word;
	word-wrap: break-word;
	overflow-wrap: break-word;
	overflow-x: hidden;
}

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

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

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

strong {
	font-weight: bold;
}

body, html {
	height: 100%;
}

.fl {
  float: left;
}
.fr {
  float: right;
}

.sp_br {
	display: none;
}
.pc_br {
	display: block;
}

.sp_only {
  display: none;
}
.pc_only {
  display: block;
}

.cf:after {
  content: "";
  clear: both;
  display: block;
}

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

.vertical {
  display: inline-block;
  -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: "Noto Sans JP vertical";
}

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

@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;
	}
  
  .vertical {
    display: inline-block;
    -webkit-writing-mode: inherit;
    -moz-writing-mode: inherit;
    -ms-writing-mode: inherit;
    writing-mode: inherit;
    -webkit-text-orientation: inherit;
    text-orientation: inherit;
    font-family: "Noto Sans JP";
  }
  
  .vertical_sp {
    display: inline-block;
    -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: "Noto Sans JP vertical";
  }
  
  .flexBox {
    display: block;
  }
}



/*--------------------------------------
　color
---------------------------------------*/
.cl-wh {
  color: #fff;
}
.cl-bl {
  color: #006dda;
}



/*--------------------------------------
　background
---------------------------------------*/
.bg-bl {
  display: inline;
  background: linear-gradient(transparent 0%, #409fff 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 8px 1rem;
}
.bg-bk {
  display: inline;
  background: linear-gradient(transparent 0%, #474747 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 8px 1rem;
}

@media screen and (max-width: 768px) {
  .bg-bl {
    padding: 5px 8px;
  }
  .bg-bk {
    padding: 5px 8px;
  }  
}



/*--------------------------------------
　Header
---------------------------------------*/
header {
	width: 100%;
	min-width: 1000px;
}

header .boxInner {
  padding: 2rem 2rem;
  color: #fff;
  text-align: right;
}

header .sitename {
  font-size: 1.2rem;
}
header .sitename a {
  display: inline-block;
  color: #fff;
  text-align: center;
}

header p.operation {
  text-align: right;
}


.header_lower {
  background: url("img/header-lower_bg.webp") center center no-repeat;
  background-size: cover;
  padding: 0 0 5rem;
}
.header_lower .logo {
  width: 280px;
  margin: 3rem auto 0;
}
.header_lower .sponsored {
  margin: 1rem 0 0;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
}

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

  header .boxInner {
    padding: 1rem 1rem;
  }

  header .sitename {
    font-size: 1rem;
  }


  .header_lower {
    padding: 0 0 4rem;
  }
  .header_lower .logo {
    width: 60%;
    margin: 3rem auto 0;
  }
  .header_lower .sponsored {
    margin: 8px 0 0;
    font-size: 11px;
  }
}


/*--------------------------------------
　#hb-menu
---------------------------------------*/
/*----- hb-menu -----*/
#hb-menu {
	display: table;
	position: absolute;
	top: 0;
	right: 0;
	width: 80px;
	height: 80px;
	background: #0055a9;
	box-sizing: border-box;
	cursor: pointer;
	z-index: 10000;
}
#hb-menu .hb-inner {
	display: table-cell;
	vertical-align: middle;
}
#hb-menu span {
	display: block;
	background: #fff;
	width: 33px;
	height: 3px;
	margin: auto;
	border-radius: 0;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}
#hb-menu span:nth-of-type(2),
#hb-menu span:nth-of-type(3){
	margin-top: 11px;
}

/* ナビゲーションアイコン：アクティブ */
.hb-open #hb-menu span:nth-of-type(1) {
	-webkit-transform: translateY(11px) translateX(0) rotate(45deg);
	-ms-transform: translateY(11px) translateX(0) rotate(45deg);
	transform: translateY(11px) translateX(0) rotate(45deg);
}
.hb-open #hb-menu span:nth-of-type(2) {
	margin-top: 5px;
	opacity: 0;
	-webkit-transform: translateY(10px);
	-ms-transform: translateY(10px);
	transform: translateY(10px);
}
.hb-open #hb-menu span:nth-of-type(3) {
	-webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
	-ms-transform: translateY(-11px) translateX(0) rotate(-45deg);
	transform: translateY(-11px) 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: 10000;
}
.g-nav li br{
display:none;
}
.g-nav .g-nav-inner {
	position: fixed;
	top: 80px;
	right: 0;
	background: #474747;
	width: 50%;
	height: 100%;
	padding: 3rem 0;
	box-sizing: border-box;
	-ms-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	overflow-x: hidden;
	overflow-y: auto;
	transition: .5s;
	transform: translateX(100%);
	-ms-transform: translateX(100%);
	-webkit-transform: translateX(100%);
	z-index: 9999;
}
.hb-open .g-nav .g-nav-inner {
	position: fixed;
	top: 80px;
	transform: translateX(0);
	-ms-transform: translateX(0);
	-webkit-transform: translateX(0);
	transform: translateZ(0);
	-ms-transform: translateZ(0);
	-webkit-transform: translateZ(0);
}


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


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


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

.hb_menu_title_link {
	display: block;
	padding: 0 3rem 0 0;
	color: #fff;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.6;
	position: relative;
}
.hb_menu_title_link::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


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

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

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


.hb-link {
  margin: 0 0 2rem;
  text-align: center;
}
.hb-link:last-child {
  margin: 0 0 0;
}
.hb-link a {
  display: block;
  max-width: 400px;
  margin: auto;
  padding: 2.5rem 6rem 2.5rem 3rem;
	box-sizing: border-box;
	font-size: 1.6rem;
	font-weight: bold;
  position: relative;
}
.hb-link.link01 a {
  background: #fff;
}
.hb-link.link01 .icon {
  display: inline-block;
  vertical-align: top;
  background: #409FFF;
  margin-right: 5px;
  padding: 5px 5px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}
.hb-link.link01 a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translate(0,-50%);
  background: url("img/arrow-bk01.png") left top no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
}
.hb-link.link02 a {
  background: #41ca27;
  color: #fff;
}
.hb-link.link02 a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translate(0,-50%);
  background: url("img/icon-web.png") left top no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
}


/*--------------------------------------
　SP #hb-menu
---------------------------------------*/
@media screen and (max-width: 768px) {
  /*----- hb-menu -----*/
  #hb-menu {
    width: 60px;
    height: 75px;
  }
  #hb-menu span {
    width: 22px;
    height: 2px;
  }
  #hb-menu span:nth-of-type(2),
  #hb-menu span:nth-of-type(3){
    margin-top: 7px;
  }

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

  /*----- g-nav -----*/
  .g-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
  }
  .g-nav .g-nav-inner {
    top: 0;
    width: 100%;
    padding: 9rem 1.5rem 4rem;
  }
  .hb-open .g-nav .g-nav-inner {
    top: 0;
  }
  
  .hb_menu_wrapper {
    max-width: 100%;
  	margin: 2rem auto 0;
  }


  .hb_menu_title {
    padding: 1.5rem 0 1.5rem 0;
  }
	.hb_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);
	}
	.hb_menu_title.open::after {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}	
	.hb_menu_title.first {
		padding: 1.5rem 0 1.5rem 0;
	}
	.hb_menu_title.first::after {
		display: none;
	}

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


  .hb_menu_list {
    display: none;
  }

  .hb_menu_list_item {
    margin: 0 0 0 0;
    padding: 1.5rem 0 1.5rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.3);
  }
  .hb_menu_list_item:first-child {
    display: block;
  }

  .hb_menu_list_link {
    padding: 0 2.5rem 0 0;
  }
  .hb_menu_list_link::before {
    display: none;
  }
	.hb_menu_list_link::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 5px;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
  
  
  .hb-link {
    margin: 0 0 1rem;
  }
  .hb-link a {
    max-width: 100%;
    padding: 1.8rem 3rem 1.8rem 1.5rem;
    font-size: 1.5rem;
  }
  .hb-link.link01 .icon {
    padding: 4px 4px;
    font-size: 1.3rem;
  }
  .hb-link.link01 a::after {
    right: 15px;
    width: 18px;
    height: 18px;
  }
  .hb-link.link02 a::after {
    right: 15px;
    width: 18px;
    height: 18px;
  }
}



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

#pankuzu br {
  display: none;
}

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

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


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

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

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


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


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

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

.l-footer-menu__title__link {
	display: inline-block;
	padding: 0 3rem 0 0;
  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;
  background: url("img/arrow-bk03.png") left top no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  margin-top: -10px;
}


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

.l-footer-menu__list__item {
  width: calc(100% / 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 2rem 0 0;
	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/arrow-bk03.png") left top no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  margin-top: -10px;
}


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

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

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


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

.l-footer-area .ucp {
  margin: 1.5rem auto 0;
  font-size: 1rem;
  text-align: center;
	line-height: 1.8;
}


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

.l-footer-copy {
	display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.5rem 0;
  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 #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: 4rem 1.5rem 4rem;
  }

  .l-footer-flex {
    margin: 3rem 0 0;
  }

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


  .l-footer-logo {
    max-width: 50%;
  }


  .l-footer-right {
    width: 100%;
    order: 1;
  }


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


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


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


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

  .l-footer-menu__list__item {
    width: 100%;
    margin-bottom: 0;
    padding: 0 0;
    border-bottom: 1px solid #0055a9;
  }
  .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 #474747;
    border-right: 1px solid #474747;
    -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 #0055a9;
  }

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


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

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


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

	.sitemap {
		margin: 2rem 0 0 0;
		text-align: center;
	}
	.sitemap a {
		padding: 0 1.5rem 0 1.5rem;
		font-size: 1.4rem;
		text-decoration: underline;
		position: relative;
	}
	.sitemap a::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 0;
		width: 6px;
		height: 6px;
		margin-top: -3px;
		border-top: 1px solid #474747;
		border-right: 1px solid #474747;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
}



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

.l-pagetop__link {
  display: block;
}

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



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

.lower-bg-clip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.lower-bg-clip .lower-bg-fixed {
  position: fixed;
  top: 0;
  left: 0;
  background: url("img/lower_bg.webp") center center repeat;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
}

.contents {
  background: #fff;
  width: 1000px;
	min-width: 1000px;
  margin: 3rem auto 0;
  padding: 0 5rem 8rem;
  border: 1px solid #474747;
  position: relative;
  z-index: 0;
}

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

@media screen and (max-width: 768px) {
  .contents_wrap {
    min-width: 100%;
    padding: 0 1.5rem 6rem;
  }
  
	.contents {
		width: 100%;
		min-width: calc(100% - 3rem);
    margin: 3rem auto 0;
		padding: 0 2rem 5rem;
	}
}



/*--------------------------------------
　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 3rem;
	font-size: 4.4rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.4;
	position: relative;
}
.contents h1::before {
  content: "";
  display: block;
  background: url("img/eng-topic.png") left top no-repeat;
  background-size: contain;
  width: 190px;
  height: 66px;
  margin: 0 auto 2rem;
}
.contents h1::after {
  content: "";
  display: block;
  background: #0079f2;
  width: 42px;
  height: 1px;
  margin: 3rem auto 0;
}


.contents h2 {
	background: #474747;
	margin: 4rem 0 2rem;
	padding: 2rem 3rem 2rem 6rem;
	color: #fff;
	font-size: 2.8rem;
	position: relative;
}
.contents h2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -50px;
	background: #acacac;
  width: 90px;
  height: 1px;
}

.contents h2 a {
	padding: 0 5rem 0 0;
	color: #fff;
	position: relative;
}
.contents h2 a::before {
	content: "";
	position: absolute;
	top: -20px;
	left: -60px;
	width: calc(100% + 9rem);
	height: calc(100% + 4rem);
}
.contents h2 a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  background: url("img/arrow-wh01.png") left top no-repeat;
  background-size: contain;
	width: 30px;
	height: 30px;
	margin-top: -15px;
  box-sizing: border-box;
}


.contents h3 {
	margin: 6rem 0 2rem;
	padding: 0 0 1.5rem 4rem;
	font-size: 2.3rem;
	border-bottom: 1px solid #acacac;
	position: relative;
	z-index: 0;
}
.contents h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0,-50%);
  background: url("img/icon-h3.png") left top no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  box-sizing: border-box;
  z-index: -1;
}

.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% + 1.5rem);
}
.contents h3 a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  background: url("img/arrow-bk02.png") left top no-repeat;
  background-size: contain;
	width: 30px;
	height: 30px;
	margin-top: -15px;
  box-sizing: border-box;
}


.contents h4 {
	color: #409fff;
	margin: 4rem 0 2rem;
  padding: 0 0 0 2rem;
	font-size: 2.2rem;
  border-left: 2px solid #409fff;
}

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

@media screen and (max-width: 768px) {
  .contents h1 {
    margin: 0 0 2rem;
    font-size: 2.5rem;
  }
  .contents h1::before {
    width: 35%;
    height: 0;
    margin: 0 auto 1rem;
    padding-top: calc(35%*66/190);
  }
  .contents h1::after {
    width: 30px;
    margin: 2rem auto 0;
  }


  .contents h2 {
    margin: 3rem 0 2rem;
    padding: 1.5rem 1.5rem 1.5rem 3.5rem;
    font-size: 2.2rem;
  }
  .contents h2::before {
    left: -20px;
    width: 40px;
  }

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


  .contents h3 {
    margin: 3rem 0 2rem;
    padding: 0 0 1rem 3rem;
    font-size: 1.8rem;
  }
  .contents h3::before {
    width: 16px;
    height: 16px;
    margin-top: -8px;
  }

  .contents h3 a {
    padding: 0 4rem 0 0;
  }
  .contents h3 a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    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;
    border-left: 1px solid #409fff;
  }

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



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

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

.txt_bold {
	color: #41ca27;
	font-weight: bold;
}
.marker {
  color: #474747;
  font-weight: bold;
  border-bottom: 1px solid #41CA27;
}

p.operation {
  margin: 0 0 0;
  font-size: 1.2rem;
  text-align: center;
}

.caption {
	margin: 1rem 0 0 0!important;
	padding: 0 0 0.5rem 0;
	font-size: 1rem;
	color: #888;
	line-height: 1.3;
	word-wrap: break-word;
	word-break: break-all;
	overflow-x: auto;
	overflow-y: hidden;
	white-space: nowrap;
}
.caption::-webkit-scrollbar {
	height: 2px;
}
.caption::-webkit-scrollbar-track {
	background: #efefef;
	margin: 0 0;
	border: none;
	border-radius: 0;
	box-shadow: none;
}
.caption::-webkit-scrollbar-thumb {
	background: #cacaca;
	border-radius: 0;
	box-shadow: none;
}
.caption a {
	color: #888;
	text-decoration: underline;
}
@-moz-document url-prefix() {
  .caption {
    scrollbar-color: #cacaca #efefef;
  	scrollbar-width: thin;
  }
}

@media screen and (max-width: 768px) {
	.contents p {
		margin: 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;
}
.contents ul li:last-child {
  margin: 0 0 0 0;
}
.contents ul li::before {
  content: "";
  display: block;
	position: absolute;
  top: 11px;
  left: 0;
	background: #41ca27;
  width: 10px;
  height: 10px;
	box-sizing: border-box;
  border-radius: 50%;
}
.contents ul li a {
	display: inline-block;
	text-decoration: underline;
}
.contents ul li a:hover {
	text-decoration: none;
}


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

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



/*--------------------------------------
　リンク
---------------------------------------*/
.btn-web,
.btn-internal {
  position: relative;
}

.btn-web a,
.btn-internal a {
	display: block;
	max-width: 380px;
	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;
  overflow: hidden;
  z-index: 1;
}
.btn-web a::before,
.btn-internal a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.btn-web a:hover::before,
.btn-internal a:hover::before {
  transform: scale(1, 1);
}
.btn-web a:hover,
.btn-internal a:hover {
  opacity: 1;
}

/*----- btn-web（外部リンク） -----*/
.btn-web a {
	background: #41ca27;
}
.btn-web a::before {
  background: #2D9F17;
}
.btn-web a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 25px;
  background: url("img/icon-web.png") left top no-repeat;
  background-size: contain;
	width: 18px;
	height: 18px;
	margin-top: -9px;
}
.btn-web.check span {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translate(-50%,0);
  display: inline-block;
  background: #3b98f6;
  padding: 2px 1rem;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  border: 1px solid #fff;
  z-index: 2;
}


/*----- btn-internal（内部リンク） -----*/
.btn-internal a {
	background: #0079f2;
}
.btn-internal a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 25px;
  background: url("img/icon-internal.png") left top no-repeat;
  background-size: contain;
	width: 20px;
	height: 20px;
	margin-top: -10px;
}
.btn-internal a::before {
  background: #005AB5;
}

/*----- 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.6rem;
  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-bk03.png") left top no-repeat;
  background-size: contain;
	width: 20px;
	height: 20px;
	margin-top: -10px;
}
.btn-link a:hover {
	text-decoration: none;
}


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


/*----- btnBox -----*/
.btnBox {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 5rem 0 5rem;
}
.btnBox > div {
  width: 380px;
  margin: 0 2rem 0;
}
.btnBox > div a {
  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.5rem;
  }
  .btn-web a::before,
  .btn-internal a::before {
    display: none;
  }


  /*----- btn-web（外部リンク） -----*/
  .btn-web a::after {
    right: 15px;
    width: 14px;
    height: 14px;
    margin-top: -7px;
  }  
  .btn-web.check span {
    top: -10px;
    padding: 1px 5px;
    font-size: 1.2rem;
  }
  
  
  /*----- btn-internal（内部リンク） -----*/
  .btn-internal a::after {
    right: 15px;
    width: 16px;
    height: 16px;
    margin-top: -8px;
  }


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

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

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

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

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

	table td {
		display: block;
		padding: 1.2rem;
		font-size: 1.4rem;
		border-left: none;
		border-bottom: 1px solid #808080;
	}
	
	table tbody tr:last-child td:last-child {
		border-bottom: none;
	}
  
  .table_scroll {
    margin: 5rem 0 5rem;
    padding: 0 0 15px 0;
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .table_scroll::-webkit-scrollbar{
    display: none;
  }
  .table_scroll table {
    display: table;
    margin: 0 0 0;  
  }
  .table_scroll table th {
    display: table-cell;
    border-left: 1px solid #808080;
		border-bottom: 1px solid #808080;
  }
  .table_scroll table td {
    display: table-cell;
    border-left: 1px solid #808080;
		border-bottom: 1px solid #808080;
  }
}



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

.float-img {
  position: relative;
}

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

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

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

.float-wrap .catch {
	margin: 2rem 0 2rem 0;
	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: 5rem 0 5rem;
	}
	
	.float-img.fl {
		float: inherit;
		width: 100%;
		padding-right: 0;
	}
	.float-img.fr {
		float: inherit;
		width: 100%;
		padding-left: 0;
	}
	
	.float-img .caption {
		margin: 1rem 0 1.5rem 0;
	}

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

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



/*--------------------------------------
　toc_parts
---------------------------------------*/
.toc_parts {
  background: #fff;
	margin: 5rem auto 5rem;
	padding: 4rem 5rem 4rem;
  border: 1px solid #474747;
  position: relative;
}

.toc_parts .ttl {
  padding: 0 0 1.5rem 0;
	font-size: 1.7rem;
	font-weight: bold;
  position: relative;
}

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

#toc ul.chapter {
	margin: 0 0 0;
}
#toc ul.chapter li {
  margin: 0 0 2rem 0;
  padding: 0 0 0 2.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: -3px;
	left: 0;
	background: none;
	width: inherit;
	height: inherit;
	border-radius: 0;
	color: #006dda;
	font-size: 1.6rem;
	font-weight: bold;
}
#toc ul.chapter li a {
	display: block;
  font-weight: bold;
	text-decoration: none;
}
#toc .chapter .chapter {
  margin: 0 0 2rem 4.5rem;
}
#toc .chapter .chapter li {
	margin: 0 0 1rem 0;
	padding: 0 0 0 1.5rem;
	font-size: 1.4rem;
	position: relative;
	counter-increment: none;
}
#toc .chapter .chapter li::before {
	content: "";
	position: absolute;
	top: 5px;
	left: 0;
	width: 8px;
	height: 8px;
	border-top: solid 1px #02143a;
	border-right: solid 1px #02143a;
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}
#toc .chapter .chapter li a {
  font-weight: 400;
}
#toc ul.chapter li br {
	display: none;
}


/*グラデーションアコーディオン*/
.toc_parts .acc_btn {
	position: absolute;
	left: 0;
	right: 0;
  bottom: -25px;
	background: #fff;
	max-width: 200px;
	margin: auto;
	padding: 1rem 2rem;
	box-sizing: border-box;
  border: 1px solid #474747;
	font-size: 1.6rem;
	font-weight: bold;
	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: #474747;
	width: 15px;
	height: 1px;
	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: "MORE";
}
.toc_parts .acc_btn.is-show span:before {
	content: "CLOSE";
}

.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,.9) 50%, rgba(255,255,255,.9) 50%, #fff 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: 50px;
	transition: all 0.4s;
  z-index: 1;
}
.toc_parts .acc_btn.is-show + .acc_box::before {
	background: none;
	height: auto;
}

.toc_parts .toc_parts_inner {
  padding: 0 0 2rem;
}

@media screen and (max-width: 768px) {
  .toc_parts {
    margin: 3rem auto 5rem;
    padding: 2.5rem 2rem 2.5rem;
  }

  .toc_parts .ttl {
    padding: 0 0 1rem 0;
    font-size: 1.5rem;
  }

  #toc {
    margin: 1rem 0 0 0;
  }

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


  /*グラデーションアコーディオン*/
  .toc_parts .acc_btn {
    bottom: -25px;
    max-width: 50%;
    padding: 1rem 2rem;
    font-size: 1.5rem;
  }
  .toc_parts .acc_btn::before,
  .toc_parts .acc_btn::after {
    right: 10px;
    width: 12px;
  }

  .toc_parts .toc_parts_inner {
    padding: 0 0 1rem;
  }
}



/*--------------------------------------
　icon-point_ttl
---------------------------------------*/
h2.icon-point_ttl,
h3.icon-point_ttl,
h4.icon-point_ttl {
  background: #f6fbff;
  max-width: 870px;
  margin: 10rem 0 10rem auto;
  padding: 3rem 3rem 3rem;
  color: #3b98f6;
  font-size: 2.6rem;
  border: none;
}
h2.icon-point_ttl::before,
h3.icon-point_ttl::before,
h4.icon-point_ttl::before {
  content: "";
  position: absolute;
  top: 0;
  left: inherit;
  right: 100%;
  transform: translate(0,0);
  background: url("img/icon-point.jpg") left top no-repeat;
  background-size: contain;
  width: 30px;
  height: 64px;
  margin-top: 0;
}
.icon-point_ttl {
  background: #e9f5ff;
  max-width: 870px;
  margin: 4rem 0 4rem auto;
  padding: 2rem 3rem 2rem;
  color: #3b98f6;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
}
.icon-point_ttl::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  background: url("img/icon-point.jpg") left top no-repeat;
  background-size: contain;
  width: 30px;
  height: 64px;
}

@media screen and (max-width: 768px) {
  h2.icon-point_ttl,
  h3.icon-point_ttl,
  h4.icon-point_ttl {
    max-width: calc(100% - 24px);
    margin: 5rem 0 5rem auto;
    padding: 1.5rem 2rem 1.5rem;
    font-size: 1.8rem;
  }
  h2.icon-point_ttl::before,
  h3.icon-point_ttl::before,
  h4.icon-point_ttl::before {
    width: 24px;
    height: 51px;
  }
  .icon-point_ttl {
    max-width: calc(100% - 24px);
    margin: 5rem 0 5rem auto;
    padding: 1.5rem 2rem 1.5rem;
    font-size: 1.8rem;
  }
  .icon-point_ttl::before {
    width: 24px;
    height: 51px;
  }
}



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

.summary_parts .summary_parts__block {
  padding: 6rem 5rem 6rem;
  position: relative;
  z-index: 0;
}
.summary_parts .summary_parts__block::before {
	content: "";
	position: absolute;
	top: 20px;
	right: 20px;
  background: url("img/eng-summary.png") left top no-repeat;
  background-size: contain;
	width: 260px;
	height: 50px;
  z-index: -1;
}
.summary_parts .summary_parts__block::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  width: calc(100% + 49px);
  height: 100%;
  border: 1px solid #474747;
  border-left: none;
  z-index: -2;
}

.summary_parts .cc {
  padding: 0 0 0 3rem;
  font-size: 2.4rem;
  border-left: 1px solid #006dda;
}

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

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

  .summary_parts .summary_parts__block {
    padding: 3rem 2rem 3rem 0;
  }
  .summary_parts .summary_parts__block::before {
    top: 10px;
    right: 10px;
    width: 45%;
    height: 0;
    padding-top: calc(45%*50/260);
  }
  .summary_parts .summary_parts__block::after {
    width: calc(100% + 19px);
  }

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

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



/*--------------------------------------
　sv_parts
---------------------------------------*/
.sv_parts {
  width: calc(100% + 10rem);
  margin: 10rem auto 10rem -5rem;
  padding: 3rem 5rem 0;
  position: relative;
}

.sv_parts .sub {
  display: inline-block;
  background: #fff;
  padding: 8px 1rem;
  color: #409fff;
  font-size: 1.8rem;
  border: 1px solid #409fff;
}

.sv_parts .sv_ttl {
  margin: 1.5rem 0 0;
}
.sv_parts .sv_ttl .bg01 {
  font-size: 3.4rem;
  line-height: 1.8;
}
.sv_parts .sv_ttl .bg02 {
  font-size: 4.4rem;
  line-height: 1.9;
}

.sv_parts .sv_parts__block {
  margin: 4rem 0 0;
}

.sv_parts .boxL {
  width: 450px;
}

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

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

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

.sv_parts .btnBox {
  margin: 5rem 0 0;
}

.sv_parts .btn-link a {
  margin: 3rem 0 0;
}

.sv_parts .eng-scroll {
  position: absolute;
  top: 0;
  left: 0;
  background: url("img/eng-sponsored01.png") repeat-x;
  background-size: 900px auto;
  width: 100%;
  height: 120px;
}

@media screen and (max-width: 768px) {
  .sv_parts {
    width: 100%;
    width: calc(100% + 4rem);
    margin: 6rem auto 6rem -2rem;
    padding: 2rem 2rem 0;
  }

  .sv_parts .sub {
    padding: 5px 8px;
    font-size: 1.4rem;
  }

  .sv_parts .sv_ttl {
    margin: 1rem 0 0;
  }
  .sv_parts .sv_ttl .bg01 {
    font-size: 1.8rem;
  }
  .sv_parts .sv_ttl .bg02 {
    font-size: 2.2rem;
  }

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

  .sv_parts .boxL {
    width: 100%;
  }

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

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

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

  .sv_parts .eng-scroll {
    background: url("img/eng-sponsored01.png") repeat-x;
    background-size: 450px auto;
    height: 60px;
  }
}



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

.comment_parts .comment_item {
  background: #fff;
  margin: 0 0 3rem;
  padding: 4rem 5rem 4rem;
  border: 1px solid #006dda;
}

.comment_parts .cc_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.comment_parts .cc_wrap.rev {
  flex-direction: row-reverse;
}
.comment_parts .icon {
  width: 84px;
}
.comment_parts .cc {
  width: calc(100% - 110px);
  font-size: 2.4rem;
}

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

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

  .comment_parts .comment_item {
    margin: 0 0 5rem;
    padding: 0 2rem 3rem;
  }
  .comment_parts .comment_item:last-child {
    margin: 0 0 0;
  }

  .comment_parts .cc_wrap {
    display: block;
  }
  .comment_parts .icon {
    width: 30%;
    margin: -3rem auto 0;
  }
  .comment_parts .cc {
    width: 100%;
    margin: 2rem 0 0;
    font-size: 1.8rem;
  }

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



/*--------------------------------------
　interview_parts
---------------------------------------*/
.interview_parts {
  margin: 6rem 0 6rem;
  padding: 6rem 0 0;
  position: relative;
  z-index: 0;
}
.interview_parts::before {
	content: "";
	position: absolute;
	top: 0;
  left: 0;
  background: url("img/eng-interview01.png") left top no-repeat;
  background-size: contain;
	width: 550px;
	height: 106px;
  z-index: -1;
}
.interview_parts::after {
	content: "";
	position: absolute;
	top: 0;
  left: 0;
  background: #eef4f9;
	width: calc(100% + 50px);
	height: 240px;
  z-index: -2;
}

.interview_parts .boxL {
  width: calc(100% - 300px);
}

.interview_parts ul.tag {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 0;
}
.interview_parts ul.tag li {
  background: #fff;
  margin: 0 1rem 0 0;
  padding: 5px 1rem;
  color: #6ebe5f;
  font-size: 1.6rem;
  border: 1px solid #6ebe5f;
}
.interview_parts ul.tag li::before {
  display: none;
}

.interview_parts .interview_ttl {
  margin: 2rem 0 0;
  font-size: 2.8rem;
}
.interview_parts .interview_ttl .bg01 {
  line-height: 2;
}
.interview_parts .interview_ttl .bg02 {
  line-height: 2;
}

.interview_parts .name {
  margin: 3rem 0 0;
  padding: 0 0 1.5rem;
  font-size: 2rem;
  border-bottom: 1px solid #474747;
}
.interview_parts .name .large {
  font-size: 3rem;
}

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

.interview_parts .boxR {
  width: 260px;
}

@media screen and (max-width: 768px) {
  .interview_parts {
    margin: 6rem 0 6rem;
    padding: 3rem 0 0;
  }
  .interview_parts::before {
    width: 80%;
    height: 0;
    padding-top: calc(80%*106/550);
  }
  .interview_parts::after {
    width: calc(100% + 20px);
    height: 120px;
  }

  .interview_parts .boxL {
    width: 100%;
  }

  .interview_parts ul.tag li {
    margin: 0 5px 0 0;
    padding: 3px 8px;
    font-size: 1.4rem;
  }

  .interview_parts .interview_ttl {
    margin: 1.5rem 0 0;
    font-size: 1.8rem;
  }

  .interview_parts .name {
    margin: 2rem 0 0;
    padding: 0 0 1rem;
    font-size: 1.6rem;
  }
  .interview_parts .name .large {
    font-size: 2.2rem;
  }

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

  .interview_parts .boxR {
    width: 100%;
  }
  
  .interview_parts .imgBox {
    width: 70%;
    margin: 2rem auto 0;
  }
}



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

.bnr_parts .bnr_item {
  width: 690px;
  margin: 0 auto 5rem;
}
.bnr_parts .bnr_item:last-child {
  margin: 0 auto 0;
}

.bnr_parts .bnr_item a {
  display: block;
}

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

  .bnr_parts .bnr_item {
    width: 100%;
    margin: 0 auto 2rem;
  }
}



/*--------------------------------------
　related-article01-frame
---------------------------------------*/
.related-article01-frame {
  margin: 10rem auto 0;
  padding: 4rem 7rem 4rem;
  border: 1px solid #474747;
}

.related-article01-title {
  padding: 0 0 1.5rem 0;
	font-size: 2.4rem;
	font-weight: bold;
  border-bottom: 1px solid #474747;
  position: relative;
}
.related-article01-title span {
	font-weight: bold;
}

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

ul.related-article01-list {
	margin: 3rem 0 0;
}
ul.related-article01-list li {
  margin: 0 0 2rem 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: block;
  padding: 0 3rem 0 0;
  font-weight: bold;
	text-decoration: none;
  position: relative;
}
ul.related-article01-list li a::after {
  content: "";
  position: absolute;
	top: 50%;
	right: 0;
  background: url("img/arrow-bk03.png") left top no-repeat;
  background-size: contain;
	width: 20px;
	height: 20px;
	margin-top: -10px;
}

@media screen and (max-width: 768px) {
  .related-article01-frame {
    margin: 6rem auto 0;
    padding: 2.5rem 2rem 2.5rem;
  }

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

  ul.related-article01-list {
    margin: 2rem 0 0;
  }
  ul.related-article01-list li {
    margin: 0 0 1.5rem 0;
    font-size: 1.5rem;
  }
  ul.related-article01-list li a {
    padding: 0 2.5rem 0 0;
  }
  ul.related-article01-list li a::after {
    width: 18px;
    height: 18px;
    margin-top: -9px;
  }
}



/*--------------------------------------
　fixed_header
---------------------------------------*/
.fixed_header {
  position: fixed;
  top: 0;
  left: 0;
  background: #e7e7e7;
  width: 100%;
  height: 80px;
  min-width: 1000px;
  padding: 0 0 0 2rem;
  z-index: 1;
}

.fixed_header .fixed_header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.fixed_header .logo {
  width: 180px;
}
.fixed_header .logo a {
  display: block;
}

.fixed_header .fixed_nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: calc(100% - 180px);
  margin: 0 11rem 0 0;
}
.fixed_header .fixed_nav li {
  margin: 0 2rem 0 0;
  position: relative;
}
.fixed_header .fixed_nav li:last-child {
  margin: 0 0 0 0;
}
.fixed_header .fixed_nav li.nav01 {
  border-bottom: 1px solid #474747;
}
.fixed_header .fixed_nav li.nav01 .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0,-50%);
  background: #0079f2;
  width: 37px;
  height: 37px;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}
.fixed_header .fixed_nav li.nav02,
.fixed_header .fixed_nav li.nav03{
  border-bottom: 1px solid #67d652;
}
.fixed_header .fixed_nav li a {
  display: block;
  padding: 1rem 2rem 1rem 0rem;
  font-weight: bold;
  position: relative;
}
.fixed_header .fixed_nav li.nav01 a {
  padding: 0 3rem 1rem 4.5rem;
  position: relative;
}
.fixed_header .fixed_nav li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 17px;
  height: 18px;
  margin-top: -10px;
  box-sizing: border-box;
}
.fixed_header .fixed_nav li.nav01 a::after {
  background: url("img/arrow-bk01.png") left top no-repeat;
  background-size: contain;
}
.fixed_header .fixed_nav li.nav02 a::after,
.fixed_header .fixed_nav li.nav03 a::after{
  background: url("img/icon-web-gr.png") left top no-repeat;
  background-size: contain;
  width: 16px;
	height: 16px;
	margin-top: -8px;
}
.fixed_header_top .fixed_nav li.nav01 a::after {
  transform: rotate(90deg);
}

@media screen and (max-width: 768px) {
  .fixed_header {
    background: none;
    width: 100%;
    height: 50px;
    min-width: 100%;
    padding: 0 0 0 0;
  }

  .fixed_header .fixed_header_inner {
    display: block;
    height: 50px;
  }

	.fixed_header .nav01,
	.fixed_header .nav02{
    display: none;
  }
	
.fixed_header {
  position: fixed;
  top: 0;
  left: 0;
  background: #e7e7e7;
  width: 100%;
  height: 75px;
  min-width: 100%;
  padding: 0 0 0 1rem;
  z-index: 2;
}

.fixed_header .fixed_header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.fixed_header .logo {
  width: 70%;
}
.fixed_header .logo a {
  display: block;
}

.fixed_header .fixed_nav {
  display: flow;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin: 0% 18% 0 3%;
  font-size: 3.6vw;
}
 
}



/*--------------------------------------
　animation
---------------------------------------*/
.eng-scroll {
  -webkit-animation: eng-scroll 125s linear infinite;
  animation: eng-scroll 125s linear infinite;
  z-index: -1;
}
@keyframes eng-scroll {
  from {
    background-position:0 0
  }
  to {
    background-position:-432vw 0
  }
}

@media screen and (max-width: 768px) {
  .eng-scroll {
    -webkit-animation: eng-scroll 62s linear infinite;
    animation: eng-scroll 62s linear infinite;
  } 
}
