@charset 'utf-8';

html {
	font-size: 16px;
	line-height: 1.4;
	color: #000000;
  scroll-behavior: smooth;
}
body {
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
	font-weight: 500;
	background-color: #f6f1fa;
	margin: 0px;
	padding: 0px;
	font-feature-settings: "palt" 1;
}
/* IEだけに適応 */
_:lang(x)::-ms-backdrop, .selector {
	font-family: "Segoe UI", Meiryo, sans-serif;
}
div,h1,h2,h3,h4,h5,p,img,ul,li {
	margin: 0px;
	padding: 0px;
	border: none;
}
#container {
	width: 800px;
	margin: 0px auto;
	background-color: #FFF;
	box-shadow: 0 0px 10px 0px rgba(0,0,0,0.5);
}
@media screen and (max-width: 959px) {
	/* 959px以下に適用されるCSS（タブレット用） */
	#container {
		width: 100%;
		margin: 0px;
		background-color: #FFF;
		box-shadow: 0 0px 0px 0px rgba(0,0,0,0);
	}
}

h3 {
	clear: both;
	font-size: 1rem;
	margin-bottom: 10px;
  background: #F9F9F9;
  background-image: -webkit-linear-gradient(top, #F9F9F9, #E4E4E4);
  background-image: -moz-linear-gradient(top, #F9F9F9, #E4E4E4);
  background-image: -ms-linear-gradient(top, #F9F9F9, #E4E4E4);
  background-image: -o-linear-gradient(top, #F9F9F9, #E4E4E4);
  background-image: linear-gradient(to bottom, #F9F9F9, #E4E4E4);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: solid 1px #E4E4E4;
  padding: 10px 16px 10px 26px;
  position: relative;
}
h3::after {
  content:  "";     /* 空の要素作成 */
  width: 6px;                /* 幅指定 */
  height: 20px;               /* 高さ指定 */
  display: block;    /* インラインブロックにする */
  background-color: #a277cb;  /* 背景色指定 */
  position: absolute;        /* 位置調整 */
  top: 10px;                   /* 位置指定 */
  left: 10px;
  border-radius:  25%;        /* 要素を丸くする */
  margin-right: 20px;          /* 余白指定 */
}
h4 {
	clear: both;
	font-size: 0.9rem;
	border-bottom: solid 2px #db5f53;
	margin: 0px 0px 6px 0px;
	padding: 2px 10px 2px 10px;
}
h5 {
	display: flex;
	font-size: 1rem;
	color: #FFFFFF;
	background-color: #db5f53;
	margin: 0px 0px 6px 0px;
	padding: 4px 10px;
}
h6 {
	font-size: 0.9rem;
	font-weight: 600;
	margin: 0px 20px 0px 20px;
}
p {
	font-size: 0.9rem;
	margin: 0px 20px 10px 20px;
}
p.selftext {
	font-size: 1rem;
	font-weight: 600;
}
p.program {
	margin-left: 2.4rem;
}
.alert {
	font-weight: 600;
	color: #cc0000;
}
.clear {
	font-weight: 600;
	color: #00cc00;
}
.indexbox {
  margin-bottom: 6px;
}
.speakerArea {
  display: flex;
  margin: 0px 20px;
}
@media screen and (max-width: 959px) {
	/* 959px以下に適用されるCSS（タブレット用） */
  .speakerArea {
    margin: 0px 0px;
  }
}
.qa_area{
  text-align: right;
}
.playBtn {
	margin: 0px;
}
.shikai {
  text-align: right;
  margin-bottom: 6px;
}
.enjya {
  flex-basis: 100%;
}
.viewed {
	text-align: center;
  color: #cc0000;
  font-weight: 600;
  line-height: 0;
}


/*
Link style -------------------------------------------------------------------------------------------- */
a {
  cursor: pointer;
}
a:link, a:visited {
	text-decoration:none;
	color: #cc0000;
}
a:hover, a:active {
	text-decoration:underline;
	color: #cc0000;
}

.btn {
  display: inline-block;
  border-radius: 3px;
  font-size: 1rem;
  text-align: center;
  padding: 10px;
  color: #ffffff;
	border: 1px solid #FFF;
  opacity: 1;
  transition: .2s;
  margin-bottom: 6px;
}
.btn:link, .btn:visited {
	text-decoration:none;
	color: #ffffff;
}
.btn:hover, .btn:active {
  opacity: 1;
	text-decoration:none;
}

.btn_gray {
	background-color: #1B3D54;
}
.btn_gray:hover, .btn_gray:active {
	color: #1B3D54;
	background-color: #FFF;
	border: 1px solid #1B3D54;
}

.btn_blue {
	background-color: #1982c4;
}
.btn_blue:hover, .btn_blue:active {
	color: #1982c4;
	background-color: #FFF;
	border: 1px solid #1982c4;
}

.btn_green {
	background-color: #8ac926;
	color: #000000;
}
.btn_green:hover, .btn_green:active {
	color: #8ac926;
	background-color: #FFF;
	border: 1px solid #8ac926;
}

.btn_yellow {
	background-color: #ffca3a;
	color: #000000;
}
.btn_yellow:hover, .btn_yellow:active {
	color: #ffca3a;
	background-color: #FFF;
	border: 1px solid #ffca3a;
}

.btn_orange {
	background-color: #EF810F;
}
.btn_orange:hover, .btn_orange:active {
	color: #EF810F;
	background-color: #FFF;
	border: 1px solid #EF810F;
}

.btn_red {
	background-color: #ff595e;
}
.btn_red:hover, .btn_red:active {
	color: #ff595e;
	background-color: #FFF;
	border: 1px solid #ff595e;
}

.btn_purple {
	background-color: #6a4c93;
}
.btn_purple:hover, .btn_purple:active {
	color: #6a4c93;
	background-color: #FFF;
	border: 1px solid #6a4c93;
}

.liveBtn {
  display       : inline-block;
  border-radius : 5px;          /* 角丸       */
  font-size     : 300%;        /* 文字サイズ */
	font-weight: 600;
  text-align    : center;      /* 文字位置   */
  cursor        : pointer;     /* カーソル   */
  padding       : 20px 40px;   /* 余白       */
  background: #85c7eb;
  background: -webkit-gradient(linear, left top, left bottom, from(#fdfbfb), to(#85c7eb));
  background: -webkit-linear-gradient(top, #fdfbfb 0%, #85c7eb 50%, #fdfbfb 100%);
  background: linear-gradient(to bottom, #fdfbfb 0%, #85c7eb 50% #fdfbfb 100%);
	-webkit-box-shadow: inset 1px 1px 1px #fff;
	box-shadow: inset 1px 1px 1px #fff;
  color         : #000;     /* 文字色     */
	border: #0080b8 solid 1px;
  line-height   : 1em;         /* 1行の高さ  */
  opacity       : 0.8;         /* 透明度     */
}
.liveBtn:link, .liveBtn:visited {
	text-decoration:none;
	color: #000;
}
.liveBtn:hover, .liveBtn:active {
  opacity       : 1;           /* カーソル時透明度 */
	text-decoration:none;
	color: #000;
}

.btn_a {
  display       : inline-block;
  border-radius : 5px;          /* 角丸       */
  font-size     : 12pt;        /* 文字サイズ */
  text-align    : center;      /* 文字位置   */
  cursor        : pointer;     /* カーソル   */
  padding       : 12px 12px;   /* 余白       */
  background    : #093762;     /* 背景色     */
  color         : #ffffff;     /* 文字色     */
  line-height   : 1em;         /* 1行の高さ  */
  opacity       : 0.9;         /* 透明度     */
  transition    : .3s;         /* なめらか変化 */
  margin-bottom: 6px;
}
.btn_a:link, .btn_a:visited {
	text-decoration:none;
	color: #ffffff;
}
.btn_a:hover, .btn_a:active {
  opacity       : 1;           /* カーソル時透明度 */
	text-decoration:none;
	color: #ffffff;
}

.btn_b {
  display       : inline-block;
  border-radius : 5px;          /* 角丸       */
  font-size     : 12pt;        /* 文字サイズ */
  text-align    : center;      /* 文字位置   */
  cursor        : pointer;     /* カーソル   */
  padding       : 12px 12px;   /* 余白       */
  background    : #aa4c8f;     /* 背景色     */
  color         : #ffffff;     /* 文字色     */
  line-height   : 1em;         /* 1行の高さ  */
  opacity       : 0.9;         /* 透明度     */
  transition    : .3s;         /* なめらか変化 */
  margin-bottom: 6px;
}
.btn_b:link, .btn_b:visited {
	text-decoration:none;
	color: #ffffff;
}
.btn_b:hover, .btn_b:active {
  opacity       : 1;           /* カーソル時透明度 */
	text-decoration:none;
	color: #ffffff;
}

.downloadbtn {
  display: inline-block;
  border-radius: 3px;
  font-size: 1rem;
  text-align: center;
  padding: 12px 20px;
  background-color: #1d2088;
  color: #ffffff;
	border: 1px solid #FFF;
  opacity: 0.8;
  transition: .2s;
  margin-bottom: 6px;
}
.downloadbtn:link, .downloadbtn:visited {
	text-decoration:none;
	color: #ffffff;
}
.downloadbtn:hover, .downloadbtn:active {
  opacity: 1;
	text-decoration:none;
	color: #1d2088;
	background-color: #FFF;
	border: 1px solid #1d2088;
}

/*
page-top -------------------------------------------------------------------------------------------- */
.pagetop {
	text-align: right;
	margin: -6px 0px 20px 0px;
}
.pagetop img {
	border: none;
}

/*
header -------------------------------------------------------------------------------------------- */
div#header {
	position: relative;
	height: auto;
	margin: 0px;
	line-height: 0em;
}
h1 img {
	width:100%;
	max-width: 100%;
	height: auto;
	margin: 0px;
}

#indeximg img {
	width:100%;
	max-width: 100%;
	height: auto;
	margin: 0px;
}


/*
contents -------------------------------------------------------------------------------------------- */
#contents {
	margin: 0px 20px 0px 20px;
}
@media screen and (max-width: 959px) {
	/* 959px以下に適用されるCSS（タブレット用） */
	#contents {
		margin: 0px 20px 0px 20px;
	}
}

ul.annai {
	margin:0px 20px 20px 20px;
}
ul.annai li {
	font-size: 0.9rem;
	margin: 0px 0px 10px 10px;
}

.speakerArea {
	display: flex;
	margin: 0px 10px 10px 10px;
}
.zachou {
	text-align: right;
	margin: 0px 0px 4px 0px;
}
.titleText {
	font-weight: 600;
	margin: 0px 0px 4px 0px;
}
.enjya {
	margin: 0px 0px 4px 0.9rem;
}

.bannerB {
  margin: 0px 0px 10px 0px;
}
.bannerB img {
	width:100%;
	max-width: 100%;
	height: auto;
	margin: 0px;
}
.bannerS {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 16px 0px 10px 0px;
}

#support {
  border: #db5f53 solid 2px;
  border-radius : 5px;
  margin: 6px 0px 10px 0px;
  padding: 10px 0px;
}
.supportArea {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}
#support ul {
  list-style: none;
  font-size: 0.9rem;
}
#support ul li {
  text-indent: -0.9rem;
  margin-left: 1rem;
}


/*
footer -------------------------------------------------------------------------------------------- */
#footer {
	clear:both;
	background-color: #FFFFFF;
	border-top: #a277cb solid 4px;
}
#footer p {
	line-height: 120%;
	text-align: center;
	margin: 0px;
	padding: 10px 0px 10px 0px;
	color: #000000;
}


