@charset "UTF-8";
.mobile-other-office-link {
  margin-top: 20px !important;
  margin-bottom: 40px !important;
}
.mobile-other-office-link a {
  width: 100%;
  background: linear-gradient(-45deg, var(--link-primary, var(--color-default-primary)), var(--link-secondary, var(--color-default-light))) !important;
  color: #fff !important;
  font-weight: bold;
  padding: 15px 0 !important;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.mobile-other-office-link a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-left: 10px;
  vertical-align: 1px;
}
.mobile-other-office-link.hakata a {
  --link-primary: var(--color-hakata-primary);
  --link-secondary: var(--color-hakata-secondary);
}
.mobile-other-office-link.tenjin a {
  --link-primary: var(--color-tenjin-primary);
  --link-secondary: var(--color-tenjin-secondary);
}

@layer reset, base, components, utilities;
@layer components {
  #topvisual {
    position: relative;
    padding: 0 0 5px 0;
  }
  @media screen and (max-width: 599px) {
    #topvisual {
      padding: 0 0 50px 0;
    }
  }
  #topvisual .slicker {
    position: absolute;
    top: 0;
    left: 0;
  }
  #topvisual .image-container {
    width: 100%;
    max-width: 100%;
    padding: 0px;
    height: fit-content;
    overflow: hidden;
  }
  #topvisual .image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  @media screen and (max-width: 599px) {
    #topvisual .image-container img {
      height: 100%;
    }
  }
  #topvisual .hero {
    justify-content: flex-end;
  }
  @media screen and (max-width: 599px) {
    #topvisual .hero {
      justify-content: center;
    }
  }
  @media screen and (max-width: 599px) {
    #topvisual .hero h2 {
      font-size: 22px;
    }
  }
  #topvisual .values {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    z-index: 2;
    gap: 20px;
    gap: 20px;
    margin: 50px 0px 100px;
  }
  @media screen and (max-width: 599px) {
    #topvisual .values {
      display: none;
    }
  }
  #topvisual .values .value {
    display: flex;
    align-items: flex-end;
  }
  #topvisual .values .value img {
    width: 320px;
    max-width: 100%;
    height: auto;
    display: block;
  }
}
/* Wave Divider Styles */
.wave-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-99%);
  /* Pull it up to sit on top of the section */
  z-index: 10;
  pointer-events: none;
  background: transparent;
  line-height: 0;
}

body.hakata .wave-divider {
  /* border-top: 4px solid $hakata-primary-dark; Removed for SVG Stroke implementation */
}

#news {
  padding: 60px 0;
}
#news .news-container.split-layout {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
@media screen and (max-width: 599px) {
  #news .news-container.split-layout {
    display: block;
  }
}
#news .news-container.split-layout .news-column {
  width: 48%;
}
@media screen and (max-width: 599px) {
  #news .news-container.split-layout .news-column {
    width: 100%;
    margin-bottom: 50px;
  }
  #news .news-container.split-layout .news-column:last-child {
    margin-bottom: 0;
  }
}
#news .news-container.single-layout .news-column {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
#news .news-col-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  padding-left: 10px;
  border-left: 4px solid var(--primary-color, #333);
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  #news .news-col-title {
    font-size: 18px;
  }
}
#news .news-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
#news .news-item {
  border-bottom: 1px dashed #ccc;
}
#news .news-item:first-child {
  border-top: 1px dashed #ccc;
}
#news .news-item .news-link {
  display: block;
  padding: 15px 10px;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s ease, opacity 0.2s;
}
#news .news-item .news-link:hover {
  background-color: #f9f9f9;
  opacity: 0.9;
}
#news .news-item .meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
  font-size: 12px;
}
@media screen and (max-width: 599px) {
  #news .news-item .meta {
    font-size: 14px;
  }
}
#news .news-item .date {
  color: #777;
  font-family: "Helvetica", "Arial", sans-serif;
}
#news .news-item .category {
  padding: 2px 8px;
  font-size: 10px;
  border-radius: 3px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
