@charset "UTF-8";
/*
Theme Name: devels
*/


/*================================================================================
base
================================================================================*/

/* global ------------------------------------------------*/

html, body {
    overflow-x: hidden;
}

body {
    font-weight: 500;
    line-height: 1.6;
	font-family: "Noto Sans JP", serif;
}

a:hover {
    transition: ease .2s;
    opacity: 0.7;
}

/*================================================================================
header
================================================================================*/

/* header pc ------------------------------------------------*/

.header {
    width: 100%;
    display: flex;
    position: fixed;
    z-index: 999;
    background-color: #ffffff;
}

.header-left {
    display: flex;
    align-items: center;
	margin: 0 0 0 40px;
}

.header-right {
    display: flex;
    align-items: center;
    margin-left: auto;
}

/* logo */

.header_logo {
    max-width: 380px;
}

/* nav */

.header_nav {
	margin: 0 0 30px 0 0;
}

.header_nav ul {
    display: flex;
}

.header_nav ul li {
    border-left: 1px solid #bfbaba;
    padding: 5px 30px;
    text-align: center;
}

.header_nav ul li a {
    font-size: 20px;
    color: #4d4d4d;
    font-weight: 600;
}

.header_nav ul li a .en {
    display: block;
    text-align: center;
    font-size: 14px;
}

.header_nav ul li a .en img {
    max-width: auto;
    width: auto;
    height: 11px;
    margin-bottom: 2px;
}

/* contact */

.header_contact a {
    text-align: center;
    color: #ffffff;
    width: 260px;
    padding: 25px 15px;
    background-color: #00a0e4;
    display: block;
    font-weight: 800;
    font-size: 26px;
}

.header_contact a .en {
    font-size: 14px;
    display: block;
    text-align: center;
}

.header_contact a .en img {
    max-width: auto;
    width: auto;
    height: 13px;
    margin-bottom: 2px;
}


/* header-sp ------------------------------------------------*/

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
}

.header-sp {
    width: 100%;
    position: relative;
    display: none;
    padding: 15px;
    background-color: #ffffff;
}

/* logo */

.header-sp_logo {
	max-width: 200px;
}

/* toggle */

.header-sp_toggle {
	width: 67px;
	height: 67px;
    background-image: url(assets/img/common/header-sp_toggle-open.png);
    background-repeat: no-repeat;
    background-size: 67px 67px;
    cursor: pointer;
    position: fixed;
    top: 2px;
    right: 25px;
    z-index: 999;
    font-size: 0;
}

.header-sp_toggle.close {
    background-image: url(assets/img/common/header-sp_toggle-close.png);
}

/* overlay */

.header-sp_overlay {
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
    background-color: #f8f8f8;
	z-index: 990;
	padding: 40px 20px;
	animation: toggle 0.5s ease normal;
}

.header-sp_overlay.open {
	display: block;
}

/* nav */

.header-sp_nav {
    margin-bottom: 20px;
}

.header-sp_nav ul li {
    border-bottom: 1px solid #4d4d4d;
}

.header-sp_nav ul li a {
    font-size: 25px;
    display: block;
    color: #4d4d4d;
    padding: 15px 0;
}

.header-sp_nav ul li a .en {
    font-size: 14px;
    margin-left: 10px;
}

.header-sp_nav ul li a .en img {
    max-width: auto;
    width: auto;
    height: 12px;
    vertical-align: middle;
}

/* contact */

.header-sp_contact {
    max-width: 250px;
    margin: 0 auto;
}

@keyframes toggle {

    from {
    	transform: translateY(-100%);
	    opacity: 0;
	}
	to {
		transform: translateY(0);
	    opacity: 1;
	}
}

@media (max-width: 1400px) {

    /* header pc ------------------------------------------------*/
    
    .header-left {
    	margin: 0 0 0 30px;
    }
    
    /* logo */
    
    .header_logo {
        max-width: 350px;
    }
    
    /* nav */
    
    .header_nav {
    	margin: 0 0 30px 0 0;
    }
    
    .header_nav ul li {
        padding: 5px 20px;
    }
    
    .header_nav ul li a {
        font-size: 18px;
    }
    
    .header_nav ul li a .en {
        font-size: 12px;
    }
    
    /* contact */
    
    .header_contact a {
        width: 160px;
        padding: 20px 15px;
        font-size: 20px;
    }
    
    .header_contact a .en {
        font-size: 13px;
    }
}

/*================================================================================
footer
================================================================================*/

/* footer top ------------------------------------------------*/