/*
loginform -------------------------------------------------------------------------------------------- */
#loginform {
	width: 60%;
	border: #999 solid 1px;
	margin: 30px auto 70px auto;
	padding: 20px;
}
#registerForm {
	width: 90%;
	margin: 0px auto;
	font-size: 0.9rem;
}
@media screen and (max-width: 959px) {
	/* 959px以下に適用されるCSS（タブレット用） */
	#loginform {
		width: 80%;
		height:80%;
		margin: 10px auto 40px auto;
	}
}

#loginform p {
	margin: 0px 0px 10px 0px;
}
#loginform label {
	margin-bottom: 4px;
	font-size: 0.9rem;
	font-weight: 600;
}

.inputform {
	margin-bottom: 10px;
}
.inputform input {
	box-sizing: border-box;
	width: 100%;
	padding: 0.6rem;
	letter-spacing: 1px;
	color: #333333;
	border: 1px solid #999999;
	border-radius: 5px;
}
.inputform input.name {
	width: 35%;
}

.inputform input:focus {
	border: 1px solid #da3c41;
	outline: none;
	box-shadow: 0 0 5px 1px rgba(218,60,65, .5);
}
	
.inputform input:invalid {
	background: #ffcdd2;
}
.inputform input:valid {
	background: transparent;
} 
.inputform label {
	display:block;
	margin-bottom: 4px;
	font-size: 0.9rem;
	font-weight: 600;
}

