@charset "UTF-8";
/*-------------------------------
WEBフォント読み込み
---------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900");
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/*-------------------------------
変数
---------------------------------*/
:root {
  --main-color-blue: #0d111c;
  --main-color-blue-dark: #0d1937;
  --sub-color-ocher: #b28f39;
}

/*-------------------------------
ディフォルト設定
---------------------------------*/
@media screen and (max-width: 767px) {
  #wrap {
    overflow: hidden;
  }
}

html {
  width: 100%;
  scroll-behavior: smooth;
}

body {
  background: #0d111c;
  margin: 0px;
  padding: 0px;
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 1px;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: normal;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

/*text link（サイト全体のメイン文字カラー）
-------------------------------- */
a:link {
  color: #fff;
}

a:visited {
  color: #fff;
}

a:hover {
  color: #fff;
}

a:active {
  color: #fff;
}

/*img
------------------------*/
* img {
  border: none;
  margin: 0px;
  padding: 0px;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

* {
  box-sizing: border-box;
}

p {
  font-family: "Noto Sans JP", sans-serif;
}

.btn {
  padding-top: 2rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .btn {
    padding-top: 1rem;
  }
}
.btn a {
  display: block;
  background-color: #294283;
  padding: 1.5rem 1rem;
  text-decoration: none;
  width: 100%;
  max-width: 420px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .btn a {
    padding: 1.2rem 1rem;
  }
}
.btn a.btn_common {
  position: relative;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  padding: 1rem;
}
.btn a.btn_common::after {
  content: ">";
  position: absolute;
  top: 27%;
  right: 20px;
  display: block;
}
.btn a.btn_common:hover {
  filter: brightness(1.52);
}

.inner {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: 86%;
  }
}

@media screen and (max-width: 767px) {
  .sp_menu {
    background-color: var(--main-color);
    width: 56px;
    height: 56px;
    top: 0;
    right: 0;
    display: block;
    position: fixed;
    z-index: 1000;
  }
  .sp_menu span {
    width: 50%;
    height: 2px;
    line-height: 1;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .sp_menu span:nth-of-type(1) {
    top: 30%;
  }
  .sp_menu span:nth-of-type(2) {
    top: 50%;
  }
  .sp_menu span:nth-of-type(3) {
    top: 70%;
  }
}

.pt {
  width: 50px;
  height: 50px;
  display: block;
  position: fixed;
  bottom: 4rem;
  right: 2rem;
  background-color: var(--sub-color-ocher);
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  .pt {
    bottom: 1.5rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background-color: #0d1937;
    border: 1px solid #fff;
    width: 60px;
    height: 60px;
  }
}
.pt a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pt a::after {
  content: "▲";
  color: #fff;
}

.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

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

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

/*-------------------------------
footer
---------------------------------*/
footer {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  footer {
    margin-top: 3rem;
  }
}
footer .footer-contact {
  background-image: url(../img/common/contact_bg.webp);
  background-size: 100%;
  background-position: bottom left 0px;
}
@media screen and (max-width: 767px) {
  footer .footer-contact {
    background-size: cover;
    background-position: bottom right 50%;
  }
}
footer .footer-contact .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  justify-items: flex-start;
  align-items: center;
  padding: 6rem 0;
}
@media screen and (max-width: 767px) {
  footer .footer-contact .inner {
    padding: 2.5rem 0;
    grid-template-columns: 1fr;
  }
}
footer .footer-contact .inner h2 {
  width: 100%;
  font-size: clamp(1rem, 0.296rem + 3.005vw, 3rem);
  font-weight: 500;
  color: #1f346a;
  letter-spacing: 10px;
}
@media screen and (max-width: 767px) {
  footer .footer-contact .inner h2 {
    font-size: 1.4rem;
    text-align: center;
  }
}
footer .footer-contact .inner .btn {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0;
}
@media screen and (max-width: 767px) {
  footer .footer-contact .inner .btn {
    justify-content: center;
  }
}
footer .footer-contact .inner .btn a {
  background-color: var(--sub-color-ocher);
  font-size: clamp(1rem, 0.93rem + 0.3vw, 1.2rem);
  position: relative;
  padding-left: 3rem;
}
@media screen and (max-width: 767px) {
  footer .footer-contact .inner .btn a {
    max-width: 90%;
    padding: 1rem 2rem;
    padding-left: 3rem;
  }
}
footer .footer-contact .inner .btn a::before {
  content: "";
  display: block;
  position: absolute;
  top: 25px;
  left: 35px;
  width: 30px;
  height: 26px;
  background-image: url(../img/common/icon_mail_wh.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  footer .footer-contact .inner .btn a::before {
    top: 30%;
    width: 25px;
    height: 21px;
  }
}
footer .footer-bottom {
  padding: 4rem 0 2rem 0;
}
footer .footer-bottom .inner {
  font-family: "Noto Sans JP", sans-serif;
}
footer .footer-bottom .inner .row {
  display: grid;
  grid-template-columns: 70% 1fr;
  gap: 50px;
  justify-items: flex-start;
  align-items: center;
}
@media screen and (max-width: 767px) {
  footer .footer-bottom .inner .row {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
footer .footer-bottom .inner .row .info {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  font-size: clamp(0.8rem, 0.8rem + 0vw, 0.8rem);
}
@media screen and (max-width: 767px) {
  footer .footer-bottom .inner .row .info {
    flex-wrap: wrap;
    font-size: 0.6rem;
    text-align: center;
  }
  footer .footer-bottom .inner .row .info img {
    max-width: 60%;
    margin: auto;
  }
  footer .footer-bottom .inner .row .info p {
    width: 100%;
  }
}
footer .footer-bottom .inner .row .sns {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
}
footer .footer-bottom .inner .row .sns ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  footer .footer-bottom .inner .row .sns ul {
    width: 100%;
    justify-content: center;
  }
}
footer .footer-bottom .inner .row .sns ul li a {
  display: block;
  width: 35px;
  height: 35px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}
@media screen and (max-width: 767px) {
  footer .footer-bottom .inner .row .sns ul li a {
    width: 25px;
    height: 25px;
  }
}
footer .footer-bottom .inner .row .sns ul li a.sns_line {
  background-image: url(../img/common/sns_icon_line.svg);
}
footer .footer-bottom .inner .row .sns ul li a.sns_instagram {
  background-image: url(../img/common/sns_icon_instagram.svg);
}
footer .footer-bottom .inner .row .sns ul li a.sns_x {
  background-image: url(../img/common/sns_icon_x.svg);
}
footer .footer-bottom .inner .row.footer-cc {
  padding-top: 4rem;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 767px) {
  footer .footer-bottom .inner .row.footer-cc {
    grid-template-columns: 1fr;
    padding-top: 2rem;
  }
}
footer .footer-bottom .inner .row.footer-cc p {
  width: 100%;
  font-size: 0.6rem;
}
footer .footer-bottom .inner .row.footer-cc p:nth-of-type(2) {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 767px) {
  footer .footer-bottom .inner .row.footer-cc p:nth-of-type(2) {
    font-size: 0.4rem;
    justify-content: center;
  }
}

/*-------------------------------
header
---------------------------------*/
header .inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  grid-gap: 0;
  justify-items: flex-start;
  align-items: center;
  padding: 2rem 2rem 1rem 2rem;
  position: fixed;
  z-index: 1000;
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  header .inner {
    padding: 1rem;
    grid-template-columns: 1fr;
  }
}
header .inner .logo {
  width: 100%;
}
header .inner .logo h1 {
  width: 100%;
  font-size: clamp(0.8rem, 0.818rem - 0.075vw, 0.75rem);
  visibility: visible;
}
@media screen and (max-width: 767px) {
  header .inner .logo h1 {
    font-size: 0.6rem;
    visibility: visible;
  }
}
header .inner .logo h1 a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  font-weight: normal;
  color: #fff;
}
header .inner .logo h1 a img {
  width: 60px;
}
@media screen and (max-width: 767px) {
  header .inner .logo h1 a img {
    width: 40px;
  }
}
header .inner .menu {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}
@media screen and (max-width: 767px) {
  header .inner .menu {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    align-items: flex-start;
    transition: 0.5s;
    -webkit-transition: 0.5s;
  }
  header .inner .menu::before {
    display: none;
    content: "";
    width: 55%;
    height: 10vw;
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background-image: url(../img/common/logo_footer.webp);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
}
header .inner .menu nav {
  width: 100%;
}
@media screen and (max-width: 767px) {
  header .inner .menu nav {
    background-color: #1d263d;
    padding: 2rem 0;
    padding-top: 5rem;
    height: 100%;
    display: none;
    transition: 0.5s;
    -webkit-transition: 0.5s;
  }
}
header .inner .menu nav ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  header .inner .menu nav ul {
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
    width: 90%;
    margin: auto;
    gap: 0px;
  }
}
header .inner .menu nav ul li {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  header .inner .menu nav ul li {
    width: 100%;
  }
}
header .inner .menu nav ul li a {
  color: #fff;
  text-decoration: none;
  padding: 0.7rem 1rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  header .inner .menu nav ul li a {
    display: block;
    width: 100%;
    padding: 1.5rem 0.5rem;
    border-bottom: 1px solid #2b3858;
  }
}
header .inner .menu nav ul li a.nav_contact {
  background-color: var(--sub-color-ocher);
}
@media screen and (max-width: 767px) {
  header .inner .menu nav ul li a.nav_contact {
    position: absolute;
    bottom: 1.5rem;
    left: 1rem;
    max-width: 70%;
    text-align: center;
  }
  header .inner .menu nav ul li a.nav_contact::before {
    content: "";
    display: block;
    position: absolute;
    top: 25px;
    left: 25px;
    width: 30px;
    height: 26px;
    background-image: url(../img/common/icon_mail_wh.webp);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: 2;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  header .inner .menu nav ul li a.nav_contact::before {
    top: 30%;
    width: 25px;
    height: 21px;
  }
}
header .inner .menu nav ul li a.current {
  color: var(--sub-color-ocher);
  position: relative;
}
header .inner .menu nav ul li a.current::after {
  width: 90%;
  border-bottom: 1px solid var(--sub-color-ocher);
  content: "";
  display: block;
  left: 0;
  right: 0;
  bottom: 0px;
  position: absolute;
  margin: auto;
}
@media screen and (max-width: 767px) {
  header .inner .menu nav ul li a.current::after {
    display: none;
  }
}
header .inner .menu .sp_nav {
  display: none;
}
@media screen and (max-width: 767px) {
  header .inner .menu .sp_nav {
    display: block;
    position: relative;
    background-color: var(--sub-color-ocher);
    width: 50px;
    height: 50px;
    position: fixed;
    top: 0.5rem;
    right: 1rem;
  }
  header .inner .menu .sp_nav span {
    width: 70%;
    height: 1px;
    line-height: 1;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  header .inner .menu .sp_nav span:nth-of-type(1) {
    top: 28%;
  }
  header .inner .menu .sp_nav span:nth-of-type(2) {
    top: 50%;
  }
  header .inner .menu .sp_nav span:nth-of-type(3) {
    top: 72%;
  }
}
header .inner .menu.view {
  left: 0;
}
header .inner .menu.view::before {
  display: block;
}
header .inner .menu.view nav {
  display: block;
}
header .inner .menu.view .sp_nav span {
  transition: 0.5s;
  -webkit-transition: 0.5s;
}
header .inner .menu.view .sp_nav span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 50%;
}
header .inner .menu.view .sp_nav span:nth-of-type(2) {
  display: none;
}
header .inner .menu.view .sp_nav span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 50%;
}
header.content-header .inner {
  background-color: rgba(13, 17, 28, 0.4);
  padding: 1rem;
}
header.is-fixed .inner {
  background-color: rgba(13, 17, 28, 0.9);
  padding: 1rem;
}

/*-------------------------------
main
---------------------------------*/
.layout_main {
  display: grid;
  grid-template-columns: 260px 880px;
  grid-column-gap: 0px;
  justify-items: flex-start;
  align-items: flex-start;
  background-color: var(--sub-color-light);
  text-align: left;
}
@media screen and (max-width: 767px) {
  .layout_main {
    display: block;
  }
}
.layout_main .gnav {
  background-color: #fff;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .layout_main .gnav {
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 999;
  }
  .layout_main .gnav.open {
    left: 0;
    z-index: 999;
  }
}
.layout_main .gnav ul {
  list-style: none;
}
.layout_main .gnav ul li.btn_db {
  background-color: var(--main-color-dark);
}
.layout_main .gnav ul li.btn_db a {
  color: #fff;
  padding-left: 1rem;
}
@media screen and (max-width: 767px) {
  .layout_main .gnav ul li.btn_db a {
    height: 56px;
  }
}
.layout_main .gnav ul li.btn_top {
  background-color: #eee;
}
.layout_main .gnav ul li.btn_top a {
  padding-left: 1rem;
}
.layout_main .gnav ul li.btn_current {
  background-color: var(--current-color-dark);
}
.layout_main .gnav ul li.btn_current a {
  color: #fff;
}
.layout_main .gnav ul li a {
  display: block;
  padding: 0.8rem 1rem;
  padding-left: 3.5rem;
  text-decoration: none;
  background-repeat: no-repeat;
  background-size: auto 50%;
  background-position: top 50% left 1rem;
  background-blend-mode: multiply;
}
.layout_main .gnav ul li a:hover {
  background-color: var(--sub-color-light);
  color: #fff;
}
.layout_main .gnav ul li a.i_keyword {
  background-image: url(../img/common/icon_keyword.svg);
}
.layout_main .gnav ul li a.i_url {
  background-image: url(../img/common/icon_url.svg);
}
.layout_main .gnav ul li a.i_case {
  background-image: url(../img/common/icon_case.svg);
}
.layout_main .gnav ul li a.i_history {
  background-image: url(../img/common/icon_history.svg);
}
.layout_main .gnav ul li a.i_measurement {
  background-image: url(../img/common/icon_measurement.svg);
}
.layout_main .gnav ul li a.i_setting {
  background-image: url(../img/common/icon_setting.svg);
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.layout_main .content {
  width: 100%;
  padding: 3rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .layout_main .content {
    padding: 1rem;
  }
}

/*-------------------------------
content title
---------------------------------*/
.content_title {
  background-color: var(--main-color-blue-dark);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  height: 26vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .content_title {
    height: 200px;
  }
}
.content_title.content_aboutus {
  background-image: url(../img/common/title_bg_about.webp);
}
.content_title.content_service {
  background-image: url(../img/common/title_bg_service.webp);
  height: 36vw;
}
@media screen and (max-width: 767px) {
  .content_title.content_service {
    height: 200px;
  }
}
.content_title.content_company {
  background-image: url(../img/common/title_bg_company.webp);
}
.content_title.content_company .inner {
  color: var(--main-color-blue-dark);
}
.content_title.content_company .inner .bc a {
  color: var(--main-color-blue-dark);
}
.content_title.content_contact {
  background-image: url(../img/common/title_bg_contact.webp);
}
.content_title.content_contact .inner {
  color: var(--main-color-blue-dark);
}
.content_title.content_contact .inner .bc a {
  color: var(--main-color-blue-dark);
}
.content_title .inner {
  max-width: 90%;
  padding-top: 14vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .content_title .inner {
    padding-top: 120px;
    gap: 20px;
  }
}
.content_title .inner h1 {
  font-size: 2rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .content_title .inner h1 {
    font-size: 1.2rem;
  }
}
.content_title .inner .bc {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .content_title .inner .bc {
    gap: 20px;
  }
}
.content_title .inner .bc a {
  text-decoration: none;
  font-size: 0.8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .content_title .inner .bc a {
    font-size: 0.6rem;
  }
}
.content_title .inner .bc a::after {
  content: ">";
  position: absolute;
  top: 0;
  right: -25px;
  display: block;
}
@media screen and (max-width: 767px) {
  .content_title .inner .bc a::after {
    right: -15px;
  }
}
.content_title .inner .bc a:last-child {
  pointer-events: none;
}
.content_title .inner .bc a:last-child::after {
  display: none;
}
.content_title .inner .snav {
  width: 100%;
  position: absolute;
  bottom: 2rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .content_title .inner .snav {
    display: none;
  }
}
.content_title .inner .snav ul {
  max-width: 1200px;
  margin: auto;
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.content_title .inner .snav ul li {
  width: 100%;
}
.content_title .inner .snav ul li a {
  background-color: #294283;
  color: #fff;
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 1.1rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .content_title .inner .snav ul li a {
    font-size: 0.8rem;
  }
}
.content_title .inner .snav ul li a::after {
  content: "∨";
  display: block;
  position: absolute;
  top: 30%;
  right: 2rem;
  color: #fff;
}

/*-------------------------------
top
---------------------------------*/
.mv {
  background-image: url(../img/index/mv.webp);
  background-repeat: no-repeat;
  background-size: 100% auto;
  height: 44vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv {
    background-image: url(../img/index/mv_sp.webp);
    height: 66vh;
  }
}
.mv .txt {
  position: absolute;
  top: 15vw;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 70vw;
  display: grid;
  grid-template-columns: 20vw 1fr;
  gap: 50px;
  justify-items: flex-start;
  align-items: center;
  margin: auto;
  font-size: clamp(1rem, 0.648rem + 1.502vw, 2rem);
}
@media screen and (max-width: 767px) {
  .mv .txt {
    top: 26vh;
    display: block;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    max-width: 90%;
  }
}
.mv .txt p {
  width: 100%;
  text-align: center;
  letter-spacing: 4px;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .mv .txt p {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 767px) {
  .mv .txt img {
    max-width: 40%;
  }
}

.index-intro {
  padding-top: 6rem;
}
@media screen and (max-width: 767px) {
  .index-intro {
    padding-top: 3rem;
  }
}
.index-intro .inner .title p {
  font-size: clamp(1rem, 0.428rem + 2.441vw, 2.625rem);
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .index-intro .inner .title p {
    font-size: 1.2rem;
  }
}
.index-intro .inner .row {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 26vw;
  gap: 5vw;
  justify-items: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .index-intro .inner .row {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }
}
.index-intro .inner .row .txt ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5vw;
}
.index-intro .inner .row .txt ul li {
  width: 100%;
  background-color: var(--sub-color-ocher);
  padding: 1rem;
  text-align: center;
  font-size: clamp(1rem, 0.846rem + 0.657vw, 1.438rem);
}
@media screen and (max-width: 767px) {
  .index-intro .inner .row .txt ul li {
    font-size: 0.7rem;
    padding: 0.8rem 0;
  }
}
.index-intro .inner .row .txt p {
  margin-top: 4rem;
  line-height: 2.2;
  font-size: clamp(0.8rem, 0.73rem + 0.3vw, 1rem);
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .index-intro .inner .row .txt p {
    font-size: 0.7rem;
    margin-top: 2rem;
    line-height: 1.6;
  }
}
.index-intro .inner .row .txt .btn {
  padding-top: 3rem;
}
.index-intro .inner .row .img {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px 10px;
}
.index-intro .inner .row .img img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .index-intro .inner .row .img img:nth-of-type(2) {
    display: none;
  }
}

.index-service {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .index-service {
    margin-top: 3rem;
  }
}
.index-service .title {
  background-image: url(../img/index/service_bg.webp);
  background-size: cover;
}
.index-service .title .inner {
  padding: 5rem 0;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 50px;
  justify-items: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .index-service .title .inner {
    grid-template-columns: 1fr;
    padding: 2.5rem 0;
    gap: 25px;
  }
}
.index-service .title .inner h2 {
  font-size: clamp(1rem, 0.296rem + 3.005vw, 3rem);
  font-weight: normal;
  letter-spacing: 5px;
}
@media screen and (max-width: 767px) {
  .index-service .title .inner h2 {
    width: 100%;
    text-align: center;
    font-size: 1.4rem;
  }
}
.index-service .title .inner p {
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .index-service .title .inner p {
    font-size: 0.7rem;
  }
}
.index-service .inner {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .index-service .inner {
    margin-top: 2rem;
    padding-bottom: 4rem;
  }
}
.index-service .inner .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  justify-items: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .index-service .inner .row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.index-service .inner .row .col {
  position: relative;
}
.index-service .inner .row .col h3 {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(12, 30, 91, 0.8);
  display: block;
  padding: 2rem;
  font-size: clamp(0.8rem, 0.377rem + 1.803vw, 2rem);
  font-weight: normal;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .index-service .inner .row .col h3 {
    padding: 1rem;
    font-size: 1.1rem;
  }
}
.index-service .inner .row .col h3 span {
  display: block;
  font-size: clamp(0.8rem, 0.8rem + 0vw, 0.8rem);
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .index-service .inner .row .col h3 span {
    margin-top: 0.2rem;
    font-size: 0.6rem;
  }
}
.index-service .inner .row .col h3::after {
  content: ">";
  position: absolute;
  top: 35px;
  right: 20px;
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .index-service .inner .row .col h3::after {
    width: 30px;
    height: 30px;
    top: 1rem;
    right: 1rem;
  }
}
.index-service .inner .row .col p {
  margin-top: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.8rem, 0.73rem + 0.3vw, 1rem);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .index-service .inner .row .col p {
    font-size: 0.7rem;
  }
}
.index-service .inner .row .col a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.index-service .inner .row .col:hover h3 {
  z-index: 1;
}
.index-service .inner .row .col:hover h3::after {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  border: 1px solid #0c1e5b;
  background-color: #0c1e5b;
}
.index-service .inner .row .col:hover .img {
  overflow: hidden;
}
.index-service .inner .row .col:hover .img img {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  transform: scale(1.1);
}
.index-service .inner .btn {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .index-service .inner .btn {
    margin-top: 1.5rem;
  }
}

