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


/*----------------------------------------------------------------------------
　reset
-----------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  font-weight:normal;
  vertical-align: baseline;
}
body {
  line-height:1;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
table, tr, th, td, caption {
  vertical-align: middle;
  text-align: left;
}
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
	width: 100%;
}
textarea {
	vertical-align: top;
}





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

body {
  color: #081e4b;
  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: #081e4b;
  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;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	a:hover {
		opacity: 1;
		filter: alpha(opacity=100);
		-ms-filter: "alpha(opacity=100)";
	}
	
	.sp_br {
		display: block;
	}
	.pc_br {
		display: none;
	}

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





/*--------------------------------------
　Header
---------------------------------------*/
header {
  background: #fff;
  width: 100%;
  min-width: 1000px;
  padding: 1.5rem 1.5rem 1.5rem 4.5rem;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  transition: .4s;
}

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

header .logo_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 42px;
}

header .logo {
	width: 190px;
	box-sizing: border-box;
}

header .sitename_wrap {
  width: calc(100% - 150px);
	padding: 0 0 0 0.5rem;
	box-sizing: border-box;
	white-space: nowrap;
}

header .sitename {
	display: inline-block;
	font-size: 1.2rem;
	line-height: 1.4;
	font-weight: bold;
	padding-left: 2rem;
}
header .sitename a {
	font-weight: bold;
}
header .sitename span {
	font-weight: bold;
}

header .header_nav {
	width: calc(100% - 310px);
	box-sizing: border-box;
}

header .header_nav ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

header .header_nav ul li {
	box-sizing: border-box;
	border-right: 1px solid rgba(2,37,54,0.3);
}
header .header_nav ul li:last-child {
	border-right: none;
}

header .header_nav ul li a {
	display: block;
	padding: 0 2.5rem 0 2.5rem;
	box-sizing: border-box;
	font-size: 1.4rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
}
header .header_nav ul li:last-child a {
	padding: 0 0 0 2.5rem;
}
header .sitename:before {
	content: "PR";
	display: inline-block;
	background: #000;
	color: #fff;
	text-align: center;
	width: 3rem;
	margin-right: 1rem;
	font-size: 1.4rem;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  header {
    min-width: 100%;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    position: static;
    top: inherit;
    right: inherit;
  }

  header .boxInner {
    display: block;
  }

  header .logo_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5rem 0 0;
    box-sizing: border-box;
  }

  header .logo {
    width: 44%;
  }

  header .sitename_wrap {
    width: 70%;
    padding: 0 0 0 0.5rem;
  }

  header .sitename {
    font-size: 1.1rem;
    padding-left: 0rem;
    padding-right: 0.5rem;
  }

  header .header_nav {
    display: none;
    width: 100%;
  }



	header .sitename:before {
	content: none;
}
	header .sitename_wrap:before {
		content: "PR";
		display: inline-block;
		background: #000;
		color: #fff;
		text-align: center;
		width: 3rem;
		margin-right: 0rem;
		font-size: 1.4rem;
		top: -14px;
		position: relative;
	}
}


/*--------------------------------------
　SP Navi
---------------------------------------*/
/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	/*----- hb-menu -----*/
	#hb-menu {
		display: table;
		position: fixed;
		top: 5px;
		right: 5px;
		width: 50px;
		height: 50px;
		background: #081e4b;
		box-sizing: border-box;
		border-radius: 4px;
		cursor: pointer;
		z-index: 10000;
		-webkit-transition: all .3s ease-in-out;
		-moz-transition: all .3s ease-in-out;
		transition: all .3s ease-in-out;
	}
	#hb-menu .hb-inner {
		display: table-cell;
		vertical-align: middle;
	}
	#hb-menu span {
		display: block;
		background: #fff;
		width: 22px;
		height: 2px;
		margin: auto;
		border-radius: 0;
		-webkit-transition: all .5s ease-in-out;
		-moz-transition: all .5s ease-in-out;
		transition: all .5s ease-in-out;
	}
	#hb-menu span:nth-of-type(2),
	#hb-menu span:nth-of-type(3){
		margin-top: 7px;
	}

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

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

	/*----- g-nav -----*/
	.g-nav {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 9999;
	}
	.g-nav .g-nav-inner {
		position: fixed;
		top: 0;
		right: 0;
		background: rgba(255,255,255,0.9);
		width: 100%;
		height: 100%;
		padding: 7rem 2rem;
		box-sizing: border-box;
		-ms-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		overflow-x: hidden;
		overflow-y: auto;
		transition: .5s;
		transform: translateX(100%);
		-ms-transform: translateX(100%);
		-webkit-transform: translateX(100%);
		z-index: 9999;
	}
	.hb-open .g-nav .g-nav-inner {
		position: fixed;
		top: 0;
		transform: translateX(0);
		-ms-transform: translateX(0);
		-webkit-transform: translateX(0);
		transform: translateZ(0);
		-ms-transform: translateZ(0);
		-webkit-transform: translateZ(0);
	}

	
	.hb_menu_wrapper {
		max-width: 100%;
		margin: auto;
	}

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

	
	.hb_menu_title {
		padding: 1.5rem 2.5rem 1.5rem 0;
		border-bottom: 1px solid rgba(2,37,54,0.2);
		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 #022536;
		border-right: solid 1px #022536;
		-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 {
		display: block;
		padding: 0 0 0 0;
		font-size: 1.5rem;
		font-weight: bold;
		line-height: 1.6;
		pointer-events: none;
		position: relative;
	}
	.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: 6px;
		height: 6px;
		margin-top: -3px;
		background: none;
		border-top: solid 1px #022536;
		border-right: solid 1px #022536;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	
	
	.hb_menu_list {
		display: none;
		box-sizing: border-box;
		margin-top: 0;
	}
	
	.hb_menu_list_item {
		width: 100%;
		margin: 0 0 0 0;
		padding: 0 0;
		box-sizing: border-box;
		border-bottom: 1px solid rgba(2,37,54,0.2);
		position: relative;
	}
	.hb_menu_list_item:first-child {
		display: block;
	}
	
	.hb_menu_list_link {
		display: block;
		padding: 1.5rem 2rem 1.5rem 1.5rem;
		font-size: 1.4rem;
		line-height: 1.6;
		position: relative;
	}
	.hb_menu_list_link:before {
		display: none;
	}
	.hb_menu_list_link:after {
		content: "";
		position: absolute;
		top: 50%;
		right: 5px;
		width: 6px;
		height: 6px;
		margin-top: -3px;
		border-top: 1px solid #022536;
		border-right: 1px solid #022536;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
}




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

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	#pankuzu {
		width: 100%;
		margin: 3rem auto 0;
		padding: 0 1.5rem 0.5rem 1.5rem;
		box-sizing: border-box;
		font-size: 1.2rem;
		white-space: nowrap;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}
	#pankuzu::-webkit-scrollbar{
		height: 3px;
}
	#pankuzu::-webkit-scrollbar-track{
		background: #efefef;
		margin: 0 1.5rem;
		border: none;
		border-radius: 0;
		box-shadow: none;
	}
	#pankuzu::-webkit-scrollbar-thumb {
		background: #cacaca;
		border-radius: 0;
		box-shadow: none;
	}
}





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


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


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


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


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


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

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


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

