* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans JP', sans-serif;
    font-style: normal;
    color: #333333;
  }

body {
    background-color:#D1EBEB;
}

li {
    list-style: none;
}
a {
    text-decoration: none;
    transition: all .2s ease-in-out;
}
a:hover{
  opacity:0.7;
}
    
img {
  max-width: 100%;
}

  /* Regular */
@font-face {
    font-family: 'Higure Gothic';
    src: url(../font/HigureGothic-Regular.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  /* Medium */
  @font-face {
    font-family: 'Higure Gothic';
    src: url(../font/HigureGothic-Medium.ttf) format('truetype');
    font-weight: 500; 
    font-style: normal;
  }
  
  /* Bold */
  @font-face {
    font-family: 'Higure Gothic';
    src: url(../font/HigureGothic-Bold.ttf) format('truetype');
    font-weight: bold;
    font-style: normal;
  }

  @keyframes btn_animation {
    0% {
        transform: translateY(0);
    }
    10% {
        transform: translateY(3px);
    }
    20% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(3px);
    }
    40% {
        transform: translateY(0);
    }
  }

  .box {
    width: 705px;
    margin: 0 auto;
  }
  .common_ttl {
    font-size: 24px;
    font-weight: bold;
    font-family: 'Higure Gothic', sans-serif;
    color: #333333;
    text-align: center;
    margin-bottom: 48px;
  }
  .common_ttl span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #249EA6;
    letter-spacing: 0.2em;
  }
  .cta_cont {
    background-color: #249EA6;
    padding: 30px 0;
  }
  .cta_cont .box {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 30px 0;
    box-sizing: border-box;
    text-align: center;
  }
  .cta_cont .ttl {
    margin-bottom: 25px;
  }
  .cta_cont .ttl span {
    position: relative;
    z-index: 1;
  }
  .cta_cont .ttl span::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 14px;
    background-color: #FFEF3D;
    bottom: 0;
    left: 0;
    z-index: -2;
  }
  .cta_cont .photo_box {
    margin-bottom: 20px;
  }
  .cta_cont .photo_box img {
    width: 290px;
    margin-bottom: 20px;
  }
  .cta_cont .photo_box p {
    font-weight: 500;
  }
  .cta_cont a {
    display: block;
    width: 640px;
    height: 75px;
    transition: 0.5s ease-in-out;
    margin: 0 auto;
    animation: btn_animation 1s infinite;
  }
  .cta_cont a:hover {
    animation: none;
  }
  .cta_area a:hover {
    opacity: 1;
  }
  .cta_cont a img {
    display: block;
  }
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  @media all and (min-width: 375px) and (max-width: 767px) {
    .pc {
      display: none;
    }
    .sp {
      display: block;
    }
    .common_ttl {
      margin-bottom: 30px;
    }
    .box {
      width: 92%;
    }

    .cta_cont a {
      width: 95%;
      height: auto;
    }
  }

  header {
    background-color: #fff;
    position: relative;
    width: 1024px;
    margin: 0 auto;
    position: fixed;
    right: 0;
    left: 0;
    z-index: 99;
}

.header-inner {
    display: flex;
    align-items: center;
    max-width: 1024px;
    margin: 0 auto;
}

.logo {
    background-color: #999999;
}

.logo a {
    display: block;
    padding: 10px 100px 10px 10px;
}

.logo img {
    height: 36px;
    width: auto;
    vertical-align: bottom;
}

.global-nav ul.menu {
    list-style: none;
    display: flex;
}

.global-nav a {
    position: relative;
    width: 192px;
    text-decoration: none;
    color: #999999;
    display: block;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    transition: all .2s ease-in-out;
    padding: 15px 0;
}

.global-nav a:hover {
    color: #249EA6;
}

.global-nav li:nth-of-type(3) a.has-submenu_link:after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    display: inline-block;
    border-bottom: 2px solid #999999;
    border-left: 2px solid #999999;
    transform: rotate(-45deg);
    top: 23px;
    right: 35px;
}

.global-nav li:nth-of-type(3) a.has-submenu_link:hover::after {
    border-bottom: 2px solid #249EA6;
    border-left: 2px solid #249EA6;
}

.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 56px;
    left: 0;
    background-color: #ffffff;
    min-width: 192px;
    display: none;
    z-index: 10;
}

.has-submenu:hover .submenu {
    display: block;
}

.submenu li {
    margin: 0;
}

.submenu a {
    padding: 10px 15px;
    color: #999;
    transition: all 0.3s;
}

.submenu li:first-of-type a:hover {
  color: #000;
}

.submenu li:nth-of-type(2) a:hover {
    color: #0EC755;
}

.submenu li:nth-of-type(3) a:hover {
    color: #9932CC;
}

.submenu li:nth-of-type(4) a:hover {
    color: #FE2C55;
}

