@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

img, picture, svg {
  max-width: 100%;
  width: 100%;
  vertical-align: top;
}

ol, ul {
  list-style: none;
}

a:focus {
  outline: none;
}

sup {
  font-size: .6em;
  vertical-align: super;
}

sub {
  font-size: .6em;
  vertical-align: sub;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1;
  color: #000;
  background: #fff;
}

a {
  text-decoration: none;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

header {
  position: relative;
  padding: 26px 10px 24px;
  font-weight: 500;
  border-bottom: solid 1px #8f8f8f;
}

@media screen and (max-width: 767px) {
  header {
    padding: 13px 10px 10px;
  }
}

header .inner {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

header .logo {
  margin: 2px auto 0 0;
}

@media screen and (max-width: 767px) {
  header .logo {
    width: 168px;
  }
}

header .logo img {
  width: 190px;
}

header .inquiry a {
  display: block;
  width: 120px;
  padding: 5px 0 6px;
  font-size: 14px;
  text-align: center;
  background: #000;
}

header .inquiry a::after {
  display: inline-block;
  content: "";
  width: 9px;
  height: 7px;
  margin: 0 0 1px 6px;
  background: url(../img/icon_link.png) left top/contain no-repeat;
}

header .lang {
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  header .lang {
    margin-right: 10px;
  }
}

header .lang a {
  font-size: 14px;
  line-height: 25px;
  color: #000;
}

header nav ul {
  display: flex;
  justify-content: center;
  column-gap: 3.125vw;
  margin-top: 2.44792vw;
}

@media screen and (max-width: 767px) {
  header nav ul {
    column-gap: 8vw;
    margin-top: 5.33333vw;
  }
}

header nav ul li a {
  display: block;
  position: relative;
  padding-bottom: 0.88542vw;
  font-size: 1.04167vw;
  color: #000;
}

@media screen and (max-width: 767px) {
  header nav ul li a {
    padding-bottom: 1.6vw;
    font-size: 2.66667vw;
  }
}

@media screen and (min-width: 768px) {
  header nav ul li a::after {
    content: "";
    display: block;
    width: 0;
    height: 4px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    transition: width 0.3s;
  }
  header nav ul li a:hover::after {
    width: 90px;
  }
}

footer {
  padding: 1.875vw 0 6.25vw;
  background: #000;
}

@media screen and (max-width: 767px) {
  footer {
    padding: 20px 0 60px;
  }
}

footer .inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 82.8125vw;
  margin: 0 auto;
  font-size: 0.72917vw;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  footer .inner {
    justify-content: center;
    max-width: inherit;
    font-size: 12px;
  }
}

footer ul li {
  display: inline-block;
  padding: 0 1em;
  border-left: 1px solid #fff;
}

footer ul li:first-child {
  border: none;
}

footer ul li a:hover {
  text-decoration: underline;
}

footer p {
  padding: 0 1em;
  font-family: "Roboto Condensed", "Noto Sans JP", sans-serif;
  font-size: 0.83333vw;
  text-align: right;
  color: #fff;
}

@media screen and (max-width: 767px) {
  footer p {
    margin-top: 15px;
    font-size: 14px;
  }
}

main {
  text-align: center;
}

#benefit {
  position: relative;
  font-weight: 900;
  color: #fff;
}

#benefit::before {
  content: "";
  display: block;
  width: 100%;
  height: 18.22917vw;
  position: absolute;
  top: 0;
  left: 0;
  background: #0e3654;
}

@media screen and (max-width: 767px) {
  #benefit::before {
    height: 44vw;
  }
}

#benefit .inner {
  position: relative;
  width: 82.8125vw;
  margin: 0 auto 6.25vw;
  padding-top: 3.48958vw;
}

@media screen and (max-width: 767px) {
  #benefit .inner {
    width: auto;
    margin-bottom: 16vw;
    padding-top: 8.93333vw;
  }
}

#benefit h2 {
  font-size: 2.1875vw;
}

@media screen and (max-width: 767px) {
  #benefit h2 {
    font-size: 6vw;
  }
}

#benefit ol {
  display: flex;
  justify-content: space-between;
  margin-top: 3.125vw;
}

@media screen and (max-width: 767px) {
  #benefit ol {
    display: block;
    margin-top: 8vw;
  }
}

