@charset "utf-8";
/*----------Reset CSS----------*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, form,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
}

ol, ul {
	list-style: none;
}

table {
	border-collapse: separate;
	border-spacing: 0;
}

caption, th, td {
	font-weight: normal;
	text-align: left;
}

blockquote:before, blockquote:after,q:before, q:after {
	content: "";
}

blockquote, q {
	quotes: "" "";
}

a img {
	border: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

body{
  font-family: "M PLUS 1p", sans-serif;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
}
p{
  line-height: 1.8em;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/*----------default----------*/
:root{
  --main-color:#2d65ad;
  --sub-color:#6e99d0;
  --subttl-color:#e0e6f0;
  --bg-color:#f4f7fa;
}

/*----------リンク設定----------*/
a{
	margin: 0;
	padding: 0;
	text-decoration: none;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
	font-size: 100%;
	color: #666;
}

a:hover, a:active{
	outline: none;
	color: #333;
}
a.blue{
  color: blue;
  text-decoration: underline;
}
/*----------画像----------*/
img{
	max-width: 100%;
	height: auto;
}
.img-r{
  border-radius: 20px;
}
.fade {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.5s ease;
}

.fade.is-show {
  opacity: 1;
  transform: translateY(0);
}
/*----------レイアウト----------*/
#wrapper, .inner{
	margin: 0 auto;
	width: 100%;
}

#footer{
	clear: both;
} 
p{
  padding-bottom: 1rem;
}

.pc{
  display: none;
}

.sp{
  display: block;
}
.w90,
.w60{
	width: 90vw;
	max-width: 1300px;
	margin: 0 auto;
}
.pt100{
  padding-top: 100px;
}
.pa50{
  padding: 50px 0;
}
.center{
	display: flex;
  justify-content: center;
}
.flex{
	display: flex;
	justify-content: space-between;
}

.flex-img{
	width: 40%;
}

.flex-list{
	width: 50%;
}
.ul{
  display: inline-block;
  text-decoration: underline;
  margin-bottom: 1rem;
}

.white-btn{
  display: inline-block;
  position: relative;
  background-color: #fff;
  padding: 8px 1.7em 8px 10px;
  line-height: 1;
  border-radius: 100px;
  border: 2px solid var(--main-color);
  color: var(--main-color);
  font-size: 0.8rem;
}
.white-btn::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 0.8em;
  transform: translateY(-50%);
  border-left: 7px solid var(--main-color);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.blue-btn{
  display: inline-block;
  position: relative;
  background-color: var(--main-color);
  padding: 3px 2.5em 3px 20px;
  border-radius: 100px;
  color: #fff;
  font-size: 0.9rem;
}
.blue-btn::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 1.2em;
  transform: translateY(-50%);
  border-left: 7px solid #fff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.scroll-offset {
  position: relative;
}

.scroll-offset::before {
  content: "";
  display: block;
  height: 80px;
  margin-top: -80px;
  visibility: hidden;
}
/*----------headline----------*/

.icon-ttl{
  display: flex;
  align-items: center;
  gap: 0.2em;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--main-color);
}
.icon-ttl::before {
  content: "";
  width: 1em;
  height: 1em;
  background: url('../images/common/point.png') no-repeat center / contain;
  vertical-align: middle;
}
h2.headline{
	font-size: 7em;
	margin: 50px 0;
}

.single h2,
.post h2{
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--main-color);
  margin: 20px 0;
}

.single h3,
.post h3{
	border-left: solid 10px var(--main-color);
	font-size: 1.5em;
	margin: 20px 0;
	padding: 10px 20px;
}

.single h4,
.post h4{
	font-size: 1.2em;
	font-weight: bold;
	padding: 10px 0;
	border-bottom: 2px solid var(--main-color);
  margin: 20px 0;
}

.single h5,
.post h5{
	font-weight: bold;
  padding: 5px 10px;
  background-color: var(--bg-color);
  border-radius: 5px;
  margin: 20px 0;
  font-size: 1.2em;
}

/*----------Content----------*/

.dateLabel{
	color: #e2dad2;
}

.post-txt{
	margin: 30px 0;
}

.post p{
	padding-bottom:15px;
}

.post ul{
	margin: 0 0 10px 10px;
}

.post ol{
	margin: 0 0 10px 30px;
}

.post ol li{
	list-style:decimal;
}