.l-footer-menu__list__item {
  width: calc(100% / 3);
	margin-bottom: 1.5rem;
	padding: 0 2rem;
	box-sizing: border-box;
	position: relative;
}
.l-footer-menu__list__item:first-child {
  display: none;
}

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


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

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

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


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


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


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

.l-footer-copy {
	display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.5rem 0;
	font-size: 1.4rem;
	line-height: 1.5;
}
.l-footer-copy a {
	display: inline-block;
  text-decoration: underline;
}
.l-footer-copy a:hover {
  text-decoration: none;
}

.l-footer-copy .sitemap {
	width: 15%;
	margin: 0 0 0 4rem;
	box-sizing: border-box;
  text-align: right;
}
.l-footer-copy .sitemap a {
	padding: 0 1.5rem 0 0;
 	position: relative;
}
.l-footer-copy .sitemap a:after {
	content: "";
 	position: absolute;
	top: 50%;
	right: 0;
	width: 6px;
	height: 6px;
	margin-top: -3px;
	border-top: 1px solid #333;
	border-right: 1px solid #333;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	.l-footer-area {
		min-width: 100%;
		padding-bottom:90px;
	}


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


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


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


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


	.l-footer-menu__title {
		padding: 1.5rem 2.5rem 1.5rem 0;
	}
	.l-footer-menu__title:after { 
		content: "";
		position: absolute;
		top: 50%;
		right: 5px;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		background: none;
		border-top: solid 1px #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 2rem 1.5rem 1.5rem;
		font-size: 1.4rem;
	}
	.l-footer-menu__list__link:after {
		content: "";
		position: absolute;
		top: 50%;
		right: 5px;
		width: 6px;
		height: 6px;
		margin-top: -3px;
		border-top: 1px solid #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 {
		content: "";
		position: absolute;
		top: 26px;
		left: 15px;
		background: #fff;
		width: 6px;
		height: 1px;
	}


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


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


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

	
	.sitemap {
		margin: 2rem 0 0 0;
		text-align: center;
	}
	.sitemap a {
		padding: 0 1rem 0 0;
		font-size: 1.4rem;
		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: 270px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 0;
}

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

.l-pagetop span {
	display: none;
}

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









/*--------------------------------------
　Main Contents
---------------------------------------*/
.contents {
  width: 100%;
	min-width: 1000px;
  margin: auto;
  padding: 6rem 0 12rem;
	box-sizing: border-box;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

#category,
#page {
  width: 1000px;
  margin: auto!important;
  padding: 0!important;
	box-sizing: border-box;
}


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

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





/*--------------------------------------
　Title
---------------------------------------*/
h2,
h3,
h4,
h5,
h6,
.cc {
	font-weight: bold;
	line-height: 1.4;
	box-sizing: border-box;
}
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	display: block;
	font-weight: bold;
	box-sizing: border-box;
}
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
	font-weight: bold;
}


#category h1,
#page h1 {
	margin: 0 0 5rem;
	font-size: 3.6rem;
	font-weight: bold;
	line-height: 1.4;
	text-align: center;
	position: relative;
	padding-top: 4rem;
}
#category h1:before,
#page h1:before{
	content: "";
	display: block;
	position: absolute;
	background: url("img/h1.svg") center no-repeat;
	width: 109px;
	height: 29px;
	left:0;
	right: 0;
	margin: auto;
	top:0;
}


#category h2,
#page h2 {
	background: linear-gradient(90deg, rgba(69,94,168,1) 0%, rgba(8,30,75,1) 100%);
	margin: 4rem 0 2rem;
	padding: 2rem 3rem 2rem 4rem;
	color: #fff;
	font-size: 3.2rem;
	position: relative;
}

#category h2 a,
#page h2 a {
	padding: 0 3rem 0 0;
	color: #fff;
	position: relative;
}
#category h2 a::after,
#page h2 a::after{
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 14px;
	height: 14px;
	margin-top: -7px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


