@charset "UTF-8";

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

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

input,
button,
textarea,
select {
  font: inherit;
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-size: 62.5%;
}

@media screen and (max-width: 1300px) {
  html {
    font-size: 50%;
  }
}

@media screen and (max-width: 1000px) {
  html {
    font-size: 45%;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  width: 100%;
  -webkit-text-size-adjust: none;
  font-family: "M PLUS 1", sans-serif;
  color: #333333;
  font-weight: 500;
  background-color: #fff;
  font-size: 1.6rem;
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

@keyframes show {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

a {
  text-decoration: none;
  color: #333333;
}

@media screen and (min-width: 769px) {
  a:hover {
    opacity: 0.5;
  }
}

#contents {
  overflow: hidden;
}

body.faq-archive #contents {
  overflow: initial;
}

.contents-box {
  padding: 0 20px;
}

.contents-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

/*-----------------------------------
header
-------------------------------------*/
#globalHeader {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  padding: 20px 4rem;
  background-color: #fff;
  font-weight: 800;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#globalHeader .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: 80px;
  position: relative;
  transition: background-color 0.4s ease;
}

#globalHeader .logo {
  padding: 0 2rem 0 0;
}

#globalHeader .logo img {
  max-width: 18rem;
}

#globalHeader .global-navi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 2rem;
}

#globalHeader .global-navi .top-link {
  display: flex;
  justify-content: end;
  font-size: 1.4rem;
  padding-bottom: 5px;
}

#globalHeader .global-navi .page-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 2.5rem;
}

#globalHeader .global-navi .page-link .has-sub {
  position: relative;
  padding-right: 2rem;
}

#globalHeader .global-navi .page-link .has-sub::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/common/bottom_arrow.png) no-repeat;
  top: 0.9rem;
  right: 0.3rem;
  width: 1rem;
  height: 0.8rem;
  transition: transform 0.3s ease;
}

#globalHeader .global-navi .page-link .has-sub:hover::before {
  transform: rotate(180deg);
}

#globalHeader .global-navi .page-link .has-sub:hover::after {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/common/header_border.png) no-repeat;
  bottom: -33px;
  left: 0;
  width: 8.3rem;
  width: 100%;
  height: 0.6rem;
}

#globalHeader .global-navi .page-link .has-sub .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0px;
  z-index: 1000;
  padding-top: 33px;
}

#globalHeader .global-navi .page-link .has-sub:hover .sub-menu {
  display: block;
}

#globalHeader .global-navi .page-link .has-sub .sub-menu ul {
  z-index: 1000;
  padding: 3rem 6rem 1.5rem 3rem;
  background-color: #fff;
  border-radius: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#globalHeader .global-navi .page-link .has-sub .service-sub-menu-frame {
  padding: 3rem 1.2rem 1.5rem 3rem;
  background-color: #fff;
  border-radius: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

#globalHeader .global-navi .page-link .has-sub .service-sub-menu-frame ul {
  max-height: min(25rem, calc(100vh - 18.5rem));
  padding: 0 4.8rem 0 0;
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #aaa transparent;
}

#globalHeader .global-navi .page-link .has-sub .service-sub-menu-frame ul::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}

#globalHeader .global-navi .page-link .has-sub .service-sub-menu-frame ul::-webkit-scrollbar-track {
  background-color: transparent;
}

#globalHeader .global-navi .page-link .has-sub .service-sub-menu-frame ul::-webkit-scrollbar-thumb {
  background-color: #aaa;
  border-radius: 999px;
}

#globalHeader .global-navi .page-link .has-sub .sub-menu li a {
  display: block;
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 1.5rem;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-left: 2rem;
}

#globalHeader .global-navi .page-link .has-sub .sub-menu li a::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/common/list_dot.png) no-repeat;
  top: 0.7rem;
  left: 0rem;
  width: 1rem;
  height: 0.8rem;
}

#globalHeader .global-navi .other-btn a.sp {
  font-size: 1.8rem;
  color: #fff;
  background-color: #007bac;
  border-radius: 8rem;
  height: 8rem;
  width: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

#globalHeader .global-navi .other-btn .contact {
  font-size: 1.8rem;
  color: #fff;
  background-color: #007bac;
  border-radius: 8rem;
  height: 8rem;
  width: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#globalHeader .global-navi .other-btn .contact .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 2.2rem;
  z-index: 1000;
  padding-top: 2rem;
}

#globalHeader .global-navi .other-btn .contact:hover .sub-menu {
  display: block;
}

#globalHeader .global-navi .other-btn .contact .sub-menu ul {
  z-index: 1000;
  padding: 3rem 6rem 1.5rem 3rem;
  background-color: #fff;
  border-radius: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#globalHeader .global-navi .other-btn .contact .sub-menu li a {
  display: block;
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 1.5rem;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-left: 2rem;
}

#globalHeader .global-navi .other-btn .contact .sub-menu li a::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/common/list_dot.png) no-repeat;
  top: 0.7rem;
  left: 0rem;
  width: 1rem;
  height: 0.8rem;
}

@media screen and (min-width: 769px) {

  #globalHeader .global-navi .page-link .has-sub .sub-menu li a:hover,
  #globalHeader .global-navi .other-btn .contact .sub-menu li a:hover {
    opacity: 1;
    text-decoration: underline;
  }
}

#globalHeader .sp-menu {
  position: fixed;
  z-index: 110;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
}

#globalHeader .sp-menu a {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  top: 2px;
}

#globalHeader .sp-menu a.noactive span {
  animation-duration: 0s !important;
}

#globalHeader .sp-menu a.active span:nth-of-type(1) {
  animation-name: menuAnim1;
  animation-timing-function: linear;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}

#globalHeader .sp-menu a.active span:nth-of-type(3) {
  animation-name: menuAnim3;
  animation-timing-function: linear;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}

#globalHeader .sp-menu a.active span:nth-of-type(2) {
  display: none;
}

#globalHeader .sp-menu a span {
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #333333;
}

#globalHeader .sp-menu a.active span {
  width: 30px;
}

#globalHeader .sp-menu a span:nth-of-type(1) {
  top: 10px;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  animation-name: menuAnim4;
  animation-timing-function: linear;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}

#globalHeader .sp-menu a span:nth-of-type(2) {
  top: 18px;
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

#globalHeader .sp-menu a span:nth-of-type(3) {
  top: 26px;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  animation-name: menuAnim6;
  animation-timing-function: linear;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}

@keyframes menuAnim1 {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    top: 18px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

@keyframes menuAnim3 {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    top: 18px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

@keyframes menuAnim4 {
  0% {
    top: 18px;
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }

  100% {
    top: 10px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@keyframes menuAnim6 {
  0% {
    top: 18px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
  }

  100% {
    top: 26px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@media screen and (max-width: 1100px) {
  #globalHeader .global-navi {
    gap: 1.5rem;
  }

  #globalHeader .global-navi .page-link {
    gap: 1.5rem;
  }

  #globalHeader .global-navi .other-btn .contact {
    width: 15rem;
  }

  #globalHeader .global-navi .other-btn .contact .sub-menu {
    left: 0;
  }
}

@media screen and (max-width: 768px) {
  #globalHeader {
    height: 80px;
    padding: 20px;
  }

  #globalHeader .header-inner {
    height: 40px;
  }

  #globalHeader .logo {
    padding: 0;
  }

  #globalHeader .logo img {
    max-width: 12.5rem;
  }

  #globalHeader .global-navi {
    display: none;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 90px 20px 60px;
    background-color: #fff;
  }

  #globalHeader .global-navi .sp-logo {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    padding: 0 0px;
    z-index: 101;
    background-color: #fff;
  }

  #globalHeader .global-navi .sp-logo a {
    width: 100%;
    padding: 20px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    display: -webkit-flex;
    flex-wrap: nowrap;
    height: 80px;
    position: relative;
  }

  #globalHeader .global-navi .sp-logo a img {
    max-width: 12.5rem;
  }

  #globalHeader .global-navi .page-link {
    display: block;
  }

  #globalHeader .global-navi .page-link a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ededed;
    padding: 20px 10px;
    font-size: 15px;
    font-weight: 800;
    position: relative;
  }

  #globalHeader .global-navi .page-link a::before {
    content: "";
    background-size: 100% !important;
    position: absolute;
    background: url(../images/common/sp_arrow.png) no-repeat;
    top: 25px;
    right: 12px;
    width: 10px;
    height: 13px;
  }

  #globalHeader .global-navi .page-link .sp-sub {
    border-bottom: 1px solid #ededed;
  }

  #globalHeader .global-navi .page-link .sp-sub .sp-head a::before {
    display: none;
  }

  #globalHeader .global-navi .page-link .sp-sub .sp-head {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
    font-size: 15px;
    font-weight: 800;
  }

  #globalHeader .global-navi .page-link .sp-sub .sp-head::before,
  #globalHeader .global-navi .page-link .sp-sub .sp-head::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    background: #333333;
    transition: 0.2s;
  }

  #globalHeader .global-navi .page-link .sp-sub .sp-head::after {
    width: 16px;
    height: 2px;
    transform: translateY(-50%);
  }

  #globalHeader .global-navi .page-link .sp-sub .sp-head::before {
    width: 2px;
    height: 16px;
    transform: translateY(-50%);
    right: 17px;
  }

  #globalHeader .global-navi .page-link .sp-sub.active .sp-head::before {
    transform: translateY(-50%) scaleY(0);
  }

  #globalHeader .global-navi .page-link .sp-sub .sp-head a {
    display: block;
    width: auto;
    padding: 0;
    border-bottom: unset;
  }

  #globalHeader .global-navi .page-link .sp-sub ul li a {
    font-size: 14px;
    border-bottom: unset;
    padding: 10px 10px 10px 30px;
    position: relative;
  }

  #globalHeader .global-navi .page-link .sp-sub ul li a::before {
    content: "";
    background-size: 100% !important;
    position: absolute;
    background: url(../images/common/list_dot.png) no-repeat;
    left: 13px;
    width: 10px;
    height: 3px;
    top: auto;
  }

  #globalHeader .global-navi .page-link .sp-sub ul li a.sub-top {
    padding-top: 0;
    font-weight: 800;
    font-size: 15px;
    padding: 0px 10px 10px 10px;
  }

  #globalHeader .global-navi .page-link .sp-sub ul li a.sub-top::before {
    display: none;
  }

  #globalHeader .global-navi .page-link .sp-sub ul li:last-child a {
    padding-bottom: 25px;
  }

  #globalHeader .global-navi .other-btn {
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 40px;
    gap: 20px;
  }

  #globalHeader .global-navi .other-btn a.sp {
    width: 100%;
    height: 70px;
    font-size: 16px;
  }

  #globalHeader .global-navi .other-btn a::before {
    content: "";
    background-size: 100% !important;
    position: absolute;
    background: url(../images/common/white_arrow.png) no-repeat;
    right: 50px;
    width: 8px;
    height: 11px;
    top: auto;
  }

  #globalHeader .global-navi .other-btn a.download {
    margin-bottom: 20px;
    color: #007bac;
    background-color: #f0fbfe;
    border: 2px solid #007bac;
  }

  #globalHeader .global-navi .other-btn a.download::before {
    background: url(../images/common/blue_arrow.png) no-repeat;
  }
}

/*---------------------------
footer
-----------------------------*/
#globalFooter {
  background-color: #fff;
  overflow: hidden;
}

#globalFooter .sub-head {
  color: #007bac;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
}

#globalFooter .head {
  font-size: 3.2rem;
  font-weight: 600;
  padding-bottom: 1rem;
}

#globalFooter .detail {
  font-size: 1.4rem;
  line-height: 1.7;
  font-weight: 600;
}

#globalFooter .case-inner {
  background-size: 100% !important;
  background: url(../images/common/case_bg.png) no-repeat;
  width: 100%;
  height: 52.4rem;
  padding: 7rem 20px;
  z-index: 2;
  position: relative;
}

@media screen and (max-width: 1400px) {
  #globalFooter .case-inner {
    background-size: 1400px 524px !important;
  }
}

@media screen and (max-width: 1100px) {
  #globalFooter .case-inner {
    background-size: 140rem 52.4rem !important;
  }
}

#globalFooter .case-inner .inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  height: 100%;
}

#globalFooter .case-inner .title {
  font-size: 8.6rem;
  font-weight: 600;
  color: #007bac;
  font-family: "Zen Maru Gothic", sans-serif;
}

#globalFooter .case-inner .content {
  padding: 6rem 8rem;
  border-radius: 4rem;
  box-shadow: 0 0px 12px rgba(0, 0, 0, 0.15);
}

#globalFooter .case-inner .head span {
  position: relative;
  display: inline-block;
}

#globalFooter .case-inner .head span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: .7rem;
  height: .8rem;
  width: 100%;
  background: linear-gradient(to right, #03c5f1, #77d4a0, #aedc0a);
  z-index: -1;
}

#globalFooter .case-inner .detail {
  font-size: 1.6rem;
  padding: 1rem 0 4rem;
}

#globalFooter .case-inner .common-blue-btn {
  width: max-content;
  font-size: 1.8rem;
  font-weight: 600;
  margin: auto 0 0 auto;
}

#globalFooter .contact-inner {
  background-size: 100% !important;
  background: url(../images/common/footer_contact_bk.png) no-repeat;
  width: 100%;
  height: 51rem;
  padding: 0px 20px;
  z-index: 2;
  position: relative;
}

@media screen and (max-width: 1400px) {
  #globalFooter .contact-inner {
    background-size: 1400px 510px !important;
  }
}

@media screen and (max-width: 1100px) {
  #globalFooter .contact-inner {
    background-size: 140rem 51rem !important;
  }
}

#globalFooter .contact-inner .text-area {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: end;
  height: 100%;
}

#globalFooter .contact-inner .text-area .sub-head {
  font-size: 1.8rem;
}

#globalFooter .contact-inner .text-area .head {
  font-size: 4.2rem;
  padding-bottom: 3rem;
}

#globalFooter .contact-inner .text-area .detail {
  padding-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: 500;
}

#globalFooter .contact-inner .text-area .common-arrow-btn {
  width: max-content;
  font-size: 1.8rem;
  font-weight: 800;
  margin-top: 3rem;
}

#globalFooter .contact-inner .text-area .common-arrow-btn:hover {
  opacity: 1;
}

#globalFooter .contact-inner .text-area .common-arrow-btn:hover span {
  text-decoration: underline;
}

#globalFooter .support-download {
  max-width: 1240px;
  margin: auto;
  padding: 4rem 20px 10rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  position: relative;
  z-index: 1;
}

#globalFooter .support-download::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/common/footer_dl_bk.png) no-repeat;
  top: -18rem;
  right: -47rem;
  width: 68.9rem;
  height: 68.8rem;
  z-index: -1;
}

#globalFooter .support-download a {
  background: linear-gradient(100deg, #ebfafc 10%, #f5fbee 100%);
  border-radius: 20px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
}

#globalFooter .support-download a:hover {
  opacity: 1;
}

#globalFooter .support-download a .detail {
  padding-bottom: 2rem;
}

#globalFooter .support-download a .common-arrow-btn {
  width: max-content;
  font-size: 1.6rem;
  font-weight: 800;
  margin: auto 0 0 auto;
}

#globalFooter .support-download a:hover .common-arrow-btn span {
  text-decoration: underline;
}

#globalFooter .footer-inner {
  max-width: 1240px;
  margin: auto;
  padding: 0rem 20px 6rem;
}

#globalFooter .footer-top {
  display: block;
  position: relative;
  z-index: 1;
}

#globalFooter .footer-top::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/common/footer_top_bk.png) no-repeat;
  top: 9rem;
  /* left: -36rem; */
  left: -50rem;
  width: 50rem;
  height: 50.1rem;
  z-index: -1;
}

#globalFooter .footer-top .logo a {
  display: block;
  width: fit-content;
}

#globalFooter .footer-top .logo img {
  width: 32rem;
}

#globalFooter .footer-top .global-navi {
  display: grid;
  /* grid-template-columns: 1fr 1fr 1fr 1fr; */
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  padding-top: 6rem;
}

#globalFooter .footer-top .global-navi a:hover {
  opacity: 1;
  text-decoration: underline;
}

#globalFooter .footer-top .global-navi .page-link li a.main:hover {
  text-decoration: none;
  opacity: .5;
}

#globalFooter .footer-top .global-navi .page-link li .main {
  font-size: 1.8rem;
  font-weight: 800;
  border-radius: 10px;
  background-color: #f8f8f8;
  height: 6.8rem;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  position: relative;
}

#globalFooter .footer-top .global-navi .page-link li a.main::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/common/footer_arrow.png) no-repeat;
  right: 2rem;
  width: 1.2rem;
  height: 1.5rem;
  top: auto;
}

#globalFooter .footer-top .global-navi .page-link li.sub {
  padding: 2rem 0 0 4rem;
  font-weight: 800;
  position: relative;
}

#globalFooter .footer-top .global-navi .page-link li.sub::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/common/list_dot.png) no-repeat;
  top: 2.9rem;
  left: 2rem;
  width: 1rem;
  height: 0.8rem;
}

#globalFooter .footer-top .global-navi .page-link li.arrow .common-arrow-btn {
  width: max-content;
  font-size: 1.6rem;
  font-weight: 800;
  margin: 2rem 0 0 2rem;
}

#globalFooter .footer-top .global-navi .page-link li.arrow:nth-of-type(3) {
  margin-bottom: 3rem;
}

#globalFooter .footer-top .global-navi .page-link li.other {
  font-weight: 800;
  padding-top: 2rem;
}

#globalFooter .footer-mid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  margin: 6rem 0;
}

#globalFooter .footer-mid .link-area {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
}

#globalFooter .footer-mid .link-area a {
  font-size: 1.4rem;
  position: relative;
  padding-left: 1.5rem;
}

#globalFooter .footer-mid .link-area a::before {
  position: absolute;
  content: "";
  background: #575757;
  width: .8rem;
  height: .8rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  z-index: 0;
}

#globalFooter .footer-mid .sns-area {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
}

#globalFooter .footer-btm {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  font-size: 1.4rem;
}