.post blockquote {
	clear: both;
	padding: 10px 0 10px 15px;
	margin: 10px 0 25px 30px;
	border-left: 5px solid #ccc;
}
 
.post blockquote p{
	padding:5px 0;
}

.post table{
	border: 1px #e2dad2 solid;
	border-collapse: collapse;
	border-spacing: 0;
	margin: 10px 0 20px;
}

.post table th{
	padding: 1em;
	border: #e2dad2 solid;
	border-width: 0 0 1px 1px;
	font-weight: bold;
	color: #fff;
	background: #5399ca;
}

.post table td{
	padding: 1em;
	border: 1px #e2dad2 solid;
	border-width: 0 0 1px 1px;
	background: #fff;
}

.post dt{
	font-weight:bold;
}

.post dd{
	padding-bottom:10px;
}

.post img{
	max-width: 100%;
	height: auto;
}


/*----------ページ上部へ戻る----------*/

#pagetop{
	clear: both;
	display: block;
	overflow: hidden;
	padding-top: 30px;
}

#pagetop a{
	float: right;
	display: block;
	position: relative;
	padding: 5px 15px 2px;
	font-size: 90%;
	border: 1px solid #dadade;
	border-bottom: 0;
	-webkit-border-radius: 5px 5px 0 0;
	-moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
	background: #fff;
}

/*----------page navigation----------*/

.pagenation{
	display: flex;
	align-items: center;
	justify-content: center;
}

.page-numbers{
	width: 40px;
	height: 40px;
	border: 2px solid var(--main-color);
	margin: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	overflow: hidden;
}

.page-numbers.current{
	background: var(--main-color);
	color: #FFFFFF;
}

/*----------table----------*/

.list-line dl dt{
	float: left;
}
	
.list-line dl dd{
	border-bottom: 1px solid #ccc;
}

/*----------header----------*/
#header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 60px;
	margin: 0 auto;
	font-size: 1.3em;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.site-header{
  position: relative;
  width: 100%;
  z-index: 999;
  transition: all 0.5s ease;
}
.site-header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9); /* 半透明背景 */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: fadeDown 0.5s ease forwards;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#logo{
  width: 85px;
  height: auto;
  margin-top: 10px;
}
.menu-toggle {
  display: block;
  width: 40px;
  height: 40px;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1000;
  
}

.menu-toggle .bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--main-color);
  margin: 6px 0;
  border-radius: 2px;
  position: relative;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.gnav-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 30%;
  min-width: 250px;
  height: 100vh;
  background-color: var(--bg-color);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 999;
  overflow-y: auto;
  padding-top: 60px;
}
.gnav-menu a{
  color: var(--main-color);
}
.gnav-menu.active {
  transform: translateX(0);
}
#gnav {
  list-style: none;
  margin: 0;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}
.header-navi {
    margin: 1rem 0;
}

/*----------mainvisual----------*/
.mv {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc( 100vh - 60px );
  z-index: 0;
  overflow: hidden;
}
.mv-img {
  width: 100%;
  height: 100%;
}
.mv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}
.mv-ttl {
  position: absolute;
  top: 10%;
  right: 15%;
  z-index: 1;
}

.mv-ttl.vertical {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: .6em;
}

.mv-ttl.vertical .bg-line {
  display: block;
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: var(--main-color);
  font-size: 2rem;
  font-family: "Klee One", cursive;
  letter-spacing: 0.3em;
  background: #fff;
  padding: .4em;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  line-height: 1em;
}


