@charset "utf-8";
img{
	width: 100%;
	height: auto;
}


.br_400{
	display: none;
}




/* 見た目 */
.subhead {
    position: relative;
    background-image: url(../img/profile/subhead_bg.jpg);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 280px;
    margin: 80px 0 0 0;
}

.subhead_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    color: #006532;
}

h2.subhead_font {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.2;
}

span.subhead_font_jp {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.video {
    margin: 0 0 50px 0;
    padding: 50px 0;
    /* background-color: rgb(251, 251, 251); */
}
.video_wrap {}

.video_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}


.video_list_contents {
    width: 30%;
    margin: 0 0 30px 0;
    background-color: #fff;
}

.video_list_contents iframe {
    width: 100%;
    height: 200px;
}


.video_list::after {
    display: block;
    content: "";
    width: 30%;
}

.video_heading {}

h3.video_heading_font {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #006532;
    padding: 0 0 25px 0;
    margin: 0 0 25px 0;
    border-bottom: 1px solid #006532;
}

.youtube {
    padding: 0 15px 15px 15px;
}

.youtube_title {
    position: relative;
    font-size: 20px;
    letter-spacing: 0.08em;
    font-weight: 500;
    line-height: 1.5;
    padding: 15px 0;
    margin: 0 0 20px 0;
    text-align: center;
}

p.youtube_title::before {
    position: absolute;
    content: "";
    background-color: #006532;
    width: 50px;
    height: 1px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.video_time {
    font-size: 14px;
    letter-spacing: 0.08em;
}


.youtube_text {
    font-size: 16px;
    letter-spacing: 0.08em;
    margin: 10px 0 0 0;
}



@media screen and (max-width: 1200px) {
    h3.video_heading_font {
        font-size: 26px;
    }

    .subhead {
        margin: 60px 0 0 0;
    }

    .youtube_title {
        font-size: 16px;
    }

}

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


    .video_list_contents {
        width: 47%;
    }


    .video_list::after {
        width: 47%;
    }

}

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

    .video_list_contents {
        width: 100%;
    }

    .video_list_contents iframe {
        height: 300px;
    }

    .video_list::after {
        width: 100%;
    }

    .youtube_title {
        padding: 15px 0 10px 0;
        margin: 0 0 10px 0;
    }

    .youtube_text {
        font-size: 14px;
    }

    h3.video_heading_font {
        font-size: 18px;
        padding: 0 0 15px 0;
        margin: 0 0 15px 0;
    }
}



















/* input[type="text"],
input[type="tel"],
input[type="email"], */
input,
select {
    padding: 12px 10px;
    border: 1px solid #dedede;
    background: #fff;
    border-radius: 3px;
    margin: 0;
    width: 100%;
    /* font-size: 14px; */
}
select {
    background: #fff url(../img/select_allow.png) no-repeat center right;
    background-size: 15px;
    width: 200px;
}
textarea {
    padding: 10px;
    border: 1px solid #dedede;
    background: #fff;
    border-radius: 3px;
    width: 100%;
    height: 10em;
}
input[type="button"] {    
/*     -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; */
    cursor:pointer;
}
input[type="radio"],
input[type="checkbox"]{
    width: auto;
    margin-right: 5px;
}
* {
    box-sizing: border-box;
}

/* ------------------------------------ main#CONTACT */
#contact {
	letter-spacing: 0.06em;
	/* font-feature-settings: "palt"; */
/* 	-moz-font-feature-settings: "palt"; */
	/* -webkit-font-feature-settings: "palt"; */
}
.contact_txt {
	text-align: center;
	font-size: 16px;
	line-height: 1.625;
}

