:root {
	--main-bg-color: #F9F3DF;
	--main-color: #FDFCE5;
	--sub-color: #D7E9F7;
	--accent-color: #F4D19B;
}
  
  body {
	margin: 0;
	padding: 0;
	/*font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Yu Gothic", YuGothic, sans-serif;*/
	background-color: var(--main-bg-color);
}
/* 
** The Header Media Queries **
** Tweak as per your needs **
*/
.brand {
	font-weight: bold;
	font-size: 20px;
}

.site-header {
	position: relative;
	background-color: #def7ff;
}

.site-header a {
	text-decoration: none;
	color: var(--dark);
}

  .site-header__top {
	background-color: #def7ff;
}

.site-header__bottom {
	background-color: var(--accent-color);
}

.wrapper {
	max-width: 1140px;
	padding-left: 1rem;
	padding-right: 1rem;
	margin-left: auto;
	margin-right: auto;
}

.site-header__wrapper {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.site-header__wrapper.bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media (min-width: 600px) {
	.site-header__wrapper.top {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding-top: 0;
		padding-bottom: 0;
	}
}

@media (min-width: 600px) {
	.nav__wrapper {
		display: flex;
	}
}

@media (max-width: 599px) {
	.nav__wrapper {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		z-index: -1;
		background-color: #d9f0f7;
		visibility: hidden;
		opacity: 0;
		transform: translateY(-100%);
		transition: transform 0.3s ease-out, opacity 0.3s ease-out;
	}
	.nav__wrapper.active {
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
	}
}

@media (min-width: 600px) {
	.nav__item:not(:last-child) {
		margin-right: 2rem;
	}
}

@media (max-width: 599px) {
	.nav__item a {
		padding-left: 1rem;
		padding-right: 1rem;
	}
}

.nav__item a {
	display: block;
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}

.nav__toggle {
	display: none;
}

@media (max-width: 599px) {
	.nav__toggle {
		display: block;
		position: absolute;
		right: 1rem;
		top: 1rem;
	}
}
		
.btn-flat-simple {
	position: relative;
	display: inline-block;
	font-weight: bold;
	text-decoration: none;
	color: #ECECEC;
	background: var(--cyan);
	transition: .4s;
}

.btn-flat-simple:hover {
	background: var(--cyan);
	color: white;
}

.btn-flat-simple:not(:disabled):not(.disabled):active, .btn-flat-simple:not(:disabled):not(.disabled).active, .show > .btn-flat-simple.dropdown-toggle {
	background: var(--cyan);
	color: white;
}

.btn-flat-simple:not(:active):not(.active):focus, .btn-flat-simple:not(:active):not(.active).focus {
	color: var(--cyan);
	background-color: #ECECEC;
}

.form-control {
	background-color: #f8f8f8;
	border: none;
}

.form-control:focus {
	background: #e9f5fb;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-control::-webkit-input-placeholder {
	color: #ccc;
	opacity: 1;
}

.form-control::-moz-placeholder {
	color: #ccc;
	opacity: 1;
}

.form-control:-ms-input-placeholder {
	color: #ccc;
	opacity: 1;
}

.form-control::-ms-input-placeholder {
	color: #ccc;
	opacity: 1;
}

.form-control::placeholder {
	color: #ccc;
	opacity: 1;
}

/*
.siblings-table {
	max-width: 400px;
}
*/


.was-validated .form-control:invalid, .form-control.is-invalid {
	background-color: #f8d7da;
}


/* input type=number矢印非表示 Chrome, Safari, Edge */
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
	margin: 0;
	-webkit-appearance: none;
}
/* Firefox */
input[type=number] {
	-moz-appearance: textfield;
}


.renban {
	counter-reset:num; /*数字をリセット*/
	list-style-type: none;
	padding:0.5em;
}
.renban li {
	position: relative;
	padding-left: 25px;
	/*padding: 0.5em 0.5em 0.5em 30px;*/
}
.renban li::before {
	position: absolute;
	counter-increment: num;
	content: counter(num);
	display:inline-block;
	background:transparent;
	border:#555 1px solid;
	color: #555;
	font-family: 'Arial',sans-serif;
	font-weight:bold;
	font-size: 13px;
	border-radius: 50%;
	left: 0;
	width: 20px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	top: 2px;
}

	

.question {
	margin-left: 2rem;
	margin-top: 0.3rem;
}
/*
.table tr th.require:after {
    display: inline-block;
    content: '必須 Required';
    margin-left: 10px;
    font-size: 11px;
    font-size: .6875rem;
    color: #c41d1d;
    line-height: 14px;
    vertical-align: middle;
}
*/
.ptitle {
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	margin: 30px auto 20px;
}
table {
	width: 100%;
	margin: 20px auto;
  }
  .tbl-responsive th {
	width: 35%;
	background:  var(--main-color);
	border: solid 3px #ffffff;
	padding: 10px;
  }
  .tbl-responsive td {
	width: 65%;
	padding: 10px;
  }

@media screen and (max-width: 640px) {
	.last td:last-child {
		border-bottom: solid 1px #ccc;
		width: 100%;
	}
	.tbl-responsive {
		width: 100%;
	}
	.tbl-responsive th,
	.tbl-responsive td {
		border-bottom: none;
		display: block;
		width: 100%;
	}
}