#news .news-item .category.cat-news {
  background-color: #2e7d32;
}
#news .news-item .category.cat-hakata {
  background-color: #ef6c00;
}
#news .news-item .category.cat-tenjin {
  background-color: #007bb6;
}
#news .news-item .title {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  font-weight: 500;
}
@media screen and (min-width: 600px) {
  #news .news-item .title {
    font-size: 16px;
  }
}
@media screen and (max-width: 599px) {
  #news .news-item .title {
    font-size: 15px;
  }
}
#news .no-news {
  padding: 20px;
  text-align: center;
  color: #666;
  background: #f5f5f5;
  border-radius: 4px;
  font-size: 14px;
}
#news .more-link {
  text-align: right;
}
#news .more-link .arrow-link {
  display: inline-block;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  position: relative;
  padding-right: 20px;
  transition: color 0.3s;
  font-weight: bold;
}
#news .more-link .arrow-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: right 0.3s;
}
#news .more-link .arrow-link:hover {
  color: var(--primary-color, #007bb6);
}
#news .more-link .arrow-link:hover::after {
  right: -4px;
}

#values01 {
  background: url(../../img/skill/bg01.jpg) top center no-repeat;
  background-size: 200%;
  background-color: #fefefe;
  padding-top: 100px;
  padding-bottom: 80px;
}
#values01 .inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (min-width: 600px) {
  #values01 {
    padding-top: 240px;
    background-size: 100% auto;
  }
}
.values-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.values-item {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 40px;
  align-items: center;
}
.values-item:nth-child(even) {
  flex-direction: row-reverse;
}

.values-image {
  flex: 1 1 400px;
  max-width: 600px;
}
.values-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.values-content {
  flex: 1 1 400px;
}
.values-content .values-badge {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 15px;
}
.values-content h3 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.4;
  position: relative;
  padding-bottom: 15px;
}
.values-content h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
}
.values-content .values-description {
  font-size: 16px;
  line-height: 2;
  color: #333333;
  margin-bottom: 25px;
}

.values-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.values-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.6;
}
.values-points li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--primary-color-light);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
}
.values-points li strong {
  color: var(--primary-color);
  font-weight: 600;
}

@media screen and (max-width: 599px) {
  #values01 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .values-list {
    gap: 50px;
  }
  .values-item {
    flex-direction: column !important;
  }
  .values-image {
    max-width: 100%;
    flex: 0 0 auto;
  }
  .values-content {
    flex: 0 0 auto;
  }
  .values-content h3 {
    font-size: 22px;
  }
  .values-content .values-description {
    font-size: 15px;
  }
  .values-points li {
    font-size: 14px;
  }
}
@layer reset, base, components, utilities;
main {
  margin-top: 70px;
}
@media screen and (max-width: 599px) {
  main {
    margin-top: 50px;
  }
}

