/*
Theme Name: LEED
Author: Tomoyuki Fumiyama
Description: LEED CorporateSite
Version: 1.0
*/

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-size: 16px;
  margin: 0;
  background-color: #111;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 170%;
}

html.is-page-transition-entering,
body.is-page-transition-leaving {
  overflow: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  pointer-events: none;
  transform: translate3d(0, 100%, 0);
}

body::before {
  background: #ff8a00;
}

body::after {
  z-index: 2147483001;
  background: #fff;
  transition: transform 0.72s cubic-bezier(0.77, 0, 0.175, 1);
}

html.is-page-transition-entering body::before {
  transform: translate3d(0, 0, 0);
}

html.is-page-transition-entering body.is-page-transition-loaded::before {
  transform: translate3d(0, -100%, 0);
  transition: transform 0.72s cubic-bezier(0.77, 0, 0.175, 1);
}

body.is-page-transition-leaving::after {
  transform: translate3d(0, 0, 0);
}


.grecaptcha-badge { visibility: hidden; }

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after {
    display: none;
  }
}

a {
  text-decoration: none;
  color: #333;
  display: block;
}

ul {
  padding: 0;
}

li {
  list-style: none;
}

.pc {
  display: block;
}
.sp {
  display: none;
}

.inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 70px 0;
}

img {
  width: 100%;
  height: auto;
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.en {
  font-family: "Josefin Sans", sans-serif;
}
.roboto {
  font-family: "Roboto", sans-serif;
}
.wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.swiper-wrapper {
  transition-timing-function: linear;
}

/*cookie*/
.popup {
  width: 100%;
  height: auto;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10000;
  transition: 0.4s ease;
}
.popup.ok {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

.popup-inner {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-inner p {
  font-size: 14px;
  color: #fff;
}
.popup-inner p a {
  display: inline-block;
  color: #fff;
  text-decoration: underline;
}
.popup-inner button {
  margin-left: 50px;
  padding: 10px 25px;
  color: #333;
  background: #fff;
  font-family: "Josefin Sans", sans-serif;
}

/*スライド*/
.slidein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 0.5s;
}
.slidein.slidein-right {
  transform: translate(100%, 0);
}
.slidein.slidein-bottom {
  transform: translate(0, 100%);
}
.slidein.scrollin {
  transform: translate(0, 0) !important;
  opacity: 1 !important;
}

/*ヘッダー*/
header.header {
  position: fixed;
  top: 0;
  left: 0;
  height: 70px;
  width: 100%;
  z-index: 100;
  background-color: transparent;
}
header.header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header.header .header_inner #logo {
  width: 25%;
  margin-left: 10px;
}
header.header .header_inner #logo a {
  display: flex;
}
header.header .header_inner #logo a img {
  width: 100px;
}
header.header .header_inner #pc_navi {
  width: 70%;
}
header.header .header_inner #pc_navi nav {
  margin-right: 10px;
}
header.header .header_inner #pc_navi nav .gnav {
  display: flex;
  justify-content: flex-end;
  height: 70px;
  margin: 0 auto;
}
header.header .header_inner #pc_navi nav .gnav .nav_service,
header.header .header_inner #pc_navi nav .gnav .nav_recruit {
  width: 70px;
}
header.header .header_inner #pc_navi nav .gnav .nav_service ul,
header.header .header_inner #pc_navi nav .gnav .nav_recruit ul {
  width: 320%;
}
header.header .header_inner #pc_navi nav .gnav .nav_service ul li,
header.header .header_inner #pc_navi nav .gnav .nav_recruit ul li {
  margin-left: 0;
}
header.header .header_inner #pc_navi nav .gnav .nav_service ul li a,
header.header .header_inner #pc_navi nav .gnav .nav_recruit ul li a {
  line-height: 2rem;
}
header.header .header_inner #pc_navi nav .gnav li {
  list-style: none;
  position: relative;
  margin-left: 40px;
}
header.header .header_inner #pc_navi nav .gnav li a {
  white-space: nowrap;
  font-size: 14px;
  display: block;
  height: 70px;
  line-height: 70px;
  width: 100%;
}
header.header .header_inner #pc_navi nav .gnav li a:hover {
  opacity: 0.7;
}
header.header .header_inner #pc_navi nav .gnav li li {
  height: 0;
  overflow: hidden;
  transition: 0.5s;
}
header.header .header_inner #pc_navi nav .gnav li li a {
  font-size: 12px;
  line-height: 100%;
}
header.header .header_inner #pc_navi nav .gnav li ul {
  padding: 15px;
}
header.header .header_inner #pc_navi nav .gnav li:hover > ul {
  background: #fff;
  border: 1px solid #eeeeee;
}
header.header .header_inner #pc_navi nav .gnav li:hover > ul > li {
  height: 2rem;
  overflow: visible;
}
header.header .header_inner #pc_navi nav .gnav .head_con {
  background: #fff;
  color: #333;
  border: 1px solid #fff;
  box-sizing: border-box;
  padding: 0px 20px;
  text-align: center;
  margin: 10px 0 10px 40px;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
header.header .header_inner #pc_navi nav .gnav li.con_btn a {
  color: #333;
}
header.header .header_inner #pc_navi nav .gnav .head_con:hover {
  background: #006699;
}
header.header .header_inner #pc_navi nav .gnav .head_con:hover a {
  color: #fff;
  opacity: 1;
}

/*トップ背景*/
.top_bg {
  width: 100%;
}

.top_bg .back_top {
  background: url(./img/leed-top.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  animation: fadezoom 8s ease-in-out forwards;
}
@keyframes fadezoom {
  0% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
.reveal-text {
  display: inline-block;
  overflow: hidden;
}

.reveal-text__inner {
  position: relative;
  display: inline-block;
  color: transparent;
  line-height: 1.4;
  color: #fff;
}

/* オレンジのカバー */
.reveal-text__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f28c28;
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 2;
}

/* 画面に入った後の文字色 */
.reveal-text.is-active .reveal-text__inner {
  color: #f28c28;
  transition: color 0s;
  transition-delay: 0.45s;
}

/* カバーアニメーション */
.reveal-text.is-active .reveal-text__inner::before {
  animation: orangeCoverReveal 0.9s ease forwards;
}

@keyframes orangeCoverReveal {
  0% {
    transform: scaleX(0);
    transform-origin: left center;
  }

  45% {
    transform: scaleX(1);
    transform-origin: left center;
  }

  46% {
    transform: scaleX(1);
    transform-origin: right center;
  }

  100% {
    transform: scaleX(0);
    transform-origin: right center;
  }
}

.company-lead__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 54px;
  padding: 0 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-decoration: none;
  opacity: 0.84;
  margin-top: 50px;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.company-lead__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ff6b2b;
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: -1;
}
.company-lead__cta:hover {
  opacity: 1;
  border-color: #ff6b2b;
}
.company-lead__cta:hover::before {
  transform: scaleX(1);
}

/*トップアバウト*/
.about {
  overflow: hidden;
  position: relative;
  padding-bottom: 390px;
  margin-top: 20px;
}
.about .inner {
  font-weight: 700;
}
.about .inner h1 {
  font-size: 50px;
  margin-bottom: 50px;
  line-height: 1.4;
}
.about .inner p {
  font-size: 20px;
  line-height: 250%;
}
.about .inner .btn p {
  line-height: 300%;
  font-size: 16px;
}
.about:after {
  position: absolute;
  content: "";
  background: url(./img/leed-logo-bg.svg) no-repeat center;
  background-size: contain;
  width: 560px;
  height: 560px;
  bottom: 120px;
  left: 0;
  z-index: -1;
}

/*ボタン*/
.btn_right {
  text-align: right;
}

.btn {
  position: relative;
  display: inline-block;
  margin-top: 65px;
  width: 170px;
  max-width: 100%;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.2em;
  background: #111;
  border: solid 2px rgba(255, 255, 255, 0.6);
  box-sizing: border-box;
  text-align: center;
  height: 50px;
  color: #fff;
  border-radius: 6px;
  overflow: hidden;
  transition: color 0.3s;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ff8a00;
  transform-origin: left bottom;
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 0;
  border-radius: inherit;
}
.btn::after {
  display: none;
}
.btn:hover {
  color: #fff !important;
}
.btn:hover::before {
  transform: scaleX(1);
}
.btn p {
  line-height: 300%;
  font-size: 16px;
  position: relative;
  z-index: 1;
  color: #fff;
}
.btn p::after {
  content: none;
}

.btn_dl {
  position: relative;
  display: inline-block;
  margin-top: 65px;
  width: 300px;
  max-width: 100%;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.2em;
  background: #111;
  border: solid 2px rgba(255, 255, 255, 0.6);
  box-sizing: border-box;
  text-align: center;
  height: 50px;
  color: #fff;
  border-radius: 6px;
  overflow: hidden;
  transition: color 0.3s;
}
.btn_dl::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ff8a00;
  transform-origin: left bottom;
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 0;
  border-radius: inherit;
}
.btn_dl:hover::before {
  transform: scaleX(1);
}
.btn_dl p {
  line-height: 300%;
  font-size: 16px;
  position: relative;
  z-index: 1;
  color: #fff;
}

/*タイトル*/
h1.title {
  font-weight: 700;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: 0.04em;
  position: relative;
}
h1.title span {
  position: absolute;
  top: 15%;
  margin-left: 30px;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 0.05em;
  background: #333;
  color: #fff;
  padding: 0 10px;
}

