@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: #fdeed1;
	margin: 0px;
	padding: 0px;
	font-feature-settings: "palt" 1;
	word-wrap: break-word;
}
/* 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: 900px;
	margin: 0px auto;
	background-color: #FFF;
	box-shadow: 0 0px 10px 0px rgba(0,0,0,0.5);
}
@media screen and (max-width: 900px) {
	/* 900px以下に適用されるCSS（タブレット用） */
	#container {
		width: 100%;
		margin: 0px;
		background-color: #FFF;
		box-shadow: 0 0px 0px 0px rgba(0,0,0,0);
	}
}

h2 {
	clear: both;
	font-size: 1.6rem;
	font-weight: 800;
	margin-bottom: 10px;
  background: #FFFFFF;
  background-image: -webkit-linear-gradient(top, #E4E4E4, #FFFFFF);
  background-image: -moz-linear-gradient(top, #E4E4E4, #FFFFFF);
  background-image: -ms-linear-gradient(top, #E4E4E4, #FFFFFF);
  background-image: -o-linear-gradient(top, #E4E4E4, #FFFFFF);
  background-image: linear-gradient(to bottom, #E4E4E4, #FFFFFF);
  padding: 20px 16px 20px 36px;
  position: relative;
}
h2::after {
  content:  "";     /* 空の要素作成 */
  width: 4px;                /* 幅指定 */
  height: 50px;               /* 高さ指定 */
  display: block;    /* インラインブロックにする */
  background-color: #C65238;  /* 背景色指定 */
  position: absolute;        /* 位置調整 */
  top: 14px;                   /* 位置指定 */
  left: 20px;
  margin-right: 20px;          /* 余白指定 */
}
.h2sub {
  font-size: 0.9rem;
}

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: #C65238;  /* 背景色指定 */
  position: absolute;        /* 位置調整 */
  top: 10px;                   /* 位置指定 */
  left: 10px;
  border-radius:  25%;        /* 要素を丸くする */
  margin-right: 20px;          /* 余白指定 */
}
h4 {
	font-size: 0.8rem;
	line-height: 1.2;
	background-color: #C65238;
	margin: -6px 0px 6px 0px;
	padding: 4px 10px;
	color: #FFF;
}
h5 {
	display: flex;
	font-size: 1rem;
	color: #FFFFFF;
	background-color: #C65238;
	margin: 0px 0px 6px 0px;
	padding: 4px 10px;
}
.time {
	font-size: 0.8rem;
	font-weight: 500;
	margin-left: auto;
}
h6 {
	display: flex;
	font-size: 0.9rem;
	line-height: 1.2;
  border-left: 4px solid #C65238;
	background-color: #F0F0F0;
	margin: -6px 0px 6px 0px;
	padding: 4px 10px;
}
p {
	font-size: 0.9rem;
	margin: 0px 20px 10px 20px;
}
p.selftext {
	font-size: 1rem;
	font-weight: 600;
}
.alert {
	font-weight: 600;
	color: #cc0000;
}
.clear {
	font-weight: 600;
	color: #00cc00;
}
.qa_area{
	text-align: right;
  margin-bottom: 10px;
}
.noOndemand {
	display: flex;
	justify-content: center;
	align-items: center;
  white-space: nowrap;
	width: auto;
  height: 18px;
	font-size: 0.8rem;
	font-weight: 500;
	color: #CC0000;
	border: #CC0000 solid 1px;
	padding: 4px;
}
.noOndemand2 {
	font-size: 0.8rem;
	font-weight: 500;
	color: #CC0000;
	border: #CC0000 solid 1px;
	padding: 4px;
}

/*
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: #444444;
}
.btn_gray:hover, .btn_gray:active {
	color: #444444;
	background-color: #FFF;
	border: 1px solid #444444;
}

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


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

.play_btn {
	
}


/*
page-top -------------------------------------------------------------------------------------------- */
.pagetop {
	text-align: right;
	margin: -6px 0px 20px 0px;
}
.pagetop img {
	border: none;
}

/*
header -------------------------------------------------------------------------------------------- */
#header {
	width: 100%;
	margin: 0px;
	line-height: 0em;
	background-color: #f6ac19;
}
h1 {
	padding: 0px;
	background: linear-gradient(to bottom right, #E38A2C, #C64C37);
	border-bottom: 4px solid #f6ac19;
}
h1 img {
	width: auto;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 680px) {
	/* 680px以下に適用されるCSS（タブレット用） */
	h1 img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}



/*
middle -------------------------------------------------------------------------------------------- */
#middle {
	display: flex;
	width: 100%;
  background-color: #F0F0F0;
}
@media screen and (max-width: 959px) {
	/* 959px以下に適用されるCSS（タブレット用） */
	/*#middle {
		flex-direction: column;
	}*/
}

/*
rightbox -------------------------------------------------------------------------------------------- */
#rightbox {
	width: 670px;
  background-color: #FFF;
}
@media screen and (max-width: 900px) {
	/* 810px以下に適用されるCSS（タブレット用） */
	#rightbox {
		width: 100%;
	}
}


/*
contents -------------------------------------------------------------------------------------------- */
#contents {
	margin: 0px 20px 0px 20px;
  background-color: #FFF;
}
@media screen and (max-width: 900px) {
	/* 900px以下に適用されるCSS（タブレット用） */
	#contents {
		margin: 0px 10px;
	}
}
#indeximg {
	position: relative;
	height: auto;
	margin: 0px;
}
#indeximg img {
	width:100%;
	max-width: 100%;
	height: auto;
	margin: 0px;
}
ul.annai {
	margin:0px 20px 20px 20px;
}
ul.annai li {
	font-size: 0.9rem;
	margin: 0px 0px 10px 10px;
}

