@charset "utf-8";

/* ローディング */

.loading {
    position: fixed;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #f8fcf9;
    z-index: 9999;
}

.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 163px;
    height: 163px;
    transition: 0.3s;
    z-index: 999;
}

.logo_red {
    position: absolute;
    top: 57%;
    left: 60%;
    width: 77px;
}

.logo_line img {
    position: absolute;
    z-index: 10;
}

.cls-1 {
    transition: 0.3s;
}

/* FVのヘッダーのみ */
.header_wrap {
    padding-bottom: 50px;
}

/* FV_メインビジュアル */

.fv {
    background: #f8fcf9;
}

.fv_visual {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    /* height: 100%; */
    height: 516px;
    background: #f8fcf9;
}

.concept {
    position: absolute;
    top: 290px;
    padding-left: 3%;
    z-index: 2;
}

.concept1,
.concept2 {
    line-height: 1.7;
    margin-bottom: 40px;
}

.fv_blob {
    position: absolute;
    width: 772px;
    height: 476px;
    left: 58%;
    transform: translateX(-50%);
    z-index: 1;
}

.blob_blue,
.blob_green,
.blob_yellow,
.blob_orange,
.blob_red {
    position: absolute;
    mix-blend-mode: multiply;
}

.blob_blue {
    top: 0px;
    left: 0px;
    width: 226px;
}

.blob_green {
    top: 76px;
    left: 118px;
    width: 383px;
}

.blob_yellow {
    bottom: 0px;
    left: 93px;
    width: 183px;
}

.blob_orange {
    top: 47px;
    right: 68px;
    width: 169px;
}

.blob_red {
    top: 148px;
    right: 0px;
    width: 202px;
}

/* FVアニメーション */
/* 青い楕円 */
.blob_blue img {
    animation: blob_blue 10s infinite ease-in-out;
}

@keyframes blob_blue {
    0%,
    100% {
        transform: translate(0, 20px) rotate(0deg);
    }
    25% {
        transform: translate(20px, 0) rotate(10deg);
    }

    50% {
        transform: translate(0, 10px) rotate(0deg);
    }
    75% {
        transform: translate(-20px, 0) rotate(10deg);
    }
}

/* 緑の楕円 */
.blob_green img {
    animation: blob_green 10s infinite ease-in-out;
}

@keyframes blob_green {
    0%,
    100% {
        transform: translate(0, -5px) rotate(10deg);
    }
    25% {
        transform: translate(10px, 0) rotate(-10deg);
    }

    50% {
        transform: translate(0, -10px) rotate(0deg);
    }
    75% {
        transform: translate(-10px, 0) rotate(-10deg);
    }
}

/* 黄色の楕円 */
.blob_yellow img {
    animation: blob_yellow 10s infinite ease-in-out;
}

@keyframes blob_yellow {
    0%,
    100% {
        transform: translate(20px, 0) rotate(15deg);
    }
    25% {
        transform: translate(0, 10px) rotate(-15deg);
    }

    50% {
        transform: translate(-20px, 0) rotate(0deg);
    }
    75% {
        transform: translate(0, -10px) rotate(-15deg);
    }
}

/* オレンジの楕円 */
.blob_orange img {
    animation: blob_orange 10s infinite ease-in-out;
}

@keyframes blob_orange {
    0%,
    100% {
        transform: translate(-10px, 10px) rotate(-10deg);
    }
    25% {
        transform: translate(0, 0) rotate(15deg);
    }

    50% {
        transform: translate(20px, 0) rotate(-5deg);
    }
    75% {
        transform: translate(0, 10px) rotate(10deg);
    }
}

/* 赤の楕円 */
.blob_red img {
    animation: blob_red 10s infinite ease-in-out;
}

@keyframes blob_red {
    0%,
    100% {
        transform: translate(5px, 0px) rotate(10deg);
    }
    25% {
        transform: translate(0, 10px) rotate(-15deg);
    }

    50% {
        transform: translate(10px, 0) rotate(5deg);
    }
    75% {
        transform: translate(0, 10px) rotate(-5deg);
    }
}
/* サービス～アバウトのグラデーション */
.gradient_wrap {
    background: rgb(255, 255, 255);
    background: linear-gradient(
        0deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(186, 224, 195, 1) 100%
    );
}

h2 {
    font-size: 50px;
    padding-top: 100px;
    padding-bottom: 70px;
}

/* サービス */

.service_title {
    text-align: center;
}

.card_design,
.card_coding {
    width: 434px;
    background: #fff;
    padding: 56px;
}

.service_flex {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 10px;
}

.card_design,
.card_coding {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    width: 31.7%;
}

.title_design,
.title_coding {
    line-height: 1.75;
    letter-spacing: 0.15em;
    font-size: 24px;
    text-align: center;
}

.title_design::after {
    content: "DESIGN";
    font-size: 0.58em;
    display: block;
    color: #666;
}

.title_coding::after {
    content: "CODING";
    font-size: 0.58em;
    display: block;
    color: #666;
}

.design_icon,
.coding_icon {
    padding: 60px 0;
}

.design_icon {
    width: 189px;
}

.coding_icon {
    width: 208px;
}

.service_text {
    line-height: 1.81;
}

/* ワークス */

.service,
.works,
.about,
.contact {
    padding: 0 30px;
}
.works_title {
    text-align: center;
}

.works_container {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
}

.pc_only {
    padding-right: 10%;
}

.works_desc {
    position: sticky;
    top: 100px;
}

.works_desc p {
    font-size: 16px;
    line-height: 1.62;
    padding-bottom: 76px;
}

.sp_only {
    display: none;
}

/* ワークスのボタン */
.sp_works_btn {
    display: none;
}

.works_btn {
    display: block;
}

.works_btn a {
    position: relative;
    margin: 0 auto;
    padding: 1.38em 6.33em;
    display: block;
    max-width: 287px;
    text-align: center;
    font-size: 18px;
    letter-spacing: 0.25em;
    transition: 0.3s;
    border: 0.3px solid #333;
    border-radius: 34px;
}

.works_btn a::before {
    content: "";
    position: absolute;
    top: calc(50% - 2px);
    right: -2em;
    transform: translateY(calc(-50% - 2px)) rotate(30deg);
    width: 12px;
    height: 1px;
    background-color: #333;
    transition: 0.3s;
}

.works_btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -2em;
    transform: translateY(-50%);
    width: 70px;
    height: 1px;
    background-color: #333;
    transition: 0.3s;
}

.works_btn a:hover {
    text-decoration: none;
    color: #fff;
    background-color: #333;
}

.works_btn a:hover::before,
.works_btn a:hover::after {
    right: -3em;
}

/* ワークス ボタン終了 */

/* ワークス グリッド */
.works_item {
    padding-bottom: 70px;
}

.works_item p {
    font-size: 20px;
    line-height: 1.3;
    padding-top: 18px;
    display: flex;
    align-items: center;
}

.works_item p::before {
    content: "";
    display: inline-block;
    width: 68px;
    height: 0.3px;
    background-color: #333;
    margin-right: 12px;
}

