@charset "utf-8";

/*==========================
common
==========================*/
:root {
    --primary-white: #fefefe;
    --primary-black: #2C2623;
    --primary-green: #E0F1F1;
    --primary-darkGreen: #3B726D;
    --primary-lightGray: #F5F5F5;
    --primary-darkGray: #787572;
    --contentWidth: 91.4%;
    --contentPadding: 6.4%;
}

html {
    font-size: 62.5%;
}

body {
    font-family:
        'Noto Sans JP',
        Arial,
        sans-serif;
    background-color: #fff;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

.section__topic {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary-darkGreen);
}

.section__topic span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-darkGray);
    line-height: 1;
    text-align: center;
    margin-top: 5px;
}

.btn {
    display: block;
    width: 300px;
    height: 50px;
    background-color: var(--primary-darkGreen);
    border-radius: 10px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 50px;
    color: var(--primary-white);
    text-align: center;
    position: relative;
    transition: 0.4s;
}

.btn::after {
    display: inline-block;
    content: "";
    width: 16px;
    height: 16px;
    background-image: url("../images/icon-arrow_W.png");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translate(-50%, -50%);
    transition: 0.4s;
}

.btn:hover {
    opacity: 0.5;
}

/* common pc */
@media screen and (min-width:769px) {
    .section__topic {
        font-size: 2.8rem;
    }

    .section__topic span {
        font-size: 2.4rem;
    }
}

/* pc 769px */

/*==========================
loading
==========================*/
#loading {
    width: 100%;
    height: 100vh;
    background-color: var(--primary-green);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
}

.loading__up {
    transform: translateY(-30px);
}

.loading__omoi,
.loading__katachi {
    opacity: 0;
    animation: fadeIn 4s forwards;
}

.loading__omoi {
    animation-delay: 0.5s;
}

