@charset "UTF-8";
/* CSS Document */

#seminar {
	margin: 0 auto;
	font-size: 15px;
	letter-spacing: 0.1em;
	line-height: 1.8;
	text-align: center;
	color: #514139;
	background: #fff;
}
#seminar * {
	box-sizing: border-box;
}
#seminar img {
	max-width: 100%;
	height: auto;
}
main {
	display: block;
}
#seminar a {
	text-decoration: none;
	transition: 0.2s ease-in;
}
#seminar a:link,
#seminar a:visited,
#seminar a:hover,
#seminar a:active {
	color: inherit;
	text-decoration: none;
}
#seminar a:hover {
	opacity: 0.5;
}
#seminar .bold {
	font-weight: bold;
}
#seminar .small {
	font-size: 80%;
}
#seminar h2 {
	margin-bottom: 40px;
}
#seminar section {
	margin: 120px auto;
	padding: 0 10px;
}
#seminar > main > p:first-of-type {
	position: relative;
	max-width: 300px;
	margin: 0 auto;
	padding: 30px 0;
	font-size: 17px;
	font-weight: bold;
	border: 2px solid #514139;
	border-radius: 20px;
}
#seminar > main > p:first-of-type::before {
	position: absolute;
	left: calc(50% - 25px);
	bottom: -20px;
	display: block;
	content:"";
	width:0;
	height:0;
	border-style:solid;
	border-width: 20px 25px 0 25px;
	border-color: #514139 transparent transparent transparent;
}
#seminar > main > p:first-of-type::after {
	position: absolute;
	left: calc(50% - 25px);
	bottom: -17px;
	display: block;
	content:"";
	width:0;
	height:0;
	border-style:solid;
	border-width: 20px 25px 0 25px;
	border-color: #fff transparent transparent transparent;
}
/*お悩み*/
#seminar .worry {
	position: relative;
	margin-bottom: 0;
	background: linear-gradient(#fff 0%,#E7DECB 100%);
}
#seminar .worry .section_inner {
	padding-bottom: 150px;
	background: url("../img/bg_worry.png") no-repeat right bottom;
	background-size: 151px;
}
#seminar .worry h3 {
	margin-bottom: 40px;
	font-size: 18px;
	font-weight: bold;
}
#seminar .worry ul {
	max-width: 270px;
	margin: 0 auto;
}
#seminar .worry li {
	margin-bottom: 10px;
	padding-left: 30px;
	text-align: left;
	background: url(../img/ico_check.png) no-repeat left center;
}
#seminar .worry .section_inner > p {
	position: absolute;
	z-index: 1;
	left: calc(50% - 100px);
	bottom: -50px;
	width: 200px;
	font-size: 18px;
	font-weight: bold;
}
#seminar .worry .section_inner > p::after {
	position: absolute;
	z-index: -1;
	bottom: -45px;
	left: calc(50% - 145px);
	content: "";
	width:0;
	height:0;
	border-style:solid;
	border-width: 96px 145px 0 145px;
	border-color: #E7DECB transparent transparent transparent;
}
/*CTA*/
#seminar .cta {
	margin-top: 0;
	padding-top: 120px;
	padding-bottom: 20px;
	background: linear-gradient(#FFFAF5 0%, #FFF0EB 100%);
}
#seminar .cta p:nth-of-type(1) {
	display: inline-block;
	margin-bottom: 20px;
	font-size: 17px;
	font-weight: bold;
	background: linear-gradient(rgba(255,255,255,0) 70%, #FFF4A6 70%);
}
#seminar .cta p:nth-of-type(1)::before {
	content: "\0ff3c";
	margin-right: 5px;
}
#seminar .cta p:nth-of-type(1)::after {
	content: "\0ff0f";
	margin-left: 5px;
}
#seminar .cta p:nth-of-type(2) {
	margin-bottom: 40px;
	font-size: 16px;
	font-weight: bold;
}
#seminar .cta h3 {
	margin-bottom: 40px;
	font-size: 18px;
	font-weight: bold;
	color: #FF8939;
}
#seminar .cta dl {
	display: flex;
	flex-wrap: wrap;
	max-width: 450px;
	margin: 0 auto;
}
#seminar .cta dt {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100px;
	margin-bottom: 10px;
	font-weight: bold;
	color: #fff;
	background: #FF8939;
}
#seminar .cta dd{
	width: calc(100% - 100px);
	margin-bottom: 10px;
	padding-left: 20px;
	text-align: left;
	border-bottom: 2px solid #FF8939;
}
#seminar .cta .btn_form a {
	display: block;
	max-width: 350px;
	margin: 40px auto;
	padding: 15px;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	background: #FF4848;
	border-radius: 20px;
}
#seminar .cta .btn_form a::after {
	display: inline-block;
	margin-left: 10px;
	content: "";
	width:0;
	height:0;
	border-style:solid;
	border-width: 6px 0 6px 8px;
	border-color: transparent transparent transparent #FFFFFF;
}
/*概要*/
#seminar .overview {
	position: relative;
	max-width: 600px;
	margin: 0 10px;
	padding: 20px 0;
	background: #FFF9F3;
}
#seminar .overview h3 {
	display: inline-block;
	margin: 0 auto;
	padding-bottom: 20px;
	font-weight: bold;
	border-bottom: 3px solid #fff;
}
#seminar .overview p {
	margin: 30px auto;
}