#category h3,
#page h3 {
	margin: 4rem 0 2rem;
	padding: 0 0 1.5rem 7rem;
	font-size: 2.8rem;
	position: relative;
}
#category h3::before,
#page h3::before{
content: "";
	display: block;
	position: absolute;
	background: url("img/h3.jpg") center no-repeat;
	background-size: cover;
	width: 62px;
	height: 62px;
	left:0;
	top:30%;
	transform: translate(0,-50%);
}
#category h3 a,
#page h3 a {
	padding: 0 3rem 0 0;
	position: relative;
}
#category h3 a::after,
#page h3 a::after{
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 12px;
	height: 12px;
	margin-top: -6px;
	border-top: solid 2px #1f2658;
	border-right: solid 2px #1f2658;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


#category h4,
#page h4 {
	margin: 4rem 0 2rem;
	font-size: 2.2rem;
	border-bottom: 3px dotted #cbcbcb;
	padding-bottom: 1rem;
}

#category h4 a,
#page h4 a {
	display: inline-block;
	padding: 0 3rem 0 0;
	position: relative;
}
#category h4 a::after,
#page h4 a::after{
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 10px;
	height: 10px;
	margin-top: -5px;
	border-top: solid 2px #1f2658;
	border-right: solid 2px #1f2658;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
#category h5,
#page h5 {
	margin: 4rem 0 2rem;
	font-size: 2rem;
}

#category h5 a,
#page h5 a {
	display: inline-block;
	padding: 0 3rem 0 0;
	position: relative;
}
#category h5 a::after,
#page h5 a::after{
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 7px;
	height: 7px;
	margin-top: -5px;
	border-top: solid 2px #1f2658;
	border-right: solid 2px #1f2658;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
#category .matome,
#page .matome {
	background: #013f4a;
background: -moz-linear-gradient(left, #278ca7 0%, #013f4a 100%);
background: -webkit-gradient(linear, left center, right center, from(#278ca7), to(#013f4a));
	margin: 4rem 0 2rem;
	padding: 1rem 3rem 1rem 7rem;
	color: #fff;
	font-size: 3.2rem;
	position: relative;
}
#category .matome::before,
#page .matome::before{
content: "";
	display: block;
	position: absolute;
	background: url("img/matome.png") center no-repeat;
	background-size: cover;
	width: 83px;
	height: 83px;
	left:-30px;
	top:50%;
	transform: translate(0,-50%);
}
#category .matome a,
#page .matome a {
	padding: 0 3rem 0 0;
	color: #fff;
	position: relative;
}
#category .matome a::after,
#page .matome a::after{
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 14px;
	height: 14px;
	margin-top: -7px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	#category h1,
	#page h1 {
		margin: 0 0 3rem;
		font-size: 2.5rem;
		padding-top: 2.4rem;
	}
#category h1:before,
#page h1:before{
	width: 77px;
	height: 20px;
}

	#category h2,
	#page h2 {
		margin: 3rem 0 2rem;
		padding: 1.5rem 2rem;
		font-size: 2.2rem;
	}

	#category h2 a,
	#page h2 a {
		padding: 0 1.5rem 0 0;
		position: relative;
	}
	#category h2 a::after,
	#page h2 a::after{
		width: 10px;
		height: 10px;
		margin-top: -5px;
		border-top: solid 1px #fff;
		border-right: solid 1px #fff;
	}


	#category h3,
	#page h3 {
		margin: 3rem 0 2rem;
		padding: 0 0 1rem 4.8rem;
		font-size: 1.8rem;
	}
#category h3::before,
#page h3::before{
	width: 40px;
	height: 40px;
	left:0;
	top:30%;
	transform: translate(0,-50%);
}
	#category h3 a,
	#page h3 a {
		padding: 0 1.5rem 0 0;
	}
	#category h3 a::after,
	#page h3 a::after{
		width: 10px;
		height: 10px;
		margin-top: -5px;
		border-top: solid 1px #1f2658;
		border-right: solid 1px #1f2658;
	}


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

	#category h4 a,
	#page h4 a {
		padding: 0 1.5rem 0 0;
	}
	#category h4 a::after,
	#page h4 a::after{
		width: 8px;
		height: 8px;
		margin-top: -4px;
		border-top: solid 1px #1f2658;
		border-right: solid 1px #1f2658;
	}
	#category h5,
	#page h5 {
		margin: 3rem 0 2rem;
		font-size: 1.4rem;
	}

	#category h5 a,
	#page h5 a {
		padding: 0 1.5rem 0 0;
	}
	#category h5 a::after,
	#page h5 a::after{
		width: 8px;
		height: 8px;
		margin-top: -4px;
		border-top: solid 1px #1f2658;
		border-right: solid 1px #1f2658;
	}
#category .matome,
#page .matome {
	margin: 4rem 0 2rem;
	padding: 1rem 3rem 1rem 6rem;
	font-size: 2rem;
}
#category .matome::before,
#page .matome::before{
	width: 60px;
	height: 60px;
	left:-10px;
}
#category .matome a,
#page .matome a {
	padding: 0 2rem 0 0;
	color: #fff;
	position: relative;
}
#category .matome a::after,
#page .matome a::after{
	width: 10px;
		height: 10px;
		margin-top: -5px;
		border-top: solid 1px #fff;
		border-right: solid 1px #fff;
}
}





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

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

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