@layer utilities {
  .u-padding-x-0 {
    padding-inline: 0;
  }
  .flex {
    display: flex;
  }
  .direction-row {
    flex-direction: row;
  }
  .direction-column {
    flex-direction: column;
  }
  .justify-evenly {
    justify-content: space-evenly;
  }
  .justify-center {
    justify-content: center;
  }
  .justify-between {
    justify-content: space-between;
  }
  .gap-20 {
    gap: 20px;
  }
  .gap-row-20 {
    row-gap: 30px;
  }
  .gap-col-30 {
    column-gap: 20px;
  }
  .flex-wrap {
    flex-wrap: wrap;
  }
  .flex-1 {
    flex: 1;
  }
  .border-radius-unset {
    border-radius: unset;
  }
  .green-underline {
    color: var(--access-link, #00947a);
    text-decoration: underline;
  }
}
@layer base {
  body {
    font-family: "Roboto", "BIZ UDPGothic", sans-serif;
    background-color: #fefefe;
    --primary-color: #03a9f4;
    --primary-color-light: #b3e5fc;
    --landing-header-bg: #e1f5fe;
    --landing-header-text: #0288d1;
    --access-bg: #f0faff;
  }
  #mainImg,
  #section1,
  #section2,
  #section3 {
    font-family: "Roboto", "BIZ UDPMincho", serif;
  }
  .image-container {
    position: relative;
    padding: 20px;
    margin: 0 auto;
    max-width: 400px;
  }
  .image-container img {
    display: block;
    width: 50%;
    margin: 0 auto;
  }
  section {
    padding: 0;
  }
  section > .inner {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  @media screen and (max-width: 599px) {
    section > .inner {
      padding-top: 5vw;
      padding-bottom: 5vw;
    }
  }
}
@layer components {
  .tag-list {
    display: flex;
    flex-direction: row;
    gap: 8px;
    position: absolute;
    top: 4px;
  }
  #landing01 {
    background-color: #eff8f6;
  }
  #landing02 {
    background-color: #fefefe;
  }
  #landing02 ul {
    padding: 25px 30px 0px;
    height: 100%;
  }
  @media screen and (min-width: 600px) {
    #landing02 ul {
      height: auto;
      flex-grow: 1;
    }
  }
  #landing02 li {
    list-style: none;
    font-weight: bold;
  }
  #landing02 li::before {
    display: inline-block;
    content: "";
    margin-right: 10px;
    width: 26px;
    height: 26px;
    position: relative;
    top: 7px;
    -webkit-mask-image: url(../img/top/check.svg);
    mask-image: url(../img/top/check.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: #00c7a3;
  }
  #landing02 .topic {
    width: 45%;
    position: relative;
    border: solid 2px #333333;
    background-color: #fff;
  }
  @media screen and (min-width: 600px) {
    #landing02 .topic {
      width: 340px;
      max-width: 45%;
    }
  }
  @media screen and (max-width: 599px) {
    #landing02 .topic {
      width: 100%;
      max-width: 100%;
      margin-bottom: 20px;
    }
  }
  #landing02 h3 {
    display: block;
    width: fit-content;
    text-align: center;
    background-color: #7dc8ed;
    border-radius: 5px;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    margin: 0 auto;
    padding: 2px 8px;
    color: #fefefe;
    white-space: nowrap;
    font-size: 18px;
    font-weight: bold;
  }
  #landing03 .inner {
    padding: 20px;
  }
  #landing03 .mod_tit01 {
    margin: 0;
    background-color: #ecfaff;
    color: #333333;
  }
  #landing03 .bg-color-accent::before {
    content: "";
    display: block;
    height: 100px;
    background-color: #ecfaff;
    clip-path: polygon(30% -1px, 70% -1px, 50% 60%);
  }
  #landing03::after {
    content: "";
    display: block;
    height: 100px;
    background-color: #7dc8ed;
    clip-path: polygon(30% -1px, 70% -1px, 50% 60%);
  }
  #landing03 .worry {
    width: 45%;
  }
  #landing03 .worry span {
    display: block;
    background-color: #fefefe;
    padding: 20px;
    border-radius: 5px;
    height: 100%;
  }
  #landing03 .image-container {
    padding: 0 20px 20px;
  }
  #landing03 .image-container img {
    width: 40%;
  }
  #landing04 .item {
    margin: 20px 0px;
  }
  #landing04 .tit {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: row;
    background-color: #ecfaff;
  }
  #landing04 .tit icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8666666667);
    background-color: #7dc8ed;
    margin: 0 auto;
    width: 140px;
    height: 140px;
    border-radius: 100%;
  }
  @media screen and (max-width: 599px) {
    #landing04 .tit icon {
      width: 100px;
      height: 100px;
    }
  }
  #landing04 .tit icon span {
    font-family: "Roboto", "BIZ UDPGothic", sans-serif;
    font-weight: lighter;
  }
  #landing04 .tit icon span.spec {
    font-size: 20px;
  }
  @media screen and (max-width: 599px) {
    #landing04 .tit icon span.spec {
      font-size: 18px;
    }
  }
  #landing04 .tit icon span.num {
    margin-top: -10px;
    font-size: 55px;
  }
  #landing04 .tit icon {
    height: auto;
    border-radius: 0;
  }
  @media screen and (max-width: 599px) {
    #landing04 .tit icon {
      flex: 0 0 120px;
      width: 120px;
      height: auto;
      align-self: stretch;
    }
  }
  @media screen and (max-width: 599px) and (max-width: 374px) {
    #landing04 .tit icon {
      flex: 0 0 80px;
      width: 80px;
      height: auto;
    }
  }
  #landing04 .tit icon .spec {
    font-size: 15px;
    margin: 10px auto -10px;
  }
  @media screen and (max-width: 374px) {
    #landing04 .tit icon .spec {
      font-size: 10px;
      margin: 18px auto -18px;
    }
  }
  #landing04 .tit div {
    flex: 1 1 auto;
    padding: 20px;
    position: relative;
    height: 120px;
    display: flex;
  }
  @media screen and (max-width: 599px) {
    #landing04 .tit div {
      padding: 45px 10px 10px;
      height: auto;
      min-height: 120px;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
    }
  }
  @media screen and (max-width: 599px) {
    #landing04 .tit div ul.tag-list {
      position: absolute;
      top: 8px;
      left: 10px;
      margin-bottom: 0;
      flex-wrap: wrap;
      gap: 4px;
      width: calc(100% - 20px);
      justify-content: flex-start;
    }
    #landing04 .tit div ul.tag-list li {
      display: flex;
      align-items: center;
    }
    #landing04 .tit div ul.tag-list li span.tag {
      font-size: 14px;
      padding: 2px 6px;
      line-height: 1.2;
    }
  }
  #landing04 .tit div p {
    font-size: 18px;
    font-weight: bold;
    align-self: center;
  }
  @media screen and (max-width: 599px) {
    #landing04 .tit div p {
      font-size: 15px;
      align-self: flex-start;
      margin-top: 0;
      line-height: 1.3;
    }
  }
  #landing04 .content {
    display: flex;
    flex-direction: row;
    margin: 20px 0px;
    align-items: center;
  }
  #landing04 .content img {
    flex: 1;
    width: 50%;
    max-width: 300px;
    margin: 0 auto;
  }
  #landing04 .content p {
    flex: 1;
    padding: 20px;
    font-size: 15px;
    text-align: justify;
    min-width: 270px;
  }
  .mod_btn01 {
    margin: 30px auto;
    background: transparent;
    text-align: center;
  }
  @media screen and (max-width: 599px) {
    .mod_btn01 {
      margin: 15px auto;
    }
  }
  .mod_btn01 a {
    display: inline-block;
    min-width: 200px;
    padding: 12px 40px;
    line-height: 1.4;
    font-size: 16px;
    text-align: center;
    border-radius: 5px;
    box-sizing: border-box;
    text-decoration: none;
    transition: opacity 0.3s;
  }
  @media screen and (max-width: 599px) {
    .mod_btn01 a {
      min-width: 160px;
      font-size: 15px;
    }
  }
  .mod_btn01 a:hover {
    opacity: 0.8;
  }
  #landing02 {
    background-color: #f0faff;
    position: relative;
    z-index: 20;
    margin-top: -50px;
  }
  #landing02 h3 {
    background: #4fc3f7;
  }
  #landing02 li::before {
    background: linear-gradient(135deg, #4fc3f7 0%, #0288d1 100%);
  }
  #landing03 .mod_tit01 {
    background: #e1f5fe;
    color: #0288d1;
    border-radius: 50px;
    font-weight: bold;
    border: 2px solid #fff;
    box-shadow: 0 0 0 4px #e1f5fe;
    margin-bottom: 20px;
  }
  #landing03 .bg-color-accent::before {
    background-color: #f0faff;
  }
  #landing03::after {
    background-color: #03a9f4;
  }
  #landing03 .worry span {
    background-color: #fff;
    border: 2px solid #b3e5fc;
    border-radius: 15px;
    box-shadow: 0 4px 0 #b3e5fc;
  }
  .mod_btn01 a,
  .landing-btn a {
    background: linear-gradient(135deg, #4fc3f7 0%, #0288d1 100%);
    color: #fff;
    border: none;
  }
  #landing04 .tit {
    background-color: #b3e5fc;
  }
  #landing04 .tit icon {
    background: linear-gradient(135deg, #4fc3f7 0%, #0288d1 100%);
    color: #fff;
  }
  #landing04 .tag-list .tag {
    background: #fff;
    border: 1px solid;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 13px;
    white-space: nowrap;
  }
  #landing04 .tag-list .tag.cyan {
    color: #0288d1;
    border-color: #0288d1;
  }
  #landing04 .tag-list .tag.orange {
    color: #f5b64c;
    border-color: #f5b64c;
  }
  #poem {
    background-color: #040404;
  }
  .landing-header {
    color: var(--landing-header-text, #086c5a);
    background: var(--landing-header-bg, #00c7a3);
    padding: 20px;
    text-align: left;
  }
  @media screen and (max-width: 599px) {
    .landing-header {
      padding: 20px 0;
    }
  }
  #faq details {
    margin: 20px 0px;
  }
  #faq summary {
    font-size: 18px;
    background-color: #fff;
    border: 2px solid #e1f5fe;
    border-radius: 10px;
    box-shadow: 0 4px 0 #e1f5fe;
    display: flex;
    align-items: center;
    padding-right: 20px;
    padding-left: 90px;
    min-height: 70px;
    position: relative;
    overflow: hidden;
  }
  @media screen and (max-width: 599px) {
    #faq summary {
      font-size: 15px;
      min-height: 50px;
      padding-left: 70px;
    }
  }
  #faq summary::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    content: "Q";
    background-color: #7dc8ed;
    color: #fefefe;
    width: 70px;
    font-weight: bold;
    font-size: 28px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
  }
  @media screen and (max-width: 599px) {
    #faq summary::before {
      width: 50px;
      font-size: 28px;
    }
  }
  #faq .answer {
    padding: 20px;
    font-size: 18px;
    background-color: #fff;
    /* White background for answers for better contrast against surface */
    border: 1px solid #f0faff;
  }
  @media screen and (max-width: 599px) {
    #faq .answer {
      font-size: 15px;
    }
  }
  #faq .answer > p {
    margin-bottom: 20px;
  }
  /*section1-3*/
  #section1,
  #section2,
  #section3 {
    height: 650px;
    background-size: cover;
  }
  #section1,
  #section2,
  #section3 {
    background-color: #ddd;
  }
  @media screen and (min-width: 600px) {
    #section1,
    #section2,
    #section3 {
      height: 350px;
      margin-top: 50px;
    }
  }
}
#about01 {
  padding-bottom: 50px;
}
@media screen and (max-width: 599px) {
  #about01 .flex {
    display: block;
  }
}
#about01 .about-text {
  line-height: 30px;
  font-family: "BIZ UDPGothic", sans-serif;
}
@media screen and (min-width: 600px) {
  #about01 .about-text {
    font-size: 18px;
  }
}
@media screen and (max-width: 599px) {
  #about01 .about-text {
    font-size: 15px;
    word-break: unset;
    margin: 0 auto;
  }
}
#about01 .about-featured-text {
  padding: 30px;
  background-color: #fff;
  border: 3px solid #e1f5fe;
  border-radius: 20px;
  box-shadow: 0 10px 0 #e1f5fe;
}
@media screen and (max-width: 599px) {
  #about01 .about-featured-text {
    margin: 0 auto 30px;
    width: 90%;
  }
}
@media screen and (max-width: 599px) {
  #about01 .about-featured-text {
    padding: 20px;
  }
}
#about01 .image-container {
  padding: 0;
}
#about01 .image-container > img {
  width: 100%;
}

