@import url("https://use.typekit.net/lnf3pib.css");
a {
  text-decoration: none;
  color: #000;
}

img {
  width: 100%;
  vertical-align: bottom;
}

body {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
}

*, *::before, *::after {
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .head h2 {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .head h3 {
    padding: 0 20px;
    font-size: 25px !important;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-top: 45px;
  padding-left: 40px;
  padding-right: 40px;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  header {
    padding-top: 25px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
header .logo {
  max-width: 204px;
}
header .logo img {
  width: 100%;
}
header .menu {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: flex-end;
  max-width: 700px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  header .menu {
    display: none;
  }
}
header .menu nav {
  background-color: #fff;
  padding: 10px 30px;
  max-width: 540px;
  width: 100%;
  border-radius: 20px;
}
header .menu nav ul {
  display: flex;
  gap: 30px;
  justify-content: center;
}
header .menu nav ul li {
  position: relative;
}
header .menu nav ul li::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  border-right: 1px solid #000;
  height: 75%;
}
header .menu nav ul li:last-child::after {
  content: none;
}
header .menu nav ul li a {
  font-weight: 600;
  transition: all 0.3s;
}
header .menu nav ul li a:hover {
  color: #54a6ef;
  transition: all 0.3s;
}
header .menu a.contact {
  background-image: linear-gradient(180deg, rgb(37, 37, 153) 0%, rgb(75, 166, 250) 100%);
  display: block;
  max-width: 140px;
  color: #fff;
  padding: 10px 0;
  width: 100%;
  text-align: center;
  border-radius: 20px;
  transition: all 0.5s;
}
header .menu a.contact:hover {
  opacity: 0.5;
  transition: all 0.5s;
}
header button {
  background: none;
  border: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  padding: 0;
}
@media screen and (min-width: 1025px) {
  header button {
    display: none;
  }
}
header button .bar-frame-box {
  position: relative;
  display: block;
  width: 24px;
  height: 2px;
}
header button .bar-frame-box .bar-frame {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  transition: all 0.15s linear;
}
header button .bar-frame-box .bar-frame.bar-frame-second {
  transform: translateY(-8px) rotate(0deg);
}
header button .bar-frame-box .bar-frame.bar-frame.bar-frame-third {
  transform: translateY(8px) rotate(0deg);
}
header button.isClosed .bar-frame-box .bar-frame.bar-frame-first {
  opacity: 0;
}
header button.isClosed .bar-frame-box .bar-frame.bar-frame-second {
  transform: translateY(0) rotate(45deg);
}
header button.isClosed .bar-frame-box .bar-frame.bar-frame-third {
  transform: translateY(0) rotate(-45deg);
}

.menu-sp {
  position: fixed;
  padding-top: 200px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2sease-out;
  transform: translateY(-20px);
  transition: opacity 0.3sease-out, transform 0.3s ease-out, visibility 0.3s ease-out;
  background-color: #fff;
}
@media screen and (min-width: 1025px) {
  .menu-sp {
    display: none;
  }
}
.menu-sp.isOpen {
  opacity: 1;
  visibility: visible;
  animation: menuAppear 0.3s ease-out 0.08s both;
  z-index: 2;
}
.menu-sp.isClosing {
  animation: menuDisappear 0.3s ease-out both;
}
@keyframes menuAppear {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes menuDisappear {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.menu-sp nav {
  width: 100%;
  height: 100%;
  display: block;
  padding: 30px;
  overflow: scroll;
}
.menu-sp nav ul li {
  margin-bottom: 48px;
}
.menu-sp nav ul li a {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
  display: block;
}

#fv {
  position: relative;
  background-image: url(../images/fv-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  display: flex;
}
#fv .main-img {
  max-width: 1200px;
  margin: auto;
  padding-top: 180px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1199px) {
  #fv .main-img {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  #fv .main-img img.pc {
    display: none;
  }
}
#fv .main-img .sp {
  position: relative;
}
@media screen and (min-width: 769px) {
  #fv .main-img .sp {
    display: none;
  }
}
#fv .main-img .sp .catch-box {
  position: relative;
  z-index: 2;
}
#fv .main-img .sp .catch-box .catch03 {
  max-width: 75%;
  margin-left: auto;
}
#fv .main-img .sp .right {
  position: absolute;
  top: -210px;
  right: 0;
  max-width: 200px;
}
@media screen and (max-width: 480px) {
  #fv .main-img .sp .right {
    top: -140px;
    max-width: 130px;
  }
}
#fv .main-img .sp .left {
  position: absolute;
  bottom: -60px;
  left: 0;
  max-width: 180px;
}
#fv .chigiri {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

