@charset "UTF-8";
/*******************************************************************  
* リセットcss
*******************************************************************/
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
figure,
span,
picture,
figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: 400;
  vertical-align: baseline;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  border-radius: 0;
  border: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

main {
  display: block;
}

header,
footer,
nav,
section,
article,
aside,
picture,
figure,
figcaption {
  display: block;
}

body {
  line-height: 1;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  vertical-align: -webkit-baseline-middle;
}

svg {
  display: block;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

/* コンテンツ幅管理用の変数 */
/*******************************************************************  
* body
*******************************************************************/
body {
  color: #262626;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 2px;
  z-index: -100;
}

/*******************************************************************  
* utility
*******************************************************************/
@media screen and (min-width: 375px) {
  .u_tab-dn {
    display: none;
  }
}
@media screen and (min-width: 1080px) {
  .u_lg-dn {
    display: none;
  }
}
@media screen and (min-width: 1080px) {
  .u_lg-done {
    display: block;
  }
}
/*******************************************************************  
* layout
*******************************************************************/
.container-sm,
.container-lg,
.container {
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}

.container-sm {
  max-width: 832px;
}

.container {
  max-width: 992px;
}

.container-lg {
  max-width: 1112px;
}

.contents {
  padding: 120px 0;
}

/*******************************************************************  
* common
*******************************************************************/
.top-section__title-box {
  text-align: center;
}

.top-section__title {
  font-size: 32px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  color: #005ab9;
  text-transform: uppercase;
}
@media screen and (min-width: 1080px) {
  .top-section__title {
    font-size: 50px;
  }
}

.top-skill .top-section__title {
  color: #ffffff;
}

.top-section__title-sub {
  font-family: "Roboto", sans-serif;
  margin-top: 8px;
  font-size: 14px;
}
@media screen and (min-width: 1080px) {
  .top-section__title-sub {
    font-size: 24px;
  }
}

/*******************************************************************  
* ヘッダー  
*******************************************************************/
html {
  scroll-behavior: smooth;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.header__wrapper {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 1080px) {
  .header__wrapper {
    height: 100px;
  }
}

.header__logo-txt {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: #ffffff;
  display: block;
  text-transform: uppercase;
}

.header__logo-txt--sub {
  font-family: "Roboto", sans-serif;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.29em;
  text-transform: uppercase;
}

.header__nav {
  display: none;
}
@media screen and (min-width: 1080px) {
  .header__nav {
    display: block;
  }
}

@media screen and (min-width: 1080px) {
  .header__nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    font-weight: bold;
  }
}
.header__nav-link {
  position: relative;
  font-weight: bold;
  color: #ffffff;
  height: 100%;
  text-transform: uppercase;
}
.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 2px solid #ffffff;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .header__nav-link:hover::after {
    opacity: 1;
  }
}

/*******************************************************************  
  * ハンバーガーメニュー  
  *******************************************************************/
.header__hamburger {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 150;
}
@media screen and (min-width: 1080px) {
  .header__hamburger {
    display: none;
  }
}

.header__hamburger-bar {
  width: 100%;
  height: 2px;
  position: absolute;
  background: #ffffff;
  left: 50%;
}

.header__hamburger-bar:first-child {
  top: 0;
  transform: translate(-50%, 0);
}

.header__hamburger-bar:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.header__hamburger-bar:last-child {
  top: 100%;
  transform: translate(-50%, -100%);
}

.hamburger__menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: linear-gradient(-45deg, #9cecfb 0%, #46a3ec 0%, #65c7f7 50%, rgba(0, 82, 212, 0.8) 100%);
  z-index: 1;
  display: none;
}
.hamburger__menu.is-active {
  display: block;
}

.hamburger__wrapper {
  text-align: center;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -25%);
}

.hamburger__item:not(:first-child) {
  margin-top: 50px;
}

.hamburger__link {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
}

/*******************************************************************  
* フッター  
*******************************************************************/
.footer {
  background: #f0f8ff;
}

.footer__title-wrapper {
  text-align: center;
}

.footer__title {
  font-size: 32px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
}
@media screen and (min-width: 1080px) {
  .footer__title {
    font-size: 72px;
  }
}

