@charset "UTF-8";
body {
  max-width: 1170px;
  margin: 0 auto;
  width: 100%;
  color: #262626;
  font-family: Hiragino Sans;
  font-weight: normal;
}
body p {
  text-align: justify;
}
body.menu-open {
  overflow: hidden;
}

/*ヘッダー*/
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  position: relative;
}
header .header-logo {
  margin-top: 0.5rem;
}
header .header-logo img {
  max-width: 450px;
  width: 100%;
}
header .hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  position: absolute;
  right: 1rem;
  top: 20px;
  padding: 0;
}
header .hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #666565;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
}
header .hamburger span:nth-child(2) {
  margin: 6px 0;
}
header .hamburger.active span {
  width: 25px;
}
header .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background-color: white;
}
header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
header .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background-color: white;
}
header .nav-menu ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  gap: 29px;
  margin: 0;
  list-style: none;
}
header .nav-menu ul li {
  list-style: none;
}
header .nav-menu ul li a {
  text-decoration: none;
  color: #7CCBEF;
  transition: color 0.3s ease;
}
header .nav-menu ul li a:hover {
  opacity: 0.7;
}
header .nav-menu ul .header-nav-item.current a {
  color: #00499C;
}

@media (max-width: 499px) {
  body {
    width: 100vw;
  }
  header {
    width: 100vw;
    border-bottom: 1px solid #262626;
  }
  header .header-logo {
    max-width: 100vw;
    margin-top: 5px;
  }
  header .header-logo img {
    width: 80%;
    margin-left: 1rem;
  }
  .hamburger {
    display: flex !important;
  }
  .nav-menu {
    position: fixed;
    padding-top: 30px;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 73, 156, 0.937254902);
    z-index: 1000;
    transition: left 0.3s ease;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-menu.active .header-nav-item a {
    color: white !important;
  }
  .nav-menu.active ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 0;
    margin-left: 4rem;
    justify-content: flex-start;
    margin-top: 10px;
  }
  .nav-menu.active ul li {
    width: 100%;
    padding: 0.5rem;
  }
  .nav-menu.active ul li a {
    display: block;
    padding: 0.5rem 0;
    font-size: 20px;
    color: white;
  }
  .header-nav {
    display: none !important;
  }
  .nav-menu {
    display: none !important;
  }
  .hamburger.active + .nav-menu {
    display: flex !important;
  }
}
h2 {
  font-size: 25px;
  font-weight: normal;
  color: #00499C;
  border-bottom: 2px solid #00499C;
  max-width: 657px;
  width: 100%;
}

.home-link {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  margin-top: 30px;
  display: block;
  text-align: left;
  color: #6076AF;
}

/*トップページ*/
.main-visual-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #262626;
  padding: 50px;
  position: relative;
}
.main-visual-wrapper .transparent-box {
  display: none;
}
.main-visual-wrapper .main-visual-text {
  max-width: 479px;
  width: 100%;
}
.main-visual-wrapper .main-visual-text h1 {
  font-size: 25px;
  font-weight: normal;
  color: #00499C;
  position: absolute;
  top: 0;
  left: 0;
  padding: 50px 50px 50px 50px;
  line-height: 1.2;
}
.main-visual-wrapper .main-visual-text p {
  font-size: 16px;
  color: #262626;
  margin-top: 60px;
}
.main-visual-wrapper .main-visual-text .navy-text {
  color: #00499C;
}
.main-visual-wrapper .main-visual {
  display: block;
  align-items: center;
  position: relative;
}
.main-visual-wrapper .main-visual img {
  max-width: 482px;
  width: 100%;
}
.main-visual-wrapper .main-visual .main-visual-inner-img a {
  max-width: 482px;
  width: 100%;
}
.main-visual-wrapper .main-visual .main-visual-inner-img img {
  max-width: 482px;
  width: 100%;
}
.main-visual-wrapper .main-visual .information {
  position: absolute;
  bottom: 1.2rem;
  right: 0;
}
.main-visual-wrapper .main-visual .information p {
  font-size: 16px;
}

.main-content-wrapper .main-content-item {
  margin-top: 30px;
}
.main-content-wrapper .main-content-item .main-content-item-img {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 44px;
}
.main-content-wrapper .main-content-item img {
  max-width: 360px;
  width: 100%;
}
.main-content-wrapper .main-content-item a:hover img {
  opacity: 0.6;
}
.main-content-wrapper .main-content-item a:hover p {
  z-index: 5;
}
.main-content-wrapper .inner01 {
  position: relative;
}
.main-content-wrapper .inner01 p {
  color: white;
  background-color: rgba(73, 188, 239, 0.5);
  position: absolute;
  bottom: 7px;
  left: 0;
  text-align: center;
  max-width: 360px;
  width: 100%;
  font-size: 25px;
}
.main-content-wrapper .inner02 {
  position: relative;
}
.main-content-wrapper .inner02 p {
  color: white;
  background-color: rgba(73, 188, 239, 0.5);
  position: absolute;
  bottom: 7px;
  left: 0;
  text-align: center;
  max-width: 360px;
  width: 100%;
  font-size: 25px;
}
.main-content-wrapper .inner03 {
  position: relative;
}
.main-content-wrapper .inner03 p {
  color: white;
  background-color: rgba(73, 188, 239, 0.5);
  position: absolute;
  bottom: 7px;
  left: 0;
  text-align: center;
  max-width: 360px;
  width: 100%;
  font-size: 25px;
}

.sp-information {
  display: none;
}