/*----------top----------*/
.top-content {
  position: relative;
  margin-top: 100vh;
  background: #fff;
  padding-bottom: 100px;
  z-index: 10;
}
.top-about{
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 100px 0;
}
.top-about-txt{
  position: relative;
  color: var(--main-color);
}
.top-about-txt::before{
  position: absolute;
  content: "About glow";
  font-size: 3rem;
  color: var(--subttl-color);
  font-weight: 700;
  z-index: -1;
  top: -10px;
}
.top-about-imgarea{
  position: relative;
}
.top-about-imgarea img{
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.3);
}
.top-about-img1{
  width: 40%;
}
.top-about-img2{
  width: 55%;
  position: absolute;
  top: 30px;
  left: auto;
  right: 0;
}
.top-menu{
  background-color: var(--bg-color);
  padding: 50px 5%;
}
.top-menu-inner{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 30px;
}
.top-menu-ttl{
  padding: 20px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top-menu-ttl h3{
  display: flex;
  align-items: center;
  gap: 0.2em;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--main-color);
}
.top-menu-ttl h3::before {
  content: "";
  width: 1em;
  height: 1em;
  background: url('../images/common/point.png') no-repeat center / contain;
  vertical-align: middle;
}
.top-news{
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 50px 0;
}
.top-news h2{
  font-size: 3rem;
  color: var(--main-color);
  font-weight: 700;
}
.top-news h2 span{
  display: block;
  font-size: 1.2rem;
  padding-top: 10px;
}
.top-news-btn{
  margin-top: 20px;
}
.top-news-list {
  list-style: none;
  margin: 0;
}
.top-news-item{
  padding: 1em 0;
  border-bottom: 2px solid var(--main-color);
}
.top-news-item:first-child{
  border-top: 2px solid var(--main-color);
}

.top-news-meta {
  display: flex;
  gap: 10px;
  font-size: 0.85em;
  color: var(--main-color);
  margin-bottom: 0.3em;
  line-height: 1;
  align-items: center;
}

.top-news-cat {
  background: var(--main-color);
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 0.6em;
}

.top-news-title {
  text-decoration: none;
  font-size: 1.1em;
}
.top-news-title:hover {
  text-decoration: underline;
}
.top-contact-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  gap: 0.5em;
  font-size: 1.3rem;
  font-weight: 700;
  background-color: var(--main-color);
  padding: 10px 20px;
  border-radius: 100px;
  color: #fff;
  max-width: 500px;
}
.top-contact-btn::before{
  content: "";
  width: 1em;
  height: 1em;
  background: url('../images/common/mail.png') no-repeat center / contain;
}
.top-contact-btn::after{
  content: "";
  width: 1em;
  height: 1em;
  background: url('../images/common/arrow.png') no-repeat center / contain;
}
.fix {
  position: fixed;
  top: 20%;
  right: 0;
  z-index: 1000;
}
.top-recruit-btn img{
  width: 45px;
  height: 135px;
}
/*----------下層共通----------*/
.lower-mv{
  padding-top: 100px;
  position: relative;
  z-index: 100;
}
.lower-mv h1{
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--main-color);
  letter-spacing: 0.2em;
  text-align: center;
  padding-bottom: 50px;
}
.lower-mv-img img{
  border-radius: 20px;
}
.lower-nav{
  padding-top: 50px;
}
.lower-nav ul{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.lower-nav ul a{
  color: var(--main-color);
  font-weight: 700;
  padding-bottom: 10px;
}
.lower-nav ul a:hover{
  border-bottom: 2px solid var(--main-color);
}
.lower-page h2{
  font-size: 1.8rem;
  padding-bottom: 30px;
}
/*---------- About----------*/
#greeting{
  position: relative;
  z-index: 0;
  padding: 100px 0 50px;
  background-color: var(--bg-color);
  
}
#greeting::before{
  content: "";
  position: absolute;
  top: -99px;
  left: 0;
  right: 0;
  height: 100px;
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
  background-color: var(--bg-color);
}
.greeting-flex{
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 50px;
  width: 100%;
}
.txt-right{
  text-align: right;
}
#philosophy,
#overview,
#history{
  padding: 50px 0;
}
#philosophy{
  position: relative;
}
.philosophy-flex{
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 50px;
}
.philosophy-box,
.policy-box{
  background-color: var(--bg-color);
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 30px;
}
.philosophy-box h3{
  font-size: 1.2rem;
  color: var(--main-color);
  text-align: center;
  padding-bottom: 20px;
}
.policy-flex{
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
}
.policy-box h3{
  font-size: 1.2rem;
  color: var(--main-color);
  padding-bottom: 20px;
}
.overview-table{
  border-collapse: separate;
  width: 100%;
  border-top: 1px solid var(--main-color);
}
.overview-table th{
  width: 30%;
  font-weight: bold;
  padding: 1em;
  border-bottom: 1px solid var(--main-color);
}
.overview-table td{
  padding: 1em;
  border-bottom: 1px solid var(--main-color);
}
.overview-table td div{
  margin-bottom: 10px;
}
.history-table-area caption {
  display:none;
}
.history-table table{
  border-collapse: separate;
  width: 100%;
}

.history-table thead tr th{
  padding: 2em;
  font-weight: bold;
  background-color: var(--main-color);
  color: #fff;
  border-bottom: none;
}
.history-table tbody tr td{
  padding: 2em;
  border-bottom: 1px solid var(--main-color);
}
.history-table .column-1{
  width: 30%;
}
.history-table .column-2{
  width: 70%;
}
/*----------Service----------*/
#office-list{
  padding: 100px 0;
}
.office-item h3{
  font-size: 1.5rem;
  color: var(--main-color);
  padding-bottom: 20px;
}
.office-item{
  padding: 50px 0;
}
.office-flex{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.office-sns{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.office-sns img{
  width: 30px;
  height: auto;
}
.office-table{
  border-collapse: separate;
  width: 100%;
  border-top: 1px solid var(--main-color);
}
.office-table th{
  width: 20%;
  font-weight: bold;
  padding: 1em;
  border-bottom: 1px solid var(--main-color);
}
.office-table td{
  padding: 1em;
  border-bottom: 1px solid var(--main-color);
}
.office-table ul {
  padding-left: 1.5em;
}
.office-table li {
  list-style-type: disc;
  list-style-position: outside;
}

.office-table li::marker {
  color: var(--main-color);
}
.line{
  width: 70%;
  max-width: 300px;
  margin: 0 auto;
  padding: 100px 0;
}
.office-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  gap: 1em;
  font-size: 1.3rem;
  font-weight: 700;
  background-color: var(--main-color);
  padding: 10px;
  margin: 30px auto;
  border-radius: 100px;
  color: #fff;
  max-width: 350px;
}
.office-btn::after{
  content: "";
  width: 1em;
  height: 1em;
  background: url('../images/common/arrow.png') no-repeat center / contain;
}
/*----------hr----------*/
#trainee{
  padding-bottom: 100px;
}
.hr-flex,
.hr-flex2{
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}
/*----------recruit----------*/
.recruit-table{
  border-collapse: collapse;
  width: 100%;
  border-top: 1px solid var(--main-color);
}
.contact-table tr{
  width: 100%;
}
.recruit-table th{
  display: block;
  font-weight: bold;
  padding: 1em;
  background-color: var(--bg-color);
}
.recruit-table td{
  padding: 1em;
  border-bottom: 1px solid var(--main-color);
  display: block;
  box-sizing: border-box;
  margin: 0;
}
.blue-bg-txt span{
  display: inline-block;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 400;
  background-color: var(--main-color);
  padding: 5px 7px;
  border-radius: 5px;
  line-height: 1;
}
.recruit-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  gap: 1em;
  font-size: 1.3rem;
  font-weight: 700;
  background-color: var(--main-color);
  padding: 10px;
  border-radius: 100px;
  color: #fff;
  max-width: 350px;
}
.recruit-btn:hover{
  background-color: var(--sub-color);
  color: #fff;
}
.recruit-btn::after{
  content: "";
  width: 1em;
  height: 1em;
  background: url('../images/common/arrow.png') no-repeat center / contain;
}
.recruit-box{
  background-color: var(--bg-color);
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 30px;
}
.recruit-box h3{
  font-size: 1.2rem;
  color: var(--main-color);
  text-align: center;
  padding-bottom: 20px;
}
.recruit-box ul {
  padding-left: 1.5em;
}
.recruit-box li {
  list-style-type: disc;
  list-style-position: outside;
}