#shika-lab {
  margin-top: 100px;
}
#shika-lab .title {
  max-width: 1240px;
  margin: auto;
  position: relative;
}
#shika-lab .title::before {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 60px;
  width: 100px;
  height: 100px;
  background-image: url(../images/deco.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1024px) {
  #shika-lab .title::before {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  #shika-lab .title::before {
    bottom: -85px;
  }
}
@media screen and (max-width: 480px) {
  #shika-lab .title::before {
    width: 50px;
    height: 50px;
    bottom: -65px;
    left: 0;
  }
}
#shika-lab .title::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background-image: url(../images/deco.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1245px) {
  #shika-lab .title::after {
    right: 40px;
  }
}
@media screen and (max-width: 1024px) {
  #shika-lab .title::after {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  #shika-lab .title::after {
    top: -75px;
  }
}
@media screen and (max-width: 480px) {
  #shika-lab .title::after {
    width: 50px;
    height: 50px;
    top: -50px;
    right: 0;
  }
}
#shika-lab .title h2 {
  max-width: 660px;
  margin: auto;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 991px) {
  #shika-lab .title h2 {
    max-width: 330px;
  }
}
@media screen and (max-width: 480px) {
  #shika-lab .title h2 {
    padding: 0 20px;
  }
}
#shika-lab .title h3 {
  text-align: center;
  color: #254999;
  font-size: 40px;
  font-weight: 900;
}
@media screen and (max-width: 991px) {
  #shika-lab .title h3 {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  #shika-lab .title h3 {
    font-size: 25px;
  }
}
@media screen and (max-width: 480px) {
  #shika-lab .title h3 {
    font-size: 16px;
  }
}
#shika-lab .title h3 span {
  display: block;
  color: #000;
  font-size: 30px;
}
@media screen and (max-width: 991px) {
  #shika-lab .title h3 span {
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  #shika-lab .title h3 span {
    font-size: 15px;
  }
}
#shika-lab .recommend {
  background-image: url(../images/shika-lab-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 100px;
  padding: 50px 0;
}
#shika-lab .recommend .container {
  max-width: 1240px;
  margin: auto;
  position: relative;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 50px 30px;
}
@media screen and (max-width: 1300px) {
  #shika-lab .recommend .container {
    margin: 0 20px;
  }
}
@media screen and (max-width: 480px) {
  #shika-lab .recommend .container {
    padding: 50px 15px;
  }
}
#shika-lab .recommend .container h4 {
  color: #fff;
  font-size: 124px;
  position: relative;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 991px) {
  #shika-lab .recommend .container h4 {
    font-size: 85px;
    overflow-wrap: break-word;
  }
}
@media screen and (max-width: 768px) {
  #shika-lab .recommend .container h4 {
    font-size: 55px;
  }
}
@media screen and (max-width: 480px) {
  #shika-lab .recommend .container h4 {
    font-size: 37px;
  }
}
#shika-lab .recommend .container h4 span {
  font-size: 34px;
  color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  font-weight: 900;
  width: 100%;
}
@media screen and (max-width: 991px) {
  #shika-lab .recommend .container h4 span {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  #shika-lab .recommend .container h4 span {
    font-size: 17px;
  }
}
#shika-lab .recommend .container .list-box {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  #shika-lab .recommend .container .list-box {
    flex-wrap: wrap;
  }
}
#shika-lab .recommend .container .list-box ul {
  counter-reset: number 0;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #shika-lab .recommend .container .list-box ul {
    width: 100%;
  }
}
#shika-lab .recommend .container .list-box ul li {
  border-bottom: 1px solid #254999;
  position: relative;
  padding: 20px 0 20px 30px;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  #shika-lab .recommend .container .list-box ul li {
    font-size: 13px;
    padding: 15px 0 15px 25px;
  }
}
#shika-lab .recommend .container .list-box ul li::before {
  content: counter(number, decimal-leading-zero);
  counter-increment: number 1;
  color: #54a6ef;
  position: absolute;
  left: 0;
}
#shika-lab .recommend .container .list-box ul li span {
  color: #254999;
}
#shika-lab .recommend .container .right {
  position: absolute;
  right: -6%;
  top: -35%;
}
@media screen and (max-width: 1400px) {
  #shika-lab .recommend .container .right {
    right: 0%;
    top: -25%;
  }
}
@media screen and (max-width: 768px) {
  #shika-lab .recommend .container .right {
    top: -100px;
  }
}
#shika-lab .recommend .container .right img {
  max-width: 300px;
}
@media screen and (max-width: 1400px) {
  #shika-lab .recommend .container .right img {
    max-width: 200px;
  }
}
@media screen and (max-width: 768px) {
  #shika-lab .recommend .container .right img {
    max-width: 150px;
  }
}
#shika-lab .recommend .container .left {
  position: absolute;
  left: -80px;
  bottom: -40px;
  max-width: 100px;
}
@media screen and (max-width: 1400px) {
  #shika-lab .recommend .container .left {
    left: 0px;
    bottom: -130px;
    max-width: 70px;
  }
}
@media screen and (max-width: 768px) {
  #shika-lab .recommend .container .left {
    bottom: -100px;
    max-width: 55px;
  }
}

