@charset "UTF-8";

html {
    scroll-behavior: smooth;
}

body {
    color: #777777;
    font-family: "Noto Serif", serif;
    letter-spacing: 0.1em;
    line-height: 1.7;
}

a {
    color: #777777;
    text-decoration: none;
}

img {
    width: 100%;
    vertical-align: bottom;
}

li {
    list-style: none;
}

/*-------------------------------------------
部品
-------------------------------------------*/

/* コンテナ 
---------------------------------- */
.container {
    max-width: 832px;
    margin: 0 auto;
    padding: 0 16px;
}

/* セクションタイトル 
---------------------------------- */
.section-title {
    width: calc(50vw - 400px);
    margin-bottom: 116px;
    font-size: 2.375rem;
    text-align: right;
}

.section-title span {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5em;
}

/* セクションタイトル（下層ページのアニメーション） */
#profile-page .section-title,
#works-page01 .section-title,
#works-page02 .section-title {
    animation: fadeIn-left 1s ease normal backwards;
}

/* サブタイトルbar 
---------------------------------- */
#service .section-title::after {
    display: block;
    position: absolute;
    left: 0;
    bottom: -130px;
    width: calc(50vw - 416px);
    height: 1px;
    background-color: #777777;
    content: "";
}

#profile-page::after {
    display: block;
    position: absolute;
    left: 0;
    width: calc(50vw - 450px);
    height: 1px;
    background-color: #777777;
    content: "";
    animation: fadeIn-left 1.5s ease 1s normal backwards;
}

#profile-page::after {
    top: 720px;
}

.works-mv::after {
    display: block;
    position: absolute;
    bottom: -114px;
    left: 0;
    width: calc(50vw - 420px);
    height: 1px;
    background-color: #777777;
    content: "";
    animation: fadeIn-left 1s ease normal backwards;
}

/* ボタン 
---------------------------------- */
.link-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 210px;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.link-btn:hover {
    color: #B5B5B5;
}

.link-btn::after {
    display: inline-block;
    position: absolute;
    top: 24px;
    left: 110px;
    transform: skew(45deg);
    width: 60px;
    height: 8px;
    border-bottom: solid 1px;
    border-right: solid 1px;
    content: "";
    transition: all 0.3s;
}

.link-btn:hover::after {
    color: #777777;
    transform: skew(45deg) translateX(10px);
}

.circle {
    display: block;
    width: 60px;
    height: 60px;
    border: 1px solid #777777;
    border-radius: 100%;
}

/* 下層ページのボタン */
.profile-page-contents .link-btn,
.works-detail .link-btn {
    width: 160px;
    margin: 0 auto;
}

.profile-page-contents .link-btn::after,
.works-detail .link-btn::after {
    left: 60px;
}

/* アニメーション共通 
---------------------------------- */
.animate {
    opacity: 0;
    transition: all 1s;
}

.animate.show {
    opacity: 1;
    transform: translate(0, 0);
}

/* フェードイン */
.fadein-left {
    transform: translateX(-10px);
}

.fadein-up {
    transform: translateY(20px);
}

/* スラインドイン */
.slidein-up {
    transform: translateY(30px);
}

/* 遅延をつけるクラス */
.delay-0 {
    transition-delay: 0s;
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* レスポンシブ --------------------------- */
@media screen and (min-width:800px) and (max-width:1240px) {

    /* セクションタイトル 
    ---------------------------------- */
    .section-title {
        width: 50%;
        padding: 0 16px;
        text-align: left;
    }

    /* サブタイトルbar 
    ---------------------------------- */
    #service .section-title::after {
        width: calc(50vw - 340px);
    }
}

@media (max-width: 799px) {

    /* セクションタイトル 
    ---------------------------------- */
    .section-title {
        width: 100%;
        padding: 0 16px;
        margin-bottom: 80px;
        font-size: 2rem;
        text-align: center;
    }

    .section-title span {
        font-size: 0.75rem;
    }

    /* サブタイトルbar 
    ---------------------------------- */
    #service .section-title::after {
        bottom: -94px;
        width: calc(50vw - 120px);
    }

    #profile-page::after {
        width: calc(50vw - 100px);
        top: 924px;
    }

    /* ボタン 
    ---------------------------------- */
    .link-btn {
        margin: 0 auto;
    }
}

/*-------------------------------------------
header
-------------------------------------------*/
header {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
    height: 100vh;
    padding-top: 60px;
    padding-right: 40px;
}

.hamburger-menu li {
    transition: all 0.3s;
}

