@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  vertical-align: baseline;
  background: transparent;
  font-weight: 500;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  overflow-y: scroll;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

input, textarea {
  margin: 0;
  padding: 0;
}

button {
  border: none;
  background: none;
}

ol, ul, li {
  list-style: none;
}

img {
  vertical-align: middle;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

a:focus {
  outline: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary {
  display: block;
}

* {
  box-sizing: border-box;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

@keyframes animation_fadein {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes animation_fadeup {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes animation_fade_right {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes animation_fade_right50 {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes animation_fade_left {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes animation_fade_left50 {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes top_hero {
  from {
    opacity: 0;
    transform: translateY(120%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes top_openning {
  from {
    opacity: 1;
    z-index: 1000;
  }
  to {
    opacity: 0;
    z-index: -100;
  }
}
@keyframes openning_circle {
  from {
    clip-path: circle(100% at 50% 50%);
  }
  to {
    clip-path: circle(0 at 50% 50%);
  }
}
@keyframes disappear {
  from {
    display: block;
  }
  to {
    display: none;
    z-index: -1000;
  }
}
/* General
------------------------------------*/
html {
  font-size: 62.5%;
  scroll-padding-top: 0px;
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}
@media screen and (max-width: 440px) {
  html {
    scroll-padding-top: 50px;
  }
}

body {
  line-height: 2em;
  font-size: 1.6rem;
  font-family: "Roboto Condensed", "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  color: #000;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.01em;
  /*font-feature-settings: "palt";*/
  background: #fff;
  overflow: hidden;
  font-optical-sizing: auto;
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 1.5rem;
  }
}

a {
  color: #000;
}

a:link,
a:visited {
  text-decoration: none;
  transition: all 0.2s linear;
}

a:hover,
a:active {
  color: #000;
  text-decoration: none;
}

*::selection {
  background: #97cbe2;
}

*::-moz-selection {
  background: #97cbe2;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  transition: ease 0.3s;
}

img[src$=".svg"],
img[src$=".svgz"] {
  max-width: 100%;
  height: auto;
}

/* Common
--------------------------------------*/
/*  layout -------------------------------*/
.content_3column_wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}
@media screen and (max-width: 440px) {
  .content_3column_wrap {
    margin: 0;
  }
}
.content_3column_wrap .content_3column {
  position: relative;
  width: calc(33.3333333333% - 24px);
  margin: 0 12px 30px;
}
@media screen and (max-width: 440px) {
  .content_3column_wrap .content_3column:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 440px) {
  .content_3column_wrap .content_3column {
    width: 100%;
    margin: 0 0 20px;
  }
}

.content_4column_wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
@media screen and (max-width: 440px) {
  .content_4column_wrap {
    margin: 0 -10px;
  }
}
.content_4column_wrap .content_4column {
  position: relative;
  width: calc(25% - 30px);
  margin: 0 15px;
}
@media screen and (max-width: 440px) {
  .content_4column_wrap .content_4column {
    width: calc(50% - 20px);
    margin: 0 10px 20px;
  }
}

.content_2column_wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px -24px;
}
@media screen and (max-width: 440px) {
  .content_2column_wrap {
    margin: 0;
  }
}
.content_2column_wrap .content_2column {
  position: relative;
  width: calc(50% - 24px);
  margin: 0 12px 24px;
}
@media screen and (max-width: 440px) {
  .content_2column_wrap .content_2column {
    width: 100%;
    margin: 0 0 20px;
  }
}
@media screen and (max-width: 440px) {
  .content_2column_wrap .content_2column:last-child {
    margin: 0;
  }
}

/* header ---------------------------- */
.container_header {
  backdrop-filter: blur(5px);
  transition: all 0.3s linear;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  height: 87px;
  width: 100%;
  padding: 0 30px;
  background: rgba(255, 255, 255, 0.85);
}
@media screen and (max-width: 1024px) {
  .container_header {
    height: 55px;
    width: 100%;
    border-bottom: none;
    padding-left: 0;
  }
}
.container_header.hide {
  transform: translateY(-89px);
}
@media screen and (max-width: 1024px) {
  .container_header.hide {
    transform: translateY(-55px);
  }
}
.container_header .container_header_inner {
  display: flex;
  height: 100%;
  justify-content: space-between;
  align-items: center;
}

.logo_header {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .logo_header {
    position: absolute;
    z-index: 100;
    top: 11px;
    left: 20px;
    padding-top: 0;
  }
}
@media screen and (max-width: 1024px) {
  .logo_header img {
    max-width: 120px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 440px) {
  .logo_header img {
    max-width: 110px;
  }
}

@media screen and (max-width: 1024px) {
  .global_nav {
    z-index: 110;
    position: fixed;
    right: -100%;
    top: 0;
    width: 100%;
    height: 100dvh;
    transition: ease 0.4s;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    background: #199AE4;
  }
}
.global_nav.global_nav_on {
  right: 0;
}
.global_nav .global_nav_wrap {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .global_nav .global_nav_wrap {
    height: 100%;
    display: block;
    justify-content: space-between;
    padding: 70px 50px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
  .global_nav .global_nav_wrap {
    padding: 70px 10vw;
  }
}
.global_nav .global_nav_inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .global_nav .global_nav_inner {
    display: block;
    width: 100%;
    margin-bottom: 50px;
    padding-bottom: 70px;
  }
}

.menu_1st_layyer {
  display: flex;
  justify-content: flex-end;
  position: relative;
  margin-right: 40px;
}
@media screen and (max-width: 1024px) {
  .menu_1st_layyer {
    display: block;
    margin: 0;
    order: 1;
    width: 100%;
    padding: 0 7vw;
  }
}
.menu_1st_layyer li {
  position: relative;
  padding: 0 0 0 25px;
}
@media screen and (max-width: 1024px) {
  .menu_1st_layyer li {
    padding: 0;
    display: block;
    margin-bottom: 0;
  }
}
.menu_1st_layyer li a, .menu_1st_layyer li span {
  position: relative;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: inline-block;
  white-space: nowrap;
  color: #000;
}
@media screen and (max-width: 1024px) {
  .menu_1st_layyer li a, .menu_1st_layyer li span {
    padding: 15px 0 15px 20px;
    position: relative;
    width: 100%;
    display: block;
    font-weight: 500;
    font-size: 1.9rem;
    color: #fff;
    position: relative;
    transition: all 0.2s linear;
  }
  .menu_1st_layyer li a:before, .menu_1st_layyer li span:before {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 5px;
    height: 2px;
    background: #97D0F0;
    line-height: 1em;
  }
}
.menu_1st_layyer li a:hover, .menu_1st_layyer li span:hover {
  color: #199AE4;
  transition: all 0.2s linear;
}
@media screen and (max-width: 1024px) {
  .menu_1st_layyer li a:hover, .menu_1st_layyer li span:hover {
    color: #fff;
  }
}

.global_nav.active {
  transform: translateX(0);
}

/* Hamburger Bottom */
#trigger_nav {
  display: none;
  cursor: pointer;
  position: fixed;
  top: 10px;
  right: 20px;
  z-index: 115;
}
@media screen and (max-width: 1024px) {
  #trigger_nav {
    display: block;
  }
}

.menu-trigger span, .menu-trigger {
  display: inline-block;
  transition: all 0.4s;
}

.menu-trigger {
  position: relative;
  width: 25px;
  height: 7px;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #199AE4;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 7px;
}
.menu-trigger span:nth-of-type(2):after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  border-radius: 5px;
  background-color: #199AE4;
  transition: all 0.4s;
}

#trigger_nav.active .menu-trigger span:nth-of-type(1) {
  background-color: #fff;
  transform: scale(0);
  transform: translate(50%) scale(0);
}
#trigger_nav.active .menu-trigger span:nth-of-type(2) {
  background-color: #fff;
  transform: rotate(45deg);
}
#trigger_nav.active .menu-trigger span:nth-of-type(2):after {
  background-color: #fff;
  transform: rotate(90deg);
}

@media screen and (max-width: 1024px) {
  .fixed {
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
}

/* contents ---------------------------- */
.container {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}

.container_contents {
  padding-top: 87px;
  margin-bottom: 150px;
}
@media screen and (max-width: 1024px) {
  .container_contents {
    margin-bottom: 55px;
    padding-top: 55px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 440px) {
  .container_contents {
    margin-bottom: 100px;
  }
}

.content_wrap {
  position: relative;
}
@media screen and (max-width: 440px) {
  .content_wrap {
    margin-bottom: 50px;
  }
}
.content_wrap.content_wrap_mb0 {
  margin-bottom: 0;
}
@media screen and (max-width: 440px) {
  .content_wrap.content_wrap_mb0 {
    margin-bottom: 0;
  }
}

.section_default {
  position: relative;
  width: 100%;
  max-width: calc(1280px + 10%);
  margin: 0 auto;
  padding: 150px 5% 0;
}
@media screen and (max-width: 1024px) {
  .section_default {
    padding: 100px 5% 0;
  }
}
@media screen and (max-width: 1024px) and (max-width: 440px) {
  .section_default {
    padding: 60px 20px 0;
  }
}

.section_default_100 {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 120px 0 170px;
}
@media screen and (max-width: 1024px) {
  .section_default_100 {
    padding: 100px 20px 180px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 440px) {
  .section_default_100 {
    padding: 60px 20px 120px;
  }
}

.contents {
  max-width: 1500px;
  width: 100%;
  padding: 0 2vw;
  margin: 0 auto;
}
@media screen and (max-width: 440px) {
  .contents {
    padding: 0 20px;
  }
}

.contents_default {
  max-width: calc(930px + 10vw);
  width: 100%;
  padding: 0 5vw;
  margin: 0 auto;
}
@media screen and (max-width: 440px) {
  .contents_default {
    padding: 0 20px;
  }
}

.section_default_900 {
  position: relative;
  width: 100%;
  max-width: calc(1000px + 10%);
  margin: 0 auto;
  padding: 100px 5% 0;
}
@media screen and (max-width: 1024px) {
  .section_default_900 {
    padding: 100px 5% 0;
  }
}
@media screen and (max-width: 1024px) and (max-width: 440px) {
  .section_default_900 {
    padding: 60px 20px 0;
  }
}

/* footer ---------------------------- */
.container_footer {
  display: flex;
  justify-content: space-between;
  padding: 30px 2vw;
}
@media screen and (max-width: 440px) {
  .container_footer {
    display: block;
    padding: 0 0 30px 0;
  }
}
.container_footer .company {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 440px) {
  .container_footer .company {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    margin-bottom: 25px;
  }
}
.container_footer .rights {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 25px;
}
@media screen and (max-width: 440px) {
  .container_footer .rights {
    text-align: center;
    display: block;
  }
}

.copyright {
  font-size: 1.3rem;
  font-weight: 400;
}
#page_top {
  position: fixed;
  right: 30px;
  bottom: 90px;
  z-index: 99;
  width: 65px;
  height: 65px;
  border-radius: 40px;
  cursor: pointer;
  transition: all, 0.2s, linear;
  background: #199AE4;
  border: solid 2px #fff;
  overflow: hidden;
}
@media screen and (max-width: 440px) {
  #page_top {
    width: 40px;
    height: 40px;
    right: 15px;
    bottom: 86px;
  }
}
#page_top:before {
  top: 45%;
  right: 0;
  left: 0;
  position: absolute;
  content: " ";
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto;
  border-top: solid 2px #fff;
  border-left: solid 2px #fff;
  transition: all, 0.1s, linear;
  transform: rotate(45deg);
}
@media screen and (max-width: 440px) {
  #page_top:before {
    width: 5px;
    height: 5px;
  }
}
#page_top:after {
  display: block;
  border-radius: 30px;
  transition: transform 0.2s linear;
  transform: translateX(-35%);
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300%;
  height: 100%;
  background: linear-gradient(90deg, #005bab 0%, #2298ff 94%, rgba(0, 91, 171, 0.5) 100%);
}
#page_top:hover:after {
  transform: translateX(100%);
}

a.link_text {
  color: #199AE4;
}
a.link_text:hover {
  color: #199AE4;
  text-decoration: underline;
  text-decoration-color: #199AE4;
}

.btn_wrap {
  text-align: center;
}
a.btn_default,
input.btn_default,
.submit input.btn_default,
button.btn_default {
  position: relative;
  cursor: pointer;
  display: inline-block;
  height: 55px;
  width: 235px;
  z-index: 5;
  font-weight: 600;
  text-align: center;
  overflow: hidden;
  border-radius: 30px;
  line-height: 55px;
  padding: 0 49px 0 30px;
  font-size: 1.7rem;
  color: #fff;
  transition: all 0.3s linear;
  background: #199AE4;
}
@media screen and (max-width: 440px) {
  a.btn_default,
input.btn_default,
.submit input.btn_default,
button.btn_default {
    width: 210px;
    height: 50px;
    line-height: 50px;
    padding: 0 49px 0 25px;
  }
}

.btn_contact {
  position: relative;
  cursor: pointer;
  text-align: left;
  display: inline-block;
  height: 60px;
  width: 100%;
  max-width: 370px;
  z-index: 2;
  border-radius: 100px;
  line-height: 60px;
  padding: 0 1em;
  font-size: 2.2rem;
  text-align: center;
  color: #fff;
  font-weight: 700;
  transition: all 0.3s linear;
  background: #00C98D;
}
@media screen and (max-width: 440px) {
  .btn_contact {
    font-size: 1.7rem;
  }
}
.btn_contact:hover {
  background: #199AE4;
  color: #fff;
}
.btn_contact.btn_contact_sml {
  font-size: 1.6rem;
  height: 47px;
  max-width: 263px;
  line-height: 47px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .btn_contact.btn_contact_sml {
    max-width: 380px;
    height: 60px;
    line-height: 60px;
  }
}
.btn_contact.btn_contact_lrg {
  font-size: 3.8rem;
  height: 120px;
  max-width: 680px;
  line-height: 120px;
}
@media screen and (max-width: 440px) {
  .btn_contact.btn_contact_lrg {
    width: 100%;
    max-width: 370px;
    height: 70px;
    line-height: 70px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 1024px) {
  .btn_contact_sml_wrap {
    margin-top: 50px;
    text-align: center;
  }
}
.btn_contact_sml_wrap .image {
  text-align: center;
  display: none;
}
@media screen and (max-width: 1024px) {
  .btn_contact_sml_wrap .image {
    display: block;
    margin-bottom: 20px;
  }
}
.btn_form_wrap {
  margin-top: 80px;
  text-align: center;
}

.btn_form {
  position: relative;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  height: 60px;
  width: 300px;
  margin: 5px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  line-height: 60px;
  padding: 0 1em;
  font-size: 1.7rem;
  color: #fff;
  transition: all 0.2s linear;
  background: #00c98d;
}
.btn_form:hover {
  background: #199AE4;
}

.external_link_text {
  font-weight: 400;
  width: auto;
  display: inline-block;
  padding: 0 20px 0 0;
  background: url(/img/common/icon_external_link_grey.svg) 95% center/12px 12px no-repeat no-repeat;
}

.btn_form_wrap {
  margin-top: 80px;
  text-align: center;
}
@media screen and (max-width: 440px) {
  .btn_form_wrap {
    margin-top: 50px;
  }
}

/* hx */
.ttl_page {
  padding: 80px 5vw 70px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 440px) {
  .ttl_page {
    padding: 40px 2vw 30px;
  }
}
.ttl_page .main_ja {
  font-size: 3.6rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.2em;
  line-height: 1.2em;
}
@media screen and (max-width: 440px) {
  .ttl_page .main_ja {
    line-height: 1.4em;
    font-size: 2.6rem;
  }
}
.ttl_page .main {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  color: #C7EBFF;
}
@media screen and (max-width: 440px) {
  .ttl_page .main {
    font-size: 1.3rem;
  }
}

.ttl_section {
  font-size: 2.4rem;
  font-weight: 600;
  color: #199AE4;
  line-height: 1.4em;
  padding-bottom: 0.7em;
  border-bottom: 2px solid #199AE4;
  margin-bottom: 60px;
}
@media screen and (max-width: 440px) {
  .ttl_section {
    font-size: 2.2rem;
    padding-bottom: 0.5em;
    margin-bottom: 30px;
  }
}

.ttl_content {
  opacity: 0;
  text-align: center;
  position: relative;
  margin-bottom: 100px;
  padding: 3em 0;
}
@media screen and (max-width: 440px) {
  .ttl_content {
    font-size: 1.8rem;
    margin-bottom: 55px;
    padding: 1em 0;
  }
}
.ttl_content:after {
  position: absolute;
  width: 2px;
  height: 50px;
  left: 50%;
  bottom: -50px;
  content: "";
  background: #000;
}
@media screen and (max-width: 440px) {
  .ttl_content:after {
    height: 30px;
    bottom: -30px;
  }
}
.ttl_content .ja {
  position: relative;
  z-index: 2;
  font-size: clamp(2rem, 1.291rem + 2.89vw, 3.6rem);
  font-weight: 700;
  line-height: 1em;
  place-items: center;
}
.ttl_content .en {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: grid;
  place-items: center;
  line-height: 1em;
  font-weight: 700;
  color: #fff;
  font-size: 18rem;
  text-shadow: 1px 1px 0 #B6E7FF, -1px -1px 0 #B6E7FF, -1px 1px 0 #B6E7FF, 1px -1px 0 #B6E7FF, 0px 1px 0 #B6E7FF, -1px 0 #B6E7FF, -1px 0 0 #B6E7FF, 1px 0 0 #B6E7FF;
}
@media screen and (max-width: 1024px) {
  .ttl_content .en {
    font-size: 12rem;
  }
}
@media screen and (max-width: 1024px) and (max-width: 440px) {
  .ttl_content .en {
    top: -5px;
    font-size: 6rem;
  }
}
.ttl_content.ttl_content_bg_blue:after {
  background: #fff;
}
.ttl_content.ttl_content_bg_blue .ja {
  color: #fff;
}
.ttl_content.ttl_content_bg_blue .en {
  z-index: 1;
  color: #199AE4;
  text-shadow: 1px 1px 0 #7EC6F0, -1px -1px 0 #7EC6F0, -1px 1px 0 #7EC6F0, 1px -1px 0 #7EC6F0, 0px 1px 0 #7EC6F0, -1px 0 #7EC6F0, -1px 0 0 #7EC6F0, 1px 0 0 #7EC6F0;
}

@media screen and (max-width: 1024px) {
  .table_wrap {
    overflow-x: scroll;
  }
}

.table_default {
  width: 100%;
  background: #fff;
  border: solid 1px #C7C7C7;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .table_default {
    width: 900px;
  }
}
.table_default caption {
  font-size: 1.6rem;
  margin-bottom: 10px;
  font-weight: 500;
}
@media screen and (max-width: 440px) {
  .table_default caption {
    font-size: 1.4rem;
    padding-left: 0.4em;
  }
}
.table_default th,
.table_default td {
  border: solid 1px #C7C7C7;
  padding: 1.2em 2em;
}
@media screen and (max-width: 440px) {
  .table_default th,
.table_default td {
    padding: 1em;
  }
}
.table_default th {
  background: #ECF4F8;
  font-weight: 600;
}
.table_default td.is_center {
  text-align: right;
}

.ol_default {
  padding-left: 20px;
}
.ol_default li {
  list-style-type: decimal;
  margin-bottom: 0.5em;
  padding-left: 0.5em;
}

.dl_default {
  display: flex;
}
@media screen and (max-width: 440px) {
  .dl_default {
    display: block;
  }
}
.dl_default dt {
  font-weight: 600;
  width: 30%;
  background: #ECF4F8;
  padding: 20px 25px;
}
@media screen and (max-width: 440px) {
  .dl_default dt {
    width: 100%;
    padding: 12px 10px;
  }
}
.dl_default dd {
  padding: 20px 25px;
  width: 70%;
}
@media screen and (max-width: 440px) {
  .dl_default dd {
    width: 100%;
    padding: 12px 10px;
  }
}

.list_indent li {
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.8em;
}

.content_box {
  margin: 0 0 50px;
}
.content_box:last-child {
  margin: 0;
}

.paragraph p {
  margin-bottom: 1.5em;
}
.paragraph p:last-child {
  margin-bottom: 0;
}

.text_box {
  margin-bottom: 25px;
}
.text_box:last-child {
  margin-bottom: 0;
}

.map {
  position: relative;
  padding-bottom: 45%;
  height: 0;
  overflow: hidden;
}
@media screen and (max-width: 440px) {
  .map {
    padding-bottom: 70%;
  }
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.youtube_wrap {
  width: 100%;
  aspect-ratio: 16/9;
}
.youtube_wrap iframe {
  width: 100%;
  height: 100%;
}

.movie_wrap {
  width: 100%;
  aspect-ratio: 16/9;
}
.movie_wrap iframe {
  width: 100%;
  height: 100%;
}

label {
  font-size: 1.6rem;
}

input[type=tel],
input[type=text],
input[type=email],
textarea {
  border-radius: 3px;
  -webkit-appearance: none;
  width: 100%;
  padding: 16px;
  font-size: 1.6rem;
  border: none;
  background: #EFEFEF;
}

input[type=text]#zipcode {
  max-width: 170px;
}

input[type=checkbox] {
  border: 0;
}

::placeholder {
  color: #C1C1C1;
}

.item_select {
  max-width: 300px;
  position: relative;
}
.item_select:after {
  position: absolute;
  transform: rotate(135deg);
  top: 18px;
  right: 25px;
  content: " ";
  width: 8px;
  height: 8px;
  border-top: 1px solid #707070;
  border-right: 1px solid #707070;
}
.item_select.item_select_inline {
  display: inline-block;
}
.item_select select {
  width: 100%;
  background: #EFEFEF;
  border-radius: 3px;
  -webkit-appearance: none;
  padding: 16px 50px 16px 16px;
  border: none;
  font-size: 1.5rem;
}
.item_select select.slect_v_short {
  width: 103px;
}

.button {
  background: #f1c40f;
  display: inline-block;
  padding: 2rem 4rem;
  margin: 1rem;
  color: black;
  position: relative;
  overflow: hidden;
  transition: all 0.3s linear;
}
.button:before {
  content: "";
  position: absolute;
  right: auto;
  bottom: auto;
  left: -40px;
  top: -40px;
  width: 10px;
  height: 10px;
  background: #222;
  border-radius: 50%;
  transition: all 0.7s linear;
}
.button span {
  position: relative;
}
.button:hover, .button:focus {
  color: white;
}
.button:hover:before, .button:focus:before {
  width: 270px;
  height: 270px;
  opacity: 1;
}

.reqired {
  position: absolute;
  right: 80px;
  top: 35px;
  background: #E34C4C;
  color: #fff;
  font-size: 1.2rem;
  display: inline-block;
  padding: 0.3em 0.5em;
  border-radius: 2px;
  line-height: 1em;
}
@media screen and (max-width: 440px) {
  .reqired {
    right: auto;
    position: inherit;
    margin-left: 10px;
    top: auto;
  }
}

/*text --------------------------*/
.note {
  font-size: 1.4rem;
  line-height: 1.6em;
}
@media screen and (max-width: 440px) {
  .note {
    font-size: 1.2rem;
  }
}

.warning {
  color: #000;
}

.txt_underline {
  text-decoration: underline;
}

.text_highlight_blue {
  background: linear-gradient(transparent 50%, rgba(0, 167, 234, 0.4) 0%);
}

.text_highlight_green {
  background: linear-gradient(transparent 60%, #83edc1 0%);
}

.text_highlight_rightgreen {
  background: linear-gradient(transparent 60%, #18f7af 0%);
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt50 {
  margin-top: 50px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb100 {
  margin-bottom: 100px;
}

.ml20 {
  margin-left: 20px;
}

.align_c {
  text-align: center;
}

.align_r {
  text-align: right;
}

.align_l {
  text-align: left;
}

.text_lightblue {
  color: #2298FF;
}

/*device --------------------------*/
.sp_only {
  display: none;
}
@media screen and (max-width: 440px) {
  .sp_only {
    display: block;
  }
}

.sp_only_block {
  display: none;
}
@media screen and (max-width: 440px) {
  .sp_only_block {
    display: block;
  }
}

.tbsp_only {
  display: none;
}
@media screen and (max-width: 1024px) {
  .tbsp_only {
    display: block;
  }
}

.tb_only {
  display: none;
}
@media screen and (max-width: 1024px) {
  .tb_only {
    display: inline-block;
  }
}
@media screen and (max-width: 1024px) and (max-width: 440px) {
  .tb_only {
    display: none;
  }
}

@media screen and (max-width: 440px) {
  .pctb_only {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .pc_only {
    display: none;
  }
}

.animation_text {
  opacity: 0;
}
.animation_text.animation_text_on {
  animation: animation_text 0.5s ease 0s forwards;
}

.ttl_content_animation {
  opacity: 0;
}
.ttl_content_animation.ttl_content_animation_on {
  animation: animation_title 0.5s ease 0s forwards;
}

.content_servise {
  opacity: 0;
}
.content_servise.content_servise_on {
  animation: animation_content_to_left 0.5s ease 0s forwards;
}
.content_servise:nth-of-type(odd).content_servise_on {
  animation: animation_content_to_right 0.5s ease 0s forwards;
}

.animation_fadein {
  opacity: 0;
}
.animation_fadein.animation_fadein_on {
  animation: animation_fadein 0.5s ease 0s forwards;
}

/* common
----------------------------------*/
.animation_fadein {
  opacity: 0;
}
.animation_fadein .animation_fadein_on {
  animation: animation_fadein 0.2s ease-out 0s forwards;
}

.animation {
  opacity: 0;
}
.animation.animation_on {
  animation: animation_fadein 0.5s ease-out 0.5s forwards;
}

.animation_fadeup {
  opacity: 0;
}
.animation_fadeup.animation_fadeup_on {
  animation: animation_fadeup 0.3s ease-out 0.5s forwards;
}

.title_image {
  text-align: center;
}

.content_leadtext {
  text-align: center;
  font-weight: 500;
  font-size: 1.8rem;
  margin: -20px 0 90px;
}
@media screen and (max-width: 440px) {
  .content_leadtext {
    font-size: 1.6rem;
    margin: -20px 0 50px;
  }
}

.decorations_set01 {
  position: relative;
}
.decorations_set01:after {
  z-index: -1;
  width: 1641px;
  height: 789px;
  position: absolute;
  left: 50%;
  top: 33%;
  transform: translateX(-50%);
  content: "";
  background: url(/lp/bim/img/decorations_set01.svg) top right/1641px 789px no-repeat;
}
@media screen and (max-width: 1024px) {
  .decorations_set01:after {
    width: 649px;
    height: 590px;
    background: url(/lp/bim/img/decorations_set03_sp.svg) bottom center/649px 590px no-repeat;
    top: auto;
    bottom: 0;
  }
}
@media screen and (max-width: 1024px) and (max-width: 440px) {
  .decorations_set01:after {
    left: 60%;
    width: 487px;
    height: 443px;
    background: url(/lp/bim/img/decorations_set03_sp.svg) bottom right/487px 443px no-repeat;
  }
}

.decorations_set03 {
  position: relative;
}
.decorations_set03:after {
  z-index: -1;
  width: 1653px;
  height: 636px;
  position: absolute;
  left: 50%;
  top: 0%;
  transform: translateX(-50%);
  content: "";
  background: url(/lp/bim/img/decorations_set03.svg) top center/1653px 636px no-repeat;
}
@media screen and (max-width: 1024px) {
  .decorations_set03:after {
    width: 1024px;
    height: 393px;
    background: url(/lp/bim/img/decorations_set03.svg) bottom right/1024px 393px no-repeat;
  }
}
@media screen and (max-width: 1024px) and (max-width: 440px) {
  .decorations_set03:after {
    width: 473px;
    height: 256px;
    background: url(/lp/bim/img/decorations_set02_sp.svg) bottom right/473px 256px no-repeat;
    top: 0;
  }
}

.decorations_set04 {
  position: relative;
}
.decorations_set04:after {
  z-index: -1;
  width: 1494px;
  height: 502px;
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translateX(-50%);
  content: "";
  background: url(/lp/bim/img/decorations_set04.svg) top center/1494px 502px no-repeat;
}
@media screen and (max-width: 1024px) {
  .decorations_set04:after {
    width: 1024px;
    height: 344px;
    background: url(/lp/bim/img/decorations_set04.svg) bottom right/1024px 344px no-repeat;
  }
}
@media screen and (max-width: 1024px) and (max-width: 440px) {
  .decorations_set04:after {
    top: 0;
    width: 462px;
    height: 242px;
    background: url(/lp/bim/img/decorations_set01_sp.svg) bottom right/462px 242px no-repeat;
  }
}

.decorations_set05 {
  position: relative;
}
.decorations_set05:after {
  z-index: -1;
  width: 1582px;
  height: 341px;
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translateX(-50%);
  content: "";
  background: url(/lp/bim/img/decorations_set05.svg) top center/1582px 341px no-repeat;
}
@media screen and (max-width: 1024px) {
  .decorations_set05:after {
    width: 1037px;
    height: 224px;
    background: url(/lp/bim/img/decorations_set05.svg) bottom right/1037px 224px no-repeat;
  }
}
@media screen and (max-width: 1024px) and (max-width: 440px) {
  .decorations_set05:after {
    width: 462px;
    height: 242px;
    background: url(/lp/bim/img/decorations_set01_sp.svg) bottom right/462px 242px no-repeat;
    top: 0;
  }
}

.decorations_set06 {
  position: relative;
}
.decorations_set06:after {
  z-index: -1;
  width: 1530px;
  height: 424px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  content: "";
  background: url(/lp/bim/img/decorations_set06.svg) top center/1530px 424px no-repeat;
}
@media screen and (max-width: 1024px) {
  .decorations_set06:after {
    width: 1024px;
    height: 283px;
    background: url(/lp/bim/img/decorations_set05.svg) bottom right/1024px 283px no-repeat;
  }
}
@media screen and (max-width: 1024px) and (max-width: 440px) {
  .decorations_set06:after {
    width: 462px;
    height: 242px;
    background: url(/lp/bim/img/decorations_set01_sp.svg) bottom right/462px 242px no-repeat;
    top: 0;
  }
}

.header_page {
  background: #199AE4;
}

.content_alone {
  margin-bottom: 2em;
}

.p-modal--content {
  position: fixed;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 1500;
  display: none;
}

.p-modal--close {
  display: inline-block;
  z-index: 2000;
  position: fixed;
  top: 25px;
  right: 50px;
  cursor: pointer;
}
@media screen and (max-width: 440px) {
  .p-modal--close {
    top: 20px;
    right: 30px;
  }
}
.p-modal--close:after {
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 50px;
  background: #199AE4;
  content: "";
  transform: rotate(45deg);
}
@media screen and (max-width: 440px) {
  .p-modal--close:after {
    width: 2px;
    height: 30px;
  }
}
.p-modal--close:before {
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 50px;
  background: #199AE4;
  content: "";
  transform: rotate(-45deg);
}
@media screen and (max-width: 440px) {
  .p-modal--close:before {
    width: 2px;
    height: 30px;
  }
}

.p-modal--contentWrap {
  height: 100vh;
  width: 100%;
  overflow-y: scroll;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-modal--inner {
  width: 100%;
  max-width: 1100px;
  padding: 30px;
}
@media screen and (max-width: 1024px) {
  .p-modal--inner {
    padding: 50px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 440px) {
  .p-modal--inner {
    padding: 50px 30px;
  }
}

.p-modal--btn {
  padding: 0;
  cursor: pointer;
  position: relative;
}
.p-modal--btn:after {
  transition: all 0.2s linear;
  z-index: 2;
  content: "";
  width: 90px;
  height: 53px;
  border-radius: 5px;
  background: #00AAFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-modal--btn:before {
  z-index: 3;
  content: "";
  width: 30px;
  height: 27px;
  background-color: #fff;
  clip-path: polygon(30px 50%, 0% 0%, 0% 27px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
}
.p-modal--btn:hover:after {
  background: #00c98d;
}

/* mainvisual */
.mainvisual_wrap {
  opacity: 0;
  animation: animation_fadeup 0.3s ease-out 0.3s forwards;
  margin-bottom: -70px;
  width: 100%;
  padding-bottom: 31vw;
  background: url(/lp/bim/img/main_visual02.svg) bottom center/contain no-repeat;
}
@media screen and (max-width: 440px) {
  .mainvisual_wrap {
    margin-bottom: 0;
  }
}

.mainvisual_inner {
  width: 100%;
  max-width: calc(1110px + 10vw);
  margin: 0 auto;
  padding: 130px 5vw 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8%;
}
@media screen and (max-width: 1024px) {
  .mainvisual_inner {
    padding: 120px 5vw 0;
    display: block;
  }
}
@media screen and (max-width: 1024px) and (max-width: 440px) {
  .mainvisual_inner {
    padding: 80px 5vw 0;
  }
}
.mainvisual_inner .visual_set {
  width: 60%;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .mainvisual_inner .visual_set {
    width: 100%;
  }
}
.mainvisual_inner .visual_set.animation_on {
  animation: animation_fade_right 0.3s ease-out 0.7s forwards;
}
@media screen and (max-width: 1024px) {
  .mainvisual_inner .visual_set.animation_on {
    animation: animation_fadeup 0.3s ease-out 0.7s forwards;
  }
}
.mainvisual_inner .visual_image {
  opacity: 0;
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .mainvisual_inner .visual_image {
    display: none;
  }
}
.mainvisual_inner .visual_image.animation_on {
  animation: animation_fade_left 0.3s ease-out 0.7s forwards;
}
.mainvisual_inner .visual_image_sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .mainvisual_inner .visual_image_sp {
    display: block;
    max-width: 70vw;
    margin: 40px auto 0;
  }
}

.visual_set {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.visual_set .bodycopy {
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .visual_set .bodycopy {
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  .visual_set .leadcopy {
    text-align: center;
  }
}
.visual_set .leadcopy span {
  letter-spacing: 0.01em;
  padding: 0 0.2em;
  display: inline-block;
  background: linear-gradient(transparent 50%, #c7ebff 0%);
  font-size: 2rem;
  line-height: 2em;
  font-weight: 600;
}
@media screen and (max-width: 1024px) and (max-width: 440px) {
  .visual_set .leadcopy span {
    display: inline;
    line-height: 1.6em;
    font-size: 1.7rem;
  }
}
.visual_set .contact {
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  .visual_set .contact {
    margin: 30px 0 50px;
  }
}
.visual_set .contact .micro_copy {
  text-align: center;
  margin-bottom: 5px;
}
.visual_set .contact .micro_copy span {
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
}
.visual_set .contact .micro_copy span:after {
  content: "";
  width: 3px;
  border-radius: 3px;
  background: #000;
  height: 18px;
  transform: rotate(25deg);
  position: absolute;
  top: 0;
  right: -10px;
}
.visual_set .contact .micro_copy span:before {
  content: "";
  width: 3px;
  border-radius: 3px;
  background: #000;
  height: 18px;
  transform: rotate(-25deg);
  position: absolute;
  top: 0;
  left: -14px;
}

/* BIM of EPCO */
.about_text {
  display: flex;
  align-items: flex-end;
  gap: 0;
}
@media screen and (max-width: 1024px) {
  .about_text {
    display: block;
  }
}
.about_text .text {
  opacity: 0;
  width: 65%;
}
@media screen and (max-width: 1024px) {
  .about_text .text {
    width: 100%;
  }
}
.about_text .text.animation_on {
  animation: animation_fade_right 0.3s ease-out 0s forwards;
}
.about_text .text p {
  max-width: 600px;
  font-size: clamp(1.6rem, 1.467rem + 0.54vw, 1.9rem);
  line-height: 2.1em;
}
@media screen and (max-width: 1024px) {
  .about_text .text p {
    max-width: 100%;
  }
}
.about_text .about_copy {
  margin-bottom: 0.6em;
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.5em;
}
@media screen and (max-width: 1024px) {
  .about_text .about_copy {
    font-size: 5.6rem;
    text-align: center;
  }
}
@media screen and (max-width: 1024px) and (max-width: 440px) {
  .about_text .about_copy {
    font-size: 2.5rem;
    margin-bottom: 1em;
  }
}
.about_text .about_copy span {
  font-weight: 700;
  position: relative;
  background: linear-gradient(transparent 50%, #95d8ff 0%);
}
.about_text .image {
  opacity: 0;
  width: 35%;
}
@media screen and (max-width: 1024px) {
  .about_text .image {
    margin-top: 50px;
    width: 100%;
    text-align: center;
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 440px) {
  .about_text .image {
    max-width: 80vw;
    margin: 50px auto 0;
  }
}
.about_text .image.animation_on {
  animation: animation_fade_left 0.3s ease-out 0s forwards;
}

/* Solutions */
.problems_wrap {
  padding-top: 20px;
  opacity: 0;
}

.problems {
  position: relative;
  text-align: center;
}
.problems .problems_example {
  padding: 0px 5vw 0;
}
@media screen and (max-width: 1024px) {
  .problems .problems_example {
    padding: 0 3vw;
  }
}
@media screen and (max-width: 1024px) and (max-width: 440px) {
  .problems .problems_example {
    padding: 0;
  }
}

.ttl_question {
  position: absolute;
  top: -35px;
  left: 50%;
  width: 648px;
  height: 82px;
  font-weight: 700;
  color: #fff;
  font-size: 3rem;
  text-align: center;
  padding: 0.8em 1em 0;
  transform: translateX(-50%);
  background: url(/lp/bim/img/ttl_question.svg) center center/contain no-repeat;
  text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, 0px 1px 0 #000, -1px 0 #000, -1px 0 0 #000, 1px 0 0 #000;
}
@media screen and (max-width: 1024px) {
  .ttl_question {
    font-size: 2.4rem;
    width: 538px;
    height: 68px;
    padding: 0.6em 1em 0;
  }
}
@media screen and (max-width: 1024px) and (max-width: 440px) {
  .ttl_question {
    width: 302px;
    height: 52px;
    padding: 0.5em 1em 0;
    top: -23px;
    font-size: 1.6rem;
  }
}

.ttl_solutuins_wrap {
  opacity: 0;
  margin: 80px 0;
}
@media screen and (max-width: 1024px) {
  .ttl_solutuins_wrap {
    margin: 50px 0;
  }
}
.ttl_solutuins_wrap .ttl_solutuins {
  text-align: center;
  margin-bottom: 2em;
}
.ttl_solutuins_wrap .ttl_solutuins span {
  line-height: 1.4em;
  z-index: 2;
  font-size: 3.8rem;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .ttl_solutuins_wrap .ttl_solutuins span {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 1024px) and (max-width: 440px) {
  .ttl_solutuins_wrap .ttl_solutuins span {
    font-size: 2.2rem;
  }
}
.ttl_solutuins_wrap p {
  text-align: center;
  font-size: clamp(1.5rem, 1.367rem + 0.54vw, 1.8rem);
  font-weight: 500;
  line-height: 1.6em;
}

.solutuins_warp {
  opacity: 0;
}

.table_solutions {
  background: #fff;
  width: 100%;
  border-collapse: separate;
  border-radius: 8px;
  border-left: 2px solid #000;
  border-top: 2px solid #000;
  text-align: center;
}
.table_solutions th {
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  text-align: center;
}
.table_solutions td {
  width: 25%;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  padding: 2em 1.5em;
}
.table_solutions tr.step th {
  font-size: 2.6rem;
  font-weight: 600;
  padding: 0.8em;
}
.table_solutions tr.step th:nth-of-type(1) {
  position: relative;
  background: #D6F0FF;
  border-right: none;
  border-radius: 8px 0 0 0;
}
.table_solutions tr.step th:nth-of-type(1):after {
  z-index: 3;
  position: absolute;
  right: -28px;
  top: 0;
  content: "";
  width: 30px;
  height: 75px;
  background-color: #D6F0FF;
  clip-path: polygon(30px 50%, 0% 0%, 0% 75px);
}
.table_solutions tr.step th:nth-of-type(2) {
  position: relative;
  background: #A8DFFF;
  border-right: none;
}
.table_solutions tr.step th:nth-of-type(2):after {
  position: absolute;
  right: -28px;
  top: 0;
  content: "";
  width: 30px;
  height: 75px;
  background-color: #A8DFFF;
  clip-path: polygon(30px 50%, 0% 0%, 0% 75px);
}
.table_solutions tr.step th:nth-of-type(3) {
  background: #82D1FF;
  border-radius: 0 8px 0 0;
}
.table_solutions tr.step_problem {
  background: #199AE4;
}
.table_solutions tr.step_problem th {
  color: #fff;
  font-size: clamp(2rem, 1.646rem + 1.44vw, 2.8rem);
  font-weight: 700;
  padding: 0.8em;
}
.table_solutions tr.list_problem td {
  font-size: 1.8rem;
  font-weight: 500;
}
.table_solutions tr.list_problem td:nth-of-type(1) {
  border-radius: 0 0 0 8px;
}
.table_solutions tr.list_problem td:nth-of-type(4) {
  border-radius: 0 0 8px 0;
}
.table_solutions tr.step_solutions th {
  background: #00C98D;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  padding: 0.8em;
}
.table_solutions tr.subject_solutuins td {
  background: #F1FAFF;
  text-align: left;
}
.table_solutions tr.subject_solutuins td ul li {
  font-weight: 500;
}

.list_solutuins td {
  text-align: left;
}
.list_solutuins td p {
  font-weight: 500;
  font-size: 1.7rem;
}
.list_solutuins td p span {
  font-weight: 500;
}
.list_solutuins .solutuins_step_wrap {
  padding: 25px 20px;
}
.list_solutuins .list_indent_wrap {
  background: #f1faff;
  padding: 25px 20px;
}
.list_solutuins .solutuins_step {
  text-align: center;
  font-size: 2.7rem;
  font-weight: 600;
  margin: 10px 0 15px;
}
.list_solutuins .solutuins_step span {
  display: block;
  color: #2298FF;
  font-size: 1.4rem;
  font-weight: 700;
}

.bimlevel td {
  padding: 1.5em 1em 170px;
}
.bimlevel td .bim_lebel {
  color: #00A2FF;
  font-size: 4.8rem;
  line-height: 1.2em;
  font-weight: 600;
}
.bimlevel td .bim_lebel span {
  line-height: 1em;
  display: inline-block;
  padding: 5px 25px 10px;
  background: url(/lp/bim/img/br_lebel.svg) center top/contain no-repeat;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.bimlevel td .subject {
  font-size: 2.4rem;
  font-weight: 600;
  padding: 0.5em 0;
}
.bimlevel td:nth-of-type(1) {
  background: url(/lp/bim/img/level01.svg) center bottom/contain no-repeat;
}
.bimlevel td:nth-of-type(2) {
  background: url(/lp/bim/img/level02.svg) center bottom/contain no-repeat;
}
.bimlevel td:nth-of-type(3) {
  background: url(/lp/bim/img/level03.svg) center bottom/contain no-repeat;
}
.bimlevel td:nth-of-type(4) {
  background: url(/lp/bim/img/level04.svg) center bottom/contain no-repeat;
}
.bimlevel.bimlevel01 td {
  padding: 1em 1em 50px;
}

.solutuins_warp_sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .solutuins_warp_sp {
    display: block;
  }
}

.solutions_sp_level {
  position: relative;
  background: #fff;
  text-align: center;
  width: 100%;
  border-collapse: separate;
  border-radius: 8px;
  border-left: 2px solid #000;
  border-top: 2px solid #000;
}
.solutions_sp_level.animation_on {
  animation: none;
}
@media screen and (max-width: 1024px) {
  .solutions_sp_level.animation_on {
    animation: animation_fadeup 0.3s ease-out 0.2s forwards;
  }
}
.solutions_sp_level:not(:last-child) {
  margin-bottom: 60px;
}
.solutions_sp_level:not(:last-child):after {
  position: absolute;
  content: "";
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 25px;
  background-color: #c2d3dc;
  clip-path: polygon(50% 25px, 0% 0%, 60px 0%);
}
.solutions_sp_level tbody {
  display: block;
}
.solutions_sp_level tfoot.swich_button td {
  position: relative;
  background: #199AE4;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 1em;
  border-radius: 0 0 8px 8px;
}
.solutions_sp_level tfoot.swich_button td:after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: " ";
  width: 15px;
  height: 2px;
  background: #fff;
  font-size: 3rem;
  font-weight: 300;
}
.solutions_sp_level tfoot.swich_button td:before {
  position: absolute;
  right: 37px;
  top: 50%;
  transform: translateY(-50%);
  content: " ";
  width: 2px;
  height: 15px;
  background: #fff;
  font-size: 3rem;
  font-weight: 300;
}
.solutions_sp_level tfoot.swich_button.swich_button_on td:before {
  display: none;
}
.solutions_sp_level td, .solutions_sp_level th {
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
}
.solutions_sp_level .step_problem th {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  padding: 0.5em;
  color: #fff;
  background: #199ae4;
}
.solutions_sp_level .step_solutions th {
  padding: 1em 0.5em;
  color: #fff;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 600;
  background: #00C98D;
}
.solutions_sp_level .list_problem td {
  padding: 1em;
  font-weight: 500;
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .solutions_sp_level .list_problem td {
    font-size: 1.7rem;
  }
}
.solutions_sp_level .list_indent li {
  font-weight: 500;
  font-size: 1.6rem;
}
.solutions_sp_level .step01 th, .solutions_sp_level .step02 th, .solutions_sp_level .step03 th, .solutions_sp_level .step04 th {
  padding: 1em;
  text-align: center;
  border-radius: 8px 8px 0 0;
  font-size: 2.4rem;
  font-weight: 600;
}
.solutions_sp_level .step01 {
  background: #d6f0ff;
}
.solutions_sp_level .step02 {
  background: #a8dfff;
}
.solutions_sp_level .step03 {
  background: #a8dfff;
}
.solutions_sp_level .step04 {
  background: #82d1ff;
}

.solutions_solution {
  position: relative;
  width: 100%;
  max-width: calc(1280px + 10%);
  margin: 100px auto 0;
  padding: 115px 5% 100px;
}
@media screen and (max-width: 1024px) {
  .solutions_solution {
    padding: 100px 5% 100px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 440px) {
  .solutions_solution {
    padding: 60px 20px 0;
  }
}
.solutions_solution:after {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 180px;
  height: 60px;
  background-color: #EAF7FD;
  clip-path: polygon(50% 60px, 0% 0%, 180px 0%);
}
.solutions_solution .table_solutions tr.step_solutions th {
  border-radius: 8px 8px 0 0;
}
.solutions_solution .table_solutions tr.subject_solutuins td:nth-of-type(1) {
  border-radius: 0 0 0 8px;
}
.solutions_solution .table_solutions tr.subject_solutuins td:nth-of-type(4) {
  border-radius: 0 0 8px 0;
}

@media screen and (max-width: 1024px) {
  .solutuins_warp {
    display: none;
  }
}

.bg_solution_upper {
  position: relative;
  margin: 0 2vw;
  border-radius: 15px;
}
.bg_solution_upper:after {
  z-index: -1;
  content: "";
  background: #EAF7FD;
  width: 100%;
  height: 81%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 15px;
}
@media screen and (max-width: 1024px) {
  .bg_solution_upper:after {
    bottom: -50px;
    height: 83%;
  }
}
@media screen and (max-width: 1024px) and (max-width: 440px) {
  .bg_solution_upper:after {
    height: 88%;
  }
}

.bg_solution_lower {
  background: #199AE4;
  border-radius: 0 0 15px 15px;
}
@media screen and (max-width: 1024px) {
  .bg_solution_lower {
    display: none;
  }
}

/* Solutions */
.content_reason {
  display: flex;
  flex-direction: column;
  gap: 35px 0;
}

.reason_wrap {
  opacity: 0;
  padding: 6% 5%;
  border-radius: 8px;
  border: solid 2px #000;
  background: #F1FAFF;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 70px;
}
@media screen and (max-width: 1024px) {
  .reason_wrap {
    display: block;
    padding: 50px 5%;
  }
}
.reason_wrap.animation_on {
  animation: animation_fadeup 0.3s ease-out 0.2s forwards;
}
.reason_wrap .text {
  width: 45%;
}
@media screen and (max-width: 1024px) {
  .reason_wrap .text {
    width: 100%;
    margin-bottom: 30px;
  }
}
.reason_wrap .text .no {
  margin-bottom: 10px;
  line-height: 1em;
  font-size: clamp(7rem, 5.618rem + 6.91vw, 10.8rem);
  font-weight: 700;
  color: #95D8FF;
  text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, 0px 1px 0 #000, -1px 0 #000, -1px 0 0 #000, 1px 0 0 #000;
}
@media screen and (max-width: 1024px) {
  .reason_wrap .text .no {
    text-align: center;
  }
}
.reason_wrap .text .ttl_reason {
  line-height: 1.6em;
  font-size: clamp(2rem, 1.646rem + 1.44vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 1024px) {
  .reason_wrap .text .ttl_reason {
    text-align: center;
  }
}
.reason_wrap .text .ttl_reason span {
  font-weight: 700;
  font-size: clamp(2rem, 1.646rem + 1.44vw, 2.8rem);
}
.reason_wrap .text p {
  font-size: clamp(1.6rem, 1.511rem + 0.36vw, 1.8rem);
  line-height: 2em;
}
.reason_wrap .image {
  width: 55%;
}
@media screen and (max-width: 1024px) {
  .reason_wrap .image {
    width: 100%;
  }
}
.reason_wrap:nth-of-type(even) .text {
  order: 2;
}
.reason_wrap:nth-of-type(even) .image {
  order: 1;
}

.image_slide_wrap {
  padding-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .image_slide_wrap {
    padding-bottom: 60px;
  }
}

/* flow */
.flow_wrap {
  opacity: 0;
  margin-top: 30px;
  overflow-x: auto;
  padding-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .flow_wrap {
    padding-bottom: 30px;
  }
}
.flow_wrap.animation_on {
  animation: animation_fade_left50 0.4s ease-out 0.5s forwards;
}
.flow_wrap picture img {
  min-width: 1200px;
  width: 100%;
}

/*===========
scrollbar
===========*/
/*スクロールバー全体の高さ*/
.flow_wrap::-webkit-scrollbar {
  height: 6px;
}

/*スクロールバー全体の背景*/
.flow_wrap::-webkit-scrollbar-track {
  background: #E8F4FA;
  border-radius: 10px;
}

/*スクロールバーの動く部分*/
.flow_wrap::-webkit-scrollbar-thumb {
  background: #95D8FF;
  border: none;
  border-radius: 10px;
}

/*スクロールバーの動く部分のホバー（マウスオーバー）*/
.flow_wrap::-webkit-scrollbar-thumb:hover {
  background: #95D8FF;
}

/* case */
.bg_deepblue {
  margin: 180px 0 0 0;
  background: #199AE4;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .bg_deepblue {
    margin: 180px 0 50px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 440px) {
  .bg_deepblue {
    margin: 100px 0 50px;
  }
}
.bg_deepblue:after {
  z-index: 3;
  content: "";
  position: absolute;
  left: -50px;
  bottom: -150px;
  width: 470px;
  height: 344px;
  background: url(/lp/bim/img/case01.png) center top/contain no-repeat;
}
@media screen and (max-width: 440px) {
  .bg_deepblue:after {
    left: -50px;
    bottom: -70px;
    width: 258px;
    height: 184px;
  }
}
.bg_deepblue:before {
  z-index: 3;
  content: "";
  position: absolute;
  right: -10px;
  bottom: -85px;
  width: 329px;
  height: 277px;
  background: url(/lp/bim/img/case02.png) center top/contain no-repeat;
}
@media screen and (max-width: 440px) {
  .bg_deepblue:before {
    width: 175px;
    bottom: -30px;
    height: 146px;
  }
}

.list_case_wrap {
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .list_case_wrap {
    opacity: 1;
  }
}
.list_case_wrap.animation_on {
  animation: animation_fadeup 0.3s ease-out 0s forwards;
}
@media screen and (max-width: 1024px) {
  .list_case_wrap.animation_on {
    animation: none;
  }
}

.list_case .slick-prev, .list_case .slick-next {
  width: 55px;
  height: 55px;
  border: solid 2px #fff;
  border-radius: 50px;
}
.list_case .slick-prev {
  background: url(/lp/bim/img/arrow_left.svg) center center/9px 16px no-repeat;
  bottom: -90px;
  right: 50%;
}
.list_case .slick-next {
  background: url(/lp/bim/img/arrow_right.svg) center center/9px 16px no-repeat;
  bottom: -90px;
  right: calc(50% - 75px);
}
.list_case .slick-prev:hover, .list_case .slick-prev:focus {
  background: url(/img/recruit/common/arrow_left.svg) center center/9px 16px #fff no-repeat;
}
.list_case .slick-next:hover, .list_case .slick-next:focus {
  background: url(/img/recruit/common/arrow_right.svg) center center/9px 16px #fff no-repeat;
}

.case_wrap {
  border: solid 2px #000;
  background: #F1FAFF;
  border-radius: 8px;
  padding: 50px 70px;
}
@media screen and (max-width: 1024px) {
  .case_wrap {
    padding: 40px 40px;
  }
  .case_wrap:not(:last-child) {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 440px) {
  .case_wrap {
    padding: 30px 20px;
  }
}
.case_wrap.animation_on {
  animation: animation_fadeup 0.3s ease-out 0s forwards;
}
@media screen and (max-width: 1024px) {
  .case_wrap.animation_on {
    animation: animation_fade_right50 0.4s ease-out 0s forwards;
  }
}

.ttl_case_set {
  display: flex;
  gap: 0 30px;
  align-items: center;
  flex-direction: row;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .ttl_case_set {
    display: block;
    margin-bottom: 30px;
    text-align: center;
  }
}
.ttl_case_set .label {
  height: 40px;
  border-radius: 25px;
  display: inline-block;
  border: solid 2px #000;
  background: #41C6FF;
}
@media screen and (max-width: 1024px) {
  .ttl_case_set .label {
    margin-bottom: 15px;
    height: 34px;
  }
}
.ttl_case_set .label .case {
  line-height: 36px;
  padding: 0 25px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 25px 0 0 25px;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .ttl_case_set .label .case {
    font-size: 1.4rem;
    line-height: 30px;
  }
}
.ttl_case_set .label .step {
  line-height: 35px;
  padding: 0 35px 0 20px;
  border-radius: 0 25px 25px 0;
  display: inline-block;
  background: #fff;
  font-size: 1.7rem;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .ttl_case_set .label .step {
    line-height: 30px;
    font-size: 1.5rem;
  }
}
.ttl_case_set .ttl_case {
  font-size: clamp(2rem, 1.79rem + 1.26vw, 2.8rem);
  line-height: 1.4em;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .ttl_case_set .ttl_case {
    text-align: center;
  }
}

.case_set {
  display: flex;
  gap: 0 80px;
}
@media screen and (max-width: 1024px) {
  .case_set {
    display: block;
  }
}
.case_set .case_inner {
  padding: 45px;
  background: #fff;
  border-radius: 8px;
}
@media screen and (max-width: 1024px) {
  .case_set .case_inner {
    padding: 30px 20px;
  }
}
.case_set .case_inner .ttl_problem {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 440px) {
  .case_set .case_inner .ttl_problem {
    margin-bottom: 30px;
  }
}
.case_set .case_inner .ttl_problem span {
  width: 100%;
  max-width: 260px;
  line-height: 1em;
  padding: 0.7em 1em;
  font-size: clamp(1.8rem, 1.711rem + 0.36vw, 2rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  display: inline-block;
  border-radius: 30px;
}
.case_set .case_inner.problem_wrap {
  width: 40%;
  position: relative;
  border: solid 2px #DBDBDB;
}
@media screen and (max-width: 1024px) {
  .case_set .case_inner.problem_wrap {
    width: 100%;
    margin-bottom: 60px;
  }
}
.case_set .case_inner.problem_wrap:after {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  content: "";
  width: 30px;
  height: 80px;
  background-color: #cfd9df;
  clip-path: polygon(30px 50%, 0% 0%, 0% 80px);
}
@media screen and (max-width: 1024px) {
  .case_set .case_inner.problem_wrap:after {
    top: auto;
    bottom: -45px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 80px;
    height: 25px;
    background-color: #c2d3dc;
    clip-path: polygon(50% 25px, 0% 0%, 80px 0%);
  }
}
.case_set .case_inner.problem_wrap .ttl_problem span {
  background: #41C6FF;
}
.case_set .case_inner.solustion_wrap {
  width: 60%;
  border: solid 2px #00C98D;
}
@media screen and (max-width: 1024px) {
  .case_set .case_inner.solustion_wrap {
    width: 100%;
  }
}
.case_set .case_inner.solustion_wrap .ttl_problem span {
  background: #00C98D;
}
.case_set .case_inner .leadtext {
  font-size: clamp(1.8rem, 1.711rem + 0.36vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0.8em;
}
.case_set .case_inner .leadtext span {
  font-weight: 700;
}
.case_set .case_inner .text {
  margin-bottom: 0.5em;
}

.slick-slide {
  width: 1150px;
  margin: 0 20px;
}
@media screen and (max-width: 1024px) {
  .slick-slide {
    width: 700px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 440px) {
  .slick-slide {
    width: 100%;
    margin: 0;
  }
}

.slick-track {
  display: flex;
}

.slick-slide {
  height: auto !important;
}

/* Price */
.menu_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px 25px;
}
@media screen and (max-width: 1024px) {
  .menu_wrap {
    display: block;
  }
}
.menu_wrap .menu {
  border: solid 2px #000;
  border-radius: 8px;
}
.menu_wrap .menu.menu_lag {
  grid-row: 2/3;
  grid-column: 1/4;
}
.menu_wrap .menu.menu_lag.animation_on {
  animation: animation_fade_right50 0.4s ease-out 0s forwards;
}
.menu_wrap .menu.menu_sml {
  opacity: 0;
}
.menu_wrap .menu.menu_sml:not(:last-child) {
  margin-bottom: 20px;
}
.menu_wrap .menu.menu_sml.animation_on {
  animation: animation_fade_left50 0.4s ease-out 0s forwards;
}

.ttl_menu_set {
  background: #F1FAFF;
  border-radius: 8px 8px 0 0;
  padding: 25px 30px;
  display: flex;
  gap: 25px;
  border-bottom: solid 2px #000;
}
.ttl_menu_set .text_menu {
  border-right: solid 2px #000;
  border-top: solid 2px #000;
  display: inline-block;
  padding: 6px 10px 0 0;
  line-height: 1em;
  font-weight: 600;
}

.ttl_menu_wrap .ttl_menu {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 0.2em;
}
.ttl_menu_wrap .price {
  font-size: 1.4rem;
  line-height: 1em;
  font-weight: 700;
}
.ttl_menu_wrap .price span {
  line-height: 1em;
  font-size: 2.6rem;
  color: #00AAFF;
  font-weight: 700;
  margin-right: 3px;
}

.menu_image {
  padding: 30px;
  text-align: center;
}
@media screen and (max-width: 440px) {
  .menu_image {
    padding: 30px 20px;
  }
}

.menu_lag {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .menu_lag {
    display: block;
  }
}
.menu_lag .ttl_menu_consulting_set {
  width: 60%;
  padding: 50px;
  background: #F1FAFF;
  border-right: solid 2px #000;
  border-radius: 8px 0 0 8px;
}
@media screen and (max-width: 1024px) {
  .menu_lag .ttl_menu_consulting_set {
    width: 100%;
    border-radius: 8px 8px 0 0;
    padding: 40px 20px;
    border-bottom: solid 2px #000;
    border-right: none;
  }
}
.menu_lag .menu_image {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .menu_lag .menu_image {
    width: 100%;
  }
}

.ttl_menu_consulting_wrap .ttl_menu {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .ttl_menu_consulting_wrap .ttl_menu {
    gap: 10px;
    flex-direction: column;
  }
}
.ttl_menu_consulting_wrap .ttl_menu .consulting {
  font-size: clamp(2.5rem, 2.478rem + 0.9vw, 3.2rem);
  font-weight: 700;
}
.ttl_menu_consulting_wrap .ttl_menu .free_label {
  line-height: 1em;
  border-radius: 40px;
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  padding: 0.4em 20px 0.3em;
  background: #00C98D;
}
.ttl_menu_consulting_wrap .leadcopy {
  padding-bottom: 25px;
  border-bottom: solid 1px #000;
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .ttl_menu_consulting_wrap .leadcopy {
    margin-top: 1em;
    text-align: center;
  }
}
.ttl_menu_consulting_wrap .leadcopy span {
  font-size: 1.8rem;
  font-weight: 700;
}
.ttl_menu_consulting_wrap p {
  font-weight: 500;
}

/* Contact */
.bg_contact {
  position: relative;
  margin: 0 2vw;
  border-radius: 15px;
}
.bg_contact:after {
  z-index: -1;
  content: "";
  background: #EAF7FD;
  width: 100%;
  height: 65%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 15px;
}
@media screen and (max-width: 440px) {
  .bg_contact:after {
    height: 75%;
  }
}

.contact_btn_wrap {
  padding-top: 50px;
  text-align: center;
  padding-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .contact_btn_wrap {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 440px) {
  .contact_btn_wrap {
    padding-top: 0;
  }
}
.contact_btn_wrap .contact_leadcopy {
  margin: 1.5em 0 2em;
  font-size: clamp(1.6rem, 1.334rem + 1.08vw, 2.2rem);
  font-weight: 500;
  line-height: 1.6em;
}
@media screen and (max-width: 1024px) {
  .contact_btn_wrap .contact_leadcopy {
    margin: 2em 0 2em;
  }
}
@media screen and (max-width: 1024px) {
  .contact_btn_wrap .image_contact {
    max-width: 55vw;
  }
}
@media screen and (max-width: 1024px) and (max-width: 440px) {
  .contact_btn_wrap .image_contact {
    max-width: 80vw;
  }
}

.contact_step_wrap {
  position: relative;
  border: solid 2px #000;
  border-radius: 8px;
  padding: 30px 35px;
  max-width: 1000px;
  margin: 80px auto 0;
}
@media screen and (max-width: 440px) {
  .contact_step_wrap {
    padding: 25px 15px;
  }
}
.contact_step_wrap h3 {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.contact_step_wrap h3 span {
  display: inline-block;
  padding: 10px 30px;
  background: #EBF8FF;
  font-size: 1.8rem;
  font-weight: 600;
}
@media screen and (max-width: 440px) {
  .contact_step_wrap h3 span {
    font-size: 1.5rem;
    padding: 10px;
    white-space: nowrap;
  }
}

.contact_step {
  display: flex;
  gap: 25px;
}
@media screen and (max-width: 1024px) {
  .contact_step {
    display: block;
  }
}
.contact_step li {
  position: relative;
  flex-grow: 1;
  background: #199AE4;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  padding: 10px 15px;
  border-radius: 5px;
}
@media screen and (max-width: 1024px) {
  .contact_step li {
    padding: 10px;
    text-align: left;
    font-size: 1.4rem;
    text-align: center;
  }
}
.contact_step li:after {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  content: "";
  width: 10px;
  height: 25px;
  background-color: #c2d3dc;
  clip-path: polygon(10px 50%, 0% 0%, 0% 25px);
}
@media screen and (max-width: 1024px) {
  .contact_step li:after {
    top: auto;
    bottom: -20px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 10px;
    background-color: #c2d3dc;
    clip-path: polygon(50% 10px, 0% 0%, 30px 0%);
  }
}
.contact_step li:last-child:after {
  display: none;
}
@media screen and (max-width: 1024px) {
  .contact_step li:not(:last-child) {
    margin-bottom: 30px;
  }
}

/* CONTACT
----------------------------------*/
.ttl_contact_form {
  font-size: 2.6rem;
  font-weight: 600;
  color: #199AE4;
  text-align: center;
  line-height: 1.4em;
  margin-bottom: 35px;
}
@media screen and (max-width: 1024px) {
  .ttl_contact_form {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }
}

.ttl_content_03 {
  text-align: left;
  font-size: 1.8rem;
  font-weight: 600;
  color: #199AE4;
  line-height: 1.4em;
  margin-bottom: 25px;
}

#contact_lp_bim .contactform_step_wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px 80px;
}
@media screen and (max-width: 440px) {
  #contact_lp_bim .contactform_step_wrap {
    margin: 0 0 40px;
  }
}
#contact_lp_bim .contactform_step_wrap .contact_step {
  display: block;
  text-align: center;
  color: #199AE4;
  border: solid 1px #199AE4;
  padding: 15px;
  font-weight: 600;
  position: relative;
  border-radius: 3px;
  width: calc(33.3333333333% - 30px);
  margin: 0 15px;
}
@media screen and (max-width: 440px) {
  #contact_lp_bim .contactform_step_wrap .contact_step {
    width: 100%;
    padding: 8px 15px;
    margin: 0 0 30px;
  }
}
#contact_lp_bim .contactform_step_wrap .contact_step:last-child {
  margin-bottom: 0;
}
#contact_lp_bim .contactform_step_wrap .contact_step:after {
  position: absolute;
  transform: rotate(45deg);
  top: 25px;
  right: -18px;
  content: " ";
  width: 8px;
  height: 8px;
  border-top: 1px solid #199AE4;
  border-right: 1px solid #199AE4;
}
@media screen and (max-width: 440px) {
  #contact_lp_bim .contactform_step_wrap .contact_step:after {
    width: 10px;
    height: 10px;
    top: auto;
    bottom: -19px;
    right: 50%;
    transform: rotate(135deg);
  }
}
#contact_lp_bim .contactform_step_wrap .contact_step:last-child:after {
  display: none;
}
#contact_lp_bim .contactform_step_wrap .contact_step.contact_step_active {
  color: #fff;
  background: #199AE4;
}
#contact_lp_bim .contact_inner {
  margin-bottom: 100px;
}
@media screen and (max-width: 440px) {
  #contact_lp_bim .contact_inner {
    margin-bottom: 60px;
  }
}
#contact_lp_bim .form_element_wrap {
  border-bottom: solid 1px #E2E2E2;
  display: flex;
}
@media screen and (max-width: 440px) {
  #contact_lp_bim .form_element_wrap {
    display: block;
  }
}
#contact_lp_bim .form_element_wrap:first-child {
  border-top: solid 1px #E2E2E2;
}
#contact_lp_bim .form_element_wrap .label_wrap {
  text-align: left;
  position: relative;
  padding: 30px 80px 30px 0;
  width: 35%;
}
@media screen and (max-width: 440px) {
  #contact_lp_bim .form_element_wrap .label_wrap {
    width: 100%;
    padding: 30px 0 5px 0;
  }
}
#contact_lp_bim .form_element_wrap .label_wrap:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  background: #199AE4;
  height: 2px;
  content: "";
}
#contact_lp_bim .form_element_wrap .label_wrap .form_label {
  font-weight: 600;
}
#contact_lp_bim .form_element_wrap .form_item_wrap {
  text-align: left;
  padding: 30px 0 30px 0;
  width: 65%;
}
@media screen and (max-width: 440px) {
  #contact_lp_bim .form_element_wrap .form_item_wrap {
    width: 100%;
    padding: 0 0 30px 0;
  }
}
#contact_lp_bim .form_item_2col {
  display: flex;
}
@media screen and (max-width: 440px) {
  #contact_lp_bim .form_item_2col {
    display: block;
  }
}
#contact_lp_bim .form_item_2col .form_item_2col_inner {
  width: 50%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 440px) {
  #contact_lp_bim .form_item_2col .form_item_2col_inner {
    width: 100%;
  }
}
#contact_lp_bim .form_item_2col .form_item_2col_inner label {
  display: inline-block;
  width: 50px;
}
@media screen and (max-width: 440px) {
  #contact_lp_bim .form_item_2col .form_item_2col_inner label {
    width: 50px;
  }
}
#contact_lp_bim .mw_wp_form_confirm .form_item_2col .form_item_2col_inner label {
  width: auto;
}
@media screen and (max-width: 440px) {
  #contact_lp_bim .mw_wp_form_confirm .form_item_2col .form_item_2col_inner label {
    width: auto;
  }
}
#contact_lp_bim input.input_small {
  width: 180px;
}
@media screen and (max-width: 440px) {
  #contact_lp_bim input.input_small {
    margin: 5px 0;
    width: calc(100% - 90px);
  }
}
#contact_lp_bim .privacy_check {
  margin-top: 20px;
  display: inline-block;
  padding: 15px 30px;
  background: #EFEFEF;
}
@media screen and (max-width: 440px) {
  #contact_lp_bim .privacy_check {
    padding: 15px;
  }
}
#contact_lp_bim .privacy_check label {
  margin-left: 10px;
}
#contact_lp_bim .privacy_check .wpcf7-list-item {
  margin-left: 0;
}
#contact_lp_bim .privacy_check .wpcf7-list-item label {
  margin-left: 0;
}
#contact_lp_bim input[name=address_1] {
  margin-bottom: 10px;
}
#contact_lp_bim input[name=zip] {
  width: 150px;
}
