/*!
Theme Name: kyodo-chikusan
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: kyodo-chikusan
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

kyodo-chikusan is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */


 /* original css */

 * {
	margin: 0;
	padding: 0;
 }

 body {
	font-family: "Noto Sans JP", sans-serif;
	color: #2B2B2B;
	font-size: 14px;
 }

.top-bar {
	width: 95%;
	margin: auto;
	display: flex;
	justify-content: space-between;
	padding-top: 20px;
	padding-bottom: 20px;
}

.logo-box {
	display: block;
	text-decoration: none;
}

.top-logo{
	width: 34px;
}

.header-nav__pc {
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
}

.header-nav__pc li {
	display: inline-block;
	list-style: none;
	margin-right: 20px;
}
.header-nav__pc li a {
	color: #1F3A3D;
	font-weight: 700;
	text-decoration: none;
}

.header-nav__sp {
	display: none;
}

.nav-sp__btn {
	display: none;
} 

@media screen and (max-width: 1025px) {
	.header-nav__pc {
		display: none;
	}

	.nav-sp__btn {
	display: block;
	width: 30px;
	height: 24px;
	position: relative;
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
	z-index: 400;
	margin-right: 10px;
}
	.border-01, .border-02, .border-03 {
		display: block;
		width: 100%;
		border-bottom: solid 1px #3E6E73;
		transition: 0.3s;
	}
	.border-01 {
		position: absolute;
		top: 0;
	}
	.border-03 {
		position: absolute;
		bottom: 0;
	}
	/* 開いた状態 */
	.header-nav__sp.active {
	display: block;
	background: #282828;
	height: 100vh;
	width: 73%;
	position: fixed;
	right: 0;
	top: 0;
	padding-top: 140px;
	z-index: 200;

	}
	/* メニュー　バツアイコンに変更 */
	.nav-sp__btn.active .border-01 {
  transform: rotate(45deg);
  top: 13px;
}

	.nav-sp__btn.active .border-02 {
	opacity: 0;
	}

	.nav-sp__btn.active .border-03 {
	transform: rotate(-45deg);
	bottom: 10px;
	}
	/* メニュー　バツアイコンに変更 end */

	.site-branding {
		position: relative;
	}

	.header-nav__sp li {
		padding: 20px;
		list-style-type: none;
	}

	.header-nav__sp a {
		color: #fff;
		text-decoration: none;
	}
	.top-bar {
		width: 100%;
		position: fixed;
		z-index: 300;
	}
	.top-logo {
    width: 34px;
    margin-left: 10px;
}
}

/* fv */



.fv-sp {
	display: none;
}

.fv-pc_top {
	width: 100%;
	height: 70vh;

	background-image: url("./img/fv_pc.jpg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;

	background-color: #fff;
}

.fv-pc {
	width: 100%;
	height: 70vh; /* 画面いっぱい */
  	object-fit: cover;
}

@media screen and (max-width: 1025px) {
	.fv-box {
	padding-top: 73px;
}
	.fv-sp {
		display: block;
		width: 100%;
	}

	.fv-pc {
		display: none;
	}

	.fv-pc_top {
		display: none;
	}
}

/* about us */

.container_05 {
	position: relative;
  height: 194px;
}

.scrollbar-text_05 {
    display: inline-block;
    position: absolute;
    bottom: -17%;
    padding: 10px 10px 110px;
    color: #3E6E73;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    writing-mode: vertical-lr;
    left: 50%;
    transform: translateX(-50%);
}

.scrollbar_05 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20%;
}