#globalFooter .footer-btm .copyright {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  #globalFooter .footer-inner {
    padding: 0rem 20px 5rem;
  }

  #globalFooter .case-inner {
    background: url(../images/common/case_bg_sp.png) no-repeat;
    height: 500px;
    padding: 40px 20px;
  }

  #globalFooter .case-inner .inner {
    display: block;
  }

  #globalFooter .case-inner .title {
    font-size: 48px;
    line-height: 1;
    padding-bottom: 20px;
  }

  #globalFooter .case-inner .content {
    padding: 40px 20px;
    border-radius: 10px;
  }

  #globalFooter .case-inner .head span {
    font-size: 21px;
  }

  #globalFooter .case-inner .head span::after {
    bottom: 6px;
    height: 5px;
  }

  #globalFooter .case-inner .detail {
    font-size: 13px;
    padding: 10px 0 20px;
  }

  #globalFooter .case-inner .common-blue-btn {
    font-size: 14px;
    font-weight: 600;
    margin: auto;
    height: 55px;
    width: 225px;
  }

  #globalFooter .contact-inner {
    background: url(../images/common/footer_contact_bk_sp.png) no-repeat;
    background-size: 100% !important;
    height: 420px;
    padding-bottom: 50px;
  }

  #globalFooter .contact-inner .text-area {
    display: flex;
    align-items: end;
    justify-content: start;
    height: 100%;
  }

  #globalFooter .contact-inner .text-area .sub-head {
    font-size: 13px;
  }

  #globalFooter .contact-inner .text-area .head {
    font-size: 26px;
    padding-bottom: 10px;
  }

  #globalFooter .contact-inner .text-area .inner {
    width: 100%;
  }

  #globalFooter .contact-inner .text-area .detail {
    font-size: 14px;
  }

  #globalFooter .contact-inner .text-area .common-arrow-btn {
    font-size: 15px;
    margin: 15px 0 0 auto;
  }

  #globalFooter .common-arrow-btn img {
    width: 2rem;
    height: 2rem;
  }

  #globalFooter .support-download {
    display: block;
    padding: 3rem 20px 3rem;
  }

  #globalFooter .support-download a {
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 20px;
  }

  #globalFooter .sub-head {
    font-size: 13px;
  }

  #globalFooter .head {
    font-size: 19px;
  }

  #globalFooter .detail {
    font-size: 13px;
  }

  #globalFooter .support-download a .common-arrow-btn {
    font-size: 13px;
  }

  #globalFooter .support-download::before {
    background: url(../images/common/footer_top_bk.png) no-repeat;
    top: -6rem;
    right: auto;
    left: 0;
    width: 18.9rem;
    height: 21.8rem;
  }

  #globalFooter .footer-top::before {
    background: url(../images/common/footer_dl_bk.png) no-repeat;
    top: auto;
    left: auto;
    right: -9rem;
    width: 24rem;
    height: 24rem;
    bottom: -20px;
  }

  #globalFooter .footer-top .logo {
    text-align: center;
    padding-bottom: 40px;
  }

  #globalFooter .footer-top .logo img {
    width: 220px;
  }

  #globalFooter .footer-top .logo a {
    width: auto;
  }

  #globalFooter .footer-top .global-navi {
    display: block;
    padding-top: 0;
  }

  #globalFooter .footer-top .global-navi .page-link li .main {
    height: 60px;
    font-size: 15px;
    margin-bottom: 20px;
    padding: 0 10px;

  }

  #globalFooter .footer-top .global-navi .page-link li a.main::before {
    background: url(../images/common/footer_arrow_sp.png) no-repeat;
    right: 20px;
    width: 8px;
    height: 11px;
  }

  #globalFooter .footer-top .global-navi .page-link li.sub {
    border-bottom: unset;
    margin-bottom: 0px;
  }

  #globalFooter .footer-top .global-navi .page-link .sp-sub {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  #globalFooter .footer-top .global-navi .page-link .sp-sub .sp-head {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    font-size: 15px;
    margin-bottom: 20px;
    font-weight: 800;
    border-radius: 10px;
    background-color: #f8f8f8;
    padding: 0 10px;
    display: flex;
    align-items: center;
    position: relative;
  }

  #globalFooter .footer-top .global-navi .page-link .sp-sub ul li:first-child {
    padding-top: 0;
  }

  #globalFooter .footer-top .global-navi .page-link .sp-sub ul li:last-child {
    padding-bottom: 25px;
  }

  #globalFooter .footer-top .global-navi .page-link li.arrow .common-arrow-btn {
    font-size: 14px;
    margin: 20px 0 0 10px;
  }

  #globalFooter .footer-top .global-navi .page-link li.arrow:nth-of-type(3) {
    margin-bottom: 10px;
  }

  #globalFooter .footer-mid {
    margin: 40px 0 20px;
    display: block;
    border-bottom: none;
    padding: 3rem 0;
  }

  #globalFooter .footer-mid .link-area {
    display: block;
    padding-bottom: 20px;
    border-bottom: 1px solid #ebebeb;
  }

  #globalFooter .footer-mid .link-area a {
    width: 100%;
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
  }

  #globalFooter .footer-mid .sns-area {
    justify-content: center;
    gap: 20px;
    padding: 40px 10px 0;
  }

  #globalFooter .footer-btm {
    display: block;
    text-align: center;
    font-size: 12px;
  }

  #globalFooter .footer-btm .copyright {
    font-size: 14px;
    padding-top: 25px;
  }

  #globalFooter .footer-top .global-navi .page-link li.sub-top {
    font-size: 15px;
    font-weight: 800;
    padding-left: 10px;
  }

  #globalFooter .footer-top .global-navi .page-link li.sub {
    padding: 15px 0 0 30px;
  }

  #globalFooter .footer-top .global-navi .page-link li.sub::before {
    left: 10px;
    top: 23px;
  }

  #globalFooter .footer-top .global-navi .page-link .sp-sub ul li.sub:first-child::before {
    top: 8px;
  }

  #globalFooter .footer-top .global-navi .page-link .sp-sub .sp-head::before,
  #globalFooter .footer-top .global-navi .page-link .sp-sub .sp-head::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    background: #333333;
    transition: 0.2s;
  }

  #globalFooter .footer-top .global-navi .page-link .sp-sub .sp-head::after {
    width: 15px;
    height: 2px;
    transform: translateY(-50%);
  }

  #globalFooter .footer-top .global-navi .page-link .sp-sub .sp-head::before {
    width: 2px;
    height: 15px;
    transform: translateY(-50%);
    right: 26px;
  }

  #globalFooter .footer-top .global-navi .page-link .sp-sub.active .sp-head::before {
    transform: translateY(-50%) scaleY(0);
  }

  #globalFooter .footer-top .global-navi .page-link li.other {
    padding-top: 15px;
  }
}

/*--------------------------
common
----------------------------*/
.common-arrow-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.common-arrow-btn img {
  width: 2.4rem;
  height: 2.4rem;
}

.common-blue-btn {
  font-size: 1.8rem;
  color: #fff;
  background-color: #007bac;
  border-radius: 7rem;
  padding: 2rem 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s ease;
}

.common-blue-btn::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/common/white_arrow.png) no-repeat;
  right: 3rem;
  width: .8rem;
  height: 1rem;
  top: auto;
}

.common-white-btn {
  font-size: 1.8rem;
  color: #007bac;
  background-color: #f0fbfe;
  border: 1px solid #007bac;
  border-radius: 7rem;
  padding: 2rem 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s ease;
}

.common-white-btn::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/common/blue_arrow.png) no-repeat;
  right: 3rem;
  width: .8rem;
  height: 1rem;
  top: auto;
}

@media screen and (min-width: 769px) {

  .common-blue-btn:hover,
  .common-white-btn:hover {
    transform: scale(0.9, 0.9);
    opacity: 1;
  }
}

.common-border-head {
  padding-top: 10rem;
  padding-bottom: 2rem;
  font-size: 2.2rem;
  font-weight: bold;
  color: #007bac;
  font-family: "Zen Maru Gothic", sans-serif;
  position: relative;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.common-border-head::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: #ebebeb;
}

.case-list-btn {
  font-size: 1.8rem;
  color: #fff;
  background-color: #007bac;
  border-radius: 7rem;
  height: 7rem;
  width: 26rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  transition: transform 0.3s ease;
}

.case-list-btn:hover {
  transform: scale(0.9, 0.9);
  opacity: 1;
}

.c-submv {
  position: relative;
  padding: 220px 20px 100px;
}

.c-submv::before {
  content: "";
  position: absolute;
  background-size: 100% !important;
  background: url(../images/common/submv_bk.png) no-repeat;
  bottom: 0;
  right: 0;
  width: 1400px;
  height: 434px;
  z-index: -1;
}

.c-submv .contents-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.c-submv .title .en-head {
  font-size: 8.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  color: #007bac;
  line-height: 1;
  padding-bottom: 1rem;
}

.c-submv .title .head {
  font-size: 2.2rem;
  font-weight: 800;
  color: #5b5b5b;
}

.c-submv .detail {
  font-size: 1.8rem;
  font-weight: bold;
}

.c-submv .templete-title {
  color: #007bac;
  font-size: 5rem;
  font-weight: 700;
}

.c-templete {
  padding: 6rem 20px 10rem;
}

@media screen and (max-width: 768px) {
  .c-submv {
    padding: 140px 20px 60px;
  }

  .c-submv::before {
    background: url(../images/common/submv_bk_sp.png) no-repeat;
    width: 100%;
    height: auto;
    aspect-ratio: 75 / 59;
  }

  .c-submv .contents-inner {
    display: block;
  }

  .c-submv .title .en-head {
    font-size: 44px;
  }

  .c-submv .detail {
    /* font-size: 12px; */
    font-size: 13px;
    padding-top: 30px;
  }

  .c-submv .title .head {
    font-size: 14px;
  }

  .common-white-btn,
  .common-blue-btn {
    padding: 7px 24px;
    font-size: 14px;
    border-radius: 50px;
    font-weight: bold;
    height: 65px;
  }

  .common-white-btn::before,
  .common-blue-btn::before {
    right: 15px;
    width: 6px;
    height: 8px;
  }

  .common-border-head {
    padding-top: 40px;
    padding-bottom: 10px;
    font-size: 16px;
    gap: 20px;
  }

  .common-arrow-btn img {
    width: 20px;
    height: 20px;
  }
}

.page-anchor-nav {
  position: fixed;
  width: 24rem;
  top: 220px;
  right: calc((100vw - 1240px) / 2);
  background-color: #fff;
  padding: 1rem 2rem;
  border-radius: 1rem;
  z-index: 10;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  box-shadow: 0 0px 12px rgba(0, 0, 0, 0.15);
}

.page-anchor-nav li {
  cursor: pointer;
  padding: 1.5rem 0.5rem;
  font-size: 1.4rem;
  position: relative;
  border-bottom: 1px solid #f4f4f4;
}

.page-anchor-nav li::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/common/bottom_arrow.png) no-repeat;
  top: 50%;
  transform: translateY(-50%);
  right: 0.5rem;
  width: .8rem;
  height: .6rem;
  transition: transform 0.3s ease;
}

.page-anchor-nav li:last-child {
  border-bottom: 0;
}

.page-anchor-nav li:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1160px) {
  .page-anchor-nav {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@media screen and (max-width: 1280px) {
  .page-anchor-nav {
    right: 20px;
  }
}

@media screen and (max-width: 768px) {}

.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 20px;
  margin-top: 8rem;
}

.wp-pagenavi a,
.wp-pagenavi span {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  padding: 0 0 1rem;
  margin: 0 .5rem;
  text-decoration: none;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  font-size: 2rem;
}

.wp-pagenavi .extend {
  padding: 0;
  margin: 0 -5px;
}

.wp-pagenavi span,
.wp-pagenavi a.page {
  margin-top: 10px;
}

.wp-pagenavi span:not(.extend) {}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 4rem;
}

.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4rem;
  height: 4rem;
  background-image: url(../images/common/arrow.png);
  background-size: 100% 100%;
  transition: right 0.3s ease-in-out;
}

.wp-pagenavi .previouspostslink::before {
  transform: translateY(-50%) scaleX(-1);
}

.wp-pagenavi .previouspostslink {
  margin-right: 10px;
}

.wp-pagenavi .nextpostslink {
  margin-left: 10px;
}

.wp-pagenavi span.current {
  color: #007bac;
  text-decoration: underline;
}

.breadcrumb-area {
  border-bottom: 1px solid #ebebeb;
}

.breadcrumb {
  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: start;
  -webkit-justify-content: start;
  -ms-flex-pack: start;
  font-size: 1.8rem;
  font-weight: bold;
  flex-wrap: wrap;
  max-width: 1240px;
  margin: auto;
  padding: 0px 20px 2rem;
}

.breadcrumb * {
  font-stretch: normal;
  font-style: normal;
  text-align: justify;
  position: relative;
}

.breadcrumb *:not(:first-child) {
  margin-left: 4rem;
}

* .breadcrumb *:not(:first-child)::before {
  position: absolute;
  content: "";
  top: 1rem;
  left: -2.3rem;
  border-radius: 50%;
  width: .8rem;
  height: .8rem;
  background-color: #d1f4ff;
  pointer-events: none;
}

.breadcrumb span[property="itemListElement"]:first-of-type [property="name"] {
  font-family: "Zen Maru Gothic", sans-serif;
}

.breadcrumb span {
  color: #5b5b5b;
}

.breadcrumb a>span {
  color: #333333;
}

@media screen and (max-width: 768px) {
  .wp-pagenavi {
    margin-top: 4rem;
    gap: 0 10px;
  }

  .wp-pagenavi a,
  .wp-pagenavi span {
    font-size: 1.4rem;
  }

  .wp-pagenavi .previouspostslink::before,
  .wp-pagenavi .nextpostslink::before {
    width: 3rem;
    height: 3rem;
  }

  .wp-pagenavi .previouspostslink {
    margin-right: 0px;
  }

  .wp-pagenavi .nextpostslink {
    margin-left: 0px;
  }

  .breadcrumb {
    row-gap: 10px;
    font-size: 15px;
    padding: 0px 20px 20px;
  }

  * .breadcrumb *:not(:first-child)::before {
    width: 8px;
    height: 8px;
    top: 7px;
  }
}

.applicationlist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13rem 4rem;
  padding-top: 10rem;
}

.applicationlist .applicationitem {
  background-color: #fff;
  padding: 8rem 1.2rem 3rem;
  border-radius: 1.5rem;
  z-index: 10;
  box-shadow: 0 0px 12px rgba(0, 0, 0, 0.15);
  position: relative;
}

.applicationlist .applicationitem a:hover {
  opacity: 1;
}

.applicationlist .applicationitem a .feature {
  position: absolute;
  top: -8rem;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.applicationlist .applicationitem a .feature ul {
  border: 4px solid #00c5f1;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 2rem;
  position: relative;
  height: 14rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.applicationlist .applicationitem.individual a .feature ul {
  border: 4px solid #afdc00;
}

.applicationlist .applicationitem a .feature ul::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 15px solid #fff;
  z-index: 2;
}

.applicationlist .applicationitem a .feature ul::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 15px solid #00c5f1;
  z-index: 1;
}

.applicationlist .applicationitem.individual a .feature ul::after {
  border-top: 15px solid #afdc00;
}

.applicationlist .applicationitem a .feature ul li {
  display: flex;
  gap: 1rem;
  font-weight: bold;
  line-height: 1.2;
}

.applicationlist .applicationitem a .feature ul li img {
  width: 2rem;
  height: 2rem;
}

.applicationlist .applicationitem a .img-area {
  border-radius: 2.5rem;
  overflow: hidden;
  aspect-ratio: 34 / 29;
  background-color: #cbcaca;
}

.applicationlist .applicationitem a .img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.3s ease;
}

.applicationlist .applicationitem a:hover .img-area img {
  scale: 1.1;
}

.applicationlist .applicationitem a .category-area {
  display: flex;
  gap: 0 1rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding: .5rem 4rem 0 2rem;
}

.applicationlist .applicationitem a .category {
  border-radius: 5px;
  font-weight: 500;
  font-size: 1.3rem;
  color: #3a3a3a;
}

.applicationlist .applicationitem a .title {
  font-size: 2.2rem;
  font-weight: bold;
  padding: 2rem 2rem 0;
}

.applicationlist .applicationitem a:hover .title {
  text-decoration: underline;
}

.applicationlist .applicationitem a .arrow {
  width: 3rem;
  height: 3rem;
  position: absolute;
  right: 3rem;
  bottom: 3rem;
}

.commoninformationlist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 2rem;
}

.commoninformationlist .informationitem {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.commoninformationlist .informationitem a {
  position: relative;
  display: grid;
  grid-template-columns: 4fr 6fr;
  align-items: center;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #ebebeb;
  height: 100%;
}

.commoninformationlist .informationitem a:hover {
  opacity: 1;
}

.commoninformationlist .informationitem a .img-area {
  border: 3px solid #f8f8f8;
  border-radius: 7px;
  overflow: hidden;
  aspect-ratio: 150 / 113;
}

.commoninformationlist .informationitem a .img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.3s ease;
}

.commoninformationlist .informationitem a:hover .img-area img {
  scale: 1.1;
}

.commoninformationlist .informationitem a .text-area {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.commoninformationlist .informationitem a .category-area {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding: 1rem 0;
}

.commoninformationlist .informationitem a .category {
  border-radius: 5px;
  border: 1px solid #fff;
  font-weight: 500;
  font-size: 1.3rem;
  color: #3a3a3a;
}

.commoninformationlist .informationitem a .date {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #c2c2c2;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 1rem 0;
}

.commoninformationlist .informationitem a .title {
  font-size: 1.8rem;
  font-weight: 800;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.commoninformationlist .informationitem a:hover .title {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .applicationlist {
    display: block;
    padding-top: 80px;
  }

  .applicationlist .applicationitem {
    padding: 100px 20px 30px;
    border-radius: 10px;
    margin-bottom: 60px;
  }

  .applicationlist .applicationitem a .feature {
    top: -30px;
  }

  .applicationlist .applicationitem a .feature ul {
    padding: 20px 10px;
    height: 105px;
    gap: 5px;
    border-radius: 10px;
  }

  .applicationlist .applicationitem a .feature ul li {
    gap: 10px;
    /* font-size: 12px; */
    font-size: 14px;
    font-weight: 800;
  }

  .applicationlist .applicationitem a .feature ul li img {
    width: 13px;
    height: 13px;
  }

  .applicationlist .applicationitem a .img-area {
    border-radius: 36px;
  }

  .applicationlist .applicationitem a .category-area {
    gap: 0 10px;
    padding: 0px 40px 0 0px;
  }

  .applicationlist .applicationitem a .category {
    /* font-size: 12px; */
    font-size: 13px;
  }

  .applicationlist .applicationitem a .title {
    font-size: 20px;
    padding: 20px 0 10px;
  }

  .applicationlist .applicationitem a .arrow {
    width: 28px;
    height: 28px;
  }

  .commoninformationlist .informationitem a {
    gap: 20px;
    padding: 15px 0;
    grid-template-columns: 1fr 1fr;
  }

  .commoninformationlist .informationitem a .img-area {
    border: 3px solid #f8f8f8;
    border-radius: 7px;
    overflow: hidden;
    aspect-ratio: 243 / 181;
  }

  .commoninformationlist .informationitem a .category-area {
    gap: 5px;
    padding: 5px 0 0;
  }

  .commoninformationlist .informationitem a .category {
    /* font-size: 12px; */
    font-size: 13px;
  }

  .commoninformationlist .informationitem a .date {
    font-size: 11px;
    padding: 0 0 5px;
  }

  .commoninformationlist .informationitem a .title {
    font-size: 13px;
    -webkit-line-clamp: 3;
  }

  .information-single .commoninformationlist {
    display: block;
  }
}

/*--------------------------
HOME
----------------------------*/
body.home .c-mv {
  position: relative;
  overflow: hidden;
  /* height: 100vh; */
  width: 100%;
  padding-top: 120px;
}

body.home .c-mv .msg-area {
  max-width: 1240px;
  margin: auto;
  padding: 40px 20px 0;
  position: relative;
}

body.home .c-mv .msg-area .title-area .top-img img {
  width: 40.7rem;
  width: 407px;
}

body.home .c-mv .msg-area .title-area .sub-title {
  font-size: 1.8rem;
  font-size: 18px;
  font-weight: 800;
  padding: 20px 0 10px 20px;
}

body.home .c-mv .bk-area {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  top: -120px;
  left: -85px;
  width: 1393px;
  height: 935px;
  z-index: -1;
  display: flex;
  justify-content: end;
}

body.home .c-mv .bk-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1200px) {
  body.home .c-mv .bk-area {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }
}

body.home .c-mv .mv-slider {
  width: 420px;
  margin: 0;
}

body.home .c-mv .mv-slider .swiper-slide a {
  display: block;
  padding: 10px;
}

body.home .c-mv .mv-slider .swiper-slide a:hover {
  opacity: 1;
}

body.home .c-mv .mv-slider .swiper-slide a .slider-inner {
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0px 7px rgba(0, 0, 0, 0.15);
}

body.home .c-mv .mv-slider .swiper-slide a .img {
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 36 / 27;
  margin-bottom: 15px;
}

body.home .c-mv .mv-slider .swiper-slide a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.3s ease;
}

body.home .c-mv .mv-slider .swiper-slide a:hover .img img {
  scale: 1.1;
}

body.home .c-mv .mv-slider .swiper-slide a .text {
  font-size: 15px;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 45px;
}

body.home .c-mv .mv-slider .swiper-slide a:hover .text {
  text-decoration: underline;
}

body.home .c-mv .mv-slider .swiper-slide a .readmore {
  position: relative;
  padding-right: 2rem;
  color: #c9c9cb;
  font-size: 12px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  text-align: right;
  margin-top: 15px;
}

body.home .c-mv .mv-slider .swiper-slide a .readmore::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/common/bottom_arrow.png) no-repeat;
  top: 4px;
  right: 0px;
  width: 10px;
  height: 8px;
  transform: rotate(-90deg);
}

body.home .c-mv .mv-slider .swiper-other {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
}

body.home .c-mv .mv-slider .swiper-other .swiper-other-page {
  display: flex;
  align-items: center;
}

body.home .c-mv .mv-slider .swiper-button-next, body.home .c-mv .mv-slider .swiper-button-prev {
  position: relative !important;
  top: auto !important;
  margin-top: auto !important;
  width: 30px !important;
  height: 30px !important;
}

body.home .c-mv .mv-slider .swiper-button-prev img {
  transform: rotate(180deg);
}

body.home .c-mv .mv-slider .swiper-pagination-bullet {
  background-color: #fff !important;
  border: 1px solid #d2d2d2;
  opacity: 1 !important;
  width: 10px !important;
  height: 10px !important;
}

body.home .c-mv .mv-slider .swiper-pagination-bullet-active {
  background-color: #5b5b5b !important;
}

body.home .c-mv .mv-slider .swiper-pagination {
  position: relative !important;
  width: fit-content !important;
  bottom: auto !important;
}

body.home .c-mv .mv-slider .swiper-other .swiper-other-page .slide-count {
  font-size: 20px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  margin: 0 30px;
}

@media screen and (min-width: 1401px) {
  /* body.home .c-mv .msg-area .title-area .top-img img {
    width: 29vw;
  } */

  /* body.home .c-mv .msg-area .title-area .sub-title {
    font-size: 1.3vw;
  } */
}

body.home .c-keyword-head {
  max-width: 1240px;
  margin: auto;
  width: 100%;
  font-size: 3.6rem;
  font-weight: bold;
  font-family: "Zen Maru Gothic", sans-serif;
  padding: 2rem 20px 0;
  position: relative;
}

