* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  color: #202020;
}
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
    "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 800;
}
a {
  text-decoration: none;
  color: inherit;
}
li {
  list-style: none;
}
p,
h1,
h2,
h3,
h4,
h5 {
  letter-spacing: 1.2px;
  line-height: 2;
}

section {
  padding: 2rem 0;
}
section + section {
  margin-top: 3rem;
}
.inline {
  display: inline-block;
}
/*header*/
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo img {
  width: 220px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 90px;
  width: 95%;
  margin: 0 auto;
}
.header-nav ul {
  display: flex;
}

.header-nav li {
  margin: 0 0.5rem;
  font-size: 1.1rem;
  font-weight: bold;
}
/*==================================================
  MENUがCLOSEに
  ===================================*/

/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn {
  /*ボタン内側の基点となるためrelativeを指定。
  追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
  position: absolute;
  background: #7cab52;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  top: 1rem;
  right: 1rem;
  display: none;
}

/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 5px;
  background: #fff;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 13px;
}

.openbtn span:nth-of-type(2) {
  top: 19px;
}

.openbtn span:nth-of-type(3) {
  top: 25px;
}

.openbtn span:nth-of-type(3)::after {
  content: "Menu"; /*3つ目の要素のafterにMenu表示を指定*/
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.6rem;
  text-transform: uppercase;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

.openbtn.active span:nth-of-type(1) {
  top: 14px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 26px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(3)::after {
  content: "Close"; /*3つ目の要素のafterにClose表示を指定*/
  transform: translateY(0) translateX(-20%) rotate(-45deg);
  top: 5px;
  left: 50%;
}

/*fv*/
.fv {
  height: 300px;
  width: 100%;
  background: url("../img/img-company/fv.jpg") no-repeat center / cover;
  position: relative;
}
.fv::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
}

.fv h1 {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  font-size: 2.8rem;
}

/*company*/
.company-inner {
  max-width: 1000px;
  margin: 2rem auto;
  width: 90%;
}

/*works*/
.works-item {
  width: 90%;
  max-width: 1000px;
  margin: 2rem auto;
}
.works-title {
  text-align: center;
  background-color: #000;
  padding: 2rem 0;
  color: #fff;
  margin-top: 4rem;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
  margin: 3rem 0;
}
.slider img {
  width: 100%; /*スライダー内の画像を横幅100%に*/
  height: 100%;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
  margin: 0;
  padding: 0;
  height: 300px;
}

.works-item-title {
  font-size: 1.5rem;
  border-bottom: 1px solid #000;
}
.works-item ul {
  margin-top: 1rem;
}

/*company-table*/

.table-box {
  background-color: #f6f6f6;
  padding: 4rem;
  margin: 3rem auto 1rem;
  width: 90%;
  max-width: 700px;
}
.company-table {
  margin: 0 auto;
  width: 100%;
  border-collapse: collapse;
}
.company-table th,
.company-table td {
  width: 50%;
  padding: 1rem 0.5rem;
  text-align: left;
}

.company-table tr {
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  font-size: 1.1rem;
}

/*footer*/
footer {
  background-color: #000;
  text-align: center;
  padding: 2rem;
  color: #fff;
}
.footer-nav {
  font-weight: bold;
  font-size: 1.1rem;
}
.footer-nav li + li {
  margin-top: 1rem;
}
.copyright {
  margin-top: 2rem;
}

.free {
  height: auto;
}

.pc-none {
  display: none;
}

.contact-top {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
}

.fv h1 {
  text-align: center;
  width: 100%;
}
.small-text {
  font-size: 0.9rem;
}

/*ContactForm7カスタマイズ*/
table.CF7_table {
  width: 80%;
  margin: 0 auto;
  border: 3px solid #e5e5e5;
}

table.CF7_table tr {
  border-top: 1px solid #e5e5e5;
}

.single .entry-content table.CF7_table,
.page .entry-content table.CF7_table {
  display: table;
}

/*入力欄*/
.wpcf7-form-control-wrap {
  display: block;
  padding: 0.5rem;
}
.CF7_table input,
.CF7_table textarea {
  border: 1px solid #d8d8d8;
  display: block;
  width: 100%;
  padding: 1rem;
}

.CF7_table ::placeholder {
  color: #797979;
}

/*「必須」文字*/
.CF7_req {
  font-size: 0.9em;
  padding: 5px;
  background: #f79034; /*オレンジ*/
  color: #fff;
  border-radius: 3px;
  margin-right: 1em;
}

/*「任意」文字*/
.CF7_unreq {
  font-size: 0.9em;
  padding: 5px;
  background: #bdbdbd; /*グレー*/
  color: #fff;
  border-radius: 3px;
  margin-right: 1em;
}
.CF7_table th {
  text-align: left;
  padding: 1rem;
  vertical-align: top;
}

.wpcf7 input.wpcf7-submit{
  padding: 1rem 3rem;
  display: block;
}


/* タイトル列 */
@media screen and (min-width: 768px) {
  .CF7_table th {
    width: 30%; /*横幅*/
    background-color: #ebedf5; /*ブルーグレー*/
  }
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
  table.CF7_table {
    width: 95%;
  }
  .CF7_table tr,
  .CF7_table td,
  .CF7_table th {
    display: block;
    width: 100%;
    line-height: 2.5em;
  }
  .CF7_table th {
    background-color: #ebedf5;
  }
}

/* 「送信する」ボタン */
.wpcf7 input.wpcf7-submit {
  background-color: #f79034; /* オレンジ*/
  border: 0;
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  margin: 0 auto;
}

.CF7_btn {
  text-align: center;
  margin: 3rem auto;
}

.wpcf7-spinner {
  width: 0;
  margin: 0;
}

.rec-text{
	margin-top:2rem;
	text-align:center;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	align-items:center;
	font-size:0.9rem;
}
.rec-text a{
	text-decoration:underline;
}
.grecaptcha-badge { visibility: hidden; }