ol.annai {
  list-style: none;
	margin:0px 20px 20px 0px;
}
ol.annai li {
	font-size: 0.9rem;
	margin: 0px 0px 10px 0px;
  text-indent: -1rem;
}

.indexbox {
	margin-bottom: 10px;
}

.speakerArea {
	margin: 0px 10px 6px 10px;
}
.zachou {
  display: flex;
  justify-content: flex-end;
	margin: 0px 0px 4px 10px;
  font-size: 0.9rem;
}
.titleText {
	font-size: 1rem;
	font-weight: 600;
	margin: 0px 0px 4px 0px;
}
.enjya {
  display: flex;
	margin: 0px 0px 6px 0.9rem;
  font-size: 0.9rem;
}
.role {
  white-space: nowrap;
}
.person {
	display: inline-block;
}
.nameText {
	font-weight: bold;
}

.pbtn {
	font-size: 0.9rem;
  margin: 0px 0px 4px 10px;
  color: #e60012;
}
.pbtn i {
	vertical-align: middle;
}
.kyousai {
  text-align: right;
  margin-right: -10px;
}

.naiyou {
	border-spacing: 0px;
	border-collapse: collapse;
	font-size: 0.9rem;
  margin: -10px 0px 6px 0px;
}
.naiyou td {
	text-align: center;
	border: #999 solid 1px;
}
.endaiText{
	margin-left: 10px;
}
.playBtn {
	display: flex;
	justify-content: space-between;
	margin: 6px 0px;
}
.playBtn2 {
	display: flex;
	margin: 6px 0px 12px 0px;
}
.endai {
	display: flex;
	margin: 6px 0px;
}
.pdfBtn {
	white-space: nowrap;
}
.waiting {
	font-size: 0.8rem;
	border: solid #333 1px;
	padding: 4px;
}
.doutu {
	display: flex;
	text-align: center;
	font-size: 0.8rem;
	color: #cc0000;
	font-weight: bold;
}
.doutu02 {
	display: flex;
	justify-content: flex-end;
	text-align: center;
	font-size: 0.8rem;
	color: #cc0000;
	font-weight: bold;
}
.originalBtn {
  line-height: 0;
	margin-bottom: 10px;
	margin-right: 10px;
}
.doutuBtn {
  line-height: 0;
	margin-bottom: 6px;
}
.viewed {
  text-align: center;
  color: #cc0000;
  font-weight: bold;
  line-height: 0;
}
.viewedAttn {
	text-align: center;
}
.viewedNum {
	font-family: Arial;
	font-size: 2rem;
	text-align: center;
	line-height: 2rem;
	font-weight: 800;
	color: #ee4444;
	text-shadow: 1.4px 1.4px 1px rgba(0,0,0,0.5);
}
/*
navi -------------------------------------------------------------------------------------------- */
#navi {
	display: flex;
	flex-direction: column;
	width: 230px;
	background-color: #F0F0F0;
}
#member {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 6px;
}
.nittei {
	margin: 0px auto 6px auto;
}
.banner {
	margin: 10px auto 10px auto;
}
ul#menu, ul#menu * {
	font-size: 0.9rem;
	line-height: 1.2;
	font-weight: 600;
	margin:0; padding:0;
	list-style:none;
}
ul#menu li {
	margin: 0;
	padding: 0;
	text-align: left;
}
ul#menu li#select {
	background-color: #C65238;
}
ul#menu li#select a {
	color:#FFF;
	text-decoration:none;
}
ul#menu li#select a:hover {
	color:#000000;
	text-decoration:none;
}
ul#menu a:hover {
	color:#000000;
	background-color: #fdeed1;
	text-decoration:none;
}
ul#menu a {
	display: block;
	padding: 8px 10px 8px 16px;
	margin: 0px 10px;
	color: #333333;
	text-decoration: none;
	border-bottom: #333333 dashed 1px;
	position: relative;
}
ul#menu a::after {
  content: ""; /* 空の要素作成 */
  width: 4px; /* 幅指定 */
  height: 18px; /* 高さ指定 */
  display: block; /* インラインブロックにする */
  background-color: #C65238; /* 背景色指定 */
  position: absolute; /* 位置調整 */
  top: 7px; /* 位置指定 */
  left: 6px;
  margin-right: 10px; /* 余白指定 */
}
ul#menu .subnavi {
	border-bottom: #333333 dashed 1px;
}
ul#menu .subnavi a {
	display: block;
	padding: 4px 10px 4px 26px;
	margin: 0px 10px;
	color: #333333;
	text-decoration: none;
	border: none;
	position: relative;
	text-indent: -1.2rem;
}
ul#menu .subnavi a::after {
  content: none;
}
ul#menu .subnavi a:hover {
	color:#C65238;
	background-color: transparent;
}