#cace-studies h2 {
  position: relative;
  max-width: 550px;
  margin: auto;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 20px;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  #cace-studies h2 {
    max-width: 350px;
  }
}
@media screen and (max-width: 480px) {
  #cace-studies h2 {
    padding: 0 20px;
  }
}
#cace-studies h2 img.title {
  position: relative;
  z-index: 2;
}
#cace-studies h2 span {
  max-width: 250px;
  display: block;
  position: absolute;
  right: -70px;
  top: -40px;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  #cace-studies h2 span {
    max-width: 125px;
  }
}
@media screen and (max-width: 768px) {
  #cace-studies h2 span {
    right: 0;
    top: -40px;
    max-width: 100px;
  }
}
#cace-studies h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 991px) {
  #cace-studies h3 {
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  #cace-studies h3 {
    font-size: 25px;
  }
}
#cace-studies .contents {
  background-image: url(../images/case-study-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 996px) {
  #cace-studies .contents {
    padding: 80px 20px;
  }
}
#cace-studies .contents .container {
  max-width: 1000px;
  margin: auto;
  background-color: #f3f5fb;
  position: relative;
  border-radius: 20px;
  padding: 0 30px 0;
}
@media screen and (max-width: 480px) {
  #cace-studies .contents .container {
    padding: 0 10px 0;
  }
}
#cace-studies .contents .container .case-tab {
  background-color: #254999;
  color: #fff;
  width: 100px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  padding: 10px 0;
  text-align: center;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  #cace-studies .contents .container .accordion {
    text-align: center;
  }
}
#cace-studies .contents .container .accordion h4 {
  position: relative;
  color: #254999;
  font-size: 24px;
  text-align: center;
  padding: 40px 0;
  cursor: pointer;
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  #cace-studies .contents .container .accordion h4 {
    display: inline-block;
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  #cace-studies .contents .container .accordion h4 {
    font-size: 12px;
  }
}
#cace-studies .contents .container .accordion h4:before, #cace-studies .contents .container .accordion h4:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 30px;
  width: 15px;
  height: 2px;
  margin-top: -1px;
  background-color: #54a6ef;
  transform-origin: 50% 50%;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  #cace-studies .contents .container .accordion h4:before, #cace-studies .contents .container .accordion h4:after {
    right: -25px;
  }
}
#cace-studies .contents .container .accordion h4:before {
  transform: rotate(-90deg);
  opacity: 1;
  z-index: 2;
}
#cace-studies .contents .container .accordion h4.active:before {
  transform: rotate(0deg);
  background: #54a6ef !important;
}
#cace-studies .contents .container .accordion h4.active:after {
  transform: rotate(180deg);
  background: #54a6ef !important;
  opacity: 0;
}
#cace-studies .contents .container .accordion h4:hover {
  opacity: 0.5;
  transition: all 0.5s;
}
#cace-studies .contents .container .accordion ul {
  overflow: hidden;
  height: 0px;
}
#cace-studies .contents .container .accordion ul li {
  background-color: #fff;
  border-radius: 20px;
  margin-bottom: 20px;
  padding: 20px 40px;
}
#cace-studies .contents .container .accordion ul li:last-child {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #cace-studies .contents .container .accordion ul li {
    padding: 20px;
  }
}
#cace-studies .contents .container .accordion ul li h5 {
  padding-bottom: 10px;
  border-bottom: 1px solid #254999;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  #cace-studies .contents .container .accordion ul li h5 {
    justify-content: center;
    position: relative;
  }
}
@media screen and (max-width: 480px) {
  #cace-studies .contents .container .accordion ul li h5 {
    justify-content: end;
  }
}
#cace-studies .contents .container .accordion ul li h5 .tab {
  width: 80px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  margin-right: 10px;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  #cace-studies .contents .container .accordion ul li h5 .tab {
    width: 75px;
    height: 35px;
    line-height: 35px;
    font-size: 16px;
    margin-right: 0;
    position: absolute;
    left: 0;
  }
}
@media screen and (max-width: 480px) {
  #cace-studies .contents .container .accordion ul li h5 .tab {
    width: 50px;
    height: 25px;
    line-height: 25px;
    font-size: 11px;
  }
}
#cace-studies .contents .container .accordion ul li h5 .tab.cause {
  background-color: #f0565b;
}
#cace-studies .contents .container .accordion ul li h5 .tab.measure {
  background-color: #4ba5f9;
}
#cace-studies .contents .container .accordion ul li h5 .tab.result {
  background-color: #f59812;
}
#cace-studies .contents .container .accordion ul li h5 .title {
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  #cace-studies .contents .container .accordion ul li h5 .title span {
    display: block;
  }
}
#cace-studies .contents .container .accordion ul li h5 .title span.no01 {
  color: #f0565b;
}
#cace-studies .contents .container .accordion ul li h5 .title span.no02 {
  color: #4ba5f9;
}
#cace-studies .contents .container .accordion ul li h5 .title span.no03 {
  color: #f59812;
}
@media screen and (max-width: 480px) {
  #cace-studies .contents .container .accordion ul li h5 .title {
    font-size: 14px;
  }
}
#cace-studies .contents .container .accordion ul li p {
  font-size: 16px;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  #cace-studies .contents .container .accordion ul li p {
    font-size: 13px;
    text-align: left;
  }
}
#cace-studies .contents a.btn {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  display: block;
  border-radius: 50px;
  border: 1px solid #000;
  max-width: 420px;
  margin: auto;
  height: 100px;
  line-height: 100px;
  background-color: #fff;
  margin-top: 80px;
  margin-bottom: 200px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  #cace-studies .contents a.btn {
    font-size: 15px;
    max-width: 300px;
    height: 70px;
    line-height: 70px;
  }
}
#cace-studies .contents a.btn:hover {
  color: #54a6ef;
  transition: all 0.3s;
}
#cace-studies .contact {
  background-image: linear-gradient(180deg, rgba(116, 221, 128, 0.6) 0%, rgba(33, 178, 167, 0.6) 100%);
  height: 400px;
  margin-top: -200px;
}
@media screen and (max-width: 1199px) {
  #cace-studies .contact {
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  #cace-studies .contact {
    height: auto;
  }
}
#cace-studies .contact .container {
  max-width: 1120px;
  margin: auto;
  position: relative;
}
#cace-studies .contact .container .box {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 30px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  #cace-studies .contact .container .box {
    justify-content: center;
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  #cace-studies .contact .container .box {
    display: block;
    padding: 50px 20px;
  }
}
#cace-studies .contact .container .box .left h4 {
  color: #fde574;
  text-align: center;
  font-size: 40px;
}
#cace-studies .contact .container .box .left h4 span {
  color: #fff;
  display: block;
  font-size: 32px;
}
@media screen and (max-width: 991px) {
  #cace-studies .contact .container .box .left h4 span {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  #cace-studies .contact .container .box .left h4 span {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  #cace-studies .contact .container .box .left h4 {
    font-size: 28px;
  }
}
@media screen and (max-width: 480px) {
  #cace-studies .contact .container .box .left h4 {
    font-size: 20px;
  }
}
#cace-studies .contact .container .box .right {
  max-width: 420px;
  margin-top: -60px;
}
@media screen and (max-width: 1199px) {
  #cace-studies .contact .container .box .right {
    max-width: 300px;
  }
}
@media screen and (max-width: 768px) {
  #cace-studies .contact .container .box .right {
    max-width: 300px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}
#cace-studies .contact .container .box .position {
  position: absolute;
  left: 0;
  top: -50px;
  max-width: 390px;
}
@media screen and (max-width: 1199px) {
  #cace-studies .contact .container .box .position {
    max-width: 250px;
    left: 20px;
  }
}
@media screen and (max-width: 480px) {
  #cace-studies .contact .container .box .position {
    max-width: 200px;
  }
}