#benefit ol li {
  width: 19.79167vw;
  padding: 2.34375vw 0 1.97917vw;
  font-size: 1.25vw;
  font-weight: 500;
  line-height: 1.66667;
  background: #94b9c7;
}

@media screen and (max-width: 767px) {
  #benefit ol li {
    width: 60vw;
    margin: 0 auto 3.2vw;
    padding: 6vw 0 5.06667vw;
    font-size: 3.46667vw;
  }
}

#benefit ol strong {
  display: block;
  margin-bottom: 1.14583vw;
  font-size: 1.875vw;
  line-height: 1;
  color: #0e3654;
}

@media screen and (max-width: 767px) {
  #benefit ol strong {
    margin-bottom: 2.93333vw;
    font-size: 5.06667vw;
  }
}

#total_support {
  width: 82.8125vw;
  margin: 0 auto 2.60417vw;
  padding: 0 4.42708vw 4.01042vw;
  background: #f3f5f5;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}

@media screen and (max-width: 767px) {
  #total_support {
    width: auto;
    margin-bottom: 6.66667vw;
    padding: 0 3.33333vw 6.66667vw;
    border-width: 1px;
  }
}

#total_support h3 {
  margin: 0 -4.42708vw;
  padding: 2.1875vw 0;
  font-size: 1.77083vw;
  font-weight: 900;
  color: #0e3654;
  background: #ebedee;
}

@media screen and (max-width: 767px) {
  #total_support h3 {
    margin: 0 -3.33333vw;
    padding: 5.6vw 0;
    font-size: 4.8vw;
  }
}

#total_support .lead {
  margin: 1.5625vw 0 2.08333vw;
  font-size: 1.14583vw;
  line-height: 1.63636;
  color: #595d63;
}

@media screen and (max-width: 767px) {
  #total_support .lead {
    margin: 5.33333vw 0 6.66667vw;
    font-size: 4vw;
  }
}

#total_support figure {
  position: relative;
  padding-bottom: 2.60417vw;
}

@media screen and (max-width: 767px) {
  #total_support figure {
    padding-bottom: 6.66667vw;
  }
}

#total_support figure::after {
  content: "";
  display: block;
  width: 2px;
  height: 2.60417vw;
  position: absolute;
  bottom: 0;
  left: calc(50% - 1px);
  background: #0e3654;
}

@media screen and (max-width: 767px) {
  #total_support figure::after {
    width: 1px;
    height: 6.66667vw;
  }
}

#total_support .support {
  padding: 2.39583vw 2.5vw 2.76042vw;
  background: #ebedee;
  border: 2px solid #0e3654;
}

@media screen and (max-width: 767px) {
  #total_support .support {
    padding: 3.73333vw 2.4vw 2.66667vw;
    border-width: 1px;
  }
}

#total_support .support p {
  font-size: 1.25vw;
  color: #0e3654;
}

@media screen and (max-width: 767px) {
  #total_support .support p {
    font-size: 4vw;
    line-height: 1.5;
  }
}

#total_support .support ul {
  display: flex;
  justify-content: space-between;
  margin-top: 1.66667vw;
}

@media screen and (max-width: 767px) {
  #total_support .support ul {
    display: block;
    margin-top: 4.26667vw;
  }
}

#total_support .support li {
  width: 38.54167vw;
  transition: opacity .3s;
}

@media screen and (max-width: 767px) {
  #total_support .support li {
    width: auto;
    margin-top: 2.66667vw;
  }
}

#total_support .support li:last-child {
  width: 27.60417vw;
}

@media screen and (max-width: 767px) {
  #total_support .support li:last-child {
    width: auto;
  }
}

#total_support .support li:hover {
  opacity: .7;
}

#nlx {
  position: relative;
  margin-bottom: 2.70833vw;
  color: #fff;
  background: #080d10;
}

@media screen and (max-width: 767px) {
  #nlx {
    margin-bottom: 6.93333vw;
    padding-bottom: 3.33333vw;
  }
}

#nlx > div {
  position: absolute;
  top: 0;
  left: 50%;
  width: 38.02083vw;
  margin: 4.84375vw 0 0 1.97917vw;
}

@media screen and (max-width: 767px) {
  #nlx > div {
    position: relative;
    left: 0;
    width: auto;
    margin: 0;
  }
}

#nlx h1 {
  font-size: 1.66667vw;
  font-weight: 900;
  line-height: 1.75;
}

@media screen and (max-width: 767px) {
  #nlx h1 {
    margin-top: 4.8vw;
    font-size: 4.26667vw;
    line-height: 1.4375;
  }
}

#nlx p {
  margin-top: 3.4375vw;
  font-size: 1.14583vw;
  line-height: 1.90909;
  text-align: left;
}

@media screen and (max-width: 767px) {
  #nlx p {
    margin: 4.26667vw 3.33333vw 0;
    font-size: 3.73333vw;
    line-height: 1.5;
  }
}

#nlx a {
  display: block;
  position: absolute;
  bottom: 5.3125vw;
  left: 50%;
  transform: translateX(-50%);
  width: 34.42708vw;
  transition: opacity .3s;
}

@media screen and (max-width: 767px) {
  #nlx a {
    top: 41.86667vw;
    bottom: auto;
    width: 88.13333vw;
  }
}

#nlx a:hover {
  opacity: .7;
}

#products {
  text-align: left;
}

#products h2 {
  width: 82.8125vw;
  margin: 0 auto 2.60417vw;
  padding: 2.44792vw;
  font-size: 2.08333vw;
  background: linear-gradient(to bottom, #fff 0%, #f1f1f1 100%);
}

@media screen and (max-width: 767px) {
  #products h2 {
    width: 93.33333vw;
    margin: 0 auto 4.8vw;
    padding: 3.33333vw;
    font-size: 4.8vw;
  }
}

#products ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2.1875vw;
  width: 82.8125vw;
  margin: 0 auto;
  padding: 0 0.3125vw 0.41667vw 0;
}

@media screen and (max-width: 767px) {
  #products ul {
    display: block;
    width: auto;
    padding: 0 0 2.4vw;
  }
}

#products ul a {
  display: block;
  width: 26.04167vw;
  margin-bottom: 3.02083vw;
  padding: 0.98958vw;
  color: #000;
  background: #fff;
  border: 1px solid #000;
  box-shadow: 0.3125vw 0.41667vw 0 0 #d4d9dc;
}

@media screen and (max-width: 767px) {
  #products ul a {
    width: 66.66667vw;
    margin: 0 auto 5.33333vw;
    padding: 2.66667vw;
    box-shadow: 1.06667vw 1.33333vw 0 0 #d4d9dc;
  }
}

#products ul a:hover figure img {
  transform: scale(1.15);
}

#products figure {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 460/290;
}

#products figure img {
  transition: transform .5s;
}

#products dl {
  margin-top: 1.04167vw;
  background: #f1f2f2;
}

@media screen and (max-width: 767px) {
  #products dl {
    margin-top: 2.66667vw;
  }
}

#products dl dt {
  height: 4.58333vw;
  padding: 0.78125vw 0.52083vw 0 1.45833vw;
  font-size: 1.35417vw;
  line-height: 1.30769;
}

@media screen and (max-width: 767px) {
  #products dl dt {
    height: 11.73333vw;
    padding: 2vw 1.33333vw 0 3.73333vw;
    font-size: 3.46667vw;
  }
}

#products dl dt small {
  font-size: 1.25vw;
}

@media screen and (max-width: 767px) {
  #products dl dt small {
    font-size: 3.2vw;
  }
}

#products dl dd {
  height: 4.27083vw;
  padding: 0 0.52083vw 1.35417vw 1.5625vw;
  font-size: 0.9375vw;
  font-weight: 600;
  line-height: 1.72222;
}

@media screen and (max-width: 767px) {
  #products dl dd {
    height: 10.93333vw;
    padding: 0 1.33333vw 3.46667vw 4vw;
    font-size: 2.66667vw;
  }
}

#products .ftbtn {
  position: sticky;
  bottom: 0;
  left: 0;
  padding: 3.38542vw 0;
  text-align: center;
  background: #ebedee;
}

@media screen and (max-width: 767px) {
  #products .ftbtn {
    padding: 8vw 0;
  }
}

#products .ftbtn a {
  display: block;
  width: 34.42708vw;
  margin: 0 auto;
  transition: opacity .3s;
}

@media screen and (max-width: 767px) {
  #products .ftbtn a {
    width: 88.13333vw;
  }
}

#products .ftbtn a:hover {
  opacity: .7;
}