.footer-top {
    background-color: #e5f5fc;
    padding: 40px 0;
}

.footer-top_container .row-outer {
	margin: 0 -30px;
}

.footer-top_container .col-inner {
    padding: 0 30px;
}

/* nav */

.footer_nav {
	padding: 0 30px;
	border-right: 1px solid #bfbaba;
	border-left: 1px solid #bfbaba;
}

.footer_nav ul li {
    margin: 0 0 10px 0;
}

.footer_nav ul li a {
    font-size: 15px;
    color: #4d4d4d;
}

/* address */

.footer_address p {
    font-size: 20px;
    font-weight: 400;
}

/* footer bottom ------------------------------------------------*/

/* copyright */

.footer-bottom {
    background-color: #00a0e4;
    padding: 30px 0;
}

.footer-bottom .footer_copy p {
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    font-weight: 400;
}

@media (max-width: 1200px) {

/* footer top ------------------------------------------------*/

    .footer-top_container .row-outer {
    	margin: 0 -15px;
    }
    
    .footer-top_container .col-inner {
        padding: 0 15px;
    }
    
    /* nav */
    
    .footer_nav {
    	padding: 0 15px;
    }
}

@media (max-width: 991px) {

    /* footer top ------------------------------------------------*/
    
    .footer-top {
        padding: 30px 0;
    }
    
    .footer-top_container .row-outer {
    	margin: 0;
    }
    
    .footer-top_container .col-inner {
        padding: 0;
    }

    /* logo */
    
    .footer_logo {
    	margin-bottom: 20px;
    	max-width: 300px;
    	margin: 0 auto 20px auto;
    }
    
    /* nav */
    
    .footer_nav {
    	padding: 15px 0 5px 0;
    	border-right: none;
    	border-left: none;
    	border-top: 1px solid #00a0e4;
    	border-bottom: 1px solid #00a0e4;
    	margin-bottom: 20px;
    	text-align: center;
    }

    .footer_nav ul {
        font-size: 0;
        letter-spacing: -1em;
        display: inline-block;
    }
       
    .footer_nav ul li {
        margin: 0;
        display: inline-block;
        padding: 0 12px;
        border-right: 1px solid #4d4d4d;
        margin: 0 0 10px 0;
    }
       
    .footer_nav ul li:last-child {
        border-right: none;
    }
        
    .footer_nav ul li a {
        letter-spacing: normal;
    }
    
    /* address */

    .footer_address {
    	margin-bottom: 20px;
    }
        
    .footer_address p {
        font-size: 14px;
    }
    
    /* banner */
    
    .footer_banner {
    	max-width: 300px;
    	margin: 0 auto 20px auto;
    }
    
    /* footer bottom ------------------------------------------------*/
    
    /* copyright */
    
    .footer-bottom {
        padding: 10px 0;
    }
    
    .footer-bottom .footer_copy p {
        font-size: 14px;
    }
}

/*================================================================================
common
================================================================================*/

/* heading ------------------------------------------------*/

/* type 1 */

.common-heading.type-one {
	font-size: 70px;
	color: #4d4d4d;
	text-align: center;
	margin: 40px 0 60px 0;
	font-weight: 900;
	line-height: 1.4;
	position: relative;
}

.common-heading.type-one .en img {
    max-width: auto;
    width: auto;
	height: 24px;
	display: block;
	margin: 0 auto 10px auto;
}

.common-heading.type-one::before {
    content: "";
    display: block;
    width: 80px;
    height: 1px;
    background-color: #009fe3;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateY(0) translateX(-50%);
}

@media (max-width: 991px) {

    /* heading ------------------------------------------------*/
    
    /* type 1 */
    
    .common-heading.type-one {
    	font-size: 40px;
    	margin: 0 0 30px 0;
    }
    
    .common-heading.type-one .en img {
    	height: 14px;
    	margin: 0 auto 10px auto;
    }
    
    .common-heading.type-one::before {
        top: -20px;
    }
}

/* modal ------------------------------------------------*/

.modal-content {
	max-width: 700px;
	margin: 0 auto;
	border-radius: 5px;
	background-color: #ffffff;
}

.modal-header {
	display: flex;
	justify-content: space-between;
	padding: 20px;
	border-bottom: 1px solid #dee2e6;
}

.modal-header .modal-title {
	font-size: 16px;
	line-height: 1.4;
	color: #000000;
}

.modal-header .close {
    position: relative;
    width: auto;
    height: auto;
    font-size: 25px;
    line-height: 1;
    font-weight: 400;
    color: #000000;
}