#reason h2 {
  position: relative;
  max-width: 380px;
  margin: auto;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 20px;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  #reason h2 {
    max-width: 200px;
  }
}
@media screen and (max-width: 480px) {
  #reason h2 {
    padding: 0 20px;
  }
}
#reason h2 img.title {
  position: relative;
  z-index: 2;
}
#reason h2 span {
  max-width: 330px;
  display: block;
  position: absolute;
  right: -260px;
  top: -30px;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  #reason h2 span {
    max-width: 155px;
    right: -100px;
    top: -20px;
  }
}
@media screen and (max-width: 768px) {
  #reason h2 span {
    right: 0;
    max-width: 110px;
    top: -25px;
  }
}
#reason h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 991px) {
  #reason h3 {
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  #reason h3 {
    font-size: 25px;
  }
}
#reason .box {
  display: flex;
  align-items: center;
  margin-top: 160px;
}
@media screen and (max-width: 768px) {
  #reason .box.sp-f-d-column-reverse {
    flex-direction: column-reverse;
  }
}
#reason .box:first-child {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  #reason .box {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 480px) {
  #reason .box {
    margin-top: 60px;
  }
}
#reason .box .left {
  width: 60%;
  position: relative;
}
@media screen and (max-width: 768px) {
  #reason .box .left {
    width: 100%;
    margin-bottom: 100px;
  }
}
#reason .box .left .bg {
  max-width: 1100px;
}
#reason .box .left .img {
  position: absolute;
}
#reason .box .left .img.no01 {
  max-width: 80%;
  top: 50px;
  right: 0;
}
#reason .box .left .img.no02 {
  left: 40px;
  max-width: 60%;
  top: 20px;
}
#reason .box .left .img.no03 {
  max-width: 80%;
  top: 50px;
  right: 0;
}
#reason .box .left .img.no04 {
  left: 40px;
  max-width: 60%;
  top: 20px;
}
#reason .box .left .img.no05 {
  max-width: 80%;
  top: 50px;
  right: 0;
}
#reason .box .left .text {
  position: absolute;
}
#reason .box .left .text.no01 {
  left: 30px;
  top: -9%;
  max-width: 90px;
}
@media screen and (max-width: 991px) {
  #reason .box .left .text.no01 {
    max-width: 65px;
  }
}
@media screen and (max-width: 480px) {
  #reason .box .left .text.no01 {
    max-width: 40px;
    left: 15px;
    top: -10%;
  }
}
#reason .box .left .text.no02 {
  right: 30px;
  top: -9%;
  max-width: 50px;
}
@media screen and (max-width: 991px) {
  #reason .box .left .text.no02 {
    max-width: 35px;
  }
}
@media screen and (max-width: 480px) {
  #reason .box .left .text.no02 {
    max-width: 20px;
    right: 15px;
    top: -10%;
  }
}
#reason .box .left .text.no03 {
  left: 30px;
  top: -9%;
  max-width: 60px;
}
@media screen and (max-width: 991px) {
  #reason .box .left .text.no03 {
    max-width: 35px;
  }
}
@media screen and (max-width: 480px) {
  #reason .box .left .text.no03 {
    max-width: 20px;
    left: 15px;
    top: -10%;
  }
}
#reason .box .left .text.no04 {
  right: 30px;
  top: -9%;
  max-width: 50px;
}
@media screen and (max-width: 991px) {
  #reason .box .left .text.no04 {
    max-width: 35px;
  }
}
@media screen and (max-width: 480px) {
  #reason .box .left .text.no04 {
    max-width: 20px;
    right: 15px;
    top: -10%;
  }
}
#reason .box .left .text.no05 {
  left: 30px;
  top: -9%;
  max-width: 60px;
}
@media screen and (max-width: 991px) {
  #reason .box .left .text.no05 {
    max-width: 35px;
  }
}
@media screen and (max-width: 480px) {
  #reason .box .left .text.no05 {
    max-width: 20px;
    left: 15px;
    top: -10%;
  }
}
#reason .box .right {
  width: 40%;
  padding-left: 100px;
}
@media screen and (max-width: 768px) {
  #reason .box .right {
    width: 100%;
    padding-left: 20px;
  }
}
#reason .box .right .img {
  max-width: 250px;
  margin-bottom: 50px;
}
@media screen and (max-width: 480px) {
  #reason .box .right .img {
    max-width: 200px;
  }
}
#reason .box .right h4 {
  color: #254999;
  font-size: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 991px) {
  #reason .box .right h4 {
    font-size: 25px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 480px) {
  #reason .box .right h4 {
    font-size: 20px;
  }
}
#reason .box .right p {
  line-height: 1.9;
  font-size: 15px;
  max-width: 410px;
}
@media screen and (max-width: 991px) {
  #reason .box .right p {
    font-size: 13px;
    padding-right: 20px;
  }
}

#infomation .bg {
  background-color: #ecf6ff;
  padding: 100px 0 150px;
  margin-top: 200px;
}
@media screen and (max-width: 480px) {
  #infomation .bg {
    margin-top: 80px;
    padding: 100px 0 80px;
  }
}
#infomation .bg .container {
  max-width: 1100px;
  margin: auto;
}
#infomation .bg .container h2 {
  position: relative;
  max-width: 630px;
  margin: auto;
  text-align: center;
  margin-bottom: 20px;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  #infomation .bg .container h2 {
    max-width: 345px;
  }
}
@media screen and (max-width: 480px) {
  #infomation .bg .container h2 {
    padding: 0 20px;
  }
}
#infomation .bg .container h2 img.title {
  position: relative;
  z-index: 2;
}
#infomation .bg .container h2 span {
  max-width: 340px;
  display: block;
  position: absolute;
  right: -115px;
  top: -65px;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  #infomation .bg .container h2 span {
    max-width: 170px;
    right: -95px;
    top: -25px;
  }
}
@media screen and (max-width: 768px) {
  #infomation .bg .container h2 span {
    right: 0;
    max-width: 140px;
  }
}
#infomation .bg .container h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 991px) {
  #infomation .bg .container h3 {
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  #infomation .bg .container h3 {
    font-size: 25px;
  }
}
#infomation .bg .container .grid-box {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 15px;
  position: relative;
}
#infomation .bg .container .grid-box::before {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 100px;
  width: 100px;
  height: 100px;
  background-image: url(../images/deco.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1024px) {
  #infomation .bg .container .grid-box::before {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  #infomation .bg .container .grid-box::before {
    bottom: -85px;
    left: 0;
  }
}
@media screen and (max-width: 480px) {
  #infomation .bg .container .grid-box::before {
    width: 50px;
    height: 50px;
  }
}
#infomation .bg .container .grid-box::after {
  content: "";
  position: absolute;
  top: -80px;
  right: 130px;
  width: 90px;
  height: 90px;
  background-image: url(../images/deco.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1245px) {
  #infomation .bg .container .grid-box::after {
    right: 40px;
  }
}
@media screen and (max-width: 1024px) {
  #infomation .bg .container .grid-box::after {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  #infomation .bg .container .grid-box::after {
    top: -75px;
    right: 0;
  }
}
@media screen and (max-width: 480px) {
  #infomation .bg .container .grid-box::after {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 768px) {
  #infomation .bg .container .grid-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  #infomation .bg .container .grid-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
#infomation .bg .container .grid-box .card {
  background-color: #fff;
  border-radius: 30px;
  border: 3px solid #d8ecff;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 991px) {
  #infomation .bg .container .grid-box .card {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  #infomation .bg .container .grid-box .card {
    height: 90px;
  }
}