/*セミナー内容*/
#seminar .content h3 {
	position: relative;
	margin-bottom: 40px;
	font-size: 17px;
	font-weight: bold;
}
#seminar .content h3::before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
  background: #514139;
}
#seminar .content h3 span {
  position: relative;
  padding: 0 2em;
  background: #fff;
}
#seminar .content ul {
	max-width: 180px;
	margin: 0 auto;
}
#seminar .content li {
	text-align: left;
}
#seminar .content li::before {
	content:"\025a0";	
}
/*講師紹介*/
#seminar .teacher h3 {
	position: relative;
	margin-bottom: 40px;
	font-size: 17px;
	font-weight: bold;
}
#seminar .teacher h3::before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
  background: #514139;
}
#seminar .teacher h3 span {
  position: relative;
  padding: 0 2em;
  background: #fff;
}
#seminar .teacher dl {
	margin: 20px auto 40px auto;
}
#seminar .teacher dt {
	margin-bottom: 10px;
}
#seminar .teacher dd {
	font-size: 14px;
}
#seminar .teacher .section_inner > p {
	margin-bottom: 20px;
	text-align: justify;
}
#seminar .teacher .section_inner > p span {
	font-weight: bold;
	background: linear-gradient(rgba(255,255,255,0) 70%, #FFF4A6 70%);
}
/*CTA2*/
#seminar .cta:last-of-type {
	padding-top: 40px;
	padding-bottom: 120px;
	margin-bottom: 0;
}
#seminar .cta:last-of-type .section_inner > p:nth-of-type(3) {
	margin-bottom: 40px;
}
/*フォーム*/
html {
	scroll-behavior: smooth;
}
.contact-form {
	margin-top: 0px;
	max-width: 700px;
}
.contact-form h3 {
	display: inline-block;
	margin: 0px auto 40px;
	padding: 10px 40px;
	font-size: 18px;
	font-weight: bold;
	color: #BC8546;
	border-bottom: 1px solid #BC8546;
}
.contact-form #input-area th {
	font-size: 15px;
	font-weight: normal;
	text-align: center;
	vertical-align: top;
	padding: 30px 10px;
}

.contact-form #input-area td {
	font-size: 15px;
	font-weight: normal;
	text-align: left;
	vertical-align: top;
	padding: 10px 10px;
}

.contact-form .required-mark {
    float: right;
    background: #b5272e;
    padding: 0 0.5rem;
    border-radius: 5px;
    color: #ffffff;
    font-size: 13px;
    font-weight: normal;
    line-height: 2;
    letter-spacing: 0.1rem;
    margin-left: 10px;
}

.contact-form .no-required-mark {
    float: right;
    background: #6F635E;
    padding: 0 0.5rem;
    border-radius: 5px;
    color: #ffffff;
    font-size: 13px;
    font-weight: normal;
    line-height: 2;
    letter-spacing: 0.1rem;
    margin-left: 10px;
}

.contact-form input {
	background: #e2e2e3;
	padding: 10px 10px;
	border: none;
	font-size: 15px;
	margin-top: 15px;
}

.contact-form select {
	background: #e2e2e3;
	padding: 10px 10px;
	border: none;
	font-size: 15px;
	margin-top: 15px;
}

.contact-form textarea {
	background: #e2e2e3;
	padding: 10px 10px;
	border: none;
	font-size: 15px;
	margin-top: 15px;
}

.contact-form .note {
	font-size: 13px;
}

.contact-form .err-msg {
	display: block;
	color: #b5272e;
	font-size: 13px;
}

.contact-form #user_store_name {
	width: 400px;
}

.contact-form #user_tel {
	width: 200px;
}

.contact-form #user_tel_day {
	width: 200px;
}

.contact-form #user_mail {
	width: 300px;
}

.contact-form #contact_text {
	width: 450px;
}

#confirm-btn {
	margin-top: 50px;
}

.contact-form #confirm-area {
	width: 100%;
}