#about02 .list .item {
  position: relative;
  padding: 0 15px;
  margin-bottom: 5px;
}
#about02 .list .item .tit {
  font-size: 18px;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 10px;
}
#about02 .list .item .tit icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8666666667);
  background-color: var(--primary-color, #00947a);
  margin: 0 auto;
  width: 140px;
  height: 140px;
  border-radius: 100%;
}
@media screen and (max-width: 599px) {
  #about02 .list .item .tit icon {
    width: 100px;
    height: 100px;
  }
}
#about02 .list .item .tit icon span {
  font-family: "Roboto", "BIZ UDPGothic", sans-serif;
  font-weight: lighter;
}
#about02 .list .item .tit icon span.spec {
  font-size: 20px;
}
@media screen and (max-width: 599px) {
  #about02 .list .item .tit icon span.spec {
    font-size: 18px;
  }
}
#about02 .list .item .tit icon span.num {
  margin-top: -10px;
  font-size: 55px;
}
#about02 .list .item .tit icon {
  background: linear-gradient(135deg, #4fc3f7 0%, #0288d1 100%);
  color: #fff;
}
@media screen and (min-width: 600px) {
  #about02 .list {
    margin-top: -30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #about02 .list .item {
    padding: 25px 15px;
    margin-bottom: 0px;
    width: 360px;
    height: 518px;
  }
  #about02 .list .item .tit {
    font-size: 24px;
  }
  #about02 .list .item .tit icon {
    margin: 0 auto 20px;
  }
  #about02 .list .item .txt {
    font-size: 16px;
  }
}