p.caption {
	margin: 1rem 0 0 0;
	padding: 0 0 0.5rem 0;
	font-size: 1rem;
	color: #888;
	line-height: 1.3;
	word-wrap: break-word;
	word-break: break-all;
	overflow-x: auto;
	overflow-y: hidden;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
	scrollbar-color: #aeaeae #e7e7e7;
	scrollbar-width: thin;
}
p.caption::-webkit-scrollbar {
	height: 2px;
}
p.caption::-webkit-scrollbar-track {
	background: #e7e7e7;
	margin: 0 0;
	border: none;
	border-radius: 0;
	box-shadow: none;
}
p.caption::-webkit-scrollbar-thumb {
	background: #aeaeae;
	border-radius: 0;
	box-shadow: none;
}
p.caption a {
	color: #888;
	text-decoration: underline;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	.contents p {
		margin: 2rem 0 2rem;
		line-height: 1.8;
	}
	
	p.caption {
		margin: 1rem 0 0 0;
	}
}





/*--------------------------------------
　リスト
---------------------------------------*/
/*----- ulリスト -----*/
.contents ul {
	margin: 4rem 0 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: 11px;
  left: 0;
	background: #aee8f7;
  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.5rem;
  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: -7px;
	left: 0;
	color: #6a7a5e;
	font-size: 2.2rem;
  font-weight: bold;
}
.contents ol a {
	display: inline-block;
	text-decoration: underline;
}
.contents ol li a:hover {
	text-decoration: none;
}

/* SP ------------------------------*/
@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: -6px;
		font-size: 2rem;
	}
}





/*--------------------------------------
　リンク
---------------------------------------*/
.btn-web a,
.btn-internal a {
	display: block;
	max-width: 450px;
	margin: 4rem auto 4rem;
	padding: 2rem 6rem;
	box-sizing: border-box;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
	border-radius: 100px;
	text-decoration: none!important;
	position: relative;
	border: 2px solid #030142;
}
.btn-web a::after{
	content: "";
	position: absolute;
	top: 50%;
	right: 25px;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	border-top: solid 2px #030142;
	border-right: solid 2px #030142;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.btn-internal a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 25px;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


/*----- btn-web（外部リンク） -----*/
.btn-web a {
	background: #fff000;
}


/*----- btn-internal（内部リンク） -----*/
.btn-internal a {
	background: #23afa1;
	color: #fff;
}


/*----- btn-link（テキストリンク） -----*/
.btn-link {
	text-align: right;
}
.btn-link a {
	display: inline-block;
	margin: 4rem 0 4rem;
	padding: 0 2rem 0 0;
	font-size: 1.5rem;
	line-height: 1.5;
	text-decoration: underline;
	position: relative;
}
.btn-link a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	border-top: solid 2px #1b9eb6;
	border-right: solid 2px #1b9eb6;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.btn-link a:hover {
	text-decoration: none;
}


/*----- btn-tel（電話ボタン） -----*/
.btn-tel a {
	display: block;
	max-width: 450px;
	margin: 4rem auto 4rem;
	padding: 2rem 2rem;
	box-sizing: border-box;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
	border-radius: 100px;
	text-decoration: none!important;
	position: relative;
	border: 2px solid #030142;
	background:#76e1ff;
}
.btn-tel a::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 10%;
	transform: translate(0,-50%);
	background: url("img/tel.svg") left top no-repeat;
	background-size: 100% auto;
	width: 43px;
	height: 43px;
}
/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	.btn-internal a,
	.btn-web a {
		display: block;
		max-width: 90%;
		margin: 3rem auto 3rem;
		padding: 1.8rem 4rem;
		box-sizing: border-box;
		font-size: 1.4rem;
		font-weight: bold;
		text-align: center;
		line-height: 1.5;
		border-radius: 100px;
		position: relative;
	}
  .btn-web a::after{
    right: 20px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: solid 1px #030142;
    border-right: solid 1px #030142;
  }
  .btn-internal a::after {
    right: 20px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
  }


	/*----- btn-link（テキストリンク） -----*/
	.btn-link a {
		margin: 3rem 0 3rem;
		padding: 0 1.5rem 0 0;
	}
  .btn-link a::after {
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: solid 1px #1b9eb6;
    border-right: solid 1px #1b9eb6;
  }

	
	/*----- btn-tel（電話ボタン） -----*/
	.btn-tel a {
		display: block;
		background-size: 18px auto;
		max-width: 90%;
		margin: 3rem auto 3rem;
		padding: 1.8rem 5rem;
		box-sizing: border-box;
		font-size: 1.4rem;
		font-weight: bold;
		text-align: center;
		line-height: 1.5;
		border-radius: 100px;
		text-decoration: none!important;
		position: relative;
	}
  .btn-tel a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translate(0,-50%);
    background: url("img/tel.svg") left top no-repeat;
    background-size: 100% auto;
    width: 30px;
    height: 30px;
  }
}





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

table th {
	background: #f0f9fd;
	padding: 1.5rem;
	box-sizing: border-box;
	text-align: center;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.4;
  word-break: break-all;
	border-left: 1px solid #b3b3b3;
	border-bottom: 1px solid #b3b3b3;
}
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.4rem;
	line-height: 1.4;
  word-break: break-all;
	border-left: 1px solid #b3b3b3;
	border-bottom: 1px solid #b3b3b3;
}
table td a {
	text-decoration: underline;
}
table td a:hover {
	text-decoration: none;
}

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

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

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





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

.float-img {
  position: relative;
}

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

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

.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-copy {
	margin: 2rem 0 2rem 0;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.5;
}

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

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

	.float-wrap .catch-copy {
		margin: 1.5rem 0 1.5rem 0;
		font-size: 1.8rem;
	}
	
	.float-wrap p {
		margin: 2rem 0 2rem;
	}
}





/*--------------------------------------
　toc_parts
---------------------------------------*/
.toc_parts {
	background: #b4c2aa;
	margin: 10rem 0 10rem;
	padding: 3rem 4rem;
	box-sizing: border-box;
}

