@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

#global-header {
  width: 100%;
}
#global-header .inner {
  width: 1366px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#global-header .inner .logo {
  width: 7%;
  margin: 0 3% 0 3%;
}
#global-header .inner .logo a img {
  width: 100%;
  margin: 0 auto;
  display: block;
  height: auto;
  vertical-align: bottom;
}
#global-header .inner #global-navi {
  width: 80%;
  margin: 0 auto 0 0;
}
#global-header .inner #global-navi ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  width: 100%;
}
#global-header .inner #global-navi ul li {
  position: relative;
  width: 100%;
  z-index: 1;
}
#global-header .inner #global-navi ul li:hover ul {
  display: block;
  overflow: visible;
  top: 70px;
  background-color: #ea6515;
  color: #ffffff;
  width: 100%;
}
#global-header .inner #global-navi ul li a {
  color: #00649b;
  font-size: 1.55em;
  font-weight: bold;
  padding: 24px 0;
  width: 100%;
  display: inline-block;
  text-align: center;
  transition: all 0.5s ease;
}
#global-header .inner #global-navi ul li a span {
  transition: all 0.5s ease;
}
#global-header .inner #global-navi ul li a:hover span {
  color: #ffffff;
  display: block;
}
#global-header .inner #global-navi ul li a:hover {
  background: #00649b;
  color: #ffffff;
  padding: 24px 0px;
}
#global-header .inner #global-navi ul li ul {
  display: none;
  position: absolute;
  width: 100%;
}
#global-header .inner #global-navi ul li ul a {
  color: #ffffff;
  width: 100%;
}
#global-header .inner #global-navi ul li ul a:hover {
  width: 100%;
  text-align: center;
  background-color: #ea6515;
}
@media screen and (max-width: 1366px) {
  #global-header .inner {
    width: 100%;
  }
  #global-header .inner .logo {
    padding-left: 24px;
  }
}
@media screen and (max-width: 1024px) {
  #global-header .inner {
    height: 70px;
  }
  #global-header .inner .logo {
    width: 100%;
    text-align: center;
  }
  #global-header .inner .logo a {
    display: inline-block;
  }
  #global-header .inner .logo a img {
    width: auto;
    height: 70%;
  }
  #global-header .inner #global-navi {
    display: none;
  }
}
@media screen and (max-width: 415px) {
  #global-header .inner .logo a {
    width: 30%;
  }
  #global-header .inner .logo a img {
    width: 70%;
    height: auto;
  }
}

main#container .page-header {
  text-align: center;
  margin: 10% 0 3% 0;
}
@media screen and (max-width: 415px) {
  main#container .page-header {
    margin: 15% 0 10% 0;
  }
}
main#container .page-header h2 {
  display: inline-block;
  padding-right: 18px;
  font-size: 1.85em;
  letter-spacing: 0.25em;
  font-weight: bold;
}
main#container .page-header img {
  width: 30px;
}
main#container .page-header .maru1 {
  margin: 0 13px -8px 0;
}
main#container .page-header .maru2 {
  width: 45px;
  margin: 0 0 2px -2px;
}
main#container .page-header.contact-content {
  margin-bottom: 40px;
}

