@charset "UTF-8";

/*=========================================================================
//
// Base
//
==========================================================================*/
/*-------------------------------------------------------------------------
 normalize
--------------------------------------------------------------------------*/
/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */progress,sub,sup{vertical-align:baseline}button,hr,input{overflow:visible}[type=checkbox],[type=radio],legend{box-sizing:border-box;padding:0}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}svg:not(:root){overflow:hidden}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}button,input,select,textarea{font:inherit;margin:0}optgroup{font-weight:700}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{color:inherit;display:table;max-width:100%;white-space:normal}textarea{overflow:auto}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-input-placeholder{color:inherit;opacity:.54}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}

/*-------------------------------------------------------------------------
 base setting
--------------------------------------------------------------------------*/
html {
  box-sizing: border-box;
}
*, *::before, *::after {
	box-sizing: inherit;
}
body, input, textarea, select, option, button {
  background: #fff;
  font-family: 'Roboto', 'Meiryo UI', 'メイリオ', Meiryo, sans-serif;
  line-height: 1.6;
  color: #333;
  font-size: 16px;
}
body {
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media (max-width: 767px) {
  body {
    min-width: inherit;
    min-width: auto;
    line-height: 1.6;
    font-size: 14px;
  }
  body, input, textarea, select, option, button{
	  font-size: 14px;
  }
}

a {
  color: #0076CE;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
a:link,
a:visited {
  color: #0076CE;
  text-decoration: underline;
}
a:active,
a:hover {
  color: #aaa;
}
a[href^="http"]:empty::before {
  content: attr(href);
}

input[type="text"],
input[type="search"],
input[type="password"],
input[type="tel"],
input[type="url"],
input[type="email"],
input[type="number"],
input[type="datetime"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"] {
  box-sizing: border-box;
  padding: 5px;
  -webkit-appearance: none;
  border-radius: 0;
  border: 1px solid #d2d2d2;
}
input[type="radio"],
input[type="checkbox"] {
  margin-right: 5px;
}
textarea {
  width: 100%;
  resize: vertical;
  padding: 5px;
  border: 1px solid #d2d2d2;
  box-sizing: border-box;
}
select {
  padding: 5px;
  border: 1px solid #d2d2d2;
  box-sizing: border-box;
}
button {
  display: block;
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}
label {
  display: block;
  cursor: pointer;
}

p {
  margin-top: 1.2em;
  word-wrap: break-word;
}
p:first-child {
	margin-top: 0;
}
@media (max-width: 767px) {
  p {
    margin-top: .6em;
  }
}

ul, ol, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

iframe{
  border: none;
}

/* image
----------------------------------------------------------- */
a img, 
img {
	border: 0;
	-ms-interpolation-mode: bicubic;
	vertical-align: bottom;
}
.img-responsive{
	display: block;
	margin: 0 auto;
	width: 100%;
	height: auto;
}
.img-max{
	display: block;
	margin: 0 auto;
	max-width: 100%;
	height: auto;
}
figure{ margin: 0; }


/*=========================================================================
//
// Utility
//
==========================================================================*/
/* clearfix
----------------------------------------------------------- */
.cf { zoom: 1; }
.cf:after { content: ""; display: block; clear: both; }

/* fb_iframe_widget
----------------------------------------------------------- */
.fb_iframe_widget{ margin: 0 10px; }
.fb_iframe_widget > span { vertical-align: baseline !important; }


/* display
----------------------------------------------------------- */
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-center { text-align: center; }

.left { float: left; }
.right { float: right; }

.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}
.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto;
}

.Enable { display: inline-block; }
.Disable { display: none; }
.pcDisable { display: none !important; }

.display_pc{ display: none; }
.display_sp{ display: none; }