body.home .c-keyword-head span {
  position: relative;
  padding-left: 2.3rem;
}

body.home .c-keyword-head span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.5rem;
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background: #007bac;
  border-radius: 50%;
}

body.home .c-keyword-content {
  overflow: hidden;
  position: relative;
  max-width: 2000px;
  margin: auto;
}

body.home .c-keyword-content::before,
body.home .c-keyword-content::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 2;
}

body.home .c-keyword-content::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
}

body.home .c-keyword-content::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
}

body.home .c-keyword-content ul {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding-top: 2rem;
}

body.home .c-keyword-content ul li {
  border: .4rem solid #f8f8f8;
  padding: 1rem 2rem;
  border-radius: 5rem;
  background-color: #fff;
}

body.home .top-common-head {
  text-align: center;
  padding-top: 10rem;
  position: relative;
}

body.home .top-common-head .sub {
  color: #007bac;
  font-weight: 600;
  font-size: 3rem;
  font-family: "Zen Maru Gothic", sans-serif;
}

body.home .top-common-head h2 {
  font-weight: 600;
  font-size: 6rem;
}

body.home .top-common-head h2 span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}

body.home .top-common-head .detail {
  font-weight: bold;
  font-size: 2rem;
  line-height: 2;
  padding-top: 2rem;
}

body.home .c-topabout {
  position: relative;
}

body.home .c-topabout::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/top/topabout_bg3.png) no-repeat;
  bottom: -10rem;
  left: 0;
  width: 100%;
  aspect-ratio: 70 / 53;
  z-index: -2;
}

body.home .c-topabout .top-common-head::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/top/topabout_bg1.png) no-repeat;
  top: 1rem;
  left: -39rem;
  width: 52.2rem;
  height: 51.9rem;
  z-index: -1;
}

body.home .c-topabout .top-common-head::after {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/top/topabout_bg2.png) no-repeat;
  top: 6rem;
  right: -34rem;
  width: 49.1rem;
  height: 51.5rem;
  z-index: -1;
}

body.home .c-topabout .img-area img {
  width: 100%;
  padding: 3rem 0 4rem;
}

body.home .c-topabout .dl-btn {
  font-size: 2.2rem;
  color: #fff;
  background-color: #007bac;
  border-radius: 9rem;
  height: 9rem;
  width: 40rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  transition: transform 0.3s ease;
}

@media screen and (min-width: 769px) {
  body.home .c-topabout .dl-btn:hover {
    transform: scale(0.9, 0.9);
    opacity: 1;
  }
}

body.home .c-topservice {
  padding: 0;
  text-align: center;
  ;
}

body.home .c-topservice .contents-inner {
  max-width: none;
  margin: auto;
}

body.home .c-topservice .top-common-head {
  padding: 10rem 20px 0;
}

body.home .c-topservice .content {
  position: relative;
  max-width: 1400px;
  margin: auto;
}

body.home .c-topservice .mapbox {
  position: relative;
}

body.home .c-topservice .mapbox .img-area {
  max-width: 1400px;
}

body.home .c-topservice .mapbox .pinlist .pin {
  position: absolute;
  display: block;
  width: min(10.8vw, 154px);
  height: min(9.1vw, 130px);
  transition: transform 0.3s ease;
  z-index: 2;
}

@media screen and (min-width: 769px) {
  body.home .c-topservice .mapbox .pinlist .pin:hover {
    transform: scale(1.1, 1.1);
    cursor: pointer;
  }
}

body.home .c-topservice .mapbox .pinlist .pin.p01 {
  left: 15%;
  top: 7.7%;
}

body.home .c-topservice .mapbox .pinlist .pin.p02 {
  left: 33%;
  top: 9.7%;
}

body.home .c-topservice .mapbox .pinlist .pin.p03 {
  left: 47%;
  top: 4.8%;
}

body.home .c-topservice .mapbox .pinlist .pin.p04 {
  left: 65%;
  top: 10%;
}

body.home .c-topservice .mapbox .pinlist .pin.p05 {
  left: 78%;
  top: -7.5%;
}

body.home .c-topservice .mapbox .pinlist .pin.p06 {
  left: 17.7%;
  top: 40.7%;
}

body.home .c-topservice .mapbox .pinlist .pin.p07 {
  left: 37.9%;
  top: 49%;
}

body.home .c-topservice .mapbox .pinlist .pin.p08 {
  left: 45.5%;
  top: 32.5%;
}

body.home .c-topservice .mapbox .pinlist .pin.p09 {
  left: 54.9%;
  top: 40.7%;
}

body.home .c-topservice .mapbox .pinlist .pin.p10 {
  left: 61.1%;
  top: 54.5%;
}

body.home .c-topservice .mapbox .pinlist .pin.p11 {
  left: 74.7%;
  top: 41.7%;
}

body.home .c-topservice .mapbox .pinlist .pin-only {
  position: absolute;
  display: flex;
  align-items: center;
  font-weight: bold;
  gap: 10px;
  z-index: 2;
  right: 3%;
  bottom: -4rem;
  font-size: 2rem;
}

body.home .c-topservice .mapbox .pinlist .pin-only img {
  width: 4.2rem;
}

body.home .c-topservice .mapbox .pinlist .pin-only a {
  text-decoration: underline;
  color: #007bac;
}

body.home .c-topservice .kumo {
  position: absolute;
  display: block;
}

body.home .c-topservice .kumo.k01 {
  left: -13%;
  top: 22%;
  width: min(20.7vw, 294px);
  height: min(12.9vw, 183px);
}

body.home .c-topservice .kumo.k02 {
  left: -9%;
  top: 52%;
  width: min(33.8vw, 478px);
  height: min(20.5vw, 298px);
}

body.home .c-topservice .kumo.k03 {
  right: -8%;
  top: 55%;
  width: min(36vw, 510px);
  height: min(21.3vw, 301px);
}

.fancybox__backdrop {
  background: var(--fancybox-bg, rgba(24, 24, 27, 0.1)) !important;
}

.fancybox__container .service-dialog {
  background-color: #fff;
  border-radius: 3rem;
  max-width: 500px;
  padding: 5rem;
  border: .4rem solid #007BAC;
}

.fancybox__container .service-dialog .img {
  aspect-ratio: 475 / 356;
  overflow: hidden;
  border-radius: 10px;
}

.fancybox__container .service-dialog .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fancybox__container .service-dialog .name {
  font-size: 3rem;
  font-weight: bold;
  padding: 2rem 0 1rem;
}

.fancybox__container .service-dialog .content {
  font-weight: bold;
  line-height: 1.7;
}

.fancybox__container .service-dialog .category-area {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  font-weight: bold;
  padding-top: 1.5rem;
}

.fancybox__container .service-dialog .category-area .category:hover {
  opacity: 1;
  color: #007BAC;
}

.fancybox__content>.carousel__button.is-close {
  top: -30px !important;
  right: -20px !important;
  background-color: #007BAC;
  width: 70px;
  height: 70px;
}

.fancybox__content>.carousel__button.is-close svg {
  width: 30px;
  height: 30px;
  stroke-width: 2px;
}

body.home .c-topservice .btn-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 10rem 20px 0;
}

body.home .c-topstory .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 5rem 0 5rem;
}

body.home .c-topstory .content .item {
  border: 4px solid #00c5f1;
  padding: 4rem 3rem;
  background-color: #f2fcfe;
  border-radius: 1.5rem;
}

body.home .c-topstory .content .item.individual {
  border: 4px solid #afdc00;
  background-color: #fbfdf2;
}

body.home .c-topstory .content .item .content-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-bottom: 2rem;
}

body.home .c-topstory .content .item .content-head img {
  width: 7rem;
}

body.home .c-topstory .content .item.individual .content-head img {
  width: 4.5rem;
}

body.home .c-topstory .content .item .content-head .text {
  font-size: 2.6rem;
  font-weight: 700;
}

body.home .c-topstory .content .item .content-head .text span {
  font-size: 3.4rem;
}

body.home .c-topstory .content .item .casestudylist .casestudyitem {
  position: relative;
  padding: 2rem 0;
  border-bottom: 1px solid #ebebeb;
}

body.home .c-topstory .content .item .casestudylist .casestudyitem .img {
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 4 / 3;
  background-color: #cbcaca;
}

body.home .c-topstory .content .item .casestudylist .casestudyitem .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.3s ease;
}

body.home .c-topstory .content .item .casestudylist .casestudyitem a:hover .img img {
  scale: 1.1;
}

body.home .c-topstory .content .item .casestudylist .casestudyitem .title {
  font-size: 2.2rem;
  font-weight: bold;
  /* height: 6.6rem; */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

body.home .c-topstory .content .item .casestudylist .casestudyitem:first-child .title {
  font-weight: 800;
  -webkit-line-clamp: 2;
}

body.home .c-topstory .content .item .casestudylist .casestudyitem a:hover {
  opacity: 1;
}

body.home .c-topstory .content .item .casestudylist .casestudyitem a:hover .title {
  text-decoration: underline;
}

body.home .c-topstory .content .item .casestudylist .casestudyitem .category-area {
  display: flex;
  gap: 0 1.5rem;
  flex-wrap: wrap;
  font-size: 1.4rem;
  padding: 2rem 4rem 0 0rem;
}

body.home .c-topstory .content .item .casestudylist .casestudyitem a .text-area {
  padding: 1rem 1.5rem 0;
  position: relative;
}

body.home .c-topstory .content .item .casestudylist .casestudyitem:first-child a .text-area {
  padding: 1.5rem 1.5rem 0;
}

body.home .c-topstory .content .item .casestudylist .casestudyitem a {
  display: grid;
  grid-template-columns: 4fr 6fr;
}

body.home .c-topstory .content .item .casestudylist .casestudyitem:first-child a {
  display: block;
}

body.home .c-topstory .content .item .casestudylist .casestudyitem .arrow {
  position: absolute;
  bottom: 0rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
}

body.home .c-topstory .common-blue-btn {
  margin: auto;
  width: max-content;
}

body.home .c-topsponsor {
  overflow: hidden;
  padding-top: 12rem;
  max-width: 2000px;
  margin: auto;
  position: relative;
}

body.home .c-topsponsor::before,
body.home .c-topsponsor::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 2;
}


body.home .c-topsponsor::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}


body.home .c-topsponsor::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

body.home .c-topsponsor .list {
  display: flex;
  gap: 4rem;
  align-items: center;
  width: max-content;
}

body.home .c-topsponsor .list li img {
  max-height: 6rem;
}

body.home .c-topapplication {
  margin-top: 10rem;
  padding-bottom: 10rem;
  background-color: #f2fcff;
}

body.home .c-topapplication .applicationlist {
  padding-top: 15rem;
}

body.home .c-topapplication .applicationlist .applicationitem {
  padding: 12rem 4rem 3rem;
}

body.home .c-topapplication .applicationlist .applicationitem:nth-of-type(2),
body.home .c-topapplication .applicationlist .applicationitem:nth-of-type(4) {
  transform: translateY(5rem);
}

body.home .c-topapplication .applicationlist .applicationitem a .img-area {
  border-radius: 3rem;
}

body.home .c-topapplication .applicationlist .applicationitem a .feature ul {
  padding: 3rem 2rem;
  height: 18rem;
  gap: 1.5rem;
  border-radius: 3rem;
}

body.home .c-topapplication .applicationlist .applicationitem a .feature ul li {
  font-size: 2rem;
}

body.home .c-topapplication .applicationlist .applicationitem a .feature ul li img {
  width: 2.2rem;
  height: 2.2rem;
}

body.home .c-topapplication .applicationlist .applicationitem a .title {
  font-size: 3.6rem;
}

body.home .c-topapplication .common-blue-btn {
  margin: auto;
  width: max-content;
  margin-top: 12rem;
}

body.home .c-topreason .detail span {
  position: relative;
  display: inline-block;
}

body.home .c-topreason .detail span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: .7rem;
  height: .8rem;
  width: 100%;
  background: linear-gradient(to right, #03c5f1, #77d4a0, #aedc0a);
  z-index: -1;
}

body.home .c-topreason .content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 4rem 4.4rem 8rem 0;
}

body.home .c-topreason .content li {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 6rem;
  line-height: 1.7;
}

body.home .c-topreason .content li::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/top/topreason_bk1.png) no-repeat;
  top: 0rem;
  left: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  z-index: -1;
}

body.home .c-topreason .content li:nth-of-type(2) {
  margin-left: -4.4rem;
  padding: 0 4rem 0 5rem;
}

body.home .c-topreason .content li:nth-of-type(2):before {
  background: url(../images/top/topreason_bk2.png) no-repeat;
}

body.home .c-topreason .content li:nth-of-type(3) {
  margin-left: -4.4rem;
}

body.home .c-topreason .content li:nth-of-type(3):before {
  background: url(../images/top/topreason_bk3.png) no-repeat;
}

body.home .c-topreason .content li .head {
  font-weight: 700;
  font-size: 2.8rem;
  padding-top: 11rem;
  padding-bottom: 2rem;
}

body.home .c-topreason .content li .text {
  text-align: left;
  font-weight: bold;
}

body.home .c-topreason .content li:first-child .text {
  margin-left: 1rem;
  margin-right: -1rem;
}

body.home .c-topreason .evaluation-content {
  padding: 4rem 2rem 2rem;
  /* border-radius: 1rem; */
  position: relative;
}

body.home .c-topreason .evaluation-content::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/top/topreason_bk4.png) no-repeat;
  top: 0rem;
  left: 0;
  width: 100%;
  /* height: 34.8rem; */
  aspect-ratio: 100 / 29;
  z-index: -1;
}

body.home .c-topreason .evaluation-content .head {
  font-weight: 700;
  font-size: 2.2rem;
  color: #fff;
  position: relative;
  width: max-content;
  margin: 0 auto 3rem;
}

body.home .c-topreason .evaluation-content .head::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/top/sarani.png) no-repeat;
  top: -9rem;
  left: -8rem;
  width: 12.8rem;
  height: 12.8rem;
  z-index: -1;
}

body.home .c-topreason .evaluation-content .evaluation-inner {
  border-radius: 1rem;
  background-color: #fff;
  padding: 4rem 0;
}

@media screen and (max-width: 1300px) {
  body.home .c-topreason .content li {
    justify-content: center;
  }

  body.home .c-topreason .content li .head {
    padding-top: 0;
  }

  body.home .c-topreason .content li {
    padding: 0 8rem;
  }

  body.home .c-topreason .content li:nth-of-type(2) {
    margin-left: -5.4rem;
    padding: 0 8rem 0 9rem;
  }
}

@media screen and (max-width: 1000px) {
  body.home .c-topreason .evaluation-content .evaluation-inner {
    padding: 4rem 20rem;
  }

  body.home .c-topreason .content li .head {
    font-size: 2.4rem;
  }

  body.home .c-topreason .content li {
    padding: 0 6rem;
  }

  body.home .c-topreason .content li:nth-of-type(2) {
    margin-left: -3.7rem;
    padding: 0 6rem 0 6rem;
  }
}

body.home .c-topreason .evaluation-content .evaluation-inner img {
  width: 97.9rem;
}

body.home .c-topinformation {
  position: relative;
}

body.home .c-topinformation::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/top/topinformation_bk.png) no-repeat;
  bottom: -12rem;
  left: 0;
  width: 100%;
  aspect-ratio: 70 / 66;
  z-index: -2;
}

body.home .c-topinformation .contents-inner {
  max-width: 1300px;
  padding: 6rem 8rem;
  border-radius: 3rem;
  box-shadow: 0 0px 12px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  margin: 13rem auto 12rem;
}

body.home .c-topinformation h2 {
  font-size: 6rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
}

body.home .c-topinformation .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding-top: 2rem;
}

body.home .c-topinformation .content .commoninformationlist {
  display: block;
  padding-top: 3rem;
}

body.home .c-topinformation .content .commoninformationlist .informationitem a {
  padding: 2rem 0;
}

body.home .c-topinformation .content .head {
  font-size: 2.6rem;
  font-weight: 700;
  position: relative;
}

body.home .c-topinformation .content .head::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/common/border.png) no-repeat;
  bottom: -1rem;
  left: 0;
  width: 6rem;
  height: .4rem;
}

body.home .c-topinformation .common-blue-btn {
  margin: auto;
  width: max-content;
  margin-top: 6rem;
  padding: 2rem 8rem;
}