.contact-box {
  width: 70%;
  padding: 5%;
  margin: 2% auto 10% auto;
  display: flex;
  background: #fff;
  border: 4px solid #f2f8f9;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .contact-box {
    width: 100%;
  }
}
.contact-box .contact_left {
  width: 65%;
}
@media screen and (max-width: 415px) {
  .contact-box .contact_left {
    width: 100%;
  }
}
.contact-box .contact_left h2 {
  color: #00649b;
  font-size: 2em;
  font-weight: bold;
}
.contact-box .contact_left .contact_bottom {
  display: flex;
}
@media screen and (max-width: 415px) {
  .contact-box .contact_left .contact_bottom {
    width: 100%;
  }
}
.contact-box .contact_left .contact_bottom .small_box {
  width: 40%;
  background: #f4f9f9;
  margin: 1%;
  padding: 3%;
}
@media screen and (max-width: 415px) {
  .contact-box .contact_left .contact_bottom .small_box {
    padding: 2%;
  }
}
.contact-box .contact_left .contact_bottom .small_box img {
  text-align: center;
  margin: 5% auto 10% auto;
  width: 40px;
  display: block;
}
.contact-box .contact_left .contact_bottom .small_box p {
  text-align: left;
  font-size: 1.55em;
  padding: 5%;
}
@media screen and (max-width: 768px) {
  .contact-box .contact_left {
    width: 90%;
    margin: 0 auto;
  }
}
.contact-box .contact_right {
  width: 35%;
  margin: 4% 0 0 5%;
}
@media screen and (max-width: 415px) {
  .contact-box .contact_right {
    width: 90%;
    margin: 5% auto 0 auto;
  }
}
.contact-box .contact_right .right_top {
  display: flex;
  align-items: center;
  margin-bottom: 10%;
}
.contact-box .contact_right .right_top img {
  width: 40%;
}
.contact-box .contact_right p {
  font-size: 1.55em;
  margin-left: 3%;
}
.contact-box .contact_right p span {
  font-size: 1.2em;
  color: #00649b;
}
.contact-box .right_bottom img {
  margin-top: 3%;
  width: 100%;
}
.contact-box .right_bottom img:nth-child(1):hover {
  opacity: 0.5;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .contact-box {
    flex-direction: column;
  }
}

#key-visual {
  margin-bottom: 80px;
}

#key-visual {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}
#key-visual .top_box {
  width: 100%;
  height: 100%;
}
#key-visual .top_box .swiper-slide {
  width: 100%;
  height: 100%;
}
#key-visual .top_box .swiper-slide .slide-img {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
#key-visual .key-visual-content {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100%;
}
#key-visual .key-visual-content h2 img {
  width: 28%;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
}
@media screen and (max-width: 768px) {
  #key-visual .key-visual-content h2 img {
    width: 60%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
  }
}

.page-contents {
  width: 1366px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 1366px) {
  .page-contents {
    width: 100%;
  }
}

.contents-header {
  position: relative;
  border-bottom: 2px solid #ea6515;
  padding-bottom: 24px;
  margin-bottom: 80px;
}
.contents-header .inner {
  width: 1180px;
  margin: 0 auto;
  position: relative;
}
.contents-header .inner h2 {
  font-size: 2.4em;
  font-weight: bold;
  letter-spacing: 0.2em;
  position: relative;
  z-index: 1;
}
.contents-header .inner span.en {
  font-size: 68px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.15);
  position: absolute;
  top: -64px;
  left: 80px;
  z-index: 2;
  font-size: 1.7em;
}
@media screen and (max-width: 1024px) {
  .contents-header .inner {
    width: 100%;
    padding-left: 24px;
  }
}
@media screen and (max-width: 415px) {
  .contents-header .inner span.en {
    font-size: 32px;
    top: -36px;
  }
  .contents-header .top-key-text {
    width: 70%;
  }
}

.content-inner {
  margin: 0 auto 120px;
}
@media screen and (max-width: 1024px) {
  .content-inner {
    width: 90%;
  }
}

div.page-desc {
  width: 750px;
  margin: 0 auto 40px;
}
div.page-desc p {
  font-size: 1.55em;
  letter-spacing: 0.2em;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  div.page-desc {
    width: 90%;
  }
}

.hert_img {
  background: url("../images/hert.svg") no-repeat center center;
  background-size: 50%;
  width: 100%;
  display: flex;
}
@media screen and (max-width: 768px) {
  .hert_img {
    width: 100%;
    background-size: 100%;
  }
}
@media screen and (max-width: 415px) {
  .hert_img {
    width: 100%;
    flex-direction: column;
    height: 450px;
  }
}

