@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;
  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;
}
body:has(.hb-open) {
    overflow: hidden;
}


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

body {
  color: #1a1a1a;
  font-size: 1.6rem;
  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: #1a1a1a;
  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;
}

.wh {
  color: #fff;
}
.c01 {
  color: #0d73c0;
}
.c02 {
  color: #00a0e9;
}

.fb {
  font-weight: bold;
}

.br01 {
  border-radius: 100px 0 0 0;
}
.br02 {
  border-radius: 0 100px 0 0;
}
.br03 {
  border-radius: 0 0 100px 0;
}

/* 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;
	}
  
  .br01 {
    border-radius: 50px 0 0 0;
  }
  .br02 {
    border-radius: 0 50px 0 0;
  }
  .br03 {
    border-radius: 0 0 50px 0;
  }
}





/*--------------------------------------
　Header
---------------------------------------*/
header {
	width: 100%;
	min-width: 1000px;
  padding: 1.5rem 2.5rem;
}

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

header .logo {
  width: 430px;
}

header .sitename_wrap {
  width: calc(100% - 430px);
  font-size: 1.5rem;
  text-align: right;
  padding-right: 8rem;
}
header .sitename {
  line-height: 1.5;
}
header .sponsored {
  margin: 5px 0 0;
  line-height: 1.5;
}

header .operation {
  margin: 2rem 0 0;
  font-size: 1.4rem;
  line-height: 1.5;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  header {
    width: 100%;
    min-width: 100%;
    padding: 1rem 1rem;
  }

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

  header .logo {
    width: 75%;
    margin: 1.5rem auto 0;
    order: 2;
  }

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

  header .operation {
    margin: 1.5rem 0 0;
    font-size: 1.3rem;
  }
}


/*--------------------------------------
　Navi
---------------------------------------*/
/*----- hb-menu -----*/
#hb-menu {
	display: table;
	position: fixed;
	top: 10px;
	right: 18px;
	width: 80px;
	height: 80px;
	background: #0d73c0;
	box-sizing: border-box;
  border-radius: 50%;
	cursor: pointer;
	z-index: 10000;
}
#hb-menu .hb-inner {
	display: table-cell;
	vertical-align: middle;
}
#hb-menu span {
	display: block;
	background: #fff;
	width: 36px;
	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: 10px;
}

/* ナビゲーションアイコン：アクティブ */
.hb-open span:nth-of-type(1) {
	-webkit-transform: translateY(12px) translateX(0) rotate(45deg);
	-ms-transform: translateY(12px) translateX(0) rotate(45deg);
	transform: translateY(12px) 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(-12px) translateX(0) rotate(-45deg);
	-ms-transform: translateY(-12px) translateX(0) rotate(-45deg);
	transform: translateY(-12px) 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: #0d73c0;
	width: 50%;
	height: 100%;
	padding: 12rem 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);
}


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


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


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

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


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

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

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

/*--------------------------------------
　SP Navi
---------------------------------------*/
/* SP ------------------------------*/
@media screen and (max-width: 768px) {
	/*----- hb-menu -----*/
	#hb-menu {
    top: 5px;
    right: 5px;
		width: 50px;
		height: 50px;
	}
	#hb-menu span {
		width: 22px;
		height: 1px;
	}
	#hb-menu span:nth-of-type(2),
	#hb-menu span:nth-of-type(3){
		margin-top: 6px;
	}

	/* ナビゲーションアイコン：アクティブ */
	.hb-open span:nth-of-type(1) {
		-webkit-transform: translateY(7px) translateX(0) rotate(45deg);
		-ms-transform: translateY(7px) translateX(0) rotate(45deg);
		transform: translateY(7px) 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(-7px) translateX(0) rotate(-45deg);
		-ms-transform: translateY(-7px) translateX(0) rotate(-45deg);
		transform: translateY(-7px) translateX(0) rotate(-45deg);
	}

	/*----- g-nav -----*/
	.g-nav .g-nav-inner {
		width: 100%;
		padding: 6rem 1.5rem;
	}

	
	.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 #fff;
		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 #fff;
		border-right: solid 1px #fff;
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	.hb_menu_title.open:after {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}	
	.hb_menu_title.first {
		padding: 1.5rem 0 1.5rem 0;
	}
	.hb_menu_title.first:after {
		display: none;
	}
	
	.hb_menu_title_link {
		display: block;
		padding: 0 0 0 0;
		color: #fff;
		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 #fff;
		border-right: solid 1px #fff;
		-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(255,255,255,0.3);
		position: relative;
	}
	.hb_menu_list_item:first-child {
		display: block;
	}
	
	.hb_menu_list_link {
		display: block;
		padding: 1.5rem 2rem 1.5rem 1.5rem;
		color: #fff;
		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 #fff;
		border-right: 1px solid #fff;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
}




