@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: sans-serif;
}
img {
    width: 100%;
    vertical-align: bottom;
}
html {
    overflow-x: hidden;
}
body {
    overflow-x: hidden;
}
/* ロード */
.loading img{
    width: 200px;
}
/* ローディング全体 */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #00a3d6;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999999;
}

/* 波打つ文字 */
.wave-text span {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  animation: wave 1.5s ease-in-out infinite;
}
#loading img{
    width: 300px;
}
/* 文字ごとに遅延をつける */
.wave-text span:nth-child(1) { animation-delay: 0s; }
.wave-text span:nth-child(2) { animation-delay: 0.1s; }
.wave-text span:nth-child(3) { animation-delay: 0.2s; }
.wave-text span:nth-child(4) { animation-delay: 0.3s; }
.wave-text span:nth-child(5) { animation-delay: 0.4s; }
.wave-text span:nth-child(6) { animation-delay: 0.5s; }
.wave-text span:nth-child(7) { animation-delay: 0.6s; }
.wave-text span:nth-child(8) { animation-delay: 0.7s; }
.wave-text span:nth-child(9) { animation-delay: 0.8s; }
.wave-text span:nth-child(10){ animation-delay: 0.9s; }

/* 波アニメーション */
@keyframes wave {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* 最初はコンテンツを隠す */
#content {
  display: none;
}