.modal-body {
	padding: 10px 20px;
}

.modal-body h2 {
	font-size: 16px;
	line-height: 1.4;
	color: #000000;
    margin: 5px 0;
}

.modal-body p {
	font-size: 14px;
	line-height: 1.6;
	color: #000000;
    font-weight: 400;
    margin: 5px 0;
}
/*================================================================================
index
================================================================================*/

/* hero ------------------------------------------------*/

.top-hero {
    position: relative;
	padding-top: 110px;
}

.top-hero h2 {
    max-width: 43%;
    width: 100%;
    position: absolute;
    right: 8%;
    top: 30%;
    z-index: 10;
}

@media (max-width: 1400px) {

.top-hero {
	padding-top: 90px;
}
}


@media (max-width: 575px) {

    .top-hero h2 {
        max-width: 90%;
        position: absolute;
        right: auto;
        left: 2%;
        top: calc(2% + 70px);
    }
}

/* news ------------------------------------------------*/

.top-news {
    margin: -100px;
    position: relative;
    z-index: 10;
}

.top-news_inner {
	box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.3); 
	padding: 30px;
	border-radius: 10px;
	background-color: #ffffff;
}

.top-news_container .col-inner {
    height: 100%;
}

.top-news_item {
    padding: 0 50px;
    border-left: 1px solid #bfbaba;
    height: 100%;
    display: flex;
    align-items: center;
}

.top-news_inner .top-news_item.first {
    border-left: none;
}

.top-news h3 {
	font-size: 60px;
	color: #00a0e4;
	text-align: center;
	line-height: 1;
}

.top-news h3 .ja {
	font-size: 25px;
	display: block;
	margin: 10px 0 0 0;
}

/* list */

.top-news_list dl {
	display: flex;
	justify-content: flex-start;
	margin: 0 0 15px 0;
}

.top-news_list dl:last-child {
	margin: 0;
}

.top-news_list dl dt {
    width: 170px;
    margin-right: 20px;
}

.top-news_list dl dt .date {
	font-size: 20px;
	color: #00a0e4;
}

.top-news_list dl dd a {
	font-size: 20px;
	color: #4d4d4d;
	font-weight: 400;
}

@media (max-width: 1200px) {

    .top-news_item {
        padding: 0 20px;
    }
}

@media (max-width: 991px) {

    /* news ------------------------------------------------*/
    
    .top-news {
        margin: -50px 0;
    }
    
    .top-news_inner {
    	padding: 20px;
    }
    
    .top-news_item {
        padding: 0;
        border-left: none;
        display: block;
    }
    
    .top-news h3 {
    	font-size: 30px;
    	text-align: left;
    	padding-bottom: 10px;
    	margin-bottom: 10px;
    	border-bottom: 1px solid #000000;
    }
    
    .top-news h3 .ja {
    	font-size: 15px;
    	display: inline-block;
    	margin: 0 0 0 10px;
    }
    
    /* list */
    
    .top-news_list dl {
    	display: block;
    }
    
    .top-news_list dl dt {
        width: 100%;
        margin-right: 0;
    }
    
    .top-news_list dl dd a {
    	font-size: 14px;
    }
}

/* message ------------------------------------------------*/

.top-message {
	padding: 300px 0 100px 0;
	position: relative;
}

.top-message::before {
    content: "";
    width:  210px;
    height: 56px;
    display: block;
    background-image: url("assets/img/index/top-message_back-sankaku.png");
    background-size: 210px 56px;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -56px;
    left: 50%;
    transform: translateY(0) translateX(-50%);
}

.top-message h2 {
	font-size: 70px;
	color: #00a0e4;
	text-align: center;
	margin: 0 0 40px 0;
	position: relative;
    font-family: "Noto Serif JP", serif;
}

.top-message h2::before {
    content: "";
    display: block;
    width: 1px;
    height: 90px;
    background-color: #009fe3;
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateY(0) translateX(-50%);
}

.top-message_h3-typo {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateY(0) translateX(-50%);
    max-width: 720px;
    z-index: -1;
    font-weight 500:;
}

.top-message p {
	font-size: 24px;
	color: #4d4d4d;
	text-align: center;
	line-height: 2.5;
    font-family: "Noto Serif JP", serif;
}