.thought-section {
  width: 90%;
  margin: 0 auto;
  padding: 0 0;
}
.thought-section .thought-intro {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding: 60px 0;
}
.thought-section .thought-intro .intro-title {
  font-size: 5.5em;
  font-weight: 900;
  margin: 0 auto 30px;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #00649b 0%, #1a8fc4 50%, #46b4db 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
  animation: titleFadeIn 1.2s ease-out;
}
@media screen and (max-width: 768px) {
  .thought-section .thought-intro .intro-title {
    font-size: 3.2em;
  }
}
.thought-section .thought-intro .thought-message {
  font-size: 2.4em;
  font-weight: 600;
  line-height: 1.7;
  color: #2a2a2a;
  max-width: 950px;
  margin: 0 auto 40px;
  animation: messageFadeIn 1.5s ease-out 0.3s both;
}
@media screen and (max-width: 768px) {
  .thought-section .thought-intro .thought-message {
    font-size: 1.9em;
  }
}
.thought-section .thought-intro .intro-decoration {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #00649b, transparent);
  margin: 0 auto;
  border-radius: 2px;
  animation: decorationExpand 1s ease-out 0.6s both;
}
@keyframes titleFadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes messageFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes decorationExpand {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 120px;
    opacity: 1;
  }
}
.thought-section .customer-needs-section {
  margin: 5% 0;
}
.thought-section .customer-needs-section .section-heading {
  text-align: center;
  font-size: 2.2em;
  font-weight: bold;
  color: #00649b;
  margin-bottom: 4%;
}
.thought-section .customer-needs-section .needs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3%;
}
@media screen and (max-width: 1024px) {
  .thought-section .customer-needs-section .needs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .thought-section .customer-needs-section .needs-grid {
    grid-template-columns: 1fr;
  }
}
.thought-section .customer-needs-section .need-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border-radius: 24px;
  padding: 11%;
  box-shadow: 0 10px 30px rgba(0, 100, 155, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 100, 155, 0.05);
}
.thought-section .customer-needs-section .need-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 100, 155, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.thought-section .customer-needs-section .need-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00649b, #46b4db);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.thought-section .customer-needs-section .need-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 50px rgba(0, 100, 155, 0.15);
  border-color: rgba(0, 100, 155, 0.2);
}
.thought-section .customer-needs-section .need-card:hover::before {
  opacity: 1;
}
.thought-section .customer-needs-section .need-card:hover::after {
  transform: scaleX(1);
}
.thought-section .customer-needs-section .need-card .need-icon {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 25px rgba(0, 100, 155, 0.25);
  background: linear-gradient(135deg, #00649b 0%, #1a8fc4 50%, #46b4db 100%);
  transition: all 0.4s ease;
}
.thought-section .customer-needs-section .need-card .need-icon::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00649b, #46b4db);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}
.thought-section .customer-needs-section .need-card .need-icon i {
  font-size: 3.8em;
  color: #fff;
  transition: transform 0.4s ease;
}
@media screen and (max-width: 768px) {
  .thought-section .customer-needs-section .need-card .need-icon {
    width: 110px;
    height: 110px;
  }
  .thought-section .customer-needs-section .need-card .need-icon i {
    font-size: 2.8em;
  }
}
.thought-section .customer-needs-section .need-card:hover .need-icon {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 12px 35px rgba(0, 100, 155, 0.35);
}
.thought-section .customer-needs-section .need-card:hover .need-icon::before {
  opacity: 0.3;
}
.thought-section .customer-needs-section .need-card:hover .need-icon i {
  transform: scale(1.1);
}
.thought-section .customer-needs-section .need-card .need-title {
  font-size: 2em;
  font-weight: bold;
  color: #1a1a1a;
  text-align: center;
  margin: 20px 0;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .thought-section .customer-needs-section .need-card .need-title {
    font-size: 1.8em;
  }
}
.thought-section .customer-needs-section .need-card .need-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}
@media screen and (max-width: 768px) {
  .thought-section .customer-needs-section .need-card .need-list {
    margin: 20px 0 40px 0;
  }
}
.thought-section .customer-needs-section .need-card .need-list li {
  font-size: 1.6em;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
  padding-left: 30px;
  font-weight: 500;
}
.thought-section .customer-needs-section .need-card .need-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00649b;
  font-weight: bold;
}
.thought-section .customer-needs-section .need-card .need-list li:last-child {
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .thought-section .customer-needs-section .need-card .need-list li {
    font-size: 1.4em;
  }
}
.thought-section .solutions-section {
  margin: 10% 0 2%;
  padding: 6% 0 1.5%;
  background: linear-gradient(135deg, #f0f7fa 0%, #e3f2f7 50%, #f8fbfc 100%);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .thought-section .solutions-section {
    padding: 6% 0 17.5%;
  }
}
.thought-section .solutions-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(0, 100, 155, 0.03) 0%, transparent 60%);
  pointer-events: none;
}
.thought-section .solutions-section .section-heading-main {
  text-align: center;
  font-size: 3em;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 1%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .thought-section .solutions-section .section-heading-main {
    font-size: 2.3em;
  }
}
.thought-section .solutions-section .section-subheading {
  text-align: center;
  font-size: 2em;
  color: #00649b;
  font-weight: 600;
  margin-bottom: 5%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .thought-section .solutions-section .section-subheading {
    font-size: 1.6em;
  }
}
.thought-section .solutions-section .solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4%;
  width: 85%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .thought-section .solutions-section .solutions-grid {
    grid-template-columns: 1fr;
    width: 90%;
    gap: 3%;
  }
}
.thought-section .solutions-section .solution-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 100, 155, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(0, 100, 155, 0.08);
}
@media screen and (max-width: 768px) {
  .thought-section .solutions-section .solution-card {
    height: fit-content;
  }
}
.thought-section .solutions-section .solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #00649b 0%, #46b4db 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.thought-section .solutions-section .solution-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 100, 155, 0.2);
  border-color: rgba(0, 100, 155, 0.15);
}
.thought-section .solutions-section .solution-card:hover::before {
  transform: scaleX(1);
}
.thought-section .solutions-section .solution-card:hover .solution-image img {
  transform: scale(1.15);
}
.thought-section .solutions-section .solution-card:hover .solution-number {
  opacity: 0.5;
}
.thought-section .solutions-section .solution-card .solution-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}
.thought-section .solutions-section .solution-card .solution-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 100, 155, 0.15) 100%);
}
.thought-section .solutions-section .solution-card .solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.thought-section .solutions-section .solution-card .solution-content {
  padding: 9%;
}
.thought-section .solutions-section .solution-card .solution-number {
  font-size: 3em;
  font-weight: 900;
  color: #00649b;
  margin-bottom: 3%;
  opacity: 0.25;
  transition: opacity 0.4s ease;
  font-family: "Arial", sans-serif;
}
.thought-section .solutions-section .solution-card h4 {
  font-size: 2em;
  color: #1a1a1a;
  margin-bottom: 5%;
  font-weight: 900;
  position: relative;
  padding-bottom: 4%;
  line-height: 1.4;
}
.thought-section .solutions-section .solution-card h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, #00649b 0%, #46b4db 100%);
  border-radius: 2px;
}
@media screen and (max-width: 768px) {
  .thought-section .solutions-section .solution-card h4 {
    font-size: 1.7em;
  }
}
.thought-section .solutions-section .solution-card p {
  font-size: 1.5em;
  line-height: 1.8;
  color: #555;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .thought-section .solutions-section .solution-card p {
    font-size: 1.4em;
  }
}
.thought-section .value-section {
  margin: 4% 0;
  padding: 1.5% 0;
}
.thought-section .value-section .section-heading {
  text-align: center;
  font-size: 2.6em;
  font-weight: 900;
  color: #00649b;
  margin-bottom: 5%;
  position: relative;
  padding-bottom: 20px;
}
.thought-section .value-section .section-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #00649b, transparent);
  border-radius: 2px;
}
@media screen and (max-width: 768px) {
  .thought-section .value-section .section-heading {
    font-size: 2.2em;
  }
}
.thought-section .value-section .value-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .thought-section .value-section .value-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .thought-section .value-section .value-grid-new {
    grid-template-columns: 1fr;
  }
}
.thought-section .value-section .value-card-new {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 100, 155, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(0, 100, 155, 0.05);
  position: relative;
  overflow: hidden;
}
.thought-section .value-section .value-card-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00649b, #46b4db);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
}
.thought-section .value-section .value-card-new:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 100, 155, 0.15);
  border-color: rgba(0, 100, 155, 0.2);
}
.thought-section .value-section .value-card-new:hover::before {
  transform: scaleX(1);
}
.thought-section .value-section .value-card-new:hover .value-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 8px 20px rgba(0, 100, 155, 0.25);
}
.thought-section .value-section .value-card-new .value-icon {
  width: 85px;
  height: 85px;
  background: linear-gradient(135deg, #e6f3f9 0%, #cde7f3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: #00649b;
  font-size: 2.5em;
  box-shadow: 0 6px 15px rgba(0, 100, 155, 0.15);
  transition: all 0.4s ease;
  border: 3px solid rgba(0, 100, 155, 0.1);
}
.thought-section .value-section .value-card-new h4 {
  font-size: 2.2em;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 18px;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .thought-section .value-section .value-card-new h4 {
    font-size: 1.9em;
  }
}
.thought-section .value-section .value-card-new p {
  font-size: 1.9em;
  line-height: 1.7;
  color: #555;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .thought-section .value-section .value-card-new p {
    font-size: 1.55em;
  }
}
.thought-section .value-section .value-card-new p br {
  display: block;
}
@media screen and (max-width: 768px) {
  .thought-section .value-section .value-card-new p br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .thought-section {
    width: 95%;
  }
}