.loading__katachi {
    animation-delay: 1.5s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*==========================
header
==========================*/
.header,
.nav__header {
    height: 80px;
    padding: 0 var(--contentPadding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__topic img,
.nav__topic img {
    display: block;
    width: 180px;
}

/* .nav初期表示 */
.nav {
    width: 100%;
    height: 100vh;
    background-color: rgba(224, 241, 241, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 500;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav__btn {
    display: block;
    width: 21px;
    cursor: pointer;
}

.nav__list {
    padding: 48px 9.6%;
}

.nav__item a {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #3B726D;
    border-bottom: 2px solid var(--primary-darkGreen);
    padding: 0 12px 12px;
    margin-top: 32px;
    position: relative;
    transition: 0.4s;
}

.nav__item a::after {
    content: "";
    display: block;
    width: 9px;
    height: 15px;
    background-image: url("../images/icon-arrow.png");
    background-size: contain;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-80%);
}

.nav__item a:hover {
    opacity: 0.5
}

/* .nav.active表示 */
.nav.active {
    transform: translateX(0);
}

.header__btn {
    display: block;
    width: 24px;
    height: 21px;
    cursor: pointer;
    z-index: 400;
}

/* header pc */
@media screen and (min-width: 769px) {
    .header {
        width: 100%;
        height: 100px;
        position: absolute;
        top: 0;
        left: 0;
    }

    .nav__header {
        height: 100px;
    }

    .header__topic img,
    .nav__topic img {
        width: 200px;
    }
}

/* pc 769px */

@media screen and (min-width:1025px) {
    .header {
        width: 100%;
        height: 120px;
    }

    .nav__header {
        display: none;
    }

    .header__topic img,
    .nav__topic img {
        width: 220px;
    }

    .nav {
        width: auto;
        height: auto;
        background-color: transparent;
        position: static;
        transform: none;
    }

    .nav__list {
        display: flex;
        gap: 32px;
        padding: 0;
    }

    .nav__item a {
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--primary-darkGreen);
        border-bottom: none;
        padding: 0;
        margin: 0;
    }

    .nav__item a::after {
        display: none;
    }

    .header__btn {
        display: none;
    }
}

/* pc 1025px */

/*==========================
article header
==========================*/
.article__header {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* mainCaption */
.mainCaption {
    width: 100%;
    background-color: rgba(254, 254, 254, 0.5);
    padding: 16px var(--contentPadding);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 200;
}

.mainCaption__topic {
    font-size: 2.4rem;
    font-weight: 700;
    border-bottom: 3px solid var(--primary-darkGreen);
    font-feature-settings: "palt";
    letter-spacing: 0.2em;
    margin-left: 10px;
}

.mainCaption__subtopic {
    display: block;
    margin-left: 7px;
}

.mainCaption__content {
    margin: 10px 0 0 18px;
}

.mainCaption__txt {
    display: block;
    font-size: 1.4rem;
    font-feature-settings: "palt";
    letter-spacing: 0.1em;
}

.mainCaption__txt:last-of-type {
    margin-top: 10px;
}

/* mainVisual slider */
.mainVisual__topImg {
    display: none;
}

.mainVisual__slider {
    overflow: hidden;
    margin: 0 auto;
}

.slider {
    display: flex;
    justify-content: flex-start;
    gap: 0;
    z-index: 100;
}

.slider__item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-top: 1px solid rgba(210, 210, 210, 0.6);
    box-shadow: 2px 2px 5px rgba(210, 210, 210, 0.2);
    transition: transform 0.3s ease;
}

.slider__item img:hover {
    transform: scale(1.2);
}

.mainVisual__img--sp {
    display: block;
    width: 100%;
}

.mainVisual__img--pc {
    display: none;
}

/* article__header pc */
@media screen and (min-width: 769px) {
    .article__header {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mainCaption {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 77px 0 0 0;
        padding: 0;
        position: static;
        top: auto;
        left: auto;
        transform: none;
    }

    .mainCaption__topic {
        font-size: 2.8rem;
    }

    .mainVisual {
        flex: 1.2;
        display: flex;
        flex-direction: column;
    }

    .mainVisual__topImg {
        display: block;
        height: 100px;
    }

    .mainVisual__slider,
    .mainVisual__img {
        width: 100%;
    }

    .mainVisual__img--pc {
        display: block;
        height: auto;
    }

    .mainVisual__img--sp {
        display: none;
    }
}

/* pc 769px */

@media screen and (min-width: 1025px) {
    .mainCaption__topic {
        font-size: 3.2rem;
    }

    .mainCaption__content {
        margin: 16px 0 0 18px;
    }

    .mainCaption__txt {
        font-size: 1.6rem;
        line-height: 1.7;
    }

    .mainCaption__txt:last-of-type {
        margin-top: 16px;
    }

    .mainVisual__topImg {
        display: block;
        height: 120px;
    }
}

/* pc 1025px */

/*==========================
service
==========================*/
.section--service {
    background-color: var(--primary-lightGray);
    padding: 64px var(--contentPadding);
}

.service__list {
    margin-top: 48px;
}

.service__item {
    background-color: var(--primary-white);
    border-radius: 20px;
    padding: 32px 24px;
    margin-top: 48px;
}

.service__name {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
}

.brSv {
    display: none;
}

.service__img {
    width: 82%;
    margin: 24px auto 0;
}

.service__txt {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-top: 24px;
    text-align: justify;
}


/* service pc */
@media screen and (min-width: 769px) {
    .section--service {
        padding: 96px 0;
    }

    .service__list {
        max-width: 1280px;
        margin: 64px auto 0;
        padding: 0 60px;
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .service__item {
        max-width: 373px;
        padding: 32px 16px;
        margin-top: 0;
    }

    .service__img {
        width: 100%;
        height: 90px;
    }

    .service__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    .service__txt {
        font-size: 1.4rem;
    }

    .brSv {
        display: block;
    }

}

/* pc 769px */

@media screen and (min-width: 1025px) {
    .brSv {
        display: none;
    }

    .service__item {
        padding: 48px 32px;
    }

    .service__img {
        width: 100%;
        height: auto;
        margin: 32px auto 0;
    }

    .service__img img {
        width: auto;
        height: auto;
        object-fit: fill;
    }

    .service__txt {
        font-size: 1.4rem;
        margin-top: 32px;
    }
}

/* pc 1025px */

/*==========================
work
==========================*/
.section--work {
    padding: 64px 0;
}

.work__list {
    margin-top: 48px;
}

.work__item {
    margin-top: 64px;
}

.work__item:first-of-type {
    margin-top: 48px;
}

.work__img img {
    width: 100%;
    transition: transform 0.3s ease;
}

.work__img img:hover {
    transform: scale(1.2);
}

.work__content {
    margin-top: 24px;
}

.work__name {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
}

.work__client {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
}

.work__app {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-darkGray);
    text-align: center;
}

.btn--work {
    margin: 60px auto 0;
}

/* work pc */
@media screen and (min-width: 769px) {
    .section--work {
        padding: 96px 0;
    }

    .work__list {
        max-width: 1280px;
        margin: 64px auto 0;
        padding: 0 60px;
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .work__item {
        max-width: 373px;
        margin-top: 0;
    }

    .work__item:first-of-type {
        margin-top: 0px;
    }

    .work__img {
        border-radius: 20px;
        overflow: hidden;
    }

    .work__name {
        font-size: 1.6rem;
    }

    .work__client {
        font-size: 1.4rem;
    }

    .work__app {
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--primary-darkGray);
        text-align: center;
    }

    .btn--work {
        margin: 48px auto 0;
    }
}

/* pc 769px */

@media screen and (min-width: 1025px) {
    .work__name {
        font-size: 1.8rem;
    }

    .work__client {
        font-size: 1.6rem;
    }
}

/* pc 1025px */

/*==========================
profile
==========================*/
.section--profile {
    padding: 64px var(--contentPadding);
    background-color: var(--primary-green);
}

.profile__photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 48px auto 0;
    box-shadow: inset 10px 10px 30px rgba(0, 0, 0, 0.8)
}

.profile__name {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-top: 24px;
}

.profile__slash {
    display: none;
}

.profile__label {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-darkGray);
    text-align: center;
}

.profile__content>p {
    font-size: 1.4rem;
    line-height: 1.7;
    font-feature-settings: "palt";
    letter-spacing: 0.1em;
    text-align: justify;
    padding: 0 24px;
}

.profile__txt {
    margin-top: 24px;
}

.pPr {
    margin-top: 8px;
}

/* skill */
.skill,
.qualification {
    background-color: var(--primary-white);
    border-radius: 20px;
    padding: 32px 0;
    margin-top: 48px;
}

.skill__topic,
.qualification__topic {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.skill__category {
    font-size: 1.6rem;
    line-height: 1;
    text-align: center;
    margin-top: 32px;
}

.skill__list {
    width: 200px;
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 10px 0;
    margin: 16px auto;
}

.skill__app,
.skill__star {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
}

.skill__star {
    text-align: right;
}

.qualification__list {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    margin: 32px auto 0;
}

.qualification__item {
    font-size: 1.4rem;
    line-height: 1;
    text-align: center;
    font-feature-settings: "palt";
    letter-spacing: 0.1em;
}

.qualification__item:last-of-type {
    margin-top: 10px;
}

/* profile pc */
@media screen and (min-width: 769px) {
    .skill__group {
        display: flex;
        justify-content: center;
        gap: 32px;
    }
}

/* pc 769px */

@media screen and (min-width: 1025px) {
    .section--profile {
        padding: 96px 0;
    }

    .profile {
        max-width: 1280px;
        margin: 64px auto 0;
        padding: 0 60px 0;
    }

    .profile__group {
        max-width: 904px;
        margin: 0 auto;
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        align-items: center;
    }

    .profile__photo {
        width: 400px;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 0;
    }

    .profile__photo img {
        display: block;
        max-width: 100%;
        max-height: 100%;
        object-fit: cover;
    }

    .profile__content {
        margin-right: 48px;
    }

    .profile__content>p {
        padding: 0;
    }

    .profile__detail {
        display: flex;
        align-items: center;
    }

    .profile__name {
        margin: 0 8px 0 0;
    }

    .profile__slash {
        display: block;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary-darkGray);
        margin: 0 5px;
    }

    .profile__label {
        margin: 0 8px;
    }

    .skillQualification {
        max-width: 1280px;
        margin: 48px auto 0;
        display: flex;
        justify-content: space-between;
        gap: 32px;
    }

    .skill,
    .qualification {
        padding: 32px 0;
        margin-top: 0px;
    }

    .skill {
        flex: 1.5;
    }

    .qualification {
        flex: 1;
    }

    .skill__group {
        gap: 36px;
    }

    .skill__list {
        width: 235px;
        display: grid;
        grid-template-columns: 1.8fr 1fr;
        gap: 10px 0;
        margin: 16px auto;
    }

    .skill__app,
    .skill__star {
        font-size: 1.6rem;
    }

    .qualification__group {
        display: flex;
        align-items: flex-start;
        width: 100%;
        height: 100%;
    }

    .qualification__list {
        margin-top: 56px;
    }

    .qualification__item {
        font-size: 1.6rem;
        line-height: 1;
        text-align: left;
    }

    .qualification__item:last-of-type {
        margin-top: 10px;
    }
}

/* pc 1025px */

/*==========================
footer
==========================*/
.footer {
    padding: 64px 12.8% 32px;
}

.footer__topic {
    width: 220px;
    margin: 0 auto;
}

.footerNav__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
}

.footerNav__item a {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-darkGreen);
    line-height: 2;
}