#aboutus .head {
  margin-top: 6rem;
}
#aboutus .head span {
  font-size: clamp(0.8rem, 0.025rem + 3.305vw, 3rem);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  #aboutus .head span {
    font-size: 1.4rem;
  }
}
#aboutus .head p:nth-of-type(1) {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  #aboutus .head p:nth-of-type(1) {
    margin-top: 2rem;
  }
}
#aboutus .head p:nth-of-type(2) {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  #aboutus .head p:nth-of-type(2) {
    margin-top: 2rem;
  }
}
#aboutus .head .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  justify-items: flex-start;
  align-items: flex-start;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  #aboutus .head .row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
#aboutus .greeting {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  #aboutus .greeting {
    margin-top: 3rem;
  }
}
#aboutus .greeting .inner h2 {
  border-bottom: 2px solid var(--sub-color-ocher);
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
#aboutus .greeting .inner h2 span {
  display: block;
  font-size: clamp(0.8rem, 0.237rem + 2.404vw, 2.4rem);
}
@media screen and (max-width: 767px) {
  #aboutus .greeting .inner h2 span {
    font-size: 1.4rem;
  }
}
#aboutus .greeting .inner .txt > span {
  font-size: clamp(0.8rem, 0.025rem + 3.305vw, 3rem);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  #aboutus .greeting .inner .txt > span {
    font-size: 1.3rem;
  }
}
#aboutus .greeting .inner .txt p {
  line-height: 2;
  margin-top: 2rem;
}
#aboutus .greeting .inner .txt p:nth-of-type(1) {
  font-family: "Noto Sans JP", sans-serif;
}
#aboutus .greeting .inner .txt p.name {
  margin-top: 3rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
  font-size: clamp(0.8rem, 0.237rem + 2.404vw, 2.4rem);
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  #aboutus .greeting .inner .txt p.name {
    font-size: 1.1rem;
    margin-top: 1.5rem;
  }
}
#aboutus .greeting .inner .txt p.name span {
  font-size: clamp(0.8rem, 0.589rem + 0.901vw, 1.4rem);
}

