@charset "UTF-8";
/* $gothic: "ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN",YuGothic,"Yu Gothic",sans-serif; */
/* @use "./lib/slick/_slick"; */
body {
  width: 100%;
  position: relative;
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
  letter-spacing: 1px;
  line-height: 1.5;
  background: #fcfbf6;
  font-feature-settings: "palt";
  letter-spacing: 1.5px;
  color: #333;
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
  transition: 0.3s;
  color: #333;
}
a:hover {
  color: #00a5bf;
  transition: 0.3s;
}

a.thema_link {
  color: #00a5bf;
  text-decoration: underline;
}

img {
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
}

section {
  position: relative;
  width: 100%;
}

picture {
  display: block;
}

.c_inner {
  width: min(92%, 1000px);
  margin-inline: auto;
}

.c_flex {
  display: flex;
  flex-wrap: wrap;
}

.c_grid {
  display: grid;
}

.c_pc {
  display: block;
}

.c_sp {
  display: none;
}

@media screen and (max-width: 821px) {
  .c_pc {
    display: none;
  }
  .c_sp {
    display: block;
  }
}
.c_mb10 {
  margin-bottom: 10px;
}

.c_mb15 {
  margin-bottom: 15px;
}

.c_mb20 {
  margin-bottom: 20px;
}

.c_mb25 {
  margin-bottom: 25px;
}

.c_mb30 {
  margin-bottom: 30px;
}

.c_section {
  padding-bottom: 80px;
}

.c_arrow {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 1px;
  margin-top: 6.4px;
  border-radius: 9999px;
  background-color: #000000;
}

.c_arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #000000;
  transform: rotate(45deg);
  transform-origin: calc(100% - 0.5px) 50%;
}

.c_font_b {
  font-weight: bold;
}

.c_font_thema {
  color: #00a5bf;
}

.c_txt_center {
  text-align: center;
}

.c_lead_txt {
  font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
}

.c_container {
  padding: 70px 0;
}

[id*=ancor_] {
  padding-top: 110px;
  margin-top: -110px;
}
@media screen and (max-width: 821px) {
  [id*=ancor_] {
    padding-top: 80px;
    margin-top: -80px;
  }
}

#pageTop {
  position: fixed;
  width: 56px;
  right: 0;
  bottom: 3%;
  background: #fff;
  z-index: 99;
  padding: 5px;
}
@media screen and (max-width: 821px) {
  #pageTop {
    display: none !important;
  }
}