@media (max-width: 991px) {

    /* message ------------------------------------------------*/
    
    .top-message {
    	padding: 180px 0 60px 0;
    }
    
    .top-message::before {
        width: 75px;
        height: 20px;
        background-size: 75px 20px;
        bottom: -20px;
    }
    
    .top-message h2 {
    	font-size: 40px;
    	margin: 0 0 20px 0;
    }
    
    .top-message h2::before {
        height: 60px;
        top: -70px;
    }
    
    .top-message_h3-typo {
        top: -80px;
        max-width: 600px;
    }
    
    .top-message p {
    	font-size: 14px;
    }
}

@media (max-width: 575px) {

    /* message ------------------------------------------------*/
    
    .top-message {
    	padding: 180px 0 60px 0;
    }
}

/* business ------------------------------------------------*/

.top-business {
    background-color: #e5f5fc;
	padding: 100px 0;
    background-image: url("assets/img/index/top-business_back.png");
    background-position: top center;
    background-size: 1650px auto;
    background-repeat: no-repeat;
}

.top-business_list_container {
    background-color: #ffffff;
    padding: 120px 80px 80px 80px;
	box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.3); 
	border-radius: 10px;
	margin: 0 0 60px 0;
}

.top-business_list_container .row-outer {
	margin: 0 -30px;
}

.top-business_list_container .col-inner {
    padding: 0 30px;
}

.top-business h3 {
    display: flex;
	font-size: 70px;
	color: #4d4d4d;
	font-weight: 800;
	margin: 0 0 20px 0;
	line-height: 1.2;
}

.top-business h3 .icon {
    max-width: 160px;
	margin: 0 30px 0 0;
}

.top-business h3 .typo {
    width: 100%;
    position: relative;
}

.top-business h3 .typo::before {
    content: "";
    display: block;
    width: 100%;
    height: 38px;
    background-color: #fae9e8;
    position: absolute;
    bottom: 0;
    z-index: 5;
}

.top-business h3 .typo.bg-yellow::before {
    background-color: #fffae8;
}

.top-business h3 .typo.bg-green::before {
    background-color: #ebf7ee;
}

.top-business .typo .ja {
    position: relative;
    z-index: 10;
}

.top-business .typo .en {
    display: block;
    line-height: 28px;
    margin-bottom: 10px;
}

.top-business .typo .en img {
    width: auto;
    max-width: auto;
    height: 28px;
}

.top-business p {
	font-size: 20px;
	color: #4d4d4d;
	line-height: 2;
	text-align: justify;
	font-weight: 400;
}

/* point */

.top-business_point {
	margin: 60px 0 0 0;
}

.top-business_point h4 {
    text-align: center;
	font-size: 25px;
	color: #35c172;
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 20px;
}

.top-business_point h4::before {
	position: absolute;
	content: "";
	width: 80px;
	height: 3px;
	background-color: #35c072;
	position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateY(0) translateX(-50%);
}

.top-business_point_item {
    background-color: #f7fbf8;
    padding: 40px;
    border-radius: 10px;
}

.top-business_point_container .row-outer {
	margin: 0 -15px;
}

.top-business_point_container .col-inner {
    padding: 0 15px;
}

.top-business_point p {
	font-size: 18px;
}

@media (max-width: 991px) {

    /* business ------------------------------------------------*/
    
    .top-business {
        background-image: url("assets/img/index/top-business_back-sp.png");
        background-position: top center;
        background-size: 400px auto;
    	padding: 100px 0 70px 0;
    }
    
    .top-business_list_container {
        padding: 20px;
    	margin: 0 0 30px 0;
    }
    
    .top-business_list_container .row-outer {
    	margin: 0;
    }
    
    .top-business_list_container .col-inner {
        padding: 0;
    }
    
    .top-business h3 {
    	font-size: 30px;
    	margin: 0 0 10px 0;
    }
    
    .top-business h3 .icon {
        max-width: 70px;
    	margin: 0 15px 0 0;
    }

    .top-business h3 .typo::before {
        height: 17px;
        bottom: 0;
    }
    
    .top-business .typo .en {
        line-height: 15px;
        margin-bottom: 5px;
    }
    
    .top-business .typo .en img {
        height: 15px;
    }
    
    .top-business p {
    	font-size: 14px;
    	margin: 0 0 20px 0;
    }
    
    /* point */

    .top-business_point h4 {
    	font-size: 20px;
    	padding-bottom: 10px;
    	margin-bottom: 15px;
    }
       
    .top-business_point {
    	margin: 20px 0 0 0;
    }
    
    .top-business_point_item {
        padding: 20px;
    	margin: 0 0 15px 0;
    }
    
    .top-business_point_container .row-outer {
    	margin: 0;
    }
    
    .top-business_point_container .col-inner {
        padding: 0;
    }
    
    .top-business_point p {
    	font-size: 14px;
    	margin: 0;
    }
}

