@charset "UTF-8";

/*------------------------------------
ベース共通設定
-------------------------------------*/

html {
/*    font-size: .78125vw;*/
    font-size: 62.5%;  /*1rem = 10px */
    scroll-behavior: smooth;

}

.fv { visibility: hidden; }
.fv.is-ready { visibility: visible; }

body {
    color: #1e1e1e;
    font-family:
        "Yu Gothic",
        "Yu Gothic UI",
        "Helvetica Neue",
        "Segoe UI",
        "Hiragino Sans",
        "Hiragino Kaku Gothic ProN",
        "Noto Sans JP",
        sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.6;
    position: relative;
    letter-spacing: 0.08em;
    background: #faf9f5;
    overflow-x: hidden;
}

body.home::before {
    content: "";
    width: 100%;
    height: 100vh;
    background: url(assets/images/BG_fix.jpg) center center no-repeat;
    background-size: cover;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -5;
}

/*
body::after {
    content: "";
    width: 100%;
    height: 100vh;
    background: rgba(253, 253, 251, 0.95);
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -4;
}
*/

a,img{
    transition: 0.2s;
}

a{
    color: #1e1e1e;
}

div.inner{
    width: 83%;
    margin: 0 auto;
}

.sub_ttl{
    font-size: 1.2rem;
    display: inline-block;
    margin-top: 5rem;
}

.main_ttl{
    font-family: ten-mincho-text, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 3.2rem;
}

.sp{
    display: none;
}

.page .page-fv,
.error404 .page-fv{
    background: url(assets/images/page_fv_bg.png) center bottom no-repeat;
    background-size: cover;
}


/*------------------------------------
ヘッダー
-------------------------------------*/
.sp_nav,.sp_menu_bar{
    display: none;
}

header {
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 1000;
    height: 7rem;
    background: rgba(250, 249, 245, 0.9);
    font-weight: 500;
    display: flex;
    align-content: center;
    align-items: center;
}

header.fixed {
    position: fixed;
    top: 0;
    left: 0;
}

header .inner{
    width: 100%;
    padding-left: 2.5%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    z-index: 10;
    
    
}

.hd_logo {
    width: 25%;
    max-width: 225px;
    display: flex;
    align-items: center;
}

nav.hd_nav {
    width: 75%;
    max-width: 590px;
}

.hd_linkList {
    display: flex;
    justify-content: space-between;
    height: 100%;
    position: relative;
}

ul.hd_linkList a {
    color: #727171;
    display: inline-flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

li.hd_linkItem:nth-child(2) li.hd_c_linkItem {
    width: 50%;
}

li.hd_linkItem_line > a span {
    display: inline-block;
    padding-top: 5px;
    padding-bottom: 5px;
    position: relative;
}

li.hd_linkItem_line > a span::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #a1034d;
    transition: 0.2s;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(0,1);
    transform-origin: center top;
}

li.hd_linkItem_line:hover a.hd_link span::after {
    transform: scale(1,1);
}

li.hd_linkItem_bg{
    align-items: center;
    display: flex;
}

li.hd_linkItem_bg a {
    background: rgba(161,3,77,1.0);
    padding: 2.5%;
    display: flex;
    min-width: 142px;
    text-align: center;
    height: 4rem;
    color: #fff;
    align-items: center;
}

li.hd_linkItem_bg a:hover {
    background: rgba(161,3,77,0.8);
    transition: 0.2s;
}



/*------------------------------------
共通：内部・外部リンクボタン
-------------------------------------*/
p.btn_more {
    display: flex;
    width: 100%;
    margin-top: 4rem;
    position: relative;
}

p.btn_more a span{
    display: inline-block;
    width: 7.4rem;
    height: 7.4rem;
    border-radius: 50%;
    background: #e7e3d1;
    position: absolute;
    top: -7.4px;
    right: 0;
    transition: 0.1s;
}

p.btn_more a{
    display: inline-block;
    text-align: right;
    padding-right: 13.5rem;
    color: #1e1e1e;
    font-size: 1.8rem;
    transition: 0.1s;
    text-decoration: none;
    position: relative;
}


p.btn_more a::before{
    content: "";
    display: inline-block;
    width: 122px;
    height: 1px;
    background: #1e1e1e;
    transition: 0.2s;
    position: absolute;
    right: 5rem;
    bottom: -5px;
    z-index: 2;
}

p.btn_more a::after{
    content: "";
    display: inline-block;
    width: 16.5px;
    height: 1px;
    background: #1e1e1e;
    transition: 0.2s;
    position: absolute;
    right: 5rem;
    bottom: 0;
    transform: rotate(34deg);
}

p.btn_more a:hover::before,
p.btn_more a:hover::after{
    right: 4rem;
}

p.btn_more a:hover span{
    transform: scale(1.05,1.05);
}

/*------------------------------------
トップページ：FV
-------------------------------------*/
.frontPage .front_fv {
    background: #faf9f5;
    padding: 12rem 0 10rem;
}

.frontPage .front_fv .inner {
    max-width: 1600px;
    width: 83.3333%;
    margin: 0 auto;
}

.frontPage .fv {
    position: relative;
    overflow: hidden;
}

.frontPage .fv .main-copy_sp{
    display: none;
}

.frontPage .fv .main-copy_pc{
    font-family: ten-mincho-text, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 2vw;
    letter-spacing: 0.2em;
    line-height: 2.625;
    color: #fff;
    writing-mode: vertical-rl;
    position: absolute;
    z-index: 99;
    right: 12%;
    top: 24%;
}

.frontPage .fv .main-copy_pc .fadeIn{
    animation: fadeIn 1.2s both;
}

.frontPage .fv .main-copy_pc .fadeIn.c1{
    animation-delay:1s;
}

.frontPage .fv .main-copy_pc .fadeIn.c2{
    animation-delay:1.8s;
}