.sns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-top: 32px;
}

.sns__item {
    width: 24px;
    height: 24px;
}

.copy {
    color: var(--primary-darkGray);
    font-size: 1.3rem;
    margin-top: 32px;
    text-align: center;
}

/* footer pc */
@media screen and (min-width: 1025px) {
    .footer {
        max-width: 1280px;
        margin: 0 auto;
        padding: 64px 80px 32px;
    }

    .footerNavSns {
        display: flex;
        justify-content: space-between;
    }

    .footer__topic {
        margin: 0;
    }

    .footerNav__list {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        margin-top: 0;
    }

    .footerNav__item a {
        font-size: 1.6rem;
        color: var(--primary-darkGreen);
        line-height: 1.5;
        margin-right: 32px;
    }

    .footerNav__item:last-child a {
        margin-right: 0px;
    }

    .sns {
        justify-content: flex-end;
        margin-top: 32px;
    }

    .copy {
        margin-top: 32px;
    }
}

/* pc 769px */

/*==========================
scroll
==========================*/
.topBtn {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: var(--primary-darkGreen);
    border-radius: 50%;
    box-shadow: 2px 2px 4px 2px rgba(210, 230, 228, 1);
    color: var(--primary-white);
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 1.4%;
    bottom: 1.4%;
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.topBtn.show {
    opacity: 1;
}

/*==========================
fadeIn
==========================*/

.fadeIn {
    transform: translate(0, 50px);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.fadeIn.animated {
    transform: translate(0, 0);
    opacity: 1;
}

/* fadeIn pc */
@media screen and (min-width: 769px) {

    .fadeIn--delay1 {
        transition-delay: 0.2s;
    }

    .fadeIn--delay2 {
        transition-delay: 0.5s;
    }

    .fadeIn--delay3 {
        transition-delay: 0.8s;
    }
}

/* pc 769px */