.results-section-renewed {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 100px;
}
@media screen and (max-width: 1366px) {
  .results-section-renewed {
    width: 95%;
  }
}
.results-section-renewed .results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .results-section-renewed .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .results-section-renewed .results-grid {
    grid-template-columns: 1fr;
  }
}
.results-section-renewed .result-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 100, 155, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(0, 100, 155, 0.08);
}
.results-section-renewed .result-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #00649b 0%, #46b4db 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 2;
}
.results-section-renewed .result-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 100, 155, 0.18);
  border-color: rgba(0, 100, 155, 0.15);
}
.results-section-renewed .result-card:hover::before {
  transform: scaleX(1);
}
.results-section-renewed .result-card:hover .result-overlay {
  opacity: 1;
}
.results-section-renewed .result-card:hover .result-image img {
  transform: scale(1.08);
}
.results-section-renewed .result-card:hover .result-content h3 {
  color: #ea6515;
}
.results-section-renewed .result-card .result-image {
  width: 100%;
  height: 280px;
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
}
.results-section-renewed .result-card .result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.results-section-renewed .result-card .result-image .result-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 100, 155, 0.85) 0%, rgba(70, 180, 219, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.results-section-renewed .result-card .result-image .result-overlay .btn {
  color: #fff;
  border: 2px solid #fff;
  padding: 14px 35px;
  font-size: 1.5em;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  border-radius: 50px;
  background: transparent;
  backdrop-filter: blur(5px);
}
.results-section-renewed .result-card .result-image .result-overlay .btn:hover {
  background: #fff;
  color: #00649b;
  transform: scale(1.08);
}
.results-section-renewed .result-card .result-content {
  padding: 30px;
}
.results-section-renewed .result-card .result-content h3 {
  font-size: 2em;
  font-weight: 900;
  color: #00649b;
  margin-bottom: 18px;
  border-left: 5px solid #ea6515;
  padding-left: 18px;
  transition: color 0.3s ease;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .results-section-renewed .result-card .result-content h3 {
    font-size: 1.7em;
  }
}
.results-section-renewed .result-card .result-content p {
  font-size: 1.5em;
  line-height: 1.7;
  color: #555;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .results-section-renewed .result-card .result-content p {
    font-size: 1.4em;
  }
}