.toc_parts .toc_ttl {
	color: #fff;
	font-size: 2.8rem;
	font-weight: bold;
	text-align: center;
}

#toc {
	background: #fff;
	margin: 3rem 0 0 0;
	padding: 3rem 3rem;

}
#toc .chapter {
	margin: 0 0 0;
}
#toc .chapter li {
	margin: 0 0 1rem 0;
	padding: 0 0 0 2rem;
	font-size: 1.5rem;
  line-height: 1.8;
	overflow-wrap: break-word;
	position: relative;
}
#toc .chapter li::before {
	content: "";
	position: absolute;
  top: 10px;
  left: 0;
	background: #6a7a5e;
  width: 10px;
  height: 10px;
	box-sizing: border-box;
  border-radius: 50%;
}
#toc .chapter li:last-child {
	margin: 0 0 0;
}
#toc .chapter li a {
	display: block;
	box-sizing: border-box;
	text-decoration: none;
}
#toc .chapter li a::after{
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 6px;
	height: 6px;
	margin-top: -3px;
	border-top: solid 2px #6a7a5e;
	border-right: solid 2px #6a7a5e;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

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

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

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

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

	#toc {
		margin: 2rem 0 0 0;
		padding: 2rem 2rem;
	}
	#toc .chapter li {
		padding: 0 3rem 0 1.5rem;
		line-height: 1.6;
	}
	#toc .chapter li::before {
		top: 9px;
		width: 8px;
		height: 8px;
	}
	#toc .chapter li a:after{
		border-top: solid 1px #6a7a5e;
		border-right: solid 1px #6a7a5e;
	}

	#toc .chapter .chapter {
		margin: 1.5rem 0 0 1.5rem;
	}
	#toc .chapter .chapter li {
		padding: 0 3rem 0 1.5rem;
	}
	#toc .chapter .chapter li::before {
		top: 11px;
		width: 8px;
		height: 1px;
	}
}





/*--------------------------------------
　アコーディオン
---------------------------------------*/
.accordion-content {
  display: none;
}
.js-accordion-title {
  position: relative;
}
.js-accordion-title::after {
  border-right: solid 2px #030142;
  border-top: solid 2px #030142;
  content: "";
  display: block;
  height: 8px;
  position: absolute;
  right: 25px;
  top: 50%;
  transform:translate(0,-50%)rotate(135deg);
  transition: transform .3s ease-in-out, top .3s ease-in-out;
  width: 8px;
}
.js-accordion-title.open::after {
  top: 45%;
  transform: rotate(-45deg);
}
/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .js-accordion-title::after {
    right: 15px;
    width: 6px;
    height: 6px;
  }
}




/*--------------------------------------
　目次
---------------------------------------*/
.mokuji {
	padding: 8rem 0 6rem;
}
.mokuji p {
	background: #d0eaeb;
	font-weight: bold;
	text-align: center;
	font-size: 2.8rem;
	position: relative;
	margin: 0!important;
	line-height: 2.5;
}
.mokuji p:before {
	content: "INDEX";
	color: #fff;
	font-size: 3.8rem;
	position: absolute;
	left: 3rem;
	top: 50%;
  transform: translate(0,-50%);
	line-height: 1;
}
.mokuji ul {
	background: #f4f4f4;
	padding: 4rem 10rem 3rem;
	margin: 0;
}
.mokuji ul li {
	font-size:2rem;
	font-weight: bold;
	position: relative;
	padding:0 0 1.4rem 0;
	margin: 0 0 1.4rem 0;
	border-bottom: 3px dotted #cacaca;
	line-height: 1.4;
	text-decoration: none!important;
}
.mokuji ul li:before{
	display:none;
}
.mokuji ul li a{
  font-weight: bold;
	text-decoration: none!important;
}
.mokuji ul li:after {
	display: block;
	position: absolute;
	content: "";
	right: 1rem;
	top: 0.8rem;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #001c63;
  border-right: 2px solid #001c63;
  transform: rotate(45deg);
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .mokuji {
    padding: 8rem 0 3rem;
  }
  .mokuji p {
    font-size: 1.8rem;
  }
  .mokuji p:before {
    content: "INDEX";
    color: #fff;
    font-size: 2.4rem;
    position: absolute;
    left: 1rem;
    line-height: 1;
  }
  .mokuji ul {
    background: #f4f4f4;
    padding: 2rem;
  }
  .mokuji ul li {
    font-size:1.6rem;
    font-weight: bold;
    position: relative;
    padding:0 1.4rem 1.4rem 0;
    margin-bottom: 1.4rem;
    border-bottom: 3px dotted #cacaca;
    line-height: 1.3!important;
  }
  .mokuji ul li:after {
    display: block;
    position: absolute;
    content: "";
    right: 1rem;
    top: 0.8rem;
    width: 6px;
    height: 6px;
    border-bottom: 2px solid #001c63;
    border-right: 2px solid #001c63;
    transform: rotate(45deg);
  }
}




/*--------------------------------------
　fixed_bnr
---------------------------------------*/
.fixed_bnr_lower {
	display: none;
}

.fixed_bnr {
	position: fixed;
	right: 0;
	bottom: 40px;
	width: 200px;
	z-index:999999;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	.fixed_bnr {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		box-sizing: border-box;
	}
}





/*--------------------------------------
　seat_wrap
---------------------------------------*/
.seat_wrap{
	background: #edf3f9;
	width: 60%;
	padding: 3rem;
	box-sizing: border-box;
	margin: 0 auto 6rem;
}
.seat_wrap a{
	display: block;
	position: relative;
	background: #00cdb8;
	font-weight: bold;
	font-size: 1.8rem;
	color: #fff;
	text-align: center;
	width: 100%;
	margin-top: 2rem;
	padding: 2rem 0;
}
.seat_wrap a:after{
	display: block;
	position: absolute;
	content: "";
	background: url("img/mushimegane.png") no-repeat;
	background-size: cover;
	width:30px;
	height: 29px;
	right: 2rem;
	top: 14px;
}