.hamburger-menu li:hover {
    transform: scale(1.1);
}

.hamburger-menu li:not(.hamburger-menu li:last-child) {
    margin-bottom: 20px;
}

.hamburger-menu li::before {
    padding-right: 16px;
    font-size: 1.125rem;
    line-height: 1;
    content: "－";
    transition: all 0.3s;
}

.hamburger-menu li:hover::before {
    transform: translateX(-10px);
}

.hamburger-menu li a {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1;
}

.toggle_btn {
    display: none;
}

.mask {
    position: absolute;
    right: -100%;
    visibility: hidden;
    transition: all 0.6s;
}

/* レスポンシブ --------------------------- */
@media (max-width: 1119px) {
    header {
        width: 100%;
        height: 72px;
        padding: 0 16px;
    }

    .hamburger-menu {
        position: absolute;
        top: 153%;
        right: -100%;
        opacity: 0;
        z-index: 50;
        transform: translateX(50%);
        transition: all 0.6s;
    }

    /* toggle_btn */
    .toggle_btn {
        display: block;
        position: fixed;
        top: 32px;
        right: 16px;
        z-index: 10;
        width: 40px;
        height: 10px;
        cursor: pointer;
        transition: all 0.6s;
    }

    .toggle_btn span {
        display: block;
        position: absolute;
        width: 40px;
        height: 2px;
        background-color: #777777;
        transition: all 0.6s;
    }

    .toggle_btn span:last-child {
        top: 12px;
    }

    /* open */
    .open .hamburger-menu {
        right: 50%;
        opacity: 1;
    }

    .open .hamburger-menu li a,
    .hamburger-menu li::before {
        color: #fff;
    }

    .open .toggle_btn {
        top: 36px;
        z-index: 50;
    }

    .open .toggle_btn span {
        background-color: #fff;
    }

    .open .toggle_btn span:first-child {
        transform: rotate(45deg);
    }

    .open .toggle_btn span:last-child {
        top: 0;
        transform: rotate(-45deg);
    }

    .open .mask {
        position: fixed;
        top: 0;
        right: 0;
        visibility: visible;
        opacity: 0.9;
        width: 100%;
        height: 100vh;
        background-color: #777777;
    }
}


/*-------------------------------------------
mainvisual
-------------------------------------------*/
#mainvisual {
    position: relative;
}

#mainvisual h1 {
    padding: 80px 60px 40px;
    font-size: 3.125rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    animation: fadeIn-left 1.5s ease 1s normal backwards;
}

@keyframes fadeIn-left {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#mainvisual h1 span {
    font-size: 5rem;
}

#mainvisual h1 span:nth-of-type(2) {
    margin-left: 80px;
}

#mainvisual img {
    display: block;
    width: 68vw;
    height: calc(100vh - 300px);
    margin-left: auto;
    border-radius: 200px 0 0 0;
    animation: fadeIn 2s ease 1.5s normal backwards;
    object-fit: cover;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.scroll {
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 9%;
    text-align: center;
}

.scroll p {
    font-size: 1.5rem;
}

.scroll p span {
    font-size: 1.75rem;
}

.scroll p::after {
    display: block;
    width: 1px;
    height: 200px;
    background-color: #777777;
    margin: 24px auto 0;
    content: "";
    transition: all 0.5s;
    animation: scroll 2.0s ease-in-out infinite;
}

@keyframes scroll {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }

    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }

    51% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }

    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}

/* レスポンシブ --------------------------- */
@media screen and (min-width:800px) and (max-width:1240px) {
    #mainvisual img {
        height: 66vh;
    }

    .scroll {
        left: 3%;
    }
}

@media (max-width: 799px) {
    #mainvisual {
        text-align: center;
    }

    #mainvisual img {
        width: 100%;
        height: 66vh;
        padding-left: 16px;
    }

    #mainvisual h1 {
        display: inline-block;
        padding: 80px 16px 16px;
        font-size: 1.5rem;
    }

    #mainvisual h1 span {
        font-size: 2.625rem;
    }

    #mainvisual h1 span:nth-of-type(2) {
        margin-left: 0;
    }

    .scroll {
        left: 50%;
        transform: translateX(-50%);
    }

    .scroll p {
        font-size: 1.25rem;
    }

    .scroll p::after {
        height: 140px;
    }

    .scroll p span {
        font-size: 1.5rem;
    }
}


/*-------------------------------------------
profile
-------------------------------------------*/
#profile {
    padding: 120px 0;
}