@media screen and (max-width: 768px) {
  body.home .c-mv {
    height: 80svh;
    height: auto;
    overflow: visible;
  }

  body.home .c-mv .bk-area {
    height: 80svh;
    top: -120px;
    display: block;
  }

  body.home .c-mv .msg-area {
    padding: 40svh 10px 0;
  }

  body.home .c-mv .msg-area .title-area .sub-title {
    font-size: 14px;
    text-align: center;
    padding: 10px 0;
  }

  body.home .c-mv .msg-area .title-area .top-img {
    width: 304px;
    margin: auto;
  }

  body.home .c-mv .mv-slider {
    width: 100%;
    max-width: 400px;
    margin: auto;
  }

  body.home .c-mv .mv-slider .swiper-slide a .slider-inner {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
    padding: 10px;
  }

  body.home .c-mv .mv-slider .swiper-slide a .img {
    margin-bottom: 0;
  }

  body.home .c-mv .mv-slider .swiper-slide a .text-area {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }

  body.home .c-mv .mv-slider .swiper-slide a .text {
    /* font-size: 12px; */
    font-size: 13px;
    -webkit-line-clamp: 4;
    height: auto;
  }

  body.home .c-mv .mv-slider .swiper-other .swiper-other-page .slide-count {
    font-size: 15px;
    margin: 0 20px;
  }

  body.home .c-keyword-head {
    font-size: 24px;
    padding: 30px 20px 0;
  }

  body.home .c-keyword-head span::before {
    width: 10px;
    height: 10px;
    top: 9px;
  }

  body.home .c-keyword-content::before,
  body.home .c-keyword-content::after {
    display: none;
  }

  body.home .c-keyword-content ul {
    gap: 10px;
    padding-top: 10px;
  }

  body.home .c-keyword-content ul li {
    font-size: 11px;
    border: 2px solid #f8f8f8;
  }

  body.home .top-common-head {
    padding-top: 50px;
  }

  body.home .top-common-head .sub {
    font-size: 20px;
  }

  body.home .top-common-head h2 {
    font-size: 32px;
  }

  body.home .top-common-head .detail {
    font-size: 15px;
    font-weight: 800;
    padding-top: 15px;
  }

  body.home .c-topabout .top-common-head .detail {
    text-align: left;
  }

  body.home .c-mv .mv-slider .swiper-button-next, body.home .c-mv .mv-slider .swiper-button-prev {
    width: 20px !important;
    height: 20px !important;
  }

  body.home .c-topabout .top-common-head::before {
    top: -190px;
    left: -40px;
    width: 160px;
    height: 170px;
  }

  body.home .c-topabout .top-common-head::after {
    top: -73px;
    right: -70px;
    width: 160px;
    height: 95px;
  }

  body.home .c-topabout::before {
    background: url(../images/top/topabout_bg3_sp.png) no-repeat;
    aspect-ratio: 750 / 1981;
    bottom: -150px;
  }

  body.home .c-topabout .dl-btn {
    max-width: 245px;
    height: 65px;
    width: 100%;
    font-size: 14px;
    font-weight: 800;
  }

  body.home .c-topservice .top-common-head {
    padding: 60px 0px 0;
  }

  body.home .c-topservice .btn-area {
    gap: 10px;
    padding: 30px 10px 0;
  }

  body.home .c-topstory .content {
    display: block;
    padding: 30px 0 10px;
  }

  body.home .c-topstory .content .item .content-head {
    gap: 5px;
    padding-bottom: 0px;
  }

  body.home .c-topstory .content .item .content-head img {
    width: 35px;
  }

  body.home .c-topstory .content .item .content-head .text {
    font-size: 18px;
  }

  body.home .c-topstory .content .item .content-head .text span {
    font-size: 21px;
  }

  body.home .c-topstory .content .item {
    border: 4px solid #00c5f1;
    padding: 25px 15px;
    border-radius: 10px;
    margin-bottom: 30px;
  }

  body.home .c-topstory .content .item .casestudylist .casestudyitem a .text-area {
    padding: 0 0 0 10px;
  }

  body.home .c-topstory .content .item .casestudylist .casestudyitem:first-child a .text-area {
    padding: 10px 10px 0;
  }

  body.home .c-topstory .content .item .casestudylist .casestudyitem .title {
    font-size: 16px;
    height: auto;
  }

  body.home .c-topstory .content .item .casestudylist .casestudyitem .category-area {
    gap: 0 15px;
    /* font-size: 12px; */
    font-size: 13px;
    padding: 20px 20px 0 0;
  }

  body.home .c-topstory .content .item .casestudylist .casestudyitem .arrow {
    right: 0;
    width: 20px;
    height: 20px;
  }

  body.home .c-topstory .content .item.individual .content-head img {
    width: 37px;
    padding-right: 10px;
  }

  body.home .c-topstory .common-blue-btn {
    width: 225px;
  }

  body.home .c-topsponsor {
    padding-top: 60px;
  }

  body.home .c-topsponsor::before, body.home .c-topsponsor::after {
    display: none;
  }

  body.home .c-topsponsor .list {
    gap: 20px;
  }

  body.home .c-topsponsor .list li img {
    max-height: 20px;
  }

  body.home .c-topapplication {
    margin-top: 60px;
    padding-bottom: 60px;
  }

  body.home .c-topapplication .applicationlist {
    padding-top: 60px;
    overflow: visible;
  }

  body.home .c-topapplication .applicationlist .applicationitem a .feature ul li {
    /* font-size: 12px; */
    font-size: 14px;
  }

  body.home .c-topapplication .applicationlist .applicationitem a .feature ul li img {
    width: 13px;
    height: 13px;
  }

  body.home .c-topapplication .applicationlist .applicationitem a .feature ul {
    padding: 20px 10px;
    height: 105px;
    gap: 5px;
    border-radius: 20px;
  }

  body.home .c-topapplication .applicationlist .applicationitem a .feature.individual ul {
    border: 4px solid #afdc00;
  }

  body.home .c-topapplication .applicationlist .applicationitem {
    padding: 100px 20px 0px;
    /* border: 2px solid #a09e9e;
    box-shadow: unset; */
    margin-bottom: 0;
  }

  body.home .c-topapplication .applicationlist .applicationitem a .img-area {
    border-radius: 36px;
  }

  body.home .c-topapplication .applicationlist .applicationitem a .title {
    font-size: 21px;
    padding: 20px 0 20px;
  }

  body.home .c-topapplication .applicationlist .applicationitem:nth-of-type(2), body.home .c-topapplication .applicationlist .applicationitem:nth-of-type(4) {
    transform: none;
  }

  body.home .c-topapplication .applicationlist .applicationitem a .arrow {
    display: none;
  }

  body.home .c-topapplication .applicationlist .swiper-button-next, body.home .c-topapplication .applicationlist .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
  }

  body.home .c-topapplication .applicationlist .swiper-button-prev {
    transform: rotate(180deg);
    left: -15px !important;
  }

  body.home .c-topapplication .applicationlist .swiper-button-next {
    right: -15px !important;
  }

  body.home .c-topapplication .applicationlist .swiper-pagination {
    bottom: -40px;
  }

  body.home .c-mv .mv-slider .swiper-pagination-bullet,
  body.home .c-topapplication .applicationlist .swiper-pagination-bullet {
    background-color: #d4dcde !important;
    border: 1px solid #d4dcde;
    width: 10px !important;
    height: 10px !important;
  }

  body.home .c-mv .mv-slider .swiper-pagination-bullet-active,
  body.home .c-topapplication .applicationlist .swiper-pagination-bullet-active {
    background-color: #5b5b5b !important;
    border: 1px solid #5b5b5b;
  }

  body.home .c-topapplication .common-blue-btn {
    width: 225px;
    margin-top: 60px;
  }

  body.home .c-topreason .detail span::after {
    bottom: 7px;
    height: 5px;
  }

  body.home .c-topreason .content {
    display: block;
    padding: 30px 0 60px;
  }

  body.home .c-topreason .content li::before {
    display: none;
  }

  body.home .c-topreason .content li {
    aspect-ratio: unset;
    padding: 20px 15px 15px;
    border-radius: 7px;
    background: linear-gradient(100deg, #e6f9fd 10%, #f7fbe7 100%);
    margin-bottom: 20px;
  }

  body.home .c-topreason .content li .head {
    font-size: 20px;
    padding-bottom: 20px;
  }

  body.home .c-topreason .content li .text {
    padding: 15px;
    border-radius: 7px;
    background-color: #fff;
  }

  body.home .c-topreason .content li:first-child .text {
    margin-left: 0rem;
    margin-right: 0rem;
  }

  body.home .c-topreason .content li:nth-of-type(2) {
    margin-left: 0rem;
    padding: 15px;
    margin-bottom: 20px;
  }

  body.home .c-topreason .content li:nth-of-type(2),
  body.home .c-topreason .content li:nth-of-type(3) {
    margin-left: 0;
  }

  body.home .c-topreason .evaluation-content {
    padding: 30px 15px 15px;
  }

  body.home .c-topreason .evaluation-content .head {
    font-size: 16px;
    width: 100%;
    margin: 0 auto 10px;
    text-align: left;
  }

  body.home .c-topreason .evaluation-content::before {
    aspect-ratio: unset;
    height: 100%;
    background: url(../images/top/topreason_bk4_sp.png) no-repeat;
  }

  body.home .c-topreason .evaluation-content .evaluation-inner {
    padding: 0px;
  }

  body.home .c-topreason .evaluation-content .evaluation-inner img {
    width: 100%;
  }

  body.home .c-topreason .evaluation-content .head::before {
    top: -84px;
    left: 0px;
    width: 80px;
    height: 80px;
  }

  body.home .c-topinformation::before {
    background: url(../images/top/topinformation_bk_sp.png) no-repeat;
    bottom: -90px;
    left: 0;
    width: 100%;
    aspect-ratio: 125 / 462;
  }

  body.home .c-topinformation .contents-inner {
    border-radius: 20px;
    padding: 50px 20px 60px;
    margin: 80px auto 80px;
  }

  body.home .c-topinformation h2 {
    font-size: 32px;
  }

  body.home .c-topinformation .content {
    display: block;
    padding-top: 30px;
  }

  body.home .c-topinformation .content .item {
    padding-bottom: 40px;
  }

  body.home .c-topinformation .content .head {
    font-size: 18px;
  }

  body.home .c-topinformation .content .head::before {
    width: 50px;
    height: 5px;
  }

  body.home .c-topinformation .content .commoninformationlist {
    padding-top: 20px;
  }

  body.home .c-topinformation .content .commoninformationlist .informationitem a {
    padding: 15px 0;
  }

  body.home .c-topinformation .common-blue-btn {
    width: 225px;
    margin-top: 0px;
    padding: 0;
  }


  .fancybox__backdrop {
    background: var(--fancybox-bg, rgba(24, 24, 27, 0.5)) !important;
  }

  .fancybox__slide {
    padding: 48px 20px 8px 20px !important;
  }

  .fancybox__container .service-dialog {
    border-radius: 20px;
    padding: 30px;
    border: 4px solid #007BAC;
  }

  .fancybox__container .service-dialog .name {
    font-size: 18px;
    font-weight: 800;
    padding: 20px 0 10px;
  }

  .fancybox__container .service-dialog .category-area {
    gap: 10px;
    /* font-size: 12px; */
    font-size: 13px;
  }

  .fancybox__content>.carousel__button.is-close {
    top: -15px !important;
    right: -15px !important;
    width: 50px;
    height: 50px;
  }

  .fancybox__content>.carousel__button.is-close svg {
    width: 30px;
    height: 30px;
    stroke-width: 2px;
  }

  body.home .c-topservice .content {
    padding-top: 50px;
    padding-bottom: 40px;
  }

  body.home .c-topservice .mapbox {
    /* width: 740px; */
  }

  body.home .c-topservice .mapbox .img-area {
    width: 740px;
  }

  .scroll-hint-icon {
    z-index: 10;
  }

  body.home .c-topservice .mapbox .pinlist .pin {
    width: 75px;
    height: 60px;
  }

  body.home .c-topservice .mapbox .pinlist .pin.p01 {
    left: 115px;
    top: 45px;
  }

  body.home .c-topservice .mapbox .pinlist .pin.p02 {
    left: 240px;
    top: 45px;
  }

  body.home .c-topservice .mapbox .pinlist .pin.p03 {
    left: 350px;
    top: 25px;
  }

  body.home .c-topservice .mapbox .pinlist .pin.p04 {
    left: 484px;
    top: 45px;
  }

  body.home .c-topservice .mapbox .pinlist .pin.p05 {
    left: 580px;
    top: -33px;
  }

  body.home .c-topservice .mapbox .pinlist .pin.p06 {
    left: 135px;
    top: 215px;
  }

  body.home .c-topservice .mapbox .pinlist .pin.p07 {
    left: 290px;
    top: 249px;
  }

  body.home .c-topservice .mapbox .pinlist .pin.p08 {
    left: 300px;
    top: 142px;
  }

  body.home .c-topservice .mapbox .pinlist .pin.p09 {
    top: 177px;
    left: 405px;
  }

  body.home .c-topservice .mapbox .pinlist .pin.p10 {
    left: 460px;
    top: 260px;
  }

  body.home .c-topservice .mapbox .pinlist .pin.p11 {
    left: 555px;
    top: 200px;
  }

  body.home .c-topservice .mapbox .pinlist .pin-only {
    font-size: 13px;
    bottom: -25px;
    right: auto;
    left: 20px;
  }

  body.home .c-topservice .mapbox .pinlist .pin-only img {
    width: 20px;
  }

  body.home .c-topservice .kumo.k01 {
    left: -102px;
    top: 130px;
    width: 151px;
    height: 100px;
  }

  body.home .c-topservice .kumo.k02 {
    left: -62px;
    top: 285px;
    width: 233px;
    height: 150px;
  }

  body.home .c-topservice .kumo.k03 {
    left: 525px;
    top: 336px;
    width: 213px;
    height: 160px;
  }
}

/*--------------------------
Information
----------------------------*/
.information .c-information {
  padding: 8rem 20px 10rem;
}

.information .c-information .category-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 6rem;
}

.information .c-information .category-filter a {
  width: 18rem;
  height: 5rem;
  border-radius: 5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  border: 2px solid #b3b3b3;
  padding-left: 2rem;
  position: relative;
}

.information .c-information .category-filter a::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/common/bottom_arrow.png) no-repeat;
  top: 2rem;
  right: 1.5rem;
  width: 1rem;
  height: 0.8rem;
}

.information .c-information .category-filter a:hover,
.information .c-information .category-filter a.active {
  opacity: 1;
  background-color: #007bac;
  color: #fff;
  border-color: #007bac;
}

.information .c-information .category-filter a:hover::before,
.information .c-information .category-filter a.active::before {
  filter: brightness(0) invert(1);
}

.information .c-information .informationlist {
  max-width: 1000px;
  margin: auto;
}

.information .c-information .informationlist .informationitem a {
  position: relative;
  display: grid;
  grid-template-columns: 3fr 7fr;
  gap: 4rem;
  padding: 4rem 6rem 4rem 0rem;
  border-bottom: 1px solid #ebebeb;
}

.information .c-information .informationlist .informationitem a:hover {
  opacity: 1;
}

.information .c-information .informationlist .informationitem a .img-area {
  border: 3px solid #f8f8f8;
  border-radius: 7px;
  overflow: hidden;
  aspect-ratio: 150 / 113;
}

.information .c-information .informationlist .informationitem a .img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.3s ease;
}

.information .c-information .informationlist .informationitem a:hover .img-area img {
  scale: 1.1;
}

.information .c-information .informationlist .informationitem a .text-area {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.information .c-information .informationlist .informationitem a .category-area {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding: 1rem 0;
}

.information .c-information .informationlist .informationitem a .category {
  border-radius: 5px;
  border: 1px solid #fff;
  font-weight: 500;
  font-size: 1.4rem;
  color: #3a3a3a;
}

.information .c-information .informationlist .informationitem a .date {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #c2c2c2;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 1rem 0;
}

.information .c-information .informationlist .informationitem a .title {
  font-size: 2.4rem;
  font-weight: 800;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.information .c-information .informationlist .informationitem a:hover .title {
  text-decoration: underline;
}

.information .c-information .informationlist .informationitem a .btn {
  position: absolute;
  right: 0rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
}

@media screen and (max-width: 768px) {
  .information .c-information {
    padding: 40px 20px 70px;
  }

  .information .c-information .category-filter-sp {
    margin-bottom: 20px;
    position: relative;
    text-align: right;
  }

  .information .c-information .category-filter-sp::before {
    content: "";
    background-size: 100% !important;
    position: absolute;
    background: url(../images/common/white_blue_arrow_btn.png) no-repeat;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    z-index: 2;
    pointer-events: none;
  }

  .information .c-information .category-filter-sp select {
    border-radius: 50px;
    background-color: #007bac;
    border: unset;
    font-size: 13px;
    color: #fff;
    height: 50px;
    padding: 15px 40px 15px 20px;
    width: 175px;
    position: relative;
    appearance: none;
    font-weight: bold;
  }

  .information .c-information .informationlist .informationitem a {
    padding: 20px 0;
    gap: 10px;
    grid-template-columns: 4fr 6fr;
  }

  .information .c-information .informationlist .informationitem a .date {
    /* font-size: 12px; */
    font-size: 13px;
    padding: 0 0 10px;
  }

  .information .c-information .informationlist .informationitem a .category-area {
    gap: 10px;
    padding: 0 30px 0 0;
  }

  .information .c-information .informationlist .informationitem a .category {
    height: auto;
    /* font-size: 11px; */
    font-size: 12px;
  }

  .information .c-information .informationlist .informationitem a .title {
    width: 100%;
    font-size: 13px;
    -webkit-line-clamp: 2;
  }

  .information .c-information .informationlist .informationitem a .btn {
    right: 0rem;
    width: 20px;
    height: 20px;
    top: auto;
    transform: none;
    bottom: 20px;
  }
}

/*--------------------------
information SINGLE
----------------------------*/
.information-single-mv .contents-inner {
  max-width: 1000px;
  padding: 200px 0px 15px;
  border-bottom: 1px solid #ebebeb;
}

.information-single-mv .category-area {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding: 1rem 0;
}

.information-single-mv .category {
  border-radius: 5px;
  border: 1px solid #fff;
  font-weight: 500;
  font-size: 1.4rem;
  color: #3a3a3a;
}

.information-single-mv .date {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #c2c2c2;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 1rem 0;
}

.information-single-mv .title {
  font-size: 2.8rem;
  font-weight: 800;
}

.information-single-content {
  padding: 6rem 0 10rem;
}

.c-single .contents-inner {
  max-width: 1000px;
}

.c-single .btn-area {
  padding-top: 2rem;
}

.c-single .btn-area a {
  font-size: 1.8rem;
  color: #fff;
  background-color: #007bac;
  border-radius: 7rem;
  height: 7rem;
  width: 30rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  margin: auto;
}

.c-single .btn-area a:hover {
  transform: scale(0.9, 0.9);
}

.information-single .information-single-other .contents-inner {
  padding: 6rem 8rem;
  border-radius: 4rem;
  box-shadow: 0 0px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 10rem;
}

.information-single .information-single-other .title {
  font-size: 4.2rem;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
}

.information-single .information-single-other .detail {
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1rem 0 2rem;
  color: #5b5b5b;
}

@media screen and (max-width: 768px) {
  .information-single-mv .contents-inner {
    padding: 100px 0 15px;
  }

  .c-single .btn-area a {
    width: 225px;
    height: 55px;
    border-radius: 55px;
    font-size: 14px;
  }

  .information-single-mv .date {
    /* font-size: 11px; */
    font-size: 12px;
    padding: 20px 0;
  }

  .information-single-mv .title {
    font-size: 17px;
  }

  .information-single-mv .category-area {
    padding: 10px 0;
    gap: 20px;
  }

  .information-single-mv .category {
    /* font-size: 11px; */
    font-size: 12px;
  }

  .information-single-content {
    padding: 30px 0 60px;
  }

  .information-single .information-single-other .contents-inner {
    padding: 30px 20px;
    border-radius: 30px;
    margin-bottom: 70px;
  }

  .information-single .information-single-other .title {
    font-size: 27px;
  }

  .information-single .information-single-other .detail {
    /* font-size: 12px; */
    font-size: 13px;
    padding: 10px 0 20px;
  }
}

/*--------------------------
ABOUT
----------------------------*/
.c-aboutmv {
  padding-top: 120px;
  position: relative;
}

.c-aboutmv .img-area {
  width: 100%;
}

.c-aboutmv .img-area img {
  width: 100%;
}

.c-aboutmv .contents-inner {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1240px;
}

.c-aboutmv .contents-inner .title-area {
  position: relative;
  padding: 3rem 20px 1rem 20px;
}

.c-aboutmv .contents-inner .title-area::before {
  content: "";
  position: absolute;
  left: -58%;
  bottom: 0;
  background-color: #fff;
  height: 100%;
  width: 100%;
  z-index: -1;
  border-top-right-radius: 7rem;
}

.c-aboutmv .contents-inner .title-area::after {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/about/about_mv_shape.png) no-repeat;
  bottom: 0px;
  right: 53.3%;
  width: 5.9rem;
  height: 7.2rem;
  z-index: -1;
}

.c-aboutmv .contents-inner .title-area h1 {
  font-size: 5.6rem;
  font-weight: bold;
  color: #007bac;
  font-family: "Zen Maru Gothic", sans-serif;
}

.c-aboutmv .contents-inner .title-area .sub {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: -1px;
}

@media screen and (max-width: 1300px) {
  .c-aboutmv .contents-inner .title-area::after {
    right: 54.3%;
  }
}

@media screen and (max-width: 1000px) {
  .c-aboutmv .contents-inner .title-area::after {
    right: 53.8%;
  }

  .c-aboutmv .contents-inner .title-area .sub {
    font-size: 1.9rem;
  }
}

.c-aboutstory .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.about .title {
  font-size: 3.8rem;
  font-weight: 600;
  padding-bottom: 4rem;
  line-height: 1.3;
}

.about .detail {
  line-height: 2;
}

.c-aboutstory .content .img-area {
  text-align: right;
}

.c-aboutsolution {
  position: relative;
}

.c-aboutsolution::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/about/about_solution_bg.png) no-repeat;
  bottom: 0px;
  left: 0;
  width: 100%;
  aspect-ratio: 70 / 73;
  z-index: -1;
}

.c-aboutsolution .content {
  max-width: 1000px;
  margin: auto;
}

.c-aboutsolution .content .img-area {
  text-align: center;
  padding-top: 4rem;
}

.c-aboutsolution .content .img-area img {
  width: 61.7rem;
}

.c-aboutsolution .list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: -1px auto 0;
}

.c-aboutsolution .list .item {
  border: 4px solid #afdc00;
  background-color: #fbfdf2;
  border-radius: 2.5rem;
  padding: 4rem;
}

.c-aboutsolution .list .item:last-child {
  border: 4px solid #00c5f1;
  background-color: #f2fcfe;
}

.c-aboutsolution .list .item .head {
  font-size: 2.6rem;
  padding-bottom: 2rem;
  font-weight: 700;
}

.c-aboutsolution .sub-content {
  text-align: center;
  padding-top: 6rem;
}

.c-aboutsolution .sub-content .sub-head {
  font-size: 3.2rem;
  font-weight: 600;
  padding-bottom: 2rem;
}

.c-aboutsolution .sub-content .img-area {
  padding-top: 2rem;
  width: 100%;
}

.c-aboutproject .content {
  max-width: 1000px;
  margin: auto;
  padding-bottom: 10rem;
}

.c-aboutproject .content .list-area {
  margin: auto;
  width: fit-content;
  padding: 8rem 0 2rem;
}


.c-aboutproject .content .list-area .list-head {
  font-size: 2.2rem;
  font-weight: 700;
}

.c-aboutproject .content .list-area .list {
  display: flex;
  justify-content: center;
  background-color: #afdc00;
  width: max-content;
  margin: auto;
  border-radius: 1rem;
}

.c-aboutproject .content .list-area .list .item {
  border: 7px solid #afdc00;
  background-color: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem 1rem 1rem;
  margin-right: -0.5rem;
  text-align: center;
  width: 26.5rem;
}

.c-aboutproject .content .list-area .list .item img {
  height: 4rem;
}

.c-aboutproject .content .list-area .list .item .text {
  font-weight: bold;
  padding-top: 2rem;
}

.c-aboutproject .content .list-area.blue {
  padding: 0rem 0 7rem;
}

.c-aboutproject .content .list-area.blue .list {
  background-color: #00c5f1;
}

.c-aboutproject .content .list-area.blue .list .item {
  border: 7px solid #00c5f1;
}

.c-aboutproject .content .service-area {
  text-align: center;
}

.c-aboutproject .content .service-area .text {
  font-size: 2.6rem;
  font-weight: 700;
  padding-bottom: 3rem;
}