/*--------------------------------------
　Pankuzu
---------------------------------------*/
#pankuzu {
  background: #eff9fd;
	width: 100%;
  padding: 1rem 2.5rem 1rem;
	margin: 2rem auto 0;
  font-size: 1.4rem;
  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: 1.5rem auto 0;
		padding: 5px 1.5rem 5px 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: #444;
	width: 100%;
	min-width: 1000px;
  border-radius: 100px 0 0 0;
}

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


.l-footer-area__inner {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
	padding: 8rem 0 5rem;
}


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

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


.l-footer-right {
  width: calc(100% - 390px);
  padding: 0 0 0 6rem;
}

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


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


.l-footer-menu__title {
	padding: 0 0 1.5rem 0;
	border-bottom: 2px 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: block;
	margin-top: 2rem;
}

.l-footer-menu__list__item {
  width: 100%;
	margin-bottom: 2rem;
	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: 8px;
	height: 1px;
}


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


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


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

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

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


.footer_home .l-footer-area {
	min-width: 1200px;
}
.footer_home .l-footer-area__inner {
  max-width: 1200px;
}
.footer_home .l-footer-copy {
  max-width: 1200px;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .l-footer-area {
    min-width: 100%;
    border-radius: 50px 0 0 0;
  }


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


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

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


  .l-footer-right {
    width: 100%;
    padding: 0 0 0 0;
  }

  .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;
    border-bottom: 1px solid #fff;
  }
	.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 {
    right: 5px;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    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.6);
  }

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


  .l-footer-area .menseki {
    margin: 2rem 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;
  }

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


  .footer_home .l-footer-area {
    min-width: 100%;
  }
  .footer_home .l-footer-area__inner {
    max-width: 100%;
  }
  .footer_home .l-footer-copy {
    max-width: 100%;
  }
}





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

.l-pagetop__link {
  display: block;
}

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





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

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