.frontPage .fv .main-copy_pc .fadeIn.c3{
    animation-delay:2.6s;
}

.frontPage .fv .main-copy_pc .fadeIn.c4{
    animation-delay:3.4s;
}

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

.frontPage .fv .phFront{
    position: absolute;
    opacity: 1;
    animation: fvphoto 8s 0s;
}

@keyframes fvphoto{
    0%{
        opacity: 0;
    }
    30%{
        opacity: 0;
    }
    60%{
        opacity: 0.8;
    }
    100%{
        opacity: 1;
    }
}

p.scroll-mark {
    position: absolute;
    bottom: 20px;
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    left: 50%;
    margin-left: -35px;
    width: 70px;
    text-align: center;
}

p.scroll-mark::after{
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    transform: translateY(-5px) rotate(45deg);
    opacity: 1;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    margin: 0 auto;
    animation: scroll 2s 0s infinite;
}

@keyframes scroll{
    0%{
        opacity: 0;
        transform: translateY(-5px) rotate(45deg);
    }
    100%{
        opacity: 1;
        transform: translateY(10px) rotate(45deg);
    }
}



.frontPage h1 {
    text-align: center;
    line-height: 2.3333;
    margin: 8rem auto 0;
}

.frontPage .ttl_h2,
.footer_contact .ttl_h2{
    writing-mode: vertical-rl;
    z-index: 2;
}

/*------------------------------------
トップページ：制作実績
-------------------------------------*/
.front_works{
    position: relative;
    padding: 6rem 0 12rem;
    background: #faf9f5;
}

.front_works .inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.right {
    width: 81.25%;
}

ul.works-tax-list {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 2rem;
    font-size: 1.4rem;
}

ul.works-tax-list li{
    position: relative;
    display: inline-flex;
}

ul.works-tax-list li::before {
    content: "/";
    display: inline-block;
    padding: 0 1rem;
}

ul.works-tax-list li:first-child::before{
    content: "";
    padding: 0;
}

.front_works .ttl_h2{
    width: 10%;
    margin-left: 2.5%;
    display: inline-flex;
    align-items: center;
}

.works-tax-list__item a{
    display: inline-block;
    position: relative;
}

.works-tax-list__item a:hover{
    color: #727171;
}

.works-tax-list__item.is-current a::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #a1034d;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 1;
}

.front_works ul.works_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 5vw;
}

.front_works ul.works_list li.front_works_list_item {
    width: 30%;
    margin-bottom: 6rem;
/*    transform: translateY(10px);*/
/*    opacity: 0;*/
/*    transition: opacity .8s, transform .8s;*/
}

/*
ul.works_list li.front_works_list_item:nth-child(3n) {
    transform: translateY(20px);
    opacity: 0;
    transition: opacity .8s, transform .8s;
}

ul.works_list li.front_works_list_item.is-inview{
    opacity: 1;
    transform: translateY(0);
}
*/