/* color 
blue:#00a3d6
pink:#e4007f
*/
/* header */
.sp-header {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    padding: 0px 20px 10px;
}
.sp-header h1 {
    width: 100px;
    position: relative;
}
.sp-header .hamburger {
    position: relative;
    top: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.sp-header .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #00a3d6;
    transition: 0.7s;
    z-index: 99;
}
.sp-header .hamburger.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
    background-color: #fff;
}
.sp-header .hamburger.active span:nth-child(2) {
    opacity: 0;
}
.sp-header .hamburger.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
    background-color: #fff;
}
.sp-header .sp-nav {
    width: 100%;
    /* height: 100lvh;
    height: -webkit-fill-available;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh; 
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    z-index: 9;
    overflow-y: auto;
    background-color: #00000077;
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
}
/* ******アイフォン用****** */
.sp-nav-inner{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.nav-btn{
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 10px 100px;
}
.sp-nav-inner ul{
    width: fit-content;
    margin: 50px auto;
    font-size: 20px;
}
/* *********************** */
.sp-header .sp-nav a {
    color: rgb(255, 255, 255);
    font-size: 24px;
}
.sp-header .sp-nav li a{
    font-size: 22px;
}
.sp-header .sp-nav li {
    margin: 10px;
}
.sp-header .sp-nav.active {
    opacity: 1;
    pointer-events: all;
}
/* pc-header */
.pc-header {
    display: none;
}
@media (min-width: 768px) {
    .sp-header {
        display: none;
    }
    .pc-header {
        display: flex;
        position: fixed;
        z-index: 999;
        justify-content: space-between;
        align-items: baseline;
        width: 100%;
        padding: 20px 10vw;
        background-color: #fff;
    }
    .pc-header h1 {
        width: 150px;
    }
    .pc-header .pc-nav ul {
        display: flex;
        gap: 3vw;
    }
     .pc-header .pc-nav ul a{
        font-size: 20px;
        color: #00789c;
        font-weight: bold;
     }
}
/* main */

.section-title {
    margin-bottom: 40px;
}
.section-title h2 {
    position: relative;
    width: fit-content;
    font-size: 30px;
}
.section-title h2::before {
    content: "";
    display: block;
    position: absolute;
    width: 100px;
    height: 2px;
    background: #000;
    bottom: 40%;
    left: 110%;
}
.section-cp {
    font-size: 20px;
    font-weight: bold;
    position: relative;
    z-index: 0;
    padding: 0 0.06em;
}

.section-cp span {
    position: relative;
    z-index: 0;
}
.section-cp span::after {
    content: "";
    display: inline-block;
    width: 90%;

    position: absolute;
    left: 5%;
    right: 0;
    bottom: 0.08em; /* ラインの縦位置 */
    height: 0.45em; /* ラインの厚さ */
    background: #eeff00; /* 蛍光色 */
    z-index: -1; /* 文字の後ろに表示 */
    transform: translateY(10%); /* 微調整 */
}

.btn {
    width: 90%;
    margin: 30px auto 10px;
    padding: 10px;
    display: block;
    border-radius: 20px;
    border: 1px solid #000;
    text-align: center;
    color: #000;
}
.btn i {
    margin-left: 20px;
}
/* hero */
/* sp-hero */
.sp-hero {
    position: relative;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 縦横比を保ちながら全面表示 */
    z-index: 1;
    padding: 10px;
}

.sp-front {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain; /* 画像の比率を維持 */
    z-index: 2;
}
/* pc-hero */
.pc-front {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain; /* 画像の比率を維持 */
    z-index: 2;
    display: none;
}
@media (min-width: 768px) {
    .pc-front {
        display: block;
        padding-top: 50px;
    }
    .sp-front {
        display: none;
    }
    .hero {
        margin-bottom: 100px;
    }
}
/* about */
.about {
    position: relative;
    padding: 20px;
    margin-bottom: 100px;
}
.about .about-me {
    position: absolute;
    width: 50%;
    right: -5%;
    top: 2%;
    z-index: -1;
    opacity: 0.3;
}
.about .section-title h2::before {
    background-color: #00a3d6;
}
.about .section-title h2 {
    color: #00a3d6;
}
.about .section-cp {
    color: #00a3d6;
    margin-bottom: 20px;
}
.about h3 {
    margin: 40px 0 10px;
    background-color: #00a3d6;
    color: #fff;
    padding: 10px;
}
@media (min-width: 768px) {
    .about {
        width: 80%;
        margin: 0 auto;
        font-size: 20px;
        line-height: 2;
    }
    .about-text {
        width: 90%;
        max-width: 800px;
    }
    .about .about-me {
        position: absolute;
        width: 35%;
        right: 2%;
        top: 2%;
        z-index: -1;
        opacity: 0.3;
    }
    .about .section-title h2 {
        color: #00a3d6;
        font-size: 60px;
    }
    .about .section-title p {
        margin: 0;
        font-size: 17px;
        position: relative;
        top: -20px;
        color: #00a3d6;
    }
    .about .section-cp {
        color: #00a3d6;
        margin-bottom: 20px;
        font-size: 30px;
    }

    .about .btn {
        width: 400px;
        margin: 50px 0 100px;
    }
}
/* product */
.product {
    margin-bottom: 150px;
}
.product .section-title h2 {
    color: #00a3d6;
    font-size: 30px;
}
.product .section-title h2::before {
    background-color: #00a3d6;
}
.product .section-title p {
    margin: 0;
    font-size: 17px;
    position: relative;
    color: #00a3d6;
}
.product .section-title {
    padding: 0 20px;
}
.product .section-cp {
    margin-bottom: 70px;
    padding: 0 20px;
}
.product-item img {
    aspect-ratio: 1.6/1;
    object-fit: cover;
}
@media (min-width: 768px) {
    .product .section-title h2 {
        color: #00a3d6;
        font-size: 60px;
    }
    .product .section-title h2::before {
        background-color: #00a3d6;
    }
    .product .section-title p {
        margin: 0;
        font-size: 17px;
        position: relative;
        color: #00a3d6;
    }
        .product .section-cp {
        color: #00a3d6;
        margin-bottom: 20px;
        font-size: 30px;
    }
    .product {
        margin-bottom: 150px;
        width: 80%;
        margin: 0 auto;
    }
    .product .section-title {
        padding: 0 20px;
    }
    .product .section-cp {
        margin-bottom: 70px;
        padding: 0 20px;
    }
    .product-item img {
        aspect-ratio: 1.6/1;
        object-fit: cover;
    }
}
/* web-site */
.web-site {
    margin-bottom: 150px;
}
.web-site .inner-detail {
    padding-left: 20px;
    width: 70%;
    line-height: 2;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 70px;
}
.product .web-site h3 {
    font-size:8vw;
    padding-left: 20px;
    margin-bottom: 30px;
    z-index: 1;
    color: #2d049d;
}
.product .web-site {
    position: relative;
}
.product-item {
    position: relative;
    background: #fff;
    box-shadow: 0px 0px 5px #000000ab;
    margin: 20px;
}
.web-site h4 {
    position: absolute;
    top: 10px;
    left: 19px;
    margin-bottom: 10px;
    color: #004478;
    width: fit-content;
    background-color: #ffffff;
    padding: 5px 20px 5px 0;
    font-size: 18px;
    border-radius: 0 0 8px 0;
}
.web-site {
    background-image: url(../img/tes1.png);
    background-repeat: no-repeat;
    background-size: contain;
}
@media (min-width:768px) {
    .web-site {
    margin-bottom: 150px;
}
.web-site .inner-detail {
    padding-left: 20px;
    width: 50%;
    min-width: 400px;
    margin-top: 0;
    line-height: 2;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 70px;
    font-size: 20px;
    padding-left: 30px;
}
.product .web-site h3 {
    font-size: 4vw;
    padding-left: 20px;
    margin-bottom: 50px;
    z-index: 1;
    color: #2d049d;
}
.product .web-site {
    position: relative;
}
.product-item {
width: 30%;

}
.web-site h4 {
    position: absolute;
    top: 10px;
    left: 19px;
    margin-bottom: 10px;
    color: #004478;
    width: fit-content;
    background-color: #ffffff;
    padding: 5px 20px 5px 0;
    font-size: 18px;
    border-radius: 0 0 8px 0;
}
.web-site {
    background-image: url(../img/pc-website.png);
    background-repeat: no-repeat;
    background-size: 100%;

}
.web-flex{
    display: flex;
}
}
/* graphic */
.graphic {
    background-image: url(../img/graphick-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
}
.graphic .inner-detail {
    padding-left: 20px;
    width: 70%;
    line-height: 2;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 70px;
}
.product .graphic {
    position: relative;
}

.product-item {
    padding: 20px;
    margin-bottom: 50px;
}

.product-item p {
    color: #000;
    width: 100%;
}
.product-item-flex p {
    padding: 10px;
    font-size: 14px;
    line-height: 1.4;
    border-bottom: 2px solid #869498;
}
.product-item-flex h5 {
    padding: 10px 10px 0;
}
.product-item-flex ul {
    padding-left: 30px;
    font-size: 14px;
    margin-bottom: 10px;
}
.product-item-flex ul li {
    list-style-type: disc;
}
.product-item-flex .btn {
    border-color: #000000;
    color: #000000;
}
.product .graphic h3 {
       font-size: 8vw;
    padding-left: 20px;
    margin-bottom: 30px;
    z-index: 1;
    color: #af025b;
}

.graphic h4 {
    position: absolute;
    top: 10px;
    left: 19px;
    margin-bottom: 10px;
    color: #78004e;
    width: fit-content;
    background-color: #ffffff;
    padding: 5px 20px 5px 0;
    font-size: 18px;
    border-radius: 0 0 8px 0;
}
.graphic {
    background-image: url(../img/sp-graphic-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
}
@media (min-width:768px) {
    .graphic {
    margin-bottom: 150px;
}
.graphic .inner-detail {
    padding-left: 20px;
    width: 50%;
    min-width: 400px;
    margin-top: 0;
    line-height: 2;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 70px;
    font-size: 20px;
    padding-left: 30px;
}
.product .graphic h3 {
    font-size: 4vw;
    padding-left: 20px;
    margin-bottom: 30px;
    z-index: 1;
    color: #af025b;
}
.graphic {
    position: relative;
}
.product-item {
width: 30%;

}
.graphic h4 {
    position: absolute;
    top: 10px;
    left: 19px;
    margin-bottom: 10px;
    color: #004478;
    width: fit-content;
    background-color: #ffffff;
    padding: 5px 20px 5px 0;
    font-size: 18px;
    border-radius: 0 0 8px 0;
}
.graphic {
    background-image: url(../img/grabg\ \(2\).jpg);
    background-repeat: no-repeat;
    background-size: 100%;

}
.web-flex{
    display: flex;
}
}
/* gallery */
.gallery{
    background-image: url(../img/gallery-bg.png);
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
    background-color: #dddddd;

}
.gallery .gallery-inner{
    background-color: #ffffffa3;
    padding: 30px 20px;
}
.gallery .gallery-inner .gallery-logo{
    padding: 20px;
    width: 90%;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 2px 2px 5px ;
    background-color: #fff;
}
.gallery .section-cp{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 1.7;
}
.gallery p{
    font-weight: bold;
    line-height: 2;
    width: 80%;
}
.gallery-flex{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.gallery-item{
    width: 49%;
    background-color: #fff;
    padding: 10px;
    margin-bottom: 10px;
}
.gallery-item img{
    aspect-ratio: 1.618/1;
    object-fit: cover;
}
/* gallery */
/* contact */
.contact{
    width: 90%;
    margin: 100px auto;
background: linear-gradient(113deg,rgba(2, 2, 204, 1) 0%, rgba(60, 104, 250, 1) 99%);
    color: #fff;
    border-radius: 10px;
    position: relative;

}
.contact a{
    display: block;
    padding: 20px;
    color: #fff;
    border-radius: 10px;
    border: 2px solid rgb(255, 255, 255);
transition: 0.5s;
}
.contact a:hover{
    border: 2px solid dodgerblue;
        background-color: #ffffff;
    color: #0439d8;
    border-radius: 10px;
}
.contact .title{
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 0;
}

.contact p{
    margin-bottom: 20px;
    width: 60%;
}
.contact a::after,
.contact a::before{
    content: "";
    width: 60px;
    height: 60px;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 40%;
    right: 10%;
    transition: 0.5s;
}
.contact a::after{
    background-image: url(../img/arrow01.png);
    opacity: 1;
}
.contact a::before{
    background-image: url(../img/arrow02.png);
}
.contact:hover a::after{
    opacity: 0;
}
/* footer */
footer {
    background-color: #004478;
    text-align: center;
}
.footer-logo {
    width: 150px;
    fill: #fff;
    padding-top: 20px;
    margin-bottom: 20px;
}
footer ul {
    text-align: center;
    margin-bottom: 30px;
}
footer ul li {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
}
footer ul a {
    display: block;
    color: #fff;
    font-size: 14px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
footer p {
    padding-bottom: 20px;
    color: #fff;
}