/* 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,
.cc span {
	font-weight: bold;
}


#category .h1_wrap,
#page .h1_wrap {
  margin: 0 0 5rem;
  text-align: center;
}
#category h1,
#page h1 {
  display: inline;
  padding: 0 0 1rem;
	font-size: 4.5rem;
	font-weight: bold;
	line-height: 1.8;
	text-align: center;
  border-bottom: 4px solid #00a0e9;
}


#category h2,
#page h2 {
	background: #b6e5f9;
	margin: 4rem 0 2rem;
	padding: 2rem 4rem 2rem 0;
	font-size: 3.6rem;
  border-radius: 0 50px 0 0;
	position: relative;
}
#category h2::before,
#page h2::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
	background: #b6e5f9;
  width: 100vw;
  height: 100%;
}

#category h2 a,
#page h2 a {
	padding: 0 6rem 0 0;
  position: relative;
  z-index: 0;
}
#category h2 a::before,
#page h2 a::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -40px;
  width: 100vw;
  height: calc(100% + 4rem);
  box-sizing: border-box;
  border-radius: 0 50px 0 0;
  z-index: -1;
}
#category h2 a::after,
#page h2 a::after{
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  transform: translate(0,-50%);
  background: url("img/arrow_01.png") left top no-repeat;
  background-size: contain;
	width: 40px;
	height: 30px;
}


#category h3,
#page h3 {
	margin: 4rem 0 2rem;
	padding: 0 0 1.5rem 2.5rem;
	font-size: 3.2rem;
	border-bottom: 2px solid #9cdffc;
  position: relative;
}
#category h3::before,
#page h3::before {
  content: "";
	position: absolute;
  top: 9px;
  left: 0;
  background: -webkit-linear-gradient(180deg, #faf16e 0%, #faf16e 33.33%, #00a0e9 33.33%, #00a0e9 66.66%, #ffa4de 66.66%, #ffa4de 100%);
  background: linear-gradient(180deg, #faf16e 0%, #faf16e 33.33%, #00a0e9 33.33%, #00a0e9 66.66%, #ffa4de 66.66%, #ffa4de 100%);
  width: 6px;
  height: 30px;
}

#category h3 a,
#page h3 a {
	padding: 0 5rem 0 0;
	position: relative;
  z-index: 0;
}
#category h3 a::before,
#page h3 a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 1.5rem);
  z-index: -1;
}
#category h3 a::after,
#page h3 a::after{
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  transform: translate(0,-50%);
  background: url("img/arrow_01.png") left top no-repeat;
  background-size: contain;
	width: 32px;
	height: 24px;
}


#category h4,
#page h4 {
	color: #0d73c0;
	margin: 4rem 0 2rem;
	font-size: 2.4rem;
}

#category h4 a,
#page h4 a {
	display: inline-block;
	padding: 0 3rem 0 0;
	color: #0d73c0;
	position: relative;
}
#category h4 a::after,
#page h4 a::after{
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  transform: translate(0,-50%);
  background: url("img/arrow_02.png") left top no-repeat;
  background-size: contain;
	width: 24px;
	height: 18px;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  #category .h1_wrap,
  #page .h1_wrap {
    margin: 0 0 3rem;
  }
  #category h1,
  #page h1 {
    padding: 0 0 3px;
    font-size: 2.5rem;
    line-height: 1.6;
    border-bottom: 2px solid #00a0e9;
  }


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

  #category h2 a,
  #page h2 a {
    padding: 0 3rem 0 0;
  }
  #category h2 a::before,
  #page h2 a::before {
    top: -15px;
    right: -15px;
    width: 100vw;
    height: calc(100% + 3rem);
    border-radius: 0 25px 0 0;
  }
  #category h2 a::after,
  #page h2 a::after{
    background: url("img/arrow_01.png") left top no-repeat;
    background-size: contain;
    width: 24px;
    height: 18px;
  }


  #category h3,
  #page h3 {
    margin: 3rem 0 2rem;
    padding: 0 0 1rem 1.5rem;
    font-size: 1.8rem;
    border-bottom: 1px solid #9cdffc;
  }
  #category h3::before,
  #page h3::before {
    top: 4px;
    width: 4px;
    height: 20px;
  }

  #category h3 a,
  #page h3 a {
    padding: 0 3rem 0 0;
  }
  #category h3 a::before,
  #page h3 a::before {
    height: calc(100% + 1rem);
  }
  #category h3 a::after,
  #page h3 a::after{
    background: url("img/arrow_01.png") left top no-repeat;
    background-size: contain;
    width: 20px;
    height: 15px;
  }


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

  #category h4 a,
  #page h4 a {
    padding: 0 3rem 0 0;
  }
  #category h4 a::after,
  #page h4 a::after{
    background: url("img/arrow_02.png") left top no-repeat;
    background-size: contain;
    width: 20px;
    height: 15px;
  }
}





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

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

.txt_bold {
	color: #0d73c0;
	font-weight: bold;
}
.marker {
	background: linear-gradient(transparent 75%, #f1e96c 0%);
	font-weight: bold;
}


p.caption {
	margin: 1rem 0 0 0!important;
	padding: 0 0 0.5rem 0;
	font-size: 1rem;
	color: #888;
	line-height: 1.3;
	word-wrap: break-word;
	word-break: break-all;
	overflow-x: auto;
	overflow-y: hidden;
	white-space: nowrap;
	-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;
    font-size: 16px;
		line-height: 1.8;
	}
	
	p.caption {
		margin: 1rem 0 0 0!important;
    font-size: 1rem;
	}
}





/*--------------------------------------
　リスト
---------------------------------------*/
/*----- ulリスト -----*/
.contents ul {
	margin: 4rem 0 4rem;
}
.contents ul li {
  margin: 0 0 1rem 0;
  padding: 0 0 0 2rem;
	font-size: 1.6rem;
  line-height: 1.8;
	position: relative;
}
.contents ul li:last-child {
  margin: 0 0 0 0;
}
.contents ul li::before {
  content: "";
  display: block;
	position: absolute;
  top: 13px;
  left: 0;
	background: #00a0e9;
  width: 8px;
  height: 8px;
	box-sizing: border-box;
  border-radius: 50%;
}
.contents ul li a {
	display: inline-block;
	text-decoration: underline;
}
.contents ul li a:hover {
	text-decoration: none;
}

