@charset "utf-8";
/* CSS Document */

@media screen and (max-width: 959px) {
	/* 959px以下に適用されるCSS（タブレット用） */
	
body {
	width: 100%;
	overflow-x: hidden;
    font-size: 85.5%;
	line-height: 1.8rem;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
}	
	
p {
	font-size: clamp(0.6rem, calc(0.8rem + 0.625vw), 1.8rem);
}
	
.main {
display: flex;
	flex-flow: column nowrap;
	justify-content: center;

}	
	
.side-contents {
    position: relative;
    display: flex;
    flex-flow: column nowrap;
	background-image: none;
	
}
	
	
	
.side-menu {
    width: 100%;
    height: 90px;
    background-color: rgba(51,51,51,0.71);
    background-image: none;
    display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: center;
	padding-bottom: 90px;
	z-index: 2;
	
	
}
	
	.title {
	padding-left: 50px;
	padding-right: 0px;
	width: 300px;
	}
	
	.side-list {
		display: none;
	}
	

.main-contents {
    width: 100%;
    background-color: rgba(19,19,19,1.00);	
}

.side-margin {
    width: 0%;
	display: none;
}	
	
.form-label {
    display: flex;
    align-items: center;
	justify-content: space-between;
    width: 150px;
    font-size: 12px;
	margin-right: 15px;
}

.contents-1 {
	padding: 15px;
    line-height: 1.8rem;
}
	
.form-row {
		display: flex;
		flex-flow: column wrap;
	}
	
.form-label {
    display: flex;
    align-items: center;
	justify-content: space-between;
    width: 100%;
    font-size: 18px;
	margin-right: 0px;
	padding-left: 5px;
	padding-right: 5px;
}	

input, textarea {
  background-color: #f2f4f5;
  border: none;
  border-radius: 3px;
  padding: 15px 20px;
  font-size: 12px;
  color: #333;
  flex-grow: 1;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}

select {
  background-color: #f2f4f5;
  border: none;
  border-radius: 3px;
  padding: 15px 20px;
  font-size: 12px;
  color: #333;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}	
	
#pagetop {
  position: fixed;
  right: 15px;
	}
	
}