@media (max-width: 499px) {
  body {
    max-width: none;
    width: 100vw;
    position: relative;
    overflow-x: hidden;
    margin: 0 auto;
  }
  body .main-visual-wrapper {
    max-width: none;
    width: 100vw;
    flex-direction: column;
    border: none;
    padding: 0 1rem;
    position: relative;
  }
  body .main-visual-wrapper .transparent-box {
    display: block;
    width: 100%;
    height: 360px;
    background-color: transparent;
    opacity: 0.5;
  }
  body .main-visual-wrapper .main-visual {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
  }
  body .main-visual-wrapper .main-visual .main-visual-inner-logo {
    width: 50%;
    margin-left: 50%;
    transform: translateX(-50%);
  }
  body .main-visual-wrapper .main-visual .information {
    display: none;
  }
  body .main-visual-wrapper .main-visual .main-visual-inner-img img {
    width: 100vw;
    height: auto;
    margin-top: 0;
  }
  body .main-visual-wrapper .main-visual-text {
    width: 100vw;
    padding: 0 1rem;
  }
  body .main-visual-wrapper .main-visual-text h1 {
    padding: 0;
    position: relative;
    font-size: 16px;
    z-index: 10;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.802);
  }
  body .main-visual-wrapper .main-visual-text h1 br {
    display: none;
  }
  body .main-visual-wrapper .main-visual-text p {
    margin-top: 20px;
    position: relative;
    z-index: 10;
  }
  body .main-content-wrapper .main-content-item {
    display: block;
  }
  body .main-content-wrapper .main-content-item .main-content-item-img {
    flex-direction: column;
    gap: 20px;
  }
  body .main-content-wrapper .main-content-item .main-content-item-img p {
    font-size: 18px;
  }
  body .main-content-wrapper .main-content-item .main-content-item-img .inner01 {
    max-width: 80%;
  }
  body .main-content-wrapper .main-content-item .main-content-item-img .inner02 {
    max-width: 80%;
  }
  body .main-content-wrapper .main-content-item .main-content-item-img .inner03 {
    max-width: 80%;
  }
  body .sp-information {
    width: 90%;
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-top: 20px;
    margin-left: 50%;
    transform: translateX(-50%);
    justify-content: center;
  }
  body .sp-information p {
    font-size: 16px;
    white-space: nowrap;
    margin-left: 2rem;
    padding: 1rem 0;
  }
  body .sp-information::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #262626;
    display: block;
  }
  body .sp-information::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #262626;
    display: block;
  }
}
/*会社概要*/
.company-wrapper {
  margin: 50px auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.company-wrapper .company-item {
  max-width: 657px;
  width: 100%;
}
.company-wrapper .company-item-list {
  display: flex;
  color: #262626;
  margin-top: 10px;
}
.company-wrapper .company-item-list01 {
  display: flex;
  border-top: 1px solid #262626;
  padding-top: 10px;
}
.company-wrapper dt {
  max-width: 130px;
  width: 100%;
}
.company-wrapper .company-map {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}
.company-wrapper .company-map .map {
  width: 657px;
  height: 450px;
}
.company-wrapper .company-map .map-address {
  margin-top: 20px;
  color: #666565;
}

@media screen and (max-width: 499px) {
  .under-line {
    display: none;
  }
  .company-wrapper {
    width: 100vw;
    padding: 0 1rem;
    font-size: 13px;
    margin-top: 30px;
  }
  .company-wrapper .company-item dd {
    margin-left: -2.5rem;
  }
  .company-wrapper .company-map .map {
    width: 100vw;
    height: 300px;
    padding: 0 1rem;
  }
  .company-wrapper .company-map .map-address {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  .company-wrapper .company-map .map-address p {
    font-size: 15px;
  }
}
/*商品案内*/
.product-wrapper {
  margin-top: 80px;
  position: relative;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
.product-wrapper::before, .product-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 5;
  pointer-events: none;
}
.product-wrapper::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.8), transparent);
}
.product-wrapper::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.8), transparent);
}
.product-wrapper .carousel {
  position: relative;
  overflow: visible;
  width: calc(100% + 200px);
  margin-left: -100px;
  display: flex;
  gap: 30px;
  white-space: nowrap;
  transition: transform 0.3s ease;
}
.product-wrapper .carousel .product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 340px;
  width: 100%;
  border: 1px solid #6076AF;
  padding: 30px 30px 100px 30px;
  position: relative;
}
.product-wrapper .carousel .product-item img {
  max-width: 240px;
  width: 100%;
  margin-top: 1.5rem;
}
.product-wrapper .carousel .product-item.fds img {
  margin-top: 3rem;
}
.product-wrapper .carousel .product-item.pm img {
  margin-top: 3rem;
}
.product-wrapper .carousel .title {
  font-size: 20px;
  font-weight: bold;
  color: #00499C;
  text-align: center;
  line-height: 1.2;
  width: 300px;
}
.product-wrapper .carousel .title span {
  font-size: 15px;
  font-weight: normal;
}
.product-wrapper .carousel .view-product {
  font-size: 16px;
  color: #00499C;
  text-decoration: none;
  display: flex;
  text-transform: uppercase;
  border-bottom: 4px solid #00499C;
  padding: 10px 20px 20px 20px;
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
}
.product-wrapper .carousel .view-product p {
  margin-left: 60px;
  letter-spacing: 0.8em;
  font-weight: bold;
}
.product-wrapper .carousel .view-product:hover {
  background-color: #00499C;
  color: white;
}
.product-wrapper .carousel .view-product:hover p {
  color: white;
}
.product-wrapper .contact-btn {
  margin: 50px 0 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.product-wrapper .contact-btn a {
  color: #6076AF;
  font-size: 15px;
  font-weight: normal;
  text-decoration: none;
}
.product-wrapper .contact-btn a:hover {
  color: #00499C;
}
.product-wrapper .contact-btn .btn {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: normal;
  background-color: #00499C;
  padding: 20px 30px;
  letter-spacing: 0.2em;
}
.product-wrapper .contact-btn .btn:hover {
  background-color: #6076AF;
  color: white;
}
.product-wrapper .contact-btn .btn.fk-fkl-fl {
  margin-top: 10px;
  color: white;
}

@media screen and (max-width: 499px) {
  .product-wrapper {
    margin-top: -20px;
    max-width: 100vw;
    padding: 0 1rem;
  }
  .product-wrapper::before, .product-wrapper::after {
    display: none;
  }
  .product-wrapper .carousel {
    gap: 0;
    margin-left: 0;
    overflow: visible;
    width: 100vw;
    justify-content: flex-start;
  }
  .product-wrapper .carousel .carousel-item {
    flex-shrink: 0;
    width: 340px;
  }
  .product-wrapper .carousel .product-item {
    max-width: 100vw;
    padding: 20px 1rem;
    scale: 0.8;
    padding: 10px 10px 50px 10px;
  }
  .product-wrapper .carousel .product-item img {
    scale: 0.8;
  }
}
.carousel-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 10;
}
.carousel-nav .prev,
.carousel-nav .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  border: none;
  color: #00499C;
  cursor: pointer;
  padding: 10px;
  font-size: 18px;
  border-radius: 50%;
  border: 1px solid #00499C;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  pointer-events: auto;
}
.carousel-nav .prev:hover,
.carousel-nav .next:hover {
  background-color: #00499C;
  color: white;
}
.carousel-nav .prev {
  left: 20px;
}
.carousel-nav .next {
  right: 20px;
}
.carousel-nav .contact-btn {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.carousel-nav .contact-btn a {
  color: #6076AF;
  font-size: 15px;
  font-weight: normal;
  text-decoration: none;
}
.carousel-nav .contact-btn a:hover {
  color: #00499C;
}
.carousel-nav .contact-btn .btn {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: normal;
  background-color: #00499C;
  padding: 20px 30px;
  letter-spacing: 0.2em;
}
.carousel-nav .contact-btn .btn:hover {
  background-color: #6076AF;
  color: white;
}

@media screen and (max-width: 499px) {
  .carousel-nav .prev,
.carousel-nav .next {
    top: auto;
    bottom: 90px;
  }
  .carousel-nav .prev {
    left: 100px;
  }
  .carousel-nav .next {
    right: 100px;
  }
}
/*お問い合せフォーム*/
.contact-wrapper {
  margin-top: 50px;
  background-color: #EFF3F8;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-wrapper p {
  font-size: 15px;
}
.contact-wrapper .text-form {
  margin-top: 50px;
  color: #262626;
  background-color: #fff;
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.contact-wrapper .text-form .top-line {
  width: 100%;
  height: 2px;
  background-color: #00499C;
  margin-top: -50px;
}
.contact-wrapper .text-form .text {
  width: 100%;
  margin-top: -60px;
  padding-bottom: 30px;
  padding-top: 25px;
}
.contact-wrapper .text-form .text h2 {
  border-bottom: none;
  color: #262626;
  margin-top: 20px;
  margin-left: 40px;
}
.contact-wrapper .text-form .text .lead {
  color: #666565;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  left: 0;
  width: 100%;
  margin-top: 0;
  padding: 0 40px;
}
.contact-wrapper .text-form .wpcf7-form-control-wrap {
  display: flex;
  max-width: 657px;
  width: 100%;
}
.contact-wrapper .text-form .wpcf7-form-control-wrap input {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px 0;
  border: none;
  border-bottom: 2px solid #00499C;
  background-color: #EFF3F8;
  max-width: 200px;
  width: 100%;
  max-height: 38px;
  height: 100%;
  margin-bottom: 25px;
}
.contact-wrapper .text-form .wpcf7-form-control-wrap input option {
  font-size: 18px;
}
.contact-wrapper .text-form .wpcf7-form-control-wrap select {
  max-width: 200px;
  width: 100%;
  max-height: 52px;
  height: 100%;
  margin-bottom: 25px;
  background-color: #EFF3F8;
  border: none;
  border-bottom: 2px solid #00499C;
  color: #00499C;
  padding: 5px 22px;
}
.contact-wrapper .text-form .wpcf7-form-control-wrap textarea {
  max-width: 420px !important;
  width: 420px !important;
  height: 200px !important;
  resize: vertical;
  border: none;
  border-bottom: 2px solid #00499C;
  background-color: #EFF3F8;
  padding: 10px;
  box-sizing: border-box;
}
.contact-wrapper .text-form table {
  margin-top: -20px;
}
.contact-wrapper .text-form table tbody {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 40px;
  max-width: 500px;
  width: 100%;
}
.contact-wrapper .text-form table tbody .text-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  flex: 1 1 100%;
  min-width: 100%;
}
.contact-wrapper .text-form table tbody .text-contact .wpcf7-form-control-wrap {
  max-width: 500px;
  width: 100%;
  flex: 1 1 100%;
  position: relative;
}
.contact-wrapper .text-form table tbody .text-contact .wpcf7-form-control-wrap input {
  max-width: 500px;
  width: 100%;
  max-height: 150px;
  height: 100%;
}
.contact-wrapper .text-form table tbody .wpcf7-not-valid-tip {
  display: flex;
  position: absolute;
  top: 0.8rem;
  left: 0.5rem;
}
.contact-wrapper .text-form table tbody .your-adress {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact-wrapper .text-form table tbody .your-adress .wpcf7-form-control-wrap input {
  max-width: 320px;
  width: 100%;
  max-height: 38px;
  height: 100%;
  padding: 25px 5px;
}
.contact-wrapper .text-form table tr {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact-wrapper .text-form table tr td {
  display: flex;
}
.contact-wrapper .text-form table th {
  font-weight: normal;
  display: inline-block;
  margin-right: 9px;
  color: #00499C;
}
.contact-wrapper .text-form table th span {
  color: red;
}
.contact-wrapper .send-button {
  display: flex;
  justify-content: flex-start;
  margin-left: 40px;
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
}
.contact-wrapper .send-button .wpcf7-form-control.wpcf7-submit {
  color: #00499C;
  border: none;
  background-color: transparent;
  display: inline-block;
  font-size: 16px;
  text-align: flex-start;
  padding: 15px 246px 15px 10px;
  cursor: pointer;
}
.contact-wrapper .send-button .wpcf7-form-control.wpcf7-submit:hover {
  color: white;
  background-color: #00499C;
}
.contact-wrapper .send-button .wpcf7-spinner {
  display: none;
}
.contact-wrapper .send-button .under-line {
  max-width: 420px;
  height: 2px;
  background-color: #00499C;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 499px) {
  .contact-wrapper {
    padding: 0 1rem;
    margin-top: 0;
    background-color: transparent;
  }
  .contact-wrapper .top-line {
    display: none;
  }
  .contact-wrapper .text-form {
    margin-top: 10px;
    max-width: 100vw;
  }
  .contact-wrapper .text-form .text {
    margin-top: -40px;
  }
  .contact-wrapper .text-form .text .lead {
    padding: 0 1rem;
    margin-top: 0;
  }
  .contact-wrapper .text-form .text h2 {
    margin-left: 1rem;
    margin-top: 10px;
  }
  .contact-wrapper .text-form table {
    max-width: 100vw;
    width: 100%;
  }
  .contact-wrapper .text-form table tbody {
    padding: 0 30px;
  }
  .contact-wrapper .text-form table tbody th {
    font-size: 13px;
  }
  .contact-wrapper .text-form table tbody .your-adress .wpcf7-form-control-wrap input {
    max-width: 197px;
    width: 100%;
    padding: 20px 0;
  }
  .contact-wrapper .text-form table tbody .text-contact {
    max-width: 100vw;
    width: 100%;
  }
  .contact-wrapper .text-form table tbody .text-contact .wpcf7-form-control-wrap textarea {
    width: 312px !important;
    height: 150px !important;
  }
  .contact-wrapper .text-form .wpcf7-form-control-wrap input {
    max-width: 150px;
    width: 100%;
    padding: 20px 0;
  }
  .contact-wrapper .text-form .wpcf7-form-control-wrap select {
    margin-bottom: 15px;
    padding: 4px 15px;
  }
  .contact-wrapper .text-form .wpcf7-form {
    width: 100vw;
  }
  .contact-wrapper .send-button .wpcf7-form-control.wpcf7-submit {
    padding: 15px 10px;
    padding-right: 138px;
  }
  .contact-wrapper .under-line {
    display: block;
    max-width: 301px !important;
  }
}
.confirmation-wrapper {
  margin-top: 10px;
}
.confirmation-wrapper .lead {
  font-size: 18px;
  font-weight: bold;
  color: #00499C;
  border-bottom: 2px solid #00499C;
}
.confirmation-wrapper table {
  margin-top: 20px;
}
.confirmation-wrapper table tr {
  height: 40px;
}
.confirmation-wrapper table th {
  font-weight: normal;
  display: inline-block;
  margin-right: 9px;
  background-color: #f0f0f0;
  padding: 3px;
}
.confirmation-wrapper table td {
  display: inline-block;
}
.confirmation-wrapper .title {
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
  border-bottom: 2px solid #262626;
}
.confirmation-wrapper .wpcf7-previous {
  margin-top: 20px;
  color: #6076AF;
  background-color: transparent;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-size: 16px;
  text-align: center;
  border-bottom: 1px solid #6076AF;
}
.confirmation-wrapper .wpcf7-previous:hover {
  color: #00499C;
}
.confirmation-wrapper .send {
  margin-top: 20px;
}
.confirmation-wrapper .send .send-text {
  font-size: 16px;
}
.confirmation-wrapper .send input {
  max-width: 307px;
  width: 100%;
  background-color: #00499C;
  color: white;
  border: none;
  padding: 16px 0;
  border-radius: 2px;
  cursor: pointer;
  font-size: 25px;
  text-align: center;
}
.confirmation-wrapper .send input:hover {
  background-color: #00499C;
}

@media screen and (max-width: 499px) {
  .confirmation-wrapper {
    max-width: 100vw;
    width: 100%;
    padding: 0 1rem;
  }
  .confirmation-wrapper .lead {
    font-weight: normal;
  }
}
.thanks-wrapper {
  margin-top: 50px;
}
.thanks-wrapper .thanks-text {
  margin-top: 50px;
}
.thanks-wrapper .thanks-text p {
  font-size: 15px;
}
.thanks-wrapper a {
  color: #262626;
  font-size: 16px;
}
.thanks-wrapper .back-to-top {
  color: #6076AF;
  font-size: 16px;
  text-decoration: none;
  border-bottom: 1px solid #6076AF;
  margin-top: 40px;
  display: inline-block;
}
.thanks-wrapper .back-to-top:hover {
  color: #00499C;
}

@media screen and (max-width: 499px) {
  .thanks-wrapper {
    margin-top: 10px;
    max-width: 100vw;
    width: 100%;
    padding: 0 1rem;
    height: 100vh;
  }
  .thanks-wrapper .thanks-text {
    margin-top: 10px;
  }
}
/*沿革*/
.history-wrapper {
  margin-top: 30px;
}
.history-wrapper img {
  max-width: 1170px;
  width: 100%;
  margin-top: -20px;
}
.history-wrapper h2 {
  border-bottom: none;
}
.history-wrapper p {
  opacity: 0;
}
.history-wrapper .certificate h3 {
  font-size: 18px;
  font-weight: normal;
}
.history-wrapper .certificate dl {
  display: flex;
  font-size: 15px;
}
.history-wrapper .certificate a {
  margin-left: 10px;
  color: #262626;
  font-size: 15px;
}
.history-wrapper .certificate a:hover {
  opacity: 0.7;
}
.history-wrapper .text-03 {
  opacity: 1;
  font-size: 15px;
  margin: 20px 0;
}
.history-wrapper .home-link {
  color: #6076AF;
  font-size: 18px;
}
.history-wrapper .home-link:hover {
  color: #00499C;
}

.certificate-wrapper {
  max-width: 1170px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.certificate-wrapper img {
  max-width: 1000px;
  width: 100%;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.certificate-wrapper .ehedgfl-img {
  margin-top: 20px;
}
.certificate-wrapper .ehedg-img {
  max-width: 900px;
}
.certificate-wrapper .home-link {
  color: #6076AF;
  font-size: 18px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.certificate-wrapper .home-link:hover {
  color: #00499C;
}
.certificate-wrapper .home-link.ehedgflii {
  bottom: 0;
}

.under-line {
  width: 100%;
  height: 1px;
  background-color: #959595;
  margin-top: 40px;
}

@media screen and (max-width: 499px) {
  .history-wrapper {
    margin-top: 10px;
    padding: 0 1rem;
  }
  .history-wrapper p {
    opacity: 1;
    font-size: 13px;
  }
  .history-wrapper h2 {
    font-size: 18px;
  }
  .history-wrapper .history-img {
    overflow-x: auto;
    margin-top: 10px;
  }
  .history-wrapper .history-img img {
    width: 600px;
  }
  .history-wrapper .certificate {
    margin-top: 20px;
  }
  .history-wrapper .certificate h3 {
    font-size: 16px;
  }
  .certificate-wrapper {
    padding: 1rem 1rem 2.5rem 1rem;
  }
  .certificate-wrapper .home-link {
    font-size: 16px;
    padding-left: 1rem;
  }
}
/*about*/
.about-wrapper {
  margin-top: 30px;
}
.about-wrapper h2 {
  border-bottom: none;
  color: #00499C;
  font-size: 25px;
  font-weight: normal;
  padding: 10px;
}
.about-wrapper .about-inner01 {
  margin-bottom: 50px;
}
.about-wrapper .about-inner01 h3 {
  font-size: 35px;
  font-weight: 500;
  color: #00499C;
  text-align: center;
  background-color: #EFF3F8;
  padding: 8px 0;
}
.about-wrapper .about-inner01 h3 br {
  display: none;
}
.about-wrapper .about-inner01 .about-img img {
  width: 100%;
}
.about-wrapper .about-inner01 .about-text {
  font-size: 16px;
  padding: 20px;
  line-height: 1.5;
}
.about-wrapper .about-inner01 .about-text .second-line {
  margin-top: 1rem;
}
.about-wrapper .about-inner02 {
  display: flex;
  width: 100%;
  border-top: 1px solid #262626;
  border-bottom: 1px solid #262626;
  margin-bottom: 20px;
  margin-top: -45px;
}
.about-wrapper .about-inner02 img {
  max-width: 50%;
}
.about-wrapper .about-inner02 .about-inner02-text {
  margin-left: 20px;
}
.about-wrapper .about-inner02 .about-inner02-text h4 {
  font-size: 30px;
  font-weight: normal;
  color: #00499C;
  padding: 8px 0;
  line-height: 1.3;
}
.about-wrapper .about-inner02 .about-inner02-text p {
  margin-top: 20px;
  font-size: 16px;
}

@media screen and (max-width: 499px) {
  .about-wrapper {
    margin-top: auto;
  }
  .about-wrapper h2 {
    font-size: 18px;
    padding-left: 1rem;
  }
  .about-wrapper .about-inner01 h3 {
    font-size: 20px;
    text-align: left;
    padding: 0 1rem;
    margin-bottom: 10px;
  }
  .about-wrapper .about-inner01 h3 br {
    display: block;
  }
  .about-wrapper .about-inner01 .about-text {
    margin-top: 0;
    padding: 0 1rem;
  }
  .about-wrapper .about-inner01 .about-text .second-line {
    margin-top: 1rem;
  }
  .about-wrapper .about-inner02 {
    flex-direction: column;
    border: none;
    margin-top: 0;
  }
  .about-wrapper .about-inner02 img {
    max-width: 100%;
    margin-top: -30px;
  }
  .about-wrapper .about-inner02 .about-inner02-text {
    margin-top: 10px;
  }
  .about-wrapper .about-inner02 .about-inner02-text h4 {
    font-size: 20px;
    text-align: left;
    line-height: 1.4;
  }
  .about-wrapper .about-inner02 .about-inner02-text p {
    margin-top: 10px;
    padding-right: 1rem;
  }
}
/*海外拠点*/
.abroad-wrapper {
  margin-top: 30px;
}
.abroad-wrapper .abroad-top {
  border: 1px solid #262626;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
  position: relative;
}
.abroad-wrapper .abroad-top img {
  max-width: 600px;
  width: 100%;
  height: auto;
}
.abroad-wrapper .abroad-top h2 {
  border-bottom: none;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
}
.abroad-wrapper .abroad-top .red-icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: red;
}
.abroad-wrapper .abroad-top .abroad-top-text {
  font-size: 18px;
  font-weight: normal;
  color: #6076AF;
}
.abroad-wrapper .abroad-top .red-and-text {
  display: flex;
  align-items: center;
  gap: 5px;
  position: absolute;
  top: 55px;
  left: 20px;
  z-index: 1;
}
.abroad-wrapper .abroad-item .inner01 {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 30px;
}
.abroad-wrapper .abroad-item .inner01 .japan {
  display: flex;
  max-width: 700px;
  width: 100%;
  justify-content: center;
}
.abroad-wrapper .abroad-item .inner01 .japan img {
  max-width: 385px;
  width: 100%;
  margin-left: 10px;
}
.abroad-wrapper .abroad-item .inner01 .japan img:hover {
  opacity: 0.7;
}
.abroad-wrapper .abroad-item .inner01 .japan::before {
  content: url(../img/jp-flag.png);
}
.abroad-wrapper .abroad-item .inner01 .germany {
  display: flex;
  align-items: flex-start;
  max-width: 700px;
  width: 100%;
}
.abroad-wrapper .abroad-item .inner01 .germany .germany-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.abroad-wrapper .abroad-item .inner01 .germany .germany-text p {
  font-size: 15px;
  color: #666565;
  white-space: nowrap;
  line-height: 1.3;
}
.abroad-wrapper .abroad-item .inner01 .germany .germany-text p span {
  font-size: 15px;
  color: #262626;
  font-weight: bold;
}
.abroad-wrapper .abroad-item .inner01 .germany .germany-text a {
  color: #262626;
  text-decoration: none;
  font-size: 23px;
  font-weight: bold;
  max-width: 385px;
  width: 100%;
  white-space: nowrap;
}
.abroad-wrapper .abroad-item .inner01 .germany .germany-text a:hover {
  opacity: 0.7;
}
.abroad-wrapper .abroad-item .inner01 .germany::before {
  content: url(../img/gm-flag.png);
  margin-right: 10px;
}
.abroad-wrapper .abroad-item .inner02 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  width: 100%;
  margin: 50px auto;
  margin-bottom: 70px;
}
.abroad-wrapper .abroad-item .inner02 h6 {
  font-size: 18px;
  display: block;
  color: #6076AF;
  font-weight: normal;
  border-bottom: 2px solid #6076AF;
  margin-top: 30px;
  width: 100%;
}
.abroad-wrapper .abroad-item .inner02 .abroad-list-01 {
  max-width: 525px;
  width: 100%;
  display: flex;
  list-style: none;
  justify-content: space-between;
  margin-top: 10px;
}
.abroad-wrapper .abroad-item .inner02 .abroad-list-02 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5rem;
}
.abroad-wrapper .abroad-item .inner02 .abroad-list-02 .abroad-list {
  list-style: none;
  max-width: 500px;
  width: 100%;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  justify-content: space-between;
  line-height: 1.5;
}
.abroad-wrapper .abroad-item .inner02 .abroad-list-02 .abroad-list li {
  display: flex;
  white-space: nowrap;
}
.abroad-wrapper .abroad-item .inner02 .abroad-list-02 .abroad-list.second {
  margin-top: calc(1.5rem + 10px);
}
.abroad-wrapper .abroad-item .inner02 .abroad-list-02 .abroad-list.third {
  margin-top: calc(1.5rem + 10px);
}
.abroad-wrapper .abroad-item .inner02 .abroad-list-02 .abroad-list .china {
  margin-top: calc(5rem + 10px + 0.8rem);
}
.abroad-wrapper .abroad-item .inner02 .abroad-list-02 .abroad-list .japan {
  margin-top: calc(5rem + 10px + 0.8rem);
}
.abroad-wrapper .abroad-item .inner02 .abroad-list-02 .category {
  color: #666565;
  font-size: 16px;
  margin-left: -1rem;
  margin-top: 0.4rem;
}
.abroad-wrapper .abroad-item .inner02 .abroad-list-02 .category.au {
  margin-top: -0.3rem;
}

@media screen and (max-width: 499px) {
  .abroad-wrapper {
    padding: 0 1rem;
    margin-top: 10px;
  }
  .abroad-wrapper .abroad-top {
    padding: 10px 0 10px 2rem;
  }
  .abroad-wrapper .abroad-top img {
    max-width: 200px;
  }
  .abroad-wrapper .abroad-top h2 {
    top: 0;
    left: 5px;
  }
  .abroad-wrapper .abroad-top .red-and-text {
    top: 25px;
    left: 5px;
  }
  .abroad-wrapper .abroad-top .abroad-top-text {
    font-size: 13px;
  }
  .abroad-wrapper .abroad-item .inner01 {
    flex-direction: column;
    padding: 0 0.5rem;
  }
  .abroad-wrapper .abroad-item .inner01 .japan img {
    width: 95%;
    margin-left: 0;
  }
  .abroad-wrapper .abroad-item .inner01 .japan::before {
    display: inline-block;
    scale: 0.8;
    -o-object-fit: contain;
       object-fit: contain;
    margin-top: -5px;
  }
  .abroad-wrapper .abroad-item .inner01 .germany .germany-text p {
    font-size: 11px;
  }
  .abroad-wrapper .abroad-item .inner01 .germany .germany-text p span {
    font-size: 11px;
  }
  .abroad-wrapper .abroad-item .inner01 .germany .germany-text a {
    font-size: 13px;
  }
  .abroad-wrapper .abroad-item .inner01 .germany::before {
    display: inline-block;
    scale: 0.8;
    margin-right: 5px;
    margin-top: -5px;
  }
  .abroad-wrapper .abroad-item .inner02 {
    margin-top: auto;
    margin-top: 15px;
  }
  .abroad-wrapper .abroad-item .inner02 h6 {
    font-size: 16px;
    margin-top: 10px;
  }
  .abroad-wrapper .abroad-item .inner02 .abroad-list-01 {
    padding: 0 1rem;
    margin-left: -0.8rem;
    justify-content: space-around;
  }
  .abroad-wrapper .abroad-item .inner02 .abroad-list-01 li {
    font-size: 15px;
  }
  .abroad-wrapper .abroad-item .inner02 .abroad-list-02 {
    gap: 0;
    justify-content: space-around;
  }
  .abroad-wrapper .abroad-item .inner02 .abroad-list-02 .abroad-list li {
    font-size: 15px;
  }
  .abroad-wrapper .abroad-item .inner02 .abroad-list-02 .abroad-list .china {
    margin-top: calc(5rem + 10px + 0.4rem);
  }
  .abroad-wrapper .abroad-item .inner02 .abroad-list-02 .abroad-list .japan {
    margin-top: calc(5rem + 10px + 0.4rem);
  }
}
.home-link {
  color: #6076AF;
  font-size: 18px;
}
.home-link:hover {
  color: #00499C;
}

/*フッター*/
footer {
  margin-top: 50px;
  margin-bottom: 30px;
}
footer .footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .footer-copyright p {
  color: #959595;
  font-size: 18px;
}
footer .footer-nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  color: #959595;
  gap: 15px;
}
footer .footer-nav ul a {
  text-decoration: none;
  color: #959595;
  white-space: nowrap;
}
footer .footer-nav ul a:hover {
  color: #262626;
}

@media screen and (max-width: 899px) {
  footer {
    padding: 0 1rem;
  }
  footer .footer-nav ul {
    gap: 10px;
  }
  footer .footer-nav ul li a {
    font-size: 13px;
    white-space: nowrap;
  }
  footer .footer-copyright p {
    font-size: 15px;
  }
}
@media screen and (max-width: 499px) {
  footer .screen-only {
    display: none;
  }
  footer .footer-wrapper {
    flex-direction: column;
    position: relative;
    border-top: 1px solid #959595;
    padding-bottom: 30px;
    margin-top: 40px;
  }
  footer .footer-wrapper .footer-copyright {
    position: absolute;
    bottom: 0;
  }
  footer .footer-wrapper .footer-copyright p {
    font-size: 15px;
  }
  footer .footer-wrapper .footer-nav {
    padding-top: 20px;
  }
  footer .footer-wrapper .footer-nav ul {
    gap: 20px;
  }
}
.preparation-wrapper {
  margin-top: 30px;
  background-color: #f0f0f0;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.preparation-wrapper h2 {
  font-size: 25px;
  font-weight: normal;
  color: #262626;
  border-bottom: none;
}

/*商品詳細*/
.single-products .top-image {
  border: 1px solid #00499C;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.single-products .top-image .box {
  background-color: #00499C;
  color: white;
  max-height: 520px;
  height: 100%;
  padding: 22% 10px;
  text-align: center;
  max-width: 533px;
  width: 100%;
}
.single-products .top-image .box h5 {
  font-size: 25px;
  margin-top: -50px;
  font-weight: normal;
}
.single-products .top-image .box h5 br {
  display: none;
}
.single-products .top-image .box.fk-fkl-fl h5 br {
  display: inline-block;
}
.single-products .top-image .box .fz-h5 br {
  display: inline-block;
}
.single-products .top-image .box p {
  font-size: 15px;
  text-align: center;
}
.single-products .top-image .box p br {
  display: none;
}
.single-products .top-image img {
  padding: 50px 140px 30px 30px;
}
.single-products .top-image .pm-img {
  width: 100%;
  padding: 40px 130px 30px 30px;
}
.single-products .undersmall {
  font-size: 9px;
}
.single-products .inner-1 {
  padding: 1rem;
}
.single-products .inner-1 p {
  font-size: 18px;
  line-height: 1.5;
  color: #00499C;
  margin-top: 20px;
}
.single-products .inner-1 ul {
  list-style: none;
  font-size: 18px;
  margin-top: 30px;
  margin-left: 1rem;
}
.single-products .inner-1 ul li {
  margin-top: 20px;
}
.single-products .inner-1 ul li .icon {
  width: 15px;
  height: 15px;
  background-color: #00499C;
  display: inline-block;
  margin-right: 10px;
}
.single-products .inner-1 ul li .bold {
  font-weight: bold;
}
.single-products .inner-1 .variations {
  display: flex;
  justify-content: space-between;
}
.single-products .inner-1 .variations .variations-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.single-products .inner-1 .variations .variations-text p {
  font-size: 18px;
  color: #262626;
  margin-left: 1rem;
}
.single-products .inner-1 .variations .variations-text p .icon {
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-right: 10px;
  background-color: #7CCBEF;
}
.single-products .inner-1 .variations .variations-text ul {
  margin-top: 10px;
}
.single-products .inner-1 .variations .variations-text ul li {
  margin-top: 10px;
}
.single-products .inner-1 .fz-app p {
  color: #262626;
  font-size: 18px;
  margin: 30px 0;
  margin-left: 1rem;
  line-height: 1.1;
}
.single-products .inner-1 .fz-app p .bold {
  font-weight: bold;
}
.single-products .inner-1 .fz-app p .icon {
  width: 15px;
  height: 15px;
  background-color: #00499C;
  display: inline-block;
  margin-right: 10px;
}
.single-products .inner-1 .inner-pm {
  display: grid;
  grid-template-columns: 490px 300px 300px;
  gap: 1rem;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}
.single-products .inner-1 .inner-pm p {
  color: #262626;
  font-size: 18px;
  margin: 30px 0;
  margin-left: 1rem;
  line-height: 1.1;
  max-width: 600px;
  width: 100%;
  line-height: 1.5;
}
.single-products .inner-1 .inner-pm p .bold {
  font-weight: bold;
}
.single-products .inner-1 .inner-pm p .icon {
  width: 15px;
  height: 15px;
  background-color: #00499C;
  display: inline-block;
  margin-right: 10px;
}
.single-products .inner-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 1000px;
  width: 100%;
  margin-top: 20px;
}
.single-products .inner-2 img {
  max-width: 550px;
  width: 100%;
  margin-top: 30px;
}
.single-products .inner-2 .img-2 {
  width: 100%;
  height: auto;
}
.single-products .inner-2-fk-fkl-fl {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 50%;
  transform: translateX(-50%);
}
.single-products .inner-2-fk-fkl-fl img {
  max-width: 600px;
}
.single-products .inner-2.fl {
  margin-top: -40px;
}
.single-products .inner-2.fl p {
  margin-left: 1.8rem;
}
.single-products .inner-2.fds {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}
.single-products .inner-2.fds .fds-img {
  width: 100%;
  display: flex;
  justify-content: center;
}
.single-products .inner-2.fds .fds-img img {
  max-width: 900px;
  width: 100%;
}
.single-products .inner-2.fds .graph.fds {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 50%;
  transform: translateX(-50%);
}
.single-products .inner-2.fds .graph.fds img {
  margin-top: 20px;
}
.single-products .inner-2.fds .graph.fds .graph-text {
  margin-left: -1rem;
}
.single-products .graph-text {
  position: absolute;
  top: 0;
  left: 2rem;
  color: #262626;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.5;
}
.single-products .graph-img {
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: 1170px;
  width: 100%;
  margin-top: -30px;
}
.single-products .graph-img img {
  max-width: 500px;
  width: 100%;
}
.single-products .inner-2-pm ul {
  list-style: none;
  font-size: 18px;
  margin-top: -50px;
  margin-left: 2rem;
  padding-right: 1rem;
}
.single-products .inner-2-pm ul li {
  margin-top: 20px;
}
.single-products .inner-2-pm ul li .icon {
  width: 15px;
  height: 15px;
  background-color: #00499C;
  display: inline-block;
  margin-right: 10px;
}
.single-products .inner-2-pm ul li .bold {
  font-weight: bold;
}
.single-products .inner-2.fsp {
  max-width: 1170px;
  width: 100%;
  display: flex;
  padding: 0 3rem;
  align-items: flex-start;
}
.single-products .inner-2.fsp img {
  margin-top: auto;
}
.single-products .inner-2.fsp p {
  margin-left: -80px;
  padding-right: 2rem;
  font-size: 18px;
}
.single-products .inner-2.fsp p .over {
  display: none;
}
.single-products .inner-3 {
  padding: 1rem;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #EFF3F8;
  position: relative;
}
.single-products .inner-3 h6 {
  font-size: 25px;
  color: #00499C;
  font-weight: normal;
}
.single-products .inner-3 table {
  border-collapse: collapse;
  max-width: 835px;
  width: 100%;
}
.single-products .inner-3 table td {
  border: solid 1px #00499C;
  color: #262626;
  font-size: 18px;
  font-weight: normal;
  text-align: center;
  padding: 10px;
  width: 50%;
}
.single-products .inner-3 table.pm {
  max-width: 1000px;
}
.single-products .inner-3 table.pm td {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.single-products .inner-3 table .navy {
  color: #00499C;
}
.single-products .inner-3 .contact-btn {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
}
.single-products .inner-3 .contact-btn a {
  color: #6076AF;
  font-size: 15px;
  font-weight: normal;
  text-decoration: none;
}
.single-products .inner-3 .contact-btn a:hover {
  color: #00499C;
}
.single-products .inner-3 .contact-btn .btn {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: normal;
  background-color: #00499C;
  padding: 20px 30px;
  margin-top: -20px;
  letter-spacing: 0.2em;
}
.single-products .inner-3 .contact-btn .btn:hover {
  background-color: #6076AF;
  color: white;
}
.single-products .inner-3 .contact-btn .btn.fk-fkl-fl {
  margin-top: 10px;
}
.single-products .inner-3 .back-to-product {
  margin-top: 40px;
}
.single-products .inner-3 .back-to-product a {
  color: #6076AF;
  font-size: 15px;
  font-weight: normal;
  position: absolute;
  bottom: 20px;
  left: 4rem;
}
.single-products .inner-3 .back-to-product a:hover {
  color: #00499C;
}
.single-products .inner-3 .back-to-product.fk-fkl-fl {
  position: absolute;
  bottom: 115px;
  left: 28rem;
  white-space: nowrap;
}
.single-products .inner-3.fsp {
  background-color: white;
}
.single-products .fz-sactionlift {
  margin-top: 40px;
  margin-bottom: 40px;
}
.single-products .fz-sactionlift h6 {
  font-size: 25px;
  font-weight: normal;
}
.single-products .fz-sactionlift h6 span {
  margin-left: 23rem;
}
.single-products .fz-sactionlift table {
  border-collapse: collapse;
  width: 100%;
}
.single-products .fz-sactionlift table td {
  border: solid 1px #262626;
  color: #262626;
  font-size: 18px;
  padding: 10px;
  text-align: center;
}
.single-products .fz-sactionlift table .blue {
  background-color: #EFF3F8;
}
.single-products .inpage-jump {
  max-width: 150px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 20px auto;
  margin-left: 50%;
  transform: translateX(-50%);
}
.single-products .inpage-jump a {
  color: #6076AF;
  font-size: 15px;
  font-weight: normal;
}
.single-products .inpage-jump a:hover {
  color: #00499C;
}

/*スマホ用商品詳細ページ*/
@media screen and (max-width: 499px) {
  .single-products {
    margin: 0 auto;
  }
  .single-products .top-image {
    border: none;
    border-bottom: 1px solid #00499C;
  }
  .single-products .top-image .box {
    padding: 55px 20px;
  }
  .single-products .top-image .box h5 {
    font-size: 16px;
    white-space: nowrap;
    line-height: 1.3;
    margin-top: 0;
  }
  .single-products .top-image .box h5 br {
    display: inline-block;
  }
  .single-products .top-image .box p {
    font-size: 9px;
    white-space: nowrap;
  }
  .single-products .top-image .box p br {
    display: inline-block;
  }
  .single-products .top-image .box .fz-h5 {
    white-space: nowrap;
  }
  .single-products .top-image .box.fz {
    padding: 50px 20px;
  }
  .single-products .top-image.fk-fkl-fl {
    border-top: 1px solid #00499C;
  }
  .single-products .top-image.fk-fkl-fl img {
    padding: 0 35px 0px 30px;
  }
  .single-products .top-image .box.fk-fkl-fl {
    padding: 70px 30px;
  }
  .single-products .top-image .box.fk-fkl-fl h5 {
    white-space: wrap;
    margin-top: -20px;
    line-height: 1.1;
  }
  .single-products .top-image .box.fk-fkl-fl p {
    margin-top: 5px;
  }
  .single-products .top-image.fds {
    height: 180px;
  }
  .single-products .top-image.fds img {
    padding: 40px 30px 20px 30px;
    width: 85%;
  }
  .single-products .top-image .box.fds {
    padding: 60px 20px;
  }
  .single-products .top-image .box.fds h5 {
    margin-top: 0;
  }
  .single-products .top-image.pm {
    padding: 0;
    height: 180px;
  }
  .single-products .top-image.pm img {
    padding: 20px 30px 0px 30px;
    height: auto;
  }
  .single-products .top-image.fsp {
    height: 180px;
  }
  .single-products .top-image.fsp img {
    padding: 10px 30px 0px 30px;
    width: 98%;
  }
  .single-products .top-image img {
    padding: 20px 30px 0px 30px;
  }
  .single-products .inner-1 {
    padding: 0 1rem;
  }
  .single-products .inner-1 .lead {
    font-size: 15px;
  }
  .single-products .inner-1 ul {
    font-size: 15px;
    padding: 0;
    margin-left: auto;
  }
  .single-products .inner-1 .fz-app p {
    font-size: 15px;
    line-height: 1;
  }
  .single-products .inner-1 .inner-pm {
    grid-template-columns: 1fr;
  }
  .single-products .inner-1 .inner-pm p {
    font-size: 15px;
  }
  .single-products .inner-1 .inner-pm img {
    margin-top: -60px;
  }
  .single-products .fz-sactionlift {
    padding: 0 1rem;
    overflow-x: scroll;
    margin-top: 10px;
  }
  .single-products .fz-sactionlift h6 {
    font-size: 18px;
  }
  .single-products .fz-sactionlift h6 span {
    margin-left: 1rem;
  }
  .single-products .fz-sactionlift table td {
    font-size: 15px;
  }
  .single-products .fz-sactionlift::after {
    content: "横にスクロールできます";
    display: inline-block;
    width: 100%;
    height: 1px;
    font-size: 11px;
    margin-top: 10px;
  }
  .single-products .inner-2 {
    padding: 0 1rem;
  }
  .single-products .inner-2 .graph-img {
    flex-direction: column;
  }
  .single-products .inner-2 .graph-img .img-2 {
    margin-top: auto;
  }
  .single-products .inner-2-fk-fkl-fl {
    width: 100vw;
    padding: 0 1rem;
    margin-top: 20px;
  }
  .single-products .inner-2-fk-fkl-fl img {
    width: 100%;
  }
  .single-products .inner-2-fk-fkl-fl p {
    font-size: 13px;
  }
  .single-products .inner-2.fds {
    max-width: 100vw;
    width: 100%;
    padding: 0 1rem;
    margin: 0 auto;
  }
  .single-products .inner-2.fds .fds-img {
    margin-left: 1rem;
  }
  .single-products .inner-2.fds .graph.fds {
    max-width: 100vw;
    width: 100%;
    padding: 0 1rem;
  }
  .single-products .inner-2.fds .graph.fds p {
    font-size: 15px;
    left: 145px;
    top: -20px;
  }
  .single-products .inner-2.fds .graph.fds img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    margin-left: 100px;
  }
  .single-products .inner-2-pm {
    margin-top: 40px;
  }
  .single-products .inner-2-pm ul li {
    font-size: 15px;
  }
  .single-products .inner-2.fsp {
    width: 100vw;
    padding: 0 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .single-products .inner-2.fsp p {
    font-size: 15px;
    margin-left: 0;
    padding: 0;
  }
  .single-products .inner-2.fsp p .left {
    display: none;
  }
  .single-products .inner-2.fsp p .over {
    display: inline-block;
  }
  .single-products .inner-2.fsp img {
    margin-top: 0;
  }
  .single-products .inner-3 {
    padding: 1rm 1rem;
  }
  .single-products .inner-3 h6 {
    font-size: 18px;
  }
  .single-products .inner-3 table td {
    font-size: 15px;
  }
  .single-products .inner-3.fsp {
    margin-top: 0;
  }
  .single-products .inner-3 .contact-btn {
    margin-top: 20px;
  }
  .single-products .inner-3 .contact-btn .btn {
    font-size: 15px;
    padding: 10px 20px;
  }
  .single-products .inner-3 .back-to-product a {
    font-size: 15px;
    bottom: 10px;
    left: 1rem;
  }
  .single-products .inner-3 .back-to-product.fk-fkl-fl {
    bottom: 10px;
    left: 6rem;
  }
  /*共通要素用*/
  h2 {
    font-size: 18px;
  }
  .home-link {
    font-size: 13px;
    max-width: calc(100vw - 2rem);
    width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */