@charset "utf-8";

/*----------------------------------------------------------------------------
　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: #fff;
  font-size: 1.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
	-webkit-text-size-adjust: none;
	word-break: break-word;
	word-wrap: break-word;
	overflow-wrap: break-word;
	overflow-x: hidden;
	background: #000716;
}

a {
	color: #333;
  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;
}

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

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

	.sp_only {
		display: block;
	}
	.pc_only {
		display: none;
	}
}
/*--------------------------------------
　Header
---------------------------------------*/
/* 最初は透明（非表示） */
.header_home {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

/* 表示状態 */
.header_home.is-visible {
  opacity: 1;
  pointer-events: auto;
}
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 66px;
	z-index: 9999;
}
header .pc-nav {
	width: 100%;
	position: relative;
	padding:0 40px 0 20px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(0,17,21,0.50);
}
header .pc-nav h1 {
	width: 200px;
	height: auto;
}
/*---------- g-nav ----------*/
.menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.menu > li {
	box-sizing: border-box;
	text-align: center;
	margin-left: 2rem;
}
.menu > li a {
    display: block;
	font-size: 13px;
	position: relative;
	box-sizing: border-box;
	text-align: center;
	color: #fff;
	padding-left: 2rem;
}
.menu > li a:hover{
	color: #fff;
	background: #19a8c7;
}
.menu > li a:before {
	display:block;
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0,-50%);
	width: 18px;
	height: 20px;
	background: url("../img/star.svg") center no-repeat;
	background-size: cover;
}

@media screen and (max-width: 1250px){

/*---------- g-nav ----------*/

/* nav */
/*header .g-nav li + li {
	margin-left: 15px;
}*/
}

@media screen and (max-width: 768px) {	
header {
	width: 100%;
	min-width: 100%;
	height: 50px;
	padding: 0 15px 0 0;
	box-sizing: border-box;background: rgba(0,17,21,0.50);
}
header .pc-nav {
	display: none;
}
header  h1  {
	width: 190px;
	height: auto;
	z-index: 1001;
	position: relative;
}	
}

/*--------------------------------------
　SP Navi
---------------------------------------*/
@media screen and (max-width: 768px) {
/*----- hb-menu -----*/
#hb-menu {
  display: table;
  position: fixed;
  top: 0;
  right: 0;
  background:none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 1000;
}
#hb-menu .hb-inner {
  display: table-cell;
  vertical-align: middle;
}
#hb-menu span {
  display: block;
  background: #fff;
  width: 24px;
  height: 1px;
  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: 9px;
}
/* ナビゲーションアイコン：アクティブ */
.hb-open #hb-menu span {
  background: #fff;
}
.hb-open #hb-menu span:nth-of-type(1) {
  -webkit-transform: translateY(8px) translateX(0) rotate(45deg);
  -ms-transform: translateY(8px) translateX(0) rotate(45deg);
  transform: translateY(8px) translateX(0) rotate(45deg);
}
.hb-open #hb-menu span:nth-of-type(2) {
  margin-top: 5px;
  opacity: 0;
  -webkit-transform: translateY(9px);
  -ms-transform: translateY(9px);
  transform: translateY(9px);
}
.hb-open #hb-menu span:nth-of-type(3) {
  -webkit-transform: translateY(-8px) translateX(0) rotate(-45deg);
  -ms-transform: translateY(-8px) translateX(0) rotate(-45deg);
  transform: translateY(-8px) translateX(0) rotate(-45deg);
}
/* overlay */
.overlay {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: transparent;
  pointer-events: none;
  z-index: 10;
  transition: 0.2s;
}
.hb-open .overlay {
  background:none;
  pointer-events: auto;
}

/*----- sp-g-nav -----*/
.sp-g-nav {
  position: fixed;
  top: 0;
  right: 0;
  font-size: 13px;
  z-index: 999;
}
.hb-open .sp-g-nav .g-nav-inner {
  transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.sp-g-nav .g-nav-inner {
  position: fixed;
  top: 0;
  right: 0;
  background: linear-gradient(180deg, #000E12 0%, #013241 100%);
  width: 100%;
  height: 100%;
  padding: 80px 20px;
  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: 10;
}



.sp-g-nav .g-nav-inner>ul>li {
  padding: 15px 0;
}	
.sp-g-nav .g-nav-inner li a {
  display: block;
  color: #fff;
  font-weight: 500;
	position: relative;
	padding-left: 2rem;
	font-size: 2rem;
	margin-bottom: 3rem;
}	
.sp-g-nav .g-nav-inner li a:before {
	display:block;
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0,-50%);
	width: 18px;
	height: 20px;
	background: url("../img/star.svg") center no-repeat;
	background-size: cover;
}
.sp-g-nav .gnavi_wrap{
	padding: 2rem 4rem 0;
}
	.sp-g-nav .gnavi_wrap .menu_txt {
		margin-bottom: 4rem;
		font-size: 3rem;
}
.toggle_title {
  position: relative;
  cursor: pointer; 
}
.toggle_ans {
  margin: 0;
  padding:20px 0 0 20px;
  display: none;
}

/*プラス*/
.plus {
  position: absolute;
  right: 20px;
  top: 0;
  height: 100%;
  border-radius: 0px 10px 10px 0px;
}
.plus:before,
.plus:after {
  display: block;
  content: "";
  background-color: #224488;
  position: absolute;
  width: 15px;
  height: 1px;
  bottom: 50%;
  right: 50%;
  transform: translate(50%, 50%);
  transition: 0.5s;
}

.plus:before {
  width: 1px;
  height: 15px;
}

/*アコーディオンが開いたらプラスをマイナスにする*/
.toggle_title.selected .plus:before {
  transform: translate(50%, 50%) rotate(90deg);
}

	.toggle_ans a{ 
	margin-bottom: 10px;
}
/*------矢印------*/
/*.toggle_ans a::after {
    content: '';
    display: block;
    position: absolute;
    top: 43%;
    right: 15px;
    width: 15px;
    height: 3px;
    border-bottom: solid 1px #224488;
    border-right: solid 1px #224488;
    transform: skew(45deg);
}*/
}



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


@media screen and (max-width: 768px) {

}



/*--------------------------------------
　テキスト
---------------------------------------*/

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


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

@media screen and (max-width: 768px) {
	.contents p {
		margin: 2rem 0 2rem;
		line-height: 1.8;
	}
	
	.caption {
		margin: 1rem 0 0 0!important;
    font-size: 1rem;
	}
}