ul#menu .subnavi p {
	display: block;
	padding: 4px 10px 4px 26px;
	margin: 0px 10px;
	color: #cc0000;
	text-decoration: none;
	border: none;
	position: relative;
	text-indent: -1.2rem;
}
.memu-arrow-right-r {
	box-sizing: border-box;
	position: relative;
	display: inline-block;
	transform: scale(var(--ggs,1));
	width: 14px;
	height: 14px;
	background: currentColor;
	border-radius: 2px;
 	top: 2px;
}

.memu-arrow-right-r::before {
 content: "";
 display: block;
 box-sizing: border-box;
 position: absolute;
 width: 0;
 height: 5px;
 border-top: 4px solid transparent;
 border-bottom: 4px solid transparent;
 border-left: 5px solid #F0F0F0;
 top: 3px;
 left: 5px
} 

@media screen and (max-width: 900px) {
	/* 900px以下に適用されるCSS（タブレット用） */
	/*#navi {
		width: 100%;
	}
	#member {
		flex-direction: row;
	}*/
	.js-hiraku-offcanvas-body-right .js-hiraku-header-fixed {
			margin-left: -230px;
	}

	.js-hiraku-offcanvas-body-left .js-hiraku-header-fixed {
			margin-left: 230px;
	}

	.js-hiraku-offcanvas .js-hiraku-offcanvas-sidebar-left {
			margin-left: -230px;
	}

	.js-hiraku-offcanvas .js-hiraku-offcanvas-sidebar-right {
			margin-right: 230px;
	}

	.js-hiraku-offcanvas .js-hiraku-offcanvas-sidebar {
			width: 230px;
	}

	.js-hiraku-offcanvas-body-left {
			left: 230px;
	}

	.js-hiraku-offcanvas-body-right {
			right: 230px;
	}
}