/*トップサービス*/
.service {
  position: relative;
  background: #fafafa;
}
.service .inner {
  padding-top: 100px;
}
.service ul li {
  width: 48%;
  margin-top: 50px;
  background: #fff;
}
.service ul li .img_area {
  position: relative;
}
.service ul li img {
  display: block;
  object-fit: cover;
  height: 100%;
}
.service ul li .text {
  padding: 50px;
}
.service ul li .text h4 {
  font-size: 24px;
  line-height: 35px;
  margin-bottom: 30px;
  position: relative;
}
.service ul li .text h4::after {
  display: none;
  content: "";
  position: absolute;
  top: 24%;
  right: -10px;
  border: 10px solid transparent;
  border-left: 10px solid #333;
  transition: all 0.3s;
}
.service ul li:hover .text h4::after {
  right: -20px;
}
.service ul li.Marketing .img_area::after {
  position: absolute;
  content: "DX";
  background-size: contain;
  bottom: 20px;
  left: 45px;
  z-index: 10;
  color: #fff;
  font-size: clamp(20px, 1.2vw, 40px);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.service ul li.SNSandWEB .img_area::after {
  position: absolute;
  content: "Sales Solutions";
  background-size: contain;
  bottom: 20px;
  left: 45px;
  z-index: 10;
  color: #fff;
  font-size: clamp(20px, 1.2vw, 40px);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.service ul li.Creative .img_area::after {
  position: absolute;
  content: "Marketing Solutions";
  background-size: contain;
  bottom: 20px;
  left: 45px;
  z-index: 10;
  color: #fff;
  font-size: clamp(20px, 1.2vw, 40px);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.service ul li.Advertising .img_area::after {
  position: absolute;
  content: "Media";
  background-size: contain;
  bottom: 20px;
  left: 45px;
  z-index: 10;
  color: #fff;
  font-size: clamp(20px, 1.2vw, 40px);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.service ul li.e-Commerce .img_area::after {
  position: absolute;
  content: "Entertainment";
  background-size: contain;
  bottom: 20px;
  left: 45px;
  z-index: 10;
  color: #fff;
  font-size: clamp(20px, 1.2vw, 40px);
  font-weight: 700;
  letter-spacing: 0.05em;
}
/*背景*/
.bg {
  background: url(./img/top_bg.png) center no-repeat;
  background-size: cover;
  width: 100%;
  height: 200px;
  margin-bottom: 100px;
}

/*ニュース*/
.news .inner .news_post ul.wrap {
  justify-content: flex-start;
  margin-top: 50px;
}
.news .inner .news_post ul.wrap li {
  width: 30%;
}
.news .inner .news_post ul.wrap li a {
  transition: all.3s;
}
.news .inner .news_post ul.wrap li a:hover {
  opacity: 0.7;
}
.news .inner .news_post ul.wrap li .text_area {
  margin-top: 20px;
}
.news .inner .news_post ul.wrap li .text_area .wrap {
  align-items: center;
}
.news .inner .news_post ul.wrap li .text_area p.date {
  font-size: 14px;
  line-height: 100%;
}
.news .inner .news_post ul.wrap li .text_area p.category {
  font-size: 10px;
  line-height: 100%;
  border: 1px solid #dddddd;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 9px 15px;
}
.news .inner .news_post ul.wrap li .text_area h4,
.news .inner .news_post ul.wrap li .text_area h2 {
  margin-top: 10px;
}
.news .inner .news_post ul.wrap li .text_area h2 {
  font-size: 1em;
}

/*コンタクトと採用*/
.footer_contact_pc .wrap {
  flex-wrap: nowrap;
}
.footer_contact_pc .wrap .recruit {
  width: 50%;
  position: relative;
}
.footer_contact_pc .wrap .recruit .img {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: all 0.3s;
  z-index: 10;
}
.footer_contact_pc .wrap .recruit .img img {
  height: 100%;
  object-fit: cover;
}
.footer_contact_pc .wrap .recruit .title {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  /*要素の大きさの半分ずつを戻す*/
  -webkit-transform: translateY(-50%) translateX(-50%);
  z-index: 20;
  transition: all 0.3s;
}
.footer_contact_pc .wrap .recruit .title span {
  display: block;
  top: 80px;
  margin: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.footer_contact_pc .wrap .recruit:hover .img {
  opacity: 0;
  z-index: -1;
}
.footer_contact_pc .wrap .recruit:hover .title {
  display: none;
}
.footer_contact_pc .wrap .contact {
  width: 50%;
  position: relative;
}
.footer_contact_pc .wrap .contact .img {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  transition: all 0.3s;
}
.footer_contact_pc .wrap .contact .img img {
  height: 100%;
  object-fit: cover;
}
.footer_contact_pc .wrap .contact .title {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  /*要素の大きさの半分ずつを戻す*/
  -webkit-transform: translateY(-50%) translateX(-50%);
  z-index: 20;
  transition: all 0.3s;
}
.footer_contact_pc .wrap .contact .title span {
  display: block;
  top: 80px;
  margin: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.footer_contact_pc .wrap .contact:hover .img {
  opacity: 0;
  z-index: -1;
}
.footer_contact_pc .wrap .contact:hover .title {
  display: none;
}
.footer_contact_pc .wrap .hover_full {
  width: 100%;
  background: #fff;
  text-align: center;
  padding: 180px 0;
  font-weight: 700;
}
.footer_contact_pc .wrap .hover_full p::after {
  content: "";
  position: absolute;
  top: 15%;
  right: -50px;
  border: 10px solid transparent;
  border-left: 10px solid #333;
  transition: all 0.3s;
}
.footer_contact_pc .wrap .hover_r {
  width: 50%;
  background: #333;
  color: #fff;
  text-align: center;
  padding: 180px 0;
  font-weight: 700;
}
.footer_contact_pc .wrap .hover_r p::after {
  content: "";
  position: absolute;
  top: 15%;
  right: -50px;
  border: 10px solid transparent;
  border-left: 10px solid #fff;
  transition: all 0.3s;
}
.footer_contact_pc .wrap p {
  font-size: 20px;
  position: relative;
  display: inline-block;
}

/*フッター*/
footer {
  background: #111;
}
footer .inner .wrap .sitemap .request {
  width: 100%;
  text-align: right;
  margin-top: 40px;
  font-size: 20px;
  line-height: 1.7em;
}
footer .inner .wrap .sitemap .privacy {
  width: 100%;
  text-align: right;
  margin-top: 40px;
  font-size: 12px;
  line-height: 14px;
}
footer .inner .wrap .sitemap .wrap {
  width: 100%;
  justify-content: flex-end;
  margin-top: 40px;
}
footer .inner .wrap .sitemap .wrap a {
  transition: all.3s;
  margin-left: 30px;
}
footer .inner .wrap .sitemap .wrap a:first-child {
  margin-left: 0;
}
footer .inner .wrap .sitemap .wrap a.twitter {
  margin-left: 60px;
}
footer .inner .wrap .sitemap .wrap img {
  width: 30px;
  height: 100%;
  object-fit: contain;
}
.security-logo {
  width: 120px !important;
  filter: invert(1);
  mix-blend-mode: luminosity;
}
footer .inner .wrap li {
  display: inline-block;
  vertical-align: middle;
  margin-left: 40px;
  line-height: 16px;
  letter-spacing: 0.05em;
}
footer .inner .wrap li ul li {
  display: none;
}
footer .inner a {
  color: #fff;
}
footer .inner a:hover {
  opacity: 0.7;
}
footer .logo img {
  width: 200px;
}
footer .copyright {
  border-top: 1px solid #ddd;
}
footer .copyright p {
  font-size: 10px;
  line-height: 10px;
  text-align: center;
  letter-spacing: 0.05em;
  color: #ffffff;
  padding: 30px 0;
}

.footer_contact_pc .wrap .recruit .img:after,
.footer_contact_pc .wrap .contact .img:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  opacity: 0.4;
}
/*サブページ*/
.sub_top {
  max-width: 1240px;
  margin: 70px auto 0;
  padding: 100px 0;
  position: relative;
}
.sub_top h1 img {
  width: auto;
  height: 72px;
}
.sub_top p {
  font-weight: bold;
  margin-top: 30px;
  margin-left: 90px;
  line-height: 100%;
  position: relative;
}
.sub_top p:before {
  position: absolute;
  content: "";
  width: 70px;
  height: 1px;
  background: #333;
  top: 50%;
  left: -90px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*会社概要ページ*/
.com_text .inner {
  padding: 0 0 100px;
}
.com_text .inner h3.en {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.04em;
}
.com_text .inner .black_bg {
  display: inline-block;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  padding: 20px;
  background: #040000;
  margin: 30px 0 50px;
  line-height: 1.4em;
}
.com_text .inner p.content_txt {
  line-height: 200%;
  font-weight: 700;
}

.member .inner ul {
  margin-top: 20px;
}
.member .inner ul li {
  margin-top: 50px;
  width: 30%;
}
.member .inner ul li .img_area {
  margin-bottom: 30px;
  width: 100%;
  height: 370px;
  overflow: hidden;
}
.member .inner ul li .img_area img {
  width: 100%;
  height: 100%;
  object-position: 0% 26%;
  object-fit: cover;
}
.member .inner ul li p.name {
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
}
.member .inner ul li p.position {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: #777;
  padding-top: 8px;
}

.overview {
  background: #fafafa;
}
.overview .inner .table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 50px;
}
.overview .inner .table th,
.overview .inner td {
  padding: 10px 15px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 30px 0;
}
.overview .inner .table th {
  width: 25%;
  text-align: left;
  font-weight: 700;
  position: relative;
  left: 30px;
}
.overview .inner .table td {
  font-weight: 400;
}

/*サービスページ*/
.service_content .inner {
  padding-top: 0;
}
.service_content .inner p.service_top_txt {
  font-weight: 700;
  font-size: 36px;
  line-height: 170%;
}
.service_content .inner .flow {
  margin-top: 70px;
}
.service_content .inner .flow h2 {
  font-size: 28px;
  display: inline-block;
}
.service_content .inner .flow p.scroll {
  display: inline-block;
  font-size: 12px;
  line-height: 200%;
  color: #999;
  position: relative;
  top: -7px;
  left: 60px;
}
.service_content .inner .flow ul.step_box {
  margin-top: 30px;
  display: flex;
  overflow-x: scroll;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.service_content .inner .flow ul.step_box li.step_box_li {
  text-align: center;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  min-width: 340px;
  height: 437px;
  padding: 30px;
  border: 1px solid #eeeeee;
  margin-left: 20px;
}
.service_content .inner .flow ul.step_box li.step_box_li .icon {
  margin: 0 auto;
  background: #efefef;
  width: 102px;
  height: 102px;
  border-radius: 50%;
}
.service_content .inner .flow ul.step_box li.step_box_li .icon img {
  padding: 30px;
  object-fit: cover;
}
.service_content .inner .flow ul.step_box li.step_box_li .flow_text {
  margin-top: 30px;
}
.service_content .inner .flow ul.step_box li.step_box_li .flow_text h3 {
  font-size: 20px;
}
.service_content .inner .flow ul.step_box li.step_box_li .flow_text ul {
  margin-top: 30px;
}
.service_content .inner .flow ul.step_box li.step_box_li .flow_text ul li {
  font-size: 14px;
  line-height: 140%;
  margin-bottom: 12px;
}
.service_content .inner .flow ul.step_box li.step_box_li:nth-child(1) .icon img {
  width: auto;
}

.svc .inner {
  padding-top: 50px;
}

/*人材紹介*/
.employment_top .inner {
  padding-top: 0;
}
.employment_top .inner p.weight {
  font-weight: 700;
  font-size: 36px;
  line-height: 170%;
  margin-bottom: 30px;
}
.employment_top .inner p.content {
  font-size: 16px;
  line-height: 200%;
}
.employment_top .inner p.pc_none {
  font-size: 12px;
  line-height: 200%;
  color: #999;
}
.employment_top .inner .scroll_img {
  margin-top: 70px;
  overflow: auto;
}

.offer {
  background: #fafafa;
}
.offer .inner h2 {
  font-size: 36px;
  line-height: 170%;
}
.offer .inner .offer_content {
  margin-top: 50px;
  align-items: center;
}
.offer .inner .offer_content .img_area {
  width: 46%;
}
.offer .inner .offer_content .text_area {
  width: 50%;
}
.offer .inner .offer_content .text_area h3 {
  font-size: 28px;
  line-height: 170%;
}
.offer .inner .offer_content .text_area p {
  font-size: 16px;
  line-height: 170%;
  margin-top: 30px;
}
.offer .inner .offer_content:nth-child(1) {
  margin-top: 70px;
}
.offer .inner p a,
.point .inner p a {
  display: inline-block;
  transition: all.3s;
}
.offer .inner p a:hover,
.point .inner p a:hover {
  opacity: 0.7;
}

.point .inner .point_content {
  margin-top: 70px;
}
.point .inner .point_content .point_box {
  margin-top: 70px;
  align-items: center;
}
.point .inner .point_content .point_box .img_area {
  width: 46%;
}
.point .inner .point_content .point_box .text_area {
  width: 50%;
}
.point .inner .point_content .point_box .text_area h3 {
  font-size: 28px;
  line-height: 170%;
  position: relative;
  margin-left: 80px;
}
.point .inner .point_content .point_box .text_area h3::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 32px;
  background-size: contain;
  top: 50%;
  left: -80px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.point .inner .point_content .point_box .text_area p {
  font-size: 16px;
  line-height: 170%;
  margin-top: 30px;
}
.point .inner .point_content .point_box .text_area h3.point1::before {
  background: url(./img/01.svg) no-repeat center;
  width: 37px;
  height: 37px;
  background-size: contain;
}
.point .inner .point_content .point_box .text_area h3.point2::before {
  background: url(./img/02.svg) no-repeat center;
  background-size: contain;
}
.point .inner .point_content .point_box .text_area h3.point3::before {
  background: url(./img/03.svg) no-repeat center;
  background-size: contain;
}
.point .inner .point_content .point_box .text_area h3.point4::before {
  background: url(./img/04.svg) no-repeat center;
  background-size: contain;
}
.point .inner .point_content .point_box:nth-child(1) {
  margin-top: 0;
}
.point .inner .point_content .point_box:nth-child(even) {
  flex-direction: row-reverse;
}

/*起業支援ページ*/
.solution .inner {
  padding-top: 50px;
}
.solution .inner .solution_box {
  margin-top: 70px;
}
.solution .inner .solution_box h3 {
  font-size: 36px;
  line-height: 170%;
  margin-left: 70px;
  position: relative;
}
.solution .inner .solution_box h3::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  background-size: contain;
  top: 50%;
  left: -70px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.solution .inner .solution_box p.sol_top {
  line-height: 200%;
  margin-top: 30px;
}
.solution .inner .solution_box ul {
  margin-top: 50px;
}
.solution .inner .solution_box ul li {
  width: 49%;
  padding: 40px;
  border: 1px solid #eeeeee;
}
.solution .inner .solution_box ul li .content1 {
  margin-bottom: 40px;
}
.solution .inner .solution_box ul li .content1 p.weight {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  margin-bottom: 20px;
}
.solution .inner .solution_box ul li .content_under p.weight {
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  margin-bottom: 15px;
}
.solution .inner .solution_box ul li p.content {
  font-size: 14px;
  line-height: 170%;
}
.solution .inner .solution1 h3::before {
  background: url(./img/01.svg) no-repeat center;
  width: 37px;
  height: 37px;
  background-size: contain;
}
.solution .inner .solution2 {
  margin-top: 100px;
}
.solution .inner .solution2 h3::before {
  background: url(./img/02.svg) no-repeat center;
  background-size: contain;
}
.solution .inner .solution2 p.case {
  font-weight: 600;
  font-size: 28px;
  line-height: 170%;
  margin-top: 70px;
}
.solution .inner .solution2 ul {
  margin-top: 30px;
}
.solution .inner .solution3 {
  margin-top: 100px;
}
.solution .inner .solution3 h3::before {
  background: url(./img/03.svg) no-repeat center;
  background-size: contain;
}
.solution .inner .solution4 h3::before {
  content: "04";
  font-size: 32px;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 5px;
  bottom: -4px;
  top: auto;
}

.menter {
  background: #fafafa;
}
.menter .inner .menter_box {
  margin-top: 80px;
}
.menter .inner .menter_box ul li {
  width: 22%;
}
.menter .inner .menter_box ul li .wrap .profile {
  width: 100%;
  margin-top: 30px;
}
.menter .inner .menter_box ul li .wrap .profile .name {
  font-size: 24px;
  line-height: 140%;
  font-weight: 700;
}
.menter .inner .menter_box ul li .wrap .profile .com_name {
  font-size: 14px;
  line-height: 140%;
  color: #777;
  margin-top: 8px;
}
.menter .inner .menter_box ul li .career {
  margin-top: 20px;
  font-size: 14px;
  line-height: 170%;
}

p.grey {
  color: #777;
  font-size: 14px;
}

/*採用*/
.design {
  background: #fafafa;
}
.design .inner h2 {
  font-size: 36px;
  line-height: 170%;
}
.design .inner .design_one {
  margin-top: 70px;
}
.design .inner .design_one h3 {
  font-size: 28px;
  line-height: 140%;
}
.design .inner .design_one p.design_top_text {
  font-size: 16px;
  line-height: 200%;
  margin-top: 30px;
}
.design .inner .design_one .wrap {
  margin-top: 50px;
}
.design .inner .design_one .wrap .wrap_list {
  width: 45%;
}
.design .inner .design_one .wrap .wrap_list p {
  font-size: 14px;
  line-height: 170%;
}
.design .inner .design_one .wrap .wrap_list p.weight {
  font-size: 20px;
  position: relative;
  margin-bottom: 30px;
  margin-left: 70px;
  font-weight: 700;
}
.design .inner .design_one .wrap .wrap_list p.weight::before {
  background: url(./img/01.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background-size: contain;
  top: 50%;
  left: -70px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.design .inner .design_one .wrap .wrap_list:nth-child(2) p.weight::before {
  background: url(./img/02.svg) no-repeat center;
  width: 40px;
  height: 32px;
  background-size: contain;
}
.design .inner .design_one .wrap .wrap_list:nth-child(3) p.weight::before {
  background: url(./img/03.svg) no-repeat center;
  width: 40px;
  height: 32px;
  background-size: contain;
}
.design .inner .other {
  margin-top: 100px;
}

.build .inner h2 {
  font-size: 36px;
  line-height: 170%;
}
.build .inner p.build_top {
  line-height: 200%;
  margin-top: 30px;
}
.build .inner .build_box {
  margin-top: 30px;
}
.build .inner .build_box .wrap li {
  border: 1px solid #eee;
  padding: 40px 0 40px 40px;
  width: 49%;
  margin-top: 20px;
}
.build .inner .build_box .wrap li p.build_ttl {
  font-size: 20px;
  line-height: 140%;
  margin-bottom: 30px;
  font-weight: bold;
}
.build .inner .build_box .wrap li .wrap {
  align-items: center;
}
.build .inner .build_box .wrap li .wrap .left {
  width: 48%;
}
.build .inner .build_box .wrap li .wrap .right {
  width: 48%;
}
.build .inner .build_box .wrap li .work_link {
  padding: 15px 20px;
  border: 1px solid #333333;
  position: relative;
  transition: all 0.3s;
  width: 280px;
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 0.05em;
}
.build .inner .build_box .wrap li .work_link::after {
  content: "";
  position: absolute;
  top: 35%;
  right: 10px;
  border: 8px solid transparent;
  border-left: 8px solid #333;
}
.build .inner .build_box .wrap li .work_link:hover {
  opacity: 0.7;
}
.build .inner .build_box .wrap li:nth-child(1) {
  position: relative;
  overflow: hidden;
}
.build .inner .build_box .wrap li:nth-child(1):after {
  position: absolute;
  content: "";
  width: 285px;
  height: 148px;
  background: url(./img/web.png) no-repeat center;
  background-size: contain;
  top: 50%;
  right: -50px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.build .inner .build_box .wrap li:nth-child(3) .wrap,
.build .inner .build_box .wrap li:nth-child(4) .wrap {
  justify-content: flex-start;
}
.build .inner .build_box .wrap li:nth-child(3) .wrap div:nth-child(even),
.build .inner .build_box .wrap li:nth-child(4) .wrap div:nth-child(even) {
  margin-left: 40px;
}
.build .inner .build_box .wrap li:nth-child(3) .wrap div:nth-child(3),
.build .inner .build_box .wrap li:nth-child(3) .wrap div:nth-child(4),
.build .inner .build_box .wrap li:nth-child(4) .wrap div:nth-child(3),
.build .inner .build_box .wrap li:nth-child(4) .wrap div:nth-child(4) {
  margin-top: 40px;
}

.formation {
  background: #fafafa;
}
.formation .inner h2 {
  font-size: 36px;
  line-height: 170%;
}
.formation .inner p.formation_top {
  line-height: 200%;
  margin-top: 30px;
}
.formation .inner .formation_box {
  margin-top: 30px;
}
.formation .inner .formation_box .wrap li {
  border: 1px solid #eee;
  padding: 40px 0 40px 40px;
  width: 49%;
  margin-top: 20px;
  background: #fff;
}
.formation .inner .formation_box .wrap li p.formation_ttl {
  font-size: 20px;
  line-height: 140%;
  margin-bottom: 30px;
  font-weight: bold;
}
.formation .inner .formation_box .wrap li .wrap {
  justify-content: flex-start;
  align-items: center;
}
.formation .inner .formation_box .wrap li .wrap div {
  margin-right: 40px;
}
.formation .inner .formation_box .wrap li p.content {
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  padding-right: 40px;
}

.action .inner h2 {
  font-size: 36px;
  line-height: 170%;
  margin-bottom: 70px;
}
.action .inner h3.action_top {
  font-weight: 600;
  font-size: 28px;
  line-height: 140%;
}
.action .inner .action_one {
  margin-top: 50px;
}
.action .inner .action_one .left,
.action .inner .action_one .right {
  width: 46%;
}
.action .inner .action_one .left p,
.action .inner .action_one .right p {
  font-size: 14px;
}
.action .inner .action_one .left p.weight,
.action .inner .action_one .right p.weight {
  font-weight: 700;
  font-size: 20px;
  line-height: 170%;
  margin-left: 70px;
  margin-bottom: 30px;
  position: relative;
}
.action .inner .action_one .left p.weight::after {
  background: url(./img/01.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  content: "";
  width: 40px;
  height: 32px;
  background-size: contain;
  top: 50%;
  left: -70px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.action .inner .action_one .right p.weight::after {
  background: url(./img/02.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  content: "";
  width: 40px;
  height: 32px;
  background-size: contain;
  top: 50%;
  left: -70px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.action .inner .action_box {
  margin: 50px 0 100px;
  padding: 40px;
  border: 1px solid #eeeeee;
  box-sizing: border-box;
  position: relative;
}
.action .inner .action_box .box_li {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
}
.action .inner .action_box .box_li p {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  margin-right: 40px;
}
.action .inner .action_box .box_li p.weight {
  font-weight: 600;
  font-size: 20px;
  margin-right: 110px;
}
.action .inner .action_box .option {
  margin-top: 75px;
}
.action .inner .action_box .option p.weight {
  margin-right: 50px;
}
.action .inner .action_box::after {
  position: absolute;
  content: "+";
  width: 30px;
  height: 30px;
  font-size: 30px;
  color: #333;
  top: 50%;
  left: 80px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.action .inner .other_sv h3 {
  font-size: 28px;
  line-height: 140%;
}
.action .inner .other_sv .wrap li {
  width: 24%;
  border: 1px solid #eeeeee;
  box-sizing: border-box;
  padding: 30px;
  margin-top: 30px;
}
.action .inner .other_sv .wrap li p {
  font-size: 14px;
  font-weight: 400;
}
.action .inner .other_sv .wrap li p.weight {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  margin-bottom: 20px;
}
.action .inner .other_sv .wrap li .wrap {
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}
.action .inner .other_sv .wrap li img {
  width: 160px;
  margin-right: 5px;
}

/*ブランディング*/
.branding_top .inner {
  padding-top: 0;
}
.branding_top .inner p.branding_top_txt {
  font-weight: 700;
  font-size: 36px;
  line-height: 170%;
}
.branding_top .inner p.content {
  line-height: 200%;
  margin-top: 30px;
}

.branding_point {
  background: #fafafa;
}
.branding_point .inner .wrap {
  margin-top: 70px;
}
.branding_point .inner .wrap li {
  width: 30%;
}
.branding_point .inner .wrap li h3 {
  font-size: 20px;
  line-height: 170%;
}
.branding_point .inner .wrap li p {
  font-size: 14px;
  line-height: 170%;
  margin-top: 30px;
}

.work .inner .work_box .wrap {
  align-items: center;
  margin-top: 70px;
}
.work .inner .work_box .img_area {
  width: 40%;
}
.work .inner .work_box .text_area {
  width: 55%;
}
.work .inner .work_box .text_area p.category {
  font-weight: 300;
  font-size: 12px;
  line-height: 170%;
  letter-spacing: 0.05em;
  color: #fff;
  background: #333;
  padding: 0 10px;
  display: inline-block;
}
.work .inner .work_box .text_area h3 {
  font-size: 28px;
  line-height: 140%;
  margin: 15px 0 10px;
}
.work .inner .work_box .text_area a {
  font-size: 12px;
  line-height: 140%;
}
.work .inner .work_box .text_area a:hover {
  opacity: 0.7;
}
.work .inner .work_box .text_area p.txt {
  line-height: 200%;
  margin-top: 30px;
}

/*ニュースページ*/
.news .inner {
  padding-top: 0;
}

.news_category .wrap {
  justify-content: flex-start;
}
.news_category .wrap li {
  margin-right: 10px;
  border: 1px solid #dddddd;
  box-sizing: border-box;
  border-radius: 4px;
}
.news_category .wrap li a {
  font-size: 14px;
  line-height: 100%;
  padding: 10px 15px;
}
.news_category .wrap li a:hover {
  opacity: 0.7;
}

.news_page .wrap {
  margin: 0;
}
.news_page .wrap li {
  margin-top: 70px;
}

.design .inner .design_one .wrap .wrap_list:nth-child(3) {
  margin-top: 50px;
}

/*タブのスタイル*/
.tab_item {
  margin-right: 10px;
  border: 1px solid #dddddd;
  box-sizing: border-box;
  border-radius: 4px;
  font-size: 14px;
  line-height: 100%;
  display: inline-block;
  padding: 10px 15px;
}

.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  clear: both;
  overflow: hidden;
}

/*選択されているタブのコンテンツのみを表示*/
#all:checked ~ #all_content,
#news-post:checked ~ #news-post_content,
#employeeinterview:checked ~ #employeeinterview_content,
#entrepreneurinterview:checked ~ #entrepreneurinterview_content,
#prerelease:checked ~ #prerelease_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background: #333;
  color: #fff;
}

/*ニュース投稿*/
.single_block {
  text-align: justify;
}
.single_block .inner {
  position: relative;
}
.single_block .inner .btn_left {
  position: absolute;
  left: 25px;
  width: 110px;
}
.single_block .inner .back_btn {
  height: 50px;
  position: relative;
  display: inline-block;
  margin: 0;
  width: 170px;
  max-width: 100%;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.2em;
  background: #fff;
  border: solid 2px #333;
  box-sizing: border-box;
  border-left: transparent;
  text-align: center;
  transition: all 0.3s;
}
.single_block .inner .back_btn::before {
  content: "";
  position: absolute;
  top: 12px;
  left: -46px;
  margin-top: -12px;
  border: 23px solid transparent;
  border-right: 23px solid #fff;
  z-index: 2;
  transition: all 0.3s;
}
.single_block .inner .back_btn::after {
  content: "";
  position: absolute;
  top: 12px;
  left: -50px;
  margin-top: -14px;
  border: 25px solid transparent;
  border-right: 25px solid #333;
}
.single_block .inner .back_btn:hover {
  color: #fff;
  background: #333;
}
.single_block .inner .back_btn:hover::before {
  border-right: 25px solid #333;
}
.single_block .inner .back_btn p {
  margin: 0;
  font-size: 16px;
  line-height: 300%;
  letter-spacing: 0.05em;
  position: relative;
}
.single_block .inner .back_btn p::after {
  content: "";
  position: absolute;
  top: 17px;
  left: -18px;
  border: 6px solid transparent;
  border-right: 6px solid #333;
  transition: all 0.3s;
  z-index: 10;
}
.single_block .inner .back_btn:hover p:after {
  border-right: 6px solid #fff;
}
.single_block .inner .single_main {
  margin: 0 auto;
  max-width: 800px;
}
.single_block .inner .icatch {
  margin-bottom: 50px;
}
.single_block .inner p {
  line-height: 200%;
}
.single_block .inner p.date {
  margin-bottom: 20px;
  line-height: 170%;
}
.single_block .inner .contents {
  margin: 70px 0 50px;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 70px;
}
.single_block .inner p.single_ttl {
  font-weight: 700;
  font-size: 36px;
  line-height: 170%;
}
.single_block .inner h2 {
  margin: 50px 0;
  font-size: 28px;
  line-height: 170%;
}
.single_block .inner h3 {
  margin: 30px 0;
  font-size: 20px;
  line-height: 170%;
}
.single_block .inner .contents p {
  margin: 30px 0;
}
.single_block .inner ul,
.single_block .inner ol {
  padding-left: 40px;
  padding-left: 10px;
  margin: 50px 0;
}
.single_block .inner li {
  list-style-type: inherit;
}
.wp-block-quote {
  border-left: 3px solid #ddd;
  padding-left: 10px;
  margin: 50px 0;
}
.wp-block-quote p {
  margin: 0;
}

/*採用情報*/
.recruit_page .sub_top p,
.recruit_page .recruit_main,
.recruit_page .recruit_main *,
.recruit_page .recruit_detail,
.recruit_page .recruit_detail * {
  color: #ffffff;
}

.recruit_main .inner .top_text {
  font-weight: 700;
  font-size: 36px;
  line-height: 170%;
}
.recruit_main .inner .want {
  margin-top: 70px;
}
.recruit_main .inner .want h2 {
  font-size: 24px;
  line-height: 170%;
}
.recruit_main .inner .want ul.wrap {
  margin-top: 50px;
}
.recruit_main .inner .want ul.wrap li {
  width: 30%;
}
.recruit_main .inner .want ul.wrap li .wrap {
  justify-content: flex-start;
  margin-bottom: 40px;
  position: relative;
}
.recruit_main .inner .want ul.wrap li .wrap .want-number {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: 50px;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.08em;
}
.recruit_main .inner .want ul.wrap li .wrap .want-number::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  transform: rotate(45deg);
  border: 1px solid #333333;
}
.recruit_main .inner .want ul.wrap li .wrap h3 {
  font-size: 20px;
}
.recruit_main .inner .want ul.wrap li .wrap::after {
  content: none;
}
.recruit_main .inner .want ul.wrap li p {
  font-size: 14px;
  line-height: 170%;
}

.recruit_detail .inner .table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 50px;
}
.recruit_detail .inner .table th,
.recruit_detail .inner td {
  padding: 10px 15px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 30px 0;
}
.recruit_detail .inner .table th {
  width: 25%;
  text-align: left;
  font-weight: 700;
  position: relative;
  left: 30px;
}
.recruit_detail .inner .table td {
  font-weight: 400;
}
.recruit_detail .inner .btn {
  letter-spacing: 0.05em;
  width: 290px;
}
.recruit_page .recruit_detail .inner .btn,
.recruit_page .recruit_detail .inner .btn p {
  color: #fff;
}

/*プライバシーポリシー*/
.privacy_main .inner {
  padding-top: 0;
}
.privacy_main .inner .privacy_block {
  margin-top: 50px;
}
.privacy_main .inner .privacy_block p.weight {
  font-weight: 700;
  font-size: 28px;
  line-height: 170%;
  margin-bottom: 20px;
}
.privacy_main .inner .privacy_block p a {
  display: inline-block;
  text-decoration: underline;
}
.privacy_main .inner .privacy_block p a:hover {
  opacity: 0.7;
}
.privacy_main .inner .privacy_block:nth-child(1) {
  margin-top: 0;
}

/*送信完了*/
.thank_content {
  text-align: center;
}
.thank_content .inner {
  padding-top: 80px;
  max-width: 900px;
}
.thank_content .inner p.weight {
  font-weight: 700;
  font-size: 52px;
  line-height: 100%;
  margin-bottom: 70px;
}
.thank_content .inner p.content {
  font-weight: 700;
  font-size: 18px;
  line-height: 200%;
}
.thank_content .inner .btn {
  margin-top: 100px;
}

/*オンライン*/
.online_sub h1 img {
  width: 835px;
}
@media (max-width: 1240px) {
  .inner {
    margin: 0 20px;
  }
  .sub_top {
    margin-left: 20px;
    margin-right: 20px;
  }
  .form .inner {
    margin: 0 auto;
  }
}
@media (max-width: 1024px) {
  .footer_contact_pc .wrap p {
    font-size: 16px;
  }
  .footer_contact_pc .wrap .hover_r p::after,
  .footer_contact_pc .wrap .hover_full p::after {
    right: -30px;
  }
  .inner {
    padding: 70px 0;
  }
  .btn_right {
    margin-right: 20px;
  }
  .build .inner .build_box .wrap li .work_link {
    width: 180px;
  }
  .action .inner .other_sv .wrap li {
    width: 48.5%;
  }
  /*投稿*/
  .single_block .inner .single_main {
    margin-top: 100px;
  }
  .single_block .inner .btn_left {
    left: 0;
  }
  .single_block .inner .btn_left,
  .single_block .wrap .single_main {
    width: 100%;
  }

  .single_block .inner p.single_ttl {
    font-size: 28px;
  }

  .single_block .inner h2 {
    font-size: 20px;
  }

  .single_block .inner h3 {
    font-size: 16px;
  }

  .single_block .inner .back_btn {
    width: 75px;
    left: 20px;
  }
}

@media (max-width: 899px) {
  #pc_navi {
    display: none;
  }

  header {
    color: rgba(255, 255, 255, 0.7);
    height: 70px;
  }

  header .header_inner {
    height: 70px;
  }

  header .header_inner #logo a {
    width: 12rem;
  }

  header .header_inner #logo a img {
    width: 100%;
  }
  #sp_navi {
  }
  #nav-toggle {
    position: fixed;
    top: 15px;
    right: 15px;
    height: 42px;
    cursor: pointer;
    width: 42px;
    background: #040000;
  }
  #nav-toggle > div {
    position: relative;
    width: 36px;
  }
  #nav-toggle span {
    width: 16px;
    height: 2px;
    left: 35%;
    display: block;
    background: #fff;
    position: absolute;
    transition:
      transform 0.4s ease-in-out,
      top 0.3s ease;
  }
  #nav-toggle span:nth-child(1) {
    top: 15px;
  }
  #nav-toggle span:nth-child(2) {
    top: 21px;
  }
  #nav-toggle span:nth-child(3) {
    top: 27px;
  }

  .open #nav-toggle {
    background: #fff;
  }
  .open #nav-toggle span {
    background: #000;
  }
  .open #nav-toggle span:nth-child(1) {
    top: 20px;
    transform: rotate(45deg);
  }
  .open #nav-toggle span:nth-child(2) {
    top: 20px;
    width: 0;
    left: 50%;
  }
  .open #nav-toggle span:nth-child(3) {
    top: 20px;
    transform: rotate(-45deg);
  }

  #nav-toggle {
    z-index: 1000;
  }

  #gloval-nav {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 100px;
    background: #000;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 50px;
    z-index: 990;
    display: flex;
    visibility: hidden;
    font-size: 2.2rem;
    opacity: 0;
    transition:
      opacity 0.4s ease,
      visibility 0.4s ease;
  }

  #gloval-nav {
    height: 100%;
  }
  #gloval-nav a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding-top: 40px;
    transition: color 0.4s ease;
    font-size: 20px;
    line-height: 20px;
    margin-right: 20px;
  }
  #gloval-nav a:hover {
    opacity: 0.7;
  }
  #gloval-nav ul {
    list-style: none;
    padding: 0;
  }
  #gloval-nav .dropdown a {
    font-size: 12px;
    line-height: 140%;
    color: #ccc;
    padding-top: 10px;
  }
  #gloval-nav a.privacy {
    font-size: 12px;
    line-height: 140%;
    padding-top: 70px;
  }
  #gloval-nav p.copy {
    font-size: 10px;
    line-height: 10px;
    text-align: center;
    letter-spacing: 0.05em;
    position: relative;
    margin-top: 60px;
  }
  #gloval-nav nav {
    position: relative;
  }
  #gloval-nav nav .wrap {
    align-items: center;
    justify-content: inherit;
  }

  #gloval-nav li:nth-child(1) a,
  #gloval-nav li:nth-child(2) a {
    padding-bottom: 10px;
  }

  /* open */
  .open {
    overflow: hidden;
  }
  .open #gloval-nav {
    visibility: visible;
    opacity: 1;
  }
  .open #gloval-nav ul {
    padding: 0;
  }
  .open #gloval-nav li {
    opacity: 1;
    transform: translateX(0);
    transition:
      transform 1s ease,
      opacity 0.9s ease;
  }

  .top_bg .slide > .slick-list,
  .top_bg .slide > .slick-list > .slick-track,
  .top_bg .slide > .slick-list > .slick-track > .slick-slide > div {
    height: 100%;
  }
  .bg {
    margin-bottom: 70px;
  }

  .offer .inner .offer_content .text_area,
  .offer .inner .offer_content .img_area,
  .point .inner .point_content .point_box .img_area,
  .point .inner .point_content .point_box .text_area {
    width: calc(100 / 2 - 30px);
  }
  .offer .inner {
    margin-top: 70px;
  }

  .offer .inner h2 {
    font-size: 24px;
  }

  .offer .inner .offer_content .text_area,
  .point .inner .point_content .point_box .text_area {
    margin-top: 30px;
  }

  .offer .inner .offer_content .img_area,
  .offer .inner .offer_content .text_area,
  .point .inner .point_content .point_box .img_area,
  .point .inner .point_content .point_box .text_area {
    width: 100%;
  }

  .offer .inner .offer_content .text_area h3,
  .point .inner .point_content .point_box .text_area h3 {
    font-size: 20px;
  }

  .offer .inner .offer_content .text_area p,
  .point .inner .point_content .point_box .text_area p {
    font-size: 14px;
    margin-top: 20px;
  }

  .point .inner .point_content .point_box .text_area h3 {
    margin-left: 60px;
  }

  .point .inner .point_content .point_box .text_area h3::before {
    width: 31px;
    height: 24px;
    left: -60px;
    top: 17px;
  }
  .menter .inner .menter_box ul li {
    width: calc(100 / 2 - 30px);
  }
  footer .inner {
    padding: 50px 0;
  }
  footer .logo {
    width: 30%;
    margin: 0 auto;
  }
  footer .sitemap {
    width: 100%;
    text-align: center;
  }

  footer .inner .wrap li {
    display: block;
    margin: 30px 0 0;
  }

  footer .inner .wrap .sitemap .request {
    text-align: center;
    margin-top: 30px;
    font-size: 16.5px;
  }
  footer .inner .wrap .sitemap .privacy {
    text-align: center;
    margin-top: 30px;
  }

  footer .inner .wrap .sitemap .wrap {
    justify-content: center;
  }

  /*構築*/
  .build .inner p.build_top {
    font-size: 14px;
    line-height: 170%;
  }

  .build .inner .build_box .wrap li,
  .formation .inner .formation_box .wrap li {
    width: 100%;
    padding: 30px;
  }

  .build .inner .build_box .wrap li:nth-child(2) .wrap .left,
  .build .inner .build_box .wrap li:nth-child(2) .wrap .right {
    width: 60%;
  }

  .build .inner .build_box .wrap li:nth-child(2) .wrap .right {
    font-size: 14px;
    margin-top: 30px;
    line-height: 140%;
  }

  .build .inner .build_box .wrap li:nth-child(3) .wrap .left {
    width: 73px !important;
  }

  .build .inner .build_box .wrap li p.build_ttl,
  .formation .inner .formation_box .wrap li p.formation_ttl {
    font-size: 18px;
  }

  .build .inner .build_box .wrap li:nth-child(4) .wrap div:nth-child(even) {
    margin: 0;
  }

  .build .inner .build_box .wrap li:nth-child(4) .wrap div:nth-child(2),
  .build .inner .build_box .wrap li:nth-child(4) .wrap div:nth-child(3),
  .build .inner .build_box .wrap li:nth-child(4) .wrap div:nth-child(4) {
    margin-top: 30px;
  }
  .build .inner .build_box .wrap li:nth-child(4) .wrap div:nth-child(2),
  .build .inner .build_box .wrap li:nth-child(4) .wrap div:nth-child(3),
  .build .inner .build_box .wrap li:nth-child(4) .wrap div:nth-child(4) {
    margin-left: 20px;
  }
  /*採用*/
  .recruit_main .inner .want h2 {
    font-size: 20px;
  }

  .recruit_main .inner .want ul.wrap li {
    width: 100%;
    margin-top: 70px;
  }

  .recruit_main .inner .want ul.wrap li:nth-child(1) {
    margin-top: 0;
  }

  .recruit_main .inner .want ul.wrap li .wrap h3 {
    font-size: 18px;
  }
  .online_sub h1 img {
    width: 95%;
  }
  .about .inner h1 {
    line-height: 170%;
  }
  /*サービス*/
  .service ul li .img_area::after {
    left: 30px !important;
  }
  .service ul li .text {
    padding: 30px;
  }

  .service ul li .text h4 {
    font-size: 20px;
    line-height: 29px;
    margin-bottom: 20px;
  }

  .service ul li .text p {
    font-size: 14px;
  }

  .service .inner {
    padding-top: 70px;
  }

  .service ul li.Recruitmentsupport .img_area::after {
    width: 252px;
    height: 28px;
    left: 20px;
  }

  .service ul li.Entrepreneur .img_area::after {
    width: 164px;
    height: 28px;
    left: 20px;
  }

  .service ul li.Employmentagency .img_area::after {
    width: 250px;
    height: 28px;
    left: 20px;
  }

  .service ul li.Branding .img_area::after {
    width: 115px;
    height: 28px;
    left: 20px;
  }
  .action .inner h3.action_top {
    font-size: 20px;
  }
  .single_block .inner ul,
  .single_block .inner ol {
    padding-left: 20px;
  }
  .form .inner {
    margin: 0 20px;
  }
}