/* about ------------------------------------------------*/

.top-about {
	padding: 100px 0;
    background-image: url("assets/img/index/top-aboutus_back.png");
    background-position: top center;
    background-size: 1650px auto;
    background-repeat: no-repeat;
}

/* outline */

.top-about_outline table {
    width: 100%;
}

.top-about_outline table tr {
    border-bottom: 1px solid #000000;
}

.top-about_outline table tr:last-child {
    border-bottom: none;
}

.top-about_outline table tr th {
    width: 340px;
	font-size: 24px;
	color: #00a0e4;
	vertical-align: middle;
	padding: 20px 70px;
}

.top-about_outline table tr td {
	font-size: 24px;
	color: #4d4d4d;
	line-height: 1.8;
	padding: 20px 0;
	font-weight: 400;
}

@media (max-width: 991px) {

    /* about ------------------------------------------------*/
    
    .top-about {
        background-image: url("assets/img/index/top-aboutus_back-sp.png");
        background-position: top center;
        background-size: 400px auto;
    	padding: 100px 0 40px 0;
    }
    
    /* outline */
    
    .top-about_outline table {
        width: 100%;
    }
    
    .top-about_outline table tr {
        border-bottom: 1px solid #00a0e4;
    }
    
    .top-about_outline table tr th {
        width: 100%;
        display: block;
    	font-size: 16px;
    	padding: 10px 20px 0 20px;
    }
    
    .top-about_outline table tr td {
        width: 100%;
        display: block;
    	font-size: 16px;
    	padding: 0 20px 10px 20px;
    }
}

/* access ------------------------------------------------*/

.top-access {
    background-color: #e5f5fc;
	padding: 100px 0;
    background-image: url("assets/img/index/top-access_back.png");
    background-position: top center;
    background-size: 1650px auto;
    background-repeat: no-repeat;
}

/* map */

.top-access_map {
	position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: 20px;
}

.top-access_map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 991px) {

    /* access ------------------------------------------------*/
    
    .top-access {
        background-image: url("assets/img/index/top-access_back-sp.png");
        background-position: top center;
        background-size: 400px auto;
    	padding: 100px 0 40px 0;
    }
    
    /* map */
    
    .top-access_map {
        border-radius: 10px;
    }
}

/* form ------------------------------------------------*/

.top-contact {
    padding: 150px 0;
    background-image: url("assets/img/index/top-contact_back.png");
    background-position: top center;
    background-size: 1650px auto;
    background-repeat: no-repeat;
}

.top-contact_lead {
    font-size: 20px;
	line-height: 2.5;
	font-weight: 400;
	text-align: center;
	margin: 0 0 60px 0;
}

/* form */

.top-contact_form form {
    margin: 0 0 120px 0;
}

.top-contact_form form  ul li {
    margin-bottom: 30px;
}

.top-contact_form form label {
    font-size: 22px;
    margin-bottom: 10px;
    display: block;
}

.top-contact_form form .notice {
    font-size: 14px;
    color: #dc3545;
    margin-left: 10px;
}

.top-contact_form form input {
	background-color: #f8f8f8;
    font-size: 22px;
	padding: 30px 40px;
	width: 100%;
	border-radius: 10px;
	font-weight: 400;
}

.top-contact_form form textarea {
	background-color: #f8f8f8;
    font-size: 22px;
	line-height: 1.8;
	padding: 30px 40px;
	width: 100%;
	height: 350px;
	border-radius: 10px;
	font-weight: 400;
}

.top-contact_form form .privacy {
    font-size: 22px;
    margin: 60px auto;
    text-align: center;
}
.top-contact_form form .privacy p{
    display: inline-block;
    text-align: left;
}


.top-contact_form form .privacy input {
    width: 25px;
    height: 25px;
}

.top-contact_form form .privacy label {
	margin: 0 0 0 5px;
	display: inline;
}

.top-contact_form form .privacy a {
    border-bottom: 1px solid #000000;
}

.top-contact_submit {
    text-align: center;
    margin-top: 150px;
}

.top-contact_submit .submit {
    max-width: 400px;
    display: inline-block;
    border: 3px solid #00a0e4;
    border-radius: 50px;
    font-size: 35px;
    padding: 25px 15px;
    text-align: center;
    color: #ffffff;
    width: 100%;
    background-color: #00a0e4;
    margin: 0 20px;
    position: relative;
}

