@charset "utf-8";

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

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

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

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


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



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

body {
  color: #000;
  font-size: 1.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;
}

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

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

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

strong {
	font-weight: 900;
}

body, html {
	height: 100%;
}

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

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

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

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

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

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

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



/*--------------------------------------
　color
---------------------------------------*/
.cl-wh {
  color: #fff;
}
.cl-bl01 {
  color: #052c66;
}
.cl-bl02 {
  color: #287ddd;
}
.cl-bl03 {
  color: #0867d4;
}
.cl-yl {
  color: #ffd82a;
  text-shadow: 0px 4px 4px rgb(55 55 55 / 37%);
}


/*--------------------------------------
　Header
---------------------------------------*/
header {
	width: 100%;
	min-width: 1100px;
  padding: 2rem 3rem 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

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

header .header_logo {
  width: 250px;
}
header .header_logo a {
  display: block;
}

header .sitename {
  width: calc(100% - 500px);
  font-size: 1.4rem;
	line-height: 1.5;
	text-align: right;
}

@media screen and (max-width: 768px) {
	header {
		width: 100%;
		min-width: 100%;
    padding: 1rem 1rem 0;
	}
	
  header .header_logo {
        width: 50%;
        margin: 10px 0 0;
        order: 2;
    }

  header .sitename {
    width: 100%;
    font-size: 1.2rem;
    text-align: left;
    order: 1;
  }
}


/*--------------------------------------
　#hb-menu
---------------------------------------*/
/*----- hb-menu -----*/
#hb-menu {
	display: table;
	position: absolute;
	top: 50%;
	right: 30px;
  transform: translate(0,-50%);
	background: none;
	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: #052c66;
	width: 50px;
	height: 2px;
	margin: 0 0 0 auto;
	border-radius: 0;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}
#hb-menu span:nth-of-type(2) {
	margin-top: 10px;
  margin-right: 10px;
}

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

/* 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: #052c66;
	width: 100%;
	height: 100%;
	padding: 9rem 0;
	box-sizing: border-box;
	-ms-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	overflow-x: hidden;
	overflow-y: auto;
	transition: .5s;
	transform: translateX(100%);
	-ms-transform: translateX(100%);
	-webkit-transform: translateX(100%);
	z-index: 9999;
}
.hb-open .g-nav .g-nav-inner {
	position: fixed;
	top: 0;
	transform: translateX(0);
	-ms-transform: translateX(0);
	-webkit-transform: translateX(0);
	transform: translateZ(0);
	-ms-transform: translateZ(0);
	-webkit-transform: translateZ(0);
	width: 1100px;
	display: flex;
}
.g-nav .g-nav-inner::-webkit-scrollbar {
  display: none;
}

.hb_logo {
      width: 245px;
    margin: 7rem auto;
}
.hb_logo a {
  display: block;
}

.hb_menu_wrapper {
	    max-width: 100%;
    margin: 6rem auto 0;
    width: 60%;
}

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

.hb_menu_title {
	padding: 2.5rem 1.5rem 2.5rem 1.5rem;
	border-bottom: 1px solid #eae3da;
  position: relative;
}

.hb_menu_title_link {
	display: block;
	padding: 0 5rem 0 0;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 900;
	line-height: 1.6;
	position: relative;
}
.hb_menu_title_link::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  transform: translate(0,-50%);
  background: url("img/arrow-wh01.png") left top no-repeat;
  background-size: contain;
	width: 26px;
	height: 8px;
  box-sizing: border-box;
}

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

.hb_menu_list_item {
  width: 100%;
	padding: 2.5rem 1.5rem 2.5rem 3rem;
	border-bottom: 1px solid #eae3da;
	position: relative;
}
.hb_menu_list_item:first-child {
	display: none;
}

.hb_menu_list_link {
	display: block;
	padding: 0 5rem 0 0;
	color: #fff;
	font-size: 1.4rem;
	line-height: 1.6;
	position: relative;
}
.hb_menu_list_link::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  transform: translate(0,-50%);
  background: url("img/arrow-wh01.png") left top no-repeat;
  background-size: contain;
	width: 26px;
	height: 8px;
  box-sizing: border-box;
}


/*--------------------------------------
　SP #hb-menu
---------------------------------------*/
@media screen and (max-width: 768px) {
  /*----- hb-menu -----*/
  #hb-menu {
    position: fixed;
    top: 20px;
    right: 10px;
    transform: translate(0,0);
  }
  #hb-menu span {
    width: 30px;
    height: 1px;
    margin: 0 0 0 auto;
  }
  #hb-menu span:nth-of-type(2) {
    margin-top: 7px;
    margin-right: 8px;
  }

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

  /*----- g-nav -----*/
  .g-nav .g-nav-inner {
    padding: 1.5rem 2rem 6rem;
  }

  .hb_logo {
    max-width: 60%;
    margin: 0;
  }

  .hb_menu_wrapper {
    max-width: 100%;
    margin: 2rem auto 0;
	  width: 100%;
  }
.hb-open .g-nav .g-nav-inner {
    position: fixed;
    width: 100%;
    display: flex;
    flex-direction: column;
}
  .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;
    transform: translate(0,-50%) rotate(135deg);
		background: none;
		border-top: solid 1px #fff;
		border-right: solid 1px #fff;
	}
	.hb_menu_title.open::after {
    transform: translate(0,-50%) 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 3rem 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 {
    content: "";
		display: block;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translate(0,-50%) rotate(45deg);
    background: none;
    width: 8px;
    height: 8px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
  }

  .hb_menu_list {
    display: none;
  }

  .hb_menu_list_item {
    padding: 1.5rem 0 1.5rem 1rem;
  }
  .hb_menu_list_item:first-child {
    display: block;
  }

  .hb_menu_list_link {
    padding: 0 3rem 0 0;
  }
  .hb_menu_list_link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translate(0,-50%) rotate(45deg);
    background: none;
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}