#production-cost-production .head {
  padding: 50px 0;
}
#production-cost-production .head h2 {
  position: relative;
  max-width: 630px;
  margin: auto;
  text-align: center;
  margin-bottom: 20px;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  #production-cost-production .head h2 {
    max-width: 475px;
  }
}
#production-cost-production .head h2 img.title {
  position: relative;
  z-index: 2;
}
#production-cost-production .head h2 span {
  max-width: 210px;
  display: block;
  position: absolute;
  right: -115px;
  top: -75px;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  #production-cost-production .head h2 span {
    max-width: 150px;
    right: -50px;
    top: -65px;
  }
}
@media screen and (max-width: 768px) {
  #production-cost-production .head h2 span {
    right: 0;
    max-width: 100px;
    top: -30px;
  }
}
#production-cost-production .head h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}
#production-cost-production .production-cost-bg {
  background-image: url(../images/production-bg01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0;
}
@media screen and (max-width: 1199px) {
  #production-cost-production .production-cost-bg {
    padding: 50px 20px;
  }
}
#production-cost-production .production-cost-bg .container {
  max-width: 1100px;
  margin: auto;
}
#production-cost-production .production-cost-bg .container .box {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  #production-cost-production .production-cost-bg .container .box {
    flex-wrap: wrap;
  }
}
#production-cost-production .production-cost-bg .container .box h4 {
  color: #000;
  font-size: 30px;
  margin-bottom: 30px;
  text-align: center;
}
#production-cost-production .production-cost-bg .container .box .card {
  width: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  #production-cost-production .production-cost-bg .container .box .card {
    width: 100%;
  }
}
#production-cost-production .production-cost-bg .container .box .card h4 {
  color: #fff;
  font-size: 100px;
  position: relative;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0;
  line-height: 1;
}
@media screen and (max-width: 1199px) {
  #production-cost-production .production-cost-bg .container .box .card h4 {
    font-size: 60px;
    overflow-wrap: break-word;
  }
}
@media screen and (max-width: 768px) {
  #production-cost-production .production-cost-bg .container .box .card h4 {
    font-size: 55px;
  }
}
@media screen and (max-width: 480px) {
  #production-cost-production .production-cost-bg .container .box .card h4 {
    font-size: 37px;
  }
}
#production-cost-production .production-cost-bg .container .box .card h4 span {
  color: #000;
  font-size: 32px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  font-weight: 900;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  #production-cost-production .production-cost-bg .container .box .card h4 span {
    font-size: 25px;
  }
}
@media screen and (max-width: 991px) {
  #production-cost-production .production-cost-bg .container .box .card h4 span {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  #production-cost-production .production-cost-bg .container .box .card h4 span {
    font-size: 17px;
  }
}
#production-cost-production .production-cost-bg .container .box .card p {
  text-align: center;
}
#production-cost-production .production-cost-bg .container .box .card p.price {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  background-image: linear-gradient(180deg, rgb(37, 72, 153) 0%, rgb(75, 165, 249) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  margin-bottom: 30px;
  position: relative;
  line-height: 1;
}
#production-cost-production .production-cost-bg .container .box .card p.price span {
  font-size: 90px;
}
@media screen and (max-width: 991px) {
  #production-cost-production .production-cost-bg .container .box .card p.price span {
    font-size: 50px;
  }
}
#production-cost-production .production-cost-bg .container .box .card p.price:first-child {
  margin-top: -23px;
}
#production-cost-production .production-cost-bg .container .box .card .obi {
  background-color: #21b2a7;
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding: 10px 0;
  margin-bottom: 20px;
}