@media (max-width: 599px) {
  .top_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .top_bg {
    height: 90vh;
  }
  .top_bg .back_top {
    height: 90vh;
  }
  .about .inner h1 {
    font-size: min(6.4vw, 30px);
    line-height: 170%;
  }

  .about .inner p {
    font-size: 16px;
  }

  .about:after {
    width: 300px;
    height: 300px;
    bottom: 150px;
  }

  h1.title {
    font-size: 36px;
    line-height: 100%;
  }
  h1.title span {
    display: block;
    margin: 40px 0 0;
  }
  .service ul {
    padding-top: 15px;
  }
  .service ul li {
    width: 100%;
    margin-top: 30px;
  }
  .service ul li:nth-child(1) {
    margin-top: 70px;
  }

  .about {
    padding-bottom: 0px;
  }

  .about .member_photo {
    width: 100%;
    height: 0;
    padding-top: 40%;
    bottom: 0;
    background-size: 160%;
    background-position: 57% 29%;
  }

  .service ul li .text h4::after {
    right: -15px;
    border: 6px solid transparent;
    border-left: 6px solid #333;
  }

  .news .inner .news_post ul.wrap li {
    width: 100%;
    margin-top: 50px;
  }
  .tab_item {
    margin-right: 5px;
  }
  footer .logo {
    width: 60%;
  }

  footer .inner {
    padding: 50px 0;
  }
  footer .logo {
    width: 60%;
    margin: 0 auto;
    text-align: center;
  }
  footer .sitemap {
    width: 100%;
    text-align: center;
  }

  footer .inner .wrap li {
    display: block;
    margin: 30px 0 0;
  }

  footer .inner .wrap .sitemap .privacy {
    text-align: center;
    margin-top: 30px;
  }

  footer .inner .wrap .sitemap .wrap {
    justify-content: center;
  }

  /*コンタクトと採用*/
  .footer_contact_pc {
    display: none;
  }

  .footer_contact_sp {
    overflow: hidden;
  }
  .footer_contact_sp .recruit {
    width: 100%;
    background: url(./img/leed-recruit.webp) no-repeat center;
    background-size: 200%;
    background-position: top;
    position: relative;
    padding: 220px 0 70px;
  }
  .footer_contact_sp .recruit::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    opacity: 0.4;
  }
  .footer_contact_sp .contact {
    width: 100%;
    background: url(./img/leed-contact.webp) no-repeat center;
    position: relative;
    background-size: 160%;
    background-position: bottom;
    padding: 200px 0 70px;
  }
  .footer_contact_sp .contact::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    opacity: 0.4;
  }
  .footer_contact_sp .title {
    font-size: 36px;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    /*要素の大きさの半分ずつを戻す*/
    -webkit-transform: translateY(-50%) translateX(-50%);
    z-index: 20;
    transition: all 0.3s;
  }
  .footer_contact_sp .title span {
    text-align: center;
    width: 80%;
    display: block;
    top: 60px;
    margin: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  .footer_contact_sp .hover_full,
  .footer_contact_sp .hover_r {
    width: 100%;
    margin: 5px 20px;
    background: #fff;
    border: 1px solid #333333;
    box-sizing: border-box;
    padding: 15px 20px;
  }
  .footer_contact_sp .hover_full p,
  .footer_contact_sp .hover_r p {
    position: relative;
    font-weight: 700;
  }
  .footer_contact_sp .hover_full p::after,
  .footer_contact_sp .hover_r p::after {
    content: "";
    position: absolute;
    top: 15%;
    right: -15px;
    border: 10px solid transparent;
    border-left: 10px solid #333;
    transition: all 0.3s;
  }

  .service ul li .img_area {
    width: 100%;
    height: 150px;
  }

  .service ul li.Employmentagency::after,
  .service ul li.Entrepreneur::after,
  .service ul li.Recruitmentsupport::after,
  .service ul li.Branding::after {
    top: 100px;
    left: 20px;
  }

  .service ul li.Employmentagency::after {
    width: 265px;
    height: 28px;
    background-size: contain;
  }

  .service ul li.Entrepreneur::after {
    width: 164px;
    height: 28px;
    background-size: contain;
  }

  .service ul li.Recruitmentsupport::after {
    width: 252px;
    height: 28px;
    background-size: contain;
  }

  .service ul li.Branding::after {
    width: 115px;
    height: 28px;
    background-size: contain;
  }

  /*サブトップ*/
  .sub_top {
    padding-top: 38px;
    margin-right: 20px;
    margin-left: 20px;
  }

  .sub_top h1 img {
    height: 50px;
  }

  .sub_top p {
    font-size: 14px;
    margin-top: 20px;
    margin-left: 60px;
  }

  .sub_top p:before {
    width: 40px;
    left: -60px;
  }

  .service_sub h1 img {
    width: 152px;
  }

  .entrepreneur_sub h1 img,
  .privacy_sub h1 img,
  .support_sub h1 img {
    width: 100%;
  }
  .online_sub h1 img {
    width: 257px;
    height: 100px;
  }
  .employment_sub h1 img {
    width: 250px;
    height: 100px;
  }

  .company_sub h1 img {
    width: 197px;
  }

  .news_sub h1 img {
    width: 115px;
  }

  .contact_sub h1 img {
    width: 181px;
  }

  /*会社概要ページ*/
  .com_text .inner .black_bg {
    display: block;
    font-size: min(6.4vw, 30px);
    line-height: 170%;
    background: #fff;
    color: #333;
    padding: 0;
    margin: 20px 0 30px;
  }

  .overview .inner .table {
    margin-top: 80px;
  }

  .overview .inner .table th,
  .overview .inner td {
    width: auto;
    display: block;
    border: none;
    font-size: 14px;
  }

  .overview .inner .table th {
    left: 0;
    padding: 0;
  }

  .overview .inner td {
    padding: 10px 0 30px;
  }

  .member .inner ul {
    margin-top: 35px;
  }

  .member .inner ul li {
    width: 45%;
  }

  /*サービスページ*/
  .svc .inner {
    padding-top: 70px;
  }

  .service_content .inner p.service_top_txt {
    font-size: 20px;
  }

  .service_content .inner .flow h2 {
    font-size: 20px;
  }

  .service_content .inner .flow p.scroll {
    display: none;
  }

  .service_content .inner .flow ul.step_box {
    flex-wrap: wrap;
  }

  .service_content .inner .flow ul.step_box li.step_box_li {
    min-width: 100%;
    margin-left: 0;
    height: 100%;
    margin-top: 10px;
  }

  /*人材紹介*/
  .employment_top .inner p.weight {
    font-size: 20px;
  }

  .employment_top .inner p.content {
    font-size: 14px;
    margin-bottom: 50px;
  }

  .employment_top .inner .scroll_img {
    margin-top: 45px;
  }

  .employment_top .inner .scroll_img img {
    width: 1240px;
    height: 530px;
  }

  .offer .inner {
    margin-top: 70px;
  }

  .offer .inner h2 {
    font-size: 24px;
  }

  .offer .inner .offer_content .text_area,
  .point .inner .point_content .point_box .text_area {
    margin-top: 30px;
  }

  .offer .inner .offer_content .img_area,
  .offer .inner .offer_content .text_area,
  .point .inner .point_content .point_box .img_area,
  .point .inner .point_content .point_box .text_area {
    width: 100%;
  }

  .offer .inner .offer_content .text_area h3,
  .point .inner .point_content .point_box .text_area h3 {
    font-size: 20px;
  }

  .offer .inner .offer_content .text_area p,
  .point .inner .point_content .point_box .text_area p {
    font-size: 14px;
    margin-top: 20px;
  }

  .point .inner .point_content .point_box .text_area h3 {
    margin-left: 60px;
  }

  .point .inner .point_content .point_box .text_area h3::before {
    width: 31px;
    height: 24px;
    left: -60px;
    top: 17px;
  }

  /*起業支援ページ*/
  .solution .inner {
    padding-top: 0;
  }

  .solution .inner .solution1 {
    margin-top: 100px;
  }

  .solution .inner .solution_box h3 {
    font-size: 24px;
    margin-left: 60px;
  }

  .solution .inner .solution_box h3::before {
    width: 30px;
    height: 30px;
    left: -60px;
  }

  .solution .inner .solution_box p.sol_top {
    font-size: 14px;
    line-height: 170%;
  }

  .solution .inner .solution_box ul li {
    width: 100%;
    margin-top: 10px;
    padding: 30px;
  }

  .solution .inner .solution2 p.case {
    font-size: 20px;
  }

  .solution .inner .solution2 ul {
    margin-top: 20px;
  }

  .solution .inner .solution_box ul li .content1 p.weight {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .solution .inner .solution_box ul li .content1 {
    margin-bottom: 30px;
  }

  .solution .inner .solution2 h3::before {
    width: 35px;
    height: 35px;
    top: 20px;
  }
  .solution .inner .solution3 h3::before {
    width: 35px;
    height: 35px;
  }

  .solution .inner .solution_box p.sol_top {
    margin-top: 20px;
  }

  .menter .inner .menter_box ul li {
    width: 100%;
    margin-top: 70px;
  }

  .menter .inner .menter_box ul li:nth-child(1) {
    margin: 0;
  }

  .menter .inner .menter_box ul li .wrap .img_area {
    width: 40%;
  }

  .menter .inner .menter_box ul li .wrap .profile {
    width: 55%;
  }

  .menter .inner .menter_box ul li .wrap .profile .name {
    font-size: 20px;
  }

  .menter .inner .menter_box ul li .career {
    font-size: 12px;
  }

  p.grey {
    margin-top: 70px;
  }

  .tab_item {
    font-size: 11px;
    margin-right: 0px;
    margin-top: 5px;
  }

  .news .inner .news_post ul.wrap {
    margin-top: 20px;
  }

  /*採用*/
  .recruit_detail .inner .table {
    margin-top: 80px;
  }

  .recruit_detail .inner .table th,
  .recruit_detail .inner td {
    width: auto;
    display: block;
    border: none;
    font-size: 14px;
  }

  .recruit_detail .inner .table th {
    left: 0;
    padding: 0;
  }

  .recruit_detail .inner td {
    padding: 10px 0 30px;
  }

  .recruit_main .inner {
    padding-top: 0;
  }

  .recruit_main .inner .top_text {
    font-size: 28px;
  }

  /*プライバシーポリシー*/
  .privacy_main .inner {
    padding-top: 0;
  }

  .privacy_main .inner .privacy_block p {
    font-size: 14px;
  }

  .privacy_main .inner .privacy_block p.weight {
    font-size: 20px;
  }

  .privacy_main .inner .privacy_block {
    margin-top: 30px;
  }

  .privacy_main .inner .privacy_block p.weight {
    margin-bottom: 10px;
  }

  /*ブランディング*/
  .branding_top .inner p.branding_top_txt {
    font-size: 20px;
  }

  .branding_top .inner p.content {
    font-size: 14px;
  }

  .branding_point .inner .wrap {
    margin-top: 50px;
  }

  .branding_point .inner .wrap li,
  .work .inner .work_box .img_area,
  .work .inner .work_box .text_area {
    width: 100%;
  }

  .branding_point .inner .wrap li {
    margin-top: 50px;
  }

  .branding_point .inner .wrap li p {
    margin-top: 20px;
  }

  .work .inner .work_box .text_area {
    margin-top: 30px;
  }

  .work .inner .work_box .text_area h3 {
    font-size: 20px;
  }

  .work .inner .work_box .text_area p.txt {
    font-size: 14px;
    margin-top: 15px;
  }
  .build .inner .build_box .wrap li:nth-child(2) .wrap .left,
  .build .inner .build_box .wrap li:nth-child(2) .wrap .right {
    width: 100%;
  }
  .build .inner .build_box .wrap li:nth-child(4) .wrap div:nth-child(2),
  .build .inner .build_box .wrap li:nth-child(4) .wrap div:nth-child(3),
  .build .inner .build_box .wrap li:nth-child(4) .wrap div:nth-child(4) {
    margin-left: 0;
  }

  /*サンクスページ*/
  .thank_content .inner {
    padding-top: 0;
  }

  .thank_content .inner p.weight {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .thank_content .inner p.content {
    font-size: 14px;
  }

  .thank_content .inner .btn {
    margin-top: 50px;
  }

  /*採用支援*/
  .design .inner h2,
  .build .inner h2,
  .formation .inner h2 {
    font-size: 24px;
  }

  .design .inner .design_one {
    margin-top: 50px;
  }

  .design .inner .design_one h3 {
    font-size: 20px;
    line-height: 170%;
  }

  .design .inner .design_one p.design_top_text {
    margin-top: 20px;
    line-height: 170%;
  }

  .design .inner .design_one .wrap .wrap_list {
    width: 100%;
    margin-top: 50px;
  }

  .design .inner .design_one .wrap {
    margin: 0;
  }

  .design .inner .design_one .wrap .wrap_list p.weight {
    font-size: 18px;
    margin-left: 60px;
  }

  .design .inner .design_one .wrap .wrap_list p.weight::before {
    width: 30px;
    left: -60px;
    top: 20px;
  }

  .formation .inner p.formation_top {
    font-size: 14px;
    line-height: 170%;
    margin-top: 20px;
  }

  .formation .inner .formation_box .wrap li .wrap div {
    margin-right: 30px;
  }

  .formation .inner .formation_box .wrap li:nth-child(2) .wrap div:nth-child(1) {
    width: 120px !important;
    margin-bottom: 30px;
  }

  .formation .inner .formation_box .wrap li:nth-child(2) .wrap div:nth-child(2) {
    margin-right: 0;
    width: 100px !important;
    margin-bottom: 30px;
  }

  .formation .inner .formation_box .wrap li:nth-child(3) .wrap div:nth-child(1) {
    margin-bottom: 30px;
  }

  .formation .inner .formation_box .wrap li:nth-child(3) .wrap div:nth-child(2) {
    width: 140px !important;
    margin: 0 0 30px;
  }

  .formation .inner .formation_box .wrap li:nth-child(4) .formation_ttl {
    margin-bottom: 15px;
  }

  .formation .inner .formation_box .wrap li p.content {
    padding: 0;
  }

  .action .inner h2 {
    font-size: 24px;
    margin-bottom: 50px;
  }

  .action .inner .action_top {
    font-size: 20px;
    line-height: 170%;
  }

  .action .inner .action_one .left,
  .action .inner .action_one .right {
    width: 100%;
    margin-top: 50px;
  }

  .action .inner .action_one .left p.weight,
  .action .inner .action_one .right p.weight {
    font-size: 18px;
    margin-left: 60px;
    margin-bottom: 20px;
  }

  .action .inner .action_one .left p.weight::after {
    width: 30px;
    height: 24px;
    left: -60px;
  }

  .action .inner .action_one {
    margin: 0;
  }

  .action .inner .action_box {
    padding: 30px;
  }

  .action .inner .action_box .box_li p {
    margin-right: 30px;
  }

  .action .inner .action_box .box_li p.weight {
    width: 100%;
  }

  .action .inner .action_box .box_li p {
    margin-right: 30px;
    font-size: 12px;
    margin-top: 20px;
  }

  .action .inner .action_box .box_li p:nth-child(odd) {
    margin-right: 0;
  }

  .action .inner .action_box::after {
    left: 30px;
  }

  .action .inner .other_sv h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 170%;
  }

  .action .inner .other_sv .wrap li {
    width: 100%;
    margin-top: 10px;
  }

  .action .inner .other_sv .wrap li:nth-child(1) {
    margin-top: 30px;
  }

  .action .inner .other_sv .wrap li p.weight {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .build .inner .build_box .wrap li .work_link {
    margin: 50px 0 30px;
    width: 60%;
  }

  .build .inner .build_box .wrap li:nth-child(1):after {
    height: 111px;
    width: 200px;
    right: -60px;
    top: 60%;
  }
  .sp_none {
    display: none;
  }
  /*クッキー*/
  .popup-inner p {
    font-size: 12px;
  }
  .popup-inner button {
    margin-left: 20px;
  }
}
@media (min-width: 600px) {
  .footer_contact_sp {
    display: none;
  }

  .pc_none {
    display: none;
  }

  .solution .inner .solution_box ul li:nth-child(3),
  .solution .inner .solution_box ul li:nth-child(4) {
    margin-top: 20px;
  }

  p.grey {
    position: relative;
    top: -90px;
    left: 450px;
  }

  .news .inner .news_post ul.wrap li {
    margin-right: 5%;
  }
  .news .inner .news_post ul.wrap li:nth-child(3n) {
    margin-right: 0;
  }

  .design .inner .design_one .wrap .wrap_list:nth-child(3) {
    margin-top: 50px;
  }
  footer .logo img {
    width: 150px;
  }
}

@media (min-width: 900px) {
  #pc_navi {
    display: none;
  }

  #sp_navi {
    display: block;
  }

  #nav-toggle {
    position: fixed;
    top: 15px;
    right: 15px;
    height: 42px;
    cursor: pointer;
    width: 42px;
    background: #040000;
    z-index: 1000;
  }

  #nav-toggle > div {
    position: relative;
    width: 36px;
  }

  #nav-toggle span {
    width: 16px;
    height: 2px;
    left: 35%;
    display: block;
    background: #fff;
    position: absolute;
    transition:
      transform 0.4s ease-in-out,
      top 0.3s ease;
  }

  #nav-toggle span:nth-child(1) {
    top: 15px;
  }

  #nav-toggle span:nth-child(2) {
    top: 21px;
  }

  #nav-toggle span:nth-child(3) {
    top: 27px;
  }

  .open #nav-toggle {
    background: #fff;
  }

  .open #nav-toggle span {
    background: #000;
  }

  .open #nav-toggle span:nth-child(1) {
    top: 20px;
    transform: rotate(45deg);
  }

  .open #nav-toggle span:nth-child(2) {
    top: 20px;
    width: 0;
    left: 50%;
  }

  .open #nav-toggle span:nth-child(3) {
    top: 20px;
    transform: rotate(-45deg);
  }

  #gloval-nav {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 100px;
    background: #000;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 50px;
    z-index: 990;
    display: flex;
    visibility: hidden;
    font-size: 2.2rem;
    opacity: 0;
    transition:
      opacity 0.4s ease,
      visibility 0.4s ease;
  }
}

