@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;700&display=swap");
/*
 Theme Name:  noguchi
*/
/* reset
------------------------------ */
html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, a, img, dl, dt, dd, ol, ul, li, sub, sup, i, small, address, time, fieldset, form, label, legend, hr, table, caption, tbody, tfoot, thead, tr, th, td, header, footer, nav, section, article, aside, figure, figcaption, canvas, audio, video {
  font-style: normal;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: middle;
}
ul, ol, li {
  list-style: none;
}
a {
  position: relative;
  color: inherit;
  text-decoration: none;
  -webkit-transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
  transition: All 0.5s ease;
}
img {
  max-width: 100%;
  height: auto;
  transition:
    all 0.5s ease, opacity 0.5s ease;
  -webkit-transition:
    all 0.5s ease, opacity 0.5s ease;
  object-fit: cover;
}
table {
  width: 100%;
  border-collapse: collapse;
}
table th {
  width: 25%;
  vertical-align: middle;
}
table th, table td {
  padding: 20px 2%;
  box-sizing: border-box;
  border-top: 1px solid #dcdcdc;
  text-align: left;
}
table tr:last-of-type th, table tr:last-of-type td {
  border-bottom: 1px solid #dcdcdc;
}
/* common
------------------------------ */
body {
  font:
    13px/1.65em "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", meiryo, sans-serif;
  color: #000;
  -webkit-font-smoothing: antialiased;
}
main {
  display: block;
}
section {
  margin-bottom: 8vw;
}
.scrollin {
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  transition: all 0.8s;
  -webkit-transition: all 0.8s;
  opacity: 0;
}
.scrollin.view {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}
h1, h2, h3, h4 {
  font-family: "Shippori Mincho", serif;
  font-weight: bold;
  letter-spacing: 0.01em;
}
h1, #top h2 {
  font-size: 2em;
  line-height: 1.4em;
  margin-bottom: 4vw;
}
h1 span, #top h2 span {
  font:
    0.4em "Noto Sans JP", "sans-serif";
  font-weight: bold;
  letter-spacing: 0;
  display: block;
  color: #2c9fe9;
}
h2 {
  font-size: 1.55em;
  margin-bottom: 3.5vw;
}
h3 {
  font-size: 1.3em;
  margin-bottom: 2vw;
}
h4 {
  font-size: 1.1em;
  color: #2c9fe9;
  margin-bottom: 1vw;
}
#breadcrumb {
  display: none;
}
.min {
  font-family: "Shippori Mincho", serif;
}
.forPC {
  display: none !important;
}
.inner {
  width: 100%;
  padding: 0 4%;
  box-sizing: border-box;
}
.under #mainvisual {
  padding: 18vw 4% 8vw;
  background: url("/assets/img/common/bg_ring.png") no-repeat bottom 5px right 2vw/80%, #f5fbfe;
  margin-bottom: 10vw;
}
.clear .half-left {
  margin-bottom: 6vw;
}
.bg-sky {
  background-color: #f5fbfe;
}
.btn a {
  font:
    1.02em "Shippori Mincho", serif;
  font-weight: bold;
  display: inline-block;
  width: 100%;
  color: #fff;
  padding: 18px;
  box-sizing: border-box;
  background-color: #2c9fe9;
  border-radius: 30px;
}
.btn a img {
  float: right;
  width: 20px;
}
.btn-area .btn {
  display: inline-block;
  width: 49%;
}
.mb00 {
  margin-bottom: 0;
}
.mb10 {
  margin-bottom: 2vw;
}
.mb30 {
  margin-bottom: 4vw;
}
.mb50 {
  margin-bottom: 8vw;
}
.mb70 {
  margin-bottom: 10vw;
}
.tR {
  text-align: right;
}
.tC {
  text-align: center;
}
.wp-pagenavi {
  text-align: center;
}
.wp-pagenavi a, .wp-pagenavi span {
  display: inline-block;
  width: 35px;
  line-height: 35px;
  color: #2c9fe9;
  text-decoration: none;
  padding: 0;
  margin: 2px;
  border: solid 1px #2c9fe9;
  border-radius: 50%;
}
.wp-pagenavi span.current {
  color: #fff;
  background-color: #2c9fe9;
}
.wp-pagenavi .prev, .wp-pagenavi .next {
  position: relative;
  border: none;
  width: 12px;
  margin: 0 12px;
}
/* header
------------------------------ */
header {
  position: absolute;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.3s ease 0s;
  z-index: 10;
}
header.small {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  animation-duration: 1s;
  animation-name: UpToDown;
}
@keyframes UpToDown {
  0% {
    opacity: 0;
    /* 透明 */
    transform: translateY(-50px);
    /* Y軸方向に50px */
  }
  100% {
    opacity: 1;
    /* 不透明 */
    transform: translateY(0);
  }
}
header #logo {
	position: relative;
  float: left;
  width: 140px;
  margin: 2vw 0 3vw 2vw;
	z-index: 1;
}
header nav {
	position: fixed;
  top: 0;
  font-size: 1.2em;
  font-weight: 500;
	width: 100%;
  height: 100vh;
  padding: calc(85px + 3vw) 15vw 5vw;
	box-sizing: border-box;
  background-color: #fff;
        overflow-x: hidden;
        overflow-y: auto;
	transform: translate(100%, 0);
        transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1), visibility 0.6s, opacity 0.6s;
}
header nav.nav_open {
        transform: translate(0, 0);
}
header nav ul li {
  border-top: 1px solid rgba(0, 128, 217, 0.15);
}
header nav ul li:last-of-type {
  border-bottom: 1px solid rgba(0, 128, 217, 0.15);
}
header nav ul li a,header nav > ul > li:last-of-type {
  display: block;
  padding: 5vw 2vw;
}
header nav ul li .child {
	display: block;
  visibility: hidden;
  opacity: 0;
  max-height: 0; /* 高さを0にして完全に隠す */
  overflow: hidden;
  transition: all 1s ease;
}
header nav ul li.is-open > .child {
  visibility: visible;
  opacity: 1;
  max-height: 50em; /* 子メニューが収まる十分な高さを確保 */
}
header nav ul li .child li{
	border: none;
}
header nav ul li .child li a {
  font-size: 0.9em;
  font-weight: normal;
	color: #8c8c8c;
	padding: 1vw 0;
}
header nav ul li .child li:first-child a{
	margin-top: 3vw;
}
header nav p {
  margin-top: 5vw;
}
header nav p a {
  display: block;
  color: #fff;
  padding: 14px;
  box-sizing: border-box;
  background-color: #2c9fe9;
  border-radius: 30px;
  text-align: center;
}
header #menu {
  width: 30px;
  height: 30px;
  background: url(/assets/img/common/menu.png) no-repeat center / cover;
  position: absolute;
  z-index: 10;
  top: 1.8vw;
  right: 3vw;
  transition: all 0.3s; /*表示の変化を0.3秒に指定*/
}
header #menu.close {
  background: url(/assets/img/common/close.png) no-repeat center / cover;
}
/* footer
------------------------------ */
footer {
  margin-top: 15vw;
  padding: 14vw 0 8vw;
  background:
    url("/assets/img/common/bg_footer.png") no-repeat left 1% bottom/50%, #f7f7f7;
}
footer .inner #foot-logo {
  width: 200px;
}
footer .inner #foot-logo + p {
  font-size: 1.3em;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 8vw;
}
footer .inner #foot-logo + p small {
  color: #8c8c8c;
  letter-spacing: 0;
}
footer > div div {
  margin-top: 8vw;
}
footer > div div ul li {
  margin-bottom: 1vw;
}
footer > div div ul {
  display: inline-block;
  width: 46%;
  vertical-align: top;
  margin-left: 2%;
}
footer > div div ul li.child {
  font-size: 0.87em;
  color: #8c8c8c;
  margin: 3px 0 0 0;
}
footer > div div ul li.child img {
  width: 12px;
  margin-left: 5px;
}
footer > div div #copyright {
  font-size: 0.75em;
  color: #8c8c8c;
  margin-top: 8vw;
  padding-bottom: 5vw;
  text-align: center;
}
/* top
------------------------------ */
#top #mainvisual {
  position: relative;
  height: 60vh;
}
#top #mainvisual .slick-initialized .slick-slide {
  height: 60vh;
}
#top #mainvisual h1 {
  position: absolute;
  top: calc(62px + 8vw);
  left: 2.5vw;
  width: 70%;
}
#top #mainvisual .scroll {
  display: none;
}
#top #top-about .half-right p:first-of-type {
  line-height: 2em;
}
#top #top-about .scroll-container {
  position: relative;
  bottom: 1vw;
  display: flex;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  z-index: -1;
}
#top #top-about .scroll-content {
  display: flex;
  animation: scroll 100s linear infinite;
}
#top #top-about .item {
  flex: 0 0 auto;
  width: 1000px;
  margin: 0 10px; /*左右の余白はここを調整*/
  text-align: center;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