.fadein {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadein.is-show {
    opacity: 1;
    transform: translateY(0);
}

ul.works_list li.front_works_list_item .thumb{
    position: relative;
    margin-bottom: 3rem;
    box-shadow: 0 1rem 15px #dbdbda;
    line-height: 0;
}

ul.works_list li.front_works_list_item .thumb::before{
    content: "";
    display: block;
    width: 24px;
    height: 48px;
    border-top: 1px solid #9b9b9b;
    border-left: 1px solid #9b9b9b;
    position: absolute;
    top: -0.5vw;
    left: -0.5vw;
    opacity: 0;
}

ul.works_list li.front_works_list_item .thumb::after{
    content: "";
    display: block;
    width: 24px;
    height: 48px;
    border-right: 1px solid #9b9b9b;
    border-bottom: 1px solid #9b9b9b;
    position: absolute;
    bottom: -0.5vw;
    right: -0.5vw;
    opacity: 0;
}


ul.works_list li.front_works_list_item:hover .thumb::before{
    transition: 0.2s;
    top: -1.5vw;
    left: -1.5vw;
    opacity: 1;
}

ul.works_list li.front_works_list_item:hover .thumb::after{
    transition: 0.2s;
    bottom: -1.5vw;
    right: -1.5vw;
    opacity: 1;
}

ul.works_list li.front_works_list_item:hover img{
    opacity: 0.85;
    transition: 0.2s;
}

ul.works_list li.front_works_list_item:hover a{
    color: #727171;
}

ul.cat_works li {
    font-size: 1.3rem;
    background: #eee;
    max-width: fit-content;
    padding: 2px 2rem;
    margin-bottom: 10px;
}

.front_works p.btn_more {
    justify-content: flex-end;
}

.ttlmark {
    display: block;
    width: 15.625vw;
    height: 15.625vw;
    position: absolute;
    opacity: 0.7!important;
}

.ttlmark.ato {
    background: url(assets/images/bgtxt_ato.png) -2.5rem center no-repeat;
    background-size: contain;
    bottom: 40vw;
    left: 0;
    will-change: transform;
    transform: translate3d(0, 0, 0);   will-change: transform;
}


/*------------------------------------
トップページ：nohanaworks PHILOSOPHY
-------------------------------------*/
.front_philosophy{
    position: relative;
    padding: 0rem 0 16rem;
    color: #faf9f5;
}

.front_philosophy .ttl_h2 {
    position: relative;
    left: 87%;
    top: 16rem;
}

.front_philosophy .txt{
    margin-top: -6rem;
    text-align: center;
    line-height: 2.3333;
}

.front_philosophy .txt p{
    margin-bottom: 1.5em;
}

.ttlmark.sou {
    background: url(assets/images/bgtxt_sou.png) 4rem center no-repeat;
    background-size: contain;
    bottom: 0;
    right: 0;
    will-change: transform;
    transform: translate3d(0, 0, 0);   will-change: transform;
}

/*------------------------------------
トップページ：サービス一覧
-------------------------------------*/

.front_services{
    position: relative;
    background: #faf9f5;
    padding: 12rem 0;
}

.front_services .inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.front_services .ttl_h2{
    width: 10%;
    margin-left: 2.5%;
    display: inline-flex;
    align-items: center;
}

.front_services ul.services_list {
    width: 81.25%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 5vw;
}

.front_services ul.services_list li {
    width: 28%;
    margin-bottom: 6rem;
}

.front_services ul.services_list li .icon {
    text-align: center;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.front_services ul.services_list li h3 {
    font-family: ten-mincho-text, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.front_services ul.services_list li h3 span {
    font-size: 1.4rem;
}

.front_services ul.services_list p{
    text-align: justify;
    font-size: 1.3rem;    
}

.front_services p.btn_more {
    justify-content: flex-end;
    margin-top: 8rem;
}

.ttlmark.mu {
    background: url(assets/images/bgtxt_mu.png) -2.5rem center no-repeat;
    background-size: contain;
    left: 0;
    bottom: 40vw;
    will-change: transform;
    transform: translate3d(0, 0, 0);   will-change: transform;
}

/*------------------------------------
トップページ：はじめまして！
-------------------------------------*/
.front_profile{
    background: #faf9f5;
    padding: 2rem 0 12rem;
    position: relative;
}

.front_profile .ttl_h2 {
    position: relative;
    left: 87%;
    top: 10rem;
}

.front_profile .left {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.front_profile .photo{
    margin-right: 4.1%;
    margin-top: 10%;
    margin-bottom: 4%;
}

.front_profile .photo img {
    max-width: 222px;
    width: 100%;
}

.front_profile .comment p{
    margin-bottom: 1em;
    line-height: 2.3333;
}

.front_profile .btn_more {
    justify-content: center;
    padding-left: 32vw;
    margin-top: 8rem;
}

.ttlmark.hito {
    background: url(assets/images/bgtxt_hito.png) center center no-repeat;
    background-size: contain;
    left: 10vw;
    bottom: 10vw;
    will-change: transform;
    transform: translate3d(0, 0, 0);   will-change: transform;
}
/*------------------------------------
フッター：お問い合わせ
-------------------------------------*/
.footer_contact {
    padding: 8rem 0 16rem;
    background: #faf9f5;
    position: relative;
}

.footer_contact .inner {
    display: flex;
}

.footer_contact .ttl_h2 {
    width: 10%;
    margin-left: 2.5%;
    display: inline-flex;
    align-items: center;
}

.footer_contact .inner .right {
    width: 81.25%;
    margin-top: 5rem;
    margin-left: 15rem;
}

footer_contact .inner .right p{
    line-height: 2.3333;
}

.footer_contact .inner .btn_more {
    margin-top: 8rem;
}

.ttlmark.yui {
    background: url(assets/images/bgtxt_yui.png) center center no-repeat;
    background-size: contain;
    bottom: 2vw;
    right: 8vw;
    will-change: transform;
    transform: translate3d(0, 0, 0);   will-change: transform;
}



/*------------------------------------
フッター：リンク、コピーライト
-------------------------------------*/

footer {
    padding-bottom: 2rem;
    font-size: 1.4rem;
    background: #faf9f5;
}

footer .inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid #e7e3d1;
    padding: 4rem 0;
    width: 70%;
    max-width: 1000px;
    margin: 0 0 0 5.7%;
}

footer .inner .left {
    width: 70%;
    display: flex;
    align-items: center;
}

footer .inner .left h2 {
    line-height: 1.6;
    font-size: 1.2rem;
}

.footer_logo {
    max-width: 85px;
    margin: 0 2rem;
}


footer .inner .right{
    width: 30%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .inner .right p {
    line-height: 2.3333;
}

footer a:hover {
    color: #727171;
}

footer .inner .footer_link {
    line-height: 2;
}

.footer_bottom {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 0 5.7%;
    font-size: 1.3rem;
    letter-spacing: 0;
}

.footer_privacy {
    margin-right: 4rem;
}

/*------------------------------------
下層ページ：共通ヘッダー
-------------------------------------*/

.fv-lower {
    padding: 6rem 0;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.fv-lower::before {
    content: "";
    display: inline-block;
    width: 300px;
    height: 300px;
    position: absolute;
    top: 0;
    z-index: -1;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    opacity: 0.5;
}

.fv-lower h1 {
    text-align: center;
    margin: 0 auto;
    writing-mode: vertical-rl;
    z-index: 2;
}

.post-type-archive-works .fv-lower::before,
.tax-cat-works .fv-lower::before,
.single-works .fv-lower::before{
    background: url(assets/images/bgtxt_ato.png) center center no-repeat;
    background-size: contain;
}

/*------------------------------------
下層ページ：パンくず
-------------------------------------*/
ol.pankz {
    max-width: 1600px;
    width: 83.3333%;
    margin: 0 auto;
    font-size: 1.4rem;
}

ol.pankz li {
    display: inline;
}

ol.pankz li::before {
    content: ">";
    display: inline-block;
    padding: 0 1rem;
}

ol.pankz li:first-child::before {
    content: "";
    display: none;
    padding: 0;
}

ol.pankz li:last-child {
    font-weight: 500;
}

ol.pankz li:last-child::before {
    font-weight: 400;
}
ol.pankz li a {
    display: inline-block;
    border-bottom: 1px dashed #e7e3d1;
}


/*------------------------------------
下層ページ：アーカイブ制作実績
-------------------------------------*/
.archive_works{
    padding: 6rem 0 12rem;
}

.archive_works .inner {
    max-width: 1000px;
}

.archive_works ul.works-tax-list {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-bottom: 6rem;
}

ul.works_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

ul.works_list li.front_works_list_item {
    width: 30%;
    margin-bottom: 6rem;
}

ul.pagenation__list {
    display: flex;
    justify-content: center;
    align-items: center;
}

ul.pagenation__list li {
    margin: 0 0.5em;
    border: 1px solid #e7e3d1;
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
}

ul.pagenation__list li a {
    display: inline-flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

ul.pagenation__list li .current {
    display: inline-flex;
    width: 100%;
    height: 100%;
    background: #e7e3d1;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

ul.pagenation__list li a:hover {
    background: rgba(231,227,209,0.8);
    transition: 0.2s;    
}

/*------------------------------------
下層ページ：シングル制作実績
-------------------------------------*/
article.works-note {
    margin: 8rem auto 16rem;
}

.works-note_container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 8rem;
}

figure.works_eyecatch {
    width: 50%;
    margin: 0 auto;
    text-align: center;
}

.works-txt {
    width: 47%;
    margin-left: 3%;
}

.works-txt h2 {
    font-family: ten-mincho-text, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 2rem;
    margin-bottom: 2rem;
}

p.works_url a {
    color: #a1034d;
    font-size: 1.4rem;
}

.works_comment {
    margin: 4rem 0;
}

.works_comment p {
    margin-bottom: 1em;
}

dl.works_role dt {
    font-family: ten-mincho-text, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.works-gallery{
    --gap: 24px;
    --visible: 2.5; /* PCで2.5枚 */
}

.works-gallery h2{
    font-family: ten-mincho-text, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 4rem;
    color: #e7e3d1;
}

button.works-gallery__btn.is-prev{
    margin-right: 1rem;
}

button.works-gallery__btn.is-prev,
button.works-gallery__btn.is-next{
    background: no-repeat;
    border: 1px solid #666;
    font-size: 1rem;
    color: #444;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
}

.works-gallery__head {
    text-align: right;
    padding: 0 2rem;
    margin: 0 0 2rem 0;
}

.works-gallery__viewport{
    overflow: hidden;
}

/* gap対応端末はそのまま */
.works-gallery__track{
    display: flex;
    gap: var(--gap);
}

/* gap未対応のフォールバック（古いiOS Safariなど） */
@supports not (gap: 1rem){
    .works-gallery__track{ gap: 0; }
    .works-gallery__slide{ margin-right: var(--gap); }
    .works-gallery__track{ margin-right: calc(-1 * var(--gap)); }
}

.works-gallery__slide{
    flex: 0 0 calc(100% / var(--visible));
}

.works-gallery__slide img{
    display: block;
    width: 100%;
    height: auto;
}

/* SPは1.1枚くらい見せ、など */
@media (max-width: 500px){
    .works-gallery{ --gap: 14px; --visible: 1.1; }
}


/*------------------------------------
下層ページ：ニュースリリース　記事本文
-------------------------------------*/
.news_content_block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 83%;
    margin: 0 auto;
    padding: 6rem 0 8rem;
}

.news_content_block .inner {
    width: 70%;
    margin: 0;
}

.sidebar {
    width: 25%;
}

.single .eyecatch {
    border: 1px solid #ccc;
    line-height: 0;
}

.single .eyecatch img {
    width: 100%;
}

.news_content_area h1 {
    font-size: 2.6rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.news_content_area h2 {
    font-size: 2.3rem;
    font-weight: bold;
    margin-top: 2em;
    margin-bottom: 1em;
}

.news_content_area h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 2em;
    margin-bottom: 1em;
}

.news_content_area h4 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 2em;
    margin-bottom: 1em;
}

.news_content_area h5 {
    font-size: 1.6rem;
    font-weight: bold;
    margin-top: 2em;
    margin-bottom: 1em;
}

.news_content_area p {
    margin-bottom: 1em;
}

.news_content_area .date {
    text-align: right;
    margin-bottom: 4rem;
}

.news_content_area a {
    color: #46b0e3;
    text-decoration: underline;
}

.news_content_area ol {
    list-style: decimal;
    padding-left: 1.5em;
    margin-bottom: 2em;
}

.news_content_area ul {
    list-style: disc;
    padding-left: 1.5em;
    margin-bottom: 2em;
}


.post-views {
    margin: 2em 0;
    text-align: right;
}

ul.prev_next {
    margin-top: 6rem;
    display: flex;
    justify-content: space-between;
}

ul.prev_next li {
    width: 45%;
    border: 1px solid #ccc;
    padding: 1rem;
}

ul.prev_next li.pn_next .pn_name {
    text-align: right;
}

/*　サイドバー　*/
h3.side__ttl {
    background: #eeeae7;
    padding: 1rem;
}

ul.side__list {
    padding: 1rem;
    margin-bottom: 2rem;
    padding-left: 1.5em;
    font-size: 1.4rem;
}

ul.side__list li {
    list-style: disc;
}

.sidebar a:hover{
    text-decoration: underline;
}

.side__box--form {
    margin-bottom: 2rem;
}

input.search {
    padding: 5px;
    border: 1px solid #727171;
    font-family: inherit;
    border-radius: 5px;
}

input.search:focus-visible {
    outline: none;
}

li.recent-articles {
    margin-bottom: 2rem;
}


/*------------------------------------
下層ページ：プロフィール
-------------------------------------*/
.page-id-68 .fv-lower::before{
    background: url(assets/images/bgtxt_hito.png) center center no-repeat;
    background-size: contain;
}

.page_profile {
    margin: 8rem auto 10rem;
}

.page_profile .inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.page_profile h2 {
    width: 100%;
    text-align: center;
    margin-bottom: 8rem;
}

.page_profile h2 img{
    display: inline-block;
    max-width: 120px;
}

.page_profile .photo{
    width: 40%;
    text-align: right;
    margin-right: 15%;
    padding-top: 10rem;
}

.page_profile .photo img{
    display: inline-block;
    max-width: 452px;
    width: 100%;
}

.page_profile .container{
    width: 45%;
}

.page_profile .container section {
    margin-bottom: 8rem;
}

.page_profile .container h3{
    font-family: ten-mincho-text, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 4rem;
    color: #e7e3d1;
    margin-bottom: 4rem;
}

.page_profile .profile p{
    padding-left: 2rem;
}

.page_profile .profile p.name span {
    font-size: 1.8rem;
}

.page_profile .profile p.kata{
    margin: 1rem 0 3rem;
    font-size: 1.4rem;
}

.page_profile .profile p.hoby{
    margin: 3rem 0;
}

.page_profile .profile .insta span{
    content: "";
    display: inline-block;
    background: url(assets/images/ico-insta.png) center center no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.page_profile .profile .insta a{
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.05em;
}

.page_profile .profile .insta a:hover{
    opacity: 0.8;
    transition: 0.2s;
}

.page_profile .career .career-list {
    padding-left: 3rem;
    position: relative;
    padding-bottom: 4rem;
}

.page_profile .career .career-list::before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    position: absolute;
    top: 10%;
    left: 15px;
    background: #e7e3d1;
}

.page_profile .career .career-list dt{
    font-family: ten-mincho-text, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
}

.page_profile .career .career-list::after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    position: absolute;
    top: 7%;
    left: 12px;
    background: #e7e3d1;
}

.page_profile .career .career-list dd{
/*    margin-bottom: 4rem;*/
}

.page_profile .career .career-list dd h4{
    margin-bottom: 2rem;
}

.page_profile .career .career-list dd p{
    font-size: 1.3rem;
    text-align: justify;
    line-height: 1.5;
    padding-left: 1rem;
    max-width: 30em;
}

.page_profile .about .about-list {
    padding-left: 2rem;
}

.page_profile .about .about-list dt{
    margin-bottom: 1rem;
}

.page_profile .about .about-list dd{
    margin-bottom: 4rem;
    padding-left: 1em;
}

.page_profile .about .about-list dd ul{
    line-height: 2.3333;
}

.page_profile .about .about-list dd a{
    color: #a1034d;
    border-bottom: 1px dashed #a1034d;
    padding-bottom: 1px;
}

.page_profile .about .about-list dd a:hover{
    opacity: 0.8;
    transition: 0.2s;
}

/*------------------------------------
下層ページ：プライバシーポリシー
-------------------------------------*/
.privacy-policy .fv-lower h1{
    writing-mode: horizontal-tb;
}

.privacy-policy .fv-lower h1 .sub_ttl {
    display: block;
    margin-top: 2rem;
}
    
/*------------------------------------
下層ページ：お問い合わせ
-------------------------------------*/

.contact {
    margin: 8rem auto 10rem;
}

.contact h2 {
    font-family: ten-mincho-text, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 2rem;
}


.page-id-56 .fv-lower::before,
.page-id-54 .fv-lower::before{
    background: url(assets/images/bgtxt_yui.png) center center no-repeat;
    background-size: contain;
}


.page-id-54 .footer_contact,
.page-id-56 .footer_contact{
    display: none;
}


/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
    border-radius: 10px;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}

.contact .page-fv{
    background: url(assets/images/contact_fv_bg.png) center center no-repeat;
    background-size: cover;
}

.contact .page_content {
    padding: 2rem 0 6rem;
}

.contact .page_content h2 {
    margin-bottom: 4rem;
}

.contact div.inner {
    max-width: 80rem;
    width: 90%;
}

.contact .intro {
    text-align: center;
    margin: 2rem auto 6rem;
}

form.wpcf7-form dl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 6rem;
}

form.wpcf7-form dl:last-of-type{
    padding-bottom: 0;
    border: none;
}

form.wpcf7-form dl dt {
    width: 30%;
    display: flex;
    justify-content: flex-end;
}

form.wpcf7-form dl dt .hissu {
    display: inline-block;
    line-height: 1.5;
    font-size: 1.3rem;
    background: #a1034d;
    color: #fff;
    padding: 0 10px;
    margin-left: 0.5em;
}

form.wpcf7-form dl dt .ninni {
    display: inline-block;
    line-height: 1.5;
    font-size: 1.3rem;
    background: #e6e6e6;
    color: #1e1e1e;
    padding: 0 10px;
    margin-left: 0.5em;
}

form.wpcf7-form dl dt .sentaku {
    font-weight: 400;
    font-size: 1.4rem;
    display: inline-block;
    margin-left: 1rem;
}


form.wpcf7-form dl dd{
    width: 65%;
}

form.wpcf7-form dl.flex-start{
    align-items: flex-start;
}

span.wpcf7-list-item {
    line-height: 2.33333;
    margin: 0;
    display: block;        
}

input.wpcf7-form-control.wpcf7-text,
textarea.wpcf7-form-control{
    width: 100%;
    outline: none;
    padding: 5px 10px;
    font-size: 16px;
    font-family: inherit;
    color: #1e1e1e;
    border: 1px solid #1e1e1e;
}

textarea.wpcf7-form-control {
    height: 15rem;
}

.confirm {
    text-align: center;
    margin: 6rem 0 4rem;
}

.confirm a {
    color: #a1034d;
    display: inline-block;
    font-weight: 500;
    border-bottom: 1px dashed #a1034d;
}

.confirm a:hover {
    opacity: 0.8;
}

.wpcf7-spinner {
    display: block;
}

.wpcf7 .wpcf7-submit:disabled {
    border: 2px solid #e6e6e6;
    background: #e6e6e6;
    color: #fff;
}

.wpcf7-submit {
    display: block;
    max-width: 36rem;
    height: 6rem;
    width: 100%;
    margin: 0 auto;
    background: #a1034d;
    font-size: 2rem;
    font-weight: 500;
    font-family: inherit;
    letter-spacing: 1em;
    padding-left: 1.5em;
    color: #fff;
}

.wpcf7-submit:hover{
    opacity: 0.8;
    transition: 0.2s;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
    border-color: #e7e3d1;
}

.contact .thanks_txt{
    text-align: justify;
    margin: 4rem auto 8rem;
}

p.btn_more.btn_back {
    justify-content: center;
}

p.btn_more.btn_back a{
    padding-right: 0;
}

p.btn_more.btn_back a::before {
    right: auto;
    left: -5rem;
}

p.btn_more.btn_back a::after {
    right: auto;
    left: -5rem;
    transform: rotate(-34deg);
}

p.btn_more.btn_back a span {
    right: auto;
    left: -9rem;
}

p.btn_more.btn_back a:hover::before, 
p.btn_more.btn_back a:hover::after {
    left: -5.5rem;
}

/*------------------------------------
固定ページ：フリー入力
-------------------------------------*/

.page_free_content{
    padding: 2rem 0 4rem;
    text-align: justify;
}

.page_free_content p{
    margin-bottom: 1em;
}

.page_free_content h2 {
    font-size: 2.4rem;
    font-weight: bold;
    margin-top: 2em;
    margin-bottom: 1em;
}

.page_free_content h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 2em;
    margin-bottom: 1em;
}

.page_free_content h4 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 2em;
    margin-bottom: 1em;
}