/*コンタクトフォーム*/
.form .inner {
  padding-top: 0;
  max-width: 800px;
}
/* デザインカスタマイズ */
div.wpcf7 {
  padding: 0px;
}
div.wpcf7 p {
  padding: 30px 0px 0;
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
}
div.wpcf7 input.wpcf7-text,
.wpcf7 textarea {
  border: 1px solid #333;
  padding: 16px;
  font-size: 14px;
  line-height: 100%;
  color: #999;
  margin-top: 15px;
  width: 100%;
  border-radius: 0;
  font-weight: normal;
}
input[type="text"]:focus {
  border-radius: 0;
}
div.wpcf7 textarea {
  width: 100%;
  height: 200px;
}

.wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 54px;
  padding: 0 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-decoration: none;
  opacity: 0.84;
  transition: opacity 0.45s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background-color: transparent;
  z-index: 0;
}

.wpcf7-submit:hover {
  opacity: 1;
}

.wpcf7-submit:active {
  box-shadow: none;
  bottom: -2px;
  position: relative;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border: 1px solid #009de1;
}
.wpcf7-captchac {
  border: 1px solid #ccc;
}

.wpcf7-form {
  max-width: 700px;
}
.wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
  margin-top: 10px;
  margin-left: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  display: block;
}
.wpcf7-form-control.wpcf7-radio .wpcf7-list-item:nth-child(1) {
  margin-top: 16px;
}
.wpcf7-date,
.wpcf7-select {
  margin-top: 10px;
  font-weight: normal;
  width: 100%;
  color: #333;
  font-size: 14px;
  line-height: 100%;
  padding: 10px 15px;
}
.menu-338 {
  margin-left: 10px;
}
.menu-338,
.date-944 {
  display: inline-block;
  width: 35%;
}