.scrollbar_05::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 100px;
  background: #3E6E73;
  animation: liner 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes liner {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  30% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  70% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.box-blue {
    background-color: #F2F4F5;
    width: 86%;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 50px;
}

.flexbox {
	width: 80%;
	margin: auto;
	display: flex;
	justify-content: space-between;
}

.ttl {
	color: #3E6E73;
	font-weight: 700;
	font-size: 24px;
	border-left: solid 3px #3E6E73;
	padding-left: 20px;
	letter-spacing: 5px;
	margin-bottom: 20px;
}

.flexbox-left, .flexbox-right {
	width: 47%;
}

.flexbox-left {
	padding-top: 20px;
}

.flexbox-right img, .flexbox-right_06 img {
	width: 100%;
}

.hightright {
    display: inline;
    background-color: #fff;
    color: #1F3A3D;
    font-weight: 700;
    font-size: 20px;
    height: 41px;
    line-height: 41px;
    /* padding-left: 10px; */
    padding-right: 10px;
    letter-spacing: 1px;
}

.outline {
	letter-spacing: 1px;
	line-height: 20px;
	display: block;
	padding-top: 15px;
}

.btn-01 {
    border: solid 1px #3E6E73;
    border-radius: 30px;
    width: 60%;
    height: 48px;
    line-height: 48px;
    display: block;
    text-align: center;
    margin-top: 20px;
	color: #3E6E73;
	text-decoration: none;
	font-weight: 700;
}
.btn-01:hover {
    opacity: 50%;
}

.btn-arrow {
	width: 11px;
	margin-left: 3px;
}

@media screen and (max-width: 1025px) {
	.box-blue {
    background-color: #F2F4F5;
    width: 97%;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 50px;
}
.flexbox {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.btn-01 {
    border: solid 1px #3E6E73;
    border-radius: 30px;
    width: 83%;
    height: 48px;
    line-height: 48px;
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #3E6E73;
    text-decoration: none;
    font-weight: 700;
}
.btn-01:hover {
    border: solid 1px #3E6E73;
    border-radius: 30px;
    width: 83%;
    height: 48px;
    line-height: 48px;
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #3E6E73;
    text-decoration: none;
    font-weight: 700;
	opacity: 50%;
}
}

@media screen and (max-width: 786px) {
	.scrollbar-text_05 {
    display: inline-block;
    position: absolute;
    bottom: -17%;
    padding: 10px 10px 110px;
    color: #3E6E73;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    writing-mode: vertical-lr;
    left: 50%;
    transform: translateX(-50%);
}
.scrollbar_05 {
    position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -21%;
}

.container_05 {
	position: relative;
    height: 170px;
}

.box-blue {
    background-color: #F2F4F5;
    width: 95%;
    margin-right: auto;
	margin-left: 0;
    padding-top: 41px;
    padding-bottom: 50px;
}

.flexbox {
    width: 90%;
    margin: auto;
    display: block;
    justify-content: space-between;
}
.flexbox-left, .flexbox-right, .flexbox-right_06 {
    width: 100%;
}
.hightright {
    display: inline;
    background-color: #fff;
    color: #1F3A3D;
    font-weight: 700;
    font-size: 20px;
    height: 41px;
    line-height: 41px;
    padding-right: 10px;
    letter-spacing: 1px;
}

.flexbox-left {
    padding-top: 44px;
    padding-bottom: 30px;
}

.btn-01 {
    border: solid 1px #3E6E73;
    border-radius: 30px;
    width: 85%;
    height: 48px;
    line-height: 48px;
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #3E6E73;
    text-decoration: none;
    font-weight: 700;
}
}

/* メニュー */

.grid-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* gap: 10px; */
    /* max-width: 600px; */
    margin: 0 auto;
}

.btn img {
    width: 100%;
    height: auto;
    display: block;
    /* border-radius: 8px; */
}

/* 下段の横長ボタン */
.wide {
  grid-column: span 3; /* 3列分使う */
}

.menu {
	margin-top: 50px;
	margin-bottom: 50px;
}

.btn img {
  transition: transform 0.2s, opacity 0.2s;
}

.btn:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}

.menu-sp {
	display: none;
}

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

	.menu-pc {
		display: none;
	}

	.menu-sp {
		display: block;
	}

}

/* 採用情報 */

.box-white {
	background-color: #fff;
}

.flexbox_02 {
	flex-direction: row-reverse;
}

.hightright-gray {
	background-color: #F2F4F5;
}

/* footer */

.footer-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.footer-img {
	height: 273px;
}

.footer-info {
    background-color: #474545;
    color: #fff;
    font-weight: 700;
    text-align: center;
	padding-top: 5px;
	padding-bottom: 10px;
}

.footer-address {
	font-weight: 400;
}
.footer-address {
	font-weight: 400;
	font-size: 11px;
}

small {
    display: inline-block;
    font-weight: 300;
    padding-top: 13px;
}

.footer-info p {
	display: block;
	padding-top: 20px;
}

.footer-logo {
	vertical-align: -10px;
}

.footer-img_sp {
	display: none;
}

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

	.footer-img_pc {
		display: none;
	}
	.footer-img_sp {
		display: block;
	}
	.footer-img {
    height: auto;
}

}