/* 下からフェードイン */
.works_item {
    /* 最初は非表示 */
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 1s, visibility 1s, transform 1s;
}
/* フェードイン時に入るクラス */
.is-fadein {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* アバウト */
.about {
    padding-bottom: 136px;
}

.about_title {
    text-align: center;
}

.about_wrap {
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}
.about_illust {
    width: 38%;
    padding-right: 13%;
}

.profile {
    width: 50%;
}

.about_name {
    font-size: 24px;
    letter-spacing: 0.08em;
    padding-bottom: 55px;
}

.about_name::after {
    content: "Yuka";
    padding-left: 33px;
    font-size: 0.66em;
    color: #666;
}

.profile1 {
    padding-bottom: 28px;
}

.profile2 {
    padding-bottom: 45px;
}
.profile1,
.profile2,
.soft,
.pc_only_soft {
    font-size: 16px;
    line-height: 1.87;
}

.sp_only_soft {
    display: none;
}

/* 波_手前 */

.custom-shape-divider-bottom-1678760183 {
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1678760183 svg {
    position: relative;
    display: block;
    width: calc(180% + 1.3px);
    height: 200px;
}

.custom-shape-divider-bottom-1678760183 .shape-fill {
    fill: #d6ecdb;
}

/* 波 */
.wave {
    position: relative;
}

/* 波_後ろ */
.wave_back {
    position: absolute;
    transform: scale(-1, 1);
}

.custom-shape-divider-bottom-1678760183 {
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1678760183 svg {
    position: relative;
    display: block;
    width: calc(180% + 1.3px);
    height: 200px;
}

.custom-shape-divider-bottom-1678760183 .shape-fill_back {
    fill: #eaf6ed;
}

/* コンタクト */

.contact {
    background: #d6ecdb;
    margin-top: -2px;
}

.contact_title,
.contact_text1 {
    text-align: center;
}

.contact_text1 {
    font-size: 18px;
    line-height: 1.94;
    padding-bottom: 56px;
    letter-spacing: 0.15em;
}

/* お問い合わせフォーム */
.contact {
    padding-bottom: 136px;
}

.form_wrap {
    max-width: 600px;
    margin: 0 auto;
}

label {
    display: flex;
    font-size: 16px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    border: none;
    border-radius: 3px;
    padding: 20px;
    box-sizing: border-box;
}

input[type="text"],
input[type="email"] {
    height: 50px;
}

textarea {
    height: 211px;
}

.contact_text {
    padding-right: 5px;
    padding-bottom: 7px;
}

.form_item {
    padding-bottom: 21px;
}

.contact_required {
    color: #ff0000;
}

input[type="submit"] {
    border: none;
    cursor: pointer;
    font-size: 18px;
    letter-spacing: 0.25em;
    color: white;
    background: #4d4d4d;
    padding: 23px 104px;
    border-radius: 34px;
    margin-top: 80px;
}

.submit_btn {
    text-align: center;
}

input,
textarea {
    font-size: 18px;
}

/* SP版 */
@media screen and (max-width: 767px) {
    /* ローディング */
    .logo {
        width: 100px;
        height: 100px;
    }

    .logo_red {
        position: absolute;
        top: 57%;
        left: 59%;
        width: 47px;
    }

    /* FV_SP版 */

    .fv_visual {
        width: 100%;
    }

    .fv_blob {
        max-width: 411px;
    }

    .blob_green {
        width: 73%;
        top: 140px;
        left: 40px;
    }

    .blob_blue {
        width: 38%;
        top: 50px;
        left: -24px;
    }

    .blob_yellow {
        width: 35%;
        top: 330px;
        left: 40px;
    }

    .blob_orange {
        width: 32%;
        top: 0px;
    }

    .blob_red {
        width: 39%;
        top: 65px;
        right: 32px;
    }

    .concept {
        top: 30px;
        left: 30px;
        font-size: 14px;
        line-height: 1.78;
        letter-spacing: 0.11em;
        writing-mode: vertical-rl;
    }

    .concept2 {
        padding-right: 30px;
        margin-bottom: 0;
    }

    .fv_blob {
        height: auto;
    }

    /* サイドバー */
    #sidebar {
        top: 430px;
        left: 85%;
    }

    /* サービス_SP版 */
    .service_title {
        margin: 0 auto;
        font-size: 40px;
    }

    .service_flex {
        display: block;
    }

    .card_design,
    .card_coding {
        margin: 0 auto;
        width: 62%;
    }

    .card_design {
        margin-bottom: 40px;
    }

    .title_design,
    .title_coding {
        font-size: 17px;
    }

    .design_icon,
    .coding_icon {
        padding: 55px 0 43px;
    }

    .design_icon {
        width: 173px;
    }

    .coding_icon {
        width: 151px;
    }

    .service_text {
        font-size: 11px;
        line-height: 1.9;
    }

    /* ワークスsp版 */
    .works_title {
        font-size: 40px;
        margin: 0 auto;
        padding-top: 136px;
        padding-bottom: 0;
    }

    .works_container {
        display: block;
    }

    .pc_only {
        display: none;
    }

    .sp_only {
        display: block;
        padding: 40px 0;
    }

    .sp_only_text {
        font-size: 12px;
        line-height: 1.83;
    }

    /* ワークス　グリッド */
    .works_item {
        padding-bottom: 40px;
    }

    .works_item p {
        font-size: 12px;
        line-height: 2.16;
        padding-top: 10px;
    }

    .works_item p::before {
        width: 40px;
    }

    /* ワークスのボタン_sp版 */

    .sp_works_btn {
        display: block;
    }

    .sp_more_btn {
        display: block;
        text-align: center;
    }

    .sp_works_btn a {
        position: relative;
        margin: 0 auto;
        padding: 1.5em 0.75em;
        max-width: 130px;
        display: block;
        font-size: 8px;
        letter-spacing: 0.25em;
        transition: 0.3s;
        border: 0.3px solid #333;
        border-radius: 34px;
    }

    .sp_works_btn a::before {
        content: "";
        position: absolute;
        top: calc(50% - 0px);
        right: -2em;
        transform: translateY(calc(-50% - 2px)) rotate(30deg);
        width: 7px;
        height: 0.3px;
        background-color: #333;
        transition: 0.3s;
    }

    .sp_works_btn a::after {
        content: "";
        position: absolute;
        top: 50%;
        right: -2em;
        transform: translateY(-50%);
        width: 31px;
        height: 0.3px;
        background-color: #333;
        transition: 0.3s;
    }

    .sp_works_btn a:hover {
        text-decoration: none;
        color: #fff;
        background-color: #333;
    }

    .sp_works_btn a:hover::before,
    .sp_works_btn a:hover::after {
        right: -3em;
    }

    /* ワークス ボタン終了 */

    /* アバウト */
    .about {
        padding-bottom: 40px;
    }
    .about_title {
        padding: 112px 0 40px;
        font-size: 40px;
    }

    .about_wrap {
        display: block;
    }

    .about_illust {
        width: 65%;
        padding-right: 0;
        margin: 0 auto;
        padding-bottom: 36px;
    }

    .profile {
        width: 60%;
        margin: 0 auto;
    }

    .about_name {
        font-size: 18px;
        text-align: center;
        padding-bottom: 0;
    }

    .about_name::after {
        content: "Yuka";
        display: block;
        font-size: 11px;
        color: #666;
        padding: 12px 0 31px;
    }

    .pc_only_soft {
        display: none;
    }

    .profile1,
    .profile2,
    .soft,
    .sp_only_soft {
        font-size: 11px;
    }

    .profile1 {
        padding-bottom: 23px;
    }

    .profile2 {
        line-height: 1.81;
    }

    .soft {
        position: relative;
        text-align: center;
    }

    .soft::before,
    .soft::after {
        content: "";
        width: 13px;
        height: 1px;
        display: inline-block;
        background-color: #333;
        position: absolute;
        top: 50%;
    }

    .soft::before {
        left: calc(50% - 45px);
    }

    .soft::after {
        right: calc(50% - 45px);
    }

    .sp_only_soft {
        display: block;
        text-align: center;
        padding-top: 18px;
    }

    .sp_only_soft ul li {
        padding-bottom: 10px;
    }

    /* 波 */
    .custom-shape-divider-bottom-1678760183 svg {
        height: 150px;
    }

    /* コンタクト */
    .contact_title {
        margin: 0 auto;
        font-size: 40px;
        padding-bottom: 40px;
    }

    .contact_text1 {
        text-align: start;
        width: 84%;
        margin: 0 auto;
    }

    .contact_text1 {
        font-size: 13px;
        line-height: 1.61;
        padding-bottom: 32px;
        letter-spacing: normal;
    }

    /* 送信ボタン */
    input[type="submit"] {
        font-size: 12px;
        padding: 20px 72px;
    }
}