.c-aboutproject .content .service-area .common-blue-btn {
  width: max-content;
  font-size: 1.6rem;
  font-weight: 500;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .c-aboutmv {
    padding-top: 0px;
  }

  .c-aboutmv .contents-inner .title-area {
    padding: 10px 20px 10px;
  }

  .c-aboutmv .contents-inner .title-area::before {
    left: 0px;
    border-top-right-radius: 40px;
    width: 330px;
    bottom: -1px;
  }

  .c-aboutmv .contents-inner .title-area::after {
    right: auto;
    background: url(../images/about/about_mv_shape_sp.png) no-repeat;
    width: 35px;
    height: 42px;
    left: 328px;
    bottom: -1px;
  }

  .c-aboutmv .contents-inner .title-area h1 {
    font-size: 34px;
  }

  .c-aboutmv .contents-inner .title-area .sub {
    font-size: 14px;
  }

  .c-aboutstory .content {
    display: block;
  }

  .about .title {
    font-size: 24px;
    padding-bottom: 20px;
  }

  .c-aboutstory .content .img-area {
    text-align: center;
    padding: 20px 0;
  }

  .c-aboutsolution .content .img-area {
    padding: 20px 0 40px;
  }

  .c-aboutsolution .list {
    display: block;
  }

  .c-aboutsolution .list .item {
    border: 2px solid #afdc00;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
  }

  .c-aboutsolution .list .item .head {
    font-size: 20px;
    padding-bottom: 10px;
  }

  .c-aboutsolution .list .item:last-child {
    border: 2px solid #00c5f1;
  }

  .c-aboutsolution .sub-content .sub-head {
    font-size: 21px;
  }

  .c-aboutsolution .sub-content {
    padding-top: 30px;
  }

  .about .detail {
    text-align: left;
  }

  .c-aboutproject .content .list-area {
    padding: 20px 0 30px;
    width: 100%;
  }

  .c-aboutproject .content .list-area.blue {
    padding: 0 0 30px;
  }

  .c-aboutproject .content .list-area .list-head {
    font-size: 16px;
    padding-bottom: 5px;
  }

  .c-aboutproject .content .list-area .list {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 2%;
    padding: 2%;
    border-radius: 7px;
  }

  .c-aboutproject .content .list-area .list .item {
    border: 0px solid #afdc00;
    background-color: #ffffff;
    border-radius: 7px;
    padding: 10px;
    margin-right: 0;
    text-align: center;
    width: 48%;
  }

  .c-aboutproject .content .list-area.blue .list .item {
    border: 0px solid #00c5f1;
  }

  .c-aboutproject .content .list-area .list .item img {
    height: 27px;
  }

  .c-aboutproject .content .list-area .list .item .text {
    /* font-size: 11px; */
    font-size: 12px;
    padding-top: 15px;
  }

  .c-aboutproject .content .service-area .text {
    font-size: 15px;
    padding-bottom: 30px;
    letter-spacing: -1.1px;
  }

  .c-aboutproject .content .service-area .common-blue-btn {
    width: 270px;
    font-size: 14px;
    padding: 0;
  }

  .c-aboutproject .content {
    padding-bottom: 70px;
  }
}

/*--------------------------
SUPPORT
----------------------------*/
.common-search {
  background: linear-gradient(100deg, #ebfafc 10%, #f5fbee 100%);
  border-radius: 20px;
  padding: 5rem 10rem;
}

.support .common-search {
  margin-top: 30px;
}

.common-search .head {
  font-size: 4rem;
  padding-bottom: 1rem;
  font-weight: 700;
  text-align: center;
}

.common-search .detail {
  font-size: 1.8rem;
  padding-bottom: 2.5rem;
  text-align: center;
}

.common-search .search-box {
  display: grid;
  grid-template-columns: 9fr 1fr;
  gap: 1rem;
  align-items: center;
}

.common-search .search-box .input-wrapper {
  position: relative;
}

.common-search .search-box .input-wrapper::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/common/search_icon.png) no-repeat;
  left: 4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2.4rem;
  z-index: 2;
  pointer-events: none;
}

.common-search .search-box input {
  border-radius: 15px;
  background-color: #fff;
  border: unset;
  height: 8rem;
  width: 100%;
  font-size: 1.8rem;
  padding: 2rem 2rem 2rem 8rem;
  position: relative;
}

.common-search .search-box input::placeholder {
  color: #99cade;
}

.common-search .search-box .btn {
  font-size: 1.8rem;
  color: #fff;
  background-color: #007bac;
  border-radius: 6rem;
  height: 6rem;
  width: 16rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.common-search .search-box .btn:hover {
  transform: scale(0.9, 0.9);
  cursor: pointer;
}

.common-search .keyword {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 3rem;
}

.common-search .keyword span {
  padding-right: 1rem;
}

.common-search .keyword .item {
  font-size: 1.4rem;
  background-color: #fff;
  border-radius: 3px;
  padding: .5rem 1.5rem;
  font-weight: bold;
}

.common-search .keyword .item:hover {
  cursor: pointer;
  opacity: .5;
}

.support-title {
  font-size: 4.2rem;
  padding-bottom: 4rem;
  font-weight: 700;
  line-height: 1;
}

.support-detail {
  font-size: 1.8rem;
  padding-bottom: 4rem;
}

.c-supportstart .content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem 1rem;
}

.c-supportstart .content .item {
  height: 8rem;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0px 6px rgba(0, 0, 0, 0.15);
  font-size: 2.2rem;
  font-weight: 700;
}

.c-supportstart .content .item img {
  width: 3rem;
  height: 3rem;
}

.c-supportfaq {
  padding-bottom: 10rem;
}

.c-supportfaq .content {
  max-width: 1000px;
  margin: 0 auto 5rem;
}

.c-supportfaq .content .hd .icoq {
  top: 3rem;
}

.c-supportfaq .content .hd .category {
  font-size: 1.4rem;
  padding-bottom: 1rem;
}

.c-supportfaq .common-blue-btn {
  max-width: 26rem;
  margin: auto;
}

.guide-content {
  max-width: 1000px;
  margin: auto;
}

.guide-content .item {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 10px;
  background-color: #f2fcfe;
  padding: 2.5rem;
  position: relative;
  cursor: pointer;
}

.guide-content .item .toggle-head {
  position: relative;
  font-size: 2.2rem;
  font-weight: 700;
}

.guide-content .item .toggle-head::before,
.guide-content .item .toggle-head::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  background: #007bac;
  transition: 0.2s;
}

.guide-content .item .toggle-head::after {
  width: 2.5rem;
  height: 2px;
  transform: translateY(-50%);
}

.guide-content .item .toggle-head::before {
  width: 2px;
  height: 2.5rem;
  transform: translateY(-50%);
  right: 1.1rem;
}

.guide-content .item.active .toggle-head::before {
  transform: translateY(-50%) scaleY(0);
}

.guide-content .item .toggle-content {
  border-radius: 10px;
  background-color: #fff;
  padding: 2rem;
  margin-top: 1.5rem;
}

.guide-content .item .toggle-content li {
  padding-left: 2rem;
  position: relative;
  padding-bottom: .5rem;
}

.guide-content .item .toggle-content li::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/common/footer_arrow_sp.png) no-repeat;
  left: 0rem;
  width: .8rem;
  height: 1rem;
  top: .7rem;
}

.guide-content .item .toggle-content li a:hover {
  text-decoration: underline;
  opacity: 1;
}

.result {
  background: linear-gradient(100deg, #ebfafc 10%, #f5fbee 100%);
  padding-bottom: 8rem;
  margin-bottom: 10rem;
}

.result .common-search {
  background: none;
  padding-top: 6rem;
}

.c-supportresult .search-results {
  max-width: 1000px;
  margin: auto;
  padding: 6rem 8rem;
  border-radius: 2rem;
  background-color: #fff;
}

.c-supportresult .search-results .count {
  font-size: 2.6rem;
  font-weight: bold;
  color: #007bac;
  padding-bottom: 4rem;
}

.c-supportresult .search-results .head {
  padding-bottom: 4rem;
  font-size: 3rem;
  font-weight: 800;
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.c-supportresult .search-results .head:last-of-type {
  padding-top: 4rem;
}

.c-supportresult .search-results .head::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: #ebebeb;
}

.c-supportresult .search-results li {
  padding-bottom: 4rem;
}

.c-supportresult .search-results li a:hover {
  opacity: 1;
}

.c-supportresult .search-results h3 {
  font-size: 2.4rem;
  padding-bottom: 1.5rem;
}

.c-supportresult .search-results li a:hover h3 {
  text-decoration: underline;
}

.c-supportresult .search-results .excerpt {
  font-size: 1.8rem;
  padding-bottom: 1.5rem;
  font-weight: 500;
}

.c-supportresult .search-results .cat {
  font-size: 1.4rem;
}

.guide-single-content .title {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  padding: 6rem 0 4rem;
}

.guide-single-other {
  padding-top: 10rem;
}

.guide-single-other .guide-content .item {
  cursor: unset;
}

.guide-single-other .guide-content .item .toggle-head::before,
.guide-single-other .guide-content .item .toggle-head::after {
  display: none;
}

.guide-single-other .guide-content .item .toggle-head {
  pointer-events: none;
}

@media (max-width: 768px) {
  .common-search {
    padding: 30px 20px;
  }

  .common-search .head {
    font-size: 20px;
    padding-bottom: 20px;
  }

  .common-search .detail {
    /* font-size: 12px; */
    font-size: 13px;
    padding-bottom: 20px;
  }

  .common-search .search-box {
    display: block;
  }

  .common-search .search-box input {
    font-size: 12px;
    height: 60px;
    padding: 15px 15px 15px 45px;
  }

  .common-search .search-box .input-wrapper::before {
    left: 16px;
    width: 15px;
    height: 18px;
  }

  .common-search .search-box .btn {
    width: 140px;
    height: 50px;
    font-size: 14px;
    border-radius: 50px;
    margin: 20px auto 0;
  }

  .common-search .keyword {
    gap: 5px;
    flex-wrap: wrap;
  }

  .common-search .keyword span {
    width: 100%;
    padding-right: 0;
    padding-bottom: 10px;
  }

  .common-search .keyword .item {
    /* font-size: 11px; */
    font-size: 12px;
    border-radius: 3px;
    padding: 5px 10px;
  }

  .support-title {
    font-size: 24px;
    padding-bottom: 30px;
  }

  .support-detail {
    font-size: 14px;
    padding-bottom: 20px;
  }

  .c-supportstart .content {
    grid-template-columns: 1fr 1fr;
    gap: 10px 15px;
  }

  .c-supportstart .content .item {
    height: 50px;
    padding: 0 15px;
    font-size: 14px;
    border-radius: 7px;
  }

  .c-supportstart .content .item img {
    width: 20px;
    height: 20px;
  }

  .guide-content .item {
    padding: 15px;
  }

  .guide-content .item .toggle-head {
    font-size: 16px;
  }

  .guide-content .item .toggle-head::before {
    height: 15px;
    right: 6px;
  }

  .guide-content .item .toggle-head::after {
    width: 15px;
    height: 2px;
  }

  .guide-content .item .toggle-content {
    padding: 15px;
    margin-top: 15px;
  }

  .guide-content .item .toggle-content li {
    padding-left: 15px;
    padding-bottom: 5px;
  }

  .guide-content .item .toggle-content li::before {
    width: 6px;
    height: 8px;
    top: 7px;
  }

  .guide-content .item .toggle-content li a {
    text-decoration: underline;
  }

  .c-supportfaq {
    padding-bottom: 70px;
  }

  .c-supportfaq .content .hd .icoq {
    top: 15px;
  }

  .c-supportfaq .content .hd .category {
    /* font-size: 11px; */
    font-size: 12px;
    padding-bottom: 10px;
  }

  .c-supportfaq .common-blue-btn {
    font-size: 14px;
    font-weight: 600;
    margin: auto;
    height: 55px;
    width: 225px;
  }

  .result {
    padding-bottom: 50px;
    margin-bottom: 70px;
  }

  .result .common-search {
    padding: 40px 0;
  }

  .c-supportresult .search-results {
    border-radius: 10px;
    padding: 30px 20px 0;
  }

  .c-supportresult .search-results .count {
    padding-bottom: 20px;
    font-size: 14px;
  }

  .c-supportresult .search-results .head {
    font-size: 17px;
    padding-bottom: 20px;
    gap: 20px;
  }

  .c-supportresult .search-results h3 {
    font-size: 15px;
    padding-bottom: 10px;
  }

  .c-supportresult .search-results .excerpt {
    /* font-size: 12px; */
    font-size: 13px;
    padding-bottom: 10px;
  }

  .c-supportresult .search-results .cat {
    /* font-size: 10px; */
    font-size: 12px;
  }

  .c-supportresult .search-results li {
    padding-bottom: 30px;
  }

  .c-supportresult .search-results .head:last-of-type {
    padding-top: 20px;
  }

  .guide-single-content .title {
    font-size: 22px;
    padding: 40px 0 20px;
  }

  .guide-single-other {
    padding-top: 50px;
  }

  .guide-single-other .guide-content .item {
    margin-bottom: 0;
  }
}

/*--------------------------
FAQ
----------------------------*/
.faq .contents-inner {
  display: flex;
  justify-content: space-between;
  column-gap: 8rem;
  padding-top: 8rem;
}

.faq .contents-inner .faqaside {
  flex: none;
  width: 25rem;
}

.faq .contents-inner .faqaside .faqmenu {
  position: sticky;
  top: 140px;
  padding: 2rem 3rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0px 6px rgba(0, 0, 0, 0.15);
}

.faq .contents-inner .faqaside .faqmenu li {
  position: relative;
  border-bottom: 1px solid #f4f4f4;
}

.faq .contents-inner .faqaside .faqmenu li::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/common/footer_arrow_sp.png) no-repeat;
  right: 0;
  top: 2rem;
  width: .7rem;
  height: .9rem;
  transform: rotate(90deg);
}

.faq .contents-inner .faqaside .faqmenu li a {
  display: block;
  font-size: 1.4rem;
  line-height: 2;
  padding: 1rem 0;
}

.faq .contents-inner .artcon {
  flex: 1;
  width: 90rem;
}

.faq .contents-inner .artcon .faqlist {
  margin: 0 auto;
}

.faqdes {
  margin: 10rem 0 0;
}

.faqdes:first-child {
  margin-top: 0;
}

.faqdes .deshd {
  font-size: 3rem;
  font-weight: 800;
}

.faqdes .desbd {
  margin-top: 2rem;
}

.faqitem {
  background-color: #fff;
  border-bottom: 1px solid #ebebeb;
  display: block;
}

.faqitem:hover {
  opacity: 1;
}

.faqitem .hd {
  position: relative;
  padding: 3.2rem 5rem 3.2rem 5.5rem;
  cursor: pointer;
}

.faqitem .hd .tit {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.7;
}

.faqitem:hover .hd .tit {
  text-decoration: underline;
}

.faqitem .hd .icoq {
  position: absolute;
  top: 2.5rem;
  left: 0rem;
  font-size: 3.6rem;
  line-height: 1;
  color: #007bac;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
}

.faqitem .hd .icostate {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
}

.faqitem:last-child {
  margin-bottom: 0;
}

.c-faqsearch {
  margin: 10rem 0;
}

@media (max-width: 768px) {
  .faq {
    margin: 30px 0;
    padding-top: 0px;
  }

  .faq .contents-inner {
    display: block;
    padding-top: 0;
  }

  .faq .contents-inner .faqaside {
    display: none;
  }

  .faq .contents-inner .artcon {
    width: 100%;
  }

  .faq .select-wrapper {
    position: relative;
    margin-bottom: 40px;
  }

  .faq .select-wrapper::before {
    content: "";
    background-size: 100% !important;
    position: absolute;
    background: url(../images/common/arrow_blue.png) no-repeat;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    z-index: 2;
    pointer-events: none;
  }

  .faq .select-wrapper select {
    border-radius: 7px;
    background-color: #fff;
    border: unset;
    font-size: 14px;
    color: #007bac;
    height: 60px;
    padding: 15px 40px 15px 20px;
    width: 100%;
    position: relative;
    appearance: none;
    border: 1px solid #b8b8b8;
  }

  .faqdes {
    margin: 60px 0 0;
  }

  .faqdes .deshd {
    font-size: 18px;
    line-height: 1.5;
  }

  .faqdes .desbd {
    margin-top: 20px;
  }

  .faqitem .hd {
    padding: 20px 40px 20px 30px;
  }

  .faqitem .hd .tit {
    font-size: 13px;
    line-height: 1.5;
  }

  .faqitem .hd .icoq {
    top: 14px;
    font-size: 19px;
    line-height: 1.5;
  }

  .faqitem .hd .icostate {
    width: 20px;
    height: 20px;
  }

  .c-faqsearch {
    margin: 70px 0 70px;
  }
}

/*--------------------------
FAQ single
----------------------------*/
.c-faq-single-mv {
  background-color: #f2fcff;
}

.c-faq-single-mv .contents-inner {
  max-width: 1000px;
  padding: 200px 0px 80px;
}

.c-faq-single-mv .contents-inner .en-head {
  font-size: 2.2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  color: #007bac;
  line-height: 1;
  padding-bottom: 1rem;
}

.c-faq-single-mv .contents-inner .head {
  font-size: 5rem;
  font-weight: bold;
}

.c-faq-single-content .contents-inner {
  max-width: 1000px;
  border-bottom: 1px solid #ebebeb;
  padding-top: 6rem;
}

.c-faq-single-content .item {
  display: flex;
  gap: 3rem;
  padding-bottom: 6rem;
}

.c-faq-single-content .item .label {
  font-size: 5rem;
  line-height: 1;
  color: #007bac;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
}

.c-faq-single-content .item:last-child .label {
  color: #5b5b5b;
}

.c-faq-single-content .item .q {
  font-size: 3rem;
  line-height: 1.7;
  font-weight: 700;
}

.c-faq-single-content .item .a {
  font-size: 2rem;
  line-height: 1.7;
}

.c-faq-single-other .contents-inner {
  max-width: 860px;
  padding-top: 5rem;
}

.c-faq-single-other .faqlist {
  padding-bottom: 6rem;
}

.c-faq-single-other .btn-area a {
  font-size: 1.8rem;
  color: #fff;
  background-color: #007bac;
  border-radius: 7rem;
  height: 7rem;
  width: 30rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  margin: auto;
}

@media (max-width: 768px) {
  .c-faq-single-mv .contents-inner {
    padding: 130px 0px 40px;
  }

  .c-faq-single-mv .contents-inner .en-head {
    font-size: 14px;
    padding-bottom: 10px;
  }

  .c-faq-single-mv .contents-inner .head {
    font-size: 25px;
  }

  .c-faq-single-content .contents-inner {
    padding-top: 40px;
  }

  .c-faq-single-content .item {
    gap: 20px;
    padding-bottom: 40px;
  }

  .c-faq-single-content .item .label {
    font-size: 25px;
  }

  .c-faq-single-content .item .q {
    font-size: 16px;
  }

  .c-faq-single-content .item .a {
    font-size: 13px;
  }

  .c-faq-single-other .contents-inner {
    padding-top: 30px;
  }

  .c-faq-single-other .faqlist {
    padding-bottom: 40px;
  }

  .c-faq-single-other .btn-area a {
    width: 225px;
    height: 55px;
    font-size: 14px;
  }
}

/*--------------------------
CONTACT
----------------------------*/
.contact .c-contact {
  padding: 8rem 20px 10rem;
}

.contact .c-contact .contents-inner {
  max-width: 1000px;
}

.contact .c-contact .top-msg {
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  padding-bottom: 4rem;
}

.contact .c-contact .top-msg a {
  color: #007bac;
  text-decoration: underline;
  cursor: pointer;
}

.contact .c-contact .middle-msg {
  font-size: 2rem;
  text-align: center;
  line-height: 2;
  padding-bottom: 2rem;
}

.contact .c-contact .bottom-msg {
  font-size: 1.4rem;
  text-align: center;
  line-height: 2;
  padding-bottom: 3rem;
}

.contact .c-contact .content {
  padding: 6rem 8rem 6rem 14rem;
  border-radius: 1rem;
  box-shadow: 0 0px 12px rgba(0, 0, 0, 0.15);
}

.smf-form--simple-table .smf-item {
  padding: 0 0 4rem !important;
}

.smf-item a {
  text-decoration: underline;
}

.smf-form--simple-table .smf-item__col--label {
  flex: 0 0 15em !important;
  max-width: 15em !important;
}

.smf-item:has([data-validations~="required"]):last-child {
  padding: 0 !important;
  justify-content: center;
}

.smf-item:has([data-validations~="required"]):last-child .smf-item__col--label {
  display: none !important;
}

.smf-item:has([data-validations~="required"]):last-child .smf-item__col--controls {
  text-align: center;
}

.smf-form--simple-table .smf-item p {
  font-size: 1.3rem;
  padding-top: 1rem;
}

.smf-item__label__text {
  position: relative;
  font-weight: bold;
}

.smf-item:has([data-validations~="required"]) .smf-item__label__text::before {
  position: absolute;
  top: 50%;
  left: -7rem;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 6rem;
  height: 2.6rem;
  border-radius: 2.6rem;
  font-size: 1.4rem;
  content: "必須";
  color: #fff;
  background: #007bac;
  line-height: 0.7;
}