/* 協同畜産経営センターについて */

.block {
	display: block;
	padding-top: 10px;
}

.name {
	display: block;
	text-align: right;
	font-weight: 700;
	padding-top: 50px;
}

.message-img_sp {
	display: none;
}

.ttl-02 {
	font-size: 24px;
	text-align: center;
	padding-bottom: 70px;
	padding-top: 50px;
	border-left:0px;
	letter-spacing: 4px;
	color: #3E6E73;
}

.row-reverse {
	flex-direction: row-reverse;
}

.flexbox-right_02 {
	position: relative;
	width: 50%;
}

.flexbox-right_02 img {
	top: -18%;
    position: absolute;
    width: 95%;
}

.box-blue02 {
    margin-bottom: 50px;
    padding-bottom: 25px;
}
@media screen and (max-width: 1025px) {
	.ttl-02 {
    font-size: 24px;
    text-align: center;
    padding-bottom: 104px;
    padding-top: 50px;
    border-left: 0px;
    letter-spacing: 4px;
    color: #3E6E73;
}
		.message-img_pc {
		display: none;
	}
	.message-img_sp {
		display: block;
	}
	.row-reverse {
	display: flex;
    flex-direction: column-reverse;
}
.flexbox-right_02 {
    position: relative;
    width: 115%;
}
    .flexbox-left_02 {
        padding-top: 56%;
        padding-bottom: 30px;
    }
.flexbox-right_02 img {
        top: -121px;
        left: -20%;
        position: absolute;
        width: 94%;
    }

.flexbox-left, .flexbox-right {
        width: 48%;
    }
 .flexbox-right_06 {
        width: 48%;
    }

.flexbox-left-message,.flexbox-right-message{
	width: 100%;
}

}

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

	.flexbox-right_02 img {
    top: -73px;
    position: absolute;
    width: 95%;
}
.flexbox-right_02 {
    position: relative;
    width: 100%;
}
.flexbox-right_02 img {
        top: -105px;
        position: absolute;
        width: 117%;
    }
	.name {
    display: block;
    text-align: right;
    font-weight: 700;
    padding-top: 30px;
}

.flexbox-left, .flexbox-right {
        width: 100%;
    }
}

/* 会社概要 */

.company-box {
	width: 60%;
	margin: auto;
	padding-top: 100px;
	padding-bottom: 100px;
}

.company-box div {
	display: flex;
	justify-content: space-between;
	width: 95%;
	margin: auto;
	border-bottom: solid 1px #3E6E73;
	padding-top: 20px;
	padding-bottom: 20px;
}

.company-box dd, .company-box dt {
	font-size: 16px;
}

.company-box dd {
	width: 20%;
	font-weight: 700;
	color: #1F3A3D;
}
.company-box dt {
	width: 80%;
}

@media screen and (max-width: 1025px) {
	.company-box {
    width: 80%;
    margin: auto;
    padding-top: 100px;
    padding-bottom: 100px;
}

}

@media screen and (max-width: 786px) {
	.company-box {
    width: 90%;
    margin: auto;
    padding-top: 70px;
    padding-bottom: 70px;
}
.company-box div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 95%;
    margin: auto;
    border-bottom: solid 1px #3E6E73;
    padding-top: 20px;
    padding-bottom: 20px;
}
.company-box dd {
	width: 20%;
	font-weight: 700;
	color: #1F3A3D;
	padding-bottom: 15px;
}
}

/* 養豚事業 */

.margin {
	margin-top: 100px;
}

.box-blue03 {
	padding-bottom: 50px;
	margin: 100px 0 50px 0;
	width: 86%;
}

.flexbox-right_03 {
    position: relative;
    width: 15%;
}

.flexbox-right_03 img {
    top: -7%;
    right: -161%;
    position: absolute;
    width: 281%;
}



.flexbox-left_03 {
	width: 66%;
}

.box-blue04 {
    padding-bottom: 50px;
    margin: 57px 0 50px auto;
    width: 86%;
}

.flexbox-right_04 img {
    top: -7%;
    left: -48%;
    position: absolute;
    width: 281%;
}

.pig-img {
	display: block;
}

.flexbox-right_05 img {
    top: -51%;
    right: -41%;
    position: absolute;
    width: 281%;
}