.inputform textarea {
	box-sizing: border-box;
	width: 90%;
	height: 150px;
	padding: 0.6rem;
	margin-left: 10px;
	margin-right: 10px;
	letter-spacing: 1px;
	color: #333333;
	border: 1px solid #999999;
	border-radius: 5px;
}

.r-label {
  display: inline-block;
  border-radius: 2px;
  font-size: 0.7rem;
  text-align: center;
  cursor: pointer;
  padding: 3px 6px;
  background: #D9534F;
  color: #ffffff;
  line-height: 1em;
}
.o-label {
  display: inline-block;
  border-radius : 2px;
  font-size: 0.7rem;
  text-align: center;
  cursor: pointer;
  padding: 3px 6px;
  background: #5CB85C;
  color: #ffffff;
  line-height: 1em;
}

input[type=checkbox] {
    display: none;
}
.checkbox {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 30px;
    position: relative;
    width: auto;
}
.checkbox::before {
    background: #fff;
    border: 1px solid #231815;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}
.checkbox::after {
    border-right: 3px solid #ed7a9c;
    border-bottom: 3px solid #ed7a9c;
    content: '';
    display: block;
    height: 9px;
    left: 10px;
    margin-top: -7px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    width: 5px;
}
input[type=checkbox]:checked + .checkbox::after {
    opacity: 1;
}

#quizForm {
	border: #999 solid 1px;
	border-radius: 5px;
	background-color: #FFF;
	width: 90%;
	margin: 20px auto;
	padding: 20px;
	
}