/*--------------------------------------
　fixed_header
---------------------------------------*/
.fixed_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 2rem 3rem;
  z-index: 1;
	box-shadow: 0px 5px 8px 0px rgb(82 110 153 / 19%);
}

.fixed_header .logo {
  width: 190px;
}

@media screen and (max-width: 768px) {
  .fixed_header {
    position: relative;
    padding: 0 0;
  }

  .fixed_header .logo {
    display: none;
  }
}


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

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



/*--------------------------------------
　Footer
---------------------------------------*/
.l-footer-area {
	width: 100%;
	min-width: 1100px;
  position: relative;
  z-index: 0;
}
.l-footer-area::after {
  content: "";
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translate(-50%,0);
  background: #052c66;
  width: 100%;
  height: calc(100% - 80px);
  border-radius: 60px 60px 0 0;
  z-index: -1;
}

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

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

.footer_operation {
  display: flex;
  justify-content: space-between;
    align-items: flex-start;
  background: #fff;
  padding: 4rem 6rem;
  border: 2px solid #052c66;
  border-radius: 20px;
}

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

.footer_operation .footer_txtBox {
  width: calc(100% - 320px);
}

.footer_operation .txt {
  margin: 0 0 0;
  font-size: 1.4rem;
  line-height: 1.8;
}

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


.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 rgba(255,255,255,0.16);
	position: relative;
}

.l-footer-menu__title__link {
	display: inline-block;
	padding: 0 5rem 0 0;
	color: #fff;
  font-size: 1.8rem;
	font-weight: 900;
	line-height: 1.6;
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
	position: relative;
}
.l-footer-menu__title__link::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  transform: translate(0,-50%);
  background: url("img/arrow-wh01.png") left top no-repeat;
  background-size: contain;
	width: 26px;
	height: 8px;
  box-sizing: border-box;
}

.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;
  transform: translate(0,-50%);
  background: url("img/arrow-wh01.png") left top no-repeat;
  background-size: contain;
	width: 21px;
	height: 7px;
  box-sizing: border-box;
}

.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: 8px;
	height: 1px;
}


.l-footer-area .menseki {
	background: #163e79;
	max-width: 730px;
  margin: 5rem auto 0;
  padding: 2rem 3rem;
  box-sizing: border-box;
  border-radius: 6px;
	color: #fff;
	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: #052c66;
}

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

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

@media screen and (max-width: 768px) {
.l-footer-area {
	min-width: 100%;
}
.l-footer-area::after {
  top: 80px;
  width: 100%;
  height: calc(100% - 80px);
  border-radius: 20px 20px 0 0;
}

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

  .footer_operation {
    display: block;
    width: calc(100% - 4rem);
    margin: auto;
    padding: 2.5rem 2rem;
    border: 1px solid #052c66;
    border-radius: 10px;
  }

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

  .footer_operation .footer_txtBox {
    width: 100%;
    margin: 2rem 0 0;
  }

  .footer_operation .txt {
    font-size: 1.3rem;
    line-height: 1.6;
  }

  .footer_operation .btn-link a {
    margin: 1.5rem 0 0;
  }


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

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

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

  .l-footer-menu__title__link {
    display: block;
    padding: 0 3rem 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.16);
  }
  .l-footer-menu__list__item:first-child {
    display: block;
  }

  .l-footer-menu__list__link {
    padding: 1.5rem 3rem 1.5rem 1.5rem;
    font-size: 1.4rem;
  }
  .l-footer-menu__list__link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translate(0,-50%) rotate(45deg);
    background: none;
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }

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

  .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;
    border-radius: 5px;
    font-size: 1rem;
  }

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


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

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


/*--------------------------------------
　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: 50px;
	}
}


/*--------------------------------------
　Main Contents
---------------------------------------*/
.contents_wrap {
  width: 100%;
	min-width: 1100px;
  padding: 14rem 0 14rem;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.contents_wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("img/contents_bg.png") center top no-repeat;
  background-size: 1663px auto;
  width: 100%;
  height: 873px;
  mix-blend-mode: multiply;
  z-index: -1;
}
.contents_wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #d4e8ff 0%, #d4e8ff 70%, transparent 100%);
  width: 100%;
  height: 750px;
  z-index: -2;
}

.contents {
  width: 1100px;
  margin: auto;
  position: relative;
  z-index: 0;
}

#category,
#page {
  width: 100%;
  margin: 0;
  padding: 0;
}

.contents_block {
  margin: 3rem 0 0;
  padding: 6rem 8rem 6rem;
  position: relative;
  z-index: 0;
}
.contents_block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  width: 100vw;
  height: 100%;
  min-width: 1100px;
  box-sizing: border-box;
  border-radius: 30px 0 0 0;
  box-shadow: 0 0 18px 0 rgba(0,0,0,0.04);
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .contents_wrap {
    min-width: 100%;
    padding: 9rem 2rem 8rem;
  }
  .contents_wrap::before {
    background: url("img/contents_bg.png") center top no-repeat;
    background-size: 100% auto;
    width: 100%;
    height: 0;
    padding-top: calc(100%*873/1663);
  }
  .contents_wrap::after {
    height: 500px;
  }

  .contents {
    width: 100%;
  }

  .contents_block {
    margin: 2rem 0 0;
    padding: 4rem 0 2rem 0;
  }
  .contents_block::after {
    left: 50%;
    transform: translate(-50%,0);
    width: calc(100% + 4rem);
    min-width: 100%;
    border-radius: 15px 15px 0 0;
  }
}


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

.contents h1 {
	margin: 0 0 3rem;
  padding: 6rem 0 0;
	color: #052c66;
	font-size: 4.4rem;
	font-weight: 900;
  text-align: center;
	line-height: 1.4;
  position: relative;
  z-index: 0;
}
.contents h1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,0);
  background: url("img/eng_contents.png") left top no-repeat;
  background-size: contain;
  width: 610px;
  height: 90px;
  margin: auto;
  z-index: -1;
}


.contents h2 {
  background: linear-gradient(-90deg, #4494f0, #1066c9);
	margin: 4rem 0 2rem;
	padding: 2rem 3rem 2rem 4rem;
	color: #fff;
	font-size: 3rem;
  border-radius: 0 20px 0 0;
  border-left: 4px solid #052c66;
}

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


.contents h3 {
	margin: 4rem 0 2rem;
	padding: 0 0 2rem 4.5rem;
  color: #052c66;
	font-size: 2.8rem;
	border-bottom: 1px solid #cecfcf;
  position: relative;
}
.contents h3::before {
	content: "";
	position: absolute;
	top: calc(50% - 1rem);
	left: 0;
  transform: translate(0,-50%);
  background: url("img/icon_h3.png") left top no-repeat;
  background-size: contain;
	width: 30px;
	height: 20px;
  box-sizing: border-box;
}

.contents h3 a {
	padding: 0 5rem 0 0;
  color: #052c66;
	position: relative;
}
.contents h3 a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100% + 2rem);
}
.contents h3 a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  transform: translate(0,-50%);
  background: url("img/arrow-bl01.png") left top no-repeat;
  background-size: contain;
	width: 32px;
	height: 10px;
  box-sizing: border-box;
}


.contents h4 {
	color: #287ddd;
	margin: 4rem 0 2rem;
	font-size: 2rem;
}

.contents h4 a {
	padding: 0 5rem 0 0;
	color: #287ddd;
	position: relative;
}
.contents h4 a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  transform: translate(0,-50%);
  background: url("img/arrow-bl02.png") left top no-repeat;
  background-size: contain;
	width: 32px;
	height: 10px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .contents h1 {
    margin: 0 0 1.5rem;
    padding: 3rem 0 0;
    font-size: 2.5rem;
  }
  .contents h1::before {
    width: 100%;
    height: 0;
    padding-top: calc(100%*90/610);
  }


  .contents h2 {
    margin: 3rem 0 2rem;
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    font-size: 2.2rem;
    border-radius: 0 10px 0 0;
    border-left: 2px solid #052c66;
  }

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


  .contents h3 {
    margin: 3rem 0 2rem;
    padding: 0 0 1.5rem 3.5rem;
    font-size: 1.8rem;
  }
  .contents h3::before {
    top: calc(50% - 1rem);
    width: 24px;
    height: 16px;
  }

  .contents h3 a {
    padding: 0 3rem 0 0;
  }
  .contents h3 a::before {
    height: calc(100% + 1.5rem);
  }
  .contents h3 a::after {
    width: 19px;
    height: 6px;
  }


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

  .contents h4 a {
    padding: 0 3rem 0 0;
  }
  .contents h4 a::after {
    width: 19px;
    height: 6px;
  }
}


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

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

.txt_bold {
	color: #e79607;
	font-weight: 900;
}
.marker {
	background: linear-gradient(transparent 75%, #aed8bd 0%);
	font-weight: 900;
}

p.operation {
  color: #323232;
  font-size: 1.3rem;
  text-align: center;
  line-height: 1.8;
}
.caption {
    font-size: 1.2rem;
    margin-top: 1rem;
    color: #b1b1b1;
}
.caption a {
    color: #b1b1b1;
}
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;
}
p.caption::-webkit-scrollbar {
	height: 2px;
}
p.caption::-webkit-scrollbar-track {
	background: #efefef;
	margin: 0 0;
	border: none;
	border-radius: 0;
	box-shadow: none;
}
p.caption::-webkit-scrollbar-thumb {
	background: #cacaca;
	border-radius: 0;
	box-shadow: none;
}
p.caption a {
	color: #888;
	text-decoration: underline;
}
@-moz-document url-prefix() {
  p.caption {
    scrollbar-color: #cacaca #efefef;
  	scrollbar-width: thin;
  }
}

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

	p.caption {
		margin: 1rem 0 0 0;
    font-size: 1rem;
	}
}


/*--------------------------------------
　リスト
---------------------------------------*/
/*----- ulリスト -----*/
.contents ul {
	margin: 4rem 0 4rem;
}
.contents ul li {
  margin: 0 0 1.5rem 0;
  padding: 0 0 0 2rem;
	font-size: 1.5rem;
  line-height: 1.8;
	position: relative;
}
.contents ul li:last-child {
  margin: 0 0 0 0;
}
.contents ul li::before {
  content: "";
  display: block;
	position: absolute;
  top: 12px;
  left: 0;
  background: rgba(2,154,117,0.6);
  width: 6px;
  height: 6px;
	box-sizing: border-box;
  border-radius: 50%;
}
.contents ul li a {
	display: inline-block;
	text-decoration: underline;
}
.contents ul li a:hover {
	text-decoration: none;
}

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


/*--------------------------------------
　リンク
---------------------------------------*/
.btn-web a,
.btn-internal a {
	display: block;
	max-width: 450px;
	margin: 4rem auto 4rem;
	padding: 2.5rem 5rem;
	box-sizing: border-box;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 900;
	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: 0;
  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,
.btn-internal a:hover {
  opacity: 1;
}
.btn-web a:hover::before,
.btn-internal a:hover::before {
  transform: scale(1, 1);
  width: 100%;
}


/*----- btn-web（外部リンク） -----*/
.btn-web a {
  background: #e79607;
  border: 2px solid #e79607;
	box-shadow: 0px 10px 8px 0px rgba(184,117,0,0.3);
}
.btn-web a::before {
  background: #fff;
}
.btn-web a::after {
  content: "";
  position: absolute;
	top: 50%;
	right: 20px;
  transform: translate(0,-50%);
  background: url("img/icon_web_wh.png") left top no-repeat;
  background-size: contain;
	width: 26px;
	height: 20px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.btn-web a:hover {
  color: #e79607;
}
.btn-web a:hover::after {
  background: url("img/icon_web_or.png") left top no-repeat;
  background-size: contain;
}


/*----- btn-internal（内部リンク） -----*/
.btn-internal a {
  background: #052c66;
  border: 2px solid #052c66;
	box-shadow: 0px 10px 8px 0px rgba(5,44,102,0.3);
}
.btn-internal a::before {
  background: #fff;
}
.btn-internal a::after {
  content: "";
  position: absolute;
	top: 50%;
	right: 20px;
  transform: translate(0,-50%);
  background: url("img/arrow-wh01.png") left top no-repeat;
  background-size: contain;
	width: 26px;
	height: 8px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.btn-internal a:hover {
  color: #052c66;
}
.btn-internal a:hover::after {
  background: url("img/arrow-bl01.png") left top no-repeat;
  background-size: contain;
}


/*----- btn-link（テキストリンク） -----*/
.btn-link {
	text-align: right;
}
.btn-link a {
	display: inline-block;
	margin: 1rem 0 1rem;
	padding: 0 3rem 0 0;
  color: #052c66;
	font-size: 1.5rem;
  font-weight: 900;
	line-height: 1.5;
	text-decoration: underline;
	position: relative;
}
.btn-link a::after {
  content: "";
  position: absolute;
	top: 50%;
	right: 0;
  transform: translate(0,-50%);
  background: url("img/arrow-bl03.png") left top no-repeat;
  background-size: contain;
	width: 20px;
	height: 20px;
  box-sizing: border-box;
}
.btn-link a:hover {
	text-decoration: none;
}


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


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

@media screen and (max-width: 768px) {
  .btn-web a,
  .btn-internal a {
    max-width: 90%;
    margin: 3rem auto 3rem;
    padding: 1.8rem 4rem;
    font-size: 1.4rem;
  }


  /*----- btn-web（外部リンク） -----*/
  .btn-web a {
    border: 1px solid #e79607;
    box-shadow: 0px 5px 8px 0px rgba(184,117,0,0.3);
  }
  .btn-web a::after {
    right: 15px;
    width: 18px;
    height: 14px;
  }


  /*----- btn-internal（内部リンク） -----*/
  .btn-internal a {
    border: 1px solid #052c66;
    box-shadow: 0px 5px 8px 0px rgba(5,44,102,0.3);
  }
  .btn-internal a::after {
    right: 15px;
    width: 19px;
    height: 6px;
  }


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


/*--------------------------------------
　Table
---------------------------------------*/
table {
	background: #fff;
  width: 100%;
  margin: 4rem 0 5rem;
	box-sizing: border-box;
	border-collapse: inherit;
  border-spacing: 0;
  border: 1px solid #052c66;
  border-radius: 10px;
}

table th {
	background: #f1f1f1;
	padding: 2rem;
	box-sizing: border-box;
	text-align: center;
	font-size: 1.5rem;
	font-weight: 900;
	line-height: 1.4;
  word-break: break-all;
  border-left: none;
	border-bottom: 1px solid #052c66;
}
table tr:first-child th:first-child {
  border-radius: 10px 0 0 0;
}
table tr:last-child th {
	border-bottom: none;
  border-radius: 0 0 0 10px;
}
table thead th {
	border-left: 1px solid #052c66;
  border-radius: 0!important;
}
table thead tr:last-child th {
	border-bottom: 1px solid #052c66;
}
table thead th:first-child {
	border-left: none;
  border-radius: 10px 0 0 0!important;
}
table thead th:last-child {
  border-radius: 0 10px 0 0!important;
}
table th a {
	font-weight: 900;
	text-decoration: underline;
}
table th a:hover {
	text-decoration: none;
}

table td {
	padding: 2rem;
	box-sizing: border-box;
	font-size: 1.5rem;
	line-height: 1.6;
  word-break: break-all;
	border-left: 1px solid #052c66;
	border-bottom: 1px solid #052c66;
}
table tr:last-child td {
	border-bottom: none;
}
table td a {
	text-decoration: underline;
}
table td a:hover {
	text-decoration: none;
}

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

  table th {
    padding: 1.2rem;
    font-size: 1.4rem;
    border-bottom: 1px solid #052c66;
  }
  table tr:first-child th:first-child {
    border-radius: 5px 0 0 0;
  }
  table tr:last-child th {
    border-radius: 0 0 0 5px;
  }
  table thead th:first-child {
    border-radius: 5px 0 0 0!important;
  }
  table thead th:last-child {
    border-radius: 0 5px 0 0!important;
  }

  table td {
    padding: 1.2rem;
    font-size: 1.4rem;
    border-left: 1px solid #052c66;
    border-bottom: 1px solid #052c66;
  }
  
  .table_parts01 th {
    display: block;
    border-bottom: 1px solid #052c66!important;
    border-radius: 0!important;
  }
  .table_parts01 tr:first-child th {
    border-radius: 5px 5px 0 0!important;
  }
  .table_parts01 td {
    display: block;
    border-left: 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;
  border-radius: 20px;
}

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

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

.float-wrap .catch {
  display: inline;
  background: linear-gradient(transparent 0%, #d4e8ff 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 5px 5px;
  line-height: 2.2;
	margin: 2rem 0 2rem 0;
  color: #052c66;
	font-size: 2.2rem;
	font-weight: 900;
}
.float-wrap.ct {
  text-align: center;
}
.float-wrap.ct .float-img {
	margin: 0 0 2rem;
}
.float-wrap.ct p {
  text-align: justify;
}

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

/*----- リストが入る場合 -----*/ 
.float-txt ul {
	width: calc(100% - 370px);
	box-sizing: border-box;
}
.float-txt.right ul {
	margin: 0 0 0 auto;
	padding-left: 0;
}
.float-txt.left ul {
	margin: 0 0 0 0;
	padding-right: 0;
}
.float-txt ul li {
  font-weight: 900;
}
.float-txt ul li::before {
  background: rgba(40,125,221,0.6);
}

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

  .float-img {
    margin: 0 0 1.5rem;
  }
  .float-img .flame img {
    border-radius: 10px;
  }

  .float-img.fl {
    float: inherit;
    width: 100%;;
    padding-right: 0;
  }
  .float-img.fr {
    float: inherit;
    width: 100%;
    padding-left: 0;
  }

  .float-wrap .catch {
    padding: 3px 5px;
    line-height: 2;
    margin: 1.5rem 0 1.5rem 0;
    font-size: 1.8rem;
  }
  .float-wrap.ct {
    text-align: justify;
  }
  .float-wrap.ct .float-img {
    margin: 0 0 1.5rem;
  }

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

  /*----- リストが入る場合 -----*/ 
  .float-txt ul {
    width: 100%;
  }
  .float-txt.right ul {
    margin: 0 0 0 0;
  }
  .float-txt.left ul {
    margin: 0 0 0 0;
  }
}


/*--------------------------------------
　toc_parts
---------------------------------------*/
.toc_parts {
  background: #f4f4f4;
  max-width: 780px;
	margin: 0 auto 8rem;
	padding: 3rem 4rem 3rem;
  border-radius: 20px;
  position: relative;
}

.toc_parts .ttl {
  color: #052c66;
	font-size: 2.2rem;
	font-weight: 900;
}

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

#toc ul.chapter {
	margin: 0 0 0;
}
#toc ul.chapter li.chapter-h-two {
margin: 0 0 1rem 0;
    padding: 0 0 0 4rem;
    font-size: 1.8rem;
    overflow-wrap: break-word;
    position: relative;
    counter-increment: toccount;
}
#toc ul.chapter li.chapter-h-two + li {
    margin-top: 0.8em;
}
#toc ul.chapter li.chapter-h-three {
    margin: 1rem 0 1rem 2rem;
    padding: 0 0 0 1.5em;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.3;
    position: relative;
}
#toc ul.chapter li.chapter-h-three:before {
    content: "└";
    position: absolute;
    left: 0;
    top: 0.1em;
}
#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: -7px;
  left: 0;
	background: none;
  width: inherit;
  height: inherit;
  border-radius: 0;
	color: #287ddd;
	font-size: 2.2rem;
  font-weight: 900;
}
#toc ul.chapter li a {
	display: block;
  color: #052c66;
  font-weight: 900;
	text-decoration: none;
}

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