@media screen and (max-width: 768px) {
  .seat_wrap{
    width: 100%;
    padding: 2rem;
    box-sizing: border-box;
    margin: 0 auto 4rem;
  }
  .seat_wrap a{
    font-size: 1.4rem;
    color: #fff;
    text-align: center;
    width: 100%;
    margin-top: 1rem;
    padding: 2rem 2rem 2rem 0;
    box-sizing: border-box;
  }
  .seat_wrap a:after{
    display: block;
    position: absolute;
    content: "";
    background: url("img/mushimegane.png") no-repeat;
    background-size: cover;
    width:15px;
    height: 14px;
    right: 2rem;
    top: 20px;
  }
}





/*--------------------------------------
　この記事はこんな人におすすめ！
---------------------------------------*/
.osusume_parts .ttl {
	background: #081e4b;
	color: #fff;
	font-weight: bold;
	font-size: 2.8rem;
	text-align: center;
	padding: 2rem 2rem;
}
.osusume_parts .txt_box {
	background: #f4f4f4;
	padding: 4rem 6rem;
}
.osusume_parts .txt_box div {
	line-height: 1.4;
	margin-bottom: 2rem;
	font-weight: bold;
	color: #081e4b;
	font-size: 2.2rem;
	position: relative;
	padding-left: 4rem;
}
.osusume_parts .txt_box div img {
	position: absolute;
	left: 0;
	top: 4px;
	width: 27px;
}

@media screen and (max-width: 768px) {
  .osusume_parts .ttl {
    font-size: 2rem;
    text-align: center;
    padding: 1.4rem 2rem;
  }
  .osusume_parts .txt_box {
    background: #f4f4f4;
    padding:2rem;
  }
  .osusume_parts .txt_box div {
    line-height: 1.4;
    margin-bottom: 1.4rem;
    font-size:1.8rem;
    position: relative;
    padding-left: 3rem;
  }
  .osusume_parts .txt_box div img {
    position: absolute;
    left: 0;
    top: 6px;
    width: 20px;
  }
}





/*--------------------------------------
　recommend_box
---------------------------------------*/
.recommend_box .ttl_02 .txt {
	font-size: 3.4rem;
	text-align: center;
	line-height: 1.4;
  font-weight: bold;
}
.recommend_box .ttl_02 .txt span {
	font-size: 4.4rem;
	color: #3cb2d2;
  font-weight: bold;
}
.recommend_box .ttl_02 .fukidashi {
	text-align: center;
  margin: 0 0 2rem;
}
.recommend_box .ttl_02 .fukidashi span {
	background: #081e4b;
	font-size: 2.8rem;
	font-weight: bold;
	color: #fff;
	padding: 0.5rem 2rem;
	border-radius: 8px;
	position: relative;
}
.recommend_box .ttl_02 .fukidashi span:before {
  content: "";
  position: absolute;
  top: 98%;
  left: 50%;
  margin-left: -8px;
  border: 10px solid transparent;
  border-top: 15px solid #081e4b;
}


.recommend_box {
	padding: 0 0 10rem;
  position: relative;
  z-index: 0;
}
.recommend_box::after {
  content: "";
  position: absolute;
  top: 540px;
  left: 0;
	background: url("img/sec05_bg.jpg") center top no-repeat;
	background-size: cover;
  width: 100%;
  height: 900px;
  z-index: -1;
}

.recommend_box p {
	margin: 0 0 0;
  line-height: 1.8;
}

.recommend_box .read_txt {
  margin: 3rem 0 0;
	text-align: center;
  line-height: 2;
}

.recommend_box .inner {
	max-width: 1000px;
	margin: auto;
	box-sizing: border-box;
}

.recommend_box .ttl_02 .fukidashi {
	font-size: 2rem;
}

.recommend_box .ul_01 {
	margin-top: 8rem;
	display: flex;
	justify-content: space-between;
}
.recommend_box .ul_01>li{
	width: 32%;
	background: #f7f7f7;
  padding: 0 0 5rem;
  box-sizing: border-box;
}

.recommend_box .ul_01 .wrap_01 {
	background: #081e4b;
	position: relative;
	font-weight: bold;
	padding: 4.5rem 0 1rem;
}
.recommend_box .ul_01 .wrap_01 p {
	text-align: center;
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.5;
}
.recommend_box .ul_01 .wrap_01 p:not([class]) {
	border-bottom: 1px solid #fff;
	width: 80%;
	margin: 0 auto 1.5rem;
	line-height: 2;
	font-size: 2.8rem;
}

.recommend_box .ul_01 .wrap_01 span:not([class]) {
	background: #fff000;
	color: #081e4b;
	font-weight: bold;
	padding: 0 0.5rem;
	font-size: 2.8rem;
}
.recommend_box .ul_01 .wrap_01 span.white-text {
	font-weight: bold;
	font-size: 2.8rem;
}

.recommend_box .ul_01 .wrap_01 img {
	width: 92px;
	position: absolute;
	top: -4rem;
	left: 50%;
	transform: translate(-50%,0);
}
.recommend_box .ul_01 .wrap_01:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 10px solid transparent;
  border-top: 15px solid #081e4b;
}