#service h2 {
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 5rem 0;
  margin-top: 5rem;
  margin-bottom: 5rem;
  color: var(--main-color-blue-dark);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #service h2 {
    padding: 2rem 0;
  }
}
#service h2.service01_bg {
  background-image: url(../img/service/service01_bg.webp);
  margin-top: 0;
}
#service h2.service02_bg {
  background-image: url(../img/service/service02_bg.webp);
}
#service h2 .inner {
  font-size: clamp(0.8rem, 0.377rem + 1.803vw, 2rem);
}
#service h2 .inner span {
  display: block;
  font-size: 1rem;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  #service h2 .inner span {
    font-size: 0.6rem;
    margin-top: 0.5rem;
  }
}
#service h3 {
  padding: 1rem 1.5rem;
  font-size: clamp(1rem, 0.718rem + 1.202vw, 1.8rem);
  font-weight: normal;
  background-color: #1f2a4a;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  #service h3 {
    margin-top: 2rem;
    font-size: 0.9rem;
    text-align: center;
  }
}
#service .head > span {
  display: inline-block;
  position: relative;
  font-size: clamp(0.8rem, 0.307rem + 2.103vw, 2.2rem);
}
@media screen and (max-width: 767px) {
  #service .head > span {
    font-size: 1.2rem;
  }
}
#service .head > span::before {
  background-color: var(--sub-color-ocher);
  width: 100%;
  height: 6px;
  line-height: 1;
  display: block;
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  #service .head > span::before {
    height: 2px;
    bottom: -15px;
  }
}
#service .head p {
  margin-top: clamp(2rem, 1.296rem + 3.005vw, 4rem);
}
@media screen and (max-width: 767px) {
  #service .head p {
    font-size: 0.8rem;
    line-height: 1.6;
  }
}
#service .service-fas {
  margin-top: clamp(2rem, 1.296rem + 3.005vw, 4rem);
}
@media screen and (max-width: 767px) {
  #service .service-fas {
    margin-top: 2rem;
  }
}
#service .service-fas .inner .row {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  justify-items: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  #service .service-fas .inner .row {
    grid-template-columns: 1fr;
    margin-top: clamp(2rem, 1.296rem + 3.005vw, 4rem);
  }
}
#service .service-fas .inner .row .col {
  width: 100%;
  background-color: #fff;
}
#service .service-fas .inner .row .col span {
  display: block;
  background-color: #294283;
  padding: 1rem;
  text-align: center;
  font-size: clamp(1rem, 0.859rem + 0.601vw, 1.4rem);
}
#service .service-fas .inner .row .col .img {
  padding: 2rem;
  text-align: center;
}
#service .service-fas .inner .row .col .img img {
  margin: auto;
}
#service .service-fas .inner .row .col .txt {
  background-color: #b3a683;
  padding: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}