/*------
--main--
------*/
#mainImg {
  background: #040404;
}

#mainImg img {
  width: 100%;
  background: #020202;
}

#mainImg {
  padding: 90px 0 0;
}
@media screen and (min-width: 600px) {
  #mainImg img {
    width: 50%;
  }
}

.main-msg {
  margin: 50px 0;
  color: #fff;
  text-align: center;
}

.msg {
  margin-bottom: 20px;
  font-size: 58px;
  opacity: 0;
  -webkit-filter: blur();
  filter: blur();
  -webkit-animation-name: txtBlur;
  animation-name: txtBlur;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@keyframes txtBlur {
  0% {
    opacity: 0;
    -webkit-filter: blur(200px);
    filter: blur(200px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur();
    filter: blur();
  }
}
@-webkit-keyframes txtBlur {
  0% {
    opacity: 0;
    -webkit-filter: blur(200px);
    filter: blur(200px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur();
    filter: blur();
  }
}
.txtSm {
  font-size: 40px;
  vertical-align: baseline;
}

.txtMid {
  font-size: 54px;
}

.spcNarrow {
  letter-spacing: 0px;
}

.spcWide {
  letter-spacing: 0px;
}

.baseUp {
  vertical-align: 5px;
}

#section1 {
  background-image: url(../img/top/section1.webp);
}

#section2 {
  background-image: url(../img/top/section2.webp);
}

#section3 {
  background-image: url(../img/top/section3.webp);
}