#production-cost-maintenance .head {
  padding: 110px 0 50px;
}
#production-cost-maintenance .head h2 {
  position: relative;
  max-width: 630px;
  margin: auto;
  text-align: center;
  margin-bottom: 20px;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  #production-cost-maintenance .head h2 {
    max-width: 475px;
  }
}
#production-cost-maintenance .head h2 img.title {
  position: relative;
  z-index: 2;
}
#production-cost-maintenance .head h2 span {
  max-width: 210px;
  display: block;
  position: absolute;
  right: -115px;
  top: -75px;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  #production-cost-maintenance .head h2 span {
    max-width: 140px;
    right: -70px;
    top: -40px;
  }
}
@media screen and (max-width: 768px) {
  #production-cost-maintenance .head h2 span {
    right: 0;
    max-width: 100px;
    top: -30px;
  }
}
#production-cost-maintenance .head h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}
#production-cost-maintenance .production-cost-bg {
  background-image: url(../images/production-bg02.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0 100px;
}
@media screen and (max-width: 1199px) {
  #production-cost-maintenance .production-cost-bg {
    padding: 50px 20px 100px;
  }
}
#production-cost-maintenance .production-cost-bg .container {
  max-width: 1100px;
  margin: auto;
}
#production-cost-maintenance .production-cost-bg .container .box {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  #production-cost-maintenance .production-cost-bg .container .box {
    flex-wrap: wrap;
  }
}
#production-cost-maintenance .production-cost-bg .container .box h4 {
  color: #000;
  font-size: 30px;
  margin-bottom: 30px;
  text-align: center;
}
#production-cost-maintenance .production-cost-bg .container .box .card {
  width: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  #production-cost-maintenance .production-cost-bg .container .box .card {
    width: 100%;
  }
}
#production-cost-maintenance .production-cost-bg .container .box .card h4 {
  color: #fff;
  font-size: 110px;
  position: relative;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1;
}
@media screen and (max-width: 1199px) {
  #production-cost-maintenance .production-cost-bg .container .box .card h4 {
    font-size: 60px;
    overflow-wrap: break-word;
  }
}
@media screen and (max-width: 768px) {
  #production-cost-maintenance .production-cost-bg .container .box .card h4 {
    font-size: 55px;
  }
}
@media screen and (max-width: 480px) {
  #production-cost-maintenance .production-cost-bg .container .box .card h4 {
    font-size: 37px;
  }
}
#production-cost-maintenance .production-cost-bg .container .box .card h4 span {
  color: #000;
  font-size: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  font-weight: 900;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  #production-cost-maintenance .production-cost-bg .container .box .card h4 span {
    font-size: 25px;
  }
}
@media screen and (max-width: 991px) {
  #production-cost-maintenance .production-cost-bg .container .box .card h4 span {
    font-size: 54px;
  }
}
@media screen and (max-width: 480px) {
  #production-cost-maintenance .production-cost-bg .container .box .card h4 span {
    font-size: 17px;
  }
}
#production-cost-maintenance .production-cost-bg .container .box .card p {
  text-align: center;
}
#production-cost-maintenance .production-cost-bg .container .box .card p.price {
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  background-image: linear-gradient(180deg, rgb(37, 72, 153) 0%, rgb(75, 165, 249) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 991px) {
  #production-cost-maintenance .production-cost-bg .container .box .card p.price {
    font-size: 25px;
  }
}
#production-cost-maintenance .production-cost-bg .container .box .card p.price span.num {
  font-size: 70px;
  line-height: 1;
  display: block;
  margin-bottom: 25px;
}
#production-cost-maintenance .production-cost-bg .container .box .card p.price span.amount {
  -webkit-text-fill-color: #fff;
  background: #336abc;
  padding: 10px 0;
  font-size: 14px;
  border-radius: 20px;
  width: 100px;
  display: block;
}
#production-cost-maintenance .production-cost-bg .container .box .card .obi {
  background-color: #21b2a7;
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding: 10px 0;
  margin-bottom: 20px;
}
#production-cost-maintenance .production-cost-bg .container .box .card.center {
  width: 100%;
  margin-top: 30px;
  padding: 30px 60px;
}
@media screen and (max-width: 768px) {
  #production-cost-maintenance .production-cost-bg .container .box .card.center {
    padding: 30px;
  }
}
#production-cost-maintenance .production-cost-bg .container .box .card.center .flex {
  display: flex;
}
@media screen and (max-width: 768px) {
  #production-cost-maintenance .production-cost-bg .container .box .card.center .flex {
    flex-wrap: wrap;
  }
}
#production-cost-maintenance .production-cost-bg .container .box .card.center .flex ul {
  width: 50%;
  list-style: disc;
  list-style-position: inside;
}
@media screen and (max-width: 768px) {
  #production-cost-maintenance .production-cost-bg .container .box .card.center .flex ul {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #production-cost-maintenance .production-cost-bg .container .box .card.center .flex ul li {
    margin-bottom: 5px;
  }
}
#production-cost-maintenance .contact {
  background-image: linear-gradient(180deg, rgba(116, 221, 128, 0.6) 0%, rgba(33, 178, 167, 0.6) 100%);
  height: 400px;
}
@media screen and (max-width: 1199px) {
  #production-cost-maintenance .contact {
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  #production-cost-maintenance .contact {
    height: auto;
  }
}
#production-cost-maintenance .contact .container {
  max-width: 1120px;
  margin: auto;
  position: relative;
}
#production-cost-maintenance .contact .container .box {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 30px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  #production-cost-maintenance .contact .container .box {
    justify-content: center;
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  #production-cost-maintenance .contact .container .box {
    display: block;
    padding: 50px 20px;
  }
}
#production-cost-maintenance .contact .container .box .left {
  margin-top: 60px;
}
#production-cost-maintenance .contact .container .box .left h4 {
  color: #fde574;
  text-align: center;
  font-size: 40px;
}
#production-cost-maintenance .contact .container .box .left h4 span {
  color: #fff;
  display: block;
  font-size: 32px;
}
@media screen and (max-width: 991px) {
  #production-cost-maintenance .contact .container .box .left h4 span {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  #production-cost-maintenance .contact .container .box .left h4 span {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  #production-cost-maintenance .contact .container .box .left h4 {
    font-size: 28px;
  }
}
@media screen and (max-width: 480px) {
  #production-cost-maintenance .contact .container .box .left h4 {
    font-size: 20px;
  }
}
#production-cost-maintenance .contact .container .box .left a {
  display: block;
  max-width: 460px;
  width: 100%;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  border-radius: 50px;
  padding: 40px 0;
  background-image: linear-gradient(180deg, rgb(37, 37, 153) 0%, rgb(75, 166, 250) 100%);
  color: #fff;
  box-shadow: 0px 10px 0px 1px #254999;
  margin-top: 30px;
  margin-left: auto;
  transition: all 0.3s;
}
@media screen and (max-width: 1199px) {
  #production-cost-maintenance .contact .container .box .left a {
    max-width: 300px;
    font-size: 25px;
    padding: 15px 0;
    margin-right: auto;
  }
}
#production-cost-maintenance .contact .container .box .left a:hover {
  box-shadow: unset;
  transform: translateY(4px);
  transition: all 0.3s;
}
#production-cost-maintenance .contact .container .box .right {
  max-width: 420px;
  margin-top: -60px;
}
@media screen and (max-width: 1199px) {
  #production-cost-maintenance .contact .container .box .right {
    max-width: 300px;
  }
}
@media screen and (max-width: 768px) {
  #production-cost-maintenance .contact .container .box .right {
    max-width: 300px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}