/* 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.5rem;
    line-height: 1.6;
	}
	.contents ul li::before {
		top: 10px;
		width: 8px;
		height: 8px;
	}
}





/*--------------------------------------
　リンク
---------------------------------------*/
.btn-web a,
.btn-internal a {
	display: block;
	max-width: 500px;
	margin: 4rem auto 4rem;
	padding: 3rem 7rem;
	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;
}
.btn-web a::after,
.btn-internal a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 30px;
  transform: translate(0,-50%);
  background: url("img/arrow_03.png") left top no-repeat;
  background-size: contain;
	width: 24px;
	height: 16px;
}


/*----- btn-web（外部リンク） -----*/
.btn-web a {
	background: #afed84;
	box-shadow: 0px 5px 0px 0px #74aa59;
}


/*----- btn-internal（内部リンク） -----*/
.btn-internal a {
	background: #faf07d;
	box-shadow: 0px 5px 0px 0px #cfc642;
}


/*----- btn-link（テキストリンク） -----*/
.btn-link {
	text-align: right;
}
.btn-link a {
	display: inline-block;
	margin: 4rem 0 4rem;
	padding: 0 3rem 0 0;
  color: #0d73c0;
	font-size: 1.6rem;
  font-weight: bold;
	line-height: 1.5;
	text-decoration: underline;
	position: relative;
}
.btn-link a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
	background: url("img/arrow_03.png") left top no-repeat;
	background-size: 100% auto;
	width: 18px;
	height: 13px;
}

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


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

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .btn-web a,
  .btn-internal a {
    max-width: 90%;
    margin: 3rem auto 3rem;
    padding: 1.8rem 4rem;
    font-size: 1.5rem;
  }
  .btn-web a::after,
  .btn-internal a::after {
    right: 15px;
    background: url("img/arrow_03.png") left top no-repeat;
    background-size: contain;
    width: 18px;
    height: 13px;
  }


  /*----- btn-web（外部リンク） -----*/
  .btn-web a {
    box-shadow: 0px 3px 0px 0px #74aa59;
  }


  /*----- btn-internal（内部リンク） -----*/
  .btn-internal a {
    box-shadow: 0px 3px 0px 0px #cfc642;
  }


/*----- btn-link（テキストリンク） -----*/
  .btn-link a {
    margin: 3rem 0 3rem;
    padding: 0 2.5rem 0 0;
    font-size: 1.5rem;
  }

	
	/*----- btn-tel（電話ボタン） -----*/
	.btn-tel a {
		display: block;
		background: #FFA4DE url("img/icon_tel.png") left 25px center no-repeat;
		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;
		box-shadow: 0px 3px 0px 0px #a6317c;
		position: relative;
	}
}





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

table th {
	background: #e5eef2;
	padding: 1.5rem;
	box-sizing: border-box;
	text-align: center;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.4;
  word-break: break-all;
	border-left: 1px solid #1a1a1a;
	border-bottom: 1px solid #1a1a1a;
}
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.6rem;
	line-height: 1.4;
  word-break: break-all;
	border-left: 1px solid #1a1a1a;
	border-bottom: 1px solid #1a1a1a;
}
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.5rem;
		border-left: none;
		border-bottom: 1px solid #1a1a1a;
	}

	table td {
		display: block;
		padding: 1.2rem;
		font-size: 1.5rem;
		border-left: none;
		border-bottom: 1px solid #1a1a1a;
	}
	
	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: 390px;
  padding-right: 4rem;
}
.float-img.fr {
  float: right;
  width: 390px;
  padding-left: 4rem;
}

.float-img p.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;
  color: #0d73c0;
	font-size: 2.4rem;
	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: inherit;
		width: 100%;
		padding-right: 0;
	}
	.float-img.fr {
		float: inherit;
		width: 100%;
		padding-left: 0;
	}
	
	.float-img .caption {
		margin: 1rem 0 1.5rem 0;
	}

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





/*--------------------------------------
　toc_parts
---------------------------------------*/
.toc_parts {
	background: #ebebeb;
  max-width: 770px;
	margin: 10rem auto 10rem;
  border-radius: 25px;
}

.toc_parts .toc_ttl {
  padding: 3rem 3rem 3rem;
	font-size: 2.4rem;
	text-align: center;
  position: relative;
}
.toc_parts .toc_ttl::before,
.toc_parts .toc_ttl::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 30px;
	background: #1a1a1a;
	width: 30px;
	height: 2px;
	margin-top: -1px;
  border-radius: 8px;
	transition: all 0.4s;
}
.toc_parts .toc_ttl::after {
	transform: rotate(90deg);
}
.toc_parts .toc_ttl.open::before {
  display: none;
}
.toc_parts .toc_ttl.open::after {
  transform: rotate(180deg);
}

#toc {
  display: none;
	background: #f8f8f8;
	padding: 4rem 7rem 4rem;
  border-radius: 0 0 25px 25px;
}
#toc ol.chapter {
	margin: 0 0 0;
}
#toc ol.chapter li {
	margin: 0 0 1.5rem 0;
	padding: 0 0 0 4rem;
	font-size: 1.6rem;
  line-height: 1.8;
	overflow-wrap: break-word;
	position: relative;
	counter-increment: toccount;
}
#toc ol.chapter li:last-child {
  margin: 0 0 0;
}
#toc ol.chapter li::before {
	content: counter(toccount,decimal-leading-zero) ".";
	position: absolute;
  top: -7px;
  left: 0;
	color: #00a0e9;
	font-size: 2.2rem;
  font-weight: bold;
}

#toc .chapter li a {
  font-weight: bold;
}

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

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .toc_parts {
    max-width: 100%;
    margin: 6rem auto 6rem;
    border-radius: 12px;
  }

  .toc_parts .toc_ttl {
    padding: 2rem 2rem 2rem;
    font-size: 1.8rem;
  }
  .toc_parts .toc_ttl::before,
  .toc_parts .toc_ttl::after {
    right: 20px;
    width: 20px;
    height: 1px;
  }

  #toc {
    padding: 2rem 2rem 2rem;
    border-radius: 0 0 12px 12px;
  }
  #toc ol.chapter li {
    margin: 0 0 1rem 0;
    padding: 0 0 0 3.5rem;
    font-size: 1.5rem;
    line-height: 1.6;
  }
  #toc ol.chapter li::before {
    top: -6px;
    font-size: 2rem;
  }
}





/*--------------------------------------
　ra_parts
---------------------------------------*/
.ra_parts {
	background: #eff9fd;
  max-width: 770px;
	margin: 10rem auto 10rem;
  padding: 4rem 7rem 4rem;
  border-radius: 25px;
}

.ra_parts .ra_ttl {
  padding: 0 0 2rem;
	font-size: 2.4rem;
	text-align: center;
  border-bottom: 2px solid #cae7f2;
}

.ra_parts ul {
  margin: 3rem 0 0;
}
.ra_parts ul li {
  margin: 0 0 1.5rem;
  padding: 0 0 0;
  font-size: 1.6rem;
  line-height: 1.8;
}
.ra_parts ul li:last-child {
  margin: 0 0 0;
}
.ra_parts ul li::before {
  display: none;
}
.ra_parts ul li a {
  padding: 0 0 0 3rem;
	font-weight: bold;
  text-decoration: none;
  position: relative;
}
.ra_parts ul li a::before {
	content: "";
	position: absolute;
	top: 50%;
  left: 0;
	transform: translate(0,-50%);
  background: url("img/arrow_04.png") left top no-repeat;
  background-size: contain;
	width: 18px;
	height: 13px;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .ra_parts {
    max-width: 100%;
    margin: 6rem auto 6rem;
    padding: 2rem 2rem 2rem;
    border-radius: 12px;
  }

  .ra_parts .ra_ttl {
    padding: 0 0 1.5rem;
    font-size: 1.8rem;
    border-bottom: 1px solid #cae7f2;
  }

  .ra_parts ul {
    margin: 2rem 0 0;
  }
  .ra_parts ul li {
    margin: 0 0 1rem;
    font-size: 1.5rem;
    line-height: 1.6;
  }
  .ra_parts ul li a {
    padding: 0 0 0 2.5rem;
  }
}





/*--------------------------------------
　summary_parts
---------------------------------------*/
.summary_parts {
  background: #ede2da;
  max-width: 940px;
  margin: 15rem 0 10rem;
  padding: 0 6rem 8rem;
  position: relative;
  z-index: 0;
}
.summary_parts::after {
  content: "SUMMARY";
  position: absolute;
  top: 10px;
  left: 50px;
  color: #e0cdbc;
  font-size: 14rem;
  font-weight: bold;
  z-index: -1;
}