#service .service-sales {
  margin-top: clamp(2rem, 1.296rem + 3.005vw, 4rem);
}
#service .service-strengths {
  margin-top: clamp(2rem, 1.296rem + 3.005vw, 4rem);
  text-align: center;
}
#service .service-strengths img {
  margin: auto;
}
#service .service_contents {
  margin-top: clamp(2rem, 1.296rem + 3.005vw, 4rem);
}
#service .service_contents ul {
  list-style: none;
  display: grid;
  grid-auto-rows: 260px;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  justify-items: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  #service .service_contents ul {
    grid-template-columns: 1fr;
    grid-auto-rows: max-content;
    gap: 20px;
  }
}
#service .service_contents ul li {
  background-color: #fff;
  padding: 2rem;
  height: 100%;
}
@media screen and (max-width: 767px) {
  #service .service_contents ul li {
    padding: 1.5rem;
  }
}
#service .service_contents ul li p {
  color: #333;
}
#service .service_contents ul li p:nth-of-type(1) {
  font-size: clamp(1rem, 0.718rem + 1.202vw, 1.8rem);
  line-height: 1;
}
#service .service_contents ul li p:nth-of-type(1) span {
  display: block;
  color: #b8b8b8;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}
#service .service_contents ul li p:nth-of-type(2) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  #service .service_contents ul li p:nth-of-type(2) {
    margin-top: 1.5rem;
  }
}