@media screen and (max-width: 1025px) {
	.flexbox-right_03 {
    position: relative;
    width: 20%;
}
.flexbox-right_04 img {
    top: 4%;
    left: -41%;
    position: absolute;
    width: 258%;
}

.row-reverse02 {
	flex-direction: row-reverse;
}
.flexbox-right_05 img {
    top: -3%;
    position: absolute;
    width: 264%;
	left: -119%;
}

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

	.box-blue03 {
    padding-bottom: 50px;
    margin: 21px 0 15px 0;
    width: 86%;
}

.flexbox-04 {
	width: 95%;
	padding-top: 42px;
}

.flexbox-right_04 {
	width: 100%;;
}

.flexbox-right_03 img {
    position: static;
    width: 123%;
    margin-top: 0px;
}

.reverse_sp {
	display: flex;
	flex-direction: column;
}

.flexbox-right_05 {
	width: 100%;
}


}

/* 養豚事業 -feature- */

section {
	padding-top: 30px;
	margin: auto;
	width: 70%;
	padding-bottom: 30px;

}

.small-ttl {
    display: block;
    font-size: 11px;
    padding-top: 5px;
}

.feature-box  {
	display: flex;
	justify-content: space-between;

}

.feature-box li {
	  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
	  list-style: none;
	width:49%;

}

.feature-box img {
	width: 100%;
}

.feature-box h3 {
    color: #3E6E73;
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
}

.label-feature {
	height: 24px;
	line-height: 24px;
	font-size: 13px;
	display: block;
	color: #fff;
	background-color: #3E6E73;
	width: 113px;
	text-align: center;
	font-weight: 700;
	border-radius: 20px;
	margin: 0 auto 10px auto;
	letter-spacing: 1px;
}

.feature-box p {
	display: block;
	width: 90%;
	margin: auto;
	padding-bottom: 20px;
	line-height: 20px;
}

.border-feature {
	display: block;
	border-bottom: 3px solid #3E6E73;
	width: 60px;
	margin: auto;
	height: 15px;
}

.padding-top {
	padding-top: 58px;
}

.margin-bottom {
	margin: 0 auto 50px auto;
}

.margin-bottom-0 {
	margin-bottom: 0px;
}

@media screen and (max-width: 1025px) {
	.padding-top_tb {
		padding-top: 2%;
	}
	section {
    padding-top: 30px;
    margin: auto;
    width: 90%;
    padding-bottom: 30px;
}

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

	section {
    padding-top: 30px;
    margin: auto;
    width: 90%;
    padding-bottom: 30px;
}
.feature-box {
    display: block;
    justify-content: space-between;
}

.feature-box li {
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
    list-style: none;
    width: 100%;
    margin-bottom: 20px;
}
}

/* 堆肥づくり事業 */

.composing-flow_sec {
	width: 90%;
	margin: auto;
}

.flow-num {
	border: solid #3E6E73 1px;
	border-radius: 50%;
	width: 33px;
	height: 33px;
	display: block;
	margin: 0 auto 5px auto;
	line-height: 33px;
	text-align: center;
}

.flow-box_wrap h3, .flow-textbox h3 {
	color: #3E6E73;
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 1px;
	margin: auto;
	text-align: center;
	padding-bottom: 10px;
	padding-top: 5px;
}

.flow-box_wrap {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.flow-box_wrap li {
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
	padding: 10px 20px 20px 20px;
	width: 15%;
	list-style: none;
	text-align: center;
	position: relative;
	flex: 1;

}

/* 横の点線 */
.flow-box_wrap li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  width: 20px; /* gapと同じ値 */
  height: 1px;
  border-top: 1px dashed #3E6E73;
}

/* 最後は消す */
.flow-box_wrap li:last-child::after {
  display: none;
}

.flow-box_wrap__sp {
	display: none;
}

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

	.flow-box_pc {
		display: none;
	}

	.flow-box_wrap__sp {
		display: block;
	}

	.flow-num {
		position: relative;
	}

	.flow-box_wrap__sp li {
		list-style: none;
		display: flex;
		justify-content: space-between;
		width: 90%;
		margin: auto;
		gap: 15px;
		padding-bottom: 30px;
	}

	.flow-textbox {
		width: 80%;
		text-align: left;
	}

	.flow-textbox h3 {
		text-align: left;
	}

	.ttl-03 {
		padding-bottom: 45px;
	}

	/* 点線（丸から下に伸ばす） */