.contact-form #confirm-area th {
	width: 250px;
	font-size: 15px;
	font-weight: bold;
	text-align: center;
	vertical-align: top;
	padding: 30px 20px 10px 20px;
	border-bottom: 1px solid #635656;
}

.contact-form #confirm-area td {
	font-size: 15px;
	font-weight: normal;
	text-align: left;
	vertical-align: top;
	padding: 30px 0px 0px 10px;
	border-bottom: 1px solid #635656;
}

.contact-form .btn_form {
	display: block;
	max-width: 350px;
	margin: 40px auto;
	padding: 15px;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	background: #FF4848;
	border-radius: 20px;
}
.contact-form .btn_form::after {
	display: inline-block;
	margin-left: 10px;
	content: "";
	width:0;
	height:0;
	border-style:solid;
	border-width: 6px 0 6px 8px;
	border-color: transparent transparent transparent #FFFFFF;
}

.contact-form .back-btn {
	display: block;
	max-width: 250px;
	margin: 40px auto;
	padding: 15px;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	background: #6F635E;
	border-radius: 20px;
}
.contact-form .back-btn::before {
	display: inline-block;
	margin-right: 10px;
	content: "";
	width:0;
	height:0;
	border-style:solid;
	border-width: 6px 8px 6px 0px;
	border-color: transparent #FFFFFF transparent transparent;
}

.contact-form .btn_form, 
.contact-form .back-btn {
	text-decoration: none;
	transition: 0.2s ease-in;
}

.contact-form .btn_form:hover, 
.contact-form .back-btn:hover {
	opacity: 0.6;
	cursor: pointer;
}

.complete-text {
	text-align: left;
}

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

	.contact-form #input-area {
		width: 100%;
	}

	.contact-form .required-mark {
		float: left;
	    margin-left: 0px;
	    margin-right: 10px;
	}

	.contact-form .no-required-mark {
		float: left;
	    margin-left: 0px;
	    margin-right: 10px;
	}

	.contact-form #input-area th,
	.contact-form #input-area td {
		display: block;
		width: 100%;
		padding: 5px 0px;
	}

	.contact-form #input-area th {
		margin-top: 30px;
		text-align: left;
	}

	.contact-form input,
	.contact-form select,
	.contact-form textarea {
		margin-top: 0px;
	}

	.contact-form #user_name_mei,
	.contact-form #user_name_mei_kana {
		margin-top: 10px;
	}

	.contact-form #user_name_sei,
	.contact-form #user_name_mei,
	.contact-form #user_name_sei_kana,
	.contact-form #user_name_mei_kana,
	.contact-form #user_store_name,
	.contact-form #user_tel,
	.contact-form #user_tel_day,
	.contact-form #user_mail,
	.contact-form #contact_text {
		width: 100%;
	}

	.contact-form #confirm-area th,
	.contact-form #confirm-area td {
		display: block;
		width: 100%;
		padding: 5px 0px;
	}

	.contact-form #confirm-area th {
		font-weight: bold;
		text-align: left;
		border-bottom: none;
		padding-top: 20px;
	}
}

@media screen and (min-width: 640px) {
	#seminar br.sp {
		display: none;
	}
	#seminar {
		font-size: 16px;
	}
	#seminar .cta p:nth-of-type(2)
	 {
		font-size: 17px;
	}
	#seminar > main > p:first-of-type,
	#seminar .cta p:nth-of-type(1),
	#seminar .content h3,
	#seminar .teacher h3 {
		font-size: 18px;
	}
	#seminar .worry h3,
	#seminar .worry .section_inner > p,
	#seminar .cta h3 {
		font-size: 19px;
	}
	#seminar .section_inner,
	#seminar .overview {
		max-width: 640px;
		margin: 0 auto;
	}
	#seminar .worry ul {
	max-width: 300px;
}
	#seminar .worry .section_inner {
		padding-bottom: 50px;
	}
	#seminar .overview {
	border: 3px solid #fff;
	box-shadow: 0px 0px 0px 10px #FFF9F3;
}
#seminar .overview p {
	margin: 30px auto;
}
	#seminar .content ul {
		max-width: 190px;
	}
	#seminar .teacher .section_inner > div {
		display: flex;
		align-items: flex-end;
		margin-bottom :40px;
	}
	#seminar .teacher .section_inner > div > p {
		width: 150px;
	}
	#seminar .teacher dl {
		width: calc(100% - 150px);
		margin: 0 0 0 20px;
		text-align: left;
	}
}
/*youtube*/
.video {
	margin-bottom: 120px;
	text-align: center;
}
@media screen and (max-width: 1120px) {
.video{
	margin: 0 10px;
	position: relative;
	height: 0;
	padding-bottom: 56.25%;
	margin-bottom:40px;
}
.video iframe{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
}

.contact-form p {
	font-size: 14px;
}