body  {
}

body * {
  box-sizing:border-box;
  color: #fff;
  font-family: "noto-sans-cjk-jp","lato", sans-serif;
  font-style: normal;
}

a {
  display: block;
transition: .3s;
  position: relative;
}

a:hover {
  opacity: .5;
}


.pagination {
  text-align: center;
  margin-top: 80px;
  display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.pagination a {
  display: inline-block;
  padding: 5px 10px;
  margin: 0 5px;
  border: 1px solid #fff;
  text-decoration: none;
  color: #fff;
  padding: 20px 15px;
}

.pagination a:hover {
  background-color: #fff;
  color: #0071BC;
}

.pagination .current {
  font-weight: bold;
  background-color: #fff;
  color: #0071BC;
  padding: 20px 15px;
}

.breadcrumb {
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb li {
    display: inline;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.sub_hero ol {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.breadcrumb li:after {
    content: '>';
    padding: 0 10px;
}
.breadcrumb li:last-child:after {
    content: '';
}

.wrap {
  overflow: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-bottom: 30px;
  background: none;
  z-index: 1000;
  transition: .5s;
}

.header-color {

      background: #0f5510;
  opacity: .9;
}

.subheader.header-color {
  background: #1a1a1a;
}

.header-top {
  width: 90%;
  margin: auto;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  padding-top: 30px;
}

.logo img {
    width: 240px;
}

.logo-img-top {
    width: 300px !important;
    margin-bottom: 15px;
}

.logo-link-top {
    display: inline-block;
}

.header-menu {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  margin-left: auto;
}

.menu-list p {
    font-size: 1.2rem;
    letter-spacing: 3px;
    padding: 20px 20px;
    transition: .3s;
    color: #fff;
}

.menu-list img {
  width: 100px;
  padding: 0 25px;
  transition: .3s;
}

.hero {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
}

.top-img {
  width: 100%;
}

.top-img img {
  width: 100%;
}

.hero-title {
  position: absolute;
  top: 45%;
  right: 10%;

}

.hero-title p {
    font-size: 6rem;
    letter-spacing: 10px;
    text-align: right;
    line-height: 7rem;
    font-weight: 400;
    color: #fff;
}



/*============
nav
=============*/
.hb-menu {
  display: none;
}

nav.hbnav {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  background: #1a1a1a;
  transition: all .5s;
  z-index: 3;
  opacity: 0;

}


.open nav {
  left: 0;
  opacity: 1;
}
nav .inner {
  padding: 25px;
}
nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #fff;
}
nav .inner ul li a {
  display: block;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 20px;
  text-decoration: none;
  transition-duration: 0.2s;
  text-align: center;
}
nav .inner ul li a:hover {
  background: #e4e4e4;
}

p.hb-title {
    font-size: 1.2rem;
    font-weight: bold;
    padding-top: 50px;
    letter-spacing: 3px;
    line-height: 3rem;
    color: #333;
    text-align: center;
}


@media screen and (max-width: 767px) {
  nav.hbnav {

    width: 220px;
  }

}
/*============
.toggle_btn
=============*/
.toggle_btn {
    display: block;
    position: absolute;
    top: 50px;
    right: 50px;
    width: 40px;
    height: 30px;
    transition: all .5s;
    cursor: pointer;
    z-index: 3;

}

.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 45px;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  transition: all .5s;

}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 21px;
}
.toggle_btn span:nth-child(3) {
  bottom: -9px;
}
.open .toggle_btn span {
  background-color: #fff;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(17px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-16px) rotate(315deg);
}

/* recaptcha */
.recaptcha p {
  margin-top: 10px;
  font-size: .8rem;
  line-height: 1.2rem;
}
.recaptcha a {
  margin-top: 10px;
  font-size: .8rem;
  line-height: 1.2rem;
}

.grecaptcha-badge { visibility: hidden; }



/* top */
.head_container {
    background: #0f5510;
padding-bottom: 250px;
}

.hero_img {
  width: 90%;
  margin: auto;
  padding-top: 180px;
}

.hero_img img{
  width: 100%;
}

.top_text {
  position: absolute;
  bottom: -180px;
  left: 10%;
}

.top_text h3 {
  font-size: 4rem;
  color:rgba(0,0,0,.0);
  -webkit-text-stroke: 1px #fff;
  line-height: 6rem;
  letter-spacing: 5px;
  font-weight: 900;
}

.top_text h1 {
  font-size: 2rem;
letter-spacing: 3px;
  margin-top: 100px;
  position: relative;
}

.top_text h1::after {
  position: absolute;
  top:-55px;
  left: 0;
  height: 10px;
  width: 50%;
  background: #fff;
  display: block;
  content: "";
}

.keyvisual {
    position: absolute;
    right: 33%;
    bottom: -250px;
}

.keyvisual__scroll{
  width: 8vw;
  position: absolute;
  bottom: 2vw;
  left: 2vw;
}

.keyvisual__scroll--circle{
  height: auto;
  width: 700px;
  animation: rotate 15s linear infinite;
}

.keyvisual__scroll--arrow {
    height: auto;
    width: 25px;
    position: absolute;
    top: 262px;
    left: 350px;
    transform: translate(-50%, -50%);
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

.concept {
  display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
  background-image: url("../images/concept_back.jpg");
  background-size: cover;
  padding: 60px 10%;
  position: relative;
  height: 550px;
}

.concept h3 {
  font-size: 18px;
  letter-spacing: 3px;
  line-height: 50px;
  width: 50%;
}

.concept h2 {
  font-size: 45px;
  letter-spacing: 5px;
  line-height: 70px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  margin-left: 100px;
}

.concept p {
    font-size: 25px;
    letter-spacing: 1px;
    color: rgba(0, 0, 0, .0);
    -webkit-text-stroke: 1px #fff;
    position: absolute;
    right: -10%;
    width: 550px;
    text-align: center;
    background: #0f5510;
    padding: 20px 0;
    transform: rotate(90deg);
    font-weight: 900;
  }

.services {
  padding-top: 100px;
  background: #0f5510;
}

.services_top {
  display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  -webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.services_top_title {
  margin-right: 20px;
    width: 200px;

}

.services_top_title h2 {
  font-size: 25px;
  letter-spacing: 3px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.services_top_title h3 {
font-size: 45px;
  transform: rotate(90deg);
  color: rgba(0, 0, 0, .0);
  -webkit-text-stroke: 2px #fff;
  margin-top: -10px;
  margin-left: -60px;
  font-weight: 900;
}


.services_top_img {
  width: 70%;
}

.services_top_img img {
  width: 100%;
}

.services_contents {
  padding-top: 80px;
}

.services_contents_box {
  display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -ms-flex-pack: distribute;
	justify-content: space-around;
  width: 80%;
  margin: auto;
  padding: 50px 5%;
  border-top: solid #fff 1px;
}

.services_contents_box:last-of-type {
  border-bottom: solid #fff 1px;
}

.services_contents_box_left {
  width: 30%;
}

.services_contents_box_left h3 {
  font-size: 35px;
    color: rgba(0, 0, 0, .0);
    -webkit-text-stroke: 1px #fff;
    font-weight: 900;
}

.services_contents_box_left h4 {
  font-size: 18px;
  letter-spacing: 1px;
  padding-top: 20px;
}

.services_contents_box_right {
  width: 60%;
}

.services_contents_box_right p {
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 40px;
}


@keyframes infinity-scroll-left {
from {
transform: translateX(0);
}
to {
transform: translateX(-100%);
}
}
.scroll-infinity__wrap {
display: flex;
overflow: hidden;
}
.scroll-infinity__list {
display: flex;
list-style: none;
padding: 0
}
.scroll-infinity__list--left {
animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.scroll-infinity__item {
width: calc(100vw / 3);
}
.scroll-infinity__item>img {
width: 100%;
}

.scroll-infinity {
  position: relative;
}

.scroll-infinity::after {
  position: absolute;
  height: 100%;
  width: 100%;
  background: #000;
  opacity: .5;
  content: "";
  display: block;
  top: 0;
  left: 0;
}

.scroll-infinity p {
 position: absolute;
 font-size: 70px;
 line-height: 100px;
   color: rgba(0, 0, 0, .0);
   -webkit-text-stroke: 2px #fff;
   font-weight: bold;
   text-align: center;
   top: 20%;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 5;
}

.top_works {
 background: #fff;
 padding: 100px 0;
 padding-left: 10%;
}

a.top_works_link {
  position: relative;
  display: block;
  margin-top: 50px;
  margin-left: auto;
  margin-right: 50px;
  padding: 20px 30px;
  width: 400px;
  background: #0f5510;
  font-size: 20px;
  letter-spacing: 3px;
}

a.top_works_link::before {
  position: absolute;
  top:43%;
  right: 30px;
	content: '';
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}

.works_list_box {
  width: 40%;
  margin-left: 35px;
}

.works_list_box h3 {
  font-size: 20px;
  letter-spacing: 1px;
  padding-top: 20px;
  color: #0f5510;
  line-height: 30px;
}

.works_list_box p {
  font-size: 14px;
  letter-spacing: 1px;
  padding: 5px 10px;
  color: #0f5510;
  border: solid 1px #0f5510;
  margin-top: 10px;
  display: inline-block;
}

.works_list_box img {
  width: 100%;
}

.color_b h2 {
  color: #0f5510!important;
}

.color_b h3{
  color: rgba(0, 0, 0, .0);
  -webkit-text-stroke: 1px #0f5510;
}

.works_container_top {
  display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
  position: relative;
  -ms-flex-wrap: wrap;
  	flex-wrap: wrap;
}

img.works_back {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}

.top_works {
  position: relative;
}

.top_about {
  padding: 100px 10%;
  position: relative;
}

img.top_about_back {
  position: absolute;
  top: 0;
  left: 0;
  height: 80%;
  opacity: .1;
}

.top_about_contents {
  display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
  padding-top: 150px;
  position: relative;
  z-index: 3;
}

.top_about_content {
  display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
}

h3.top_about_contents_left,h3.top_about_contents_right {
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 30px;
  padding: 20px 0;
}

h3.top_about_contents_left {
  width: 25%;
}

h3.top_about_contents_right {
  width: 70%;
  margin-left: 50px;
}

.map {
  width: 50%;
  height: 400px;
}

.map iframe{
  width: 100%;
  height: 100%;
}

.top_about_contents_box {
  width: 50%;
}

.top_recruit {
  display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
  position: relative;
}



/* .top_recruit_contents {
  background-image: url("../images/recruit_back.jpg");
  background-size: cover;
  padding: 7% 20%;
    padding-top: 23%;
    margin-top: -100px;
} */

.top_recruit_contents {
  position: relative;
  /* z-index: 1; */
  padding: 100px 20%;
}

img.rec_top_back {
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
}

.top_recruit_left h2 {
  font-size: 45px;
}

.top_recruit_left h3 {
    font-size: 25px;
    letter-spacing: 3px;
    padding-top: 20px;
}

.top_recruit_left a {
  font-size: 16px;
  letter-spacing: 1px;
  margin-top: 40px;
  padding: 15px 0;
  width: 200px;
  text-align: center;
  background: linear-gradient(to bottom left, #36fb3e, #0f5510);
}

.top_recruit_right h4 {
    font-size: 60px;
    letter-spacing: 5px;
    line-height: 80px;
}

.top_recruit_right h5 {
  font-size: 25px;
  letter-spacing: 3px;
  padding-top: 20px;
}

.back_c {
  background: #0f5510;
}

.contct_top {
  background-image: url("../images/foot_back.png");
  background-size: cover;
  padding: 100px 10%;
  padding-top: 120px;
  position: relative;
}

.contct_top_left {
  width: 50%;
}

.contct_top_left p {
  font-size: 18px;
  letter-spacing: 1px;
}
.contct_top_left a.con_tel {
  font-size: 40px;
  letter-spacing: 3px;
  padding-top: 20px;
}

a.form_link {
  background: #000;
  margin-top: 20px;
  padding: 15px 0;
  text-align: center;
  width: 400px;
  font-size: 20px;
  letter-spacing: 3px;
}

.footer_menu {
  display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 50px;
}

.footer_name {
  margin-top: 30px;
  padding-top: 30px;
  border-top: solid 1px #fff;
}

.footer_group {
  margin-top: 40px;
}

.footer_group_title {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer_group_logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 30px;
  align-items: flex-start;
}

.footer_group_logos a {
  display: inline-block;
}

.footer_group_logos img {
  height: 55px;
  width: auto;
}

.footer_group_item {
  text-align: left;
}

.footer_group_item p {
  font-size: 11px;
  line-height: 1.6;
  margin-top: 8px;
  opacity: 0.8;
}

.footer_company_name {
  font-size: 13px !important;
  opacity: 1 !important;
  font-weight: bold;
  margin-top: 10px !important;
}

.footer_nagaken {
  margin-bottom: 20px;
  text-align: left;
}

.footer_nagaken img {
  width: 280px;
}

.footer_nagaken_name {
  font-size: 14px;
  margin-top: 8px;
  letter-spacing: 1px;
}

.footer_group_member {
  font-size: 12px;
  margin-bottom: 15px;
  opacity: 0.8;
}

.small-text {
  font-size: 12px;
}

.rec_apply_btn {
  text-align: center;
  margin-top: 50px;
}

.rec_apply_btn a {
  display: inline-block;
  padding: 20px 50px;
  background: linear-gradient(to bottom left, #36fb3e, #0f5510);
  font-size: 18px;
  letter-spacing: 3px;
  color: #fff;
  text-align: center;
}

/* プライバシーポリシー */
.privacy_container {
  padding: 0 10%;
  padding-bottom: 100px;
}

.privacy_content {
  background: rgba(255,255,255,0.05);
  padding: 50px;
  border-radius: 5px;
}

.privacy_intro {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 40px;
}

.privacy_section {
  margin-bottom: 35px;
}

.privacy_section h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

.privacy_section p {
  font-size: 15px;
  line-height: 1.8;
}

.privacy_section ul {
  margin-top: 10px;
  padding-left: 20px;
}

.privacy_section ul li {
  font-size: 15px;
  line-height: 2;
  list-style: disc;
}

.privacy_section ul li a {
  color: #36fb3e;
  text-decoration: underline;
  display: inline;
}

.privacy_sub {
  margin-top: 15px;
  font-size: 15px;
  line-height: 1.8;
}

.privacy_contact {
  margin-top: 15px;
  padding: 20px;
  background: rgba(255,255,255,0.05);
}

.privacy_contact p {
  font-size: 15px;
  line-height: 1.8;
}

.privacy_date {
  text-align: right;
  font-size: 14px;
  margin-top: 40px;
}

/* プライバシーポリシー同意チェック */
.privacy-check {
  margin-top: 30px;
  margin-bottom: 20px;
  text-align: center;
}

.privacy-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  vertical-align: middle;
  cursor: pointer;
}

.privacy-check span {
  font-size: 14px;
  color: #fff;
}

.privacy-check a {
  color: #36fb3e;
  text-decoration: underline;
  display: inline;
}

.privacy-check a:hover {
  opacity: 0.7;
}

.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

.wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 14px;
  cursor: pointer;
}

.footer_name p {
  font-size: 16px;
  padding-bottom: 20px;
  padding-left: 20px;
}

img.foot_logo {
  position: absolute;
  bottom: 100px;
  right: 10%;
  width: 250px;
}

.sub_page {
}

.about_page_img {
  margin-top: -80px;
  position: relative;
}

.about_page_img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 85, 16, 0.95) 0%, rgba(15, 85, 16, 0.95) 35%, transparent 35%);
  z-index: 1;
  pointer-events: none;
}

.about_page_img img {
  width: 100%;
}

.sub_page {
  padding-top: 250px;
}

.sub_hero {
  width: 80%;
  margin: auto;
  position: relative;
z-index: 10;
}

.sub_hero h1 {
  font-size: 40px;
  letter-spacing: 5px;
  padding-bottom: 50px;
}

.sub_page .top_works {
    background: none!important;
    padding: 100px 10%!important;
}

.sub_page .works_container_top {
    justify-content: space-between!important;
}

.sub_page .works_list_box {
    width: 46%!important;
    margin-left: 0!important;
    margin-top: 50px!important;
}

h5.sub_contant_title {
  margin: auto;
  padding-bottom: 30px;
  border-bottom:  solid #fff 1px;
  font-size: 90px;
  color: rgba(0, 0, 0, .0);
  -webkit-text-stroke: 2px #fff;
font-weight: 900;
  text-align: right;
  width: 80%;
}

.sub_page .works_list_box h3 {
  color: #fff!important;
}

.sub_page .works_list_box p {
  color: #fff!important;
  border: solid 1px #fff!important;
}

.recruitpage_concept {
  position: relative;
  padding-top: 80px;
}

.rec_page_img {
  width: 70%;
}

.rec_page_img img {
  width: 100%;
}

.rec_con_text {
  position: absolute;
  right: 10%;
  top: 20%;
  width: 30%;
}

.rec_con_text h2 {
  font-size: 50px;
  letter-spacing: 3px;
  line-height: 70px;
}

.rec_con_text p {
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 35px;
  margin-top: 30px;
}

.recruitpage_concept h6 {
  position: absolute;
  bottom: 0;
  left: 10%;
  font-size: 200px;
  font-weight: 900;
  color: rgba(0, 0, 0, .0);
  -webkit-text-stroke: 2px #fff;
}

.rec_mid_img {
  margin-top: 120px;
  width: 100%;
}

.rec_mid_img img {
  width: 100%;
}

.recruitment {
  margin: auto;
  padding: 0 15%;
  padding-top: 100px;
  background: #0f5510;
}

.recruitment h2 {
  font-size: 100px;
  font-weight: 900;
  color: rgba(0, 0, 0, .0);
  -webkit-text-stroke: 2px #fff;
}

.recruitment h3 {
  font-size: 25px;
  letter-spacing: 5px;
  padding-bottom: 50px;
  border-bottom: solid #fff 1px;
  margin-top: 20px;
}

.rec_r_con {
  margin-top: 50px;
  padding-bottom: 100px;
}

.rec_r_box {
  display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.rec_r_box p {
  font-size: 18px;
  letter-spacing: 3px;
  padding: 15px 0;
  line-height: 2rem;
}

.rec_r_box p:first-of-type {
  width: 25%;
}

.rec_r_box p:last-of-type {
  width: 70%;
}

.contactpage_container {
  padding: 0 10%;
}

.con_tel_box {
  padding: 80px 10%;
  display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
    border-bottom: solid 1px #fff;
}

.con_tel_left {
  width: 40%;
}

.con_tel_left h2 {
  font-size: 60px;
  font-weight: 900;
  color: rgba(0, 0, 0, .0);
  -webkit-text-stroke: 2px #fff;
}

.con_tel_left h3 {
  font-size: 20px;
  letter-spacing: 1px;
  margin-top: 20px;
}

.con_tel_right {
  width: 60%
}

.con_tel_right a {
  font-size: 50px;
  letter-spacing: 3px;
  text-align: center;
}

.con_tel_right p {
  font-size: 16px;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 20px;
  line-height: 32px;
}

.con_form_box {
  border: none!important;
}

.con_form_box .con_tel_right p {
  text-align: left!important;
}


.contact-form-box {
  margin-top: 5px;
}

.contact-form-box input {
  width: 100%;
  height: 40px;
  margin-top: 15px;
  color: #000;
}

.contact-form-box textarea {
  width: 100%;
  height: 400px;
  margin-top: 15px;
  color: #000;
}

.form-left {
  display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
}

.form-left p {
  font-size: 18px;
  letter-spacing: 3px;
}

.form-left p.rec {
  margin-left: 20px;
}

.form-submit input {
  width: 20%;
  margin: auto;
  padding: 20px 0;
  margin-top: 50px;
  letter-spacing: 10px;
  color: #fff;
  border: solid #fff 1px;
  background: none;
  -webkit-appearance: none;
  font-size: 20px;
  text-align: center;
  display: block;
}

.wpcf7 form.sent .wpcf7-response-output {
    border: none!important;
    text-align: center!important;
}

.contactform_box {
  width: 80%;
  margin:auto;
  padding-bottom: 100px;
}

.no_wrap {
  flex-wrap: nowrap!important;
}

.nonesp {
  display: block;
}
.onsp {
  display: none;
}

a.rec_sp_link {
  margin: auto;
  text-align: center;
  margin-top: 180px;
  padding: 30px 0;
  width: 80%;
  font-size: 45px;
  letter-spacing: 8px;
  border: solid #fff 1px;
}


















/*  */