.submenu a:hover {
    background-color: #ddd;
}

/* ハンバーガーメニュー */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 19px 15px;
    width: 60px;
    height: 60px;
    justify-content: space-between;
}

.menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #999999;
    transition: 0.3s;
}
@media (min-width: 768px) and (max-width: 1024px) {
  header {
    width: 100%;
  }
  .header-inner .logo {
    width: 100%;
    height: 60px;
    flex: 1;
  }
  .header-inner .logo a {
    height: 60px;
  }
  .global-nav ul.menu {
    width: 100%;
    display: none;
    position: absolute;
    z-index: 99;
    top: 56px;
    left: 0;
    background-color: #fff;
  }

  .global-nav.active ul.menu {
      display: block;
  }

  .global-nav a {
      width: 100%;
  }

  .submenu {
      width: 100%;
      position: static;
  }

  .submenu.active {
      display: block;
  }

  .global-nav li:nth-of-type(3) a.has-submenu_link:after {
      right: 30vw;
  }

  .menu-toggle {
      display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
      opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
      transform: translateY(-12px) rotate(-45deg);
  }
}
  @media all and (min-width: 375px) and (max-width: 767px) {
    header {
      width: 100%;
    }
    .header-inner .logo {
        width: 100%;
        height: 60px;
        flex: 1;
    }
    .header-inner .logo a {
      height: 60px;
    }
    .global-nav ul.menu {
      width: 100%;
      display: none;
      position: absolute;
      z-index: 99;
      top: 56px;
      left: 0;
      background-color: #fff;
    }
    .global-nav.active ul.menu {
        display: block;
    }
    .global-nav a {
        width: 100%;
    }
    .submenu {
        width: 100%;
        position: static;
    }
    .submenu.active {
        display: block;
    }
    .global-nav li:nth-of-type(3) a.has-submenu_link:after {
        right: 30vw;
    }
    .menu-toggle {
        display: flex;
    }
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
  
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
  
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-12px) rotate(-45deg);
    }
  }

  .container {
    width: 1024px;
    margin: 0 auto;
  }
  @media (min-width: 768px) and (max-width: 1024px) {
    .container {
      width: 100%;
    }
  }
  @media all and (min-width: 375px) and (max-width: 767px) {
    .container {
      width: 100%;
    }
  }
  /* fv_cont */
  .fv_cont {
    background-color: #D1EBEB;
    padding-top: 56px;
  }
  .fv_cont .fv_inner{
    width: 1024px;
    height: 608px;
    margin: 0 auto;
  }
  .fv_cont .fv_inner .fv_image img {
    width: 100%;
    margin: 0 auto;
    vertical-align:top;
  }
  .fv_cta {
    background-color: #249EA6;
    padding: 15px 0;
  }
  .fv_cta a {
    position: relative;
    display: block;
    width: 640px;
    height: 75px;
    transition: all 0.2s ease-in-out;
    margin: 0 auto;
    animation: btn_animation 1s infinite;
  }
  .fv_cta a img {
    width: 100%;
    vertical-align:top;
  }
  .default-image,
  .hover-image {
      transition: opacity 0.2s ease-in-out;
  }
  .fv_cta a .hover-image {
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
  }
  .fv_cta a:hover .default-image {
      opacity: 0;
  }
  .fv_cta a:hover .hover-image {
      opacity: 1;
  }
  @media (min-width: 768px) and (max-width: 1024px) {
    .fv_cont {
      padding-top: 60px;
    }
    .fv_cont .fv_inner{
      width: 100%;
      height: auto;
      margin: 0 auto;
    }
    .fv_cta a {
      display: block;
      margin: 0 auto;
    }
  }
  @media all and (min-width: 375px) and (max-width: 767px) {
    .fv_cont {
      padding-top: 60px;
    }
    .fv_cont .fv_inner{
      width: 100%;
      height: auto;
      margin: 0 auto;
    }
    .fv_cta a {
      display: block;
      width: 95%;
      height: auto;
    }
  }

  /* problem_cont */
  .problem_cont {
    padding: 48px 0 0;
    text-align: center;
    background-color: #F5F5F5;
  }
  .problem_cont .problem_inner {
    padding-bottom: 48px;
  }
  .problem_cont .problem_inner .list {
    width: 343px;
    margin: 0 auto;
  }
  .problem_cont .problem_inner .list li{
    position: relative;
    font-size: 16px;
    color: #fff;
    background-color: #999999;
    border-radius: 48px;
    padding: 10px 0;
    margin-bottom: 30px;
  }
  .problem_cont .problem_inner .list li:nth-child(odd)::before{
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    left: 72px;
    bottom: -16px;
    background: #999999;
    border-radius: 50px;
  }
  .problem_cont .problem_inner .list li:nth-child(odd)::after{
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    left: 61px;
    bottom: -7px;
    background: #999999;
    border-radius: 50px;
  }
  .problem_cont .problem_inner .list li:nth-child(even)::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    right: 72px;
    bottom: -16px;
    background: #999999;
    border-radius: 50px;
  }
  .problem_cont .problem_inner .list li:nth-child(even)::after{
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    right: 61px;
    bottom: -7px;
    background: #999999;
    border-radius: 50px;
  }
  .problem_cont .problem_inner img {
    width: 300px;
  }
  .problem_cont .connection_txt {
    position: relative;
    font-size: 28px;
    font-weight: bold;
    font-family: 'Higure Gothic', sans-serif;
    color: #fff;
    background-color: #249EA6;
    line-height: 1.2;
    padding: 100px 0 0;
  }
  .problem_cont .connection_txt::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 512px solid transparent;
    border-right: 512px solid transparent;
    border-top: 60px solid #F5F5F5;
    z-index: 2;
  }
  .problem_cont .connection_txt::before {
    content: "";
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 512px solid transparent;
    border-right: 512px solid transparent;
    border-top: 60px solid #249EA6;
    z-index: 2;
  }
  @media (min-width: 768px) and (max-width: 1024px) {
    .problem_cont .connection_txt {
      padding: 80px 0 0;
    }
    .problem_cont .connection_txt::after {
      border-left: 50vw solid transparent;
      border-right: 50vw solid transparent;
      border-top: 50px solid #F5F5F5;
    }
    .problem_cont .connection_txt::before {
      bottom: -50px;
      border-left: 50vw solid transparent;
      border-right: 50vw solid transparent;
      border-top: 50px solid #249EA6;
    }
  }
  @media all and (min-width: 375px) and (max-width: 767px) {
    .problem_cont {
      padding: 32px 0 0;
    }
    .problem_cont .problem_inner {
      padding-bottom: 32px;
    }
    .problem_cont .problem_inner .list {
      width: 92%;
      margin: 0 auto;
    }
    .problem_cont .problem_inner img {
      width: 80%;
    }
    .problem_cont .connection_txt {
      font-size: 24px;
      padding: 52px 0 10px;
    }
    .problem_cont .connection_txt::after {
      border-left: 50vw solid transparent;
      border-right: 50vw solid transparent;
      border-top: 32px solid #F5F5F5;
    }
    .problem_cont .connection_txt::before {
      bottom: -32px;
      border-left: 50vw solid transparent;
      border-right: 50vw solid transparent;
      border-top: 32px solid #249EA6;
    }
  }

  /* service_cont */
  .service_cont {
    padding: 120px 0 48px;
    background-color: #ffffff;
  }
  .service_cont .service_inner .list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .service_cont .service_inner .list li {
    width: 340px;
    background-color: #D1EBEB;
    border-radius: 16px;
    padding: 15px;
    box-sizing: border-box;
  }
  .service_cont .service_inner .list li h3.ttl {
    display: flex;
    align-items: center;
    height: 48px;
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    line-height: 1.3;
    position: relative;
    padding-left: 40px;
    margin-bottom: 8px;
  }
  .service_cont .service_inner .list li h3.ttl span {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto 0;
    color: #fff;
    background-color: #249EA6;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Roboto", sans-serif;
    font-style: normal;
  }
  @media all and (min-width: 375px) and (max-width: 767px) {
    .service_cont {
      padding: 62px 0 32px;
    }
    .service_cont .service_inner .list li {
      width: 100%;
    }
  }

  /* products_cont */
  .products_cont {
    padding: 48px 0;
    background-color: #f5f5f5;
  }
  .products_cont .products_inner .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .products_cont .products_inner .list li {
    width: 340px;
    background-color: #fff;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    border-radius: 16px;
  }
  .products_cont .products_inner .list li .ttl {
    font-size: 20px;
    color: #fff;
    background-color: #000000;
    text-align: center;
    padding: 10px 0;
    border-radius: 16px 16px 0 0;
  }
  .products_cont .products_inner .list li:nth-of-type(2) .ttl {
    background-color: #0EC755;
  }
  .products_cont .products_inner .list li:nth-of-type(3) .ttl {
    background-color: #9932CC;
  }
  .products_cont .products_inner .list li:nth-of-type(4) .ttl {
    background-color: #DC4564;
  }
  .products_cont .products_inner .list li .inner {
    padding: 15px;
  }
  .products_cont .products_inner .list li .inner .head {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 10px;
  }
  .products_cont .products_inner .list li .inner .txt {
    color: #000000;
  }
  .products_cont .products_inner .list li a.link {
    width: 100%;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-top: 1px solid #cccccc;
    padding: 16px 0;
    transition: all .2s ease-in-out;
  }
  .products_cont .products_inner .list li a.link:hover {
    opacity: 0.7;
  }
  .products_cont .products_inner .list li a.link p {
    display: inline-block;
    position: relative;
    margin-right: 8px;
  }
  .products_cont .products_inner .list li a.link img {
    width: 20px;
    height: 20px;
    margin-top: 5px;
  }
  .products_cont .products_inner .list li a.link span {
    font-size: 18px;
  }
  .products_cont .products_inner .list li p.txt span {
    font-size: 14px;
  }
  .products_cont .products_inner .list li p.txt span a {
    text-decoration: underline;
  }
  @media all and (min-width: 375px) and (max-width: 767px) {
    .products_cont {
      padding: 32px 0;
    }
  }

  /* flow_cont */
  .flow_cont {
    padding: 48px 0 100px;
    background-color: #ffffff
  }
  .flow_cont .flow_inner .list {
    text-align: center;
  }
  .flow_cont .flow_inner .list li {
    position: relative;
    background-color: #249EA6;
    padding: 68px 0 30px;
  }
  .flow_cont .flow_inner .list li:first-of-type {
    padding: 30px 0;
  }
  .flow_cont .flow_inner .list li::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 353px solid transparent;
    border-right: 353px solid transparent;
    border-top: 48px solid #249EA6;
    z-index: 2;
  }
  .flow_cont .flow_inner .list li:first-of-type::after {
    display: none;
  }
  .flow_cont .flow_inner .list li:nth-of-type(3)::after {
    border-top: 48px solid #46AEB3;
  }
  .flow_cont .flow_inner .list li:nth-of-type(4)::after {
    border-top: 48px solid #68BDBF;
  }
  .flow_cont .flow_inner .list li:nth-of-type(4)::before {
    content: "";
    position: absolute;
    bottom: -48px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 353px solid transparent;
    border-right: 353px solid transparent;
    border-top: 48px solid #8ACCCB;
    z-index: 2;
  }
  .flow_cont .flow_inner .list li:nth-of-type(2) {
    background-color: #46AEB3;
  }
  .flow_cont .flow_inner .list li:nth-of-type(3) {
    background-color: #68BDBF;
  }
  .flow_cont .flow_inner .list li:nth-of-type(4) {
    background-color: #8ACCCB;
  }
  .flow_cont .flow_inner .list li .ttl {
    font-size: 18px;
    font-weight: bold;
    font-family: 'Higure Gothic', sans-serif;
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
  }
  .flow_cont .flow_inner .list li .ttl span {
    display: block;
    color: #fff;
  }
  .flow_cont .flow_inner .list li p {
    color: #ffffff;
  }
  @media all and (min-width: 375px) and (max-width: 767px) {
    .flow_cont {
      padding: 32px 0 64px;
    }
    .flow_cont .flow_inner .list li {
      padding: 55px 15px 20px;
    }
    .flow_cont .flow_inner .list li:first-of-type {
      padding: 20px 15px;
    }
    .flow_cont .flow_inner .list li p {
      text-align: left;
    }
    .flow_cont .flow_inner .list li::after {
      border-left: 46vw solid transparent;
      border-right: 46vw solid transparent;
      border-top: 32px solid #249EA6;
    }
    .flow_cont .flow_inner .list li:nth-of-type(3)::after {
      border-top: 32px solid #46AEB3;
    }
    .flow_cont .flow_inner .list li:nth-of-type(4)::after {
      border-top: 32px solid #68BDBF;
    }
    .flow_cont .flow_inner .list li:nth-of-type(4)::before {
      bottom: -32px;
      border-left: 46vw solid transparent;
      border-right: 46vw solid transparent;
      border-top: 32px solid #8ACCCB;
    }
    .flow_cont .flow_inner .list li .ttl {
      margin-bottom: 10px;
    }
  }

  /* footer */
  #footer {
    width: 1024px;
    margin: 0 auto;
    background-color: #ffffff;
  }
  #footer .footer_inner {
    padding: 15px 0;
    text-align: center;
  }
  #footer .footer_inner .link_list {
    color: #249EA6;
    font-weight: 500;
    text-decoration: underline;
    margin-bottom: 10px;
  }
  #footer .footer_inner li {
    display: inline-block;
    margin-right: 20px;
  }
  #footer .footer_inner li:last-of-type {
    margin-right: 0;
  }
  #footer .footer_inner li a {
    color: #249EA6;
    font-weight: 500;
    text-decoration: underline;
    transition: all .2s ease-in-out;
  }
  #footer .footer_inner li a:hover {
    opacity: 0.7;
  }
  #footer .footer_inner small {
    font-size: 14px;
    font-weight: bold;
  }
  @media (min-width: 768px) and (max-width: 1024px) {
    #footer {
      width: 100%;
    }
  }
  @media all and (min-width: 375px) and (max-width: 767px) {
    #footer {
      width: 100%;
    }
  }