/*----------------------------------------------------------------
HTML Elements
----------------------------------------------------------------*/
body {
  padding-top: 50px;
  background: -webkit-gradient(linear, left top, left bottom, from(#5b9aff), to(#333265)) top left/10px 100% no-repeat, #fff -webkit-gradient(linear, left top, left bottom, from(#5b9aff), to(#333265)) top right/10px 100% no-repeat;
  background: -webkit-linear-gradient(top, #5b9aff 0%, #333265 100%) top left/10px 100% no-repeat, #fff -webkit-linear-gradient(top, #5b9aff 0%, #333265 100%) top right/10px 100% no-repeat;
  background: linear-gradient(to bottom, #5b9aff 0%, #333265 100%) top left/10px 100% no-repeat, #fff linear-gradient(to bottom, #5b9aff 0%, #333265 100%) top right/10px 100% no-repeat;
  font-size: 1.4rem;
}

/*----------------------------------------------------------------
Common Classes
----------------------------------------------------------------*/
.inner {
  width: 92%;
  margin: 0 auto;
}

.pc {
  display: none;
}

/*----------------------------------------------------------------
Page Header
----------------------------------------------------------------*/
.page-header {
  position: fixed;
  left: 10px;
  top: 0;
  z-index: 2000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100% - 20px);
  height: 50px;
  padding: 5px 10px;
  background-color: #fff;
}
.page-header h1 img {
  height: 40px;
}

.page-header-toggle {
  position: relative;
  width: 40px;
  aspect-ratio: 1;
}
.page-header-toggle::before, .page-header-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 40px;
  height: 4px;
  background-color: #3c77ba;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.page-header-toggle::before {
  -webkit-transform: translateY(-10px) rotate(0deg);
          transform: translateY(-10px) rotate(0deg);
}
.page-header-toggle::after {
  -webkit-transform: translateY(6px) rotate(0deg);
          transform: translateY(6px) rotate(0deg);
}

#page-header-toggle:checked ~ .page-header-toggle::before {
  -webkit-transform: translateY(-2px) rotate(-675deg);
          transform: translateY(-2px) rotate(-675deg);
}
#page-header-toggle:checked ~ .page-header-toggle::after {
  -webkit-transform: translateY(-2px) rotate(675deg);
          transform: translateY(-2px) rotate(675deg);
}

.page-header-nav {
  position: fixed;
  right: 0;
  top: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 0%;
  max-height: calc(100vh - 50px);
  background-color: #fff;
  overflow: hidden;
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
}

#page-header-toggle:checked ~ .page-header-nav {
  width: 100%;
  padding: 10px 4%;
}

.page-header-nav-default,
.page-header-nav-hover {
  width: 48%;
  margin-bottom: 20px;
  padding: 5px;
  text-align: center;
}
.page-header-nav-default > a,
.page-header-nav-hover > a {
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  word-break: keep-all;
}

.page-header-nav-default > a {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.page-header-nav-default > a:hover, .page-header-nav-default > a:active, .page-header-nav-default > a.current {
  color: #3c77ba;
}

.page-header-nav-hover {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}

.page-header-nav-inner {
  margin-top: 10px;
  padding: 10px;
  background-color: #3c77ba;
  color: #fff;
}
.page-header-nav-inner ul li {
  position: relative;
  padding-left: 15px;
  text-align: left;
}
.page-header-nav-inner ul li:nth-of-type(n+2) {
  margin-top: 10px;
}
.page-header-nav-inner ul li::before, .page-header-nav-inner ul li::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 4px;
  background-color: #fff;
}
.page-header-nav-inner ul li::before {
  top: 8px;
  left: 0;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: skewX(45deg);
          transform: skewX(45deg);
}
.page-header-nav-inner ul li::after {
  top: 12px;
  left: 0;
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transform: skewX(-45deg);
          transform: skewX(-45deg);
}
.page-header-nav-inner ul li a {
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  word-break: keep-all;
}

.page-header-nav-inquiry {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
  width: 100%;
}

.page-header-nav-inquiry {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-header-nav-inquiry a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 180px;
  height: 40px;
  border: 1px solid #3c77ba;
  border-radius: 20px;
  background-color: #3c77ba;
  text-decoration: none;
  font-weight: 700;
  word-break: keep-all;
  color: #fff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.page-header-nav-inquiry a::before {
  content: "";
  width: 20px;
  height: 16px;
  margin-right: 10px;
  border-radius: 1px;
  background: transparent url(../img/icon_mail_off.svg) 0 0 no-repeat;
}
.page-header-nav-inquiry a:hover, .page-header-nav-inquiry a:active {
  background-color: #fff;
  color: #3c77ba;
}
.page-header-nav-inquiry a:hover::before, .page-header-nav-inquiry a:active::before {
  background-image: url(../img/icon_mail_on.svg);
}

