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

/*header------------------------------*/
header{
    padding-top: 130px;
    padding-bottom: 30px;
    border-bottom: solid 1px #ececec;
}
.small_header{
    display: flex;
    align-items: center;
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
}
.small_header h2{
    display: inline-block;
    font-size: 36px;
    letter-spacing: 0.08em;
}
.small_header span{
    display: block;
    font-size: 18px;
    color: #98B188;
    padding-left: 30px;
    letter-spacing: 0.08em;
}


/*content------------------------------*/
.content_wrapper{
    width: 80%;
    margin: 0 auto;
    margin-bottom: 160px;
    max-width: 1000px;
}
.content_wrapper p{
    padding-bottom: 20px;
}
.content_wrapper p:last-of-type{
    padding-bottom: 70px;
}
.mark{
    padding-left: 14px;
    position: relative;
}
.mark::before{
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #98B188;
    left: 0;
    top: 12px;
    border-radius: 50%;
}
.form{
    line-height: 1em;
}
.form dl{
	display: flex;
	margin-bottom: 45px;
}
.form dl:last-of-type{
    margin-bottom: 55px;
}
.form dl dt{
	width: 30%;
	font-weight: 500;
	padding-top: 21px;
}
.form dl:nth-of-type(5) dt{
	padding-top: 2px;
}
.form dl:nth-of-type(6) dt{
	padding-top: 2px;
}
.required{
    position: relative;
    padding-right: 15px;
}
.required::before{
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #98B188;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
}
.form dl dd{
	width: 70%;
}
.input_text{
	border: solid 1px #98B188;
	height: 58px;
	width: 100%;
	font-size: 16px;
	box-sizing: border-box;
	padding: 12px;
}
input:focus {
  border: 2px solid #98B188;
  outline: 0;
}
textarea:focus {
  border: 2px solid #98B188;
  outline: 0;
}
textarea{
    width: 100%;
	height: auto;
	font-size: 16px;
    font-weight: 500;
	box-sizing: border-box;
	padding: 12px;
	padding: 10px!important;
	min-height: 220px;
	border: solid 1px #98B188;
    border-radius: 0;
    resize: vertical;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}
.label{
	position: relative;
}
label{
    cursor: pointer;
}
.radio_input{
	position: relative;
	vertical-align: text-bottom;
    margin: 0;
    width: 26px;
    height: 26px;
    transition: .4s;
    cursor: pointer;
}
.radio_input::before {
	position: absolute;
	z-index: 1;
	top: 0.25rem;
	left: 0.25rem;
	width: 18px;
	height: 18px;
	content: '';
	-webkit-transition: -webkit-transform 0.4s;
	        transition:         transform 0.4s;
	-webkit-transform: scale(0, 0);
	        transform: scale(0, 0);
	border-radius: 50%;
	background: #98B188;
    box-sizing: border-box;
}
.radio_input:checked:before {
	-webkit-transform: scale(1, 1);
	        transform: scale(1, 1);
}
.radio_input::after {
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 26px;
    height: 26px;
    content: '';
    border: 1px solid #98B188;
    border-radius: 50%;
    background: #fff;
    box-sizing: border-box;
}
.option label{
	padding-left: 12px;
}
.option{
	padding-bottom: 16px;
    display: flex;
    align-items: center;
}
.option:last-child{
    padding-bottom: 0;
}
.option_flex{
	display: flex;
}
.option_dl{
	margin-bottom: 10px;
}
input[type="date"] {
    border: 2px solid #ddd;
	border-radius: 4px;
	padding: 5px;
}
.date{
	margin-bottom: 10px;
}
.date_text{
	font-size: 14px;
}
.hyphen{
	font-size: 14px;
	padding-bottom: 10px;
}
.checked_btn{
	display: block;
	padding: 15px;
	width: 280px;
	margin: 0 auto;
	border: solid 2px #98B188;
	background-color: #98B188;
	color: #fff;
	transition: .3s;
	font-size: 15px;
	text-align: center;
	cursor: pointer;
}
.checked_btn:hover{
	background-color: #fff;
	color: #98B188;
}
.contact_btn_wrapper{
    text-align: center;
}
.contact_btn{
    background-color: #98B188;
    color: #fff;
    padding: 20px;
    width: 80%;
    max-width: 320px;
    font-size: 16px;
    transition: .4s;
}
.contact_btn:hover{
    opacity: .7;
}


/*入力内容確認------------------------------*/
.pankuzu{
    margin-bottom: 80px;
}
#formWrap{
    width: 80%!important;
    max-width: 800px!important;
    margin-bottom: 120px!important;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
}
#formWrap h3{
    text-align: center;
    font-size: 24px;
    margin-bottom: 25px;
}
#formWrap>p{
    margin-bottom: 35px;
}
table.formTable td, table.formTable th{
    padding: 15px!important;
    line-height: 1.6em;
}
.formTable{
    margin-bottom: 30px!important;
}
.send_btn{
    display: flex;
    justify-content: center;
    align-items: center;
}
.kakunin{
    display: block;
    margin: 0 10px;
    background-color: #98B188;
    color: #fff;
    padding: 20px;
    width: 70%;
    max-width: 320px;
    font-size: 16px;
    transition: .4s;
}
.kakunin:first-of-type{
    background-color: #fff;
    color: #98B188;
    border: solid 1px #98B188;
}
.kakunin:hover{
    opacity: .7;
}


/*送信完了------------------------------*/
.thanks_text{
    padding-bottom: 40px;
}
.contact_back{
    display: block;
    margin: 0 10px;
    padding: 20px;
    width: 70%;
    max-width: 320px;
    font-size: 16px;
    transition: .4s;
    background-color: #fff;
    color: #98B188;
    border: solid 1px #98B188;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
    margin-bottom: 160px;
    box-sizing: border-box;
}
.contact_back:hover{
    opacity: .7;
}


@media print, screen and (max-width: 750px) {
    
/*header------------------------------*/
    header{
        padding-top: 110px;
        padding-bottom: 20px;
    }
    .small_header{
        width: 85%;
        max-width: 600px;
    }
    .small_header h2 {
        font-size: 24px;
    }
    .small_header span{
        font-size: 14px;
        padding-left: 20px;
    }

    
/*content------------------------------*/
    .content_wrapper {
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 80px;
        max-width: 600px;
        padding: 0 20px;
    }
    .content_wrapper p {
        padding-bottom: 10px;
    }
    .content_wrapper p:last-of-type {
        padding-bottom: 25px;
    }
    .mark {
        padding-left: 10px;
    }
    .form dl {
        display: block;
        margin-bottom: 20px;
    }
    .form dl dt {
        width: 100%;
        padding-top: 0;
        margin-bottom: 10px;
    }
    .form dl dd {
        width: 100%;
    }
    .input_text {
        height: 48px;
        width: 100%;
        font-size: 15px;
        padding: 10px;
    }
    .form dl:nth-of-type(5) dt {
        padding-top: 0;
        padding-bottom: 5px;
    }
    .option {
        padding-bottom: 12px;
    }
    .form dl:last-of-type {
        margin-bottom: 25px;
    }


/*入力内容確認------------------------------*/
    .pankuzu{
        margin-bottom: 30px;
    }
    #formWrap {
        width: 100%!important;
        margin: 0 auto;
        max-width: 600px!important;
        box-sizing: border-box;
        padding: 0 20px;
        margin-bottom: 80px!important;
    }
    #formWrap h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    #formWrap>p {
        text-align: left;
        margin-bottom: 20px;
        line-height: 1.6em;
    }
    table.formTable th {
        margin-top: 10px!important;
    }
    table.formTable td, table.formTable th {
        padding: 10px!important;
    }
    .formTable {
        margin-bottom: 15px!important;
    }
    .kakunin {
        margin: 0 5px;
        padding: 15px 10px;
        width: 100%;
        font-size: 15px;
    }


/*送信完了------------------------------*/
    .thanks_text{
        padding-bottom: 30px;
    }
    .contact_back{
        margin-bottom: 80px;
    }











































}