.summary_parts .summary_parts_block {
  display: flex;
  justify-content: space-between;
}

.summary_parts .txt_box {
  width: calc(100% - 370px);
  padding: 8rem 0 0;
}

.summary_parts .summary_ttl {
  font-size: 2.8rem;
  line-height: 1.4;
}

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

.summary_parts .img_box {
  width: 430px;
  margin: -5rem -12rem 0 0;
}
.summary_parts .img_box img {
  border-radius: 10px;
}

.summary_parts .btn-internal a {
  background: #fff;
  margin: 5rem auto 0;
  border: 4px solid #1a1a1a;
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .summary_parts {
    max-width: 100%;
    margin: 6rem 0 6rem;
    padding: 4rem 2rem 4rem;
  }
  .summary_parts::after {
    top: 5px;
    left: 0;
    right: 0;
    font-size: 5rem;
    text-align: center;
  }

  .summary_parts .summary_parts_block {
    display: block;
  }

  .summary_parts .txt_box {
    width: 100%;
    padding: 0 0 0;
  }

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

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

  .summary_parts .img_box {
    width: 100%;
    margin: 2rem 0 0 0;
  }
  .summary_parts .img_box img {
    border-radius: 5px;
  }

  .summary_parts .btn-internal a {
    margin: 3rem auto 0;
    border: 2px solid #1a1a1a;
  }
}





/*--------------------------------------
　voice_parts
---------------------------------------*/
.voice_parts {
  background: #e3f0f5;
  margin: 10rem 0 10rem;
  padding: 3rem 3rem 3rem;
}

.voice_parts .voice_parts_block {
  background: #fff;
  padding: 4rem 5rem 4rem;
}

.voice_parts .upper {
  display: flex;
  justify-content: space-between;
  padding: 0 0 2rem;
  border-bottom: 2px solid #e3f0f5;
}

.voice_parts .img_box {
  width: 140px;
}
.voice_parts .img_box img {
  border-radius: 10px;
}

.voice_parts .age {
  margin: 5px 0 0;
  font-size: 1.5rem;
  text-align: center;
}

.voice_parts .voice_ttl {
  width: calc(100% - 140px);
  padding: 2rem 0 0 5rem;
  font-size: 2.6rem;
  line-height: 1.4;
}

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

.voice_parts .caption {
  margin: 3rem 0 0!important;
  text-align: right;
}

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

  .voice_parts .voice_parts_block {
    padding: 2rem 2rem 2rem;
  }

  .voice_parts .upper {
    padding: 0 0 1rem;
    border-bottom: 1px solid #e3f0f5;
  }

  .voice_parts .img_box {
    width: 35%;
  }
  .voice_parts .img_box img {
    border-radius: 5px;
  }

  .voice_parts .age {
    font-size: 1.3rem;
  }

  .voice_parts .voice_ttl {
    width: 65%;
    padding: 0 0 0 1.5rem;
    font-size: 1.8rem;
  }

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

  .voice_parts .caption {
    margin: 1rem 0 0!important;
    text-align: left;
  }
}





/*--------------------------------------
　sv_parts
---------------------------------------*/
.sv_parts {
  background: #ede2da;
  margin: 15rem 0 10rem;
  padding: 0 6rem 8rem;
  position: relative;
}
.sv_parts::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
	background: #ede2da;
  width: 100vw;
  height: 100%;
}

.sv_parts p {
  margin: 0 0 0;
}

.sv_parts .sub {
  font-size: 4.5rem;
  text-align: center;
  position: relative;
  top: -40px;
}
.sv_parts .sub span {
  display: inline-block;
  background: #fff;
  padding: 1rem 1.5rem;
  border: 4px solid #1a1a1a;
  border-radius: 20px 0 0 0;
}

.sv_parts .sv_parts_ttl {
  margin: -1.5rem 0 0;
  font-size: 2rem;
  text-align: center;
  line-height: 1.4;
}
.sv_parts .sv_parts_ttl .large {
  font-size: 4rem;
}

.sv_parts .cc {
  margin: 4rem 0 0;
  padding: 0 0 2rem;
  font-size: 2.6rem;
  text-align: center;
  border-bottom: 4px solid #1a1a1a;
}
.sv_parts .cc .large {
  font-size: 3.2rem;
}

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