/*----------------------------------------------------------------
Jumbotron
----------------------------------------------------------------*/
.top-jumbotron {
  position: relative;
  width: 100%;
  height: calc(100vh - 50px);
  margin-bottom: 100px;
}

.top-jumbotron-text {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  z-index: 1100;
}
.top-jumbotron-text .header-group {
  font-weight: 300;
  /* font-size: 4.8rem; */
  font-size: 4rem;
}
.top-jumbotron-text .header-group::after {
  font-size: 1.4rem;
  font-weight: 400;
}

.top-jumbotron-image {
  width: 100%;
  height: 100%;
}

.top-jumbotron-image-inner {
  width: 100%;
  height: calc(100vh - 50px);
}
.top-jumbotron-image-inner img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.top-jumbotron-scroll {
  position: absolute;
  left: 15px;
  bottom: 110px;
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  padding-right: 40px;
  background: -webkit-linear-gradient(45deg, transparent 0%, transparent calc(50% - 0.5px), #fff calc(50% - 0.5px), #fff calc(50% + 0.5px), transparent calc(50% + 0.5px), transparent 100%) top 4px right/6px 6px no-repeat, -webkit-linear-gradient(135deg, transparent 0%, transparent calc(50% - 0.5px), #fff calc(50% - 0.5px), #fff calc(50% + 0.5px), transparent calc(50% + 0.5px), transparent 100%) bottom 3px right/6px 6px no-repeat, transparent -webkit-linear-gradient(top, #fff 0%, #fff 100%) center right/30px 1px no-repeat;
  background: linear-gradient(45deg, transparent 0%, transparent calc(50% - 0.5px), #fff calc(50% - 0.5px), #fff calc(50% + 0.5px), transparent calc(50% + 0.5px), transparent 100%) top 4px right/6px 6px no-repeat, linear-gradient(-45deg, transparent 0%, transparent calc(50% - 0.5px), #fff calc(50% - 0.5px), #fff calc(50% + 0.5px), transparent calc(50% + 0.5px), transparent 100%) bottom 3px right/6px 6px no-repeat, transparent linear-gradient(to bottom, #fff 0%, #fff 100%) center right/30px 1px no-repeat;
  text-transform: uppercase;
  font-size: 1.2rem;
  color: #fff;
  -webkit-animation: 2s scroll both infinite;
          animation: 2s scroll both infinite;
  will-change: transform;
}

.top-jumbotron-title {
  position: absolute;
  z-index: 1010;
  width: 90%;
  font-size: 8vw;
  font-family: "Yu Mincho", "YuMincho";
  top: 40vw;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: rotate(90deg) translateX(0px);
            transform: rotate(90deg) translateX(0px);
  }
  50% {
    -webkit-transform: rotate(90deg) translateX(10px);
            transform: rotate(90deg) translateX(10px);
  }
  100% {
    -webkit-transform: rotate(90deg) translateX(0px);
            transform: rotate(90deg) translateX(0px);
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: rotate(90deg) translateX(0px);
            transform: rotate(90deg) translateX(0px);
  }
  50% {
    -webkit-transform: rotate(90deg) translateX(10px);
            transform: rotate(90deg) translateX(10px);
  }
  100% {
    -webkit-transform: rotate(90deg) translateX(0px);
            transform: rotate(90deg) translateX(0px);
  }
}
/*----------------------------------------------------------------
Top Template
----------------------------------------------------------------*/
.top-grid h2 {
  margin-bottom: 20px;
  font-size: 3.2rem;
}
.top-grid h2::after {
  font-size: 2.4rem;
}
.top-grid nav a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  color: #3c77ba;
}
.top-grid nav a span {
  position: relative;
  width: 50px;
  aspect-ratio: 1;
  margin-left: 10px;
  border-radius: 50%;
  border: 1px solid #3c77ba;
  background: -webkit-linear-gradient(45deg, transparent 0%, transparent calc(50% - 1.4px), #fff calc(50% - 1.4px), #fff calc(50% + 1.4px), transparent calc(50% + 1.4px), transparent 100%) left 24px top 19px/6px 6px no-repeat, -webkit-linear-gradient(135deg, transparent 0%, transparent calc(50% - 1.4px), #fff calc(50% - 1.4px), #fff calc(50% + 1.4px), transparent calc(50% + 1.4px), transparent 100%) left 24px bottom 19px/6px 6px no-repeat, #3c77ba -webkit-linear-gradient(bottom, #fff 0%, #fff 100%) center/12px 2px no-repeat;
  background: linear-gradient(45deg, transparent 0%, transparent calc(50% - 1.4px), #fff calc(50% - 1.4px), #fff calc(50% + 1.4px), transparent calc(50% + 1.4px), transparent 100%) left 24px top 19px/6px 6px no-repeat, linear-gradient(-45deg, transparent 0%, transparent calc(50% - 1.4px), #fff calc(50% - 1.4px), #fff calc(50% + 1.4px), transparent calc(50% + 1.4px), transparent 100%) left 24px bottom 19px/6px 6px no-repeat, #3c77ba linear-gradient(to top, #fff 0%, #fff 100%) center/12px 2px no-repeat;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.top-grid nav a:hover span {
  background: -webkit-linear-gradient(45deg, transparent 0%, transparent calc(50% - 1.4px), #3c77ba calc(50% - 1.4px), #3c77ba calc(50% + 1.4px), transparent calc(50% + 1.4px), transparent 100%) left 24px top 19px/6px 6px no-repeat, -webkit-linear-gradient(135deg, transparent 0%, transparent calc(50% - 1.4px), #3c77ba calc(50% - 1.4px), #3c77ba calc(50% + 1.4px), transparent calc(50% + 1.4px), transparent 100%) left 24px bottom 19px/6px 6px no-repeat, #fff -webkit-linear-gradient(bottom, #3c77ba 0%, #3c77ba 100%) center/12px 2px no-repeat;
  background: linear-gradient(45deg, transparent 0%, transparent calc(50% - 1.4px), #3c77ba calc(50% - 1.4px), #3c77ba calc(50% + 1.4px), transparent calc(50% + 1.4px), transparent 100%) left 24px top 19px/6px 6px no-repeat, linear-gradient(-45deg, transparent 0%, transparent calc(50% - 1.4px), #3c77ba calc(50% - 1.4px), #3c77ba calc(50% + 1.4px), transparent calc(50% + 1.4px), transparent 100%) left 24px bottom 19px/6px 6px no-repeat, #fff linear-gradient(to top, #3c77ba 0%, #3c77ba 100%) center/12px 2px no-repeat;
}

.top-grid-text {
  margin: 0 20px 25px;
}
.top-grid-text dl {
  margin-bottom: 25px;
}
.top-grid-text dt {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 700;
}

.top-business,
.top-company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin-bottom: 90px;
}

.top-business figure {
  margin: 0 20px;
}

.top-products {
  margin-bottom: 100px;
}

.top-products-list {
  margin-bottom: 20px;
  overflow-x: scroll;
}
.top-products-list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  /* width: 250%; */
  width: 350%;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}
.top-products-list li {
  /* width: 20%; */
}
.top-products-list li a {
  position: relative;
  display: block;
  position: relative;
  display: block;
  text-decoration: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 100px 5px;
  background-color: #ecf4fc;
  border: solid 20px #e3f1fd;
  -webkit-filter: brightness(1.02);
          filter: brightness(1.02);
}
.top-products-list li a span {
  top: 0;
  left: 0;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-size: 2.3rem;
  font-weight: 700;
  color: #000;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}
.top-products-list li a:hover span {
  background-color: rgba(255, 255, 255, 0);
  color: #3c77ba;
}

/*----------------------------------------------------------------
Template
----------------------------------------------------------------*/
.content-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.content-header h2 {
  margin: 2% auto;
  font-size: 3.2rem;
}
.content-header h2::after {
  font-size: 1.8rem;
}
.content-header figure {
  width: calc(100% - 20px);
  height: 100px;
  margin-left: auto;
}
.content-header figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.template {
  padding: 50px 0;
}
.template h3 {
  margin-bottom: 30px;
  padding-bottom: 5px;
  background: transparent -webkit-gradient(linear, left top, right top, from(#333265), to(#5b9aff)) center bottom/100% 1px no-repeat;
  background: transparent -webkit-linear-gradient(left, #333265 0%, #5b9aff 100%) center bottom/100% 1px no-repeat;
  background: transparent linear-gradient(to right, #333265 0%, #5b9aff 100%) center bottom/100% 1px no-repeat;
  font-size: 2.4rem;
  font-weight: 300;
}
.template h3:not(:first-of-type) {
  margin-top: 50px;
}
.template h3[id] {
  margin-top: -50px;
  padding-top: 50px;
}

/*----------------------------------------------------------------
Products
----------------------------------------------------------------*/
.product-anchor {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 90%;
  margin: 0 auto 40px;
}
.product-anchor a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 48%;
  margin: 0 3px 10px;
  padding: 5px 3px;
  text-decoration: none;
  font-weight: bold;
  background-color: #fff;
  color: #3c77ba;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.product-anchor a::after {
  content: "";
  width: 22px;
  aspect-ratio: 1;
  background: transparent url(../img/bg_product_nav.png) top left no-repeat;
}
.product-anchor a span {
  width: calc(100% - 22px);
  padding-top: 1px;
  border-bottom: 1px solid #3c77ba;
  text-align: center;
}
.product-anchor a:hover {
  background-color: #3c77ba;
  color: #fff;
}
.product-anchor a:hover span {
  border-bottom-color: #fff;
}
.product-anchor a:hover::after {
  background-position: right top;
}

.product-wrapper {
  margin-bottom: 50px;
}

.product-text {
  margin-bottom: 15px;
}
.product-text h4 {
  margin-bottom: 10px;
  padding-left: 25px;
  background: transparent -webkit-radial-gradient(circle, #3c77ba 0px, #3c77ba 8px, transparent 8px) top 4px left/16px 16px no-repeat;
  background: transparent radial-gradient(circle, #3c77ba 0px, #3c77ba 8px, transparent 8px) top 4px left/16px 16px no-repeat;
  font-size: 1.6rem;
  font-weight: 400;
}
.product-text p + h4 {
  margin-top: 20px;
}
.product-text ol {
  margin: -10px 0 15px;
  padding-left: 18px;
}
.product-text ol:last-child {
  margin-bottom: 0;
}

.product-table {
  width: 100%;
  border-collapse: collapse;
}
.product-table caption {
  text-align: left;
  margin-bottom: 10px;
}
.product-table th, .product-table td {
  padding: 5px;
}
.product-table thead th {
  background-color: #3c77ba;
  text-align: left;
  font-weight: 400;
  color: #fff;
}
.product-table thead th[colspan] {
  text-align: center;
}
.product-table tbody tr {
  border-bottom: 1px solid #ddd;
}
.product-table tbody tr:first-of-type {
  border-top: 1px solid #ddd;
}
.product-table tbody tr:nth-of-type(even) {
  background-color: #f7f7f7;
}
.product-table tbody tr th {
  width: 30px;
  padding: 10px 7px;
  background-color: #5b9aff;
  color: #fff;
}
.product-table tbody tr td span {
  font-weight: 700;
  color: #3c77ba;
}
.product-table thead + tbody tr:first-of-type {
  border-top: none;
}
.product-table .bdr-solid {
  border-right: 1px solid #ddd;
}
.product-table .bdr-dash {
  border-right: 1px dashed #ddd;
}

.product-text table:not(:last-child) {
  margin-bottom: 20px;
}

.product-image figure {
  position: relative;
}
.product-image figure img {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.product-image figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  padding: 6px;
  background-color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-size: 1.6rem;
}
.product-image figure:nth-of-type(n+2) {
  margin-top: 30px;
}

/*----------------------------------------------------------------
Business
----------------------------------------------------------------*/
.business-intro {
  margin-bottom: 50px;
}
.business-intro dt {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: bold;
}

.business-anchor {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin-bottom: 100px;
}
.business-anchor a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 160px;
  aspect-ratio: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 64px 0 14px;
  margin-bottom: 10px;
  background: url(../img/bg_business_nav_off.png) top 16px center/45px auto no-repeat, transparent -webkit-radial-gradient(closest-side, #fff 0px, #fff calc(100% - 8px), #ceddee calc(100% - 7px), #ceddee 100%, #fff calc(100% + 1px)) center no-repeat;
  background: url(../img/bg_business_nav_off.png) top 16px center/45px auto no-repeat, transparent radial-gradient(closest-side, #fff 0px, #fff calc(100% - 8px), #ceddee calc(100% - 7px), #ceddee 100%, #fff calc(100% + 1px)) center no-repeat;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  color: #3c77ba;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.business-anchor a:hover {
  background-image: url(../img/bg_business_nav_on.png), -webkit-radial-gradient(closest-side, #3c77ba 0px, #3c77ba 100%, #fff calc(100% + 1px));
  background-image: url(../img/bg_business_nav_on.png), radial-gradient(closest-side, #3c77ba 0px, #3c77ba 100%, #fff calc(100% + 1px));
  color: #fff;
}

.business-1-list {
  margin-bottom: 50px;
}
.business-1-list li {
  /* margin-bottom: 30px; */
}
.business-1-list dl {
  margin-bottom: 10px;
}
.business-1-list dl dt {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: bold;
}
.business-1-list figure {
  /* border-radius: 18px; */
  overflow: hidden;
  margin-bottom: 10px;
}
.business-1-list figure img {
  width: 100%;
}

.business-2-list p {
  margin-bottom: 50px;
  text-align: center;
}
.business-2-list h4 {
  margin-bottom: 15px;
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
}
.business-2-list h4:nth-of-type(n+2) {
  margin-top: 50px;
}
.business-2-list ul li:nth-of-type(n+2) {
  margin-top: 50px;
}
.business-2-list ul figure img {
  width: 100%;
  border-radius: 9px;
}
.business-2-list ul figure figcaption {
  margin-top: 15px;
  text-align: center;
}

/*----------------------------------------------------------------
Company
----------------------------------------------------------------*/
.company-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  border-top: 1px solid #ddd;
}
.company-info dt {
  width: 140px;
  padding: 9px 0 9px 20px;
  border-bottom: 1px solid #ddd;
}
.company-info dd {
  width: calc(100% - 140px);
  padding: 9px 0;
  border-bottom: 1px solid #ddd;
}

.company-map {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

.map-text {
  margin-bottom: 15px;
}

/*----------------------------------------------------------------
Inquiry
----------------------------------------------------------------*/
.inquiry-form {
  margin: 50px 0 30px;
  padding: 30px;
  border: 1px solid #ddd;
}
.inquiry-form dt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-bottom: 10px;
}
.inquiry-form dt span {
  width: 40px;
  margin-left: 20px;
  border-radius: 3px;
  background-color: #f2334e;
  text-align: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
}
.inquiry-form dd:not(:last-of-type) {
  margin-bottom: 24px;
}
.inquiry-form dd input,
.inquiry-form dd textarea {
  display: block;
  padding: 2px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background-color: #f7f7f7;
  font-size: 1.6rem;
  font-family: inherit;
  color: #000;
}
.inquiry-form dd .text-short {
  width: 50%;
}
.inquiry-form dd .text-long {
  width: 100%;
}
.inquiry-form dd textarea {
  width: 100%;
  min-height: 100px;
  resize: vertical;
}

.inquiry-privacy {
  margin-bottom: 30px;
}
.inquiry-privacy dt {
  margin-bottom: 15px;
  font-weight: 700;
}

.pr_txt {
  padding-left: 10px;
  width: 95%;
}

.inquiry-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.inquiry-button .inquiry-submit,
.inquiry-button .inquiry-return {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 9px;
  border: none;
  border: 1px solid #3c77ba;
  border-radius: 18px;
  background-color: #3c77ba;
  font-weight: 700;
  font-family: inherit;
  font-size: 1.6rem;
  color: #fff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.inquiry-button .inquiry-submit:hover, .inquiry-button .inquiry-submit:active,
.inquiry-button .inquiry-return:hover,
.inquiry-button .inquiry-return:active {
  background-color: #fff;
  color: #3c77ba;
}
.inquiry-button .inquiry-submit::after {
  content: "";
  position: relative;
  width: 10px;
  margin-left: 15px;
  aspect-ratio: 1;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.inquiry-button .inquiry-submit:hover::after {
  border-top-color: #3c77ba;
  border-right-color: #3c77ba;
}

.error {
  font-weight: 700;
  color: #ba3c3c;
}

/*----------------------------------------------------------------
Footer Contact
----------------------------------------------------------------*/
.footer-contact {
  width: 100%;
  padding: 30px 20px;
  background: #2e4d80 url(../img/bg_footer_contact.png) center/cover no-repeat;
  text-align: center;
  font-weight: 700;
  color: #fff;
}
.footer-contact p:nth-of-type(1) {
  margin-bottom: 10px;
  font-size: 2.4rem;
}
.footer-contact p:nth-of-type(2) {
  margin-bottom: 10px;
}
.footer-contact p:nth-of-type(3) {
  margin-bottom: 15px;
}
.footer-contact p:nth-of-type(3) a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  font-size: 4rem;
  color: #fff;
}
.footer-contact p:nth-of-type(3) a::before {
  content: "";
  width: 27px;
  height: 36px;
  margin-right: 10px;
  background: transparent url(../img/icon_tel.png) center/contain no-repeat;
}
.footer-contact p:nth-of-type(4) a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 340px;
  height: 50px;
  margin: 0 auto;
  border: 1px solid #fff;
  border-radius: 25px;
  background-color: rgb(255, 255, 255);
  text-decoration: none;
  color: #3c77ba;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.footer-contact p:nth-of-type(4) a::before {
  content: "";
  width: 20px;
  height: 16px;
  margin-right: 10px;
  background: transparent url(../img/icon_mail_on.svg) 0 0 no-repeat;
}
.footer-contact p:nth-of-type(4) a:hover, .footer-contact p:nth-of-type(4) a:active {
  background-color: rgba(255, 255, 255, 0);
  color: #fff;
}
.footer-contact p:nth-of-type(4) a:hover::before, .footer-contact p:nth-of-type(4) a:active::before {
  background-image: url(../img/icon_mail_off.svg);
}

/*----------------------------------------------------------------
Page Footer
----------------------------------------------------------------*/
.page-footer {
  padding: 30px 0;
  background-color: #003563;
  color: #fff;
}
.page-footer nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}
.page-footer nav a {
  position: relative;
  margin-right: 20px;
  padding-left: 15px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.page-footer nav a::before, .page-footer nav a::after {
  content: "";
  position: absolute;
  left: 0;
  width: 3px;
  height: 3px;
  background-color: #fff;
}
.page-footer nav a::before {
  top: 7px;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: skewX(45deg);
          transform: skewX(45deg);
}
.page-footer nav a::after {
  top: 10px;
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transform: skewX(-45deg);
          transform: skewX(-45deg);
}
.page-footer nav a:hover, .page-footer nav a:active {
  color: #8a89bf;
}
.page-footer p {
  width: 100%;
  margin: 15px 0 20px;
  font-size: 1.2rem;
}
.page-footer hr {
  width: 100%;
  height: 1px;
  margin-bottom: 10px;
  background-color: #5b5a98;
}
.page-footer address {
  font-size: 1rem;
  font-style: normal;
  color: #8a89bf;
}

.page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid #3c77ba;
  border-radius: 50%;
  background: -webkit-linear-gradient(45deg, transparent 0%, transparent calc(50% - 1.4px), #3c77ba calc(50% - 1.4px), #3c77ba calc(50% + 1.4px), transparent calc(50% + 1.4px), transparent 100%) top 20px left 24px/5px 5px no-repeat, -webkit-linear-gradient(135deg, transparent 0%, transparent calc(50% - 1.4px), #3c77ba calc(50% - 1.4px), #3c77ba calc(50% + 1.4px), transparent calc(50% + 1.4px), transparent 100%) top 20px right 24px/5px 5px no-repeat, #fff -webkit-linear-gradient(bottom, #3c77ba 0%, #3c77ba 100%) center/2px 10px no-repeat;
  background: linear-gradient(45deg, transparent 0%, transparent calc(50% - 1.4px), #3c77ba calc(50% - 1.4px), #3c77ba calc(50% + 1.4px), transparent calc(50% + 1.4px), transparent 100%) top 20px left 24px/5px 5px no-repeat, linear-gradient(-45deg, transparent 0%, transparent calc(50% - 1.4px), #3c77ba calc(50% - 1.4px), #3c77ba calc(50% + 1.4px), transparent calc(50% + 1.4px), transparent 100%) top 20px right 24px/5px 5px no-repeat, #fff linear-gradient(to top, #3c77ba 0%, #3c77ba 100%) center/2px 10px no-repeat;
}
.page-top.hover-op, .page-top.hover-op:hover, .page-top.hover-op:active {
  opacity: 0;
  cursor: default;
}
.page-top.hover-op.allow {
  opacity: 1;
  cursor: pointer;
}
.page-top.hover-op.allow:hover, .page-top.hover-op.allow:active {
  opacity: 0.7;
}/*# sourceMappingURL=sp.css.map */