/* ------------------------------------ CONTACT CONTENT */
.content {
	/* margin-bottom: 160px; */
	/* margin: 90px auto 0; */
	/* padding: 80px 0 160px; */
	/* background: #f4f4f4; */
}
/* ------------------------------------ STEP */
.step {
	display:flex;
	justify-content: space-between;
	margin: 0 auto 80px;
}
.step_box {
	width: 31%;
}
.step_box div {
	position: relative;
	color: #aea393;
	background: rgba(174, 163, 147, 0.25);
}
.step_box div::after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 25px 0 25px 25px;
	border-color: transparent transparent transparent rgba(174, 163, 147, 0.25);
	position: absolute;
	left:100%;
	top: 50%;
	transform: translate(0, -50%);
}
.step_box:last-child div::after {
	display: none;
}
.step_box.step_current div {
	color: #fff;
	background: #aea393;
}
.step_box.step_current div::after {
	border-color: transparent transparent transparent #aea393;
}
.step_box p {
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	letter-spacing: 0.2em;
	z-index: 1;
}
/* ------------------------------------ FORM */
/*  */
form {margin-top: 60px;margin-bottom: 60p;background: rgb(251, 251, 251);padding: 60px 20px;/* max-width: 1000px; */margin: 60px auto 0;border-radius: 10px;}
.form_area {
}
.input_area {
    display: flex;
    margin-bottom: 20px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 0px;
    justify-content: space-between;
    color: #3e3a39;
    padding: 50px 0 50px;
    border-bottom: solid 1px #dbdbdb;
}
.input_area:first-of-type {
    /* padding-top: 30px; */
    border-top: solid 1px #dbdbdb;
}
/*  */
.input_ttl {
    width: 27.5%;
    /* padding: 0 10px 0 20px; */
    display: flex;
    align-items: center;
    /* background: #ede9e4; */
}
.input_ttl p {/* line-height: 1.5; */letter-spacing: 0;}
.input_ttl label {
	margin-right: 5px;
	line-height: 2;
color: #3e3a39;}
.required_txt {
    color: #fff;
    background: #963939;
    padding: 6px 14px;
    font-size: 11px;
    display: inline-block;
    /* margin-left: 5px; */
    line-height: 1;
}
/*  */
.input_box {
    width: 72.5%;
    /* padding: 20px 20px; */
    /* background: #fff; */
    display: flex;
    align-items: center;
}
.input_box p {
   /* margin-right: 10px; */
   margin-top: 0;
   margin-bottom: 0;
}
.input_group {
    display: flex;
justify-content: space-between;}
.input_item {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;/* padding: 15px 0; */
}
.input_item > div{
	width: 100%;
}
.input_group p {
/*    margin-right: 10px;
   margin-top: 0;
   margin-bottom: 0; */
}
.input_err {
    font-size: 12px;
    color: #963939;
    display: none;
    margin: 0;
    width: auto !important;
    position: absolute;
    top: 0;
}
/* 各 */
.name_box p,
.kana_box p {
    width: 2.5em;
}
.add_box p {
	width: 12em;
}
.name_box .input_item:last-child,
.kana_box .input_item:last-child  {
    margin-left: 10px;
}
.sex_box .input_item:last-child {
    margin-left: 10px;
}
.day_box .input_item{
    margin-right: 10px;
}
.day_box .input_item select{
    margin-right: 10px;
}
.media_box .checkb {
    display: inline-block;
    margin: 5px;

}
.detail_box {
    /* width: 100%; */
}
/* フォーム下テキスト */
.privacy_txt {
	margin-top: 80px;
	margin-bottom: 40px;
}
.privacy_txt a {
	color: #3c448e;
	text-decoration: underline;
}
/* consent_box */
.consent_box {

}
.consent_box label {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.consent_box .required_txt {
	margin: 0;
}
.consent_box input[type="checkbox"] {
	display:block;
	margin: 0 10px;
}
.consent_box p {
	cursor: pointer;
}
/* submit */
/* submit */
.btn_wrap {
    /* max-width: 900px; */
    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    justify-content: center;
    max-width: 500px;
}
.submit_area {
    width: 48%;
    max-width: 250px;
    height: 60px;
    /*     margin: 0 auto; */
    /* margin-right: 30px; */
    position: relative;
}

.submit_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border: none;
    /* border-radius: 5px; */
    font-size: 16px;
    position: absolute;
    letter-spacing: 0.2em;
    text-indent: 1.5em;
}
div.submit_btn {
	color: #fff;
	background: #b4b4b4;
    letter-spacing: 0.2em;
}
input.submit_btn {
    color: #fff;
    background: #046432;
    /* margin-right: 30px; */
    text-align: center;
    margin: 0;
	transition: 0.3s;
}
input.submit_btn:hover{
    transition: 0.3s;
    background: #029f4f;
}
input.submit_btn.submit_edit {
    color: #fff;
    background: #b9b9b9;
}
.reset_area{
    width: 45%;
    max-width: 300px;
    height: 60px;
    margin-right: 30px;
    position:relative;
}
.reset_area::before,
.reset_area::after {
	content: '';
	display: block;
	background: #313131;
	height: 1px;
	width: 16px;
	position:absolute;
	top: 50%;
	left: 28%;
}
.reset_area::before {
	transform:translateY(-50%) rotate(45deg);
}
.reset_area::after {
	transform:translateY(-50%) rotate(-45deg);
}
input.reset_btn {
    color: #000;
    position: static;
    background: #fff;
    cursor: pointer;
    margin: 0;
    border: 1px solid #dedede;
    text-indent: 2.5em;
	text-align: center;
}

.checkb{
	margin-right: 10px;
	margin-bottom: 10px;
	display: inline-block;
}
.checkb span{
	display: inline-block;
}
.privacy_txt span{
	display: inline-flex;
}
.privacy_inline{
	max-width: 800px;
	height: 200px;
	overflow-y: scroll;
	border: 1px solid #dcdcdc;
	padding: 15px !important;
	box-sizing: border-box;
	text-align: left !important;
	background: #fff;
	/* margin-bottom: 40px; */
	margin: 0 auto 40px;
	font-size: 14px;
	line-height: 1.5;
}
.privacy_inline span{
	font-weight: bold;
}
/* ---------------------------------------------------- 確認画面 */
input.confirm_back {
 	text-indent: 1em;
}
input.confirm_submit {
	text-indent: 1em;
}
.contact_list_conf{
	margin-bottom: 5px;
}
/* ---------------------------------------------------- 完了画面 */
.thanks_txt {
	font-size: 16px;
}
.thanks_txt span {
	font-size: 1.5em;
	margin-bottom: 1em;
	display: inline-block;
}
.top_link {
	margin: 40px auto 0;
}
.top_link a {
	width: 45%;
	max-width: 300px;
	height: 60px;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	letter-spacing: 0.2em;
	color: #fff;
	background: linear-gradient(to right, #232323,#313131);
	position: relative;
}
.top_link a::before {
	content: '';
	display: block;
	background: #fff;
	height: 1px;
	width: 16px;
	margin-right: 20px;
	/* position:absolute;
	top: 50%;
	left: 0; */
}
@media screen and (max-width:768px) {
	form {
			font-size: 14px;
	}

	.step_box {
			width: 32%;
	}
	.step_box p {
			font-size: 13px;
	}
	.step_box div::after  {
			display: none;
	}

	.input_group {
			display: flex;
	}
/*      */
	.name_box .input_item:last-child,
	.kana_box .input_item:last-child  {
			/* margin-left: 0; */
	}
	.sex_box .input_item:last-child {
			margin-left: 0;
	}

	.day_box .input_item select{
/*         max-width: 10em; */
	}
	.job_box .input_item {
			display: block;
	}
	.add_box .input_item {
			display: block;
	}
	
}
@media screen and (max-width: 750px) {
	input, select {
		width: 100%;
	}
	.input_area {
			/* display: block; */
			flex-wrap: wrap;
			padding: 30px 0 30px;
	}
	.input_ttl {
			width: 100%;
			/* padding: 10px 20px; */
			margin-bottom: 10px;
	}
	.input_box {
			width: 100%;
	}
	.input_item {
		width: 100%;
		/* background: red; */
	}
	.step_box p {
		letter-spacing: 0;
	}

    .add_box p {
    	margin-bottom: 10px;
    }

	.contact_txt {
		font-size: 14px;
	}
	.reset_area {
		margin-right: 20px
	}
	/* 完了画面 */
	.thanks_txt {
		font-size: 16px;
	}
}
@media screen and (max-width: 600px) {
	.btn_wrap {
		display:block;
		margin-top: 60px;
	}
	.reset_area {
		width: 100%;
		margin: 0 auto;
		margin-bottom: 20px;
	}
	.submit_area {
		width: 100%;
		margin: 0 auto;
	}
	.reset_area::before,
	.reset_area::after {
        left: 26%;
	}
	input, select {
		/* font-size: 12px; */
	}
	.input_ttl p {
		/* font-size: 12px; */
	}
	.input_box {
		/* width: 66.5%; */
	}
	.input_ttl {
		/* width: 33.5%; */
	}
}
@media screen and (max-width: 500px) {
	.content {
		/* padding-bottom: 100px; */
	}
	.thanks_txt {
		font-size: 14px;
	}
	.thanks_txt span {
	}
}
@media screen and (max-width: 400px) {
	.br_400{
		display: block;
	}
}


input.submit_img{
	width: 100%;
    border: none;
    background: none;
    border-radius: 0;
	padding: 0;
}
::placeholder{
	color: #c5c4c4;
}
.dn{
	display: none!important;
}
.req_btn_opa{
	opacity: 0.4;
	pointer-events: none;
	transition: 0.3s;
}
.message_ttl{
    align-items: flex-start;
}
span.required_tag{
	font-size: 12px;
    background: #046432;
    color: #fff;
    line-height: 1;
    box-sizing: border-box;
    padding: 2px 5px;
    margin-right: 10px;
    border-radius: 3px;
}
.common_inner{
	max-width: 1040px;
}

.form_info{
	line-height: 1.2;
}

.privacy_link{
    text-align: center;
    margin: 40px auto 0;
}
.privacy_link a{
    text-decoration: underline;
    color: #52b582;
    transition: 0.3s;
}
.privacy_link a:hover{
    opacity: 0.6;
    transition: 0.3s;
}







/* 講演会 */
.Checklist{
    display: flex;
    flex-wrap: wrap;
    line-height: 1.5;
}
.Checklist li{
    margin-right: 20px;
    display: inline-block;
}
.item_adress{
    margin-left: 0!important;
}
.Captx_first{
    padding-bottom: 10px;
    display: block;
    padding-top: 0!important;
}
.Captx{
    padding-bottom: 10px;
    display: block;
    padding-top: 20px;
}
.ad_selrct{
    margin-bottom: 10px;
}