ul {
	list-style:none;
	padding-left:0px;  
	margin: auto;
}

.require li:first-child:after{
    display: inline-block;
    content: '\5fc5\9808';	/*必須*/
    margin-left: 10px;
    font-size: 11px;
    font-size: .6875rem;
    color: var(--danger);
    line-height: 14px;
    vertical-align: middle;

  }
/*
  .require li:last-child:after{
    display: inline-block;
    content: 'Required';
    margin-left: 10px;
    font-size: 11px;
    font-size: .6875rem;
    color: #c41d1d;
    line-height: 14px;
    vertical-align: middle;
  }
*/
  /*
  input[type=checkbox] {
    display: none;
}
.checkbox02 {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 30px;
    position: relative;
    width: auto;
}
.checkbox02::before {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}
.checkbox02::after {
	background: #00cccc;
    /*border-right: 6px solid #00cccc;
    border-bottom: 3px solid #00cccc;
    content: '';
    display: block;
    height: 8px;
    left: 7px;
    margin-top: -4px;
    opacity: 0;
    position: absolute;
    top: 50%;
    /*transform: rotate(45deg);
    width: 9px;
}
input[type=checkbox]:checked + .checkbox02::before {
    border-color: #666;
}
input[type=checkbox]:checked + .checkbox02::after {
    opacity: 1;
}
*/
/* ラジオボタン02 */
/*
input[type=radio] {
    display: none;
}
.radio02 {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 30px;
    position: relative;
    width: auto;
}
.radio02::before {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}
.radio02::after {
    background: #00cccc;
    border-radius: 50%;
    content: '';
    display: block;
    height: 8px;
    left: 9px;
    margin-top: -4px;
    opacity: 0;
    position: absolute;
    top: 50%;
    width: 8px;
}
input[type=radio]:checked + .radio02::before {
    border-color: #666;
}
input[type=radio]:checked + .radio02::after {
    opacity: 1;
}
*/

.control {
	display: block;
	position: relative;
	padding-left: 22px;
	margin-bottom: 15px;
	margin-right: 30px;
	cursor: pointer;
  }
  .control input {
	position: absolute;
	z-index: -1;
	opacity: 0;
  }
  .control__indicator {
	position: absolute;
	top: 2px;
	left: 0;
	height: 18px;
	width: 18px;
	background: #e6e6e6;
  }
  .control--radio .control__indicator {
	border-radius: 50%;
  }
  .control:hover input ~ .control__indicator,
  .control input:focus ~ .control__indicator {
	background: #ccc;
  }
  .control input:checked ~ .control__indicator {
	background: var(--cyan);
  }
  .control:hover input:not([disabled]):checked ~ .control__indicator,
  .control input:checked:focus ~ .control__indicator {
	background: var(--cyan);
  }
  .control input:disabled ~ .control__indicator {
	background: #e6e6e6;
	opacity: 0.6;
	pointer-events: none;
  }
  .control__indicator:after {
	content: '';
	position: absolute;
	display: none;
  }
  .control input:checked ~ .control__indicator:after {
	display: block;
  }
  .control--checkbox .control__indicator:after {
	left: 7px;
	top: 3px;
	width: 5px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
  }
  .control--checkbox input:disabled ~ .control__indicator:after {
	border-color: #7b7b7b;
  }
  .control--radio .control__indicator:after {
	left: 6px;
	top: 6px;
	height: 6px;
	width: 6px;
	border-radius: 50%;
	background: #fff;
  }
  .control--radio input:disabled ~ .control__indicator:after {
	background: #7b7b7b;
  }

  .siblings-table th {
	background-color: #f0f8ff;
}

  .siblings-table td {
	vertical-align: middle;
	padding: 2px;
}



 .accordion-title {
	position: relative;
	margin: 0;
	padding: 0.625em 0.625em 0.625em 2em;
	background-color: #ffefd5;
	font-size: 1.25em;
	font-weight: normal;
	cursor: pointer;
}

/*
.accordion-title:hover,
.accordion-title:active,
.accordion-title.open { 
	background-color: #00aaa7;
}
*/
  
.accordion-title::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 25px;
	width: 15px;
	height: 2px;
	/*縦線に*/
	background-color: #7b7b7b;
	transform: rotate(90deg);
	transition: all .3s ease-in-out;
  }
  
 .accordion-title::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 25px;
	/*横線*/
	width: 15px;
	height: 2px;
	background-color: #7b7b7b;
	transition: all .2s ease-in-out;
  }
  
 .accordion-title.open::before {
	transform: rotate(180deg);
  }
  
 .accordion-title.open::after {
	opacity: 0;
  }

/* ローディング画面 */
#loading {
	width: 100vw;
	height: 100vh;
	transition: all 1s;
	background-color: #ffdab9;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
  }
  .spinner {
	width: 100px;
	height: 100px;
	margin: 200px auto;
	background-color: #fff;
	border-radius: 100%;
	animation: sk-scaleout 1.0s infinite ease-in-out;
  }
  /* ローディングアニメーション */
  @keyframes sk-scaleout {
	0% {
	  transform: scale(0);
	} 100% {
	  transform: scale(1.0);
	  opacity: 0;
	}
  }
  .loaded {
	opacity: 0;
	visibility: hidden;
  }