#top #top-business {
  padding: 10vw 0;
  background:
    url(/assets/img/common/bg_ring.png) no-repeat bottom 25px right 2vw / 90%, #f5fbfe;
}
#top #top-business ul li {
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  height: 34vh;
  color: #fff;
  padding: 6vw 6vw 3vw;
  box-sizing: border-box;
  margin-top: 5%;
  border-radius: 10px;
  text-align: left;
}
#top #top-business ul li:nth-of-type(1) {
  background: url(/assets/img/top/img_business_01_sp.jpg) no-repeat center/cover;
}
#top #top-business ul li:nth-of-type(2) {
  background: url(/assets/img/top/img_business_02_sp.jpg) no-repeat center/cover;
}
#top #top-business ul li:nth-of-type(3) {
  background: url(/assets/img/top/img_business_03_sp.jpg) no-repeat center/cover;
}
#top #top-business ul li:nth-of-type(4) {
  background: url(/assets/img/top/img_business_04_sp.jpg) no-repeat center/cover;
}
#top #top-business ul li:nth-of-type(5) {
  background: url(/assets/img/top/img_business_05_sp.jpg) no-repeat center/cover;
}
#top #top-business ul li h3 {
  font-size: 1.6em;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", meiryo, sans-serif;
  font-feature-settings: "palt"1;
}
#top #top-business ul li p {
  line-height: 1.5em;
  margin-top: auto;
}
#top #recruit {
  padding-bottom: 25vw;
  background: url(/assets/img/top/bg_recruit.jpg) no-repeat bottom 5vw right 2vw / 90%;
}
#top #recruit ul li {
  border-top: solid 1px #ccc;
}
#top #recruit ul li:last-of-type {
  border-bottom: solid 1px #ccc;
}
#top #recruit ul li h3 {
  margin-bottom: 0;
}
#top #recruit ul li h3 a {
  display: block;
  padding: 18px 10px;
  background: url(/assets/img/common/ico_arrow_blue.png) no-repeat right center/20px;
}
/* company
------------------------------ */
#company #policy ol li {
  font-size: 1.3em;
  margin-top: 2vw;
}
#company #policy ol li:before {
  content: "●";
  font-size: 0.7em;
  color: #0078e4;
  margin-right: 5px;
}
#company iframe {
  height: 100vw;
}
#company #csr ul li {
  display: inline-block;
  width: 48%;
  margin-right: 1%;
}
#company #csr ul li:nth-of-type(even) {
  margin-right: 0;
}
/* business
------------------------------ */
#business .clear .half-left {
  margin-bottom: 4vw;
}
/* works
------------------------------ */
#works #mainvisual {
  margin-bottom: 5vw;
}
#works .list li {
  display: inline-block;
  width: 48%;
  margin: 0 2% 8% 0;
  vertical-align: top;
}
#works .list li:nth-of-type(even) {
  margin-right: 0;
}
#works .list li a figure {
  margin-bottom: 4%;
  border-radius: 7px;
  overflow: hidden;
}
#works .list li a figure img {
  width: 100%;
  height: 28vw;
  object-fit: cover;
}
#works .list li a span {
  display: inline-block;
  font-size: 0.8em;
  line-height: 1;
  color: #2c9fe9;
  padding: 5px 10px;
  box-sizing: border-box;
  border-radius: 10px;
	margin-right:3px;
  text-align: center;
}
#works .list li a p {
  margin-top: 5px;
}
#works .select li {
  width: auto;
  margin: 0;
}
#works .select li a span.active {
  color: #fff;
  background-color: #2c9fe9;
}
#works .select li:first-of-type a span {
  color: initial;
  background-color: #f7f7f7;
}
/* works-detail
------------------------------ */
#works-detail #mainvisual, #news-detail #mainvisual {
  margin-bottom: 0vw;
  background: none;
}
#works-detail #mainvisual > span {
  display: inline-block;
  font-size: 0.9em;
  line-height: 1;
  color: #2c9fe9;
  padding: 5px 10px;
  box-sizing: border-box;
  border-radius: 10px;
  background-color: #edf7fd;
	margin-right:3px;
  text-align: center;
}
#works-detail #mainvisual > h1 {
  margin-bottom: 0;
}
#works-detail .slider li {
  width: 100%;
  height: 12.5rem;
  border-radius: 10px;
  overflow: hidden;
}
#works-detail .slider li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#works-detail .thumbnail {
  margin: 3% 0 7vw;
}
#works-detail .thumbnail .slick-track {
  width: 100% !important;
  margin: 0;
  transform: none !important;
}
#works-detail .thumbnail li {
  width: 18.9% !important;
  height: 13vw;
  margin: 2px 0.5vw;
  border-radius: 3px;
  overflow: hidden;
  opacity: 0.5;
}
#works-detail .thumbnail li img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
}
#works-detail .thumbnail li.slick-current {
  opacity: 1;
}
#works-detail table th, #works-detail table td {
  padding: 12px 2%;
}
#works-detail .bg-sky.mb50 {
  padding: 8vw;
}
/* recruit-common
------------------------------ */
.under.recruit h1, .under.recruit h2, .under.recruit h3, .under.recruit h4 {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", meiryo, sans-serif;
}
.under.recruit #mainvisual {
  padding: 18vw 0 8vw;
  color: #fff;
  background:
    url("/assets/img/common/bg_ring_recruit.png") no-repeat bottom 5px right 2vw/80%, linear-gradient(to top, #2c9fe9, #64dbef);
}
.under.recruit #mainvisual h1 {
  font-size: 2.4em;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", meiryo, sans-serif;
  letter-spacing: 0.08em;
}
.under.recruit #mainvisual h1 span, .under.recruit #mainvisual #breadcrumb li a {
  color: #fff;
}
.under.recruit #mainvisual #breadcrumb li:before {
  background-color: #fff;
}
/* recruit-message
------------------------------ */
#message #comment p {
  line-height: 1.8em;
  text-align: justify;
}
#message #benefit .bg-sky {
  padding: 6vw;
}
#message #benefit .bg-sky ul li {
  display: inline-block;
  font-size: 0.9em;
  font-weight: bold;
  color: #fff;
  width: auto;
  padding: 0px 5px;
  background-color: #2c9fe9;
  border-radius: 5px;
  margin: 3px 1px 0 0;
}
#message p + ul li {
  margin-bottom: 6vw;
}
#message p + ul li img {
  border-radius: 3%;
}
/* recruit-number
------------------------------ */
#number h2, #number h3 {
  color: #2c9fe9;
  margin-bottom: 1vw;
  text-align: left;
}
#number h4 {
  color: #000;
}
#number .num-box {
  display: flex;
  justify-content: center;
  align-items: baseline;
  font-weight: bold;
  color: #0078e4;
}
#number .num-box .num {
  font-size: 3rem;
  font-family: "Lato", sans-serif;
}
#number .num-box .unit {
  font-size: 2rem;
}
#number section.bg-sky {
  padding: 6vw 0;
}
#number section:nth-of-type(2) .inner > div {
  padding: 4vw 4vw 3vw;
}
#number section:nth-of-type(2) .inner > div:first-of-type .num-box {
  margin: 8vw 0;
}
#number section:nth-of-type(2) .inner > div:nth-of-type(2) .clear, #number section:nth-of-type(2) .inner > div:nth-of-type(3) .clear {
  padding-bottom: 20px;
  text-align: center;
}
#number section:nth-of-type(2) .inner > div:nth-of-type(2) .clear .half-left h4 {
  margin: 3vw 0;
}
#number section:nth-of-type(2) .inner > div:nth-of-type(2) .clear .half-left .num-box .num {
  font-size: 5rem;
}
#number section:nth-of-type(2) .inner > div:nth-of-type(2) .clear .half-left .num-box .unit {
  font-size: 2.8rem;
}
#number section:nth-of-type(2) .inner > div:nth-of-type(2) .clear .half-left .num-box p {
  font-weight: normal;
  color: #000;
}
#number section.bg-sky .inner ul li, #number section.bg-sky .inner .clear > div {
  padding: 5vw;
  box-sizing: border-box;
  background-color: #fff;
}
#number section.bg-sky .inner ul li {
  margin-bottom: 4%;
}
#number section.bg-sky .inner ul li img {
  height: 10vw;
  margin-right: 10px;
}
#number section.bg-sky .inner ul li .num-box {
  display: inline-flex;
}
#number section.bg-sky .inner .clear .half-left {
  margin-bottom: 3vw;
}
#number section.bg-sky .inner .clear .half-left.new .flex {
  display: flex;
  justify-content: space-around;
}
#number section.bg-sky .inner .clear .half-left.new .flex img {
  height: 20vw;
  margin: 5vw auto 4vw;
}
/* recruit-interview
------------------------------ */
#interview > .inner {
  position: relative;
}
#interview #question {
  margin-bottom: 5vw;
  padding: 5vw;
  box-sizing: border-box;
  background-color: #f7f7f7;
  border-radius: 10px;
  z-index: 10;
}
#interview #question h4 {
  color: #000;
}
#interview #question ol {
  overflow: hidden;
}
#interview #question ol li {
  float: left;
  list-style-type: decimal;
  margin: 0 2vw 0 20px;
}
#interview #question ol li::marker {
  font-weight: bold;
}
#interview .answer {
  margin-left: 0 !important;
}
#interview .answer figure {
  position: relative;
}
#interview .answer figure div {
  position: absolute;
  bottom: 0;
  color: #fff;
  padding: 1.1vw 2vw 1vw;
  background-color: #0078e4;
}
#interview .answer figure.none div {
  position: inherit;
  width: 60%;
}
#interview .answer figure div h4 {
  display: inline-block;
  color: #fff;
  margin-right: 5px;
}
#interview .answer figure div small:first-of-type {
  line-height: 1em;
}
#interview .answer figure.none div small:first-of-type {
  display: inline;
}
#interview .answer ol li {
  position: relative;
  line-height: 1.6em;
  padding-left: 36px;
  margin-bottom: 12px;
}
#interview .answer ol li:before {
  position: absolute;
  left: 0;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  width: 30px;
  line-height: 30px;
  color: #0078e4;
  border-radius: 30px;
  background-color: #edf7fd;
  text-align: center;
}
#interview .answer ol li:first-of-type:before {
  content: "1";
}
#interview .answer ol li:nth-of-type(2):before {
  content: "2";
}
#interview .answer ol li:nth-of-type(3):before {
  content: "3";
}
#interview .answer ol li:nth-of-type(4):before {
  content: "4";
}
#interview .answer ol li:nth-of-type(5):before {
  content: "5";
}
#interview .answer ol li:nth-of-type(6):before {
  content: "6";
}
#interview .answer ol li:nth-of-type(7):before {
  content: "7";
}
#interview .answer ol li:nth-of-type(8):before {
  content: "8";
}
#interview .answer ol li:nth-of-type(9):before {
  content: "9";
}
/* recruit-job
------------------------------ */
#job #day ol li {
  position: relative;
  margin-bottom: 20%;
}
#job #day ol li:after {
  content: "";
  position: absolute;
  bottom: -14%;
  left: calc(50% - 10px);
  right: 0;
  width: 20px;
  height: 20px;
  background: url(/assets/img/common/ico_arrow_blue_next.jpg) no-repeat center / 20px;
  transform: rotate(90deg); /* 回転 */
}
#job #day ol li:last-of-type:after {
  content: none;
}
#job #day ol li img {
  display: block;
  width: 60%;
  margin: 0 auto 4%;
}
#job #day ol li div h4 small {
  color: #000;
  margin-right: 10px;
}
/* recruit-summary
------------------------------ */
#summary h3 span {
  font-size: 0.6em;
  font-weight: normal;
  letter-spacing: 0;
  padding: 5px 12px;
  box-sizing: border-box;
  border-radius: 15px;
  margin-left: 10px;
}
#summary h3 span.new {
  color: #2c9fe9;
  background-color: #edf7fd;
}
#summary h3 span.carrer {
  color: #0078e4;
  background-color: #ecf5fc;
}
#summary #flow ol li {
  position: relative;
  letter-spacing: 0.05em;
  padding: 4%;
  background-color: #edf7fd;
  margin-bottom: 8vw;
}
#summary #flow ol li:after {
  content: "";
  position: absolute;
  bottom: -6vw;
  left: calc(50% - 7px);
  width: 14px;
  height: 14px;
  background: url(/assets/img/common/ico_arrow_blue_next.jpg) no-repeat center / 14px;
  transform: rotate(90deg);
}
#summary #flow ol li:last-of-type:after {
  content: none;
}
#summary .bg-sky{
	padding: 8vw;
	box-sizing: border-box;
	margin: 0 auto 8vw;
}
#summary .bg-sky h2{
	color: #2c9fe9;
}
/* member
------------------------------ */
#member h2 {
  font-size: 1.4em;
  padding-bottom: 8px;
  border-bottom: solid 2px #2c9fe9;
}
#member form table th, #member form table td {
  padding: 10px 2%;
}
#member #download .inner div {
  display: inline-block;
  margin-bottom: 5vw;
  vertical-align: top;
}
#member #download .inner ul li {
  list-style-type: disc;
  margin-left: 20px;
}
#member #download .inner ul li a {
  text-decoration: underline;
}
#member #download .inner ul li a img {
  width: 14px;
  margin: -1px 0 0 4px;
}
/* member-news
------------------------------ */
#news .inner ul li {
  width: 100%;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#news .inner ul li a {
  padding-left: 20px;
  background: url(/assets/img/common/ico_arrow_blue.png) no-repeat left bottom / 14px;
}
#news .inner ul li a span {
  margin-right: 15px;
  vertical-align: top;
}
#news-detail #mainvisual h1 {
  font-size: 1.8em;
}
#news-detail section:nth-of-type(2) p {
  margin-bottom: 1vw;
}
#news-detail section:nth-of-type(2) .btn {
  margin-top: 4vw;
}
/* contact
------------------------------ */
#contact dl dt span {
  font-size: 1.2em;
  letter-spacing: 0;
  color: #ff0000;
  margin: -4px 0 0 2px;
}
#contact dl dt small {
  line-height: 1.6em;
  letter-spacing: -0.05em;
}
#contact dl.item dd, #contact dl.item dd label {
  display: flex;
}
#contact dl.item dd label {
  margin-right: 10px;
}
#contact #privacy {
  height: 38vh;
  padding: 8vw;
  box-sizing: border-box;
  overflow-y: scroll;
  border: solid 1px #ccc;
}
#contact #privacy h4 {
  margin-top: 3vh;
}
input[type="text"], textarea, input[type="tel"], input[type="email"] {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border: 1px #ccc solid;
}
input#zip {
  width: 40%;
  margin-bottom: 5px;
}
input[type="submit"], input[type="button"] {
  font-size: 1.1em;
  font-weight: bold;
  background-color: #888;
  width: 100%;
  color: #fff;
  padding: 15px 0;
  box-sizing: border-box;
  border: none;
  margin: 0 0.5%;
  border-radius: 30px;
  text-align: center;
  cursor: pointer;
  transition: All 0.5s ease;
}
input[type="submit"] {
  background-color: #0078e4;
  background-image: none;
}
textarea {
  width: 100%;
  height: 250px;
}
::placeholder {
  color: #bbb;
}
.wpcf7c-force-hide {
  display: none !important;
}
.wpcf7-list-item {
  margin: 0 !important;
}