/* margin, padding
----------------------------------------------------------- */
.mt-0 { margin-top: 0 !important; }
.mt-5 { margin-top: 5px !important; }
.mt-10 { margin-top: 10px !important; }
.mt-15 { margin-top: 15px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-25 { margin-top: 25px !important; }
.mt-30 { margin-top: 30px !important; }
.mt-35 { margin-top: 35px !important; }
.mt-40 { margin-top: 40px !important; }
.mt-45 { margin-top: 45px !important; }
.mt-50 { margin-top: 50px !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-5 { margin-bottom: 5px !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-15 { margin-bottom: 15px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-25 { margin-bottom: 25px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-35 { margin-bottom: 35px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-45 { margin-bottom: 45px !important; }
.mb-50 { margin-bottom: 50px !important; }

.ml-0 { margin-left: 0 !important; }
.ml-5 { margin-left: 5px !important; }
.ml-10 { margin-left: 10px !important; }
.ml-15 { margin-left: 15px !important; }
.ml-20 { margin-left: 20px !important; }
.ml-25 { margin-left: 25px !important; }
.ml-30 { margin-left: 30px !important; }
.ml-35 { margin-left: 35px !important; }
.ml-40 { margin-left: 40px !important; }
.ml-45 {  margin-left: 45px !important; }
.ml-50 { margin-left: 50px !important; }

.pt-0 { padding-top: 0 !important; }
.pt-5 { padding-top: 5px !important; }
.pt-10 { padding-top: 10px !important; }
.pt-15 { padding-top: 15px !important; }
.pt-20 { padding-top: 20px !important; }
.pt-25 { padding-top: 25px !important; }
.pt-30 { padding-top: 30px !important; }
.pt-35 { padding-top: 35px !important; }
.pt-40 { padding-top: 40px !important; }
.pt-45 { padding-top: 45px !important; }
.pt-50 { padding-top: 50px !important; }

/* width
--------------------------------------------------------*/
.width-5 { width: 5% !important; }
.width-10 { width: 10% !important; }
.width-15 { width: 15% !important; }
.width-20 { width: 20% !important; }
.width-25 { width: 25% !important; }
.width-30 { width: 30% !important; }
.width-35 { width: 35% !important; }
.width-40 { width: 40% !important; }
.width-45 {  width: 45% !important; }
.width-50 { width: 50% !important; }
.width-55 { width: 55% !important; }
.width-60 { width: 60% !important; }
.width-65 { width: 65% !important; }
.width-70 { width: 70% !important; }
.width-75 { width: 75% !important; }
.width-80 { width: 80% !important; }
.width-85 { width: 85% !important; }
.width-90 { width: 90% !important; }
.width-95 { width: 95% !important; }
.width-100 { width: 100% !important; }
.width-33 { width: 33% !important; }
.width-full { width: 100% !important; }

/* text
--------------------------------------------------------*/
.xxxxxlarge { font-size: 24px; }
.xxxxlarge {  font-size: 22px; }
.xxxlarge {  font-size: 20px; }
.xxlarge {  font-size: 18px; }
.xlarge { font-size: 16px; }
.large { font-size: 15px; }
.medium {  font-size: 14px; }
.small {  font-size: 13px; }
.xsmall { font-size: 12px; }
.xxsmall {  font-size: 11px; }
.xxxsmall {  font-size: 10px; }
.xxxxsmall { font-size: 9px; }

.bold {  font-weight: bold !important; }
.normal {  font-weight: normal !important; }

.text-def { color: #000 !important; }
.text-att { color: #c00 !important; }
.text-note { color: #666 !important; }

/* hr
--------------------------------------------------------*/
hr {
  border: 0;
  border-top: 1px solid #ccc;
  /* margin: 40px 0; */
  margin: 0;
  padding: 0;
}

/*-------------------------------------------------------------------------
 grid
--------------------------------------------------------------------------*/
.row:after, 
.col:after, 
.clr:after, 
.gutters:after { 
	content: ""; 
	display: table; 
	clear: both; 
}
.row { padding-bottom: 0; }			  
.col { 
	display: block;
	float: left;
	width: 100%;
}

@media ( min-width : 768px ) {										  
	.gutters .col { margin-left: 2%; }
	.gutters .col:first-child { margin-left: 0; }
}

@media ( min-width : 768px ) {
.span_1 { width: 4.16666666667%; }
.span_2 { width: 8.33333333333%; }
.span_3 { width:12.5%; }
.span_4 { width: 16.6666666667%; }
.span_5 { width: 20.8333333333%; }
.span_6 { width: 25%; }
.span_7 { width: 29.1666666667%; }
.span_8 { width: 33.3333333333%; }
.span_9 { width: 37.5%; }
.span_10 { width: 41.6666666667%; }
.span_11 { width: 45.8333333333%; }
.span_12 { width: 50%; }
.span_13 { width: 54.1666666667%; }
.span_14 { width: 58.3333333333%; }
.span_15 { width: 62.5%; }
.span_16 { width: 66.6666666667%; }
.span_17 { width: 70.8333333333%; }
.span_18 { width: 75%; }
.span_19 { width: 79.1666666667%; }
.span_20 { width: 83.3333333333%; }
.span_21 { width: 87.5%; }
.span_22 { width: 91.6666666667%; }
.span_23 { width: 95.8333333333%; }
.span_24 { width: 100%; }

.gutters .span_1 { width: 2.25%; }
.gutters .span_2 { width: 6.5%; }
.gutters .span_3 { width: 10.75%; }
.gutters .span_4 { width: 15.0%; }
.gutters .span_5 { width: 19.25%; }
.gutters .span_6 { width: 23.5%; }
.gutters .span_7 { width: 27.75%; }
.gutters .span_8 { width: 32.0%; }
.gutters .span_9 { width: 36.25%; }
.gutters .span_10 { width: 40.5%; }
.gutters .span_11 { width: 44.75%; }
.gutters .span_12 { width: 49.0%; }
.gutters .span_13 { width: 53.25%; }
.gutters .span_14 { width: 57.5%; }
.gutters .span_15 { width: 61.75%; }
.gutters .span_16 { width: 66.0%; }
.gutters .span_17 { width: 70.25%; }
.gutters .span_18 { width: 74.5%; }
.gutters .span_19 { width: 78.75%; }
.gutters .span_20 { width: 83.0%; }
.gutters .span_21 { width: 87.25%; }
.gutters .span_22 { width: 91.5%; }
.gutters .span_23 { width: 95.75%; }
.gutters .span_24 { width: 100%; }
}

/*-------------------------------------------------------------------------
 list
--------------------------------------------------------------------------*/
/* ドットリスト
--------------------------------------------------------*/
.list-dot > li {
  position: relative;
  padding-left: 1.2em;
}
.list-dot > li:before {
  content: "・";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

/* ドットリスト（大）
--------------------------------------------------------*/
.list-disc > li {
  margin-left: 25px;
  list-style: disc;
}

/* スクエアリスト
--------------------------------------------------------*/
.list-square > li {
  position: relative;
  padding-left: 1.2em;
}
.list-square > li:before {
  content: "■";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

/* アイコンなしリスト
--------------------------------------------------------*/
.list-nomark > li {
  margin-top: .4em;
  list-style: none;
}
@media (max-width: 767px) {
  .list-nomark > li {
    margin-top: .2em;
  }
}

/* 数字リスト
--------------------------------------------------------*/
.list-num > li {
  list-style-type: decimal;
  margin-left: 1.7em;
}

/* 小文字のアルファベットリスト
--------------------------------------------------------*/
.list-alpha > li {
  list-style-type: lower-alpha;
  margin-left: 1.7em;
}

/* 注釈リスト
--------------------------------------------------------*/
.list-note {
  margin-top: .5em;
  padding-left: 1em;
}
.list-note > li {
  margin-top: .2em;
  text-indent: -1em;
}

/* 注釈リスト2
--------------------------------------------------------*/
.list-note2 > li {
  position: relative;
  padding-left: 1.2em;
  font-size: .9em;
}
.list-note2 > li:before {
  content: "※";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

/* 注釈リスト3
--------------------------------------------------------*/
.list-note3 > li {
  position: relative;
  padding-left: .75em;
}
.list-note3 > li:before {
  content: "-";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

/* インラインリスト
--------------------------------------------------------*/
.list-inline {
  overflow: hidden;
}
.list-inline > li {
  float: left;
  margin: .35em 40px 0 0;
}
.list-inline > li:last-child {
  margin-right: 0;
}

/* ダウンロードリスト
--------------------------------------------------------*/
.tab-download iframe{
  width: 100%;
}
.list-download li{
  margin-bottom: 1em;
  padding-left: 1.6em;
  position: relative;
}
.list-download li::before{
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  font-family: 'themify';
  content: "\e6a4";
  line-height: 1;
}
.list-download li a{
  color: #fff;
}
.list-download li a:hover{
  color: #aaa;
}

/* アコーディオン */
.toggle {
  display: none;
}
.dl-name,
.dl-content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
  position: relative;
}
.dl-name {
  display: block !important;
}
.dl-name:hover {
  color: #aaa;
}
.dl-name::after {
  border-right: solid 2px #fff; 
  border-top: solid 2px #fff;
  content: "";
  display: block;
  height: 10px;
  position: absolute;
  right: 0;
  top: 25%;
  transform: rotate(135deg); 
  transition: transform .3s ease-in-out, top .3s ease-in-out;
  width: 10px;
}
  
.dl-content {
  max-height: 0;
  overflow: hidden;
}
.dl-content p {
  margin: .5em 0 0;
}
.toggle:checked + .dl-name + .dl-content {
  max-height: 500px;
  transition: all .5s;
}
/* .toggle:checked + .dl-name::before {
transform: rotate(90deg) !important;
} */

.toggle:checked + .dl-name::after{
  top: 45%; 
  transform: rotate(-45deg) !important;
}


/*=========================================================================
//
// Layout
//
==========================================================================*/
/*
 header
--------------------------------------------------------------------------*/
.l-header{
	background: #00447C;
}
.l-header .l-container{
  padding: 30px 10%;
}
.l-header .l-container .logo-area{
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
.l-header .logo{
	width: 200px;
}
.l-header .logo-fund{
	width: 400px;
}
.logo-ttl{
  width: 200px;
}
@media (max-width: 800px) {
	.l-header .l-container{
		padding: 1em 24px;
	}
	.l-header .logo{
		width: 25%;
	}
	.l-header .logo-fund{
		width: 31%;
	}
  .logo-ttl{
    width: 20%;
  }
}
@media (max-width: 767px) {
	.l-header .logo{
		width: 125px;
	}
	.l-header .logo-fund{
		width: 250px;
	}
}
@media (max-width: 480px) {
  .l-header .l-container{
		padding: 1em;
	}
	.l-header .logo{
		
	}
	.l-header .logo-fund{
		
	}
}

/* セミナータイトル */
.title-area{
  background-image: -webkit-gradient(linear, right top, left top, from(#ccf1cf), to(#fad4f9));
  background-image: -webkit-linear-gradient(right, #ccf1cf 0%, #fad4f9 100%);
  background-image: linear-gradient(to left, #ccf1cf 0%, #fad4f9 100%);
  /* background: #eee; */
  padding-top: 1em;
}
.login .title-area{
  background: #001B44;
}
.title-area .l-container{
  justify-content: center;
}
.title-area p{
  font-weight: bold;
  color: #001B44;
}
.login .title-area p{
  color: #fff;
}

/*
 footer
--------------------------------------------------------------------------*/
.l-footer{
	background: #00447C;
	color: #fff;
}
.login .l-footer{
  background: #001B44;
}
.l-footer .l-container{
  padding: 2% 30px;
  flex-direction: column;
}
.l-footer p{
  margin: 0;
  font-size: .8em;
}
@media (max-width: 767px) {
	.l-footer{
	}
	.l-footer .l-container{
		padding: 20px 15px;
  }
}

.footer-contact-area{
  margin: 1em 0 0;
}
.footer-contact-area p:first-child{
  font-weight: bold;
}
.footer-contact-area p br{
  display: none;
}
.footer-contact-area p a{
  color: #fff;
}
.footer-contact-area p a:hover{
  color: #aaa;
}
@media (max-width: 767px) {
  .footer-contact-area p br{
    display: block;
  }
}

/*
 main
--------------------------------------------------------------------------*/
.l-main{
  background: #00447C;
  background: #001B44;
  color: #fff;
}
.login .l-main{
  background: url(../img/bg-main.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
}
@media (max-width: 800px) {
}

/*
 section
--------------------------------------------------------------------------*/
.section {
  padding: 2em 0;
}
@media (max-width: 767px) {
	.section{
		padding: 2em 0;
	}
}

/*
 container
--------------------------------------------------------------------------*/
.l-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  position: relative;
  padding: 0 2.635%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 1800px;
}
@media (min-width: 1200px) {
	.l-container{
    padding: 0 6%;
	}
}
@media (min-width: 1660px) {
	.l-container{
    padding: 0 10%;
	}
}
@media (max-width: 767px) {
	.l-container{
    padding: 0 3.125%;
	}
}

/*=========================================================================
//
// sessions
//
==========================================================================*/
.primary{
  width: 66.5%;
}
@media (max-width: 1023px) {
	.primary{
    width: 100%;
	}
}
@media (min-width: 1660px) {
	.primary{
    width: 74%;
	}
}

.secondary{
  width: 31.5%;
  font-size: .9em;
}
@media (max-width: 1023px) {
	.secondary{
    width: 100%;
    margin-top: 1em;
  }
}
@media (min-width: 1660px) {
	.secondary{
    width: 24%;
  }
}

/*
 login-are
--------------------------------------------------------------------------*/
.login-area{
  width: 60%;
  max-width: 980px;
  margin: 60px auto;
  background: #fff;
  padding: 2em;
  color: #111;
  position: relative;
}
@media (max-width: 1023px) {
  .login-area{
    width: 90%;
    margin: 30px auto;
  }
}
.login-area dl{
  width: 60%;
  margin: 2em auto;
}
.login-area dt{
  display: inline-block;
  width: 160px;
  text-align: right;
}
.login-area dd{
  display: inline-block;
}
@media (max-width: 1200px) {
  .login-area dl{
    width: 100%;
    margin: 2em auto;
  }
  .login-area dt{
    display: block;
    width: 160px;
    text-align: left;
  }
  .login-area dd{
    display: block;
    margin: 0;
  }
  .login-area dd input[type="text"],
  .login-area dd input[type="password"]{
    width: 100%;
  }
}

.badge-intel{
  text-align: right;
  margin: -70px 20px 0 0;
}
.badge-intel img{
  width: 90px;
}
@media (max-width: 767px) {
  .badge-intel{
    text-align: right;
    margin: -50px 0 0 0;
  }
  .badge-intel img{
    width: 60px;
  }
}

/*
 video-are
--------------------------------------------------------------------------*/
.vimeo-area{
	position: relative;
	height: 0;
	padding: 0 0 56.25%;
	overflow: hidden;
}
.vimeo-area iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*
 youtube-area
--------------------------------------------------------------------------*/
.youtube-area{
	position: relative;
	height: 0;
	padding: 0 0 56.25%;
	overflow: hidden;
}
.youtube-area iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*
 vimeo-end
--------------------------------------------------------------------------*/
.vimeo-end{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  /* background: #f9f9f9; */
  background: #001B44;
  border: 1px solid #ddd;
  padding: 40px 30px ;
}
.vimeo-end .text1{
  font-weight: bold;
  font-size: 24px;
  margin: 0;
}
.vimeo-end .text2{
  font-weight: bold;
  color: #0076CE;
  font-size: 18px;
  margin: 1em 0 0;
}
.vimeo-end .text3{
  margin: 0;
  font-size: 18px;
}
.vimeo-end figure{
  width: 30%;
  margin: 20px auto 0;
}
@media (max-width: 767px) {
  .vimeo-end{
    padding: 30px 10px;
  }
  .vimeo-end .text1{
    font-size: 18px;
  }
  .vimeo-end .text2{
    font-size: 15px;
  }
  .vimeo-end .text3{
    font-size: 15px;
  }
  .vimeo-end figure{
    width: 200px;
  }
}


/*=========================================================================
//
// gridtab
//
==========================================================================*/
.gridtab--0 > dt {
  margin: -2px 0 0 -2px;
  /* min-width: calc(12.5% + 2px);
  width: calc(12.5% + 2px); */
  min-width: calc(33% + 2px);
  width: calc(33% + 2px) !important;
  border-width: 1px !important;
  padding: .5em !important;
  border-bottom: none !important;
  /**/
  text-align: center;
  font-weight: bold;
  position: relative;
  cursor: pointer;
  font-size: .9em;
  background: none;
  border-color: #00447C !important;
}
.gridtab--0 > dt:hover{
  opacity: .7;
}
.gridtab>dt{
  background: rgba(255, 255, 255, .1);
}
.gridtab--0 > dt.is-active{
	border-top-color: #0076CE !important;
	border-top-width: 4px !important;
	background: #fff !important;
  background: #001B44 !important;
}
.gridtab--0 > dt.is-active:hover{
  opacity: 1;
}
.gridtab>dt:after{
  display: none;
}

.gridtab--0>dd {
  min-width: calc(100% + 2px);
  max-width: calc(100% + 2px);
  margin: -2px 0 0 -2px !important;
  border: none !important;
  padding: 24px 0 0 !important;
  /* background: #fff !important; */
  background: #001B44 !important;
}
@media ( max-width : 1023px ) {
  .gridtab--0>dd {
    padding: 16px 0 0 !important;
  }
}
@media ( max-width : 767px ) {
	.gridtab--0 > dt {
		font-size: 100%;
		position: relative;
	}
}

/*=========================================================================
//
// details
//
==========================================================================*/
/*
 information-area
--------------------------------------------------------------------------*/
.information-area {
  position: relative;
}
.information-area iframe{
  width: 100%;
}
.information-area-inner{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 1em auto;
  position: relative;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.information-area-inner .info-img{
  position: relative;
  width: 10%;
}
.information-area-inner .info-img:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-family: 'themify';
  content: "\e64f";
  line-height: 1;
  color: #0076CE;
  font-size: 3em;
}
.information-area-inner .info-text{
  border: 1px solid #0076CE;
  width: 90%;
  padding: 1em;
}
.information-area-inner .info-text span{
  color: #0076CE;
}
.information-area-inner .info-text p{
  /* margin: .5em 0 0; */
  margin: 0;
}
@media (max-width: 767px) {
  .information-area-inner .info-img{
    display: none;
  }
  .information-area-inner .info-text{
    width: 100%;
  }
}

/*
 q-area
--------------------------------------------------------------------------*/
.q-area{
  /* margin: 0; */
  margin: 1em 0 0;
  position: relative;
  height: 0;
  padding: 0 0 56.25%;
  overflow: hidden;
}
.q-area iframe{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 98%;
  height: 100%;
}
.q-area-inner .input-wrap input[type="submit"]{
  width: 100%;
  margin: .5em auto 0;
  padding: .4em 2em;
  background: #fff;
  color: #0076CE;
  border: 1px solid #0076CE;
  letter-spacing: .1em;
}
.q-area-inner .input-wrap input[type="submit"]:hover{
  background: #0076CE;
  color: #fff;
}
.q-area-inner .input-wrap{
  position: relative;
}
.q-area-inner .input-wrap::after{
  position: absolute;
  top: 35%;
  right: 18px;
  font-family: 'themify';
  content: "\e62c";
  line-height: 1;
  color: #0076CE;
  transform: rotate(135deg);
}
.q-area-inner .input-wrap:hover::after{
  color: #fff;
}

/* 戻るボタン */
.q-area-inner .input-wrap.back::after{
  left: 18px;
  content: "";
  content: "\e629";
}

.q-area-inner p:first-child{
  color: #0076CE;
  font-weight: bold;
  margin: 0 0 .5em;
  padding-left: 1.4em;
  position: relative;
}
.q-area-inner p:first-child::before{
  position: absolute;
  top: 22%;
  left: 0;
  font-family: 'themify';
  content: "\e718";
  line-height: 1;
}


/*
 novelty-are
--------------------------------------------------------------------------*/
.novelty-area{
	background: rgba(255, 255, 255, .1);
	padding: 10px;
	width: 	100%;
	margin: 1em 0;
}
.novelty-tag{
	display: block;
	background: #001B44;
	padding: .5em 1em;
	color: #fff;
	font-weight: bold;
}
.novelty-area li{
	padding-bottom: 1em;
	background: rgba(255, 255, 255, .1);
}
.novelty-area li p{
	padding: 1em 1em 0;
	margin: 0;
}
.novelty-area li:first-child{
	margin-bottom: 10px;
}
.novelty-area li:last-child{
	margin-bottom: 30px;
}

/*
 fund-area
--------------------------------------------------------------------------*/
.fund-area{
  /* border: 1px solid #eee; */
  margin: 1em 0;
  padding: 1.5em;
}
.fund-area figure{
  width: 100px;
  margin: 0 auto;
}
.fund-area p{
  margin: 1.5em 0 0;
}

/*
 agenda
--------------------------------------------------------------------------*/
.tab-agenda iframe{
  width: 100%;
  height: 260px;
}
.agenda{
  overflow: auto;
}
.agenda li{
  width: 98%;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
.agenda h3{
  font-size: 1em;
  margin: .5em 0;
}
.agenda .speaker{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.agenda .speaker-name{
  width: 74.5%;
}
.agenda figure{
  width: 23.5%;
}
.agenda span.time {
  /* color: #0076CE; */
  font-weight: bold;
  /* padding-left: 1.4em; */
  position: relative;
}
.agenda span.time::before {
  position: absolute;
  top: 14%;
  left: 0;
  font-family: 'themify';
  content: "\e72b";
  line-height: 1;
  display: none;
}
.agenda p {
  /* font-size: .9em; */
  margin: .5em 0 0;
}
.agenda img{
  width: 100%;
  height: 100px;
  object-fit: cover;
}

/* アンケート
--------------------------------------------------------*/
.tab-questionnaire iframe{
  width: 100%;
  height: 500px;
}
.tab-questionnaire input[type="submit"] {
  margin: .5em auto 0;
  padding: .5em 2em;
  background: #0076CE;
  color: #fff;
  border: 1px solid #0076CE;
  letter-spacing: .1em;
  font-size: 1em;
}

/* LiveQ
--------------------------------------------------------*/
.tab-LiveQ iframe{
  width: 100%;
  height: 500px;
}

/* module-worksheet
--------------------------------------------------------*/
.module-worksheet{
	width: 100%;
	margin: 0 auto 1em;
}
.module-worksheet th,
.module-worksheet td{
	width: 100%;
	display: block;
}
.module-worksheet th {
  text-align: left;
  position: relative;
  padding: 1em 1em 0;
}
.module-worksheet td {
  padding: .5em 1em 1em;
  line-height: 1.8
}
.module-worksheet tr:nth-child(odd) {
	background: #f4f4f4;
}
.module-worksheet th.must:after{
	content: '*';
	margin-left: .5em;
	color: #ce1126;
}
@media (max-width: 767px) {
	.module-worksheet th {
		 padding: 1em 1em 0;
	}
	.module-worksheet td {
		padding: .5em 1em 1em;
	}
}


/*=========================================================================
//
// form parts
//
==========================================================================*/
input[type="text"],
input[type="password"] {
  padding: 6px;
  border-radius: 1px;
  border: 0;
  border: 1px solid #aaa;
  margin: 0 12px;
}
input[type="text"]:first-child,
input[type="password"]:first-child,
input[type="text"].input1{
	margin: 0 12px 0 0;
}
input[type="text"][class^="l"] {
	width: 85%;
}
input[type="text"][class^="m"],
input[type="password"][class^="m"] {
	width: 30%;
}
input[type="text"][class^="s"] {
	width: 30%;
}
input[type="text"][class^="ss"] {
	width: 10%;
}
.serial-box input[type="text"][class^="ss"] {
	width: 25%;
}
select {
  border: 0;
  border: 1px solid #ccc;
  border-radius: 1px;
  font-size: 14px;
}
@media (max-width: 767px) {
	input[type="text"],
	input[type="text"]:first-child{
		padding: 5px;
		margin: 0;
	}
	input[type="text"][class^="l"] {
	    width: 100%;
	}
	input[type="text"][class^="m"],
	input[type="password"][class^="m"] {
		width: 80%;
	}
	input[type="text"][class^="s"] {
	    width: 30%;
	}
	input[type="text"][class^="ss"] {
	    width: 25%;
	}
	select {
		width: 100%;
	}
}
@media (max-width: 320px) {
	input[type="text"].add-text {
		margin-top: .5em;
	}
}

input::placeholder,
textarea::placeholder {
  color: #999;
}

input[type="radio"] , input[type="checkbox"]{
  transform: scale(1.2);
}

/* radio
-------------------------------------------------------- */
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label{
  position: relative;
  cursor: pointer;
  display: inline-block;
}

/* checkbox
-------------------------------------------------------- */
[type="checkbox"]:checked + label,
[type="checkbox"]:not(:checked) + label{
  position: relative;
  cursor: pointer;
  display: inline-block;
}

/* submit btn
--------------------------------------------------------*/
input[type="submit"],
input[type="button"]{
  border: none;
  /* display: block; */
	background: #0076CE;
	border: 1px solid #0076CE;
  /* margin: 0 auto; */
  margin: 0 1em;
  padding: .4em 3em;
	color: #fff;
	position: relative;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
input[type="submit"]:hover,
input[type="button"]:hover{
	background: #fff;
	color: #0076CE;
}
@media (max-width: 767px) {
	input[type="submit"]{
	}
}

input[type="text"].off,
select.off{
	background: #ddd;
}

input.zip {
	background: #007db8;
  color: #fff;
  border: 1px solid #007db8;
  cursor: pointer;
  font-size: .9em;
}
input.zip:hover{
	color: #007db8;
	background: #fff;
}
@media (max-width: 350px) {
	input.zip {
		margin-top: 1em;
	}
}

input[type="text"].error,
select.error{
	border: 1px solid #ce1126
}
.error-message{
	color: #ce1126;
	margin: .5em 0;
}
span.must{
	font-size: 1.2em;
	color: #ce1126;
	font-weight: bold;
}
p.caution {
  font-size: .9em;
  margin: .5em 0 0;
}
.entry-privacy{
	font-size: .86em;
  border: 1px solid #ddd;
  padding: 1em 2em;
}
.entry-privacy li{
	text-indent: -1em;
	padding-left: 1em;
}
.privacy-check {
  text-align: center;
  font-size: 1.2em;
  margin: 2em auto 1em;
  font-weight: bold;
}
@media (max-width: 767px) {
	.entry-privacy{ padding: 1em; }
}

.entry-privacy [type=checkbox]{
	margin: 0 0 0 10px;
  vertical-align: middle;
}
.entry-privacy label{
  display: inline-block;
}


/* btn-area
--------------------------------------------------------*/
.btn-area{
  margin: 1em 0;
  text-align: center;
}
/* link-agend */
a.link-agenda,
a.link-survey{
  display: block;
  width: 100%;
  margin: .5em auto 0;
  padding: .4em 2em;
  background: #0076CE;
  color:#fff;
  border: 1px solid #0076CE;
  text-decoration: none;
  letter-spacing: .1em;
}
a.link-agenda:hover,
a.link-survey:hover{
  background: #fff;
  color: #0076CE;
}


/* QUIZ entry */
.quiz-entry-area{
  border-bottom: 1px dotted #eee;
  width: 98%;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  padding: 0 0 1em;
}
.quiz-l{
  width: 60%;
  padding-right: 1em;
}
.quiz-l p{
  margin: 0;
}
.quiz-l p:first-child{
  font-size: 2em;
}
p.ttl{
  background: #0076CE;
  font-weight: bold;
  padding: .2em .5em;
  margin: .5em 0;
}

.quiz-r{
  width: 40%;
}


/*=========================================================================
//
// 動画一覧
//
==========================================================================*/
/*-------------------------------------------------------------------------
 メインビジュアル
--------------------------------------------------------------------------*/
.mainvisual {
  background: url(../img/mv.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
	width:100%;
}
.mainvisual-inner{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 4% 0 10%;
	position: relative;
}
.mv-img{
	width: 300px;
	margin: 0 0 60px 20px;
}
.logo-intel{
	width: 120px;
	position: absolute;
	right: 20px;
	bottom: 5%;
}
@media (max-width: 1100px) {
	.mainvisual {
		background: url(../img/mv.jpg) center right no-repeat;
  	background-size: cover;
	}
	.mv-img{
		width: 280px;
	}
	.logo-intel{
		width: 80px;
	}
}
.mainvisual-inner strong{
	display: block;
	margin: 0 0 0 20px;
	padding: 1em 0;
	font-size: 2em;
	color: #fff;
	background: rgba(0, 68, 124, .8);
	font-weight: normal;
}
.mainvisual-inner strong span{
	display: block;
	font-size: .8em;
}
@media (max-width: 800px) {
	.mainvisual {
		background: none;
		background: url(../img/mv-sp.jpg) top right no-repeat;
  	background-size: cover;
	}
	.mainvisual-inner{
		padding: 12% 0 30%;
	}
	.mv-img{
		width: 260px;
	}
  .mainvisual-inner strong{
		font-size: 1.4em;
		margin: 0;
		padding: 1em;
		font-weight: bold;
  }
}
@media (max-width: 640px) {
	.mv-img{
		width: 220px;
		margin: 0 0 40px 20px;
	}
	.logo-intel{
		width: 60px;
	}
}

/*  */
.archives .l-container{
  max-width: 1100px;
  padding: 0 20px;
  flex-direction: column;
}
@media (max-width: 1200px) {
  .archives .l-container{
    max-width: 90%;
  }
}
.separate {
  padding-top: 1em;
  border-top: 1px solid #eee;
}

.archives .heading1{
  text-align: center;
}
@media (max-width: 767px) {
  .archives .heading1{
    font-size: 1.4em;
  }
}
.archives .heading4{
	margin: 0;
	font-size: 1.2em;
}

/*-------------------------------------------------------------------------
 動画リスト
--------------------------------------------------------------------------*/
.archives .agenda-list{
	border-top: 1px dotted #fff;
}
.archives .agenda-list li{
	padding: 1.6em 0;
	border-bottom: 1px dotted #fff;
	position: relative;
}
.archives .agenda-list li:last-child{
  border-bottom: none;
}
.archives .agenda-list li:hover{
	opacity: .8;
}

/* agenda-text */
.session-tag{
	color: #fff;
	border: 1px solid #fff;
	padding: .5em 1em;
	font-size: .9em;
	font-weight: bold;
}
/* .agenda-list span.time{
	color: #007db8;
	padding-left: 1.6em;
	font-size: 18px;
	position: relative;
} */
.agenda-list span.time:before{
	position: absolute;
  top: 22%;
  left: 0;
  font-size: 18px;
  font-family: 'themify';
  content: "\e72b";
  line-height: 1;
}
.archives .agenda-list li h3{
	margin: .5em 0 2em;
	color: #fff;
}
.archives .agenda-list li p{
	margin: 0 0 .5em;
	font-size: .9em;
}
.archives .agenda-list li p.agenda-speaker{
	font-size: .9em;
	color: #000;
	margin: 0 0 1.5em;
}

/* agenda-thumb */
.archives .agenda-list .thumb-box {
 margin: 0;
 padding: 0 1em;
}
.archives .agenda-list .thumb-box img:hover {
	opacity: .8;
}

a.session-link-btn {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	text-decoration: none;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}
.session--link p{
	display: inline-block;
	background: #0076CE;
	color: #fff;
	padding: .5em 4em .5em 3em;
	position: relative;
}
.session--link p::after{
	position: absolute;
  top: 50%;
  right: 16px;
	transform: translateY(-50%);
  font-size: 16px;
  font-family: 'themify';
  content: "\e6ad";
  line-height: 1;
}

@media ( max-width : 767px ) {
	.archives .agenda-list{
		border-top: 1px dotted #fff;
	}
	.archives .agenda-list li{
		padding: 1.6em 0 0;
		border-bottom: 1px dotted #fff;
	}
	.archives .agenda-list .text-box{
		padding: 1em;
	}
	.archives .agenda-list span.time{
		padding-left: 1.6em;
		font-size: 16px;
	}
	.archives .agenda-list span.time:before{
		font-size: 16px;
		top: 18%;
	}
  .archives .agenda-list li h3{
    margin: .5em 0 1em;
  }
}

/* footer */
.archives .l-footer .l-container {
  padding: 2% 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .archives .l-footer .l-container{
    flex-direction: column;
    padding: 20px 15px;
  }
}
