@charset "UTF-8";

:root {
  --primary-color: #529abc;
  --yellow-color: #d5b42d;
  --green-color: #197b28;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans', sans-serif;
  color: var(--text-color);
  overflow-x: hidden;
}
h1{
    font-size: 10px;
    font-weight: normal;
}
img {
  vertical-align: bottom;
}

.pc-only {
  display: inline-block !important;
}

.sp-only {
  display: none !important;
}

.container {
  width: 900px;
  max-width: 95%;
  margin: 0 auto 20px;
  padding: 50px 0;

  &.full_width {
    max-width: 100%;
    width: 100%;
  }
}

a {
  text-decoration: none;
}

/* header */
.header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;

  .header_inner {
    padding-left: 5%;
    background-color: #fff;

    .title_logo {
      img {
        width: clamp(100px, 20vw, 232px);
        height: auto;
        display: inline-block;
      }
    }
  }

  .header_nav {
    display: block;
    line-height: 88px;
    padding-right: 6%;

    .nav {
      ul.nav_list {
        display: flex;
        align-items: left;
        gap: clamp(10px, 1vw, 60px);
        list-style: none;
        padding: 0;
        margin: 0;

        li.nav_item {
          position: relative;
          font-weight: normal;

          a.nav_item_ttl {
            font-size: clamp(12px, 1.4vw, 16px);
            padding: 0 10px;
            border-radius: 3px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
            color: var(--text-color);
          }
        }
      }
    }
  }
}

/* navigation */
.hamburger {
  display: none;
}

/* footer */
.footer {
  padding: 0;
  background: transparent;
  color: #444;

  .footer_inner {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(20px, 5vw, 70px);
    line-height: 1px;
    justify-content: space-between;
    margin: 90px 0 40px;
    width: 95%;

    .footer_image {
      flex: 1 1 55%;

      img {
        width: 100%;
        border-radius: 0 20px 20px 0;
        display: block;
      }
    }

    .footer_info {
      flex: 1 1 35%;
      display: block;
      text-align: left;

      .footer_brand {
        margin-bottom: clamp(20px, 2vw, 40px);

        img {
          max-width: 200px;
        }
      }
    }

    .footer_service {
      margin-bottom: clamp(20px, 4vw, 84px);

      .footer_service_list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 10px 3vw;
        line-height: 1;

        li {
          a {
            color: #444;
            text-decoration: none;
            font-size: 12px;
          }
        }
      }
    }

    .footer_group {
      .footer_group_list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1vw;
        align-items: center;
        max-width: 500px;

        li {
		width: fit-content;
		border: 1px solid #f1f1f1;
		border-radius: 5px;
		padding: 0.4em 0.8em;
		box-sizing: border-box;
          img {
		min-width: 80px;
		max-width: 100px;
		height: 25px;
          }

          &.list_w100 {
                        width: -webkit-fill-available;
                        max-width: 240px;
            img {
              min-width: 190px;
            }
          }
        }
      }
    }

    h4 {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 10px;
      font-family: 'Noto Sans', sans-serif;
      line-height: 1.7;
    }
  }

  .footer_nav {
    text-align: left;
    padding: 0 100px 40px;
    color: #444;

    .footer_nav_list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: inline-flex;
      gap: 37px;

      li {
        a {
          color: #000;
          text-decoration: none;
        }
      }
    }
  }
}

/* fadein（下から上） */
.fadein {
  opacity: 0;
  transform: translateY(130px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fadein.show {
  opacity: 1;
  transform: translateY(0);
}

.pan_wrap{
        width: fit-content;
        display: flex;
        flex-wrap: nowrap;
        font-size: 12px;
        position: absolute;
        top: 8em;
        right: 1%;
	>div{
		a{
			color: #a1a1a1;
		}
		a::after{
			content: '　>　';
		}
	}
}



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

  .sp-only {
    display: inline-block !important;
  }

	h1{
	font-size: 2.2vw;
	font-weight: normal;
	}

  /* navigation */
  .hamburger {
    display: flex;
    position: fixed;
    top: 18px;
    right: 15px;
    flex-direction: column;
    gap: 4.7px;
    width: 25px;
    cursor: pointer;
    z-index: 100;

    span {
      display: block;
      width: 100%;
      height: 3.7px;
      background-color: var(--primary-color);
    }
  }

  /* navOverlay */
  #navOverlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    pointer-events: none;
  }

  #navOverlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header {
    height: 50px;
    flex-direction: column;

    .header_inner {
      width: 100%;
      height: 50px;
      padding-left: 2%;

      .title_logo {
        img {
          width: clamp(120px, 50vw, 200px);
        }
      }
    }

    .header_nav {
      .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 60%;
        height: 100vh;
        background: #f9fafb;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        z-index: 10;
        &.active {
          transform: translateX(0%);
        }

        ul.nav_list {
          flex-direction: column;
          gap: clamp(25px, 10vw, 35px);

          li.nav_item {
            line-height: 1;

            a.nav_item_ttl {
              font-size: clamp(14px, 4vw, 17px);
              color: var(--primary-color);
            }
          }
        }
      }
    }
  }

  .footer {
    .footer_inner {
      gap: clamp(20px, 10vw, 70px);
      margin: 10vw 0 15vw;

      .footer_info {
        margin-left: 5%;

        .footer_brand {
          margin-bottom: clamp(20px, 8vw, 40px);
        }

        .footer_service {
          margin-bottom: clamp(20px, 10vw, 84px);

          .footer_service_list {
            gap: 3vw;

            li {
              a {
                font-size: clamp(12px, 3.5vw, 14px);
              }
            }
          }
        }
      }

      h4 {
        margin-bottom: 10px;
        font-size: clamp(15px, 4.7vw, 18px);
      }

      .footer_group {
        .footer_group_list {
          gap: 2vw 1vw;
        }
      }
    }

    .footer_nav {
      text-align: center;
      padding: 0 0 20px;

      .footer_nav_list {
        font-size: 12px;
      }
    }
  }


.pan_wrap{
	width: fit-content;
	display: flex;
	flex-wrap: wrap;
        font-size: 2.5vw;
	position: absolute;
	top:60px;
	left: 5%;
	>div{
		a{
			color: #666;
		}
		a::after{
			content: '　>　';
		}
	}
}



}