#profile .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.profile-img01 {
    width: 280px;
}

.profile-inner {
    width: 57%;
}

.profile-inner h3 {
    position: relative;
    margin-bottom: 32px;
    font-size: 1rem;
    font-weight: 400;
}

.profile-inner h3 span {
    padding-left: 24px;
    font-size: 1.5rem;
}

.profile-inner h3::before {
    position: absolute;
    bottom: 0;
    right: 114px;
    transform: rotate(40deg);
    width: 26px;
    height: 62px;
    background-image: url(../img/profile/profile-flower.png);
    background-size: contain;
    content: "";
}

.profile-text {
    margin-bottom: 40px;
}


/*-------------------------------------------
profile-page
-------------------------------------------*/
#profile-page,
#works-page01,
#works-page02 {
    position: relative;
    padding: 120px 0;
}

/* プロフィール詳細 */
.profile-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 613px;
    margin: 0 auto 120px;
    animation: fadeIn 2s ease 1.5s normal backwards;
}

.profile-img02 img {
    width: 160px;
    height: 213px;
    border-radius: 20px;
}

.profile-detail-text {
    width: 62%;
}

.profile-detail-text h3 {
    position: relative;
    margin-bottom: 40px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
}

.profile-detail-text h3 span {
    font-size: 1.5rem;
    padding-left: 25px;
}

.profile-detail-text h3::before {
    position: absolute;
    right: 40px;
    bottom: -20px;
    transform: rotate(40deg);
    width: 26px;
    height: 62px;
    background-image: url(../img/profile/profile-flower.png);
    background-size: contain;
    content: "";
}

.profile-detail-text dl {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.profile-detail-text dl dt {
    width: 30%;
}

.profile-detail-text dl dd {
    width: 70%;
    padding-bottom: 12px;
}

.profile-detail-text dl dd:nth-of-type(5) {
    padding: 0;
}

/* わたしの強み */
.strengths {
    margin-bottom: 120px;
}

.strengths h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 120px;
    position: relative;
    animation: fadeIn-left 1.5s ease 1s normal backwards;
}

.strengths ul {
    max-width: 680px;
    margin: 0 auto;
}

.strengths ul li:nth-child(1) {
    animation: fadeIn 2s ease 1.5s normal backwards;
}

.strengths ul li:not(.strengths ul li:last-child) {
    margin-bottom: 80px;
}

.strengths ul li h4 {
    position: relative;
    margin-bottom: 24px;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 2;
}

.under-line {
    display: inline-block;
    background: linear-gradient(transparent 50%, #F0F0F0 50%);
}

.strengths ul li h4::before {
    display: block;
    position: absolute;
    top: -16px;
    left: -50px;
    width: 46px;
    height: 75px;
    transform: rotate(-22deg);
    background-size: contain;
    content: "";
}

.strengths ul li:nth-child(1) h4::before {
    background-image: url(../img/profile/profile-feature-flower01.png);
}

.strengths ul li:nth-child(2) h4::before {
    background-image: url(../img/profile/profile-feature-flower02.png);
}

.strengths ul li:nth-child(3) h4::before {
    background-image: url(../img/profile/profile-feature-flower03.png);
}

.strengths ul li p {
    line-height: 2;
}

/* ごあいさつ */
.message {
    padding: 60px 90px 80px;
    background-color: #F0F0F0;
    border-radius: 50px;
    margin-bottom: 120px;
}

.message h3 {
    position: relative;
    font-size: 1.25rem;
    font-weight: 500;
    text-align: center;
    line-height: 2;
    margin-bottom: 50px;
}

.message h3::before {
    content: "";
    display: block;
    position: absolute;
    left: 210px;
    transform: rotate(-12deg);
    width: 20px;
    height: 47px;
    background-image: url(../img/profile/profile-message-flower.png);
    background-size: contain;
}

.message h3::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 210px;
    transform: rotate(-12deg);
    width: 20px;
    height: 47px;
    background-image: url(../img/profile/profile-message-flower.png);
    background-size: contain;
}

.message p {
    line-height: 2;
}

.message p:nth-of-type(2) {
    padding: 40px 0;
}

/* レスポンシブ --------------------------- */
@media screen and (min-width:800px) and (max-width:829px) {
    .strengths ul li h4::before {
        top: 0;
        left: -30px;
        width: 28px;
        height: 46px;
    }
}