.recommend_box .ul_01 .wrap_02 {
	padding: 3rem 0 0 0;
	min-height: 239px;
}
.recommend_box .ul_01 .wrap_02 .ttl01 {
	font-size: 2.4rem;
	text-align: center;
  font-weight: bold;
  line-height: 1.4;
	margin-bottom: 1rem;
}
.recommend_box .ul_01 .wrap_02 img {
	width: 80%;
	display: block;
	margin: 0 auto;
}
.recommend_box .ul_01 .wrap_02 .caption {
	text-align: center;
	margin-top:0.5rem;
	font-size: 1rem;
	line-height: 1.5;
}

.recommend_box .ul_01 .wrap_03 {
	background: #dce8f4;
  margin: 2rem 0 0;
	padding: 1.5rem 2rem;
	position: relative;
}
.recommend_box .ul_01 .wrap_03:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 10px solid transparent;
  border-top: 15px solid #dce8f4;
}
.recommend_box .ul_01 .wrap_03 .txt_01 {
	color: #1d9cbf;
	font-size: 2.2rem;
	font-weight: bold;
	text-align: center;
	line-height: 1;
	margin: 1rem 0;
}
.recommend_box .ul_01 .wrap_03 .txt_02 {
	margin: 1rem 0;
}

.recommend_box .ul_01 .wrap_04 {
  margin: 3rem 0 0;
	padding: 0 2rem;
}
.recommend_box .ul_01 .wrap_04 .txt_01 {
	text-align: center;
}
.recommend_box .ul_01 .wrap_04 .txt_02 {
  margin: 1rem 0 0;
	text-align: center;
	font-size: 2.2rem;
	font-weight: bold;
}
.recommend_box .ul_01 .wrap_04 .txt_02 span {
	background: #fadb32;
	font-size: 3.2rem;
	font-weight: bold;
	padding: 0 1rem;
}

.on_off {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
  margin: 1.5rem 0 0;
}
.on_off li {
	width: 49%;
	background:#d3d3d3;
	color: #fff;
	font-weight: bold;
	font-size: 18px;
	text-align: center;
	padding: 1rem 0;
	margin-bottom: 0.6rem;
	border-radius: 4px;
	line-height: 1.4;
}
.on_off li.small{
	width: 32%!important;
}
.on_off .on {
	background:#02499b; 
}

.recommend_box .ul_01 .wrap_04 .txt_03,
.recommend_box .ul_01 .wrap_05 .txt_02 {
	font-size: 1.7rem;
	border-bottom: 1px solid #030142;
	text-align: center;
	font-weight: bold;
	margin-bottom: 2rem;
}

.recommend_box .ul_01 .wrap_04 .txt_03{
	margin: 2rem 0 0;
	font-size: 2rem;
}
.recommend_box .ul_01 .wrap_04 .txt_03 span {
	margin: 0 0 0 2rem;
	font-size: 1.6rem;
	font-weight: bold;
}

.recommend_box .ul_01 .wrap_04 .txt_04{
  margin: 2rem 0 0;
	text-align: center;
}
.recommend_box .ul_01 .wrap_04 .txt_05{
	font-size: 2.8rem;
	text-align: center;
	font-weight: bold;
	margin: 0;
}

.recommend_box .ul_01 .wrap_05 {
  margin: 2rem 0 0;
	padding: 0 2rem;
}
.recommend_box .ul_01 .wrap_05 .txt_01{
	font-size: 1.7rem;
	text-align: center;
	font-weight: bold;
	color: #1d9dbf;
}
.recommend_box .ul_01 .wrap_05 .txt_02{
	margin: 2rem 0 0;
}
.recommend_box .ul_01 .wrap_05 .js-accordion-title {
  margin: 2rem 0 0;
	font-weight: bold;
	text-align: center;
	line-height: 4rem;
	border-top: 1px dotted #030142;
	border-bottom: 1px dotted #030142;
}
.recommend_box .ul_01 .wrap_05 .ul_02 li{
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 2;
	padding-left: 2rem;
	position: relative;
}
.recommend_box .ul_01 .wrap_05 .ul_02 li::before {
  content: "";
  display: block;
	position: absolute;
  top: 11px;
  left: 0;
	background: #3cb2d2;
  width: 10px;
  height: 10px;
	box-sizing: border-box;
}

.recommend_box .btn-web a {
  max-width: 100%;
  margin: 2rem auto 0;
	padding: 1.8rem 4rem;
  font-size: 1.6rem;
}
.recommend_box .btn-internal a {
  max-width: 100%;
  margin: 2rem auto 0;
	padding: 1.8rem 4rem;
  font-size: 1.6rem;
}

