@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;400;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
html {
  font-size: 100%;
}
html, body, h1, h2, h3, h4, h5, h6, a, p, span, em, small, strong, sub, sup, mark, del, ins, strike, abbr, dfn, blockquote, q, cite, code, pre, ol, ul, li, dl, dt, dd, div, section, article, main, aside, nav, header, hgroup, footer, img, figure, figcaption, address, time, audio, video, canvas, iframe, details, summary, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
}
/* Typography
 * *********************************** */
html {
  font-size: 100%;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
}
* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a, a:visited {
  color: inherit;
  text-decoration: none;
  color: #008bd5;
}
a:hover {
  text-decoration: none;
}
.red {
  color: #ea0810;
}
/* Layout
 * *********************************** */
article, aside, footer, header, nav, section, main {
  display: block;
}
*, *:before, *:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* Elements
 * *********************************** */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
ol, ul {
  list-style: none;
}
img, video {
  max-width: 100%;
}
img {
  border-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:after, blockquote:before, q:after, q:before {
  content: "";
  content: none;
}
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.for-pc {
  display: block !important;
}
.for-sp {
  display: none !important;
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 767px) {
  .for-pc {
    display: none !important;
  }
  .for-sp {
    display: block !important;
  }
}
/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  z-index: 1000;
  border-bottom: 1px solid rgba(34, 34, 34, 0.3);
}
@media screen and (min-width: 830px) {
  header {
    height: 80px;
  }
}
.header-logo a {
  display: flex;
  align-items: center;
  padding: 0 16px;
  width: 160px;
}
@media screen and (min-width: 830px) {
  .header-logo a {
    width: 200px;
    padding: 0 24px;
  }
}
.header-logo a img {
  width: 100%;
}
.home header {
  border-bottom: 1px solid rgba(34, 34, 34, 0);
}
.navbar {
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: block;
  width: 100%;
  background: rgb(0, 0, 0);
  opacity: 0;
  transition: opacity 0.3s linear;
  pointer-events: none;
}
.navbar.active {
  pointer-events: auto;
  opacity: 1;
  display: block;
}
@media screen and (min-width: 830px) {
  .navbar {
    position: static;
    height: auto;
    display: block;
    background: rgb(255, 255, 255);
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
  }
  .navbar a {
    text-align: center;
  }
  .navbar a::after {
    transition: all 0.3s ease-out;
    display: block;
    content: "";
    width: 1%;
    height: 2px;
    background-color: rgb(255, 255, 255);
    margin: 0 auto;
  }
  .navbar a:hover::after, .navbar a.current::after {
    display: block;
    content: "";
    width: 100%;
    height: 2px;
    background-color: #222222;
  }
}
.navbar ul {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media screen and (min-width: 830px) {
  .navbar ul {
    flex-direction: inherit;
    justify-content: flex-end;
    margin: 0 16px;
  }
}
.navbar li {
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 830px) {
  .navbar li {
    padding: 0 12px;
  }
}
.navbar li span {
  font-size: 15px;
  color: white;
}
@media screen and (min-width: 830px) {
  .navbar li span {
    color: #222222;
  }
}
.navbar li a, .navbar li span {
  font-size: 18px;
  display: block;
  color: white;
  padding: 1rem 0;
}
@media screen and (min-width: 830px) {
  .navbar li a, .navbar li span {
    font-size: 16px;
    color: #222222;
  }
}
.navbar .close {
  position: absolute;
  top: 20px;
  right: 0;
  display: block;
  width: 24px;
  height: 20px;
  margin: 0 16px;
}
@media screen and (min-width: 830px) {
  .navbar .close {
    display: none;
  }
}
.navbar .close::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 24px;
  height: 4px;
  background: #008bd5;
  transform: rotate(45deg);
}
.navbar .close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 24px;
  height: 4px;
  background: #008bd5;
  transform: rotate(-45deg);
}
#hamburger {
  position: relative;
  display: block;
  width: 24px;
  height: 20px;
  margin: 0 16px;
}
@media screen and (min-width: 830px) {
  #hamburger {
    margin: 0 24px;
  }
}
@media screen and (min-width: 830px) {
  #hamburger {
    display: none;
  }
}
#hamburger span {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 4px;
  background-color: #222;
  transform: translateY(-50%);
}
#hamburger::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #222;
}
#hamburger::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70%;
  height: 4px;
  background-color: #222;
}
.main-visual {
  width: 100%;
  height: calc(100vh);
  margin: 0 0 0 0;
  position: relative;
}
.kv-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 70%;
}
.kv-logo {
  width: 100%;
}
@media screen and (min-width: 830px) {
  .kv-inner {
    width: 600px;
  }
}
.home section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 64px 32px;
}
.home section .inner {
  width: 100%;
}
.section-header {}
.home section h2, section.contact h2 {
  display: flex;
  text-align: center;
  align-items: baseline;
}
.home section h2 strong, section.contact h2 strong {
  display: block;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
}
.home section h2 span, section.contact h2 span {
  display: block;
  font-size: 14px;
  color: #000;
  font-weight: 400;
  padding: 0 12px;
}
@media screen and (min-width: 830px) {
  .home section {
    width: 100%;
    padding: 70px;
  }
  .home section h2 strong, section.contact h2 strong {
    display: block;
    font-size: 48px;
    text-transform: uppercase;
  }
  .home section h2 span, section.contact h2 span {
    display: block;
    font-size: 18px;
    margin-top: 10px;
  }
}
@media screen and (min-width: 1280px) {
  .home section .inner {
    max-width: 1780px;
  }
}
.home section.news {}
.home section.news .inner {
  display: flex;
  flex-wrap: wrap;
}
.home section.news h2 strong {}
.home section.news .ls-post {}
.block-news-header {
  width: 100%;
  padding: 0 0 0 0;
}
.block-news-header .block-button {
  display: none;
}
.block-news {
  flex: 1;
  margin-top: 32px;
}
.home section.service {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 64px 0;
}
.service-kv {
  display: block;
  position: relative;
  width: 100%;
  height: 56vw;
  max-width: 1780px;
  max-height: 800px;
  background: url(../img/service_kv_bg.jpg) center center no-repeat;
  background-size: cover;
}
.page-header-service .service-kv {
  display: block;
  position: relative;
  width: 100%;
  height: 46vw;
  max-width: none;
  max-height: 800px;
  background: url(../img/service_kv_bg.jpg) center center no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .block-news-header {
    width: 316px;
  }
  .service-kv {
    height: 46vw;
  }
  .block-news-header .block-button {
    display: block;
  }
  .block-news {
    margin-top: 0;
  }
}
a.service-kv::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease-out all;
}
a.service-kv:hover::after {
  background-color: rgba(0, 0, 0, 0.3);
}
.section-header-service {
  position: absolute;
  top: 30px;
  left: 50%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .section-header-service {
    top: 40px;
  }
}
@media screen and (min-width: 1680px) {
  .section-header-service {
    top: 120px;
  }
}
.home section .service-kv h2 strong {
  font-size: 24px;
  color: #fff;
}
.home section .service-kv h2 span {
  color: #fff;
}
img.logo-recaius {
  margin: 12px 0 0 0;
  width: 180px;
}
@media screen and (min-width: 768px) {
  .home section .service-kv h2 strong {
    font-size: 48px;
  }
  img.logo-recaius {
    margin: 40px 0 0 0;
    width: 380px;
  }
}
@media screen and (min-width: 1280px) {
  img.logo-recaius {
    margin: 60px 0 0 0;
    width: 496px;
  }
}
.home section.about {
  padding: 70px 0;
}
.home section.about .inner {
  background-color: #f0f4f7;
  display: flex;
  flex-wrap: wrap;
}
.section-header-about {
  width: 100%;
  padding: 60px 32px;
  order: 2;
}
.section-header-about .copy {
  font-size: 36px;
  font-weight: 500;
  margin-top: 60px;
}
.section-header-about p {
  margin-top: 32px;
}
.section-body-about {
  background: url(../img/kv-about.jpg) center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 40vw;
  order: 1;
}
@media screen and (min-width: 1280px) {
  .section-header-about {
    width: 50%;
    padding: 100px 70px;
    order: 1;
  }
  .section-body-about {
    width: 50%;
    height: 100%;
    order: 2;
  }
}
.mission {}
.mission-copy {
  display: block;
  text-align: center;
  color: #000;
  margin: 40px 0;
}
.mission-copy .copy-ja {
  font-size: 36px;
  font-weight: 700;
  margin-right: -1rem;
  line-height: 1.2;
}
.mission-copy .copy-en {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 20px;
}
.mission-copy .copy-text {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 40px;
}
.mission-copy .copy-text p {
  text-align: left;
  margin-bottom: 0.75em;
  font-size: 13px;
}
@media screen and (min-width: 830px) {
  .mission-copy {
    display: block;
    text-align: center;
    margin: 140px 0;
  }
  .mission-copy .copy-ja {
    font-size: 48px;
    font-weight: 700;
    margin-right: -2rem;
  }
  .mission-copy .copy-en {
    font-size: 24px;
    font-weight: 700;
  }
  .mission-copy .copy-text {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 40px;
  }
  .mission-copy .copy-text p {
    text-align: left;
    margin-bottom: 0.75em;
    font-size: 16px;
  }
}
.block-company {
  margin: 40px 0;
}
.ls-post {
  width: 100%;
  margin: 0 auto;
  border-top: 1px solid #ddd;
}
.ls-post a.news-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ls-post li {
  padding: 32px 0;
  border-bottom: 1px solid #ddd;
}
.news-card--category {
  margin: 0 1rem;
  background-color: #f0f4f7;
  padding: 4px 8px;
  color: #000;
  font-size: 12px;
  line-height: 1;
  border-radius: 100vh;
  width: 80px;
  display: inline-block;
  text-align: center;
}
.news-card::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  background: url(../img/arrow-link.svg) center center no-repeat;
  background-size: 20px;
  margin: 0 0 0 16px;
  transition: all 0.3s;
}
.news-card:hover::after {
  background: url(../img/arrow-link-blue.svg) center center no-repeat;
  background-size: 20px;
  margin: 0 16px 0 32px;
}
span.news-card--time {
  color: #000;
}
.news-card--title {
  margin-top: 8px;
  color: #000;
}
@media screen and (min-width: 830px) {
  .news-card--title {
    margin-top: 16px;
    width: 100%;
  }
  .ls-post li {
    padding: 40px 0;
  }
  .news-card::after {
    margin: 0 32px;
  }
}
.block-button {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  margin-top: 60px;
}
.block-news-header .block-button {
  margin-top: 32px;
}
section.service .block-button {
  padding: 32px;
  margin: 0;
  background-color: #f0f4f7;
}
@media screen and (min-width: 830px) {
  section.service .block-button {
    display: block;
    padding: 48px 70px;
    margin: 0;
    max-width: 1780px;
  }
}
.service-kv .block-button {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 16px 80px 16px 24px;
  background-color: #fff;
  width: auto;
  display: inline-block;
  margin: 0;
}
a.btn, a.btn:visited {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #000;
  background-color: transparent;
  font-weight: bold;
  padding: 0;
  border-radius: 0;
  border: none;
  max-width: 260px;
  width: 100%;
  box-sizing: border-box;
  transition: 0.3s ease-out all;
}
a.btn:hover {
  background-color: transparent;
}
.btn .arrow {
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid #dddddd;
  border-radius: 50%;
  margin-right: 12px;
}
.btn .arrow::before {
  content: "";
  background: url(../img/arrow-link.svg) no-repeat center/contain;
  display: block;
  width: 22px;
  height: 13px;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  z-index: 1;
}
.btn:hover .arrow::before {
  content: "";
  background: url(../img/arrow-link-blue.svg) no-repeat center/contain;
}
.btn .arrow::after {
  content: "";
  display: block;
  height: 1px;
  width: 1px;
  border-radius: 50%;
  position: absolute;
  background-color: #000;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  transition: 0.3s ease-out all;
}
.btn:hover .arrow::after {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  background-color: #000;
}
.btn.btn_type02 {
  display: block;
  border: 1px solid #ddd;
  border-radius: 100vh;
  padding: 14px;
  text-align: center;
  font-weight: 400;
  transition: 0.3s ease-out all;
}
.btn.btn_type02:hover {
  color: #fff;
  background-color: #000;
}
.dlTable {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.dlTable dl {
  display: flex;
  flex-wrap: wrap;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.dlTable dl dt {
  display: block;
  width: 100%;
  font-weight: 700;
}
.dlTable dl dd {}
@media screen and (min-width: 830px) {
  .dlTable dl dt {
    width: 20%;
  }
}
section.contact {
  background-color: #f0f4f7;
  padding: 60px 30px;
  margin-top: 0;
}
section.contact h2 strong {
  margin: 0 auto;
  text-align: center;
}
section.contact a {
  margin: 0 auto;
}
@media screen and (min-width: 830px) {
  section.contact {
    padding: 120px 70px;
  }
}
footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #000;
  padding: 32px 24px;
  color: #fff;
}
footer a, footer a:visited {
  color: #fff;
}
@media screen and (min-width: 830px) {
  footer {
    justify-content: space-between;
    padding: 64px 24px;
  }
}
footer .footer-navigation {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
@media screen and (min-width: 830px) {
  footer .footer-navigation {
    width: 50%;
    margin-bottom: 0;
    justify-content: flex-start;
  }
}
footer .footer-navigation ul {
  width: 100%;
  display: flex;
  justify-content: center;
}
footer .footer-navigation ul li {
  font-size: 12px;
  padding: 0 10px;
}
@media screen and (min-width: 830px) {
  footer .footer-navigation ul {
    justify-content: flex-start;
  }
  footer .footer-navigation ul li {
    font-size: 16px;
    padding: 0 16px;
  }
}
footer .copyright {
  font-size: 12px;
}
.page main, .blog main, .single main {
  margin-top: 64px;
  padding-bottom: 70px;
}
@media screen and (min-width: 830px) {
  .page main, .blog main, .single main {
    margin-top: 80px;
    padding-bottom: 140px;
  }
}
.home main {
  margin-top: 0;
}
.contents {
  max-width: 1226px;
  margin: 0 auto;
  padding: 0 32px;
}
@media screen and (min-width: 830px) {
  .contents {
    padding: 0;
  }
}
/* パンくずリスト */
.block-breadcrumb {
  font-size: 14px;
  padding: 8px 16px;
}
ul.ls-breadcrumb {
  display: flex;
}
ul.ls-breadcrumb li {
  display: inline;
}
ul.ls-breadcrumb li a {
  color: inherit;
  text-decoration: none;
}
ul.ls-breadcrumb li + li:before {
  content: "/";
  margin: 0.5em;
}
@media screen and (min-width: 830px) {
  .block-breadcrumb {
    font-size: 14px;
    padding: 16px 24px;
  }
}
.page-header {
  margin: 0 auto 70px;
  padding: 70px 32px 0;
  border: none;
  text-align: left;
  max-width: 1226px;
}
.page-header h1 {
  font-size: 32px;
}
.page-header .page-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.page-header .page-info div {
  font-size: 14px;
  padding: 8px;
}
.page-header .sub-title {
  text-transform: uppercase;
}
@media screen and (min-width: 830px) {
  .page-header {
    margin: 0 auto 140px;
    padding: 140px 0 0 0;
  }
  .page-header h1 {
    font-size: 40px;
  }
}
.contents-style p {
  margin-bottom: 32px;
}
.contents-style h2 {
  align-items: center;
  position: relative;
  font-size: 30px;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #000;
  border-bottom: solid 2px #000;
  margin: 48px 0 24px;
  padding-bottom: 16px;
}
.contents-style h2 strong {
  font-weight: 500;
}
.contents-style h2::after {
  content: "";
  display: inline-block;
  width: 3em;
  height: 2px;
  background-color: #008bd5;
  position: absolute;
  bottom: -2px;
  left: 0;
}
.contents-style h2:first-child {
  margin-top: 0;
}
@media screen and (min-width: 830px) {
  .contents-style h2 {
    margin: 64px 0 32px;
    padding-bottom: 16px;
  }
}
.contents-style h3 {
  display: flex;
  align-items: center;
  padding: 0 0 0.5em 0;
  margin: 2em 0 1em 0;
  font-size: 26px;
  font-weight: 500;
  color: #000;
  position: relative;
}
@media screen and (min-width: 830px) {}
.contents-style h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
@media screen and (min-width: 830px) {}
.contents-style .news-card--category {
  margin: 0 1rem;
  background-color: #f0f4f7;
  padding: 2px 8px;
  color: #000;
  font-size: 12px;
  line-height: 1;
  border-radius: 100vh;
}
.contents-style sup {
  font-size: 12px;
}
.contents-style .lead {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (min-width: 830px) {
  .contents-style .lead {
    font-size: 20px;
  }
}
.contents-style.is-service {
  max-width: none;
  padding: 24px 0 0;
}
@media screen and (min-width: 1280px) {
  .contents-style.is-service {}
}
.contents-style.is-service section.type01 {
  padding: 35px 0;
}
.contents-style.is-service section .inner {
  max-width: 1226px;
  padding: 0 32px;
  margin: 0 auto;
}
.contents-style.is-service h2 {
  align-items: center;
  position: relative;
  font-size: 30px;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #000;
  border-bottom: none;
  margin: 60px 0 0;
  padding-bottom: 0;
}
.contents-style.is-service h2:first-child {
  margin-top: 0;
}
.contents-style.is-service h2::before, .contents-style.is-service h2::after {
  display: none;
}
@media screen and (min-width: 830px) {
  .contents-style.is-service section.type01 {
    padding: 70px 0;
  }
  .contents-style.is-service h2 {
    font-size: 36px;
    margin: 80px 0 0;
  }
}
.ls-feature {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ls-feature li {
  margin-top: 40px;
  width: 100%;
}
.ls-feature li dl {}
.ls-feature li dl dt {
  font-size: 20px;
  font-weight: 700;
  color: #018cd6;
  line-height: 1.6;
}
.ls-feature li dl dd p {
  font-size: 14px;
  margin-top: 8px;
  margin-bottom: 0;
}
.ls-feature li dl dd figure {
  margin-top: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
}
@media screen and (min-width: 830px) {
  .ls-feature li {
    margin-top: 60px;
    width: 48%;
  }
  .ls-feature li dl {}
  .ls-feature li dl dt {
    font-size: 24px;
    color: #018cd6;
  }
  .ls-feature li dl dd p {
    font-size: 16px;
    margin-top: 12px;
  }
  .ls-feature li dl dd figure {
    margin-top: 24px;
    border: 1px solid #ddd;
    border-radius: 8px;
  }
}
.ls-case {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ls-case li {
  margin-top: 40px;
  width: 100%;
}
.ls-case li dt {
  display: flex;
}
.ls-case li .case-category {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  background-color: #018cd6;
  padding: 8px 12px;
  border-radius: 8px;
  margin-right: 12px;
}
.ls-case li .case-name {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: #008bd5;
}
.ls-case li .case-name::before {
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/icon-collaboration.svg) center center no-repeat;
  background-size: 16px;
  margin-right: 8px;
}
.ls-case li dl dd figure {
  margin-top: 16px;
  border-radius: 8px;
}
.ls-case li dl dd p {
  margin-bottom: 0;
}
.case-logo {
  text-align: center;
  padding: 16px 0;
}
.case-logo img {
  width: auto;
  height: 48px;
}
@media screen and (min-width: 830px) {
  .ls-case li {
    margin-top: 60px;
    width: 31%;
  }
}
.contents-style.is-service section.type02 {
  margin: 35px 0;
  padding: 70px 0;
  background-color: #f0f4f7;
}
@media screen and (min-width: 830px) {
  .contents-style.is-service section.type02 {
    margin: 70px 0;
    padding: 80px 0;
  }
}
.contents-style.is-service section.type02 h2 {
  margin: 0;
}
.mw_wp_form {
  margin: 30px 0;
}
.action-buttons {
  margin-top: 60px;
}
button[type="button"], .mw_wp_form input[type="submit"] {
  border-width: 1px;
  border-color: #ddd;
  border-style: solid;
  border-radius: 100vh;
  background-color: rgb(255, 255, 255);
  text-align: center;
  font-weight: bold;
  padding: 16px 32px;
  min-width: 200px;
  line-height: 1;
  position: static;
  margin: 1rem auto;
  color: #333;
  font-size: 20px;
  box-shadow: none;
  transition: 0.3s ease-out all;
}
button[type="button"] :hover, .mw_wp_form input[type="submit"]:hover {
  border-color: #000;
  background-color: #000;
  color: #fff;
  box-shadow: none;
  text-shadow: none;
}
.mw_wp_form textarea {
  width: 100%;
}
.action-buttons {
  text-align: center;
}
.mw_wp_form_g-enquete .g-enquete-items .g-enquete-row {
  padding: 32px 0;
}
.caption, .caution {
  display: table;
  font-size: 12px;
  margin-top: 30px;
}
.caption > li, .caution > li {
  display: table-row;
}
.caption > li > div, .caption > li > small, .caption > li > span, .caution > li > div, .caution > li > small, .caution > li > span {
  font-size: 1em !important;
  display: table-cell;
  padding: 0.25em 0 0.25em 0.25em;
  vertical-align: top;
}
.caption > li::before, .caution > li::before {
  display: table-cell;
  padding: 0.25em 0;
  vertical-align: top;
  width: 1%;
  white-space: nowrap;
  content: attr(data-indent-head);
}
@media screen and (min-width: 830px) {
  .caption, .caution {
    font-size: 14px;
  }
}
.accordion_area {
  margin-top: 40px;
  margin-bottom: 40px;
  border-top: 1px solid #ddd;
}
@media screen and (min-width: 830px) {
  .accordion_area {
    margin-bottom: 80px;
  }
}
.accordion_one {
  padding: 32px 0;
  border-bottom: 1px solid #ddd;
}
.contents-style .accordion_one p {
  margin-bottom: 0;
}
.p-faq__headinner {
  display: flex;
  cursor: pointer;
}
.contents-style .accordion_one .p-faq__headinner p {
  display: flex;
  align-items: flex-start;
  font-weight: 500;
  flex: 1;
}
.p-faq__headinner p::before {
  display: flex;
  align-items: center;
  justify-content: center;
  content: "Q";
  border: 1px solid #000;
  margin: 0 12px 0 0;
  padding: 12px;
  width: 36px;
  height: 36px;
  border-radius: 100%;
}
.p-faq__headinner::after {
  display: flex;
  align-items: center;
  justify-content: center;
  content: "";
  padding: 12px;
  width: 36px;
  height: 36px;
  background: url(../img/arrow-link.svg) center center no-repeat;
  background-size: 20px;
  transform: rotate(90deg);
  transition: all 0.3s;
  margin-right: 0;
}
.ac_header.open .p-faq__headinner::after {
  transform: rotate(-90deg);
}
.ac_inner {
  display: none;
}
.p-faq__bodyinner {
  margin-top: 32px;
}
.p-faq__bodyinner {
  display: flex;
  align-items: flex-start;
  font-weight: 400;
  flex: 1;
}
.p-faq__bodyinner::before {
  display: flex;
  align-items: center;
  justify-content: center;
  content: "A";
  color: #008bd5;
  border: 1px solid #008bd5;
  margin: 0 12px 0 0;
  padding: 12px;
  width: 36px;
  height: 36px;
  border-radius: 100%;
}
@media screen and (min-width: 830px) {
  .accordion_area {
    margin-top: 60px;
  }
  .accordion_one {
    padding: 32px 0;
  }
  .p-faq__headinner::after {
    margin-right: 32px;
  }
  .contents-style .accordion_one .p-faq__headinner p, .contents-style .accordion_one .p-faq__bodyinner {
    align-items: center;
  }
}
.cta_nav {
  text-align: center;
}
.service-kv .cta_nav {
  position: absolute;
  top: 120px;
  left: 50%;
  text-align: left;
}

.ls-case .cta_nav {
	margin-top: 20px;
}
.linkBtn {
  padding: 12px 24px;
  border-radius: 100vh;
  background-color: #008bd5;
  border: 1px solid #008bd5;
  transition: all .3s;
}
.linkBtn.sizeS {
  display: inline-block;
  padding: 12px 24px;
}
.service-kv .cta_nav .linkBtn {
  padding: 6px 16px 8px;
}
.linkBtn:hover {
  background-color: #fff;
  color: #008bd5;
  border: 1px solid #008bd5;
}
.linkBtn:hover .linkBtn__text {
  color: #008bd5 !important;
}
.linkBtn__text {
  font-size: 14px;
  font-family: "Noto Sans JP", Inter, "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
}
.service-kv .cta_nav .linkBtn__text {
  font-size: 12px;
}
.linkBtn.sizeS .linkBtn__text {
  font-size: 14px;
}
.linkBtn.linkBtn--white .linkBtn__text {
  color: #008bd5;
}
@media screen and (min-width: 768px) {
  .service-kv .cta_nav {
    top: 246px;
    left: 50%;
  }
  .linkBtn__text {
    font-size: 20px;
  }
  .service-kv .cta_nav .linkBtn__text {
    font-size: 20px;
  }
  .linkBtn {
    padding: 24px 58px;
    border-radius: 100vh;
    background-color: #008bd5;
    border: 1px solid #008bd5;
    transition: all .3s;
  }
  .service-kv .cta_nav .linkBtn {
    padding: 24px 58px;
  }
  .linkBtn.sizeS {
    padding: 12px 24px;
  }
  .linkBtn.sizeS .linkBtn__text {
    font-size: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .service-kv .cta_nav {
    top: 300px;
    left: 50%;
  }
}
@media screen and (min-width: 1680px) {
  .service-kv .cta_nav {
    top: 390px;
    left: 50%;
  }
}

#service_v2 .service-kv{
	display: block;
  	width: 100%;
  	height: 56vw;
  	max-width: 1920px;
	max-height: none;
	margin: 0 auto;
	background: url("../img/service_kv_bg.jpg") center center no-repeat;
	background-size: cover;
    text-indent: -9999px; 
    overflow: hidden; 
}

#service_v2 .service-kv:hover::after {
    background-color: rgba(1, 140, 214, 0.3);
}

@media screen and (min-width: 1920px) {
	#service_v2 .service-kv{
	  	width: 100%;
	  	height: 36vw;
	}
}

#service_v2 .ls-feature li dl dd figure {
  margin-top: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
	text-align: center;
}

#service_v2 .ls-feature li dl dd figure img{
    width: 100%;
    max-width: 515px;
}
@media screen and (min-width: 830px) {
#service_v2 .ls-feature li {
    margin-top: 60px;
    width: 48%;
  }
#service_v2 .ls-feature li dl {}
#service_v2 .ls-feature li dl dt {
    font-size: 24px;
    color: #018cd6;
  }
#service_v2 .ls-feature li dl dd p {
    font-size: 16px;
    margin-top: 12px;
  }
#service_v2 .ls-feature li dl dd figure {
    margin-top: 24px;
    border: 1px solid #ddd;
    border-radius: 8px;
  }
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9アスペクト比 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wp-block-list{
	counter-reset: list-counter;
    padding-left: 1.5em;
    margin: 1em 0;
}

.wp-block-list li {
    position: relative;
    list-style: none;
    margin: 0.75em 0;
    padding-left: 2em;
}

.wp-block-list li:before {
    counter-increment: list-counter;
    content: counter(list-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    color: #00467E;
}