@charset "utf-8";

/*-----------------------
   Contents
------------------------*/
#contents h1 span {
	color: white;
	font-size: 1rem;
	display: inline-block;
}

.robots {
	margin: 50px 50px;
	display: flex;
	align-items: center;
	column-gap: 1rem;
}

.robots dd {
	font-size: 0.95rem;
	color: black;
}

/*-----------------------
   TabIndex
-------------------------*/
#tabIndex {
	padding-top: 3%;
}

.tab-group{
    display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-left: 0;
	margin-left: 15px;
}

.tab{
	width: 40%;
	text-align: center;
    padding: 15px 20px;
	margin-left: 5px;
    list-style: none;
    border: solid 2px black;
	color: black;
	border-radius: 8px 8px 0 0;
    cursor:pointer;
}

.panel {
    display:none;
}

.tab.is-active {
	background: rgb(202,252,95);
	background: -moz-linear-gradient(top,  rgba(202,252,95,1) 0%, rgba(232,232,232,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(202,252,95,1) 0%,rgba(232,232,232,1) 100%);
	background: linear-gradient(to bottom,  rgba(202,252,95,1) 0%,rgba(232,232,232,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cafc5f', endColorstr='#e8e8e8',GradientType=0 );



	border-bottom: none;
    transition: all 0.2s ease-out;
}

.panel.is-show{
    display: block;
}

/*-----------------------
   background
-------------------------*/
.panel-group {
	padding-top: 30px;
	border-top: 2px solid black;
	margin-top: -2px;
}



/* formContents */
#formContents {
	margin: 50px;
	color: black;
	font-size: 0.95rem;
	line-height: 1.5;
}

#formContents h2 {
	font-size: 105%;
	margin-bottom: 2%;
	color: whitesmoke;
	background-color: seagreen;
	height: 28px;
	line-height: 28px;
	padding-left: 15px;
}

#formContents h3 {
	font-size: 100%;
	margin-bottom: 2%;
	color: whitesmoke;
	background-color: #222;
	height: 23px;
	line-height: 23px;
	padding-left: 15px;
}

#formContents h4,
#formContents h5 {
	font-size: 100%;
	margin-bottom: 2%;
	color: black;
}

#formContents a {
	color: dodgerblue;
	text-decoration: none;
}

#formContents a:hover {
	text-decoration: underline;
}

.section {
	margin-bottom: 4%;
}

.sectionEnd {
	padding-bottom: 4%;
}

.first {
	margin-top: 4%;
}

hr {
	color: lightgray;
	margin: 30px 0;
}

input,
select {
	border-radius: 3px;
	border: 1px solid #999;
	padding: 4px 10px;
	font-size: 105%;
}

input[type="text"] {
	width: 72%;
	margin-top: 5px;
	background-color: white;
}

textarea {
	background-color: white;
	border-radius: 3px;
	border: 1px solid #999;
}

.required {
	color: white;
	background-color: #C94042;
	border-radius: 3px;
	padding: 1px 5px 0;
}

.optional {
	color: white;
	background-color: dimgray;
	border-radius: 3px;
	padding: 1px 5px 0;
}

.has-danger {
	background: url(../../common/images/check_failure.png) no-repeat right;
}

.errorMessage {
	color: #d85959;
	margin: 0.5em 0 0 30px;
}

.errorMessage:before {
	content: "※ ";
}

.box1 {
	padding-left: 15px;
	padding-right: 15px;
}

@media only screen and (max-width: 1023px) {

}


