@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;
    scroll-behavior: smooth;
    scroll-padding: 70px;
}
.m-plus-rounded-1c-regular {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.pagetop {
    height: 50px;
    width: 50px;
    position: sticky;
    margin-left: auto;
    margin-right: 30px;
    bottom: 30px;
    margin-bottom: 30px;
    background: #ffffffbc;
    border: solid 2px #00a3d6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #00a3d6;
    border-right: 3px solid #00a3d6;
    transform: translateY(20%) rotate(-45deg);
}
/* 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: 140px;
    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;
    z-index: 9999;
    overflow-y: auto;
    z-index: 9;
    overflow-y: auto;
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
    background-image: linear-gradient(#22d3ee, #8b5cf6);
}

@-webkit-keyframes AnimationName {
    0% {
        background-position: 2% 0%;
    }
    50% {
        background-position: 99% 100%;
    }
    100% {
        background-position: 2% 0%;
    }
}
@-moz-keyframes AnimationName {
    0% {
        background-position: 2% 0%;
    }
    50% {
        background-position: 99% 100%;
    }
    100% {
        background-position: 2% 0%;
    }
}
@keyframes AnimationName {
    0% {
        background-position: 2% 0%;
    }
    50% {
        background-position: 99% 100%;
    }
    100% {
        background-position: 2% 0%;
    }
}

/* ******アイフォン用****** */
.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;
        box-shadow: 2px 2px 5px #bdbdbd;
    }
    .pc-header h1 {
        width: 20%;
        max-width: 200px;
        min-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;
    }
    .pc-header .pc-nav ul a::after {
        content: "";
        display: block;
        width: 100%;
        height: 2px;

        background: #00789c;
        transform: scale(0, 1);
        transform-origin: center top;
        transition: transform 0.3s;
    }
    .pc-header .pc-nav ul a:hover::after {
        transform: scale(1, 1);
    }
}
/* main */
main {
    padding-top: 50px;
}
@media (min-width: 768px) {
    main {
        padding-top: 100px;
    }
}
h2 {
    margin-top: 20px;
    font-size: 40px;
    color: #00a3d6;
    padding-left: 20px;
}
.catchcopy{
    font-size: 23px;
    color: #029eb7;
    padding-left: 20px;
    width: 80%;
    margin: 0 auto;
}
.about-flex {
    padding: 20px;
    margin-bottom: 100px;
}
.about-flex h3 {
    font-size: 30px;
    margin-bottom: 30px;
    line-height: 0.8;
    width: fit-content;
}
.about-flex h3 span {
    font-size: 14px;
    font-weight: 100;
    padding-left: 10px;
}
.about-flex p {
    text-align: justify;
    line-height: 1.6;
    margin-bottom: 20px;
}
@media (min-width: 767px) {
    h2 {
        margin-top: 20px;
        font-size: 60px;
        color: #00a3d6;
        padding-left: 20px;
        width: 80%;
        margin: 0 auto;
    }
    .about-flex {
        padding: 20px;
        margin-bottom: 100px;
        width: 80%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .about-flex .flex-item {
        width: 47%;
    }
    .about-flex h3 {
        font-size: 40px;
        margin-bottom: 30px;
        line-height: 0.8;
        width: fit-content;
    }
    .about-flex h3 span {
        font-size: 14px;
        font-weight: 100;
        padding-left: 10px;
    }
    .about-flex p {
        text-align: justify;
        line-height: 1.6;
        margin-bottom: 20px;
    }
}
section {
    padding: 20px;
}

section ul li {
    display: flex;
    align-items: center;
    width: 90%;
    gap: 20px;
    margin-bottom: 5px;
    padding-left: 15px;
}
section ul li i {
    width: 20px;
}

.keireki {
    background-color: #029eb7;
    padding: 30px 20px 40px;
    position: relative;
}
.keireki-title {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    padding: 0 0 5px 5px;
}
.before {
    background-color: #fff;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 20px;
}
.before h3 {
    color: #00789c;
}
.arrow-right {
    display: none;
}
.arrow-down {
    width: 50px;
    margin: 0 auto 20px;
}
@media (min-width: 1024px) {
    .keireki-title {
        font-size: 20px;
        font-weight: bold;
        color: #fff;
        padding: 0 0 5px 5px;
        width: 80%;
        margin: 0 auto;
    }
    .arrow-down {
        display: none;
    }
    .arrow-right {
        display: block;
        width: 100px;
    }
    .keireki-flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 80%;
        margin: 0 auto;
    }
    .before {
        width: 40%;
        margin-bottom: 0;
    }
    .after {
        width: 40%;
        height: 100%;
    }
}
.after {
    background-color: #fff;
    border-radius: 8px;
    padding: 10px;
}
.after h3 {
    color: rgb(206, 0, 144);
}
/* skill */
.skill h3 {
    font-size: 30px;
    margin-bottom: 20px;
}
.skill h4 {
    border: 1px solid #004478;
    /* background: #00789c; */
    color: #004478;
    width: fit-content;
    padding: 2px 20px;
    border-radius: 30px;
    margin-bottom: 10px;
    font-weight: 500;
}
.skill-item {
    display: flex;
    padding: 0 10px;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.skill-item div {
    width: 30%;
}
.skill h5 {
    text-align: center;
    font-size: 16px;
    margin-bottom: 5px;
}
.skill p {
    line-height: 1.7;
    text-align: justify;
    padding: 0 20px;
    margin-bottom: 50px;
}
.adobe-flex {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
@media (min-width: 767px) {
    .skill {
        width: 80%;
        margin: 0 auto;
    }
    .skill h3 {
        font-size: 40px;
        margin-top: 100px;
        margin-bottom: 50px;
    }
    .skill h4 {
        border: 1px solid #004478;
        /* background: #00789c; */
        color: #004478;
        width: fit-content;
        padding: 4px 40px;
        border-radius: 30px;
        margin-bottom: 20px;
        font-weight: 500;
        font-size: 20px;
    }
    .skill-item {
        display: flex;
        padding: 0 10px;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        margin-bottom: 60px;
    }

    .skill h5 {
        text-align: center;
        font-size: 20px;
        margin-bottom: 10px;
    }
    .skill p {
        line-height: 1.7;
        text-align: justify;
        padding: 0 20px;
        margin-bottom: 50px;
    }
    .adobe-flex {
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }
    .skill-flex,.wp,.adobe{
        display: flex;
        justify-content: space-between;
        align-items: center;
        p{
            width: 50%;
        }
        .skill-item{
            width: 45%;
        }
    }

}
/* .skill dl{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;

}
.skill dl dt{
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    width: 20%;
}
.skill dl dd{
    width: 80%;
    font-size: 14px;
    padding-left: 10px;
    border-left: 1px solid #000;
} */
/* footer */
footer {
    background-color: #004478;
}
.footer-logo {
    width: 150px;
    fill: #fff;
    padding-top: 20px;
    margin-left: 40px;
}
footer ul {
    text-align: center;
    margin-bottom: 30px;
    gap: 20px;
    display: flex;
    width: 80%;
    margin-left: 40px;
}

footer ul a {
    display: block;
    color: #fff;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer p {
    padding-bottom: 20px;
    color: #fff;
    padding-left: 40px;
}
@media (min-width: 768px) {
    .footer-flex-pc {
        display: flex;
        align-items: end;
        width: fit-content;
        margin: 0 auto;
        justify-content: center;
        gap: 10vw;
    }
    footer ul {
        text-align: center;
        margin-bottom: 30px;
        gap: 30px;
        display: flex;
        margin-left: 30px;
        width: fit-content;
    }
    footer ul a {
        color: #fff;
        font-size: 20px;
        font-weight: bold;
        width: fit-content;
    }
    footer p {
        text-align: center;
    }
}
