@charset "UTF-8";
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Noto Sans JP";
  scroll-behavior: smooth;
}

section {
  display: flex;
  justify-content: center;
}
section .wrapper {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
}
section .wrapper .content {
  display: flex;
  width: 100%;
}
section .wrapper .content .s-head {
  display: flex;
  flex-direction: column;
  margin-bottom: 80px;
}
section .wrapper .content .s-head .s-top {
  display: flex;
  align-items: center;
  gap: 6px;
}
section .wrapper .content .s-head .s-top .c {
  display: flex;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #F2001D;
}
section .wrapper .content .s-head .s-top .ct {
  color: #5F5F5F;
  font-size: 1.2rem;
  letter-spacing: 1px;
  font-weight: 600;
}
section .wrapper .content .s-head .t {
  font-size: 2rem;
  font-weight: 400;
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
}
.header .hc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}
.header .hc.scrolling {
  background-color: #fff;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1019607843);
}
.header .hc.scrolling .left img {
  filter: invert(1);
  transition: filter 0.4s ease;
}
.header .hc .left {
  display: flex;
  align-items: center;
}
.header .hc .left img {
  max-width: 170px;
}
.header .hc .right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header .hc .right .header-btn {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  border: 2px solid #F2001D;
  padding: 6px 0;
  width: 160px;
  font-size: 0.85rem;
}
.header .hc .right .header-btn.r {
  background-color: #F2001D;
  color: #fff;
}
.header .hc .right .header-btn.r:hover {
  background-color: #fff;
  color: #F2001D;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.header .hc .right .header-btn.w {
  background-color: #fff;
  color: #F2001D;
}
.header .hc .right .header-btn.w:hover {
  background-color: #F2001D;
  color: #fff;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.topview {
  padding: 200px 30px 140px 30px;
  background-size: cover;
  background-repeat: no-repeat;
  transition: background-image 0.4s ease-in-out;
  position: relative;
  height: 640px;
}
.topview::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(217, 217, 217, 0) 100%);
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.topview.s1 {
  background-image: url("/images/top-slide.webp");
}
.topview.s2 {
  background-image: url("/images/web-dev.webp");
}
.topview.s2 .content .btn-c .tv-btn.w {
  opacity: 0;
  pointer-events: none;
}
.topview.s3 {
  background-image: url("/images/web-mkt.webp");
}
.topview.s3 .content .btn-c .tv-btn.w {
  opacity: 0;
  pointer-events: none;
}
.topview.s4 {
  background-image: url("/images/con-cre.webp");
}
.topview.s4 .content .btn-c .tv-btn.w {
  opacity: 0;
  pointer-events: none;
}
.topview .content {
  flex-direction: column;
  justify-content: center;
  color: #fff;
  z-index: 10;
}
.topview .content .t {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.topview .content .st {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 40px;
  letter-spacing: 1px;
  line-height: 1.6;
}
.topview .content .st .x {
  font-family: "Montserrat";
  font-weight: 200;
  margin: 0 4px;
}
.topview .content .btn-c {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topview .content .btn-c .tv-btn {
  position: relative;
  text-decoration: none;
  border-radius: 40px;
  padding: 14px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.topview .content .btn-c .tv-btn.r {
  background-color: #F2001D;
  border: 2px solid #F2001D;
  color: #fff;
}
.topview .content .btn-c .tv-btn.r::before {
  content: "無料";
  background-color: rgba(0, 0, 0, 0.5019607843);
  color: #fff;
  padding: 4px;
  font-size: 0.7rem;
  border-radius: 4px;
}
.topview .content .btn-c .tv-btn.r:hover {
  background-color: #fff;
  color: #F2001D;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.topview .content .btn-c .tv-btn.r:hover::before {
  background-color: #F2001D;
  transition: background-color 0.2s ease;
}
.topview .content .btn-c .tv-btn.w {
  background-color: #fff;
  color: #F2001D;
  border: 2px solid #F2001D;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.topview .content .btn-c .tv-btn.w img {
  max-width: 24px;
}
.topview .content .btn-c .tv-btn.w:hover {
  background-color: #F2001D;
  color: #fff;
}
.topview .content .btn-c .tv-btn.w:hover img {
  filter: brightness(0) invert(1);
  transition: filter 0.2s ease;
}
.topview .slide-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  padding: 0 30px;
  position: absolute;
  bottom: -50px;
  width: 100%;
  z-index: 10;
}
.topview .slide-bar .slide-tab {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background-color: #fff;
  position: relative;
}
.topview .slide-bar .slide-tab .slide-t {
  font-size: 1.2rem;
  margin: 20px 0 10px 0;
}
.topview .slide-bar .slide-tab .slide-st {
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.topview .slide-bar .slide-tab .prog-bar {
  width: 0%;
  height: 4px;
  background-color: #F2001D;
  transition: width 0.1 linear;
  position: absolute;
  left: 0;
  bottom: 0;
}
.topview .slide-bar .slide-tab.active .prog-bar {
  animation: progress 4s linear;
}
@keyframes progress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
.topview .slide-bar .jump-btn {
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
}
.topview .slide-bar .jump-btn#prv {
  transform: rotate(180deg);
}
.topview .slide-bar .jump-btn img {
  max-width: 32px;
  filter: grayscale(1) brightness(0);
}
.topview .dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: absolute;
  bottom: -80px;
}
.topview .dots .dot {
  width: 8px;
  height: 8px;
  border: 1px solid #D9D9D9;
  background-color: #fff;
  display: flex;
  border-radius: 50%;
}
.topview .dots .dot.active {
  background-color: #F2001D;
  border-color: #F2001D;
}

.services {
  padding: 140px 30px;
}
.services .content {
  flex-direction: column;
}
.services .content .s-list {
  display: flex;
  gap: 40px;
}
.services .content .s-list .card {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.services .content .s-list .card .dr {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.services .content .s-list .card .dr .num {
  font-size: 1.4rem;
  font-weight: 600;
  font-family: "Montserrat";
  color: #F2001D;
}
.services .content .s-list .card .dr .line {
  height: 2px;
  flex-grow: 1;
  background-color: #F2001D;
}
.services .content .s-list .card .t {
  font-size: 1.6rem;
  font-weight: 400;
}
.services .content .s-list .card .st {
  color: #5F5F5F;
  margin-bottom: 40px;
}
.services .content .s-list .card .links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.services .content .s-list .card .links .link {
  list-style-type: none;
}
.services .content .s-list .card .links .link a {
  text-decoration: none;
  color: #000;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  letter-spacing: 1px;
}
.services .content .s-list .card .links .link a img {
  max-width: 20px;
  display: none;
}

.strengths {
  padding: 100px 30px;
  background-color: #f9f9f9;
}
.strengths .content {
  flex-direction: column;
}
.strengths .content .s-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  row-gap: 60px;
}
.strengths .content .s-grid .gi {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: flex-end;
}
.strengths .content .s-grid .gi.df .img-c img {
  max-width: 200px;
}
.strengths .content .s-grid .gi .img-c {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.strengths .content .s-grid .gi .img-c img {
  max-width: 125px;
}
.strengths .content .s-grid .gi .t {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 28px;
}
.strengths .content .s-grid .gi .t .red {
  color: #F2001D;
}
.strengths .content .s-grid .gi .st {
  line-height: 1.6;
}

.cta-white {
  padding: 100px 30px;
  background: url("/images/cta-background-pc.webp");
  background-size: cover;
  background-repeat: no-repeat;
}
.cta-white .content {
  flex-direction: column;
}
.cta-white .content .t {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 80px;
  text-align: center;
}
.cta-white .content .t strong {
  font-weight: 500;
}
.cta-white .content .box-c {
  display: flex;
}
.cta-white .content .box-c .box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  background-color: #fff;
  border: 4px solid #F2001D;
  gap: 20px;
  padding: 40px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.cta-white .content .box-c .box.scd {
  background-color: #F2001D;
  transition: background-color 0.2s ease;
}
.cta-white .content .box-c .box.scd .l {
  transition: background-color 0.2s ease;
}
.cta-white .content .box-c .box.scd .l .img-c {
  transition: border-color 0.2s ease;
}
.cta-white .content .box-c .box.scd .l .img-c img {
  transition: filter 0.2s ease;
}
.cta-white .content .box-c .box.scd .r {
  transition: color 0.2s ease;
}
.cta-white .content .box-c .box.scd .l .img-c {
  border: 4px solid #fff;
}
.cta-white .content .box-c .box.scd .l .img-c img {
  filter: brightness(0) invert(1);
  transition: filter 0.2s ease;
  position: relative;
  top: 2px;
}
.cta-white .content .box-c .box.scd .r {
  color: #fff;
  transition: color 0.2s ease;
}
.cta-white .content .box-c .box .l {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-white .content .box-c .box .l .img-c {
  border-radius: 50%;
  padding: 10px 12px;
  border: 4px solid #F2001D;
  transition: border-color 0.2s ease;
}
.cta-white .content .box-c .box .l .img-c img {
  width: 100%;
  max-width: 40px;
  transition: filter 0.2s ease;
}
.cta-white .content .box-c .box .r {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  line-height: 1.6;
  color: #000;
  transition: color 0.2s ease;
}
.cta-white .content .box-c .box .r .rt {
  font-size: 1.2rem;
}
.cta-white .content .box-c .box:not(.scd):hover {
  background-color: #F2001D;
  transition: background-color 0.2s ease;
}
.cta-white .content .box-c .box:not(.scd):hover .l .img-c {
  border-color: #fff;
  transition: border-color 0.2s ease;
}
.cta-white .content .box-c .box:not(.scd):hover .l .img-c img {
  filter: brightness(0) invert(1);
  transition: filter 0.2s ease;
}
.cta-white .content .box-c .box:not(.scd):hover .r {
  transition: color 0.2s ease;
  color: #fff;
}
.cta-white .content .box-c .box.scd:hover {
  background-color: #fff;
  transition: background-color 0.2s ease;
}
.cta-white .content .box-c .box.scd:hover .l .img-c {
  border-color: #F2001D;
  transition: border-color 0.2s ease;
}
.cta-white .content .box-c .box.scd:hover .l .img-c img {
  filter: brightness(1) invert(0);
  transition: filter 0.2s ease;
}
.cta-white .content .box-c .box.scd:hover .r {
  transition: color 0.2s ease;
  color: #F2001D;
}

.achievements {
  padding: 100px 30px;
  background-color: #f9f9f9;
}
.achievements .content {
  flex-direction: column;
}
.achievements .content .cards-c {
  display: flex;
  flex-direction: column;
}
.achievements .content .cards-c .dr {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}
.achievements .content .cards-c .dr.scd {
  margin-top: 80px;
}
.achievements .content .cards-c .dr .head {
  font-weight: 500;
  font-size: 1.6rem;
}
.achievements .content .cards-c .dr .line {
  height: 2px;
  flex-grow: 1;
  background-color: #F2001D;
}
.achievements .content .cards-c .list {
  display: flex;
  gap: 24px;
}
.achievements .content .cards-c .list .card {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.achievements .content .cards-c .list .card img {
  width: 100%;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1019607843);
  margin-bottom: 20px;
  transition: transform 0.2s ease;
}
.achievements .content .cards-c .list .card img:hover {
  transform: scale(1.08);
  transition: transform 0.2s ease;
}
.achievements .content .cards-c .list .card .label {
  display: flex;
  flex-direction: column;
}
.achievements .content .cards-c .list .card .label .t {
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.achievements .content .cards-c .list .card .label .tag {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.achievements .content .cards-c .list .card .label .tag::before {
  content: attr(dv);
  font-size: 10px;
  color: #fff;
  background-color: #F2001D;
  padding: 4px;
  border-radius: 4px;
}

.cta-red {
  padding: 100px 30px;
  background-color: #F2001D;
}
.cta-red .content {
  display: flex;
  gap: 40px;
}
.cta-red .content .dv {
  height: 100%;
  width: 2px;
  background-color: #fff;
  margin: 0 40px;
}
.cta-red .content .box {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #fff;
}
.cta-red .content .box.scd .img-c img {
  max-width: 48px;
}
.cta-red .content .box .t {
  font-size: 2rem;
  font-weight: 500;
}
.cta-red .content .box .st {
  letter-spacing: 1px;
  line-height: 1.6;
  font-size: 1.2rem;
}
.cta-red .content .box .img-c {
  background-color: #fff;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease;
}
.cta-red .content .box .img-c:hover {
  transform: scale(1.08);
  transition: transform 0.2s ease;
}
.cta-red .content .box .img-c img {
  max-width: 30px;
}

.footer {
  display: flex;
  justify-content: center;
  background-color: #2A2A2A;
  padding: 100px 30px;
}
.footer .wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
}
.footer .wrapper .content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.footer .wrapper .content .ft-links {
  display: flex;
  flex-direction: column;
  color: #fff;
  margin-bottom: 30px;
  gap: 14px;
}
.footer .wrapper .content .ft-links .link {
  list-style-type: none;
}
.footer .wrapper .content .ft-links .link a {
  text-decoration: none;
  color: #fff;
}
.footer .wrapper .content .info {
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.6;
  letter-spacing: 1px;
}
.footer .wrapper .content .insta img {
  max-width: 40px;
}

.cp {
  background-color: #fff;
  padding: 20px 0;
  text-align: center;
}

@media screen and (max-width: 1220px) {
  .strengths .content .s-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 1000px) {
  .topview .slide-bar {
    gap: 12px;
    bottom: -46px;
  }
  .topview .slide-bar .slide-tab .slide-t {
    font-size: 1rem;
  }
  .topview .slide-bar .slide-tab .slide-st {
    font-size: 0.8rem;
  }
  .topview .slide-bar .jump-btn {
    padding: 6px;
  }
  .topview .slide-bar .jump-btn img {
    max-width: 24px;
  }
}
@media screen and (max-width: 850px) {
  section .wrapper .content .s-head {
    margin-bottom: 60px;
  }
  section .wrapper .content .s-head .s-top .c {
    width: 12px;
    height: 12px;
  }
  section .wrapper .content .s-head .s-top .ct {
    font-size: 1rem;
  }
  section .wrapper .content .s-head .t {
    font-size: 1.6rem;
  }
  .header {
    padding: 10px;
  }
  .header .hc .left img {
    max-width: 140px;
  }
  .header .hc .right {
    display: none;
  }
  .topview {
    padding: 200px 20px 60px 20px;
    background-position: 50%;
    height: 610px;
  }
  .topview .content .t {
    font-size: 1.6rem;
  }
  .topview .content .st {
    font-size: 1rem;
  }
  .topview .content .btn-c {
    flex-direction: column;
    align-items: flex-start;
  }
  .topview .content .btn-c .tv-btn {
    width: 260px;
    font-size: 0.9rem;
    padding: 10px 0;
  }
  .topview .content .btn-c .tv-btn.r::before {
    font-size: 0.6rem;
  }
  .topview .content .btn-c .tv-btn.w img {
    width: 20px;
  }
  .topview .slide-bar {
    bottom: -36px;
    padding: 0 20px;
  }
  .topview .slide-bar .slide-tab {
    display: none;
  }
  .topview .slide-bar .slide-tab .slide-t {
    margin: 12px 0 4px 0;
  }
  .topview .slide-bar .slide-tab .slide-st {
    margin-bottom: 12px;
  }
  .topview .slide-bar .slide-tab.active {
    display: flex;
  }
  .topview .dots {
    display: flex;
  }
  .services {
    padding: 140px 20px 60px 20px;
  }
  .services .content .s-list {
    flex-direction: column;
  }
  .services .content .s-list .card .t {
    font-size: 1.2rem;
  }
  .services .content .s-list .card .st, .services .content .s-list .card .links .link {
    font-size: 0.9rem;
  }
  .services .content .s-list .card .st {
    margin-bottom: 30px;
  }
  .strengths {
    padding: 60px 20px;
  }
  .strengths .content .s-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .strengths .content .s-grid .gi {
    border-bottom: 2px solid #C1C1C1;
    padding-bottom: 30px;
  }
  .strengths .content .s-grid .gi.df .img-c img {
    max-width: 170px;
  }
  .strengths .content .s-grid .gi .img-c img {
    max-width: 100px;
  }
  .strengths .content .s-grid .gi .t {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  .strengths .content .s-grid .gi .st {
    font-size: 0.9rem;
  }
  .cta-white {
    padding: 60px 20px;
  }
  .cta-white .content .t {
    font-size: 1.6rem;
    margin-bottom: 60px;
  }
  .cta-white .content .box-c {
    flex-direction: column;
    gap: 20px;
  }
  .cta-white .content .box-c .box {
    padding: 16px;
    justify-content: flex-start;
  }
  .cta-white .content .box-c .box .l .img-c {
    padding: 8px 10px;
  }
  .cta-white .content .box-c .box .l .img-c img {
    max-width: 24px;
    position: relative;
    top: 2px;
  }
  .cta-white .content .box-c .box .r .rt {
    font-size: 1rem;
  }
  .cta-white .content .box-c .box .r .rst {
    font-size: 0.8rem;
  }
  .achievements {
    padding: 60px 20px;
  }
  .achievements .content .cards-c .dr .head {
    font-size: 1.4rem;
  }
  .achievements .content .cards-c .list {
    overflow-x: scroll;
  }
  .achievements .content .cards-c .list .card {
    flex: unset;
  }
  .achievements .content .cards-c .list .card img {
    width: 270px;
  }
  .achievements .content .cards-c .list .card .label .t {
    font-size: 0.9rem;
  }
  .achievements .content .cards-c .list .card .label .tag {
    font-size: 0.8rem;
  }
  .cta-red {
    padding: 60px 20px;
  }
  .cta-red .content {
    flex-direction: column;
  }
  .cta-red .content .dv {
    width: 100%;
    height: 1px;
    margin: 0;
  }
  .cta-red .content .box .t {
    font-size: 1.6rem;
  }
  .cta-red .content .box .st {
    font-size: 0.9rem;
  }
  .cta-red .content .box .img-c {
    width: 50px;
    height: 50px;
  }
  .cta-red .content .box .img-c img {
    max-width: 20px;
  }
  .cta-red .content .box.scd .img-c img {
    max-width: 30px;
  }
  .footer {
    padding: 60px 20px;
  }
  .footer .wrapper .content {
    font-size: 0.9rem;
  }
  .footer .wrapper .content .insta img {
    max-width: 30px;
  }
  .cp {
    padding: 12px 0;
    font-size: 0.9rem;
  }
}

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