.top-contact_submit .submit::before {
    content: "";
    width: 36px;
    height: 36px;
    display: block;
    background-image: url("assets/img/index/top-contact_submit-icon.png");
    background-size: 36px;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%) translateX(0);
}

.top-contact_submit .reset {
    max-width: 400px;
    display: inline-block;
    border: 3px solid #00a0e4;
    background-color: #ffffff;
    border-radius: 50px;
    font-size: 35px;
    padding: 25px 15px;
    text-align: center;
    color: #4d4d4d;
    width: 100%;
    margin: 0 20px;
}

/* error */

.top-contact_form .error {
	font-size: 12px;
	line-height: 1.2; 
    color: #dc3545;
	margin-top: 5px;
	font-weight: 400;
}

.top-contact_form-title {
    font-size: 22px;
    font-weight: 700;
}

.top-contact_form-text {
    font-size: 18px;
    font-weight: 400;
}

/* result ------------------------------------------------*/

.result {
    margin: 200px 0;
}

.result_message h2 {
    font-size: 25px;
    line-height: 1.6;
    color: #000000;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.result_message p {
    font-size: 18px;
    line-height: 1.8;
    color: #000000;
    text-align: center;
}

@media (max-width: 991px) {

    .top-contact {
        background-image: url("assets/img/index/top-contact_back-sp.png");
        background-position: top center;
        background-size: 400px auto;
    	padding: 100px 0 50px 0;
    }
    
    .top-contact_lead {
        font-size: 14px;
        line-height: 2;
    	margin: 0 0 40px 0;
    	text-align: left;
    }
    
    /* form */
    
    .top-contact_form form {
        margin: 0 0 60px 0;
    }
    
    .top-contact_form form  ul li {
        margin-bottom: 20px;
    }
    
    .top-contact_form form label {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .top-contact_form form input {
        font-size: 16px;
    	padding: 15px 20px;
    	border-radius: 5px;
    }
    
    .top-contact_form form textarea {
        font-size: 16px;
    	padding: 15px 20px;
    	border-radius: 5px;
    }
    
    .top-contact_form form .privacy {
        font-size: 16px;
        margin: 20px auto;
        max-width: 180px;
    }
    
    .top-contact_form form .privacy input {
        width: 25px;
        height: 25px;
    }
    
    .top-contact_form form .privacy label {
    	margin: 0 0 0 5px;
    }

    .top-contact_submit {
        margin-top: 80px;
    }

    .top-contact_submit .submit {
        max-width: 250px;
        border: 2px solid #00a0e4;
        font-size: 20px;
        padding: 15px 10px;
        margin: 0 auto 15px auto;
        display: block;
    }

.top-contact_submit .submit::before {
    width: 22px;
    height: 22px;
    background-size: 22px;
    right: 40px;
}

    .top-contact_submit .reset {
        max-width: 250px;
        border: 2px solid #00a0e4;
        font-size: 20px;
        padding: 15px 10px;
        margin: 0 auto 15px auto;
        display: block;
    } 

    .top-contact_form-title {
        font-size: 18px;
    }
    
    .top-contact_form-text {
        font-size: 14px;
    }

	/* result */
	
    .result {
        margin: 100px 0;
    }
    
    .result_message h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .result_message p {
        font-size: 14px;
    }
}


#form p {
        margin: 0;
        padding: 0;
    }
.wpcf7-list-item {
    display: inline-block;
    margin: 0 0 0 0 !important;
}

.wpcf7 form.invalid .wpcf7-response-output {
    border-color: #dc3232 !important;
    color: #dc3232;
    text-align: center;
    padding: 1em;
    }
    
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #00a0e4 !important;
    color: #00a0e4 !important;
    text-align: center;
    padding: 1em;
}

.wpcf7 .wpcf7-submit:disabled {
    opacity: 0.4;
    cursor: default;
}
.wpcf7-not-valid-tip {
    font-size: 1.2em;
    margin: 5px 0 10px;
    background-color: yellow;
    display: inline-block !important;
}

.result_message .top-contact_submit {
    margin-top: 30px;
}
.result_message .top-contact_submit .reset {
        max-width: 250px;
        border: 2px solid #00a0e4;
        font-size: 20px;
        padding: 15px 10px;
        margin: 0 auto 15px auto;
        display: block;
}
.wpcf7-spinner {
    display: none !important;
}