/* エラー個所をわかりやすく表示 */
.wpcf7 .wpcf7-not-valid {
  background: #ffb6c1;
}
.wpcf7 span.wpcf7-not-valid-tip {
  font-size: 80%;
}
.wpcf7 .wpcf7-response-output {
  margin: 10px 0 0;
  padding: 8px 35px 8px 14px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.wpcf7 .wpcf7-validation-errors {
  color: #b94a48;
  background-color: #f2dede;
  border: 1px solid #eed3d7;
}
.wpcf7 .wpcf7-mail-sent-ok {
  color: #3a87ad;
  background-color: #d9edf7;
  border: 1px solid #bce8f1;
}

/* 必須赤色表示 */
.wpcf7 .required {
  color: #f00;
}
.wpcf7 .normal {
  font-weight: normal;
  font-size: 14px;
}

input :not(*):placeholder-shown,
div.wpcf7 input.wpcf7-text,
.wpcf7 textarea {
  color: #333;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea {
  outline: none;
  outline-color: #333;
}
.speakerdeck {
  text-align: center;
}

.speakerdeck-iframe {
  max-width: 100%;
  max-height: 100%;
}
@media screen and (max-width: 599px) {
  div.wpcf7 input.wpcf7-submit {
    width: 100%;
  }
  .speakerdeck {
    width: 100%;
    height: 250px;
    padding: 1rem;
  }
  .member .inner ul li .img_area {
    margin-bottom: 30px;
    width: 100%;
    height: 160px;
    overflow: hidden;
  }
}

@media screen and (min-width: 769px) {
  .l-introduce {
    padding: 60px 0;
  }
  .l-introduce__head h2 {
    font-size: 24px;
    font-weight: 700;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: calc(24px * 0.001 * 100);
  }
  .l-introduce__slide ul li,
  .l-introduce__slide2 ul li {
    width: 260px;
    margin: 0 25px;
  }
  .l-introduce__contents {
    padding-top: 40px;
  }

  .l-introduce__slide {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    padding-bottom: 20px;
  }
  .l-introduce__care {
    text-align: right;
    width: 80%;
    margin: 20px auto 0;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: calc(14px * 0.001 * 100);
  }
}
@media screen and (max-width: 768px) {
  .l-introduce__care {
    text-align: right;
    padding-right: 20px;
    margin-top: 20px;
    font-size: 12px;
  }
  .l-introduce {
    padding: 40px 0;
  }

  .l-introduce__head h2 {
    font-size: 18px;
    font-weight: 700;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: calc(18px * 0.001 * 100);
  }
  .l-introduce__contents {
    padding-top: 50px;
  }

  .l-introduce__slide {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    padding-bottom: 10px;
  }
  .l-introduce__slide ul li,
  .l-introduce__slide2 ul li {
    width: 140px;
    margin: 0 18px;
  }
  .security-logo {
    width: 70px !important;
  }
  footer .inner .wrap .sitemap .wrap a.twitter {
    margin-left: 45px;
  }
  .deck-padding-bottom {
    padding-bottom: 50px !important;
  }
  .deck-padding-top {
    padding-top: 50px !important;
  }
}
.l-introduce__head {
  padding-top: 0;
  padding-bottom: 0;
}
.l-introduce__slide,
.l-introduce__slide2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  padding-bottom: 20px;
}
.l-introduce__slide ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  list-style: none;
}
.l-introduce__slide2 ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  list-style: none;
}