@media (max-width: 799px) {
    #profile {
        text-align: center;
        margin-top: 100px;
    }

    #profile .container {
        flex-direction: column;
        align-items: center;
        gap: 51px;
    }

    .profile-inner {
        max-width: 540px;
        width: 100%;
    }

    .profile-inner h3 {
        font-size: 0.875rem;
        margin-bottom: 20px;
    }

    .profile-inner h3 span {
        padding-left: 16px;
    }

    .profile-inner h3::before {
        display: none;
    }

    /*-------------------------------------------
    profile-page
    -------------------------------------------*/
    #profile-page,
    #works-page01,
    #works-page02 {
        padding: 100px 0 200px;
    }

    /* プロフィール詳細 */
    .profile-detail {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 120px;
    }

    .profile-img02 {
        position: relative;
    }

    .profile-img02::after {
        display: block;
        position: absolute;
        right: -20px;
        bottom: -14px;
        transform: rotate(40deg);
        width: 34px;
        height: 82px;
        background-image: url(../img/profile/profile-flower.png);
        background-size: contain;
        content: "";
    }

    .profile-text {
        margin-bottom: 24px;
        text-align: left;
    }

    .profile-detail-text {
        max-width: 373px;
        width: 100%;
        margin: 0 auto;
    }

    .profile-detail-text h3 {
        text-align: center;
    }

    .profile-detail-text h3::before {
        display: none;
    }

    /* わたしの強み */
    .strengths {
        text-align: center;
        margin-bottom: 80px;
    }

    .strengths h3 {
        margin-bottom: 80px;
    }

    .strengths ul li:not(.strengths ul li:last-child) {
        margin-bottom: 60px;
    }

    .strengths ul li h4 {
        font-size: 1.125rem;
    }

    .strengths ul li p {
        text-align: left;
    }

    .strengths ul li h4::before {
        top: 0;
        left: -30px;
        width: 28px;
        height: 46px;
    }

    /* ごあいさつ */
    .message {
        margin-bottom: 60px;
        padding: 40px 10% 60px;
        text-align: center;
    }

    .message h3 {
        display: inline-block;
    }

    .message h3::before {
        left: -40px;
        width: 18px;
        height: 42px;
    }

    .message h3::after {
        right: -40px;
        width: 18px;
        height: 42px;
    }

    .message p {
        line-height: 2;
        text-align: left;
    }
}


/*-------------------------------------------
service
-------------------------------------------*/
#service {
    position: relative;
    padding: 108px 0 120px;
}

#service .section-title {
    position: relative;
}

/* サービス */
.service-content {
    max-width: 640px;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 54px;
}

.service-content h4 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 32px;
}

.service-content p:not(#service p:nth-of-type(3)) {
    margin-bottom: 28px;
}

/* スキル */
.skills {
    width: 100%;
    margin-top: 80px;
    background-image: url(../img/service/skills-pc.jpg);
    background-size: cover;
}

.skills .skills-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    padding: 68px 16px;
}

.skills-list {
    max-width: 240px;
    width: 100%;
    height: 264px;
    padding: 20px 16px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    text-align: center;
}

.skills-list h3 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1;
}

.skills-list img {
    width: 30px;
    padding: 20px 0 40px;
}

.skills-list ul li:nth-child(2) {
    padding: 16px 0;
}

.skills-list ul li {
    font-size: 0.875rem;
    line-height: 1;
}

.skills-list .skills-icon {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* レスポンシブ --------------------------- */
@media (max-width: 799px) {
    #service {
        padding: 70px 0 90px;
        text-align: center;
    }

    /* サービス */
    .service-name {
        margin-bottom: 60px;
    }

    .service-content h4 {
        margin-bottom: 60px;
    }

    .service-content p {
        text-align: left;
    }

    /* スキル */
    .skills {
        background-image: url(../img/service/skills-sp.jpg);
        margin-top: 60px;
    }

    .skills .skills-inner {
        flex-direction: column;
        gap: 40px;
        padding: 60px 16px;
    }
}


/*-------------------------------------------
works
-------------------------------------------*/
#works {
    position: relative;
    padding: 106px 0 340px;
}

#works::before {
    display: block;
    position: absolute;
    top: 250px;
    z-index: -1;
    width: 70vw;
    height: 684px;
    border-radius: 0 100px 100px 0;
    background-color: #F0F0F0;
    content: "";
}

.works-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 60px;
}

.works-list {
    max-width: 370px;
    width: 100%;
    box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.25);
}

.works-list a {
    display: block;
}

/* ホバー */
.works-list-link.bg {
    position: relative;
    overflow: hidden;
}

.works-list-link.bg::before,
.works-list-link.bg::after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    margin: auto;
    content: "";
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
}

.works-list-link.bg::before {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
}

.works-list-link.bg::after {
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0;
    right: 0;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 400;
    text-align: center;
    content: "VIEW MORE";
}

.works-list-link.bg:hover::before,
.works-list-link.bg:hover::after {
    opacity: 1;
}

/* works-list内 */
.works-list img {
    height: 240px;
}

.works-list-title {
    padding: 24px;
    background-color: #fff;
}

.works-list-title h3 {
    margin-bottom: 24px;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1;
}

.works-list-title p {
    color: #AAAAAA;
    font-size: 0.75rem;
    line-height: 1;
}

#works .link-btn {
    width: 280px;
    margin: 0 auto;
    padding-top: 120px;
    font-size: 1.125rem;
    letter-spacing: 0.2em;
}

#works .link-btn::after {
    top: 140px;
    left: 180px;
}

#works .link-btn:hover {
    color: unset;
}

#works .link-btn:hover::after {
    transform: skew(45deg) translateX(0px);
}

/*-------------------------------------------
works-page
-------------------------------------------*/
.works-mv {
    position: relative;
    margin-bottom: 100px;
    padding: 80px 0 40px;
    background-color: #F0F0F0;
}

.works-mv .container {
    max-width: 719px;
}

.works-mv .link-btn {
    margin-top: 40px;
    margin-left: auto;
}

.works-detail h3 {
    margin-bottom: 40px;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
    animation: fadeIn-left 1s ease normal backwards;
}

.works-detail ul {
    padding: 0 24px;
    margin-bottom: 80px;
}

.works-detail ul li {
    display: flex;
    align-items: center;
    max-width: 752px;
    padding: 40px 0;
}

.works-detail ul li:nth-child(1) {
    animation: fadeIn 1s ease normal backwards;
}

.works-detail ul li h4 {
    width: 20%;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 2;
}

.works-detail ul li p {
    width: 80%;
    padding-left: 30px;
    border-left: 1px solid #D9D9D9;
    line-height: 2;
}

.works-detail .works-list {
    margin: 0 auto 80px;
}

.works-detail .works-list-link.bg::before,
.works-detail .works-list-link.bg::after {
    opacity: 1;
}

.works-detail .works-list-link.bg::after {
    font-size: 2.25rem;
    letter-spacing: 0.125em;
    transition: all 0.3s;
    content: "NEXT ⇀";
}

/* ホバー */
.works-detail .works-list-link.bg:hover::before,
.works-detail .works-list-link.bg:hover::after {
    transform: scale(1.1);
}

/* レスポンシブ --------------------------- */
@media (max-width: 799px) {
    #works {
        padding: 97px 0 210px;
        text-align: center;
    }

    #works::before {
        top: 216px;
        width: 94vw;
        height: 74%;
        border-radius: 0 50px 50px 0;
    }

    .works-inner {
        flex-direction: column;
        gap: 60px;
    }

    .works-list-title {
        padding: 24px 16px;
        text-align: left;
    }

    #works .link-btn {
        padding-top: 100px;
    }

    #works .link-btn::after {
        top: 124px;
    }

    /*-------------------------------------------
    works-page
    -------------------------------------------*/
    .works-detail h3 {
        text-align: center;
        margin-bottom: 60px;
    }

    .works-detail ul {
        padding: 0;
    }

    .works-detail ul li {
        flex-direction: column;
        padding: 20px 0 0;
    }

    .works-detail ul li h4,
    .works-detail ul li p {
        width: 100%;
    }

    .works-detail ul li h4 {
        padding-bottom: 16px;
    }

    .works-detail ul li p {
        padding: 16px;
        border-left: 0;
        border-top: 2px solid #D9D9D9;
    }
}


/*-------------------------------------------
footer
-------------------------------------------*/
#contact {
    position: relative;
    padding-top: 260px;
    background-image: url(../img/footer/footer-pc.jpg);
    background-size: cover;
    background-position: center top;
    text-align: center;
}

.footer-scroll {
    top: -10%;
    bottom: unset;
    left: 9%;
}

.footer-scroll p::before {
    display: block;
    width: 1px;
    height: 200px;
    margin: 24px auto 0;
    background-color: #777777;
    content: "";
    transition: all 0.5s;
    animation: scroll 2.0s ease-in-out infinite;
}

.footer-scroll p::after {
    display: none;
}

/* footer-top */
.wpcf7-form {
    padding-bottom: 120px;
}

.footer-top .section-title {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
}

.footer-top h2+p {
    font-size: 1.125rem;
    text-align: center;
}

.footer-top dl {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 0;
}

.footer-top dl dt {
    margin-bottom: 8px;
    font-weight: 500;
    text-align: left;
    line-height: 1;
}

.footer-top dl dd {
    margin-bottom: 24px;
}

/* フォーム内テキストカラー */
.wpcf7-form-control::placeholder {
    color: rgba(0, 0, 0, 0.2);
}

.footer-top dd input,
.footer-top dd textarea {
    width: 100%;
    padding: 8px 16px;
    border-radius: 30px;
    box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.25);
    background-color: #fff;
}

.footer-top dd textarea {
    height: 160px;
}


/* 送信ボタン */
.send-btn {
    display: inline-block;
    position: relative;
    max-width: 320px;
    width: 100%;
    text-align: center;
}

.send-btn input {
    width: 100%;
    padding: 16px 0;
    border: 1px solid #777777;
    border-radius: 30px;
    box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.25);
    background-color: #fff;
    color: #777777;
    font-size: 1.125rem;
    text-align: center;
    line-height: 1;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.3s;
}

.send-btn input:hover {
    transform: scale(1.1);
}

.send-btn::after {
    position: absolute;
    top: 50%;
    right: 10%;
    width: 16px;
    height: 4px;
    transform: skew(45deg);
    border-right: solid 1px;
    border-bottom: solid 1px;
    content: '';
    transition: all 0.3s;
}

.send-btn:hover::after {
    transform: skew(45deg) translateX(10px);
}

/* 送信ボタン押下後のメッセージ */
.wpcf7-not-valid-tip {
    margin-top: 8px;
    text-align: left;
}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    margin: 24px 0 0 0;
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.2);
}

.wpcf7 form.sent .wpcf7-response-output {
    color: #fff;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    color: #dc3232;
}


/* ページトップボタン */
.page-top {
    position: fixed;
    right: 60px;
    bottom: 100px;
    /* visibility: hidden; */
    opacity: 0;
    z-index: 10;
    cursor: pointer;
    transition: .2s;
}

.page-top span:before {
    display: block;
    position: absolute;
    top: -36px;
    left: 12px;
    transform: rotate(-45deg);
    width: 14px;
    height: 14px;
    border: 1px solid #777777;
    border-width: 1px 1px 0px 0px;
    content: '';
}

.page-top span:after {
    position: absolute;
    top: -64px;
    left: -10px;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    border: 1px solid #777777;
    content: "";
}

/* 上に上がる */
.page-top.UpMove {
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 下に下がる */
.page-top.DownMove {
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 1;
        transform: translateY(100px);
    }
}

@keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(100px);
    }
}

/* footer-bottom */
.footer-bottom {
    padding: 22px 40px;
    background-color: rgba(255, 255, 255, 0.6);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.footer-bottom ul {
    display: flex;
    gap: 34px;
}

.footer-bottom ul li:nth-child(2)::before,
.footer-bottom ul li:nth-child(2)::after {
    content: "/";
}

.footer-bottom ul li:nth-child(2)::before {
    margin-right: 34px;
}

.footer-bottom ul li:nth-child(2)::after {
    margin-left: 34px;
}

.footer-bottom ul li a {
    transition: all 0.3s;
}

.footer-bottom ul li a:hover {
    transform: scale(1.1);
    color: #B5B5B5;
}

/* レスポンシブ --------------------------- */
@media (max-width: 799px) {
    #contact {
        background-image: url(../img/footer/footer-sp.jpg);
        padding-top: 226px;
    }

    .footer-scroll {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-scroll p::before {
        height: 140px;
    }

    /* footer-top */
    .footer-top p {
        font-size: 1rem;
    }

    /* ページトップボタン */
    .page-top {
        right: 20px;
        bottom: 120px;
        font-size: 0.875rem;
    }

    .page-top span:before {
        top: -27px;
        width: 8px;
        height: 8px;
    }

    .page-top span:after {
        top: -44px;
        left: -4px;
        width: 40px;
        height: 40px;
    }

    /* footer-bottom */
    .footer-bottom .container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer-bottom ul {
        gap: 14px;
    }

    .footer-bottom ul li a {
        font-size: 0.875rem;
    }

    .footer-bottom ul li:nth-child(2)::before {
        margin-right: 14px;
    }

    .footer-bottom ul li:nth-child(2)::after {
        margin-left: 14px;
    }
}