.anm_up {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.anm_up.show {
  opacity: 1;
  transform: translateY(0);
}

.anm_out {
  transition: opacity 0.5s ease-out;
}

.anm_out.hide {
  opacity: 0;
  pointer-events: none;
}

[class*=ttl_] {
  font-weight: bold;
}
[class*=ttl_] span {
  display: block;
}

.ttl_main {
  width: 100%;
  font-size: clamp(2rem, 1.692rem + 1.31vw, 2.875rem);
  text-align: center;
  position: relative;
  color: #fff;
  padding-block: 5px 20px;
  line-height: 1.3;
}
.ttl_main::before {
  position: absolute;
}
.ttl_main-caption {
  font-size: 12px;
  position: relative;
}
.ttl_main-caption::before {
  content: "-";
}
.ttl_main-caption::after {
  content: "-";
}
.contact .ttl_main {
  color: #1f4487;
}

.ttl_svg {
  display: block;
  width: 100%;
  height: 40px;
  position: absolute;
  top: -40px;
  left: 0;
}
@media screen and (max-width: 821px) {
  .ttl_svg {
    top: -39px;
  }
}

.ttl_thema {
  background: #00a5bf;
}
.ttl_thema-svg {
  fill: #00a5bf;
}

.ttl_blue {
  background: #1f4487;
}
.ttl_blue-svg {
  fill: #1f4487;
}

[class*=btn_] {
  text-align: center;
  font-weight: bold;
}

.btn_circle {
  width: min(133px, 100%);
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: relative;
}
.btn_circle span {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.btn_circle span::after {
  content: "";
  display: block;
  position: absolute;
  width: 25px;
  height: 13px;
  background: #00a5bf;
  clip-path: polygon(0 38.2%, 45.6% 38.2%, 45.6% 0, 100% 50%, 45.6% 100%, 45.6% 61.8%, 0 61.8%);
  left: 50%;
  transform: translateX(-50%);
  top: 30px;
}
.btn_wide {
  text-align: center;
  font-weight: bold;
  font-size: 1.125rem;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 821px) {
  .btn_wide {
    width: 100%;
  }
}
.btn_wide a {
  padding: 20px 4vw;
  border-radius: 50vw;
  white-space: nowrap;
}
.btn_wide span {
  position: relative;
}
.btn_wide span::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  box-sizing: border-box;
  transform: translateY(-50%) rotate(45deg);
  right: -20px;
}
.search .btn_wide a {
  background: #CD0304;
}
@media screen and (max-width: 821px) {
  .osechi .btn_wide {
    width: 92%;
  }
}
.osechi .btn_wide a {
  background: #CD0304;
}

.icon {
  width: 16px;
}
.icon__gf::before, .icon__gf::after {
  font-family: "Material Symbols Outlined";
  font-weight: 100;
  vertical-align: bottom;
}
.icon__gf::before {
  margin-right: 5px;
}
.icon__gf::after {
  margin-left: 5px;
}
.icon__gf-window::after {
  content: "open_in_new";
}
.icon__gf-arrow_r::after {
  margin: 0;
  content: "keyboard_double_arrow_right";
}
.icon__gf {
  /*Skills*/
}
.icon__gf-cart::before {
  content: "shopping_cart";
}
.icon__gf-code::before {
  content: "code_blocks";
}
.icon__gf-photo::before {
  content: "photo";
}
.icon__gf-image::after {
  content: "image";
}
.icon__gf-picture::after {
  content: "image";
}
.icon__gf-robot::before {
  content: "robot_2";
}
.icon__gf-laptop::before {
  content: "laptop_mac";
}
.icon__gf {
  /**/
}
.icon__gf-mail::before {
  content: "mail";
}

.hero {
  width: 100%;
  height: 70vh;
  position: relative;
  background: #fdfdfa;
  overflow: hidden;
}
@media screen and (max-width: 821px) {
  .hero {
    height: 60vh;
  }
}
.hero__wavewrap {
  position: absolute;
  transform: rotate(180deg);
  /*         height: 260px; */
  top: 0;
  z-index: 0;
}
@media screen and (max-width: 821px) {
  .hero__wavewrap {
    top: 0;
  }
}
.hero__wave {
  opacity: 0.3;
  stroke: #00a5bf;
  stroke-width: 0.5px;
  fill: transparent;
  stroke-dasharray: 2000px;
  stroke-dashoffset: 2000px;
  animation: anim 2s ease-in 1s forwards;
}
@keyframes anim {
  0% {
    stroke-dashoffset: 2000px;
  }
  60% {
    stroke-dashoffset: 0;
    fill: transparent;
  }
  100% {
    fill: #00a5bf;
  }
}
.hero__content {
  width: max-content;
  position: absolute;
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.hero__title .char {
  display: inline-block;
  opacity: 0;
  animation: fadeUpChar 0.8s ease forwards;
  animation-delay: calc(var(--char-index) * 0.06s);
  font-size: clamp(1rem, 0.912rem + 0.38vw, 1.25rem);
}
.hero__title .char:nth-of-type(-n+7) {
  color: #00a5bf;
  font-size: clamp(2.625rem, 2.229rem + 1.69vw, 3.75rem);
}
@keyframes fadeUpChar {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.header {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 20px;
  font-weight: bold;
}
@media screen and (max-width: 821px) {
  .header {
    display: none;
  }
}
.header a:hover {
  color: #fff;
}
.header__nav-list {
  justify-content: flex-end;
}
.header__nav-list * + * {
  margin-left: 20px;
}

.about {
  text-align: center;
}
.about__first {
  padding: 80px 0;
  line-height: 1.8;
  font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
}
@media screen and (max-width: 821px) {
  .about__first {
    padding: 40px 0 80px;
  }
}
.about__detail {
  background: #00a5bf;
  color: #fff;
  position: relative;
  padding-bottom: 100px;
  line-height: 1.6;
  font-weight: 300;
}
.about__detail p,
.about__detail dd {
  font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
}
@media screen and (max-width: 821px) {
  .about__detail p,
  .about__detail dd {
    text-align: justify;
  }
}
.about__detail p:not(:last-of-type) {
  margin-bottom: 20px;
}
.about__ttl {
  width: max-content;
  background: #fff;
  color: #00a5bf;
  font-weight: bold;
  padding: 5px 10px;
  line-height: 1;
  margin: 0 auto 10px;
  border-radius: 5px;
}
@media screen and (max-width: 821px) {
  .about__ttl {
    width: 100%;
  }
}
.about__list {
  margin-top: 40px;
  padding: 10px 0;
}
@media screen and (max-width: 821px) {
  .about__list {
    margin-top: 20px;
  }
}
.about__list dd:not(:last-of-type) {
  margin-bottom: 20px;
}
.about__bg {
  position: absolute;
  z-index: 1;
}
.about__bg-arapaima {
  width: 250px;
  opacity: 0.5;
  bottom: 2%;
  right: 0%;
}

.skills p:not(:last-of-type) {
  margin-bottom: 20px;
}
.skills__box {
  background: #fff;
  padding: 30px 30px 20px;
  border: 1px solid #eee;
  border-radius: 10px;
  position: relative;
  margin-top: 40px;
}
.skills__boxp:not(:last-of-type) {
  margin-bottom: 20px;
}
@media screen and (max-width: 821px) {
  .skills__box {
    padding: 15px;
    margin-top: 20px;
  }
}
.skills__ttl {
  display: flex;
  align-items: center;
  font-size: clamp(1rem, 0.912rem + 0.38vw, 1.25rem);
  font-weight: bold;
  color: #fff;
  background: #00a5bf;
  border-radius: 50vw;
  line-height: 1;
  padding: 6px 20px 7px;
  width: max-content;
  position: absolute;
  top: -10px;
  left: 10px;
}
@media screen and (max-width: 821px) {
  .skills__ttl {
    padding: 6px 10px 7px;
    position: static;
    width: 100%;
    margin-bottom: 10px;
  }
}
.skills__txt {
  font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
}
.skills__txt:not(:last-of-type) {
  margin-bottom: 20px;
}
.skills__mall {
  background: #1f4487;
  color: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  position: relative;
  margin-top: 15px;
}
@media screen and (max-width: 821px) {
  .skills__mall {
    padding: 15px 20px;
  }
}
.skills__mall::before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  border-inline: 15px solid transparent;
  border-bottom: 40px solid #1f4487;
}
.skills__mall-ttl {
  font-weight: bold;
  display: inline-block;
  margin-bottom: 5px;
  border-bottom: 1px dotted #fff;
  font-size: clamp(1rem, 0.956rem + 0.19vw, 1.125rem);
}
.skills__mall-txt {
  font-size: clamp(0.875rem, 0.853rem + 0.09vw, 0.9375rem);
}

.works__ttl {
  font-size: clamp(1.25rem, 1.162rem + 0.38vw, 1.5rem);
  font-weight: bold;
  color: #fff;
  border-block: 1px solid #fff;
  width: max-content;
  margin: 0 auto 10px;
  padding: 0 10px;
}
.works__ttl-design {
  font-size: clamp(1.25rem, 1.162rem + 0.38vw, 1.5rem);
  font-weight: bold;
  width: max-content;
  margin: 0 auto 10px;
  color: #fff;
  background: #1f4487;
  padding: 10px 15px;
  line-height: 1;
  border-radius: 10px;
}
.works__box {
  padding: 20px;
  border-radius: 10px;
}
* + * .works__box {
  margin-top: 40px;
}
@media screen and (max-width: 821px) {
  * + * .works__box {
    margin-top: 20px;
  }
}
.works__box-wrap {
  padding: 20px;
  background: #fff;
  align-items: center;
  border-radius: 10px;
}
@media screen and (max-width: 821px) {
  .works__box-wrap {
    flex-direction: column;
    padding: 15px;
  }
}
.works__web .works__box-wrap {
  gap: 2%;
}
* + * .works__box-wrap {
  margin-top: 20px;
}
.works__design .works__box-wrap {
  border: 1px solid #eee;
  text-align: center;
}
@media screen and (max-width: 821px) {
  .works__design .works__box-wrap {
    width: 49%;
    padding: 10px;
    margin-top: 10px;
  }
}
.works__box-thumb {
  width: 30%;
}
@media screen and (max-width: 821px) {
  .works__box-thumb {
    width: 100%;
    margin-bottom: 10px;
  }
}
.works__box-thumb img {
  opacity: 1;
  transition: 0.3s;
}
.works__box-thumb img:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.works__box-content {
  width: 68%;
}
@media screen and (max-width: 821px) {
  .works__box-content {
    width: 100%;
  }
}
.works__box-ttl {
  font-weight: bold;
  font-size: clamp(1rem, 0.956rem + 0.19vw, 1.125rem);
  margin-bottom: 10px;
}
@media screen and (max-width: 821px) {
  .works__box-ttl {
    flex-direction: column;
  }
}
.works__box-txt {
  font-size: clamp(0.875rem, 0.853rem + 0.09vw, 0.9375rem);
}
.works__box-txt:not(:last-of-type) {
  margin-bottom: 20px;
}
.works__design .works__box-txt {
  color: #1f4487;
}
.works__box-icon {
  padding: 5px 15px;
  line-height: 1;
  border-radius: 50vw;
  font-size: 14px;
  display: block;
  border: 1px solid #1f4487;
  color: #1f4487;
  margin-left: 10px;
  width: max-content;
}
@media screen and (max-width: 821px) {
  .works__box-icon {
    margin: 5px 0;
  }
}
.works__box-function {
  font-size: 14px;
  padding: 10px;
  background: #eee;
  margin-block: 10px;
  list-style-type: disc;
  padding-left: 2rem;
}
.works__caption {
  font-weight: bold;
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-size: clamp(0.8125rem, 0.768rem + 0.19vw, 0.9375rem);
}
.works__design .works__caption {
  color: #1f4487;
}
.works__web {
  background: #1f4487;
}
.works__web-sitelist {
  font-size: 14px;
  list-style-type: disc;
  padding-left: 1rem;
}
.works__tools {
  background: #00a5bf;
}
.works {
  /*デザイン固有*/
}
.works__design {
  margin-top: 40px;
}
.works__design-list {
  width: min(92%, 1300px);
  margin-inline: auto;
  justify-content: center;
  gap: 2%;
}
.works__design-type {
  padding: 5px 15px;
  line-height: 1;
  border-radius: 50vw;
  font-size: 14px;
  display: block;
  background: #1f4487;
  color: #fff;
  font-weight: bold;
  display: inline-block;
  margin-block: 10px 5px;
}
@media screen and (max-width: 821px) {
  .works__design-type {
    line-height: 1.3;
  }
}
.works__design-txt {
  font-size: 14px;
}
.works {
  /*     &__slider {
          &-item {
              margin-right: 20px;
          }
      } */
}

/**/
.image-modal {
  width: min(80vw, 750px);
  height: min(90vh, 1000px);
  padding: 0;
  border: none;
  background: transparent;
  overflow: visible;
}
@media screen and (max-width: 821px) {
  .image-modal {
    height: 70vh;
  }
}
.image-modal::backdrop {
  background: rgba(0, 0, 0, 0.6);
}

.image-modal__body {
  width: 100%;
  height: 100%;
  overflow: auto;
  background: #fff;
  border-radius: 8px;
}

.image-modal__img {
  display: block;
  width: 100%;
  height: auto;
}

.image-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #333;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.history {
  background: #1f4487;
  padding-bottom: 60px;
}
.history__wrap {
  background: #fff;
  border-radius: 10px;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 821px) {
  .history__wrap:first-of-type {
    margin-top: 20px;
  }
}
.history__wrap:not(:last-of-type)::after {
  position: absolute;
  font-family: "Material Symbols Outlined";
  content: "keyboard_double_arrow_right";
  font-size: 40px;
  color: #fff;
  transform: translateX(-50%) rotate(-90deg);
  left: 50%;
  bottom: -53px;
}
* + * .history__wrap {
  margin-top: 50px;
}
.history__wrap-ttlBox {
  font-weight: bold;
  background: rgba(0, 165, 191, 0.1);
  padding: 15px 20px;
}
@media screen and (max-width: 821px) {
  .history__wrap-ttlBox {
    padding: 15px;
  }
}
.history__wrap-ttl {
  color: #1f4487;
  font-size: 22px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 821px) {
  .history__wrap-ttl {
    flex-direction: column;
  }
}
.history__wrap-ttlLead {
  color: #1f4487;
}
@media screen and (max-width: 821px) {
  .history__wrap-ttlLead {
    text-align: center;
  }
}
.history__wrap-period, .history__wrap-type {
  padding: 5px 15px;
  line-height: 1;
  border-radius: 50vw;
  font-size: 14px;
  display: block;
  margin-left: 10px;
}
@media screen and (max-width: 821px) {
  .history__wrap-period, .history__wrap-type {
    width: 90%;
    text-align: center;
  }
}
.history__wrap-period {
  background: #1f4487;
  color: #fff;
}
@media screen and (max-width: 821px) {
  .history__wrap-period {
    margin: 10px 0 0;
  }
}
.history__wrap-type {
  border: 1px solid #1f4487;
  background: #fff;
}
@media screen and (max-width: 821px) {
  .history__wrap-type {
    margin: 5px 0 10px;
  }
}
.history__wrap-txt {
  text-align: justify;
  padding: 20px;
  font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
}
@media screen and (max-width: 821px) {
  .history__wrap-txt {
    padding: 15px;
  }
}
.history__wrap-txt p:not(:last-of-type) {
  margin-bottom: 20px;
}

.contact {
  text-align: center;
  padding-block: 20px 60px;
  color: #1f4487;
}
.contact__mail {
  font-weight: bold;
  position: relative;
  width: max-content;
  margin-inline: auto;
  /*         &::after {
              content: "";
              display: block;
              width: 100%;
              height: 1px;
              background: v.$c-blue;
          } */
}
.contact__mail a {
  color: #1f4487;
}

.footer {
  width: 100%;
  padding: 10px 0;
  background: #1f4487;
  color: #fff;
  text-align: center;
}/*# sourceMappingURL=style.css.map */