.sv_parts .img_box {
  width: 150px;
}

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

.sv_parts .txt_box {
  width: calc(100% - 150px);
  padding: 0 0 0 4rem;
}

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

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

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .sv_parts {
    margin: 8rem 0 6rem;
    padding: 0 0 4rem 2rem;
  }

  .sv_parts .sub {
    font-size: 3.2rem;
    top: -20px;
  }
  .sv_parts .sub span {
    padding: 5px 1rem;
    border: 2px solid #1a1a1a;
    border-radius: 10px 0 0 0;
  }

  .sv_parts .sv_parts_ttl {
    margin: -5px 0 0;
    font-size: 1.6rem;
  }
  .sv_parts .sv_parts_ttl .large {
    font-size: 2rem;
  }

  .sv_parts .cc {
    margin: 1.5rem 0 0;
    padding: 0 0 1.5rem;
    font-size: 1.6rem;
    text-align: justify;
    border-bottom: 1px solid #1a1a1a;
  }
  .sv_parts .cc .large {
    font-size: 2rem;
  }

  .sv_parts .item {
    display: block;
    margin: 2rem 0 0;
  }

  .sv_parts .img_box {
    width: 60%;
    margin: auto;
  }

  .sv_parts .name {
    margin: 1rem 0 0;
    font-size: 1.5rem;
  }

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





/*--------------------------------------
　fixed_bnr
---------------------------------------*/
.fixed_bnr {
  position: fixed;
  bottom: 160px;
  right: 5px;
  z-index: 1;
}

.fixed_bnr_inner {
  display: table;
  width: 200px;
  height: 200px;
  position: relative;
}

.fixed_bnr a {
  display: table-cell;
  vertical-align: middle;
  background: #bcec9b;
  width: 100%;
  height: 100%;
  padding: 0 0 3.5rem;
  box-sizing: border-box;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1.8;
  text-align: center;
	box-shadow: 0px 6px 0px 0px #74aa59;
  position: relative;
}
.fixed_bnr a::after {
	content: "";
	position: absolute;
  bottom: 25px;
  left: 0;
	right: 0;
  background: url("img/arrow_05.png") left top no-repeat;
  background-size: contain;
	width: 34px;
	height: 34px;
  margin: auto;
}

.fixed_bnr span {
  display: inline;
  background: linear-gradient(transparent 80%, #1ec14b 0%);
}

/* SP ------------------------------*/
@media screen and (max-width: 768px) {
  .fixed_bnr {
    bottom: 0;
    left: 0;
    right: 0;
    transition: all 0.3s ease;
  }

  .fixed_bnr_inner {
    display: block;
    width: calc(100% - 60px);
    height: auto;
  }

  .fixed_bnr a {
    display: block;
    padding: 8px 3.5rem 8px;
    border-radius: 12px 12px 0 0;
    font-size: 1.4rem;
    line-height: 1.6;
    box-shadow: 0px 3px 0px 0px #74aa59;
  }
  .fixed_bnr a::after {
    top: 50%;
    bottom: inherit;
    left: inherit;
    right: 15px;
    transform: translate(0,-50%);
    background: url("img/arrow_05.png") left top no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    margin: 0 0;
  }

  .fixed_bnr span {
    background: linear-gradient(transparent 85%, #1ec14b 0%);
  }
  
  .stop {
    opacity: 0;
  }
  .stop a {
    pointer-events: none;
  }
}

.slide-top {
    opacity: 0;
    transform: translate(0,-20px);
    transition: all 1s ease-out
}

.slide-bottom {
    opacity: 0;
    transform: translate(0,20px);
    transition: all 0.5s ease-out
}

.slide-bottom.second {
    transform: translate(0,20px);
    transition: all 2s ease-out
}

.slide-bottom.third {
    transition: all 3.5s ease-out
}

.slide-left {
    opacity: 0;
    transform: translate(-20px,0);
    transition: all 1s ease-out
}

.slide-right {
    opacity: 0;
    transform: translate(20px,0);
    transition: all 1s ease-out
}

/* ズームイン */
.zoomIn{
	opacity: 0;
	animation-name:zoomInAnime;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
}

@keyframes zoomInAnime{
  from {
  transform: scale(0.6);
  }

  to {
      transform: scale(1);
  }
}