/*グラデーションアコーディオン*/
.toc_parts .acc_btn {
	position: absolute;
	left: 0;
	right: 0;
  bottom: -30px;
	background: #fff;
	max-width: 240px;
	margin: auto;
	padding: 1.5rem 5rem;
	box-sizing: border-box;
  border: 1px solid #052c66;
	font-size: 1.5rem;
	font-weight: 900;
	text-align: center;
	line-height: 1.5;
	cursor: pointer;
  border-radius: 100px;
	transition: all 0.4s;
  z-index: 2;
}
.toc_parts .acc_btn::before,
.toc_parts .acc_btn::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	background: #052c66;
	width: 14px;
	height: 2px;
	margin-top: -1px;
	transition: all 0.4s;
}
.toc_parts .acc_btn::after {
	transform: rotate(90deg);
}
.toc_parts .acc_btn.is-show::before {
  display: none;
}
.toc_parts .acc_btn.is-show::after {
  transform: rotate(180deg);
}
.toc_parts .acc_btn span {
  color: #052c66;
	font-weight: 900;
}
.toc_parts .acc_btn span:before {
	content: "目次を開く";
}
.toc_parts .acc_btn.is-show span:before {
	content: "目次を閉じる";
}

.toc_parts .acc_box {
	overflow: hidden;
	position: relative;
}
.toc_parts .acc_box.is-hide {
  height: 200px;
}
.toc_parts .acc_box::before {
	content: "";
	position: absolute;
	bottom: 0;
  background: -webkit-linear-gradient(180deg, rgba(244,244,244,0) 0%, rgba(244,244,244,.9) 50%, rgba(244,244,244,.9) 50%, #f4f4f4 100%);
  background: linear-gradient(180deg, rgba(244,244,244,0) 0%, rgba(244,244,244,.9) 50%, rgba(244,244,244,.9) 50%, #f4f4f4 100%);
	width: 100%;
  height: 100px;
	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 3rem;
}

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

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

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

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

  /*グラデーションアコーディオン*/
  .toc_parts .acc_btn {
    bottom: -20px;
    max-width: 60%;
    margin: auto;
    padding: 1.2rem 3rem;
    font-size: 1.4rem;
  }
  .toc_parts .acc_btn::before,
  .toc_parts .acc_btn::after {
    right: 10px;
    width: 12px;
    height: 1px;
  }

  .toc_parts .acc_box.is-hide {
    height: 200px;
  }
  .toc_parts .acc_box::before {
    height: 80px;
  }

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


/*--------------------------------------
　related-article01-frame
---------------------------------------*/
.related-article01-frame {
  background: #f4f4f4;
  max-width: 780px;
  margin: 10rem auto 10rem;
  padding: 0 0 5rem;
  border-radius: 20px;
}

.related-article01-title {
  display: inline-block;
  background: #052c66;
  padding: 1.5rem 4rem;
  color: #fff;
	font-size: 2.2rem;
	font-weight: 900;
  border-radius: 20px 0 20px 0;
  position: relative;
}
.related-article01-title span {
	font-weight: 900;
}

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

ul.related-article01-list {
	margin: 3rem 0 0;
  padding: 0 5rem;
}
ul.related-article01-list li {
  margin: 0 0 2rem 0;
	padding: 0 0 0 0;
  font-size: 1.6rem;
	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 {
  padding: 0 0 0 3rem;
  font-weight: 900;
	text-decoration: none;
  position: relative;
}
ul.related-article01-list li a::after {
	content: "";
	position: absolute;
	top: 50%;
  left: 0;
  transform: translate(0,-50%);
  background: url("img/arrow-bl01.png") left top no-repeat;
  background-size: contain;
	width: 22px;
	height: 7px;
  box-sizing: border-box;
}

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

  .related-article01-title {
    padding: 1rem 2.5rem;
    font-size: 1.8rem;
    border-radius: 10px 0 10px 0;
  }

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


/*--------------------------------------
　icon_ttl_parts
---------------------------------------*/
.icon_ttl_parts {
  background: #fff;
  max-width: 900px;
  margin: 10rem 0 10rem auto;
  padding: 3.5rem 5rem 3.5rem 12rem;
  color: #287ddd;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.5;
  border: 2px solid #f4f4f4;
  border-radius: 12px;
  position: relative;
}
.icon_ttl_parts::before {
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translate(0,-50%);
  padding: 1rem 2rem;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 900;
  border-radius: 10px;
}
.icon_ttl_parts.point::before {
  content: "POINT";
  background: #052c66;
}
.icon_ttl_parts.check::before {
  content: "CHECK";
  background: #029a75;
}

@media screen and (max-width: 768px) {
  .icon_ttl_parts {
    max-width: 100%;
    margin: 6rem 0 6rem auto;
    padding: 3rem 2rem 2rem 2rem;
    font-size: 1.8rem;
    border: 1px solid #f4f4f4;
    border-radius: 6px;
  }
  .icon_ttl_parts::before {
    top: -20px;
    left: -15px;
    transform: translate(0,0);
    padding: 5px 1.2rem;
    font-size: 1.8rem;
    border-radius: 5px;
  } 
}


/*--------------------------------------
　summary_parts
---------------------------------------*/
.summary_parts {
  width: calc(100% + 80px);
  margin: 10rem 0 10rem -8rem;
}

.summary_parts .summary_ttl {
  background: linear-gradient(-90deg, #4494f0, #1066c9);
  padding: 4rem 8rem;
  font-size: 3rem;
  line-height: 1.5;
  border-radius: 0 30px 0 0;
  position: relative;
  z-index: 0;
}
.summary_parts .summary_ttl::before {
  content: "";
  position: absolute;
  top: 0;
  right: 50px;
  background: url("img/eng_summary.png") left top no-repeat;
  background-size: contain;
  width: 380px;
  height: 60px;
}
.summary_parts .summary_ttl::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: radial-gradient(#0f5fbc 1px, transparent 1px);
  background-size: 55px 55px;
  background-position: center top;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  z-index: -1;
}

.summary_parts .summary_block {
  background-color: #f4f4f4;
  background-image: radial-gradient(#e4e4e4 1px, transparent 1px);
  background-size: 55px 55px;
  background-position: center top;
  padding: 4rem 8rem 7rem;
  border-radius: 0 0 30px 0;
}

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

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

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

  .summary_parts .summary_ttl {
    padding: 1.5rem 2rem;
    font-size: 2rem;
    border-radius: 0 15px 0 0;
  }
  .summary_parts .summary_ttl::before {
    right: 10px;
    width: 60%;
    height: 0;
    padding-top: calc(60%*60/380);
  }
  .summary_parts .summary_ttl::after {
    background-size: 30px 30px;
  }

  .summary_parts .summary_block {
    background-size: 30px 30px;
    padding: 2rem 2rem 3rem;
    border-radius: 0 0 15px 0;
  }

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


/*--------------------------------------
　link_parts
---------------------------------------*/
.link_parts {
  background: #f4f4f4;
  margin: 10rem 0 10rem;
  padding: 6rem 8rem 6rem;
  border-radius: 30px;
}

.link_parts .link_ttl {
  font-size: 2.2rem;
  text-align: center;
  line-height: 1.5;
}

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

@media screen and (max-width: 768px) {
  .link_parts {
    margin: 6rem 0 6rem;
    padding: 3rem 2rem 3rem;
    border-radius: 15px;
  }

  .link_parts .link_ttl {
    font-size: 1.8rem;
  }

  .link_parts .btnBox {
    margin: 2rem 0 0;
  }
}


/*--------------------------------------
　sv_parts
---------------------------------------*/
.sv_parts {
  background: url("img/sv_parts_bg.jpg") center center no-repeat;
  background-size: cover;
  max-width: 890px;
  margin: 14rem 0 10rem auto;
  padding: 4rem 6rem 7rem;
  border-radius: 30px;
  box-shadow: 10px 10px 20px 0 rgba(0,0,0,0.08);
  position: relative;
}

.sv_parts .sv_ttl_wrap {
  position: absolute;
  top: -40px;
  left: -40px;
  background: #052c66;
  width: 400px;
  padding: 5rem 4rem 4rem;
  text-align: center;
  border-radius: 20px;
}

.sv_parts .icon_ttl {
  position: absolute;
  top: -30px;
  left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #287ddd;
  width: 100px;
  height: 100px;
  font-size: 2.4rem;
  border-radius: 50%;
}

.sv_parts .sponsored {
  font-size: 1.4rem;
}
.sv_parts .sponsored .large {
  font-size: 2.4rem;
}

.sv_parts .sv_ttl {
  display: inline-block;
  margin: 1.5rem 0 0;
  padding: 2rem 0 0;
  font-size: 2.6rem;
  border-top: 1px solid #fff;
  position: relative;
}
.sv_parts .sv_ttl::before,
.sv_parts .sv_ttl::after {
  content: "";
  position: absolute;
  top: -4px;
  background: none;
  width: 8px;
  height: 8px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 1px solid #fff;
}
.sv_parts .sv_ttl::before {
  left: -8px;
}
.sv_parts .sv_ttl::after {
  right: -8px;
}

.sv_parts .txtBox {
  max-width: calc(100% - 350px);
  margin: 0 0 3rem auto;
}

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

.sv_parts ul.sv_list {
  margin: 2rem 0 0 0;
}
.sv_parts ul.sv_list li {
  margin: 0 0 2rem 0;
  padding: 0 0 0 2rem;
  color: #052c66;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.8;
  position: relative;
}
.sv_parts ul.sv_list li::before {
  content: "";
  display: block;
	position: absolute;
  top: 13px;
  left: 0;
  background: none;
  width: 10px;
  height: 10px;
	box-sizing: border-box;
  border: 2px solid #052c66;
  border-radius: 50%;
}

.sv_parts .logo_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  margin: 3rem 0 0 0;
  padding: 3rem 2rem 3rem;
  border-radius: 20px;
  box-shadow: 0 0 12px 0 rgba(0,0,0,0.03);
}
.sv_parts .logo_wrap .logo {
  width: 280px;
  margin: 0 2rem 0 0;
}
.sv_parts .logo_wrap .btn-web {
  width: 400px;
}
.sv_parts .logo_wrap .btn-web a {
  max-width: 100%;
  margin: 0 0 0 ;
}

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

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

  .sv_parts .sv_ttl_wrap {
    position: relative;
    top: -40px;
    left: inherit;
    width: 100%;
    padding: 3rem 2rem 2rem;
    border-radius: 10px;
  }
  
  .sv_parts .icon_ttl {
    top: -20px;
    left: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
  
  .sv_parts .sponsored {
    font-size: 3.5vw;
  }
  .sv_parts .sponsored .large {
    font-size: 5vw;
  }
  
  .sv_parts .sv_ttl {
    margin: 1rem 0 0;
    padding: 1.5rem 0 0;
    font-size: 5vw;
    
    border-top: 1px solid #fff;
  }
  .sv_parts .sv_ttl::before,
  .sv_parts .sv_ttl::after {
    top: -3px;
    width: 6px;
    height: 6px;
  }
  .sv_parts .sv_ttl::before {
    left: -6px;
  }
  .sv_parts .sv_ttl::after {
    right: -6px;
  }

  .sv_parts .txtBox {
    max-width: 100%;
    margin: -2rem 0 2rem 0;
  }

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

  .sv_parts ul.sv_list {
    margin: 1.5rem 0 0 0;
  }
  .sv_parts ul.sv_list li {
    margin: 0 0 1.2rem 0;
    padding: 0 0 0 1.5rem;
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .sv_parts ul.sv_list li::before {
    top: 8px;
    width: 8px;
    height: 8px;
    border: 1px solid #052c66;
  }

  .sv_parts .logo_wrap {
    display: block;
    margin: 2rem 0 0 0;
    padding: 2rem 2rem 2rem;
    border-radius: 10px;
  }
  .sv_parts .logo_wrap .logo {
    width: 90%;
    margin: 0 auto;
  }
  .sv_parts .logo_wrap .btn-web {
    width: 100%;
  }
  .sv_parts .logo_wrap .btn-web a {
    max-width: 100%;
    margin: 1.5rem auto 0;
  }
	.sv_parts .logo_wrap .btn-tel {
    width: 100%;
}
  .sv_parts .logo_wrap .btn-tel a {
    max-width: 100%;
    margin: 1.5rem auto 0;
}
  .sv_parts .btn-tel a {
    margin: 2rem auto 0;
  }
  
  .sv_parts .btn-link a {
    margin: 1.5rem 0 0;
  }
}


/*--------------------------------------
　comment_parts
---------------------------------------*/
.comment_parts {
  background: #ebf4ff url("img/comment_parts_bg.png") right bottom no-repeat;
  background-size: 510px auto;
  margin: 10rem 0 10rem;
  padding: 3rem 6rem 3rem;
  border-radius: 20px;
}

.comment_parts .comment_ttl {
  background: #fff;
  padding: 2rem 3rem 2rem;
  font-size: 2.6rem;
  line-height: 1.5;
  border-radius: 10px;
}

.comment_parts .comment_block {
  display: flex;
  justify-content: space-between;
  margin: 3rem 0 0;
}

.comment_parts .imgBox {
  width: 160px;
}
.comment_parts .imgBox img {
  border-radius: 50%;
}

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

.comment_parts .txtBox {
  width: calc(100% - 190px);
  margin: 2rem 0 0;
}

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

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

@media screen and (max-width: 768px) {
  .comment_parts {
    background: #ebf4ff url("img/comment_parts_bg.png") right bottom no-repeat;
    background-size: 80% auto;
    margin: 6rem 0 6rem;
    padding: 2rem 2rem 2rem;
    border-radius: 10px;
  }

  .comment_parts .comment_ttl {
    padding: 1.5rem 1.5rem 1.5rem;
    font-size: 1.8rem;
    border-radius: 5px;
  }

  .comment_parts .comment_block {
    display: block;
    margin: 2rem 0 0;
  }
  
  .comment_parts .imgBox {
    width: 30%;
  }

  .comment_parts .name {
    margin: 5px 0 0;
    font-size: 1rem;
  }

  .comment_parts .txtBox {
    width: 100%;
    margin: 0 0 0;
  }

  .comment_parts .cc_wrap {
    display: flex;
    justify-content: space-between;
        align-items: center;
  }
  
  .comment_parts .cc {
    width: 65%;
    font-size: 1.8rem;
  }

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


/*--------------------------------------
　bnr_parts
---------------------------------------*/
.bnr_parts {
  max-width: 700px;
  margin: 10rem auto 10rem;
}

.bnr_parts a {
  display: flex;
  justify-content: space-between;
}

.bnr_parts .boxL {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("img/bnr_parts_bg.jpg") center center no-repeat;
  background-size: cover;
  width: 380px;
  padding: 3rem 5rem;
  text-align: center;
  border-radius: 20px 0 0 20px;
}

.bnr_parts .logo {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 1rem 2rem;
  border-radius: 6px;
}

.bnr_parts .bnr_txt {
  margin: 2rem 0 0;
  font-size: 3rem;
}
.bnr_parts .bnr_txt .large {
  display: block;
  margin: 0 0 5px;
  padding: 3px 2rem;
  font-size: 4.2rem;
  line-height: 1;
  position: relative;
}
.bnr_parts .bnr_txt .large::before,
.bnr_parts .bnr_txt .large::after {
	content: "";
	position: absolute;
	top: 0;
	width: 10px;
	height: 100%;
	border-top: 2px solid #fff;
	border-bottom: 2px solid #fff; 
}
.bnr_parts .bnr_txt .large::before {
	left: 0;
	border-left: 2px solid #fff;
}
.bnr_parts .bnr_txt .large::after {
	right: 0;
	border-right: 2px solid #fff;
}

.bnr_parts .boxR {
  width: 330px;
  position: relative;
}

.bnr_parts .imgBox {
  width: 100%;
  height: 100%;
}
.bnr_parts .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 20px 20px 0;
}

.bnr_parts .more {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(242,158,9,0.9);
  padding: 1rem 2rem;
  font-size: 1.5rem;
  border-radius: 20px 0 20px 0;
}

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

  .bnr_parts .boxL {
    width: 50%;
    padding: 2rem 1rem;
    border-radius: 10px 0 0 10px;
  }

  .bnr_parts .logo {
    padding: 5px 1rem;
    border-radius: 3px;
  }

  .bnr_parts .bnr_txt {
    margin: 1rem 0 0;
    font-size: 3.8vw;
  }
  .bnr_parts .bnr_txt .large {
    margin: 0 0 3px;
    padding: 3px 8px;
    font-size: 5.4vw;
  }
  .bnr_parts .bnr_txt .large::before,
  .bnr_parts .bnr_txt .large::after {
    width: 6px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff; 
  }
  .bnr_parts .bnr_txt .large::before {
    border-left: 1px solid #fff;
  }
  .bnr_parts .bnr_txt .large::after {
    border-right: 1px solid #fff;
  }

  .bnr_parts .boxR {
    width: 50%;
  }

  .bnr_parts .imgBox img {
    border-radius: 0 10px 10px 0;
  }

  .bnr_parts .more {
    padding: 5px 1rem;
    font-size: 1.2rem;
    border-radius: 10px 0 10px 0;
  }
}


/*--------------------------------------
　fixed_bnr
---------------------------------------*/
.fixed_bnr {
  position: fixed;
  bottom: 140px;
  right: 0;
  width: 220px;
  z-index: 1;
}

.fixed_bnr a {
  display: block;
  background-color: #e79607;
  background-image: radial-gradient(circle, #de9007 1.5px, transparent 1.5px), radial-gradient(circle, #de9007 1.5px, transparent 1.5px);
  background-position: 0 0, 10px 10px;
  background-size: 20px 20px;
  padding: 1.5rem 1.5rem 1.5rem;
  text-align: center;
  line-height: 1.4;
  border-radius: 12px 0 0 12px;
  position: relative;
}

.fixed_bnr .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.6rem;
}

.fixed_bnr .bnr_txt {
  margin: 8px 0 0;
  font-size: 1.8rem;
  position: relative;
}
.fixed_bnr .bnr_txt::after {
	content: "";
  display: inline-block;
  background: url("img/icon_web_wh.png") left top no-repeat;
  background-size: contain;
	width: 18px;
	height: 14px;
  margin-left: 5px;
  box-sizing: border-box;
}
.fixed_bnr .bnr_txt .large {
  display: block;
  margin: 0 0 5px;
  padding: 3px 1rem;
  font-size: 2.8rem;
  line-height: 1;
  position: relative;
}
.fixed_bnr .bnr_txt .large::before,
.fixed_bnr .bnr_txt .large::after {
	content: "";
	position: absolute;
	top: 0;
	width: 8px;
	height: 100%;
	border-top: 2px solid #fff;
	border-bottom: 2px solid #fff; 
}
.fixed_bnr .bnr_txt .large::before {
	left: 0;
	border-left: 2px solid #fff;
}
.fixed_bnr .bnr_txt .large::after {
	right: 0;
	border-right: 2px solid #fff;
}

.fixed_bnr_inner {
  transition: all 0.3s ease;
}
.fixed_bnr_inner.stop {
  opacity: 0;
}
.fixed_bnr_inner.stop a {
  pointer-events: none;
}

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

  .fixed_bnr a {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem 1rem;
    border-radius: 0 15px 0 0;
  }

  .fixed_bnr .logo {
    width: 35%;
    padding: 5px 5px;
  }
  
  .fixed_bnr .logo_txt {
    color: #e79607;
    font-size: 3vw;
    text-align: center;
  }

  .fixed_bnr .bnr_txt {
    width: 60%;
    margin: 0 0 0;
    font-size: 3.6vw;
  }
  .fixed_bnr .bnr_txt::after {
    width: 16px;
    height: 12px;
    margin-left: 3px;
  }
  .fixed_bnr .bnr_txt .large {
    margin: 0 0 5px;
    padding: 3px 8px;
    font-size: 6.2vw;
  }
  .fixed_bnr .bnr_txt .large::before,
  .fixed_bnr .bnr_txt .large::after {
    width: 6px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff; 
  }
  .fixed_bnr .bnr_txt .large::before {
    border-left: 1px solid #fff;
  }
  .fixed_bnr .bnr_txt .large::after {
    border-right: 1px solid #fff;
  }
}