.footer__title-sub {
  font-size: 10px;
  font-family: "Roboto", sans-serif;
}
@media screen and (min-width: 1080px) {
  .footer__title-sub {
    font-size: 24px;
  }
}

.footer-txt {
  position: relative;
  margin-top: 50px;
  text-align: center;
  font-size: 14px;
  font-family: "Zen Antique", serif;
  line-height: 1.4285714286;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media screen and (min-width: 1080px) {
  .footer-txt {
    margin-top: 100px;
    font-size: 24px;
    gap: 60px;
  }
}
.footer-txt::before, .footer-txt::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #262626;
}

.footer__sns-wrapper {
  margin-top: 50px;
  gap: 50px;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 1080px) {
  .footer__sns-wrapper {
    width: 100%;
    margin-top: 100px;
  }
}

.footer__sns-box {
  width: 50px;
  height: 50px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.161);
  border-radius: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.footer__sns-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #005ab9;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s ease;
  pointer-events: none;
}
@media (any-hover: hover) {
  .footer__sns-box:hover::before {
    transform: scale(1);
  }
}

.footer__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  width: 25px;
}

.footer__copyright-txt {
  margin-top: 60px;
  text-align: center;
  padding-bottom: 30px;
  font-size: 12px;
  letter-spacing: 0;
}
@media screen and (min-width: 1080px) {
  .footer__copyright-txt {
    margin-top: 80px;
    font-size: 14px;
  }
}