.smf-item:has([data-validations~="required"]):last-child .smf-item__label__text::before {
  display: none;
}

.smf-item:not(:has([data-validations~="required"])) .smf-item__label__text::before {
  position: absolute;
  top: 50%;
  left: -7rem;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 6rem;
  height: 2.6rem;
  border-radius: 2.6rem;
  font-size: 1.4rem;
  content: "任意";
  background: #f2f2f2;
  line-height: 0.7;
}

.smf-form .smf-radio-button-control {
  gap: 20px !important;
}

.smf-form .smf-radio-button-control__control {
  background-color: unset !important;
  border: 1px solid #fff !important;
}

.smf-form .smf-radio-button-control__control:checked {
  background-color: #007bac !important;
  border-color: #fff !important;
}

.smf-form .smf-radio-button-control__control:checked:before {
  background-color: #007bac !important;
}

.smf-form .smf-select-control {
  width: 100%;
  position: relative !important;
}

.smf-form .smf-select-control::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/common/bottom_arrow.png) no-repeat;
  top: 2.2rem;
  right: 2rem;
  width: 1rem;
  height: 0.8rem;
  z-index: 2;
  pointer-events: none;
}

.smf-form .smf-select-control__control {
  width: 100%;
  padding: 1.3rem 2rem !important;
  border-radius: 5px !important;
  border: 1px solid #bcbcbc !important;
  background-color: #f8f8f8 !important;
}

.smf-form .smf-text-control__control {
  width: 100%;
  padding: 1.3rem 2rem !important;
  border-radius: 5px !important;
  border: unset !important;
  background-color: #f8f8f8 !important;
}

.smf-form .smf-textarea-control__control {
  padding: 1.3rem 2rem !important;
  border-radius: 5px !important;
  border: unset !important;
  background-color: #f8f8f8 !important;
  resize: none;
}

.smf-checkboxes-control {
  padding-bottom: 2rem;
}

.smf-form .smf-checkbox-control {
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
  justify-content: center !important;
}

.smf-form .smf-checkbox-control__control {
  width: 2.8rem !important;
  height: 2.8rem !important;
  margin-top: 0 !important;
}

.smf-form .smf-checkbox-control__control:checked {
  background-color: #007bac !important;
  border-color: #007bac !important;
}

.smf-form .smf-checkbox-control__control:checked:before {
  height: 1.5rem;
  width: 1rem;
  border-width: 0 .3rem .3rem 0;
  top: .4rem;
  left: .9rem;
}

.smf-button-control__control {
  position: relative !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: #007bac !important;
  color: #fff !important;
  text-decoration: none;
  overflow: hidden;
  border-radius: 7rem !important;
  border: unset !important;
  font-size: 1.8rem;
  font-weight: bold;
  width: 30rem;
  height: 7rem;
  transition: transform 0.3s ease !important;
}

.smf-button-control__control:hover {
  transform: scale(0.9, 0.9);
  cursor: pointer;
}

.contact .c-contact .bottom-msg {
  text-align: center;
}

.contact .c-contact .bottom-msg a {
  text-decoration: underline;
}

.contact .c-contact .wp-block-spacer {
  background-color: #ebebeb;
  margin-bottom: 5rem;
  position: relative;
}

.contact .c-contact .wp-block-spacer::after {
  content: "";
  position: absolute;
  top: 0;
  left: -7rem;
  width: 7rem;
  height: 100%;
  background-color: #ebebeb;
}

.popup-thanks {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-thanks .popup-inner {
  background: #fff;
  padding: 8rem;
  border-radius: 4rem;
  text-align: center;
}

.popup-thanks .popup-inner .head-msg {
  font-size: 6rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  color: #007bac;
  line-height: 1;
  padding-bottom: 4rem;
}

.popup-thanks .popup-inner .sub-msg {
  font-size: 3rem;
  font-weight: bold;
}

.popup-thanks .popup-inner .detail {
  font-size: 2rem;
  font-weight: 500;
  padding: 2rem 0;
}

.popup-thanks .popup-inner .sub-detail {
  padding-bottom: 5rem;
}

.popup-thanks .popup-inner .close {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #333;
  color: #fff;
  border-radius: 7rem;
  font-size: 1.8rem;
  font-weight: bold;
  width: 25rem;
  height: 7rem;
  margin: auto;
  transition: transform 0.3s ease !important;
}

.popup-thanks .popup-inner .close:hover {
  transform: scale(0.9, 0.9);
  cursor: pointer;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .contact .c-contact {
    padding: 40px 20px 70px;
  }

  .contact .c-contact .head-msg {
    font-size: 18px;
  }

  .contact .c-contact .detail {
    font-size: 13px;
    padding: 30px 0rem;
  }

  .contact .c-contact .content {
    padding: 30px 20px;
  }

  .smf-item__label__text {
    padding-left: 60px;
  }

  .smf-item:has([data-validations~="required"]) .smf-item__label__text::before {
    left: 0;
    font-size: 11px;
    width: 45px;
    height: 20px;
  }

  .smf-item:not(:has([data-validations~="required"])) .smf-item__label__text::before {
    left: 0;
    font-size: 11px;
    width: 45px;
    height: 20px;
  }

  .smf-checkboxes-control {
    padding: 0;
    text-align: center;
  }

  .smf-button-control__control {
    width: 200px;
    height: 50px;
    font-size: 14px;
    margin-top: 10px;
  }

  .smf-form .smf-text-control__control {
    padding: 13px 15px !important;
    border-radius: 6px !important;
  }

  .smf-form .smf-textarea-control__control {
    padding: 13px 15px !important;
    border-radius: 6px !important;
  }

  .contact .c-contact .back-btn {
    width: 200px;
    height: 50px;
    font-size: 14px;
  }

  .contact .c-contact .middle-msg {
    font-size: 14px;
  }

  .contact .c-contact .bottom-msg {
    /* font-size: 10px; */
    font-size: 12px;
    padding-bottom: 20px;
    text-align: left;
  }

  .contact .c-contact .wp-block-spacer {
    margin-bottom: 30px;
  }

  .contact .c-contact .wp-block-spacer::after {
    display: none;
  }

  .smf-form--simple-table .smf-item p {
    /* font-size: 11px; */
    font-size: 12px;
  }

  .smf-form--simple-table .smf-item {
    padding: 0 0 30px !important;
  }

  .smf-form--simple-table .smf-item__col--label {
    max-width: unset !important;
  }

  .smf-form .smf-checkbox-control {
    font-size: 12px;
  }

  .smf-form .smf-checkbox-control__control {
    width: 20px !important;
    height: 20px !important;
    margin-top: 0 !important;
  }

  .smf-form .smf-checkbox-control__control:checked:before {
    height: 10px;
    width: 7px;
    border-width: 0 2px 2px 0;
    top: 3px;
    left: 6px;
  }

  .contact .c-contact .top-msg {
    font-size: 15px;
    padding-bottom: 20px;
  }

  .popup-thanks .popup-inner {
    padding: 40px;
    border-radius: 20px;
  }

  .popup-thanks .popup-inner .head-msg {
    font-size: 40px;
    padding-bottom: 30px;
  }

  .popup-thanks .popup-inner .sub-detail {
    padding-bottom: 30px;
  }
}


/*--------------------------
INTRODUCE
----------------------------*/
.introduce-mv {
  padding: 220px 20px 100px;
}

.introduce-mv::before {
  background: url(../images/introduce/introduce_mv_bk.png) no-repeat;
  bottom: 0;
  right: 0;
  width: 1400px;
  height: 638px;
}

.introduce-mv .contents-inner {
  display: block;
}

.introduce-mv .inner {
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.introduce-mv .sub-contents-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  line-height: 2;
  padding-top: 4rem;
}

.introduce .inner {
  max-width: 900px;
}

.introduce .common-border-head {
  padding-top: 0;
}

.introduce .title {
  font-size: 4.2rem;
  font-weight: 600;
  padding-bottom: 4rem;
  line-height: 1.3;
}

.introduce .sub-title {
  font-size: 2.6rem;
  font-weight: 700;
  padding: .5rem 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.introduce .sub-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: .6rem;
  background-color: #00709f;
}

.c-introducecase .content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem 2rem;
  padding-bottom: 6rem;
}

.c-introducecase .content .item .text {
  font-size: 1.8rem;
  font-weight: 700;
  padding-top: 1rem;
  text-align: center;
}

.c-introducecase .function-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 6rem;
}

.c-introducecase .function-content .item {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.c-introducecost {
  padding: 8rem 20px 6rem;
  background-color: #f2fcff;
  border-radius: 60px;
}

.c-introducecost .content {
  padding: 4rem 4rem 6rem;
  background-color: #fff;
  border-radius: 2rem;
  margin-bottom: 3rem;
}

.c-introducecost .content .head {
  font-size: 2.6rem;
  font-weight: 700;
  padding-bottom: 2rem;
  margin-bottom: 4rem;
  position: relative;
  display: flex;
}

.c-introducecost .content .head::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #007bac 0%, #007bac 15%, #ebebeb 15%, #ebebeb 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}

.c-introducecost .content .head span {
  font-size: 1.4rem;
}

.c-introducecost .app-area .plan-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  text-align: center;
}

.c-introducecost .app-area .plan-list .item {
  border-radius: 2rem;
  border: .6rem solid #ebebeb;
  padding: 1.5rem 2rem;
}

.c-introducecost .app-area .plan-list .item .plan-title {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: center;
  gap: .2rem;
  font-size: 2.2rem;
  font-weight: 700;
  border-bottom: 2px solid #ebebeb;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.c-introducecost .app-area .plan-list .item .plan-title span {
  font-size: 1.4rem;
}

.c-introducecost .app-area .plan-list .item .fee {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
}

.c-introducecost .app-area .plan-list .item .fee span {
  font-size: 4.6rem;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
}

.c-introducecost .app-area .plan-list .btm-text {
  font-size: 1.4rem;
  padding-top: 1rem;
}

.c-introducecost .app-area .option-head {
  position: relative;
  padding-left: 2.8rem;
  font-size: 1.8rem;
  font-weight: 800;
  padding-bottom: 2rem;
}

.c-introducecost .app-area .option-head::before {
  content: '';
  position: absolute;
  left: 0;
  top: .3rem;
  display: block;
  width: 2rem;
  height: 2rem;
  background: #007bac;
  border-radius: .3rem;
}

.c-introducecost .app-area .option-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.c-introducecost .app-area .option-content li {
  border-radius: 1rem;
  border: .2rem solid #ebebeb;
  background-color: #f8f8f8;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 800;
}

.c-introducecost .app-area .option-content li.clickable {
  cursor: pointer;
  position: relative;
}

.c-introducecost .app-area .option-content li.clickable .sub-msg {
  display: none;
  position: absolute;
  left: 0;
  bottom: -10.5rem;
  font-size: 1.4rem;
  font-weight: normal;
  background-color: #00709f;
  border-radius: 1rem;
  padding: 1rem;
  color: #fff;
  width: 37rem;
}

.c-introducecost .app-area .option-content li.clickable .sub-msg a {
  color: #fff;
  text-decoration: underline;
}

.c-introducecost .app-area .option-content li.clickable .sub-msg-inner {
  position: relative;
}

.c-introducecost .app-area .option-content li.clickable .sub-msg-inner::before {
  content: "";
  position: absolute;
  top: -2rem;
  left: 2rem;
  width: 0;
  height: 0;
  border-left: .5rem solid transparent;
  border-right: .5rem solid transparent;
  border-bottom: 1rem solid #00709f;
}


.c-introducecost .app-area .option-content li img {
  width: 3rem;
  height: 3rem;
}

.c-introducecost .month-area .top-text {
  font-weight: bold;
}

.c-introducecost .month-area .middle-text {
  font-size: 1.3rem;
}

.c-introducecost .month-area .plan-list {
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  text-align: center;
}

.c-introducecost .month-area .plan-list li {
  border: 1px solid #ebebeb;
  border-right: unset;
}

.c-introducecost .month-area .plan-list li:last-child {
  border-right: 1px solid #ebebeb;
}

.c-introducecost .month-area .plan-list .item-head {
  background-color: #f8f8f8;
  padding: 1.5rem 0;
}

.c-introducecost .month-area .plan-list .item-detail {
  font-size: 1.3rem;
  padding: 1.5rem 0;
  font-weight: bold;
}

.c-introducecost .month-area .plan-list .item-detail span {
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
}

.c-introducecost .time-area {
  padding-top: 4rem;
  text-align: center;
}

.c-introducecost .time-area .main-text {
  font-size: 1.8rem;
  font-weight: 800;
  padding-bottom: 5rem;
}

.c-introducecost .time-area .time-content {
  border-radius: 2rem;
  border: .6rem solid #ebebeb;
  padding: 5rem 0 3rem;
  position: relative;
}

.c-introducecost .time-area .time-content .time-head {
  position: absolute;
  background-color: #ebebeb;
  height: 5rem;
  width: 35rem;
  border-radius: 5rem;
  top: -2.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.c-introducecost .time-area .time-content .text {
  font-size: 2.2rem;
  font-weight: 800;
  padding-top: 2rem;
}

.c-introducecost .time-area .bottom-text {
  font-weight: 600;
  padding: 3rem 0;
}

.c-introducecost .time-area .common-blue-btn {
  font-size: 1.8rem;
  color: #fff;
  background-color: #007bac;
  border-radius: 8rem;
  height: 8rem;
  width: 35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  margin: auto;
}

.c-introduceapplication {
  padding: 8rem 20px;
}

.c-introduceapplication .applicationlist {
  padding-top: 15rem;
}

.c-introduceflow .content {
  padding-bottom: 6rem;
}

.c-introduceflow .content .sub-title {
  cursor: pointer;
}

.c-introduceflow .content .sub-title::after {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/introduce/flow_plus.png) no-repeat;
  top: 50%;
  transform: translateY(-50%);
  right: 0rem;
  width: 4rem;
  height: 4rem;
}

.c-introduceflow .content .active .sub-title::after {
  background: url(../images/introduce/flow_minus.png) no-repeat;
}

.c-introduceflow .content .toggle-content {
  max-width: 100rem;
  margin: 0 auto;
  padding-left: 5rem;
}

.c-introduceflow .content .toggle-content>li {
  position: relative;
  display: grid;
  grid-template-columns: 14rem minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 3rem;
  min-height: 17rem;
  padding: 2.5rem 5rem 2.5rem 8rem;
  background-color: #fff;
  border: .5rem solid #008ac2;
  border-radius: 2.5rem;
  box-shadow: 0 .4rem 1.2rem rgba(0, 123, 172, .12);
}

.c-introduceflow .content .toggle-content>li+li {
  margin-top: 3rem;
}

.c-introduceflow .content .toggle-content>li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: .5rem;
  height: 4rem;
  background-color: #008ac2;
  transform: translateX(-50%);
}

.c-introduceflow .content .toggle-content>li .step {
  position: absolute;
  top: 50%;
  left: -5.5rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 10rem;
  height: 10rem;
  color: #fff;
  background-color: #007bac;
  border-radius: 50%;
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  line-height: 1;
  transform: translateY(-50%);
}

.c-introduceflow .content .toggle-content>li .step span {
  display: block;
  font-size: 4rem;
  letter-spacing: 2px;
}

.c-introduceflow .content .toggle-content>li .img {
  grid-column: 1;
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 14rem;
  height: 14rem;
  margin: 0;
  border-radius: 50%;
}

.c-introduceflow .content .toggle-content>li .img img {
  display: block;
  width: 14rem;
  height: 14rem;
  object-fit: contain;
}

.c-introduceflow .content .toggle-content>li .head {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  padding-bottom: 1rem;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.4;
}

.c-introduceflow .content .toggle-content>li .detail {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  color: #4f4f4f;
  font-size: 1.7rem;
  line-height: 1.7;
}

.c-introduceflow .trial-area {
  border-radius: 2rem;
  padding: 4rem;
  background-color: #f5f5f5;
}

.c-introduceflow .trial-area .en-head {
  font-size: 2.2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #00709f;
  font-weight: bold;
}

.c-introduceflow .trial-area .head {
  font-size: 2.6rem;
  font-weight: 700;
}

.c-introduceflow .trial-area .trial-content {
  padding-top: 4rem;
  display: flex;
  justify-content: space-between;
}

.c-introduceflow .trial-area .trial-content .text {
  width: 57%;
}

.c-introduceflow .trial-area .trial-content .btn-area .common-blue-btn {
  font-size: 2rem;
  border-radius: 8rem;
  height: 8rem;
  width: 30rem;
  line-height: 1.2;
}

.c-introduceflow .trial-area .trial-content .btn-area .dl-btn {
  margin: auto;
  width: max-content;
  font-size: 1.8rem;
  font-weight: 800;
  margin-top: 2rem;
  gap: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.c-introduceflow .trial-area .trial-content .btn-area .dl-btn span {
  border-bottom: 1px solid #333;
}

.c-introduceflow .trial-area .trial-content .btn-area .dl-btn img {
  width: 2rem;
  height: 1.8rem;
}

.c-introduceflow .last-msg {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  padding-top: 6rem;
}

.c-serviceneed {
  padding-bottom: 8rem;
}

.c-introducecaselist {
  padding: 0rem 20px 10rem;
}

.c-introducecaselist .casestudylist {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}

.c-introducecaselist .casestudylist .casestudyitem {
  position: relative;
  padding-bottom: 2rem;
  border-bottom: 1px solid #ebebeb;
}

.c-introducecaselist .casestudylist .casestudyitem .img {
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 4 / 3;
  background-color: #cbcaca;
}

.c-introducecaselist .casestudylist .casestudyitem .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.3s ease;
}

.c-introducecaselist .casestudylist .casestudyitem a:hover .img img {
  scale: 1.1;
}

.c-introducecaselist .casestudylist .casestudyitem .title {
  font-size: 1.8rem;
  font-weight: 800;
  padding: 2rem 1rem 2rem;
}

.c-introducecaselist .casestudylist .casestudyitem a:hover {
  opacity: 1;
}

.c-introducecaselist .casestudylist .casestudyitem a:hover .title {
  text-decoration: underline;
}

.c-introducecaselist .casestudylist .casestudyitem .category-area {
  display: flex;
  gap: 0 1.5rem;
  flex-wrap: wrap;
  font-size: 1.4rem;
  padding: 0 4rem 0 1rem;
}

.c-introducecaselist .casestudylist .casestudyitem .arrow {
  position: absolute;
  bottom: 2rem;
  right: 0rem;
  width: 3rem;
  height: 3rem;
}

.c-introducecaselist .case-list-btn {
  margin-top: 5rem;
}