#company h2 {
  font-size: clamp(1rem, 0.648rem + 1.502vw, 2rem);
  border-bottom: 2px solid var(--sub-color-ocher);
  padding-bottom: 2rem;
  margin-bottom: 4rem;
  letter-spacing: 4px;
}
#company .company-overview {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  #company .company-overview {
    margin-top: 5rem;
  }
}
#company .company-overview .inner {
  position: relative;
}
#company .company-overview .inner::before {
  content: url(../img/company/logo_bg.webp);
  top: -100px;
  right: -40px;
  display: block;
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  #company .company-overview .inner::before {
    content: "";
    top: -1rem;
    right: 10px;
    width: 40%;
    height: 30vw;
    background-image: url(../img/company/logo_bg.webp);
    background-size: 100% 100%;
  }
}
#company .company-overview .inner dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  flex-direction: column;
  font-family: "Noto Sans JP", sans-serif;
}
#company .company-overview .inner dl div {
  background-color: rgba(29, 37, 59, 0.5);
  display: grid;
  grid-template-columns: 15% 1fr;
  gap: 10px;
  justify-items: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 1.5rem;
}
@media screen and (max-width: 767px) {
  #company .company-overview .inner dl div {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 1rem;
  }
}
#company .company-overview .inner dl div dt,
#company .company-overview .inner dl div dd {
  width: 100%;
}
#company .company-access {
  margin-top: 6rem;
}
#company .company-access .inner h2 {
  border: none;
  padding-bottom: 0;
  margin-bottom: 2rem;
}
#company .company-access .map iframe {
  width: 100% !important;
}