/*******************************************************************  
* KV 
*******************************************************************/
.top-kv {
  height: 832px;
  width: 100%;
  position: relative;
  background: linear-gradient(-45deg, #9cecfb 0%, #46a3ec 0%, #65c7f7 50%, rgba(0, 82, 212, 0.8) 100%);
  z-index: 100;
}

.top-kv__title-wrapper {
  padding-top: 120px;
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .top-kv__title-wrapper {
    padding-top: 250px;
    text-align: left;
  }
}

.top-kv__title {
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.15625;
  text-transform: uppercase;
}
@media screen and (min-width: 1080px) {
  .top-kv__title {
    font-size: 72px;
  }
}

.top-kv__title-sub {
  font-family: "Roboto", sans-serif;
  font-size: 10px;
  color: #ffffff;
  line-height: 1.2;
}
@media screen and (min-width: 1080px) {
  .top-kv__title-sub {
    font-size: 24px;
    letter-spacing: 0.21em;
  }
}

@media screen and (min-width: 1080px) {
  .circle-content {
    position: relative;
  }
}

.top-kv__circle {
  width: 232px;
  margin: 50px auto 0;
}
@media screen and (min-width: 1080px) {
  .top-kv__circle {
    width: 316px;
    position: absolute;
    top: 35%;
    right: 0;
  }
}
.top-kv__circle img {
  aspect-ratio: 232/232;
}
@media screen and (min-width: 1080px) {
  .top-kv__circle img {
    aspect-ratio: 316/316;
  }
}

.top-kv__txt-box {
  margin-top: 50px;
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .top-kv__txt-box {
    margin-top: 100px;
    text-align: left;
  }
}

.top-kv__txt {
  color: #ffffff;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (min-width: 1080px) {
  .top-kv__txt {
    font-size: 18px;
  }
}
.top-kv__txt:not(:first-child) {
  margin-top: 20px;
}

.top-kv__img {
  width: 150px;
}

#vanta-bg {
  position: relative;
  background: linear-gradient(-45deg, #9cecfb 0%, #46a3ec 0%, #65c7f7 50%, rgba(0, 82, 212, 0.8) 100%);
  z-index: 0;
}

/*******************************************************************  
* about 
*******************************************************************/
.top-about {
  background: #fdfdfd;
}

.top-about__contents {
  margin-top: 32px;
}
@media screen and (min-width: 1080px) {
  .top-about__contents {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.top-about__img-box {
  width: 200px;
  margin: 0 auto;
  flex-shrink: 0;
}
.top-about__img-box picture,
.top-about__img-box source,
.top-about__img-box img {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  border-radius: 50%;
}
@media screen and (min-width: 1080px) {
  .top-about__img-box {
    margin: 0;
  }
}

.top-about__txt-box {
  margin-top: 32px;
}
@media screen and (min-width: 1080px) {
  .top-about__txt-box {
    margin-top: 0;
    margin-left: 40px;
  }
}

.top-about__txt {
  font-size: 14px;
  line-height: 150%;
}
@media screen and (min-width: 1080px) {
  .top-about__txt {
    font-size: 16px;
  }
}
.top-about__txt:not(:first-child) {
  margin-top: 30px;
}
@media screen and (min-width: 1080px) {
  .top-about__txt:not(:first-child) {
    margin-top: 20px;
  }
}
.top-about__txt span {
  font-weight: bold;
}

/*******************************************************************  
* skill
*******************************************************************/
.top-skill {
  background: linear-gradient(135deg, #9cecfb 0%, #46a3ec 0%, #65c7f7 50%, rgba(0, 82, 212, 0.8) 100%);
}

.top-skill__list {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(2, 100px);
  gap: 40px 45px;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .top-skill__list {
    grid-template-columns: repeat(3, 100px);
  }
}
@media screen and (min-width: 1080px) {
  .top-skill__list {
    grid-template-columns: repeat(3, 200px);
    gap: 60px 99px;
  }
}

.top-skill__icon-box {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media screen and (min-width: 1080px) {
  .top-skill__icon-box {
    width: 200px;
    height: 200px;
  }
}
.top-skill__icon-box svg {
  width: 100%;
  height: 100%;
}
.top-skill__icon-box svg path {
  transition: fill 0.4s ease;
  fill: #ffffff;
}
@media (any-hover: hover) {
  .top-skill__icon-box:hover svg path {
    fill: #ffe600;
  }
}
.top-skill__icon-box .top-skill__tooltip {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 82, 212, 0.8);
  color: #ffffff;
  font-size: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: 2px;
  font-weight: bold;
}
@media screen and (min-width: 1080px) {
  .top-skill__icon-box .top-skill__tooltip {
    font-size: 14px;
    line-height: 150%;
  }
}
.top-skill__icon-box .top-skill__tooltip.is-visible {
  opacity: 1;
}
@media (any-hover: hover) {
  .top-skill__icon-box:hover .top-skill__tooltip {
    opacity: 1;
  }
}

.top-skill__logo-name {
  margin-top: 8px;
  text-align: center;
  color: #ffffff;
  transition: color 0.3s ease;
}
@media screen and (min-width: 1080px) {
  .top-skill__logo-name {
    font-size: 20px;
  }
}

@media (any-hover: hover) {
  .top-skill__item:hover .top-skill__logo-name {
    color: #ffe600;
  }
}
/*******************************************************************  
* works
*******************************************************************/
.top-works {
  background: #fdfdfd;
}

.top-works__items {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: center;
  margin-top: 52px;
}
@media screen and (min-width: 1080px) {
  .top-works__items {
    margin-top: 100px;
    gap: 44px;
  }
}

.top-works__item {
  max-width: 343px;
}
@media screen and (min-width: 1080px) {
  .top-works__item {
    max-width: 320px;
  }
}

.top-works__img-box {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.top-works__img img,
source {
  width: 100%;
  aspect-ratio: 343/200;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1080px) {
  .top-works__img img,
  source {
    aspect-ratio: 320/185;
  }
}

.top-works__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 82, 212, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

@media (any-hover: hover) {
  .top-works__img-link:hover .top-works__overlay {
    opacity: 1;
    pointer-events: auto;
  }
}
.top-works__overlay-text {
  background: rgba(0, 82, 212, 0.6);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: bold;
}

.top-works__inner {
  padding-left: 4px;
}

.top-works__title {
  margin-top: 8px;
  color: #727272;
}

.top-works__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 6px;
  margin-top: 12px;
  list-style: none;
}
@media screen and (min-width: 1080px) {
  .top-works__tags {
    margin-top: 20px;
  }
}

.top-works__tags-item {
  background: #3a81e1;
  color: #ffffff;
  font-size: 10px;
  padding: 6px 9px;
  border-radius: 57px;
  font-weight: bold;
}

/*******************************************************************  
* contact
*******************************************************************/
.top-contact {
  background: #f0f8ff;
}

.contact-form__wrapper {
  margin-top: 100px;
}

.contact-form__boxs:not(:first-child) {
  margin-top: 32px;
}

.contact-form__box {
  display: flex;
  align-items: center;
}

.contact-form__title {
  display: block;
  font-weight: bold;
}
@media screen and (min-width: 1080px) {
  .contact-form__title {
    font-size: 18px;
  }
}

.contact-form__required {
  font-size: 10px;
  font-weight: bold;
  color: #ffffff;
  background-color: #71a4da;
  padding: 5px 9px;
  border-radius: 20px;
  margin-left: 16px;
}
@media screen and (min-width: 1080px) {
  .contact-form__required {
    font-size: 12px;
  }
}

.contact-form__input {
  margin-top: 16px;
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 14px;
  font-size: 12px;
  background-color: #ffffff;
  box-sizing: border-box;
}
@media screen and (min-width: 1080px) {
  .contact-form__input {
    padding: 18px;
    font-size: 16px;
  }
}
.contact-form__input:focus {
  outline: none; /* デフォルトのブラウザの枠を消す */
  border: 2px solid #3a81e1; /* お好みの青系カラーに統一 */
  box-shadow: 0 0 0 2px rgba(95, 141, 207, 0.3); /* 薄く広がる青の影も追加（任意） */
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 160px;
}
@media screen and (min-width: 1080px) {
  .contact-form__textarea {
    min-height: 140px;
  }
}

.wpcf7-list-item {
  display: block;
  margin: 0 0 0 0;
  margin-top: 16px;
}
@media screen and (min-width: 1080px) {
  .wpcf7-list-item {
    font-size: 16px;
    margin-top: 24px;
  }
}
.wpcf7-list-item label {
  display: flex;
  align-items: center;
}
.wpcf7-list-item label input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid #3a81e1;
  border-radius: 9999px;
  cursor: pointer;
  flex-shrink: 0;
}
.wpcf7-list-item label input:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  border-radius: 9999px;
  background-color: #3a81e1;
  flex-shrink: 0;
}
.wpcf7-list-item label span {
  margin-left: 8px;
}

.contact-form__privacy-box {
  margin-top: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-form__privacy-box span {
  text-decoration: underline;
}

.contact-form__privacy {
  font-size: 14px;
  font-weight: bold;
  color: #727272;
}

/* ボタン */
.contact-form__button {
  display: block;
  margin: 32px auto 0;
  background-color: #71a4da;
  color: #ffffff;
  padding: 20px 38px;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-weight: bold;
}
@media (any-hover: hover) {
  .contact-form__button:hover {
    background-color: #3a81e1;
  }
}

/*******************************************************************  
* js
*******************************************************************/
.js-body.is-active {
  overflow: hidden;
  width: 100%;
}

.js-hamburger__menu {
  pointer-events: none;
  display: none;
  transition: opacity 0.5s;
}

.js-hamburger__menu.is-active {
  display: block;
  pointer-events: inherit;
}

.js-hamburger.is-active .header__hamburger-bar {
  position: absolute;
}

.js-hamburger.is-active .header__hamburger-bar:first-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(45deg);
  background: #ffffff;
}

.js-hamburger.is-active .header__hamburger-bar:nth-child(2) {
  opacity: 0;
}

.js-hamburger.is-active .header__hamburger-bar:last-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(-45deg);
  background: #ffffff;
}

.header.is-dark {
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.header.is-dark .header__logo-txt,
.header.is-dark .header__logo-txt--sub,
.header.is-dark .header__nav-link {
  color: #005ab9;
}
.header.is-dark .header__nav-link::after {
  border-bottom: 2px solid #005ab9;
}
.header.is-dark .header__hamburger-bar {
  background: #005ab9;
}
.header.is-dark .hamburger__link {
  color: #ffffff;
}/*# sourceMappingURL=style.css.map */