@-webkit-keyframes slideshow {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes slideshow {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@-webkit-keyframes slideshow2 {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideshow2 {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.container-404 {
  max-width: 1400px;
  padding: 300px 0;
  margin: 0 auto;
  text-align: center;
}

.img_area {
  width: 100%;
  height: 0;
  padding-bottom: calc(100% * 9 / 16);
  position: relative;
}
.img_area img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
.btn::before,
.btn::after {
  content: none;
}

@media screen and (max-width: 479px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

/* 固定ページのデフォルトテンプレートデザイン */
.page-template-default .content {
  max-width: 1200px;
  padding: 0 2rem;
  margin: 100px auto;
}
.page-template-default .wp-block-heading {
  margin-top: 2em;
  margin-bottom: 1em;
}

.page-template-default .wp-block-columns {
  margin-bottom: 2rem;
}

.page-template-default .wp-block-image.size-full {
  margin: 0 0 1rem 0;
}

.page-template-default .content p {
  margin-bottom: 1em;
}
.footer-contact-marquee {
  background: #111;
  overflow: hidden;
  padding: 26px 0 30px;
  border-top: none;
  border-bottom: none;
}

.footer-contact-marquee__link {
  display: block;
  text-decoration: none;
  color: #fff;
}

.footer-contact-marquee__track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: contactMarquee 22s linear infinite;
  will-change: transform;
}

/* gap と padding-right を同値にすることで、グループ末尾→先頭の間隔が
   グループ内の間隔と一致し、translateX(-50%) でカクつかないループになる */
.footer-contact-marquee__group {
  display: flex;
  flex-shrink: 0;
  gap: clamp(28px, 4vw, 62px);
  padding-right: clamp(28px, 4vw, 62px);
}

.footer-contact-marquee__track span {
  font-size: clamp(42px, 8vw, 80px);
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 400;
  opacity: 0.9;
}

.footer-contact-marquee__link p {
  margin: 8px 24px 0;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

.footer-contact-marquee__link:hover .footer-contact-marquee__track span {
  color: #ff8a00;
}

@keyframes contactMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  .footer-contact-marquee {
    padding: 20px 0 24px;
  }

  .footer-contact-marquee__link p {
    margin-top: 6px;
    font-size: 11px;
  }
}
