<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

* {
  -webkit-overflow-scrolling: touch;
  -ms-transition: background-color 0.3s, opacity 0.3s;
  -webkit-transition: background-color 0.3s, opacity 0.3s;
  transition: background-color 0.3s, opacity 0.3s;
}

html, body {
  width: 100%;
  height: 100%;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
}

header {
  padding: 10px;
  border-top: 15px solid #00a0e9;
}

.header_wrap, .wrap {
  width: 70%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_wrap {
  max-width: 1000px;
}

@media screen and (max-width: 768px) {
  .header_wrap {
    width: 100%;
  }
}

.inquiry_form_btn {
  margin-left: auto;
  margin-right: 10px;
}

.login {
  background-color: #00a0e9;
}

.login:hover {
  background-color: #4dc7ff;
}

.logo svg {
  width: 100px;
  cursor: pointer;
}

@media screen and (max-width: 400px) {
  .logo svg {
    width: 70px;
  }
}

.logo svg g {
  fill: #00a0e9;
}

.content {
  overflow: hidden;
}

.first_view .logo {
  width: 80%;
  max-width: 500px;
}

.first_view .logo svg {
  width: 100%
}

.first_view .logo svg g {
  fill: #fff;
}

.first_view_wrap {
  /* height: 60vh; */
  height: 500px;
}

.first_view {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.first_view .description {
  font-size: 2rem;
  font-size: calc(2rem + ((1vw - 0.64rem) * 0.7143));
  margin-bottom: 20px;
}

.first_view .catch_phrase {
  font-size: 3.6rem;
  font-size: calc(2.4rem + ((1vw - 0.64rem) * 2.1429));
  font-weight: bold;
}

.banner_area {
  padding: 50px 0;
}

.banner_area .banners {
  text-align: center;
  padding: 20px 0;
}

.banner_area .banners .banner {
  width: 80%;
  height: 100%;
  max-width: 480px;
  max-height: 150px;
  margin: 0 auto;
  position: relative;
}

.banner_area .banners img {
  width: 100%;
  box-shadow: 0 0 8px 0px #adadad;
}

.banner_area .banners .banner .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;	/* マスクを表示しない */
	background-color:	rgba(255, 255, 255,0.3);
	-webkit-transition:	all 0.3s ease;
	transition:		all 0.3s ease;
}

.banner_area .banners .mask:hover {
  opacity: 1;
}

.banner_area .heading {
  font-size: 1.6rem;
}

.concern_area {
  background-image: linear-gradient(180deg, #bde9ff 0%, #fff 40%);
  padding: 70px 0;
  color: #555;
}

@media screen and (max-width: 768px) {
  .concern_area {
    padding: 30px 0;
  }
}

.heading {
  text-align: center;
  font-weight: bold;
  font-size: 2.6rem;
}

@media screen and (max-width: 768px) {
  .heading {
    font-size: 2rem;
  }
}

@media screen and (max-width: 415px) {
  .heading {
    font-size: 1.6rem;
  }
}

.concern_area .heading {
  padding-top: 30px;
}

.concerns {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  flex-wrap: wrap;
}

.concern .image_area, .inquiry .image_area {
  margin: 0 50px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 0 10px 0 #525252;
}

.concern .image_area {
  background-position: center;
  width: 150px;
  height: 150px;
}

.concern {
  position: relative;
}

.concern.left {
  left: 250px;
}

.concern.right {
  right: 250px;
}

.inquiry .image_area {
  background-position: right;
  width: 200px;
  height: 200px;
}

.concern .concern_script {
  text-align: center;
  padding: 10px 0;
}

.arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 100px 0 100px;
  border-color: #d0d0d0 transparent transparent transparent;
  margin: 30px auto 30px;
}

@media screen and (max-width: 768px) {
    .arrow {
      margin-top: 0;
    }
}

.solve {
  font-size: 3.6rem;
  font-size: calc(2.4rem + ((1vw - 0.64rem) * 2.1429));
  font-weight: bold;
  text-align: center;
  padding: 50px 0;
}

.solve img {
  margin-top: 50px;
  width: 80%;
  max-width: 500px;
}

.functions {
   margin-top: 50px;
}

.functions .heading div {
  font-weight: bold;
}

.functions .heading {
  padding: 20px 0;
}

.functions .row_wrap .heading {
  padding-top: 0;
}

.functions .heading.functions_heading {
  border: 3px solid #00a0e9;
  border-left: none;
  border-right: none;
  width: 80%;
  max-width: 400px;
  margin: 0 auto;
}

.functions .heading div {
  display: inline-block;
  margin: 0 auto;
}

.row_wrap {
  padding: 125px 0;
  background-image: linear-gradient(180deg, #fff, #f7f7f7);
  color: #555;
}

@media screen and (max-width: 768px) {
  .row_wrap {
    padding: 50px 0;
  }
}

.row {
  width: 85%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.row .script {
  font-size: 2rem;
}

@media screen and (max-width: 1000px) {
  .row {
    width: 100%;
  }
}

@media screen and (max-width: 780px) {
  .row {
    width: 90%;
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .row .script {
    font-size: 1.6rem;
  }
}

.row_wrap.right_main .row {
  flex-direction: row-reverse;
}

.row .row_content, .row .image_area {
  width: 40%;
  max-width: 400px;
}

@media screen and (max-width: 780px) {
  .row .row_content, .row .image_area {
    margin: 0 auto;
    width: 100%;
  }
}

.left_main .row .row_content {
  margin-right: 5%;
}

.right_main .row .row_content {
  margin-left: 5%;
}

@media screen and (max-width: 780px) {
  .left_main .row .row_content {
    margin-right: inherit;
  }

  .right_main .row .row_content {
    margin-left: inherit;
  }
}

.row .image_area {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* margin-top: 20px; */
  height: 250px;
}

@media screen and (max-width: 780px) {
  .functions.iekare .row .image_area {
    background-size: contain;
  }
}

@media screen and (max-width: 768px) {
  .row .image_area {
    margin-top: 20px;
  }
}

.left_main .row .image_area {
  margin-left: 5%;
}

.right_main .row .image_area {
  margin-right: 5%;
}

@media screen and (max-width: 780px) {
  .left_main .row .image_area {
    margin-left: inherit;
  }

  .right_main .row .image_area {
    margin-right: inherit;
  }
}

.row_content .heading {
  text-align: center;
  margin-top: 0;
  font-size: calc(1.4rem + 0.6vw);
}

.row_content .heading div {
  background-image: none;
}

.script {
  text-align: center;
}

.conclude .script {
  text-align: left;
  width: 80%;
  max-width: 460px;
  margin: 0 auto;
}

.row_content .script {
  text-align: left;
}

@media screen and (max-width: 768px) {
  .script {
    font-size: 1.3rem;
  }
}

.caution {
  margin: 10px 0;
  font-size: 1rem;
}

.conclude {
  padding: 120px 0;
  background-image: linear-gradient(0deg, #bde9ff 0%, #fff 40%);
  color: #555;
}

@media screen and (max-width: 768px) {
  .conclude {
    padding: 50px 0;
  }
}

.conclude .heading {
  font-size: 3rem;
  font-weight: bold;
  padding-top: 0;
}

.conclude .link_to a {
  color: #0000ff;
}

.conclude .link_to a:hover {
  color: #ff0000;
}

.inquiry {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(180deg, #fff 50%, #bde9ff 100%);
  color: #555;
  padding: 100px 0;
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .inquiry {
    margin-top: 0;
  }
}

.inquiry_wrap {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .inquiry_content .center_on_mobile {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .inquiry_wrap {
    display: block;
    width: 90%;
  }
}

.inquiry .heading {
  font-size: 1.8rem;
  font-weight: bold;
}

.inquiry .inquiry_content, .inquiry .inquiry_image {
  max-width: 400px;
  margin: 0 auto;
}

.inquiry .inquiry_image .image_area {
  margin-left: auto;
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  .inquiry .inquiry_image .image_area {
    margin: 0 auto;
  }

  .inquiry .inquiry_image {
    margin-top: 50px;
  }
}

.tel_inquiry {
  font-size: 2.6rem;
  font-weight: bold;
}

.contact {
  background-color: #f2f2f2;
}

.footer_wrap {
  align-items: flex-start;
  font-size: 1.4rem;
  padding: 50px 0;
  max-width: 1000px;
}

@media screen and (max-width: 768px) {
  .footer_wrap {
    width: 100%;
    padding: 50px 10px;
  }
}

.contact_wrap {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .contact_wrap {
    margin: 0 auto;
  }
}

.contact .heading {
  font-size: 1.2rem;
  text-align: left;
}

.contact_area, .service_area {
  width: 49%;
  display: flex;
}

.service_area {
  text-align: center;
}

.service_area_wrap {
  margin-left: auto;
  margin-right: 0;
  /* margin: 0 auto; */
}

@media screen and (max-width: 768px) {
  .service_area_wrap {
    margin: 0 auto;
  }
}

.company_info {
  margin-bottom: 30px;
}

.company_info div, .services div {
  font-size: 1.4rem;
  font-weight: bold;
}

.service_area img {
  width: 100px;
}

footer .contact .contact_area .heading {
  font-size: 1.6rem;
  font-weight: bold;
}

footer .service_area img {
  margin: 5px;
}

.service_area .eq_logo {
  width: 40px;
}

.copy_rights {
  background-color: #000;
  color: #fff;
  text-align: right;
  font-size: 1rem;
  padding: 10px;
}

button {
  color: #fff;
  background-color: #f58b32;
  padding: 10px 20px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
}

button:hover {
  background-color: #f58b32;
}

@media screen and (max-width: 400px) {
  button {
    font-size: 1rem;
  }
}

.inquiry button {
  margin: 10px 0;
}

.inquiry_page_content {
  width: 70%;
  max-width: 1000px;
  margin: 0 auto 62px;
}

@media screen and (max-width: 768px) {
  .inquiry_page_content {
    margin-bottom: 0;
    width: 100%;
  }
}

.inquiry_form_area {
  width: 100%;
  max-width: 1000px;
}

.inquiry_form {
  padding: 30px;
  text-align: center;
  color: #fff;
  background-color: rgba(0, 160, 233, 0.7);
}

@media screen and (max-width: 768px) {
  .inquiry_form {
    width: 100%;
  }
}

.inquiry_form .heading {
  font-weight: bold;
  font-size: 1.8rem;
}

.inquiry_form table {
  border: none;
  margin: 0 auto;
  width: 100%;
}

.inquiry_form table td {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.inquiry_form table tr td:nth-of-type(1) {
  padding-top: 10px;
  padding-bottom: 5px;
}

.inquiry_form table tr td:nth-of-type(2) {
  padding-bottom: 10px;
}

.inquiry_form table input,
.inquiry_form table select,
.inquiry_form table textarea {
  font-size: 1.6rem;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  width: 100%;
}

.inquiry_form table input::placeholder {
  color: #d8d8d8;
}

.inquiry_form table select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 7px 10px;
  background-color: #fff;
}

@supports (-ms-ime-align:auto) {
	.inquiry_form table select {
		padding-bottom: 0px;
    line-height: 2;
	}
}

.select_wrap {
  position: relative;
  width: 100%;
}

.select_wrap::after {
	content: '';
	width: 6px;
	height: 6px;
	border: 0px;
	border-bottom: solid 2px #ccc;
	border-right: solid 2px #ccc;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 10px;
	margin-top: -4px;
}

.inquiry_form table textarea {
  resize: none;
  height: 200px;
}

select:focus, input:focus, textarea:focus {
	outline: 0;
	border-color: orange;
}

.inquiry_form .required {
  padding: 3px 10px;
  border-radius: 5px;
  color: #fff;
  background-color: #ff6464;
  font-size: 1.2rem;
  margin-left: 5px;
}

.inquiry_form button {
  font-size: 1.6rem;
  padding: 10px 30px;
  margin-top: 20px;
}

.inquiry_form button.inactive {
  background-color: #bfbfbf;
}

.inquiry_form button.inactive:hover {
  background-color: #bfbfbf;
  cursor: default;
}

.inquiry_form button.active {
  background-color: #f58b32;
  cursor: pointer;
}

.inquiry_form button.active:hover {
  background-color: #fba256;
}

.inquiry_descriptions {
  padding: 10px;
}

.inquiry_descriptions .wrap {
  width: 80%;
}

.inquiry_descriptions .script {
  text-align: left;
  padding: 30px 0;
}

.inquiry_descriptions .image_wrap {
  text-align: center;
  margin: 30px 0;
}

.inquiry_descriptions .image_wrap img {
  width: 50%;
  max-width: 500px;
}

.inquiry_info_wrap {
  text-align: center;
}

.inquiry_info {
  font-size: 1.1rem;
  text-align: left;
  display: inline-block;
}

.inquiry_info .caption, .inquiry_info .tel_area {
  padding: 0 10px;
}

@media screen and (max-width: 400px) {
  .inquiry_info {
    display: block;
  }

  .inquiry_info .caption, .inquiry_info .tel_area {
    width: 100%;
    text-align: center;
  }
}

.inquiry_info .tel {
  font-size: 3rem;
  font-weight: bold;
}

#fixed_inquiry {
  position: fixed;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}

@media screen and (max-width: 400px) {
  #fixed_inquiry button {
    font-size: 1.6rem;
  }
}
</pre></body></html>