@media screen and (max-width: 768px) {
  .introduce-mv {
    padding: 120px 20px 50px;
  }

  .introduce-mv::before {
    background: url(../images/introduce/introduce_mv_bk_sp.png) no-repeat;
    width: 100%;
    height: auto;
    aspect-ratio: 375 / 539;
  }

  .introduce-mv .inner {
    display: block;
  }

  .introduce .title {
    font-size: 24px;
    padding-bottom: 20px;
  }

  .c-introducecase .content .item .text {
    /* font-size: 12px; */
    font-size: 13px;
  }

  .introduce .sub-title {
    font-size: 18px;
    padding: 5px 15px;
    margin-bottom: 20px;
  }

  .introduce .sub-title::before {
    width: 4px;
  }

  .c-introducecase .content {
    grid-template-columns: 1fr 1fr;
    gap: 20px 20px;
    padding-bottom: 50px;
  }

  .c-introducecase .function-content {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-bottom: 60px;
  }

  .c-introducecase .function-content .item {
    gap: 15px;
    font-size: 12px;
  }

  .c-introducecase .function-content .item img {
    width: 50px;
    height: 50px;
  }

  .c-introducecost {
    border-radius: 20px;
    padding: 40px 20px 20px;
  }

  .c-introducecost .content {
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 10px;
  }

  .c-introducecost .content .head {
    font-size: 18px;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  .c-introducecost .app-area .plan-list {
    display: block;
  }

  .c-introducecost .app-area .plan-list .item {
    padding: 20px;
    border-radius: 10px;
    border: 3px solid #ebebeb;
  }

  .c-introducecost .app-area .plan-list .item .plan-title {
    font-size: 15px;
  }

  .c-introducecost .app-area .plan-list .item .plan-title span {
    /* font-size: 11px; */
    font-size: 12px;
  }

  .c-introducecost .app-area .plan-list .item .fee {
    font-size: 16px;
  }

  .c-introducecost .app-area .plan-list .item .fee span {
    font-size: 28px;
  }

  .c-introducecost .app-area .plan-list .item .sub-fee {
    /* font-size: 11px; */
    font-size: 12px;
  }

  .c-introducecost .app-area .plan-list .btm-text {
    /* font-size: 11px; */
    font-size: 12px;
    padding-bottom: 20px;
  }

  .c-introducecost .app-area .option-head {
    font-size: 16px;
    padding-left: 25px;
  }

  .c-introducecost .app-area .option-head::before {
    width: 16px;
    height: 16px;
    top: 4px;
  }

  .c-introducecost .app-area .option-content {
    display: block;
  }

  .c-introducecost .app-area .option-content li {
    border-radius: 10px;
    padding: 15px;
    /* font-size: 12px; */
    font-size: 13px;
    margin-bottom: 10px;
  }

  .c-introducecost .app-area .option-content li img {
    width: 20px;
    height: 20px;
  }

  .c-introducecost .month-area .plan-list {
    padding: 20px 0;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .c-introducecost .month-area .plan-list li:nth-of-type(3) {
    border-right: 1px solid #ebebeb;
  }

  .c-introducecost .month-area .plan-list .item-head {
    /* font-size: 12px; */
    font-size: 13px;
    padding: 10px 0;
  }

  .c-introducecost .month-area .plan-list .item-detail {
    /* font-size: 10px; */
    font-size: 11px;
    padding: 10px 0;
  }

  .c-introducecost .month-area .plan-list .item-detail span {
    font-size: 13px;
  }

  .c-introducecost .month-area .middle-text {
    /* font-size: 11px; */
    font-size: 12px;
  }

  .c-introducecost .time-area .main-text {
    padding-bottom: 0px;
    font-size: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .c-introducecost .time-area .time-content .time-head {
    width: 100%;
    max-width: 220px;
    height: 50px;
    border-radius: 50px;
    font-size: 13px;
  }

  .c-introducecost .time-area .time-content .img {
    width: 80%;
    margin: auto;
  }

  .c-introducecost .time-area .time-content .text {
    padding-top: 20px;
    font-size: 16px;
  }

  .c-introducecost .time-area .time-content {
    padding: 50px 0 20px;
    border-radius: 10px;
    border: 3px solid #ebebeb;
  }

  .c-introducecost .time-area .bottom-text {
    text-align: left;
    padding: 20px 0 30px;
  }

  .c-introducecost .time-area .common-blue-btn {
    width: 100%;
    max-width: 285px;
    height: 55px;
    font-size: 14px;
    margin-bottom: 20px;
  }

  .c-introduceapplication {
    padding: 60px 20px 0;
  }

  .c-introduceapplication .applicationlist {
    padding-top: 80px;
  }

  .c-introduceflow .content {
    padding-bottom: 20px;
  }

  .c-introduceflow .content .sub-title::after {
    width: 30px;
    height: 30px;
  }

  .c-introduceflow .content .toggle-content {
    padding-left: 20px;
  }

  .c-introduceflow .content .toggle-content>li {
    grid-template-columns: 65px minmax(0, 1fr);
    column-gap: 12px;
    min-height: 105px;
    border-radius: 10px;
    border: 3px solid #008ac2;
    padding: 15px 15px 15px 35px;
  }

  .c-introduceflow .content .toggle-content>li+li {
    margin-top: 20px;
  }

  .c-introduceflow .content .toggle-content>li:not(:last-child)::after {
    width: 3px;
    height: 25px;
  }

  .c-introduceflow .content .toggle-content>li .step {
    left: -27px;
    width: 50px;
    height: 50px;
    font-size: 10px;
  }

  .c-introduceflow .content .toggle-content>li .step span {
    margin-top: 0;
    font-size: 20px;
  }

  .c-introduceflow .content .toggle-content>li .img {
    width: 65px;
    height: 65px;
    margin: 0;
  }

  .c-introduceflow .content .toggle-content>li .img img {
    width: 65px;
    height: 65px;
  }

  .c-introduceflow .content .toggle-content>li .head {
    padding-bottom: 5px;
    font-size: 15px;
    line-height: 1.4;
  }

  .c-introduceflow .content .toggle-content>li .detail {
    font-size: 13px;
    line-height: 1.6;
  }

  .c-introduceflow .trial-area {
    border-radius: 10px;
    padding: 30px 20px;
  }

  .c-introduceflow .trial-area .en-head {
    font-size: 16px;
  }

  .c-introduceflow .trial-area .head {
    font-size: 19px;
  }

  .c-introduceflow .trial-area .trial-content {
    padding-top: 20px;
    display: block;
  }

  .c-introduceflow .trial-area .trial-content .text {
    width: 100%;
  }

  .c-introduceflow .trial-area .trial-content .btn-area .common-blue-btn {
    width: 100%;
    max-width: 285px;
    height: 55px;
    font-size: 14px;
    margin: 20px auto;
  }

  .c-introduceflow .trial-area .trial-content .btn-area .dl-btn {
    font-size: 14px;
  }

  .c-introduceflow .trial-area .trial-content .btn-area .dl-btn img {
    width: 15px;
    height: 14px;
  }

  .c-introduceflow .last-msg {
    font-size: 18px;
    padding-top: 40px;
  }

  .c-introducecaselist .casestudylist {
    display: block;
  }

  .c-introducecaselist .casestudylist .casestudyitem .title {
    font-size: 16px;
    padding: 20px;
  }

  .c-introducecaselist .casestudylist .casestudyitem .category-area {
    font-size: 14px;
    gap: 5px 10px;
    padding: 0 40px 0 20px;
  }

  .c-introducecaselist .casestudylist .casestudyitem .arrow {
    bottom: 20px;
    width: 20px;
    height: 20px;
  }

  .c-introducecaselist .casestudylist .casestudyitem {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .c-introducecaselist .case-list-btn {
    margin-top: 50px;
    width: 285px;
    height: 65px;
    font-size: 14px;
  }

  .c-introducecost .app-area .option-content li.clickable .sub-msg {
    bottom: -80px;
    /* font-size: 11px; */
    font-size: 12px;
    border-radius: 10px;
    padding: 10px;
    width: 100%;
    z-index: 2;
  }
}

/*--------------------------
CASE
----------------------------*/
.case-mv {
  padding: 220px 20px 160px;
}

.case-mv::before {
  background: url(../images/introduce/introduce_mv_bk.png) no-repeat;
  top: 0;
  right: 0;
  width: 1400px;
  height: 638px;
}

.c-case {
  border-top: .2rem solid #007bac;
}

.c-case .contents-inner {
  position: relative;
  padding: 6rem 0 10rem;
}

.c-case .tab-area {
  position: absolute;
  top: -8.2rem;
  width: 100%;
}

.c-case .tab-area .tag-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.c-case .tab-area .tag-inner .item {
  border-top-right-radius: 3rem;
  border-top-left-radius: 3rem;
  height: 8rem;
  background-color: #ebebeb;
  font-size: 2.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: unset;
  color: #333333;
}

.c-case .filter-area {
  border-radius: 2rem;
  padding: 4rem 6rem;
  background: linear-gradient(100deg, #ebfafc 10%, #f5fbee 100%);
}

.c-case .filter-area .tag-area {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 2rem;
}

.c-case .filter-area .tag-area .tag {
  width: 23rem;
  height: 4rem;
  border-radius: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  background-color: #fff;
}

.c-case .filter-area .tag-area .tag input {
  display: none;
}

.c-case .filter-area .keyword-head {
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  padding-bottom: 1rem;
  border-bottom: 1px solid #007bac;
}

.c-case .filter-area .keyword-area {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2rem 0 4rem;
}

.c-case .filter-area .keyword-area .keyword {
  border-radius: 4rem;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  background-color: #fff;
  font-weight: bold;
  display: none;
}

.c-case .filter-area .keyword-area .keyword.visible {
  display: inline-block;
}

.c-case .filter-area .keyword-area .keyword input {
  display: none;
}

.c-case .tab-area .tag-inner .item.active,
.c-case .filter-area .tag-area .tag.active,
.c-case .filter-area .keyword-area .keyword.active {
  cursor: pointer;
  background-color: #007bac;
  color: #fff;
}

.c-case .btn-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-case .btn-area .more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: max-content;
  font-size: 1.8rem;
  font-weight: 800;
  margin-top: 3rem;
  color: #007bac;
  font-family: "Zen Maru Gothic", sans-serif;
  border: unset;
  background-color: unset;
}

.c-case .btn-area .more.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.c-case .btn-area .more span {
  text-decoration: underline;
}

.c-case .btn-area .more img {
  width: 2.6rem;
  height: 2.6rem;
}

.c-case .btn-area .more.close-mode img {
  transform: rotate(180deg);
}

.c-case .btn-area .clear-search {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.c-case .btn-area .clear-search .clear {
  width: 28rem;
  height: 6rem;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  background-color: #c1c1c1;
  font-size: 2rem;
  font-weight: bold;
  border: unset;
  color: #333333;
}

.c-case .btn-area .clear-search .search {
  width: 28rem;
  height: 6rem;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  align-items: center;
  font-size: 1.8rem;
  background-color: #007bac;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  border: unset;
}

.c-case .btn-area .clear-search .search img {
  width: 1.9rem;
  height: 2.1rem;
}

.c-case .result-head {
  padding-top: 6rem;
  font-size: 4rem;
  font-weight: 700;
  position: relative;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.c-case .result-head::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: #ebebeb;
}

.c-case .result-sub-head {
  font-weight: 800;
  padding: 1rem 0 4rem;
}

.c-case .result-area.usecase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.c-case .result-area.casestudy {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}

.c-case .result-area .item {
  background-color: #fff;
  padding: 4rem;
  border-radius: 1rem;
  box-shadow: 0 0px 12px rgba(0, 0, 0, 0.15);
}

.c-case .result-area.casestudy .item {
  padding: 2rem;
  cursor: pointer;
}

.c-case .result-area.casestudy .item:first-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 3fr 7fr;
  gap: 3rem;
}

.c-case .result-area .item .img {
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 4 / 3;
  background-color: #cbcaca;
}

.c-case .result-area .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.3s ease;
}

.c-case .result-area.casestudy .item:hover .img img {
  scale: 1.1;
}

.c-case .result-area.casestudy .item .text-area {
  position: relative;
}

.c-case .result-area.casestudy .item:first-child .text-area {
  padding-right: 10rem;
}

.c-case .result-area .item .title {
  font-size: 2.2rem;
  font-weight: 800;
  padding: 2rem 0 4rem;
}

.c-case .result-area.casestudy .item .company {
  color: #007bac;
  font-weight: 800;
  padding-top: 1.5rem;
}

.c-case .result-area.casestudy .item:first-child .company {
  font-size: 2rem;
  padding-top: 2rem;
}

.c-case .result-area.usecase .item .company {
  display: none;
}

.c-case .result-area.casestudy .item:hover .title {
  text-decoration: underline;
}

.c-case .result-area.casestudy .item:first-child .title {
  font-size: 2.8rem;
}

.c-case .result-area .item .detail {
  padding-bottom: 2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
}

.c-case .result-area .item .category-area {
  display: flex;
  gap: 0 1.5rem;
  flex-wrap: wrap;
  font-size: 1.3rem;
}

.c-case .result-area.casestudy .item .category-area {
  padding-right: 5rem;
  gap: 0 1rem;
}

.c-case .result-area.casestudy .item:first-child .category-area {
  font-size: 1.4rem;
  padding-right: 0;
}

.c-case .result-area.casestudy .item .arrow {
  position: absolute;
  bottom: 0rem;
  right: 0rem;
  width: 3rem;
  height: 3rem;
}

.c-case .result-area.casestudy .item:first-child .arrow {
  width: 5rem;
  height: 5rem;
}

.c-case .result-area.usecase .item .arrow {
  display: none;
}

@media screen and (min-width: 769px) {

  .c-case .tab-area .tag-inner .item:hover,
  .c-case .filter-area .tag-area .tag:hover,
  .c-case .filter-area .keyword-area .keyword:hover {
    cursor: pointer;
    background-color: #007bac;
    color: #fff;
  }

  .c-case .btn-area .more:hover,
  .c-case .btn-area .clear-search .clear:hover,
  .c-case .btn-area .clear-search .search:hover {
    opacity: .5;
    cursor: pointer;
  }
}

@media screen and (max-width: 768px) {
  .case-mv {
    padding: 140px 20px 80px;
  }

  .case-mv::before {
    background: url(../images/introduce/case_bg_sp.png) no-repeat;
    top: 0;
    right: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 75 / 68;
  }

  .c-case .contents-inner {
    padding: 30px 0 50px;
  }

  .c-case .tab-area {
    top: -47px;
  }

  .c-case .tab-area .tag-inner {
    gap: 10px;
  }

  .c-case .tab-area .tag-inner .item {
    /* font-size: 12px; */
    font-size: 13px;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    height: 45px;
  }

  .c-case .filter-area {
    border-radius: 10px;
    padding: 20px;
  }

  .c-case .filter-area .tag-area {
    gap: 10px;
  }

  .c-case .filter-area .tag-area .tag {
    width: 100%;
    height: 45px;
    border-radius: 45px;
    /* font-size: 12px; */
    font-size: 13px;
    margin-bottom: 20px;
  }

  .c-case .filter-area .keyword-head {
    /* font-size: 12px; */
    font-size: 13px;
    padding-bottom: 5px;
  }

  .c-case .filter-area .keyword-area {
    gap: 10px;
    padding: 20px 0;
  }

  .c-case .filter-area .keyword-area .keyword {
    /* font-size: 11px; */
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 35px;
  }

  .c-case .btn-area .more {
    /* font-size: 11px; */
    font-size: 12px;
    margin-top: 0;
    gap: 5px;
  }

  .c-case .btn-area .more img {
    width: 20px;
    height: 20px;
  }

  .c-case .btn-area .clear-search {
    gap: 5px;
  }

  .c-case .btn-area .clear-search .clear {
    /* font-size: 12px; */
    font-size: 13px;
    width: 95px;
    height: 50px;
    border-radius: 5px;
  }

  .c-case .btn-area .clear-search .search {
    /* font-size: 12px; */
    font-size: 13px;
    width: 105px;
    height: 50px;
    border-radius: 5px;
    gap: 5px;
  }

  .c-case .btn-area .clear-search .search img {
    width: 13px;
    height: 15px;
  }

  .c-case .result-head {
    font-size: 25px;
    padding-top: 40px;
    gap: 15px;
  }

  .c-case .result-sub-head {
    /* font-size: 12px; */
    font-size: 13px;
    padding: 10px 0 30px;
  }

  .c-case .result-area.usecase {
    display: block;
  }

  .c-case .result-area .item {
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
  }

  .c-case .result-area .item .title {
    font-size: 15px;
    padding: 15px 0;
  }

  .c-case .result-area .item .detail {
    padding-bottom: 15px;
    font-size: 13px;
  }

  .c-case .result-area .item .category-area {
    /* font-size: 11px; */
    font-size: 12px;
    gap: 0 10px;
  }

  .c-case .result-area.casestudy {
    display: block;
  }

  .c-case .result-area.casestudy .item:first-child {
    display: block;
  }

  .c-case .result-area.casestudy .item:first-child .text-area {
    padding-right: 0;
  }

  .c-case .result-area.casestudy .item:first-child .title {
    font-size: 15px;
  }

  .c-case .result-area.casestudy .item:first-child .category-area {
    padding-right: 20px;
    /* font-size: 11px; */
    font-size: 12px;
  }

  .c-case .result-area.casestudy .item:first-child .arrow {
    width: 20px;
    height: 20px;
  }

  .c-case .result-area.casestudy .item .arrow {
    width: 20px;
    height: 20px;
  }
}

/*--------------------------
CASE SINGLE
----------------------------*/
.casestudy-single-mv .contents-inner {
  max-width: 1000px;
  padding: 200px 0px 4rem;
  border-bottom: 1px solid #ebebeb;
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 4rem;
}

.casestudy-single-mv .img {
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 4 / 3;
  background-color: #cbcaca;
}

.casestudy-single-mv .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.casestudy-single-mv .company {
  color: #007bac;
  font-weight: 800;
  padding-top: 1.5rem;
  font-size: 2rem;
}

.casestudy-single-mv .title {
  font-size: 2.8rem;
  font-weight: 800;
  padding: 2rem 0 4rem;
}

.casestudy-single-mv .category-area {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 1.4rem;
}

.c-casestudy-single-content .introduction {
  padding-top: 6rem;
}

.c-casestudy-single-content .introduction>* {
  padding-bottom: 2rem;
}

.c-casestudy-single-content .overview {
  padding: 4rem 6rem 2rem;
  background-color: #f2fcff;
  border-radius: 2rem;
  margin-bottom: 3rem;
}

.c-casestudy-single-content .overview-title {
  font-size: 3rem;
  font-weight: 700;
  padding-bottom: 3rem;
}

.c-casestudy-single-content .overview-content h2 {
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 1rem;
}

.c-casestudy-single-content .overview-content ul {
  list-style: none;
  margin-bottom: 2rem;
}

.c-casestudy-single-content .overview-content li {
  position: relative;
  padding-left: 2rem;
  line-height: 2;
  font-size: 1.8rem;
}

.c-casestudy-single-content .overview-content li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.2rem;
  display: block;
  width: 1rem;
  height: 1rem;
  background: #007bac;
  border-radius: 50%;
}

.c-casestudy-single-content .editor-styles-wrapper p,
.c-casestudy-single-content .editor-styles-wrapper .wp-block-columns p {
  padding-bottom: 2rem;
}

.c-casestudy-single-content .editor-styles-wrapper .wp-block-columns {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 4%;
  align-items: start;
  padding-bottom: 4rem;
}

.c-casestudy-single-content .editor-styles-wrapper .wp-block-columns img {
  padding-bottom: 2rem;
  border-radius: 1rem;
}

.c-casestudy-single-content .company-info {
  padding: 4rem 6rem 3rem;
  border-radius: 1rem;
  box-shadow: 0 0px 12px rgba(0, 0, 0, 0.15);
  margin: 4rem 0 6rem;
}

.c-casestudy-single-content .company-info .head {
  padding-bottom: 2rem;
  font-size: 2rem;
  font-weight: bold;
  color: #007bac;
  position: relative;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.c-casestudy-single-content .company-info .head:after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: #ebebeb;
}

.c-casestudy-single-content .company-info .item {
  display: grid;
  grid-template-columns: 1.3fr 8.7fr;
  padding-bottom: 1rem;
  line-height: 1.7;
}

.c-casestudy-single-content .company-info .item .item-head {
  font-weight: 700;
}

.c-casestudy-single-other {
  padding-top: 8rem;
}

.c-casestudy-single-other .contents-inner {
  padding: 6rem 8rem;
  border-radius: 4rem;
  box-shadow: 0 0px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 10rem;
}

.c-casestudy-single-other .casestudy-title {
  font-size: 4.2rem;
  font-weight: bold;
  font-family: "Zen Maru Gothic", sans-serif;
}

.c-casestudy-single-other .casestudy-detail {
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1rem 0 3rem;
  color: #5b5b5b;
}

.c-casestudy-single-other .casestudylist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 2rem;
}

.c-casestudy-single-other .casestudylist .casestudyitem {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.c-casestudy-single-other .casestudylist .casestudyitem a {
  position: relative;
  display: grid;
  grid-template-columns: 4fr 6fr;
  align-items: center;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #ebebeb;
  height: 100%;
}

.c-casestudy-single-other .casestudylist .casestudyitem a:hover {
  opacity: 1;
}

.c-casestudy-single-other .casestudylist .casestudyitem a .img-area {
  border-radius: 7px;
  overflow: hidden;
  aspect-ratio: 150 / 113;
  background-color: #cbcaca;
}

.c-casestudy-single-other .casestudylist .casestudyitem a .img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.3s ease;
}

.c-casestudy-single-other .casestudylist .casestudyitem a:hover .img-area img {
  scale: 1.1;
}

.c-casestudy-single-other .casestudylist .casestudyitem a .text-area {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
}

.c-casestudy-single-other .casestudylist .casestudyitem a .category-area {
  display: flex;
  gap: 0 1rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-right: 4rem;
}

.c-casestudy-single-other .casestudylist .casestudyitem a .category {
  border-radius: 5px;
  font-weight: 500;
  font-size: 1.3rem;
  color: #3a3a3a;
}

.c-casestudy-single-other .casestudylist .casestudyitem a .company {
  color: #007bac;
  font-weight: 800;
  padding-bottom: 1rem;
  font-size: 1.3rem;
}

.c-casestudy-single-other .casestudylist .casestudyitem a .title {
  font-size: 1.8rem;
  font-weight: 800;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.c-casestudy-single-other .casestudylist .casestudyitem a:hover .title {
  text-decoration: underline;
}

.c-casestudy-single-other .casestudylist .casestudyitem a .text-area .arrow {
  width: 3rem;
  height: 3rem;
  position: absolute;
  right: 0;
  bottom: 0;
}

@media screen and (max-width: 768px) {
  .casestudy-single-mv .contents-inner {
    padding: 130px 0 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }

  .casestudy-single-mv .img {
    order: 1;
    width: 100%;
  }

  .casestudy-single-mv .company {
    /* font-size: 11px; */
    font-size: 12px;
    padding-top: 0;
  }

  .casestudy-single-mv .title {
    font-size: 17px;
    padding: 15px 0;
  }

  .casestudy-single-mv .category-area {
    gap: 10px;
    /* font-size: 11px; */
    font-size: 12px;
  }

  .c-casestudy-single-content .introduction {
    padding-top: 30px;
    font-size: 13px;
  }

  .c-casestudy-single-content .introduction>* {
    padding-bottom: 20px;
  }

  .c-casestudy-single-content .overview {
    padding: 20px 20px 10px;
    border-radius: 20px;
    margin-bottom: 30px;
  }

  .c-casestudy-single-content .overview-title {
    font-size: 17px;
    padding-bottom: 10px;
  }

  .c-casestudy-single-content .overview-content h2 {
    font-size: 14px;
    padding-bottom: 10px;
  }

  .c-casestudy-single-content .overview-content ul {
    list-style: none;
    margin-bottom: 2rem;
  }

  .c-casestudy-single-content .overview-content li {
    padding-left: 15px;
    line-height: 1.7;
    font-size: 13px;
  }

  .c-casestudy-single-content .overview-content li:before {
    top: 7px;
    width: 7px;
    height: 7px;
  }

  .c-casestudy-single-content .editor-styles-wrapper p,
  .c-casestudy-single-content .editor-styles-wrapper .wp-block-columns p {
    padding-bottom: 0px;
  }

  .c-casestudy-single-content .editor-styles-wrapper .wp-block-columns {
    display: block;
    padding-bottom: 30px;
  }

  .c-casestudy-single-content .editor-styles-wrapper .wp-block-columns img {
    padding-bottom: 0px;
    border-radius: 10px;
  }

  .c-casestudy-single-content .company-info {
    padding: 20px 20px 5px;
    border-radius: 10px;
    margin: 30px 0 20px;
  }

  .c-casestudy-single-content .company-info .head {
    padding-bottom: 10px;
    font-size: 14px;
    gap: 15px;
  }

  .c-casestudy-single-content .company-info .item {
    display: block;
    padding-bottom: 20px;
    font-size: 13px;
  }

  .c-casestudy-single-other {
    padding-top: 40px;
  }

  .c-casestudy-single-other .contents-inner {
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 70px;
  }

  .c-casestudy-single-other .casestudy-title {
    font-size: 27px;
  }

  .c-casestudy-single-other .casestudy-detail {
    /* font-size: 12px; */
    font-size: 13px;
    padding: 0px 0 0px;
  }

  .c-casestudy-single-other .casestudylist {
    display: block;
  }

  .c-casestudy-single-other .casestudylist .casestudyitem a {
    grid-template-columns: 4.5fr 5.5fr;
    gap: 10px;
    padding: 20px 0;
    align-items: start;
  }

  .c-casestudy-single-other .casestudylist .casestudyitem a .category-area {
    padding-right: 30px;
    padding-top: 10px;
  }

  .c-casestudy-single-other .casestudylist .casestudyitem a .category {
    /* font-size: 11px; */
    font-size: 12px;
  }

  .c-casestudy-single-other .casestudylist .casestudyitem a .company {
    /* font-size: 12px; */
    font-size: 13px;
    padding-bottom: 10px;
  }

  .c-casestudy-single-other .casestudylist .casestudyitem a .title {
    font-size: 15px;
  }

  .c-casestudy-single-other .casestudylist .casestudyitem a .text-area .arrow {
    width: 20px;
    height: 20px;
  }
}

/*--------------------------
SERVICE
----------------------------*/
.service-mv {
  padding: 220px 20px 80px;
}

.service-mv::before {
  display: none;
}

.service-mv .btn-area {
  display: flex;
  gap: 1rem;
}

.service-mv .btn-area .btn {
  font-size: 1.6rem;
  color: #fff;
  background-color: #007bac;
  border-radius: 6rem;
  height: 6rem;
  width: 24rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: transform 0.3s ease;
  position: relative;
}

.service-mv .btn-area .btn:last-child {
  width: 29rem;
}

.service-mv .btn-area .btn img {
  width: 2.6rem;
  height: 2.6rem;
}

@media screen and (min-width: 769px) {

  .service-mv .btn-area .btn:hover {
    transform: scale(0.9, 0.9);
    opacity: 1;
    cursor: pointer;
  }
}

.c-service .common-border-head {
  padding-top: 0;
}

.c-service .service-title {
  font-size: 4.2rem;
  font-weight: 600;
  padding-bottom: 4rem;
  line-height: 1;
}

.c-service .applicationlist {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 13rem 3rem;
  padding-bottom: 10rem;
}

.c-service .otherlist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  padding: 2rem 0 6rem;
}

.c-service .otherlist .otheritem a:hover {
  opacity: 1;
}

.c-service .otherlist .otheritem a .img-area {
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 34 / 29;
  background-color: #cbcaca;
}

.c-service .otherlist .otheritem a .img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.3s ease;
}