#production-cost-maintenance .contact .container .box .position {
  position: absolute;
  left: 0;
  top: -50px;
  max-width: 390px;
}
@media screen and (max-width: 1199px) {
  #production-cost-maintenance .contact .container .box .position {
    max-width: 250px;
    left: 20px;
  }
}

#production .bg {
  background-color: #f9f3b5;
  padding: 50px 0;
}
#production .bg .head {
  padding: 50px 0;
}
#production .bg .head h2 {
  position: relative;
  max-width: 560px;
  margin: auto;
  text-align: center;
  margin-bottom: 20px;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  #production .bg .head h2 {
    max-width: 330px;
  }
}
#production .bg .head h2 img.title {
  position: relative;
  z-index: 2;
}
#production .bg .head h2 span {
  max-width: 220px;
  display: block;
  position: absolute;
  right: -110px;
  bottom: 15px;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  #production .bg .head h2 span {
    max-width: 140px;
    position: absolute;
    right: -70px;
  }
}
@media screen and (max-width: 768px) {
  #production .bg .head h2 span {
    right: 0;
    max-width: 110px;
  }
}
#production .bg .head h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}
#production .bg .container {
  max-width: 1350px;
  margin: auto;
  position: relative;
}
@media screen and (max-width: 1399px) {
  #production .bg .container {
    padding: 0 20px;
  }
}
#production .bg .container .flex-box {
  display: flex;
}
#production .bg .container .flex-box.top {
  justify-content: space-between;
  margin-bottom: 50px;
}
@media screen and (max-width: 1199px) {
  #production .bg .container .flex-box.top {
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 991px) {
  #production .bg .container .flex-box.top {
    flex-wrap: wrap;
  }
}
#production .bg .container .flex-box.bottom {
  gap: 70px;
  padding-left: 160px;
}
@media screen and (max-width: 1199px) {
  #production .bg .container .flex-box.bottom {
    justify-content: center;
    gap: 30px;
    padding-left: 0;
  }
}
@media screen and (max-width: 991px) {
  #production .bg .container .flex-box.bottom {
    flex-wrap: wrap;
  }
}
#production .bg .container .flex-box.bottom .circle:first-child::before {
  content: "";
  background-image: url(../images/production-shape.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 65px;
  height: 30px;
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (max-width: 1199px) {
  #production .bg .container .flex-box.bottom .circle:first-child::before {
    content: none;
  }
}
#production .bg .container .flex-box.bottom .img {
  max-width: 230px;
}
@media screen and (max-width: 1400px) {
  #production .bg .container .flex-box.bottom .img {
    max-width: 170px;
  }
}
#production .bg .container .flex-box .circle {
  background-color: #fff;
  border-radius: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 210px;
  height: 210px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  #production .bg .container .flex-box .circle {
    width: 190px;
    height: 190px;
  }
}
#production .bg .container .flex-box .circle span {
  font-size: 16px;
  color: #4ba5f9;
  position: absolute;
  top: 40px;
}
@media screen and (max-width: 1199px) {
  #production .bg .container .flex-box .circle span {
    font-size: 14px;
  }
}
#production .bg .container .flex-box .circle p {
  font-size: 20px;
  font-weight: 600;
  margin-top: 15px;
}
@media screen and (max-width: 1199px) {
  #production .bg .container .flex-box .circle p {
    font-size: 15px;
  }
}
#production .bg .container .flex-box .circle::after {
  content: "";
  background-image: url(../images/production-shape.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 65px;
  height: 30px;
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 2;
}
@media screen and (max-width: 991px) {
  #production .bg .container .flex-box .circle::after {
    content: none;
  }
}
#production .bg .container .flex-box .circle:last-child::after {
  content: none;
}
#production .bg .container p.text {
  color: #254999;
  font-size: 18px;
  text-align: center;
  font-weight: 700;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  position: relative;
  bottom: 30px;
}
@media screen and (max-width: 1399px) {
  #production .bg .container p.text {
    bottom: -10px;
  }
}
@media screen and (max-width: 1199px) {
  #production .bg .container p.text {
    left: unset;
    transform: inherit;
    -webkit-transform: inherit;
    -ms-transform: unset;
    bottom: unset;
    margin-top: 30px;
  }
}