#contact .inner h2 {
  margin-top: 6rem;
  font-weight: normal;
  font-size: clamp(1rem, 0.789rem + 0.901vw, 1.6rem);
}
#contact .inner dl {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  flex-direction: column;
  font-family: "Noto Sans JP", sans-serif;
}
#contact .inner dl div {
  background-color: rgba(29, 37, 59, 0.5);
  display: grid;
  grid-template-columns: 20% 1fr;
  gap: 50px;
  justify-items: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 1.5rem;
}
@media screen and (max-width: 767px) {
  #contact .inner dl div {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 1rem;
  }
}
#contact .inner dl div dt,
#contact .inner dl div dd {
  width: 100%;
}
#contact .inner dl div dt {
  position: relative;
}
#contact .inner dl div dt span {
  background-color: var(--sub-color-ocher);
  line-height: 1;
  padding: 2px 5px;
  position: absolute;
  top: 5px;
  right: 0;
  font-size: 0.8rem;
}
#contact .inner dl div dd input[type=text],
#contact .inner dl div dd input[type=tel],
#contact .inner dl div dd input[type=email] {
  width: 100%;
  box-sizing: border-box;
  padding: 1rem;
  background-color: #444c63;
  border: none;
  color: #fff;
  font-size: 1rem;
}
#contact .inner dl div dd textarea {
  width: 100%;
  height: 200px;
  box-sizing: border-box;
  padding: 1rem;
  background-color: #444c63;
  border: none;
  color: #fff;
  font-size: 1rem;
}
#contact .inner .btn {
  margin-top: 2rem;
  text-align: center;
}
#contact .inner .btn input[type=submit] {
  background-color: #273864;
  border: none;
  padding: 1rem;
  width: 100%;
  max-width: 320px;
  color: #fff;
  font-size: clamp(1rem, 0.965rem + 0.15vw, 1.1rem);
}
#contact.thanks .inner {
  text-align: center;
}
#contact.thanks .inner .note {
  margin-top: 2rem;
}