.section-msg-right {
  margin-right: 20%;
  margin-left: auto;
}

.section-msg-left {
  margin-left: 20%;
  margin-right: auto;
}

.section-msg {
  display: block;
  width: 400px;
  height: 650px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  opacity: 0;
  text-align: center;
  font-size: 16px;
  letter-spacing: 1px;
}

@media screen and (min-width: 600px) {
  .section-msg {
    height: 350px;
  }
}

.opacityAjast {
  background: rgba(0, 0, 0, 0.5);
}

.section-msg li:not(:first-child) {
  height: 60px;
}

@media screen and (min-width: 600px) {
  .section-msg li:not(:first-child) {
    height: 24px;
  }
}

.msg-title {
  display: inline-block;
  margin-bottom: 35px;
  padding-top: 70px;
  padding-bottom: 27px;
  font-size: 32px;
}

@media screen and (min-width: 600px) {
  .msg-title {
    padding-top: 30px;
  }
}

.title-bottom1 {
  border-bottom: 1px solid #eadc62;
}

.title-bottom2 {
  border-bottom: 1px solid #51b5b3;
}

.title-bottom3 {
  border-bottom: 1px solid #d6692a;
}

.msgShow {
  position: relative;
  opacity: 0;
  -webkit-animation-name: msgShow;
  animation-name: msgShow;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@keyframes msgShow {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes msgShow {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/*section4*/
#section4 .section4-inner {
  padding-bottom: 50px;
}
#section4 #skill {
  margin: 30px auto;
  padding: 30px;
  background-color: #fff;
  border: 3px solid #e1f5fe;
  border-radius: 20px;
  box-shadow: 0 10px 0 #e1f5fe;
}
#section4 .programImg {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 138px;
}
#section4 img.css3,
#section4 img.html5 {
  height: 108px;
}
#section4 img.photoshop,
#section4 img.Illustrator,
#section4 img.wordpress {
  height: 80px;
  margin-top: 10px;
}
#section4 img.php,
#section4 img.rpa {
  height: 75px;
  margin-top: 25px;
}
#section4 .skillTxt {
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 0 10px;
  font-size: 18px;
  text-align: center;
  word-break: keep-all;
}
@media screen and (max-width: 599px) {
  #section4 .skillTxt {
    font-size: 18px;
  }
  #section4 .skillTxt p {
    word-wrap: break-word;
    word-break: normal;
  }
}
#section4 .skillDetail a {
  display: block;
  width: 500px;
  margin: 0 auto;
  padding: 15px 0;
  background: #000;
  font-size: 22px;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  transition: 0.5s;
}
#section4 .skillDetail a:hover {
  cursor: pointer;
  opacity: 0.7;
  transition: 0.5s;
}
#section4 .skillSliderImg img {
  display: block;
  height: 30vh;
  background-color: #ddd;
}