#question .head {
  padding: 100px 0 50px;
}
#question .head h2 {
  position: relative;
  max-width: 430px;
  margin: auto;
  text-align: center;
  margin-bottom: 20px;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  #question .head h2 {
    max-width: 210px;
  }
}
#question .head h2 img.title {
  position: relative;
  z-index: 2;
}
#question .head h2 span {
  max-width: 180px;
  display: block;
  position: absolute;
  right: -70px;
  top: -80px;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  #question .head h2 span {
    max-width: 100px;
    right: -40px;
    top: -50px;
  }
}
@media screen and (max-width: 768px) {
  #question .head h2 span {
    right: 0;
    max-width: 75px;
    top: -45px;
  }
}
#question .head h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 996px) {
  #question .contents {
    padding: 0 20px;
  }
}
#question .contents .container {
  max-width: 1000px;
  margin: auto;
  background-color: #f3f5fb;
  position: relative;
  border-radius: 20px;
  padding: 0 30px 0;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  #question .contents .container {
    padding: 0 10px 0;
  }
}
@media screen and (max-width: 767px) {
  #question .contents .container .accordion {
    text-align: center;
  }
}
#question .contents .container .accordion h4 {
  position: relative;
  font-size: 18px;
  padding: 40px 0;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  #question .contents .container .accordion h4 {
    display: inline-block;
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  #question .contents .container .accordion h4 {
    font-size: 12px;
  }
}
#question .contents .container .accordion h4:before, #question .contents .container .accordion h4:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 30px;
  width: 15px;
  height: 2px;
  margin-top: -1px;
  background-color: #54a6ef;
  transform-origin: 50% 50%;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  #question .contents .container .accordion h4:before, #question .contents .container .accordion h4:after {
    right: -25px;
  }
}
#question .contents .container .accordion h4:before {
  transform: rotate(-90deg);
  opacity: 1;
  z-index: 2;
}
#question .contents .container .accordion h4.active:before {
  transform: rotate(0deg);
  background: #54a6ef !important;
}
#question .contents .container .accordion h4.active:after {
  transform: rotate(180deg);
  background: #54a6ef !important;
  opacity: 0;
}
#question .contents .container .accordion h4:hover {
  opacity: 0.5;
  transition: all 0.5s;
}
#question .contents .container .accordion ul {
  overflow: hidden;
  height: 0px;
}
#question .contents .container .accordion ul li {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px 40px;
  margin-bottom: 20px;
  text-align: left;
}
#question .bnr {
  max-width: 1200px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
  transition: all 0.5s;
}
/*#question .bnr:hover {
  opacity: 0.7;
  transition: all 0.5s;
}*/
#question .contact {
  background-image: linear-gradient(180deg, rgba(116, 221, 128, 0.6) 0%, rgba(33, 178, 167, 0.6) 100%);
  height: 400px;
  margin-top: 100px;
}
@media screen and (max-width: 1199px) {
  #question .contact {
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  #question .contact {
    height: auto;
  }
}
#question .contact .container {
  max-width: 1120px;
  margin: auto;
  position: relative;
}
#question .contact .container .box {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 30px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  #question .contact .container .box {
    justify-content: center;
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  #question .contact .container .box {
    display: block;
    padding: 50px 20px;
  }
}
#question .contact .container .box .left {
  margin-top: 60px;
}
#question .contact .container .box .left h4 {
  color: #fde574;
  text-align: center;
  font-size: 40px;
}
#question .contact .container .box .left h4 span {
  color: #fff;
  display: block;
  font-size: 32px;
}
@media screen and (max-width: 991px) {
  #question .contact .container .box .left h4 span {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  #question .contact .container .box .left h4 span {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  #question .contact .container .box .left h4 {
    font-size: 28px;
  }
}
@media screen and (max-width: 480px) {
  #question .contact .container .box .left h4 {
    font-size: 20px;
  }
}
#question .contact .container .box .left a {
  display: block;
  max-width: 460px;
  width: 100%;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  border-radius: 50px;
  padding: 40px 0;
  background-image: linear-gradient(180deg, rgb(37, 37, 153) 0%, rgb(75, 166, 250) 100%);
  color: #fff;
  box-shadow: 0px 10px 0px 1px #254999;
  margin-top: 30px;
  margin-left: auto;
  transition: all 0.3s;
}
@media screen and (max-width: 1199px) {
  #question .contact .container .box .left a {
    max-width: 300px;
    font-size: 25px;
    padding: 15px 0;
    margin-right: auto;
  }
}
#question .contact .container .box .left a:hover {
  box-shadow: unset;
  transform: translateY(4px);
  transition: all 0.3s;
}
#question .contact .container .box .right {
  max-width: 420px;
  margin-top: -60px;
}
@media screen and (max-width: 1199px) {
  #question .contact .container .box .right {
    max-width: 300px;
  }
}
@media screen and (max-width: 768px) {
  #question .contact .container .box .right {
    max-width: 300px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}
#question .contact .container .box .position {
  position: absolute;
  left: 0;
  top: -50px;
  max-width: 390px;
}
@media screen and (max-width: 1199px) {
  #question .contact .container .box .position {
    max-width: 250px;
    left: 20px;
  }
}

#company .container {
  max-width: 1000px;
  margin: auto;
}
#company .container .flex-box {
  margin: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#company .container .flex-box::after {
  content: "";
  background-color: #000;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  #company .container .flex-box::after {
    content: none;
  }
}
@media screen and (max-width: 768px) {
  #company .container .flex-box {
    flex-wrap: wrap;
  }
}
#company .container .flex-box .box {
  width: 50%;
}
@media screen and (max-width: 991px) {
  #company .container .flex-box .box {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  #company .container .flex-box .box {
    width: 100%;
  }
}
#company .container .flex-box .box .img {
  max-width: 340px;
  margin: auto;
}
#company .container .flex-box .box table {
  display: flex;
  justify-content: end;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #company .container .flex-box .box table {
    justify-content: center;
    margin-top: 50px;
    padding: 0 20px;
  }
}
#company .container .flex-box .box table tr th {
  padding-right: 50px;
  padding-bottom: 10px;
  font-weight: 600;
}
#company .bg {
  background-color: #f3f5fb;
  padding: 80px 0;
}
#company .bg .flex-box02 {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 1199px) {
  #company .bg .flex-box02 {
    gap: 20px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  #company .bg .flex-box02 {
    flex-wrap: wrap;
  }
}
#company .bg .flex-box02 a {
  display: block;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #company .bg .flex-box02 a {
    width: 100%;
  }
}
#company .bg .flex-box02 a .top {
  border-left: #000 1px solid;
  border-top: #000 1px solid;
  border-right: #000 1px solid;
  background-color: #fff;
  text-align: center;
  padding: 10px 0;
}
#company .bg .flex-box02 a .top h4 {
  color: #f0f8ff;
  font-size: 60px;
  position: relative;
  font-weight: bold;
  text-align: center;
}
#company .bg .flex-box02 a .top h4 span {
  color: #000;
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  font-weight: 500;
}
#company .bg .flex-box02 a .bottom {
  color: #fff;
  padding: 5px 0;
  text-align: center;
  font-size: 20px;
}
#company .bg .flex-box02 a .bottom.left {
  background-color: #254999;
}
#company .bg .flex-box02 a .bottom.right {
  background-color: #f45e51;
}

footer {
  background-color: #fff;
  padding: 20px 0;
  text-align: center;
}/*# sourceMappingURL=style.css.map */