body {
	background-color: #F6F5E6;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
}

.header {
	background-color: #F6F5E6;
}

section {
    text-align: center;
    padding: 10px 20px 40px 20px;
    max-width: 100%;
}

.area {
    width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    display: flex;
    margin-top: 50px;
}

.tab_class {
    width: 200px;
    height: 50px;
    background-color: darkgrey;
    line-height: 50px;
    font-size: 20px;
    text-align: center;
    display: block;
    float: left;
    order: -1;
}

input[name="tab_name"] {
    display: none;
}

input:checked + .tab_class {
    background-color: #FFBC42;
    color: aliceblue;
}

 .tab_lbl1 {
	 border-top-left-radius: 10px;
 }
 
 .tab_lbl2 {
	 border-top-right-radius: 10px;
 }

.content_class {
    display: none;
    width: 100%;
    background-color: #FFFFFF;
    z-index: 1;
}

input:checked + .tab_class + .content_class {
    display: block;
}

.reservation {
    border: 4px solid #FFBC42;
    padding-bottom: 50px;
    border-radius: 0 10px 10px 10px;
}

.title {
	position: relative;
	width: 350px;
	margin: 30px auto 50px auto;
	padding: .5em .7em;
	background-color: #ffbc42;
	color: #fff;
	text-align: center;
}

.title::before, .title::after {
	position: absolute;
	bottom: -10px;
	z-index: -1;
	border-style: solid;
	border-color: #efac32;
	content: '';
}

.title::before {
	left: -30px;
	border-width: 25px 25px 25px 15px;
	border-left-color: transparent;
}

.title::after {
	right: -30px;
	border-width: 25px 15px 25px 25px;
	border-right-color: transparent;
}

.title span::before, .title span::after {
	position: absolute;
	bottom: -10px;
	width: 10px;
	height: 10px;
	background-color: #9f5c00;
	content: '';
}

.title span::before {
	left: 0;
	clip-path: polygon(0 0, 100% 0%, 100% 100%);
}

.title span::after {
	right: 0;
	clip-path: polygon(0 0, 100% 0%, 0% 100%);
}

.reservation div {
	width: 100;
}

.reservation div img {
	width: 30%;
}

.lesson {
	width: 100%;
}

.lesson .shosai {
	display: block;
	position: relative;
	margin: 15px auto;
	padding: 10px 0;
	width: 680px;
	background: #f1f1f1;
	box-shadow: 4px 4px 4px rgba(0,0,0,0.2);
}

.lesson .shosai td {
	padding: 8px 20px;
}

.lesson .name {
	display: inline-block;
	position: relative;
	box-sizing: border-box;
	padding: 5px 0;
	margin: 0 0 0 -20px;
	width: 700px;
	color: #FFFFFF;
	background: #FFA500;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

.lesson .name:before {
	position: absolute;
	content: '';
	top: 100%;
	left: 0;
	border: none;
	border-bottom: solid 15px transparent;
	border-right: solid 20px #452D00;
}

.lesson .name:after {
	position: absolute;
	content: '';
	z-index: 1;
	top: 0;
	right: 0;
	width: 0px;
	height: 0px;
	border-width: 30px 15px 30px 0px;
	border-color: transparent #f1f1f1 transparent transparent;
	border-style: solid;
}

.lesson .name label {
	margin: 0;
	padding: 0 30px 0 15px;
	border-top: dashed 1px #FFF;
	border-bottom: dashed 1px #FFF;
	font-size: 20px;
	line-height: 46px;
}

.lesson .date {
	color: #FFA500;
	font-size: 18px;
}

.lesson .naiyo {
	text-align: left;
	font-size: 16px;
}

.lesson .btn input {
	width: 200px;
	padding: 8px;
	font-size: 18px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	color: #FFFFFF;
	background-color: #FFA500;
	border: none;
	border-radius: 5px;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

.lesson .btn input:hover {
	background-color: #FF8A00;
}

.contact {
    border: 4px solid #FFBC42;
    padding-bottom: 50px;
    border-radius: 0 10px 10px 10px;
}

.contact .qaLink a {
	color: rgb(128, 0, 0);
}

.contact p {
    font-size: 1.2rem;
    margin-top: 80px;
}

.contact img {
    width: 150px;
    margin-bottom: 20px;
}

.contact .input {
    display: block;
    width: 60%;
    margin: 0 auto;
	color: red;
	text-align: left;
}

.contact .name, .contact .address {
    width: 100%;
    height: 25px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
    border: 2px solid rgb(128, 0, 0);
	font-family: "Noto Sans JP", sans-serif;
}

.contact .message {
    width: 100%;
    height: 200px;
    margin: 10px 0;
    border-radius: 5px;
    border-width: 2px;
    border: none;
    border: 2px solid rgb(128, 0, 0);
	font-family: "Noto Sans JP", sans-serif;
}

.contact .send {
	font-size: 20px;
	font-weight: 500;
	padding: 5px 20px;
	color: #FFFFFF;
	background-color: #FFBC42;
	border: none;
	border-radius: 50px;
	font-family: "Noto Sans JP", sans-serif;
}

.contact .send:hover {
	background-color: rgb(255, 200, 98);
}

.dev-txt {
	font-size: 20px;
}

.dev-sns img {
    max-width: 100px;
    padding: 50px 20px 0 20px;
}

.dev-sns .line, .dev-sns .insta {
    transition-duration: .4s;
}