.hiraku-open-btn {
	display: inline-block;
	margin: 6px 4px 10px 10px;
	border-color: #000000;
}
.hiraku-open-btn-line {
	background-color: #000;
}
.hiraku-open-btn-line:before,
.hiraku-open-btn-line:after {
	background-color: #000;
}
.hiraku-memu {
	color: #000000;
	font-size: 0.9rem;
}
@media screen and (min-width: 900px) {
	/* 900px以上に適用されるCSS */
	.hiraku-open-btn,
	.hiraku-memu {
		display: none;
	}
}

.child {
    display: none;
}

/*
footer -------------------------------------------------------------------------------------------- */
#footer {
	background-color: #C65238;
	border-top: #f6ac19 solid 4px;
}
#footer p {
	text-align: center;
	margin: 0px;
	padding: 10px 0px 10px 0px;
	color: #FFFF;
}


/*
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: 900px) {
	/* 900px以下に適用される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: 100%;
	height: 150px;
	padding: 1rem;
	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;
	
}

.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;
	margin-bottom: 20px;
}
@media screen and (min-width: 400px) {
	/* 400px以上に適用されるCSS */
	.closeBtn {
		display: none;
	}
}

#qaform {
	background-color: #FFFFFF;
	padding: 20px;
	margin: 10px 10px;
	border-radius: 5px;
	box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 8px 0 rgba(0, 0, 0, 0.12);
}
.qaTextBox {
	background-color: #FFFFFF;
	padding: 20px;
	margin: 10px 10px;
	border-radius: 5px;
	box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 8px 0 rgba(0, 0, 0, 0.12);
}
.qaTextBox h6 {
	display: flex;
	font-size: 0.8rem;
	line-height: 1.2;
	color: #FFFFFF;
	background-color: #040d26;
	margin: 0px 0px 6px 0px;
	padding: 4px 10px;
}
.qaTextBox02 {
	background-color: #FFFFFF;
	padding: 20px;
	margin: 10px 10px;
	border-radius: 5px;
	box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 8px 0 rgba(0, 0, 0, 0.12);
}
.qaTextBox02 h6 {
	display: flex;
	font-size: 1rem;
	line-height: 1.2;
	color: #FFFFFF;
	background-color: #040d26;
	margin: 0px 0px 6px 0px;
	padding: 4px 10px;
}
.qaTextBox02 p {
	font-size: 1.2rem;
}
#listbox {
	overflow: hidden;
	width: 90%;
	margin: 0.4em auto;
	text-align: center;
	position: relative;
}
#listbox select {
	width: 100%;
	padding-right: 1em;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border-radius: 2px;
	border: 1px solid #666666;
  background-color: #333;
	-webkit-appearance: none;
	appearance: none;
	padding: 8px 38px 8px 8px;
	color: #F0F0F0;
  font-size: 14px;
}
#listbox select::-ms-expand {
    display: none;
}
#listbox::before {
	position: absolute;
	top: 0.8em;
	right: 0.8em;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #F0F0F0;
	pointer-events: none;
}
#listbox option {
  background-color: #333;
  color: #F0F0F0;
}

#listbox02 {
	overflow: hidden;
	width: 90%;
	margin: 10px auto;
	text-align: center;
	position: relative;
}
#listbox02 select {
	width: 100%;
	padding-right: 1em;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border-radius: 2px;
	border: 1px solid #666666;
  background-color: #333;
	-webkit-appearance: none;
	appearance: none;
	padding: 10px 30px 10px 16px;
	color: #F0F0F0;
  font-size: 1.5rem;
	text-align: center;
}
#listbox02 select::-ms-expand {
  display: none;
}
#listbox02::before {
	position: absolute;
	top: 20px;
	right: 10px;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #F0F0F0;
	pointer-events: none;
}
#listbox02 option {
  background-color: #333;
  color: #F0F0F0;
}

.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-chevron-down-r {
 box-sizing: border-box;
 position: relative;
 display: inline-block;
 transform: scale(var(--ggs,1));
 width: 20px;
 height: 20px;
 border: 2px solid;
 border-radius: 4px
}

.gg-chevron-down-r::after {
 content: "";
 display: block;
 box-sizing: border-box;
 position: absolute;
 width: 6px;
 height: 6px;
 border-bottom: 2px solid;
 border-right: 2px solid;
 transform: rotate(45deg);
 left: 5px;
 top: 4px
} 

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