.recruit-box li::marker {
  color: var(--main-color);
}
#part{
  margin-bottom: 100px;
}
/*----------information----------*/
#information{
  padding: 100px 0;
}
#information summary{
  font-size: 1.2rem;
  color: var(--main-color);
  margin: 30px 0;
}
#information .wp-block-file *+.wp-block-file__button{
  padding: 5px 20px;
  background-color: var(--main-color);
}
#information details[open] {
  background-color: var(--bg-color);
  border: 1px solid var(--main-color);
  padding: 0 20px 20px 20px;
}
/*----------News----------*/
#news,
#news-content{
  padding: 100px 0;
}
.news-table{
  border-collapse: collapse;
  width: 100%;
  border-top: 1px solid var(--main-color);
  padding: 100px 0;
}
.news-table tr{
  width: 100%;
}
.news-table th{
  display: block;
  font-weight: bold;
  padding: 1em;
}
.news-table td{
  padding: 1em;
  border-bottom: 1px solid var(--main-color);
  display: block;
  box-sizing: border-box;
  margin: 0;
}
.news-table p.post-title{
  padding-bottom: 0;
}
.news-table .post-title a{
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--main-color);
}
.news-table .post-date{
  font-size: 0.8rem;
}
.news-table .post-thumb img{
  border-radius: 10px;
}
#news-content .post-thumb img{
  border-radius: 20px;
}
h2.title{
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--main-color);
}
.pagination{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin:0 auto;
  height:200px;
}
.pagination .prev-post a,
.pagination .next-post a{
  padding:1rem 2rem;
  border:1px solid var(--main-color);
  color:var(--main-color);
}
.pagination .prev-post a:hover,
.pagination .next-post a:hover{
  color:#fff;
  background-color:var(--main-color);
}
/*----------Contact----------*/

.contact-list dl dt{
	width: 40%;
	height: 60px;
	line-height: 60px;
	padding-left: 20px;
}

.contact-list dl dd{
	height: 60px;
	line-height: 60px;
}

/*----------footer----------*/

#footer{
  position: relative;
  background: url('../images/common/footer.jpg') no-repeat center center;
  background-size: cover;
  padding-top: 100px;
  padding-left: 10%;
  z-index: 10;
}
.footer-area{
  background-color: rgba(255,255,255,0.7);
  border-top-left-radius: 20px;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 30px;
  max-width: 1500px;
  margin-left: auto;
}
.footer-logo img{
  width: 150px;
  height: auto;
  padding-bottom: 20px;
}
.footer-sns{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
}
.footer-sns img{
  width: 40px;
  height: auto;
}
.footer-address{
  font-size: 0.9rem;
}
#footer-gnav li{
  padding-bottom: 10px;
}
#footer-gnav li a{
  color: var(--main-color);
  font-weight: 700;
}
.footer-banner{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
}
.banner-img{
  width: calc( 50% - 10px );
}
.copyright{
  font-size: 0.7rem;
  color: var(--main-color);
}
/*----------contactform----------*/
.contact-table{
  width: 100%;
  padding: 0;
  border-collapse: collapse;
}
.contact-table tbody{
  padding: 0;
}
.contact-table th{
  font-weight: bold;
  padding: 1em 1em 0 1em;
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
}
.contact-table td{
  padding: 1em;
  border-bottom: 1px solid var(--main-color);
  display: block;
  box-sizing: border-box;
  margin: 0;
}

.wpcf7 label{
	display: block;
}
.label_must{
	background-color: var(--main-color);
	color: #ffffff;
	font-size: 0.7em;
	padding: 3px 5px;
	margin-left: 5px;
  border-radius: 5px;
}
.contact-link{
  text-decoration: underline;
  padding-right: 5px;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"]{
	background: #fcfcfc;
	border: 1px solid var(--main-color);
	width: 100%;
	height: 50px;
  font-size: 14px;
}
.wpcf7 textarea{
	background: #fcfcfc;
	border: 1px solid var(--main-color);
	width: 100%;
  padding: 0.5em;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus{
	background: #f0f8ff;
	border: 1px solid #333333;
  outline: 0;
}
.wpcf7 input[name="post-code"],
.wpcf7 input[name="country"]{
	width: 50%;
}
.contact-post{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.contact-post p{
  font-size: 1.1em;
  padding-right: 10px;
}
span.wpcf7-list-item{
  margin-top:5px;
  display: block;
}

.wpcf7 input[type="submit"]{
	display: inline-block;
	width: 30%;
  min-width: 150px;
	padding: 15px;
	margin: 50px 10px 10px;
	border: none;
	box-shadow: 0 3px 0 #ddd;
	background: var(--main-color);
	color: #fff;
	transition: 0.3s;
  font-size: 16px;
}
.btn-send p{
  text-align: center;
}
.wpcf7-submit:hover {
	background: var(--sub-color);
	-webkit-transform: translate3d(0px, 3px, 1px);
	-moz-transform: translate3d(0px, 3px, 1px);
  transform: translate3d(0px, 3px, 1px);
}
div.wpcf7 .wpcf7-spinner{
	display: none;
}
.grecaptcha-badge {
  visibility: hidden;
}