.smf-form {
  margin-top: 2rem;
}
.smf-form .smf-item {
  background-color: #171f33;
  margin-bottom: 0.5rem !important;
}
.smf-form .smf-item .smf-item__col--label {
  position: relative;
  padding: 1rem;
}
.smf-form .smf-item .smf-item__col--label .smf-item__description {
  position: absolute;
  top: 0.8rem;
  right: 0;
  background-color: var(--sub-color-ocher);
  font-size: 0.7rem;
  color: #fff;
  padding: 3px 7px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .smf-form .smf-item .smf-item__col--label .smf-item__description {
    right: 1rem;
  }
}
.smf-form .smf-item .smf-item__col--controls {
  padding: 1rem;
}
.smf-form .smf-item .smf-item__col--controls input[type=text],
.smf-form .smf-item .smf-item__col--controls input[type=tel],
.smf-form .smf-item .smf-item__col--controls input[type=email] {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  background-color: #444c62;
  color: #fff;
  border: none;
}
.smf-form .smf-item .smf-item__col--controls textarea {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  background-color: #444c62;
  color: #fff;
  border: none;
}
.smf-form .smf-item .smf-button-control__control {
  background-color: #283864 !important;
  max-width: 350px !important;
  padding: 1rem !important;
  border: none !important;
  color: #fff !important;
}