@layer components {
  #first-steps .inner {
    width: 1000px;
    margin: 0 auto;
    padding-top: 0;
  }
  @media screen and (max-width: 599px) {
    #first-steps .inner {
      width: 90vw;
      padding-top: 5vw;
    }
  }
  #first-steps .first-steps-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    margin-top: 0;
  }
  @media screen and (max-width: 599px) {
    #first-steps .first-steps-container {
      flex-direction: column;
      gap: 50px;
      margin-top: 40px;
    }
  }
  #first-steps .step-card {
    background-color: #fff;
    border-radius: 0 0 15px 15px;
    padding: 40px 30px;
    width: 23%;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
  }
  @media screen and (max-width: 599px) {
    #first-steps .step-card {
      width: 100%;
      padding: 40px 30px;
    }
  }
  #first-steps .step-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(135deg, #4fc3f7 0%, #0288d1 100%);
  }
  #first-steps .step-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-left: 7px;
    transform: translateY(-50%);
    width: 16px;
    height: 24px;
    background: linear-gradient(135deg, #4fc3f7 0%, #0288d1 100%);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    z-index: 1;
  }
  @media screen and (max-width: 599px) {
    #first-steps .step-card:not(:last-child)::after {
      content: none;
    }
  }
  @media screen and (max-width: 599px) {
    #first-steps .step-card:not(:last-child)::after {
      content: "";
      position: absolute;
      top: auto;
      bottom: -37px;
      left: 50%;
      margin-left: 0;
      transform: translateX(-50%) rotate(90deg);
      width: 16px;
      height: 24px;
      background: linear-gradient(135deg, #4fc3f7 0%, #0288d1 100%);
      clip-path: polygon(0 0, 100% 50%, 0 100%);
      z-index: 1;
    }
  }
  #first-steps .step-header {
    margin-bottom: 10px;
    width: 100%;
  }
  #first-steps .step-number {
    display: block;
    font-size: 50px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #4fc3f7 0%, #0288d1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--primary-color);
  }
  #first-steps .step-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 0 0 20px;
  }
  #first-steps .step-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    text-align: left;
    width: 100%;
  }
  #access h3 {
    margin-bottom: 24px;
    font-size: 22px;
    font-weight: bold;
  }
  @media screen and (max-width: 599px) {
    #access h3 {
      font-size: 22px;
    }
  }
  #access .facility-box {
    display: flex;
    justify-content: center;
    width: auto;
  }
  @media screen and (max-width: 599px) {
    #access .facility-box {
      width: auto;
      height: auto;
      display: block;
    }
  }
  #access .left {
    float: left;
    width: 50%;
  }
  @media screen and (max-width: 599px) {
    #access .left {
      float: none;
      width: auto;
    }
  }
  #access .pic {
    margin: 0 auto;
    width: fit-content;
  }
  #access .pic img {
    cursor: pointer;
  }
  #access .right {
    float: left;
    width: 50%;
    padding: 0 25px;
  }
  @media screen and (max-width: 599px) {
    #access .right {
      border-left: none;
      text-align: justify;
      float: none;
      width: auto;
      padding: 0;
    }
  }
  #access li {
    font-size: 14px;
  }
  @media screen and (max-width: 599px) {
    #access li {
      font-size: 14px;
    }
  }
  #access dl {
    padding: 20px;
    font-size: 14px;
    background-color: var(--access-bg, #eff8f6);
    color: var(--text-on-surface, #333333);
  }
  @media screen and (max-width: 599px) {
    #access dl {
      font-size: 15px;
    }
  }
  #access dl dt {
    display: inline-block;
    padding: 1px 5px;
    border-radius: 5px;
    background-color: #cccccc;
    color: #333333;
    font-weight: bold;
    font-size: 12px;
  }
  #access dl dd {
    margin-bottom: 5px;
  }
}
/*----------------
--------sp--------
----------------*/
@media screen and (max-width: 599px) {
  #mainImg {
    background: #000;
  }
  #mainImg img {
    width: 100vw;
    background: #020202;
  }
  .main-msg {
    width: 100vw;
    margin: 4vw 0;
    color: #fff;
    text-align: center;
  }
  .msg {
    margin-bottom: 1vw;
    font-size: 4.5vw;
  }
  .txtSm {
    font-size: 3vw;
    vertical-align: baseline;
  }
  .txtMid {
    font-size: 4.2vw;
  }
  .spcWide {
    letter-spacing: 0;
  }
  .baseUp {
    vertical-align: 0.2vw;
  }
  /*section1-3*/
  #section1,
  #section2,
  #section3 {
    height: 45vw;
    margin-top: 5vw;
  }
  #section1 {
    padding-left: 0;
    background-image: url(../img/top/section1-bg-sp.webp);
    background-size: 100vw;
  }
  #section2 {
    background-image: url(../img/top/section2-bg-sp.webp);
    background-size: 100vw;
  }
  .section-msg-right {
    margin-right: 0;
    margin-left: auto;
  }
  .section-msg-left {
    margin-right: auto;
    margin-left: 0;
  }
  #section3 {
    padding-left: 0;
    background-image: url(../img/top/section3-bg-sp.webp);
    background-size: 100vw;
  }
  .section-msg {
    width: 48vw;
    height: 45vw;
    font-size: 2.3vw;
  }
  .section-msg li:not(:first-child) {
    height: 5vw;
  }
  .msg-title {
    display: inline-block;
    margin-bottom: 2vw;
    padding-top: 3vw;
    padding-bottom: 1vw;
    font-size: 3vw;
  }
  .title-bottom1 {
    border-bottom: 1px solid #eadc62;
  }
  .title-bottom2 {
    border-bottom: 1px solid #51b5b3;
  }
  .title-bottom3 {
    border-bottom: 1px solid #d6692a;
  }
  /*section4*/
  .section4-inner {
    margin: 0 auto;
    padding-bottom: 5vw;
    text-align: center;
  }
  #skill {
    width: 90vw;
    padding: 20px;
  }
  .programImg {
    height: 10vw;
    padding: 0 4vw;
  }
  img.css3-sp,
  img.html5-sp {
    height: 10vw;
  }
  img.photoshop-sp,
  img.Illustrator-sp,
  img.wordpress-sp {
    height: 9vw;
    margin-top: 1vw;
  }
  img.php-sp,
  img.rpa-sp {
    height: 7vw;
    margin-top: 2vw;
  }
  .skillDetail a {
    width: 75vw;
    height: 45px;
    line-height: 45px;
    padding: 0;
    font-size: 15px;
  }
}
/* Wave Divider Styles */
