@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  font-size: 1em;
  line-height: 1.8;
  font-family: -apple-system, BlinkMacSystemFont, 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", 'ヒラギノ角ゴ W3', "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: #333;
}
ul {
  padding: 0;
  list-style: none;
}
#td_q1_1, #td_q1_2, #td_q1_3{
  text-align:center;
  width:10%;
}
#td_q1_4{
  width:70%;
}
th,td {
  border: solid 1px;              /* 枠線指定 */
}
table {
  border-collapse:  collapse;     /* セルの線を重ねる */
}
/*-----------------------------------------
  header, footer、特にヘッダーのボタン制御
  ヘッダーボタンの3本線は、iconで描いている。
-----------------------------------------*/
header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
/*  max-width: 1300px; */
  margin: 0 auto;
  /* 上右下左の順だが、３つなので15pxは右左に適用 */
  padding: 20px 15px 20px;
  position: relative;
  z-index: 100;

  background: #ffa100;
}
.header-button {
  display: flex; /* ヘッダーボタンのデフォルトはflexにて表示するになっている */
  position: fixed;
  top: 0;
  right: 0;
  justify-content: center;
  align-items: center;
  border: none;
  width: 75px;
  height: 75px;
  background-color: transparent;
  z-index: 100;
}
.header-button .icon {
  display: block;
  position: relative;
  top: 0;
  /* 上右下左の順だが、2つなので0pxは上下、autoは左右に適用 */
  margin: 0 auto;
  width: 24px;
  height: 2px;
  background-color: #fff; /* 真ん中の線の色 */
  transition: .3s ease;
}

.header-button .icon:before, .header-button .icon:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  transition: all .3s;
  background-color: #fff; /* 上下の線の色 */
}

.header-button .icon:before {
  top: -8px;
}

.header-button .icon:after {
  top: 8px;
}

.header-gnav {
  position: fixed;
  right: 0;
  top: 0;
  text-align: center;
  width: 100%;
  height: 100%;
  background-color: #ffa100;
  transform: translateX(100%);
  transition: .3s ease;
}

.header-gnav ul {
  margin: 0;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.header-gnav li {
  padding: 0.5em 0em;
}
.header-gnav a {
  color: #fff;
  font-size: 1em;
  display: block;
  text-decoration:underline;
}

.open .header-button .icon {
  background-color: transparent;
}

.open .header-button .icon:before, .open .header-button .icon:after {
  top: 0;
}

.open .header-button .icon:before {
  transform: rotate(45deg);
}

.open .header-button .icon:after {
  transform: rotate(-45deg);
}

.open .header-gnav {
  transform: translateX(0);
}

.top .icon {
  background-color: #eee;
}

.top .icon:before, .top .icon:after {
  background-color: #eee;
}

.top.open .icon {
  background-color: transparent;
}

.top.open .icon:before, .top.open .icon:after {
  background-color: #000;
}

/*
#id_footer {
  position: fixed; 
  bottom: 0;
  left: 0;
  width: 100%; 
  padding: 2px;
  background-color:  lightgray;
  color: white;
  text-align: center;
  font-size:0.8em;
}
*/
#id_footer {
	color: gray;
	text-align: center;
	font-size:0.6em;
  }
  
/*---------------------*/
/* add 2024/02/03 */
/*---------------------*/
.s_title {
  font-size: 1em;
  color: #FFFFFF;
  width:350px;
}

.d_main {
  /* 上右下左の順番 */
	margin: 0.1em 0.7em 0.1em 0.7em;
	padding: 0em;
}

#tb1_q_out1 {
	background: white;
	margin: 0px auto 0px;
	/* 上100px, 左右は自動auto, 下16px */
	padding: 10px 5px 10px;
	line-height: 160%;
}
#tb1_q_info, #tb1_q_info2{
  color:gray;
  font-size:0.5em;
  text-align:right;
}

.ktk-button {
	padding: 0.1em 0.5em 0.1em;
	display: inline-block;
	position: relative;
	line-height: normal;
	margin: 0.5em .1em 0em;
	cursor: pointer;
	vertical-align: middle;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
  font-size:0.8em;

	/* Support: IE <= 11 */
	overflow: visible;
}

/*---------------------*/
/* タブレット＆PC画面     */
/*---------------------*/
@media screen and (min-width: 768px) { /* タブレット＆PC画面 */
/*
  header {
    align-items: center;
  }
*/
  /* ヘッダーのボタンを表示しない */
  .header-button {
    display: none;
  }
  .header-gnav {
    margin-right: -0.8em;
    transform: translateX(0);
    position: relative;
    background: none;
  }
  .header-gnav ul {
    flex-direction: row;
    justify-content: flex-end;
  }
  .header-gnav li {
    padding: 0em 0.5em;
  }
}
@media screen and (min-width: 992px) { /* PC画面 */
  body {
    font-size: 1em;
  }
}