.service-btn {
  position: absolute;
  text-align: center;
  margin-bottom: 20px;
  bottom: 0;
  width: 85%;
}
.service-btn a {
  font-size: 1.55em;
  transition: all 0.8s ease;
  background: #46b4db;
  padding: 10px 20px 15px 20px;
}
.service-btn a:hover {
  opacity: 0.5;
  color: #333;
  padding: 10px 20px 15px 20px;
  transition: all 0.8s ease;
}

.page-desc.product {
  margin-bottom: 40px;
}

.contact-box {
  margin: 0 auto 120px;
}
.contact-box p.attention {
  font-size: 1.4em;
  line-height: 1.8;
  margin-bottom: 32px;
}
.contact-box p.btn {
  text-align: center;
}
.contact-box p.btn a {
  display: inline-block;
  text-align: center;
  font-size: 1.4em;
  padding: 12px 40px;
  background: #f3f3f3;
  transition: all 0.6s ease;
}
.contact-box p.btn a:hover {
  background: #1a1a1a;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .contact-box {
    width: 90%;
  }
}
@media screen and (max-width: 415px) {
  .contact-box p.attention br {
    display: none;
  }
}

.torihiki_wrap {
  width: 65%;
  margin: 7% auto 0 auto;
}
.torihiki_wrap ul {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.torihiki_wrap ul li {
  width: 33%;
  font-size: 1.55em;
  padding: 1.5% 2%;
  background: #9ed3e5;
  text-align: center;
}
.torihiki_wrap ul li:nth-child(even) {
  background: #e6ecef;
  color: #00649b;
}
@media screen and (max-width: 415px) {
  .torihiki_wrap ul li {
    width: 40%;
  }
  .torihiki_wrap ul li:nth-child(3) {
    background: #e6ecef;
    color: #00649b;
  }
  .torihiki_wrap ul li:nth-child(4) {
    background: #9ed3e5;
  }
  .torihiki_wrap ul li:nth-child(7) {
    background: #e6ecef;
    color: #00649b;
  }
  .torihiki_wrap ul li:nth-child(8) {
    background: #9ed3e5;
  }
}
@media screen and (max-width: 415px) {
  .torihiki_wrap ul li {
    width: 50%;
    font-size: 1.55em;
  }
}
@media screen and (max-width: 415px) {
  .torihiki_wrap {
    width: 90%;
  }
}

.feature_wrap {
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.feature_wrap .fe_top1 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3%;
}
.feature_wrap .fe_top1 img {
  width: 5%;
  margin-top: 3%;
}
@media screen and (max-width: 415px) {
  .feature_wrap .fe_top1 img {
    width: 20%;
  }
}
.feature_wrap .fe_top1 h2 {
  font-size: 4em;
  margin-left: 3%;
  font-weight: bold;
  text-align: center;
}
.feature_wrap .fe_top1 h2 span {
  color: #00649b;
  font-weight: bold;
}
.feature_wrap .fe_top2 {
  width: 40%;
}
.feature_wrap .fe_top2 p {
  width: 100%;
  font-size: 1.7em;
  padding: 2% 5%;
  border-radius: 50px;
  border: 1px solid #00649b;
  text-align-last: center;
  margin: 5% 0;
}
@media screen and (max-width: 415px) {
  .feature_wrap .fe_top2 {
    width: 90%;
  }
}
.feature_wrap img {
  margin-bottom: 3%;
  width: 50%;
}
@media screen and (max-width: 415px) {
  .feature_wrap img {
    width: 90%;
  }
}
.feature_wrap .fe_bottom {
  width: 60%;
  background: #FFF;
}
.feature_wrap .fe_bottom p {
  font-size: 1.55em;
  padding: 7%;
  text-align: center;
  line-height: 1.7;
}
@media screen and (max-width: 415px) {
  .feature_wrap .fe_bottom {
    width: 90%;
  }
}

#global-footer .footer-inner {
  background: url("../images/footer.jpg") no-repeat center;
  background-size: cover;
  height: 485px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#global-footer .footer-inner h1 {
  width: 15%;
}
#global-footer .footer-inner h1 a {
  padding: 12px 0;
  display: inline-block;
}
#global-footer .footer-inner h1 a img {
  vertical-align: bottom;
  width: 80%;
  height: auto;
  background: #fff;
  padding: 4%;
}
@media screen and (max-width: 415px) {
  #global-footer .footer-inner h1 a img {
    width: 20%;
  }
}
@media screen and (max-width: 1024px) {
  #global-footer .footer-inner h1 {
    width: 30%;
  }
}
@media screen and (max-width: 415px) {
  #global-footer .footer-inner h1 {
    width: 10%;
  }
}
#global-footer .footer-inner h2 {
  font-size: 1.6em;
  color: #fff;
}
#global-footer .footer-inner h2 span {
  font-size: 1.55em;
  color: #fff;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 415px) {
  #global-footer .footer-inner h2 span {
    font-size: 1.1em;
  }
}
#global-footer .footer-inner .footer-navi {
  width: 100%;
  margin-left: 3%;
}
#global-footer .footer-inner .footer-navi ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  width: 100%;
}
#global-footer .footer-inner .footer-navi ul li {
  position: relative;
  z-index: 1;
  width: 100%;
}
#global-footer .footer-inner .footer-navi ul li a {
  color: #fff;
  font-size: 1.55em;
  font-weight: bold;
  padding: 12px 0px;
  width: 100%;
  display: inline-block;
  text-align: center;
  transition: all 0.5s ease;
}
#global-footer .footer-inner .footer-navi ul li a span {
  color: #fff;
  transition: all 0.5s ease;
  display: inline-block;
}
#global-footer .footer-inner .footer-navi ul li a:hover span {
  color: #00649b;
  display: block;
}
#global-footer .footer-inner .footer-navi ul li a:hover {
  background: #fff;
  color: #00649b;
  padding: 12px 0px;
  display: block;
}
@media screen and (max-width: 1366px) {
  #global-footer .footer-inner {
    width: 100%;
  }
  #global-footer .footer-inner h1 {
    padding-left: 24px;
  }
}
@media screen and (max-width: 415px) {
  #global-footer .footer-inner {
    height: 100px;
    align-items: center;
    justify-content: center;
  }
}
#global-footer .copy small {
  display: block;
  width: 1366px;
  margin: 0 auto 0 auto;
  color: #ffffff;
  font-size: 1.2em;
}
@media screen and (max-width: 1366px) {
  #global-footer .copy small {
    width: 100%;
    padding-left: 24px;
  }
}
@media screen and (max-width: 1024px) {
  #global-footer .copy small {
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  #global-footer .footer-inner {
    width: 100%;
  }
  #global-footer .footer-inner h1 {
    width: 30%;
    text-align: center;
  }
  #global-footer .footer-inner .footer-navi {
    display: none;
  }
}
@media screen and (max-width: 415px) {
  #global-footer .footer-inner {
    width: 100%;
  }
  #global-footer .footer-inner h1 {
    width: 30%;
    padding-right: 10px;
  }
  #global-footer .footer-inner h1 a {
    padding: 6px 0 10px;
  }
  #global-footer .footer-inner h1 a img {
    width: 90%;
  }
  #global-footer .copy small {
    padding-right: 10px;
  }
}

.copy_small {
  width: 100%;
  text-align: center;
  color: #fff;
}

.footer_top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1300px;
  margin: 6% auto 0 auto;
  justify-content: center;
  align-items: center;
}

/*# sourceMappingURL=index.css.map */