.page_free_content h5 {
    font-size: 1.6rem;
    font-weight: bold;
    margin-top: 2em;
    margin-bottom: 1em;
}

.page_free_content p {
    margin-bottom: 1em;
}

.page_free_content .date {
    text-align: right;
    margin-bottom: 4rem;
}

.page_free_content a {
    color: #46b0e3;
    text-decoration: underline;
}

.page_free_content ul {
    padding-left: 1.5em;
    list-style: disc;
}

.page_free_content ul li{
    margin-bottom: 1rem;
}

/*------------------------------------
404 NOT FOUND
-------------------------------------*/


/*------------------------------------
Firefoxのみ
-------------------------------------*/
@-moz-document url-prefix() {
    
    
    input.wpcf7-form-control.wpcf7-text, textarea.wpcf7-form-control {
        width: 100%;
        outline: none;
        padding: 10px;
        font-size: 1.6rem;
        font-family: inherit;
        color: #727171;
        border-radius: 8px;
        border: 1px solid #727171;
    }
    
    .wpcf7-form-control.wpcf7-file {
        font-size: 1.6rem;
    }
    
}



@media screen and (max-width:768px){
    /*------------------------------------
    ベース共通設定
    -------------------------------------*/
    html {
        font-size: 54.6875%;
    }

    .pc{
        display: none;
    }

    .sp{
        display: block;
    }
    
    body {
        font-weight: 300;
    }

    body.home::before {
        height: 100%;
        background: url(assets/images/BG_fix.jpg) 37% bottom no-repeat;
        background-size: cover;
    }
    
    main div.inner {
        width: 90%;
    }
   
    /*------------------------------------
    ヘッダー
    -------------------------------------*/
    header {
        padding: 0 2rem;
    }

    .hd_nav{
        display: none;
    }

    .sp_nav{
        display: flex;
        justify-content: center;
        opacity: 0;
        background: rgba(255, 255, 255, 0.9);
        width: 100%;
        z-index: -1;
        position: fixed;
        top: 0;
        padding-top: 7rem;
        border-bottom: 1px solid #eeeae7;
        transition: .3s;
        height: 100%;
        font-weight: 500;
    }

    .sp_nav.active {
        opacity: 1;
        z-index: 900;
    }
    
    ul.sp_linkList {
        display: flex;
        justify-content: center;
        align-content: center;
        flex-direction: column;
        text-align: center;
        line-height: 2;
        height: 100%;
        margin-top: -7rem;
    }
    
    ul.sp_linkList li{
        margin: 1em;
    }

    .sp_menu_bar{
        display: flex;
    }

    header .inner {
        width: 100%;
        height: 100%;
        padding: 5px 0;
    }

    .hd_logo {
        max-width: 20rem;
        width: 30%;
        height: auto;
    }
    
    .hd_logo a {
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }

    .sp_contact_btn a {
        display: inline-flex;
        background: rgba(161, 3, 77, 1.0);
        width: 110px;
        color: #fff;
        height: 34px;
        justify-content: center;
        align-items: center;
    }


    .sp_nav_btn {
        color: #1e1e1e;
        text-align: center;
        font-size: 1.4rem;
        margin-left: 4vw;
        font-weight: bold;
        padding-top: 7px;
        transition: .3s;
        width: 49px;
        cursor: pointer;
    }

    .sp_nav_btn .border {
        display: block;
        width: 80%;
        height: 1px;
        background: #1e1e1e;
        margin: 0 auto 8px;
        transition: .3s;
    }

    .sp_nav_btn.open .txt::before{
        content: " 閉じる ";
    }

    .sp_nav_btn.open .border:nth-child(1) {
        transform-origin: 1px 7px;
        transform: rotate(22deg);
    }
    .sp_nav_btn.open .border:nth-child(2) {
        transform-origin: 14px 0px;
        transform: rotate(-22deg);
    }
    .sp_nav_btn.open .border:nth-child(3) {
        opacity: 0;
    }

    /*------------------------------------
    トップページ：FV
    -------------------------------------*/
    
    .frontPage .front_fv {
        padding: 7rem 0 0;
    }
    
    .frontPage .front_fv .inner {
        max-width: none;
        width: 100%;
    }
    
    .frontPage h1 {
        margin: 4rem auto 0;
    }
    
    /*------------------------------------
    トップページ：制作実績
    -------------------------------------*/
    .front_works .ttl_h2{
        margin-left: 0;
    }
    
    .front_works .inner .right {
        width: 85%;
    }

    /*------------------------------------
    トップページ：PHILOSOPHY
    -------------------------------------*/
    .front_philosophy .ttl_h2 {
        left: 0;
        top: 12vw;
    }
    
    .front_philosophy .main_ttl img {
        display: inline-block;
        width: 100px;
    }

    /*------------------------------------
    トップページ：サービス一覧
    -------------------------------------*/
    .front_services {
        padding: 12rem 0 8rem;
    }
    
    .front_services .ttl_h2{
        margin-left: 0;
    }

    .front_services ul.services_list {
        width: 85%;
    }
    
    .front_services ul.services_list li h3 span {
        font-size: 1.2rem;
        letter-spacing: 0;
    }
    
    /*------------------------------------
    トップページ：はじめまして！
    -------------------------------------*/
    
    .front_profile {
        padding: 0rem 0 12rem;
    }
    
    .front_profile .ttl_h2 {
        position: relative;
        left: 0;
        top: 18rem;
    }
    
    .front_profile .photo {
        margin-right: 4%;
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .ttlmark.hito {
        left: 4vw;
        bottom: 20vw;
    }
    
    .front_profile .btn_more {
        justify-content: flex-end;
        padding-left: 0;
        margin-top: 8rem;
    }
    

    /*------------------------------------
    フッター：お問い合わせ
    -------------------------------------*/
    
    .footer_contact {
        padding: 8rem 0 14rem;
    }

    .footer_contact .ttl_h2{
        margin-left: 0;
    }
    
    .footer_contact .inner .right {
        width: 85%;
        margin-top: 5rem;
        margin-left: 5vw;
    }

    .ttlmark.yui {
        bottom: 5vw;
    }
    
    /*------------------------------------
    フッター：リンク、コピーライト
    -------------------------------------*/
    footer .inner {
        width: 90%;
        margin: 0 auto 4rem;
    }
    
    footer .inner .right {
        width: 30%;
        display: flex;
        justify-content: flex-end;
        text-align: right;
        flex-wrap: wrap;
        padding-right: 4rem;
    }
    

    /*------------------------------------
    共通：内部・外部リンクボタン
    -------------------------------------*/

  
    
    /*------------------------------------
    下層ページ：プロフィール
    -------------------------------------*/
    .page_profile .photo {
        width: 40%;
        margin-right: 5%;
    }
    


    /*------------------------------------
    下層ページ：
    -------------------------------------*/
    

    /*------------------------------------
    下層ページ：
    -------------------------------------*/


    /*------------------------------------
    下層ページ：
    -------------------------------------*/
   
    
    /*------------------------------------
    下層ページ：
    -------------------------------------*/
    
    /*------------------------------------
    アーカイブページ：
    -------------------------------------*/

   
}

@media screen and (max-width:500px){
    
    /*------------------------------------
    ベース共通設定
    -------------------------------------*/
    
    body.home::before {
        height: 100%;
        background: url(assets/images/BG_fix.jpg) 32% top no-repeat;
        background-size: cover;
    }
    
    p.btn_more{
        justify-content: flex-end;
    }
    
    p.btn_more a {
        padding-right: 8rem;
    }

    /*------------------------------------
    ヘッダー
    -------------------------------------*/
    header {
        padding: 0 1rem;
    }
    
    .hd_logo {
        width: 45%;
    }
    
    .sp_nav_btn {
        margin-left: 2vw;
    }

    /*------------------------------------
    トップページ：FV
    -------------------------------------*/
    .frontPage .fv .main-copy_pc{
        display: none;
    }

    .frontPage .fv .main-copy_sp{
        display: block;
        font-family: ten-mincho-text, serif;
        font-style: normal;
        font-weight: 400;
        font-size: 5vw;
        letter-spacing: 0.2em;
        line-height: 2.625;
        color: #fff;
        writing-mode: vertical-rl;
        position: absolute;
        z-index: 99;
        right: 8vw;
        top: 14vw;
    }

    .frontPage .fv .main-copy_sp .fadeIn{
        animation: fadeIn 1.2s both;
    }

    .frontPage .fv .main-copy_sp .fadeIn.c1{
        animation-delay:1s;
    }

    .frontPage .fv .main-copy_sp .fadeIn.c2{
        animation-delay:1.8s;
    }

    .frontPage .fv .main-copy_sp .fadeIn.c3{
        animation-delay:2.6s;
    }

    .frontPage .fv .main-copy_sp .fadeIn.c4{
        animation-delay:3.4s;
    }

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

   
    /*------------------------------------
    トップページ：
    -------------------------------------*/
    .frontPage h1 {
        padding: 0 2rem 8rem;
    }

    .ttlmark {
        display: block;
        width: 100px;
        height: 100px;
        position: absolute;
        opacity: 0.7 !important;
    }
    
    /*------------------------------------
    トップページ：制作実績
    -------------------------------------*/
    .front_works .ttl_h2 {
        width: 15%;
        margin-top: -2em;
    }
    
    .front_works ul.works_list {
        margin-top: 4rem;
    }
    
    .front_works ul.works_list li.front_works_list_item {
        width: 80%;
        margin: 0 auto 6rem;
    }
    
    .ttlmark.ato {
        top: 13%;
        left: 0;
    }
    
    /*------------------------------------
    トップページ：PHILOSOPHY
    -------------------------------------*/
    .front_philosophy{
        padding-bottom: 12rem;
    }
        
    .front_philosophy .ttl_h2 {
        position: static;
        width: 100%;
        writing-mode: horizontal-tb;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 8rem 0 4rem;
    }
    
    .front_philosophy .ttl_h2 span {
        display: inline-block;
    }
    
    .front_philosophy .main_ttl img {
        width: 80px;
    }
    
    .front_philosophy .ttl_h2 .sub_ttl {
        margin: 0 0 0 2rem;
    }
    
    .front_philosophy .txt{
        margin-top: 0;
        line-height: 2;
    }
    
    .front_philosophy .txt p {
        margin-bottom: 1.5em;
    }
    
    /*------------------------------------
    トップページ：サービス一覧
    -------------------------------------*/
    .front_services .ttl_h2 {
        width: 15%;
        margin-top: -2em;
    }
    
    .front_services ul.services_list li {
        width: 75%;
        margin: 0 auto 4rem;
    }
    
    .front_services ul.services_list li {
        
    }
    
    .front_services ul.services_list p {
        line-height: 1.5;
    }
    
    .front_services ul.services_list li h3 span {
        font-size: 1.4rem;
        letter-spacing: 0.08em;
    }
    
    .front_services ul.services_list li .icon {
        height: 100px;
    }
    
    .front_services ul.services_list li:nth-child(1) img,
    .front_services ul.services_list li:nth-child(2) img {
        width: 86px;
    }
    
    .front_services ul.services_list li:nth-child(3) img, 
    .front_services ul.services_list li:nth-child(4) img {
        width: 54px;
    }

    .front_services ul.services_list li:nth-child(5) img {
        width: 145px;
    }
     
    .front_services ul.services_list li:nth-child(6) img {
        width: 110px;
    }
    
    .front_services ul.services_list li:nth-child(7) img {
        width: 58px;
    }
    
    .front_services ul.services_list li:nth-child(8) img {
        width: 52px;
    }
    
    .front_services ul.services_list li:nth-child(9) img {
        width: 65px;
    }
    
    .ttlmark.mu {
        bottom: auto;
        top: 23%;
    }
    
    /*------------------------------------
    トップページ：はじめまして！
    -------------------------------------*/
    .front_profile .inner {
        position: relative;
        z-index: 2;
    }
    
    .front_profile .ttl_h2 {
        top: 10rem;
    }
    
    .front_profile .left {
        margin: -6rem auto 0;
    }
    
    .front_profile .photo {
        margin: 0 0 4rem 0;
    }
    
    .front_profile .comment p {
        margin-bottom: 1.5em;
        line-height: 1.6;
        text-align: justify;
    }
    
    .ttlmark.hito {
        left: auto;
        bottom: auto;
        right: 0;
        top: 40%;
    }
    
    .front_profile .btn_more {
        margin-top: 4rem;
    }
    
    
    /*------------------------------------
    フッター：お問い合わせ
    -------------------------------------*/
    .footer_contact {
        padding: 4rem 0 22rem;
    }
    
    .footer_contact .ttl_h2 {
        margin-top: -2em;
    }
    
    .ttlmark.yui {
        bottom: 0;
        right: 0;
        background: url(assets/images/bgtxt_yui.png) 15px center no-repeat;
        background-size: cover;
    }
    

    /*------------------------------------
    フッター：リンク、コピーライト
    -------------------------------------*/
    footer .inner{
        padding: 8rem 0 4rem;
    }
    
    footer .inner .left {
        width: 100%;
        flex-direction: column;
        justify-content: center;
    }
 
    footer .inner .right {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding-right: 0;
    }
    
    footer .inner .left h2 {
        margin: 2rem 0 4rem;
        text-align: center;
    }
    
    footer .inner .footer_link li {
        margin-bottom: 1.5em;
    }

    /*------------------------------------
    共通：内部・外部リンクボタン
    -------------------------------------*/
    
    /*------------------------------------
    下層ページ：ベース共通
    -------------------------------------*/
    
    /*------------------------------------
    下層ページ：共通ヘッダー
    -------------------------------------*/
    .fv-lower {
        padding: 6rem 0 0;
        min-height: 350px;
    }
    
    .fv-lower::before {
        content: "";
        display: inline-block;
        width: 150px;
        height: 150px;
        top: 6rem;
    }
    
    .fv-lower h1 {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .fv-lower .main_ttl {
        display: block;
    }
    
    .fv-lower .sub_ttl {
        display: block;
        margin-top: 3rem;
        writing-mode: horizontal-tb;
    }
 
  
    /*------------------------------------
    下層ページ：アーカイブ制作実績
    -------------------------------------*/
    .archive_works ul.works-tax-list {
        margin-bottom: 7rem;
    }
    
    ul.works_list li.front_works_list_item {
        width: 47%;
    }
    
    /*------------------------------------
    下層ページ：シングル制作実績
    -------------------------------------*/
    figure.works_eyecatch {
        width: 95%;
        margin: 0 auto 4rem;
    }
    
    .works-txt {
        width: 100%;
        margin-left: 0;
    }
    
    .works-txt h2 {
        margin-bottom: 1rem;
    }
    
    /*------------------------------------
    下層ページ：プロフィール
    -------------------------------------*/
    
    .page_profile h2 img {
        max-width: 85px;
    }
    
    .page_profile .photo {
        width: 75%;
        margin-right: 0;
        margin-bottom: 4rem;
        padding-top: 0;
    }
    
    .page_profile .container {
        width: 95%;
    }
    
    .page_profile .career .career-list dd p {
        padding-left: 0;
    }
    
    /*------------------------------------
    下層ページ：お問い合わせ
    -------------------------------------*/
    form.wpcf7-form dl {
        display: block;
        margin-bottom: 4rem;
    }
    
    form.wpcf7-form dl dt {
        width: 100%;
        justify-content: flex-start;
        margin-bottom: 2rem;
    }
    
    form.wpcf7-form dl dd {
        width: 100%;
    }
    
    textarea.wpcf7-form-control {
        height: 20rem;
    }
    
    
   
    /*------------------------------------
    404 NOT FOUND
    -------------------------------------*/
    .error404 .page-fv .page-ttl .main-ttl {
        line-height: 1;
        margin: 1rem 0 2rem;
        display: inline-block;
    }
}

@media screen and (max-width:320px){

}