.c-service .otherlist .otheritem a:hover .img-area img {
  scale: 1.1;
}

.c-service .otherlist .otheritem a .title {
  font-size: 2.6rem;
  font-weight: bold;
  padding: 1rem 3rem;
  position: relative;
  margin-bottom: 2.5rem;
}

.c-service .otherlist .otheritem a .title::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/common/vertical_border.png) no-repeat;
  top: 0rem;
  left: 0rem;
  width: 1rem;
  height: 6rem;
}

.c-service .otherlist .otheritem a .common-arrow-btn {
  width: max-content;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 2.5rem 0px 2.5rem auto;
}

.c-service .otherlist .otheritem a:hover .common-arrow-btn {
  text-decoration: underline;
}

.c-service .contact-area {
  border-radius: 2rem;
  padding: 6rem 8rem;
  background-color: #f5f5f5;
  margin-bottom: 10rem;
}

.c-service .contact-area .contact-head {
  font-size: 2.6rem;
  font-weight: 700;
}

.c-service .contact-area .contact-content {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-service .contact-area .contact-content .common-blue-btn {
  font-size: 2.2rem;
  border-radius: 10rem;
  height: 10rem;
  width: 41.5rem;
}

@media screen and (max-width: 768px) {}

/*--------------------------
SERVICE SINGLE
----------------------------*/
.c-service-single-mv {
  padding: 220px 20px 100px;
}

.c-service-single-mv::before {
  background: url(../images/service/service_single_mv_bk.png) no-repeat;
  bottom: -190px;
  right: 0;
  width: 1400px;
  height: 805px;
}

.c-service-single-mv.other {
  padding: 190px 20px 60px;
}

.c-service-single-mv.other::before {
  bottom: -130px;
}

.c-service-single-mv.other .content-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-service-single-mv .inner {
  max-width: 900px;
}

.c-service-single-mv .title-area {
  display: flex;
  gap: 3rem;
  align-items: end;
}

.c-service-single-mv .title-area .img img {
  /* width: 25rem; */
  width: auto;
  height: 6.6rem;
}

.c-service-single-mv .title-area h1 {
  font-size: 2.2rem;
  font-weight: 700;
}

.c-service-single-mv .detail-area {
  padding-top: 4rem;
  line-height: 1.7;
  font-size: 2rem;
}

.c-service-single-mv .other-title {
  font-size: 5.2rem;
  font-weight: 700;
}

.c-service-single-mv .other-img img {
  width: 42.7rem;
}

.service-single-content .inner {
  max-width: 900px;
}

.service-single-content .service-single-title {
  font-size: 4.2rem;
  font-weight: 700;
  padding-bottom: 4rem;
}

.c-serviceabout {
  padding: 8rem 20px 8rem;
  background-color: #f2fcff;
  border-radius: 60px;
  margin-bottom: 8rem;
}

.c-serviceabout .content {
  padding: 4rem 3rem;
  background-color: #fff;
  border-radius: 2rem;
}

.service-single-content .common-border-head {
  padding-top: 0;
}

.c-servicefeature {
  padding-bottom: 8rem;
}

.c-servicefeature .content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
}

.c-servicefeature .content .item {
  border-radius: 1rem;
  border: 2px solid #ebebeb;
  padding: .5rem .5rem 2.5rem;
}

.c-servicefeature .content .item .point {
  font-size: 1.8rem;
  background-color: #00709f;
  color: #fff;
  border-radius: 1rem;
  position: relative;
  width: 100%;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1;
  gap: 5px;
  margin-bottom: 2.5rem;
}

.c-servicefeature .content .item .point span {
  font-size: 2.8rem;
  padding-bottom: .2rem;
}

.c-servicefeature .content .item .point::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 15px solid #00709f;
  z-index: 2;
}

.c-servicefeature .content .item .title {
  font-size: 1.8rem;
  font-weight: 700;
  padding-bottom: 1rem;
  height: 6.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.c-servicefeature .content .item .text {
  font-size: 1.4rem;
  text-align: center;
}

.c-servicefeature .detail {
  padding-bottom: 6rem;
}

.c-servicefeature .bottom-text {
  padding-top: 2rem;
}

.c-servicefeature .video-embed {
  padding-top: 6rem;
  text-align: center;
}

.c-servicefeature .bottom-text a {
  text-decoration: underline;
  font-weight: bold;
}

.c-serviceinformation {
  padding-bottom: 8rem;
}

.c-serviceinformation .sub-head {
  font-size: 2.6rem;
  font-weight: 700;
  padding: 0rem 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.c-serviceinformation .sub-head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: .6rem;
  background-color: #afdc00;
}

.c-serviceinformation .sub-head.blue {
  margin-top: 5rem;
}

.c-serviceinformation .sub-head.blue::before {
  background-color: #00c5f1;
}

.c-serviceinformation .tointroduce,
.c-serviceneed .toguide {
  width: 30rem;
  padding: 2rem 5rem;
  margin-top: 3rem;
}

.c-serviceinformation .step-area {
  position: relative;
}

.c-serviceinformation .step-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 7.5rem;
  transform: translateX(-50%);
  width: 6px;
  height: 100%;
  background-color: #ebebeb;
  z-index: -2;
}

.c-serviceinformation .step-area .item {
  display: grid;
  grid-template-columns: 1.8fr 8.2fr;
  gap: 3rem;
  padding-bottom: 4rem;
  position: relative;
}

.c-serviceinformation .step-area .item:last-child {
  padding-bottom: 0;
}

.c-serviceinformation .step-area .item .step {
  font-size: 1.8rem;
  font-weight: bold;
  background-color: #eef6be;
  border-radius: 2rem;
  width: 15rem;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1;
  gap: 5px;
}

.c-serviceinformation .step-area .item:last-child .step::before {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 7.5rem;
  transform: translateX(-50%);
  width: 6px;
  /* height: 100%;  */
  top: 0;
  bottom: 0;
  background-color: #fff;
  z-index: -1;
}

.c-serviceinformation .step-area .item .step span {
  font-size: 3.2rem;
  padding-bottom: .2rem;
}

.c-serviceinformation .step-area .item .title {
  font-size: 2.6rem;
  font-weight: 700;
  padding-top: 2rem;
}

.c-serviceinformation .step-area .item .text {
  padding-top: 4rem;
}

.c-serviceinformation .step-area .item a {
  text-decoration: underline;
  font-weight: bold;
}

.c-serviceflow {
  padding-bottom: 8rem;
}

.c-serviceneed .content ul {
  list-style: none;
}

.c-serviceneed .content li {
  position: relative;
  padding-left: 3rem;
  line-height: 2;
  font-size: 2.6rem;
  font-weight: bold;
}

.c-serviceneed .content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.5rem;
  display: block;
  width: 2rem;
  height: 2rem;
  background: #007bac;
  border-radius: .5rem;
}

.c-serviceneed .content a {
  text-decoration: underline;
  font-weight: bold;
}

.c-serviceflow .content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 0 4rem 5rem;
}

.c-serviceflow .content .item {
  position: relative;
  display: grid;
  grid-template-columns: 14rem minmax(0, 1fr);
  align-items: center;
  gap: 3rem;
  min-height: 17rem;
  padding: 2.5rem 5rem 2.5rem 8rem;
  background-color: #fff;
  border: .5rem solid #008ac2;
  border-radius: 2.5rem;
  box-shadow: 0 .4rem 1.2rem rgba(0, 123, 172, .12);
}

.c-serviceflow .content .item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: .5rem;
  height: 4rem;
  background-color: #008ac2;
  transform: translateX(-50%);
}

.c-serviceflow .content .item .step {
  position: absolute;
  top: 50%;
  left: -5.5rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 10rem;
  height: 10rem;
  color: #fff;
  background-color: #007bac;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1;
  transform: translateY(-50%);
}

.c-serviceflow .content .item .step span {
  display: block;
  font-size: 4rem;
  letter-spacing: 2px;
}

.c-serviceflow .content .item .img {
  display: grid;
  place-items: center;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
}

.c-serviceflow .content .item .img img {
  display: block;
  width: 14rem;
  height: 14rem;
  margin: 0;
  object-fit: contain;
}

.c-serviceflow .content .item .flow-text-area {
  min-width: 0;
}

.c-serviceflow .content .item .title {
  padding-bottom: 1rem;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.4;
}

.c-serviceflow .content .item .text {
  color: #4f4f4f;
  font-size: 1.7rem;
  line-height: 1.7;
}

.c-serviceflow .common-blue-btn {
  width: 30rem;
  padding: 2rem 5rem;
  margin: auto;
}

.c-serviceflow .tointroduce {
  font-size: 1.8rem;
  padding-top: 2rem;
  text-align: center;
}

.c-serviceflow .tointroduce a {
  text-decoration: underline;
  font-weight: bold;
}

.c-serviceflow .last-msg {
  font-size: 3.2rem;
  font-weight: 700;
  padding-top: 4rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .service-mv {
    padding: 130px 20px 50px;
  }

  .service-mv .btn-area {
    gap: 10px;
    padding-top: 30px;
    justify-content: center;
  }

  .service-mv .btn-area .btn {
    font-size: 12px;
    width: 160px;
    height: 45px;
    border-radius: 45px;
    text-align: center;
    padding: 0 10px;
    gap: 10px;
  }

  .service-mv .btn-area .btn:last-child {
    width: 160px;
  }

  .service-mv .btn-area .btn img {
    width: 18px;
    height: 18px;
  }

  .c-service .service-title {
    font-size: 24px;
    padding-bottom: 0px;
    font-weight: 800;
  }

  .c-service .applicationlist {
    padding-bottom: 0;
  }

  .c-service .otherlist {
    display: block;
    padding: 20px 0 0px;
  }

  .c-service .otherlist .otheritem {
    margin-bottom: 40px;
  }

  .c-service .otherlist .otheritem a .title {
    font-size: 18px;
    margin-bottom: 20px;
    padding: 10px 20px;
    font-weight: 800;
  }

  .c-service .otherlist .otheritem a .title::before {
    background: url(../images/common/vertical_border_sp.png) no-repeat;
    width: 5px;
    height: 50px;
  }

  .c-service .otherlist .otheritem a .common-arrow-btn {
    font-size: 12px;
    margin: 20px 0px 20px auto;
  }

  .c-service .otherlist .otheritem a .img-area {
    border-radius: 10px;
  }

  .c-service .contact-area {
    border-radius: 10px;
    padding: 30px 20px;
    margin-bottom: 70px;
  }

  .c-service .contact-area .contact-head {
    font-size: 19px;
  }

  .c-service .contact-area .contact-content {
    padding-top: 20px;
    display: block;
  }

  .c-service .contact-area .contact-content .common-blue-btn {
    width: 100%;
    max-width: 285px;
    margin: auto;
    height: 65px;
    border-radius: 65px;
    font-size: 14px;
    margin-top: 20px;
  }

  .c-service-single-mv {
    padding: 130px 20px 50px;
  }

  .c-service-single-mv::before {
    background: url(../images/service/service_single_mv_bk_sp.png) no-repeat;
    bottom: -60px;
    right: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 375 / 532;
  }

  .c-service-single-mv .title-area {
    display: block;
  }

  .c-service-single-mv .title-area .img img {
    width: 168px;
    height: auto;
  }

  .c-service-single-mv .title-area h1 {
    font-size: 15px;
    padding-top: 10px;
  }

  .c-service-single-mv .detail-area {
    padding-top: 20px;
    font-size: 1.4rem;
  }

  .c-serviceabout {
    padding: 60px 20px;
    border-radius: 30px;
    margin-bottom: 60px;
  }

  .service-single-content .service-single-title {
    font-size: 24px;
    padding-bottom: 30px;
  }

  .c-serviceabout .content {
    padding: 40px 30px 10px;
    border-radius: 20px;
  }

  .c-servicefeature .content {
    display: block;
  }

  .c-servicefeature .content .item {
    padding: 10px 10px 25px;
    border-radius: 7px;
    margin-bottom: 20px;
  }

  .c-servicefeature .content .item .point {
    border-radius: 7px;
    font-size: 13px;
    height: 45px;
  }

  .c-servicefeature .content .item .point span {
    font-size: 21px;
  }

  .c-servicefeature .content .item .title {
    font-size: 16px;
    padding-bottom: 20px;
    height: auto;
  }

  .c-servicefeature .content .item .text {
    font-size: 13px;
    padding: 0 10px;
  }

  .c-serviceinformation .sub-head {
    font-size: 18px;
    padding: 0 20px;
    margin-bottom: 20px;
  }

  .c-serviceinformation .step-area .item .step {
    /* font-size: 11px; */
    font-size: 12px;
    border-radius: 10px;
    width: 75px;
    height: 40px;
  }

  .c-serviceinformation .step-area .item .step span {
    font-size: 16px;
    padding-bottom: 0;
  }

  .c-serviceinformation .step-area::before {
    width: 4px;
    left: 37px;
  }

  .c-serviceinformation .step-area .item:last-child .step::before {
    width: 4px;
    left: 37px;
  }

  .c-serviceinformation .step-area .item {
    gap: 20px;
    padding-bottom: 40px;
  }

  .c-serviceinformation .step-area .item .title {
    font-size: 18px;
    padding-top: 7px;
  }

  .c-serviceinformation .step-area .item .text {
    padding-top: 20px;
  }

  .c-serviceinformation .step-area .item .text img {
    padding-bottom: 10px;
  }

  .c-serviceinformation .tointroduce, .c-serviceneed .toguide {
    width: 285px;
    height: 65px;
    margin: 30px auto 0;
  }

  .c-serviceinformation {
    padding-bottom: 60px;
  }

  .c-serviceneed .content li {
    padding-left: 20px;
    line-height: 1.5;
    font-size: 17px;
  }

  .c-serviceneed .content li::before {
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 3px;
  }

  .c-serviceneed {
    padding-bottom: 60px;
  }

  .c-introducecaselist {
    padding: 0px 20px 70px;
  }

  .c-service-single-mv.other {
    padding: 130px 20px 50px;
  }

  .c-service-single-mv .other-title {
    font-size: 29px;
  }

  .c-service-single-mv .other-img {
    padding-top: 20px;
  }

  .c-service-single-mv.other::before {
    background: url(../images/service/service_single_mv_bk_sp_other.png) no-repeat;
    bottom: 0px;
    right: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 8;
  }

  .c-servicefeature .detail {
    padding-bottom: 40px;
  }

  .c-servicefeature .video-embed {
    padding-top: 30px;
  }

  .c-servicefeature .video-embed iframe {
    width: 100%;
  }

  .c-servicefeature {
    padding-bottom: 50px;
  }

  .c-serviceflow {
    padding-bottom: 60px;
  }

  .c-serviceflow .content {
    display: flex;
    gap: 20px;
    padding: 0 0 40px 20px;
  }

  .c-serviceflow .content .item {
    grid-template-columns: 65px minmax(0, 1fr);
    gap: 12px;
    min-height: 105px;
    border-radius: 10px;
    border-width: 2px;
    padding: 15px 15px 15px 35px;
    border: 3px solid #008ac2;
  }

  .c-serviceflow .content .item:not(:last-child)::after {
    width: 3px;
    height: 25px;
  }

  .c-serviceflow .content .item .step {
    left: -27px;
    width: 50px;
    height: 50px;
    font-size: 10px;
  }

  .c-serviceflow .content .item .step span {
    margin-top: 0px;
    font-size: 20px;
  }

  .c-serviceflow .content .item .img {
    width: 65px;
    height: 65px;
  }

  .c-serviceflow .content .item .img img {
    width: 65px;
    height: 65px;
    margin: 0;
  }

  .c-serviceflow .content .item .title {
    padding-bottom: 5px;
    font-size: 15px;
    line-height: 1.4;
  }

  .c-serviceflow .content .item .text {
    /* font-size: 12px; */
    font-size: 13px;
    line-height: 1.6;
  }

  .c-serviceflow .common-blue-btn {
    width: 285px;
    height: 65px;
  }

  .c-serviceflow .tointroduce {
    font-size: 14px;
    padding-top: 20px;
  }

  .c-serviceflow .last-msg {
    padding-top: 20px;
    font-size: 19px;
  }
}