.recommend_box .note {
  margin: 3rem 0 0;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .recommend_box .ttl_02 .txt {
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.3;
  }
  .recommend_box .ttl_02 .txt span {
    font-size: 2.8rem;
  }
  .recommend_box .ttl_02 .fukidashi {
    margin: 0 0 2.5rem;
    text-align: center;
  }
  .recommend_box .ttl_02 .fukidashi span {
    background: #081e4b;
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
    padding: 0.5rem 2rem;
    border-radius: 2px;
    position: relative;
  }
  .recommend_box .ttl_02 .fukidashi span:before {
    content: "";
    position: absolute;
    top: 97%;
    left: 50%;
    margin-left: -4px;
    border: 6px solid transparent;
    border-top: 8px solid #081e4b;
  }
  
  
  .recommend_box {
    padding: 0 0 6rem;
    overflow: hidden;
  }
  .recommend_box::after {
    display: none;
  }
  

  .recommend_box .read_txt {
    margin: 2rem 0 0;
    text-align: left;
    line-height: 1.8;
  }
  
  .recommend_box .inner {
    max-width: 100%;
    padding: 2rem 1.5rem 0;
  }
  
  .recommend_box .ttl_02 .fukidashi {
    font-size:1.4rem;
  }
  
  .recommend_box .ul_01 {
    margin-top:0;
    display:block;
  }
  .recommend_box .ul_01>li{
    width: 100%;
    position: relative;
    padding: 0 0 3rem;
    margin-top: 8rem;
  }
  .recommend_box .ul_01>li:before{
    display: block;
    content: "";
    background: url("img/sp_sec05_bg.jpg") center top no-repeat;
    width: 100vw;
    height: 500px;
    background-size: 100% auto;
    position: absolute;
    top: -4rem;
    left: -1.5rem;
    z-index: -1;
  }
  
  .recommend_box .ul_01 .wrap_01 {
    padding: 2rem 2rem 2rem 5rem;
    position: relative;
  }
  .recommend_box .ul_01 .wrap_01 p {
    font-size: 2rem;
    line-height: 1.4;
  }
  .recommend_box .ul_01 .wrap_01 img {
    width: 15%;
    position: absolute;
    top: 27%;
    left: 15px;
    transform: translate(0,-50%);
  }

  .recommend_box .ul_01 .wrap_02 {
    padding: 3rem 0 0 0;
    min-height: unset;
  }
  .recommend_box .ul_01 .wrap_02 .ttl01 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
  }
  .recommend_box .ul_01 .wrap_02 img {
    width: 80%;
    display: block;
    margin: 0 auto;
  }
  .recommend_box .ul_01 .wrap_02 .caption {
    text-align: center;
    margin-top:0.5rem;
  }

  .recommend_box .ul_01 .wrap_03 {
    background: #dce8f4;
    margin: 1.5rem 0 0;
    padding: 1.5rem 2rem;
    position: relative;
  }
  .recommend_box  .ul_01 .wrap_03:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 10px solid transparent;
    border-top: 15px solid #dce8f4;
  }
  .recommend_box .ul_01 .wrap_03 .txt_01 {
    color: #1d9cbf;
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    margin: 1rem 0;
  }
  .recommend_box .ul_01 .wrap_03 .txt_02 {
    margin: 1rem 0;
  }

  .recommend_box .ul_01 .wrap_04 {
    margin: 2rem 0 0;
    padding: 0 2rem;
  }
  .recommend_box .ul_01 .wrap_04 .txt_01 {
    text-align: center;
  }
  .recommend_box .ul_01 .wrap_04 .txt_02 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: bold;
  }
  .recommend_box .ul_01 .wrap_04 .txt_02 span {
    background: #fadb32;
    font-size: 3.2rem;
    font-weight: bold;
    padding: 0 1rem;
  }
  
  .on_off {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin: 1rem 0 0;
  }
  .on_off li {
    width: 49%;
    background:#d3d3d3; 
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 1rem 0;
    margin-bottom: 0.6rem;
    border-radius: 4px;
    line-height: 1.4;
  }
  .on_off li.small{
    width: 32%!important;
  }
  .on_off .on {
    background:#02499b; 
  }
  
  .recommend_box .ul_01 .wrap_04 .txt_03,
  .recommend_box .ul_01 .wrap_05 .txt_02 {
    font-size: 2rem;
    border-bottom: 1px solid #030142;
    text-align: center;
    font-weight: bold;
    margin-bottom: 2rem;
  }
  
  .recommend_box .ul_01 .wrap_04 .txt_03{
    margin: 1rem 0 0;
  }
  .recommend_box .ul_01 .wrap_04 .txt_04{
    margin: 1rem 0 0;
  }

  .recommend_box .ul_01 .wrap_04 .txt_05{
    font-size: 2.8rem;
    text-align: center;
    font-weight: bold;
    margin: 0;
  }
  .recommend_box .ul_01 .wrap_05 {
    margin: 1.5rem 0 0;
    padding: 0 2rem 2rem;
  }
  .recommend_box .ul_01 .wrap_05 .txt_01{
    font-size: 1.7rem;
    text-align: center;
    font-weight: bold;
    color: #1d9dbf;
  }
  .recommend_box .ul_01 .wrap_05 .txt_02{
    margin: 1.5rem 0 0;
  }
  .recommend_box .ul_01 .wrap_05 .js-accordion-title {
    margin: 1.5rem 0 0;
    font-weight: bold;
    text-align: center;
    line-height: 4rem;
    border-top: 1px dotted #030142;
    border-bottom: 1px dotted #030142;
  }
  .recommend_box .ul_01 .wrap_05 .ul_02 li{
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 2;
    padding-left: 2rem;
    position: relative;
  }
  .recommend_box .ul_01 .wrap_05 .ul_02 li::before {
    content: "";
    display: block;
    position: absolute;
    top: 11px;
    left: 0;
    background: #3cb2d2;
    width: 10px;
    height: 10px;
    box-sizing: border-box;
  }
  
  .recommend_box .btn-web a {
    max-width: 90%;
    margin: 1.5rem auto 0;
    font-size: 1.4rem;
  }
  .recommend_box .btn-internal a {
    max-width: 90%;
    margin: 1.5rem auto 0;
    font-size: 1.4rem;
  }


	.recommend_box .ul_01 .wrap_01 span:not([class]) {
		font-size: 2.4rem;
	}
	.recommend_box .ul_01 .wrap_01 span.white-text {
		font-size: 2.4rem;
	}
	.recommend_box .ul_01 .wrap_01 p:not([class]) {
		font-size: 2.6rem;
	}
}

.recommend_box .ttl_02 .fukidashi {
    animation: yurayura 2s linear infinite;
}



@keyframes yurayura {
  0% , 100%{
      transform: translate(0,10px);
  }
  50%{
      transform: translate(0,-10px);
  }
}