.flow-num::after {
  content: "";
  position: absolute;
  top: 33px; /* 丸の下から */
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: calc(100% + 30px); /* 次のliまで */
  border-left: 1px dashed #3E6E73;
}

/* 最後の丸は線なし */
.flow-box_wrap__sp li:last-child .flow-num::after {
  display: none;
}	

}

.feature-box {
	flex-wrap: wrap;
    gap: 14px;
}

/* 浄化槽(環境整備)事業 */

.spetic-list-box {
	width: 100%;
	margin: auto;
	display: flex;
	justify-content: space-between;
}

.spetic-list-box li {
	width: 27%;
	background-color: #F2F4F5;
	padding: 20px;
	list-style: none;
}

.list-icon {
	width: 30%;
	position: relative;
}

.list-icon img {
	position: absolute;
	width: 122%;
	right: -51%;
}

.list-flexbox-ttl {
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    line-height: 25px;
    border-bottom: 3px solid #3E6E73;
    margin-bottom: 14px;
    padding-bottom: 10px;
    width: 85%;
}

.spetic-list-flexbox{
	display: flex;
	justify-content: space-between;
}

.spetic-list-box p {
	line-height: 20px;
}

.color-white {
	background-color: #fff;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}

.ttl-04 {
	font-size: 16px;
    height: 31px;
    padding: 0 0 0 15px;
    line-height: 31px;
}

.spetic-list-box-02 {
	flex-wrap: wrap;
	gap: 10px;
	justify-content: space-around;
}

.spetic-list-box-02 li {
	width: 44%;
}
@media screen and (max-width: 1025px) {
	.spetic-list-box {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.list-icon img {
    position: absolute;
    width: 109%;
    right: -45%;
    top: -15%;
}
.spetic-list-box li {
    width: 41%;
    background-color: #F2F4F5;
    padding: 20px;
    list-style: none;
    margin-bottom: 21px;
}
}
@media screen and (max-width: 786px) {
	.spetic-list-box {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.list-icon img {
    position: absolute;
    width: 98%;
    right: -4%;
    top: -15%;
}
.spetic-list-box li {
    width: 100%;
    background-color: #F2F4F5;
    padding: 20px;
    box-sizing: border-box;
    list-style: none;
	margin-bottom: 20px;
}
}

/* 採用情報 */

.small-recruit {
	display: block;
}

/* プライバシーポリシー */

.policy-link {
	color: #fff;
	font-size: 10px;
	display: block;
	font-weight: 300;
	text-align: center;
	padding-top: 10px;
}

.policy-sec p {
	padding-bottom: 20px;
	line-height: 20px;
}

.policy-sec h2 {
	color: #3E6E73;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 1px;
	padding-bottom: 10px;
}

.policy-sec ul, .policy-sec ol {
	padding-bottom: 20px;
	padding-left: 20px;
}

/* contact */

.form {
	padding-top: 50px;
	width: 55%;
	margin: auto;
	padding-bottom: 50px;
}

.form-ttl {
	color: #1F3A3D;
	font-weight: 700;
	margin-bottom: 10px;
	margin-top: 15px;
}

.privacy-policy {
	color: #1F3A3D;
}

.text-box-contact {
    display: block;
    border: #2B2B2B solid 0.5px;
    border-radius: 3px;
    width: 100%;
    margin-bottom: 10px;
	height: 40px;
}

.text-box-free {
    height: 300px;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}

.privacy-desc {
	display: block;
	width: 100%;
	text-align: center;
}

.submit-btn {
    border: solid 1px #3E6E73;
    border-radius: 30px;
    width: 60%;
    height: 48px;
    line-height: 48px;
    display: block;
    text-align: center;
    margin-top: 20px;
	color: #3E6E73;
	text-decoration: none;
	font-weight: 700;
	background-color: #fff;
	margin: 20px auto 0 auto;
}
.submit-btn:hover {
    border: solid 1px #3E6E73;
    border-radius: 30px;
    width: 60%;
    height: 48px;
    line-height: 48px;
    display: block;
    text-align: center;
    margin-top: 20px;
	color: #3E6E73;
	text-decoration: none;
	font-weight: 700;
	background-color: #fff;
	margin: 20px auto 0 auto;
	opacity: 50%;
}

@media screen and (max-width: 1025px) {
	.form {
	width: 90%;
}
.submit-btn {
	width: 90%;
}
}