#quizForm img {
	width: 100%;
}
.answer {
	margin: 6px 10px 0px 10px;
}
.answer p {
	text-indent: -2.9em;
	margin: 0px 10px 10px 50px;
}

.maru {
	background: #EFF url(../img/maru.png) no-repeat center center;
}
.batu {
	background: #FEF url(../img/batu.png) no-repeat center center;
}

#subBtn {
	text-align: center;
}
#submitBtn {
  display: inline-block;
  padding: 1rem 1.4rem;
  font-size: 1rem;
	font-weight: 600;
  color: #fff;
  user-select: none;
  border: 0px #130CB7 solid;
	background:linear-gradient(135deg, #8395eb 0%,#2643d4 100%);
  border-radius: 3px;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 2px 0 rgba(0, 0, 0, 0.12);
}
#submitBtn:hover {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2), 0 1px 8px 0 rgba(0, 0, 0, 0.12);
}

.closeBtn {
	text-align: center;
}
@media screen and (min-width: 790px) {
	/* 798px以上に適用されるCSS */
	.closeBtn {
		display: none;
	}
}


.gg-arrow-up-r {
 box-sizing: border-box;
 position: relative;
 display: inline-block;
 width: 20px;
 height: 20px;
 border: 2px solid;
 transform: scale(var(--ggs,1));
 border-radius: 4px
}

.gg-arrow-up-r::after {
 content: "";
 display: block;
 box-sizing: border-box;
 position: absolute;
 top: 6px
}

.gg-arrow-up-r::after {
 width: 6px;
 height: 6px;
 border-top: 2px solid;
 border-left: 2px solid;
 transform: rotate(45deg);
 left: 5px
}


 .gg-arrow-right-r {
 box-sizing: border-box;
 position: relative;
 display: inline-block;
 width: 30px;
 height: 30px;
 border: 4px solid;
 transform: scale(var(--ggs,1));
 border-radius: 4px
}

.gg-arrow-right-r::after {
 content: "";
 display: block;
 box-sizing: border-box;
 position: absolute;
 right: 7px
}

.gg-arrow-right-r::after {
 width: 12px;
 height: 12px;
 border-top: 4px solid;
 border-right: 4px solid;
 transform: rotate(45deg);
 bottom: 5px
}

.gg-external {
 box-sizing: border-box;
 position: relative;
 display: inline-block;
 transform: scale(var(--ggs,1));
 width: 10px;
 height: 10px;
 box-shadow:
 -2px 2px 0 0,
 -4px -4px 0 -2px,
 4px 4px 0 -2px;
 margin-left: -2px;
 margin-top: 1px;
}

.gg-external::after,
.gg-external::before {
 content: "";
 display: block;
 box-sizing: border-box;
 position: absolute;
 right: -4px;
}

.gg-external::before {
 background: currentColor;
 transform: rotate(-45deg);
 width: 10px;
 height: 2px;
 top: 0px;
}

.gg-external::after {
 width: 6px;
 height: 6px;
 border-right: 2px solid;
 border-top: 2px solid;
 top: -4px;
}

/*
videoBox -------------------------------------------------------------------------------------------- */
#videoBox {
	width: 400px;
	margin: 0px auto;
	text-align: left;
}
#videoBox caption {
	background-color: #00529E;
	color: #FFF;
	font-weight: bold;
}
#videoBox table {
	border-spacing: 0px;
	border-collapse: collapse;
	margin: 20px auto;
	font-size: 0.9rem;
}
#videoBox th {
	background-color: #666;
	padding: 4px;
	text-align: center;
	color: #FFF;
}
#videoBox td {
	text-align: center;
	border-bottom: #999 solid 1px;
  background: #eee;
}
#videoBox tr:nth-child(odd) td {
	background: #fff;
}
#videoBox .slideNum {
	width: 100px;
}
#videoBox .date {
	width: 250px;
}
