@charset "UTF-8";

/* CSS Document */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding-top: 0;
    -webkit-text-size-adjust: 100%;
}

img {
    border: 0;
}

a {
    border: 0;
}

.gothic {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: normal;
}

.mincho {
    font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
    font-weight: normal;
}

.noto-serif {
    font-family: "Noto Serif JP", serif;
}

.noto-sans {
    font-family: "Noto Sans JP", sans-serif;
}

.noto300 {
    font-weight: 300;
}

.noto500 {
    font-weight: 500;
}

.noto700 {
    font-weight: 700;
}

.noto900 {
    font-weight: 900;
}

#wrap {
    width: 100%;
    height: 100%;
    padding-top: 0;
    margin: 0;
    overflow: hidden;
}

.hide {
    display: none !important;
}


/*----------------------------------------------------------
共通
----------------------------------------------------------*/

@media screen and (min-width: 761px),
print {
    /* PC */
    .pagetitle {
        width: 95%;
        height: 58px;
        margin: 96px auto 0 auto;
        background-color: #6f6a63;
        font-size: 28px;
        line-height: 58px;
        color: #fff;
        text-align: center;
    }
    .pagetitle span {
        font-size: 17px;
    }
    .content {
        width: 95%;
        margin: 0 auto;
    }
    .ft_space {
        height: 64px;
    }
}

@media screen and (max-width: 760px) {
    /* SP */
    .pagetitle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: auto;
        min-height: 60px;
        margin: 68px 0 0 0;
        padding-top: 0.2em;
        padding-bottom: 0.25em;
        background-color: #6f6a63;
        font-size: calc(26px + 1vw);
        line-height: 1;
        color: #fff;
        text-align: center;
    }
    .pagetitle span {
        font-size: calc(13px + 0.5vw);
        margin-top: 6px;
    }
    .content {
        width: 95%;
        margin: 0 auto;
    }
    .ft_space {
        height: 48px;
    }
}


/*----------------------------------------------------------
ヘッダー
----------------------------------------------------------*/

@media screen and (min-width: 761px),
print {
    /* PC */
    header input {
        display: none;
    }
    .spbt {
        display: none;
    }
    header {
        position: fixed;
        width: 100%;
        height: 70px;
        margin: 0;
        top: 0;
        left: 0;
        right: 0;
        background-color: #4a3f39;
    }
    header .logo {
        position: absolute;
        top: 21px;
        left: 16px;
        right: 0;
    }
    header img {
        height: 28px;
    }
    header nav {
        position: absolute;
        height: 100%;
        top: 0;
        right: 5%;
        bottom: 0;
    }
    nav ul {
        display: flex;
        justify-content: right;
        align-items: center;
        height: 100%;
        margin: auto 0;
    }
    nav li {
        display: block;
        width: auto;
        margin: 0 1.25em;
    }
    nav li a {
        font-size: 15px;
        line-height: 1;
        color: #fff;
        text-decoration: none;
        transition-duration: 0.5s;
    }
    nav li a:hover {
        text-decoration: underline;
    }
}

@media screen and (max-width: 760px) {
    /* SP */
    header input {
        display: none;
    }
    header {
        position: fixed;
        z-index: 100;
        width: 100%;
        height: 60px;
        margin: 0;
        top: 0;
        left: 0;
        right: 0;
        background-color: #4a3f39;
    }
    header .logo {
        position: absolute;
        top: 16px;
        left: 16px;
        right: 0;
    }
    header img {
        height: 28px;
    }
    .slidemenuwrap {
        position: absolute;
        width: 100%;
        margin: 0;
        top: 0;
        left: 0;
        right: 0;
        transition: all 0.6s;
        z-index: 150;
    }
    .slidemenuwrap nav {
        position: absolute;
        width: 90%;
        height: 50vh;
        min-height: 300px;
        top: 8vh;
        left: 5%;
        right: 5%;
        background-color: rgba(102, 95, 89, 0.9);
        transform: translateY(-100%);
        transition: all 0.6s;
        opacity: 0;
    }
    .slidemenuwrap.active nav {
        transform: translateZ(0);
        opacity: 1;
    }
    nav ul {
        width: 100%;
        height: auto;
        margin: 0;
        padding-top: 0.75em;
        list-style-type: none;
        padding-left: 0;
        font-size: calc(17px + 0.8vw);
    }
    nav li {
        display: block;
        width: auto;
        margin: 1.25em 0 1.25em 1em;
    }
    nav li a {
        font-size: calc(19px + 1vw);
        line-height: 1;
        color: #fff;
        text-decoration: none;
        transition-duration: 0.5s;
    }
    nav li a:hover {
        text-decoration: underline;
    }
    .spbt {
        position: absolute;
        width: 43px;
        height: 43px;
        top: 9px;
        right: 9px;
        z-index: 100;
        border: 2px solid #fff;
    }
    .spbt::before {
        display: block;
        content: "";
        padding-top: 100%;
    }
    .slidemenuwrap.active .spbt {
        background-image: none;
    }
    .spbt .smb_span {
        display: inline-block;
        position: absolute;
        width: 66%;
        height: 2px;
        left: 18%;
        border-radius: 1px;
        background-color: #fff;
        transition: all 0.3s;
        z-index: 5;
    }
    .slidemenuwrap.active .smb_span {
        height: 1px;
        background-color: #fff;
    }
    .smb_span:nth-of-type(1) {
        top: 11px;
    }
    .slidemenuwrap.active .smb_span:nth-of-type(1) {
        margin-top: 8px;
        transform: rotate(-45deg);
    }
    .smb_span:nth-of-type(2) {
        top: 19px;
    }
    .slidemenuwrap.active .smb_span:nth-of-type(2) {
        opacity: 0;
    }
    .smb_span:nth-of-type(3) {
        top: 27px;
    }
    .slidemenuwrap.active .smb_span:nth-of-type(3) {
        margin-top: -7px;
        transform: rotate(45deg);
    }
}


/*----------------------------------------------------------
制作料金
----------------------------------------------------------*/

@media screen and (min-width: 761px),
print {
    /* PC */
    .pr_title {
        width: 100%;
        margin: 28px 0 0 0;
        padding-left: 0.5em;
        border: 5px double #493c33;
        font-size: 25px;
        line-height: 46px;
        text-align: left;
        color: #493c33;
    }
    .space {
        margin-top: 64px;
    }
    .pr_table {
        display: inline-flex;
        justify-content: left;
        width: auto;
        margin: 20px 0 0 0;
        border: 2px solid #493c33;
    }
    .prt_td1 {
        width: auto;
        height: 120px;
        margin: 0;
        padding-left: 24px;
        padding-right: 24px;
        background-color: #493c33;
        font-size: 26px;
        line-height: 116px;
        color: #fff;
    }
    .prt_td1 span {
        font-size: 0.7em;
    }
    .prt_td2 {
        display: table;
        width: auto;
        height: 100%;
        margin: 0;
    }
    .prt_td2 p {
        width: 100%;
        margin: 0;
        font-size: 15px;
        text-align: center;
        vertical-align: middle;
        border-left: 1px solid #493c33;
    }
    .prtd2_l1 {
        display: table-caption;
        height: 32px;
        background-color: #edebea;
        line-height: 2;
    }
    .prtd2_l2 {
        display: table-cell;
        height: 88px;
        line-height: 1.3;
        padding-left: 32px;
        padding-right: 32px;
    }
    .prt_td2 .price {
        font-size: 22px;
    }
    .prt_td2 .price span {
        display: block;
        font-size: 13px;
        line-height: 1;
    }
    .pr_sampletitle {
        width: 100px;
        margin: 8px 0 auto 0;
        background-color: #493c33;
        font-size: 16px;
        line-height: 2;
        text-align: center;
        color: #fff;
    }
    .pr_sample {
        display: flex;
        flex-wrap: wrap;
        justify-content: left;
        width: auto;
        margin: 8px auto 16px 0;
    }
    .gaikan img {
        width: 140px;
    }
    .naikan img {
        width: 280px;
    }
    .image img {
        width: 320px;
    }
    .pr_ex {
        width: auto;
        margin: 64px 0 0 0;
    }
    .pr_ex p {
        margin: 0 0 1em 0;
        font-size: 15px;
        line-height: 1;
        text-align: left;
    }
}

@media screen and (max-width: 760px) {
    /* SP */
    .pr_title {
        width: 100%;
        margin: 8px 0 0 0;
        padding-top: 0.15em;
        padding-bottom: 0.15em;
        border: 5px double #493c33;
        font-size: calc(22px + 1vw);
        line-height: 1.2;
        text-align: center;
        color: #493c33;
    }
    .pr_title span {
        display: inline-block;
    }
    .space {
        margin-top: 64px;
    }
    .pr_table {
        width: auto;
        margin: 12px 0 0 0;
        border: 1px solid #493c33;
    }
    .prt_td1 {
        width: auto;
        margin: 0;
        background-color: #493c33;
        font-size: calc(28px + 1vw);
        line-height: 2;
        color: #fff;
        text-align: center;
    }
    .prt_td1 span {
        font-size: 0.7em;
    }
    .prt_td2 {
        width: 100%;
        margin: 0;
    }
    .prt_td2 p {
        width: 100%;
        margin: 0;
        text-align: center;
    }
    .prtd2_l1 {
        padding-top: 0.05em;
        padding-bottom: 0.05em;
        background-color: #edebea;
        font-size: calc(13px + 1vw);
        line-height: 2;
    }
    .prtd2_l2 {
        padding-top: 0.6em;
        padding-bottom: 0.6em;
        font-size: calc(15px + 1vw);
        line-height: 1.3;
    }
    .prt_td2 .price {
        font-size: calc(20px + 1vw);
    }
    .prt_td2 .price span {
        display: block;
        font-size: 0.6em;
        line-height: 1;
    }
    .pr_sampletitle {
        width: 100%;
        margin: 0;
        background-color: #493c33;
        font-size: calc(14px + 1vw);
        line-height: 2;
        text-align: center;
        color: #fff;
        border: 1px solid #493c33;
    }
    .pr_sample {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        width: 100%;
        margin: 0;
        padding-top: 12px;
        padding-bottom: 12px;
        border: 1px solid #493c33;
    }
    .gaikan img {
        width: 45%;
    }
    .naikan img {
        width: 90%;
    }
    .image img {
        width: 90%;
    }
    .pr_ex {
        width: 100%;
        margin: 48px 0 0 0;
    }
    .pr_ex p {
        margin: 0 0 1em 0;
        font-size: calc(13px + 1vw);
        line-height: 1.6;
        text-align: left;
    }
    .pr_ex span {
        display: inline-block;
    }
}


/*----------------------------------------------------------
制作料金
----------------------------------------------------------*/

@media screen and (min-width: 761px),
print {
    /* PC */
    .fl_block {
        display: flex;
        justify-content: left;
        align-items: start;
        width: 100%;
        margin: 24px 0 48px 0;
    }
    .fl_title {
        width: 140px;
        height: 64px;
        margin: 0;
        background-color: #493c33;
        font-size: 18px;
        line-height: 64px;
        text-align: center;
        color: #fff;
    }
    .fl_text {
        width: 98%;
        margin: 0 0 0 2%;
        border-top: 1px solid #493c33;
        font-size: 16px;
    }
    .fl_text p {
        margin: 0.5em 0;
        line-height: 1.65;
    }
    .flt_cap {
        padding-top: 1.5em;
        font-size: 18px;
        font-weight: bold;
    }
}

@media screen and (max-width: 760px) {
    /* SP */
    .fl_block {
        width: 100%;
        margin: 24px 0 40px 0;
    }
    .fl_title {
        width: 100%;
        height: 46px;
        margin: 0;
        background-color: #493c33;
        font-size: calc(18px + 1vw);
        line-height: 46px;
        text-align: center;
        color: #fff;
    }
    .fl_text {
        width: 100%;
        margin: 0;
        font-size: calc(14px + 1vw);
    }
    .fl_text p {
        margin: 0.5em 0;
        line-height: 1.7;
    }
    .flt_cap {
        padding-top: 1.5em;
        font-size: calc(16px + 1vw);
        font-weight: bold;
    }
}


/*----------------------------------------------------------
会社概要
----------------------------------------------------------*/

@media screen and (min-width: 761px),
print {
    /* PC */
    .ab_box {
        width: 80%;
        margin: 24px auto 0 auto;
        border-collapse: collapse;
        font-size: 15px;
        line-height: 1.6;
    }
    .ab_box th,
    td {
        padding: 0.8em 0.5em;
        border: 1px solid #493c33;
    }
    .ab_box th {
        background-color: #edebea;
        text-align: center;
    }
    .ab_box .td_mail {
        display: block;
        margin: 0;
        text-align: left;
        color: #000;
    }
    .ab_box td p {
        margin: 0;
    }
    .ab_box .td_link {
        display: block;
        margin: 1em 0 0 0;
        text-align: left;
        color: #000;
    }
}

@media screen and (max-width: 760px) {
    /* SP */
    .ab_box {
        width: 100%;
        margin: 24px 0 0 0;
        border-collapse: collapse;
        font-size: calc(14px + 1vw);
        line-height: 1.5;
        text-align: center;
    }
    .ab_box th,
    td {
        display: block;
    }
    .ab_box th {
        padding: 0.3em 0;
        background-color: #edebea;
    }
    .ab_box td {
        padding: 0.5em 0;
    }
    .ab_box .td_mail {
        display: block;
        margin: 0;
        text-align: center;
    }
    .ab_box td span {
        display: inline-block;
        font-size: 90%;
    }
    .ab_box td p {
        margin: 0;
        text-align: left;
    }
    .ab_box .td_link {
        display: block;
        margin: 2em 0 0 0;
        text-align: left;
    }
}


/*----------------------------------------------------------
プライバシーポリシー
----------------------------------------------------------*/

@media screen and (min-width: 761px),
print {
    /* PC */
    .pp_wrap {
        width: 80%;
        max-width: 900px;
        margin: 48px auto 0 auto;
        font-size: 14px;
        line-height: 1.6;
    }
    .pp_wrap p {
        width: 100%;
        margin: 24px 0 0 0;
        font-size: 16px;
        font-weight: bold;
    }
}

@media screen and (max-width: 760px) {
    /* SP */
    .pp_wrap {
        width: 100%;
        margin: 24px auto 0 auto;
        font-size: calc(13px + 1vw);
        line-height: 1.6;
    }
    .pp_wrap p {
        width: 100%;
        margin: 24px 0 0 0;
        font-size: calc(15px + 1vw);
        font-weight: bold;
    }
}


/*----------------------------------------------------------
ウェブサイト
----------------------------------------------------------*/

@media screen and (min-width: 761px),
print {
    /* PC */
    .wd_pagetitle {
        width: 90%;
        margin: 120px auto 0 auto;
        border-bottom: 1px solid #6f6a63;
        font-size: 1;
        text-align: center;
    }
    .ws_content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: start;
        width: 80%;
        margin: 24px auto 0 auto;
    }
    .wsc_block {
        width: 40%;
        max-width: 396px;
        margin: 16px auto 24px auto;
        padding: 8px;
        text-align: center;
    }
    .wsc_block img {
        width: 100%;
        margin: 0;
    }
    .wsc_block a {
        display: block;
        width: 100%;
        height: 100%;
        margin: 0;
        color: #000;
        text-decoration: none;
    }
    .wsc_block:hover {
        box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        transition-duration: 0.2s;
    }
    .wsc_block p {
        margin: 4px 0 0 0;
        font-size: 15px;
        line-height: 1.5;
        text-align: center;
    }
    .wsc_block p span {
        display: block;
        font-size: 13px;
    }
}

@media screen and (max-width: 760px) {
    /* SP */
    .wd_pagetitle {
        width: 90%;
        margin: 80px auto 0 auto;
        border-bottom: 1px solid #6f6a63;
        font-size: calc(12px + 1vw);
        line-height: 1.2;
        text-align: center;
    }
    .ws_content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: start;
        width: 95%;
        margin: 8px auto 0 auto;
    }
    .wsc_block {
        width: 95%;
        max-width: 380px;
        margin: 24px auto 8px auto;
        text-align: center;
    }
    .wsc_block img {
        width: 100%;
        margin: 0;
    }
    .wsc_block a {
        display: block;
        width: 100%;
        height: 100%;
        margin: 0;
        color: #000;
        text-decoration: none;
    }
    .wsc_block p {
        margin: 4px 0 0 0;
        font-size: calc(13px + 1vw);
        line-height: 1.6;
        text-align: center;
    }
    .wsc_block p span {
        display: block;
        font-size: calc(10px + 1vw);
    }
}


/*----------------------------------------------------------
　　TOPボタン
----------------------------------------------------------*/

.fadeInUp {
    -webkit-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 750ms;
    -ms-animation-duration: 750ms;
    animation-duration: 750ms;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    visibility: visible !important;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@media screen and (min-width: 761px),
print {
    /* PC */
    .topbutton {
        z-index: 200;
        position: fixed;
        width: 100%;
        height: 50px;
        bottom: 28px;
        left: 0;
    }
    .tb_content {
        width: 98%;
        height: 100%;
        margin: 0 auto;
        padding-right: 1%;
        text-align: right;
    }
    .pagetop {
        display: block;
        width: 48px;
        height: 48px;
        margin: 0 0 0 auto;
        padding-top: 12px;
        border: 3px solid #4a3f39;
        border-radius: 8px;
        background-color: rgba(255, 255, 255, 0.6);
    }
    .triangle {
        width: 0;
        height: 0;
        margin: auto;
        border-style: solid;
        border-right: 12px solid transparent;
        border-left: 12px solid transparent;
        border-bottom: 18px solid #4a3f39;
        border-top: 0;
    }
}

@media screen and (max-width: 760px) {
    /* SP */
    .topbutton {
        z-index: 200;
        position: fixed;
        width: 100%;
        height: 52px;
        bottom: 36px;
        left: 0;
    }
    .tb_content {
        width: 92%;
        height: 100%;
        margin: 0 auto;
        text-align: right;
    }
    .pagetop {
        display: block;
        width: 50px;
        height: 50px;
        margin: 0 0 0 auto;
        padding-top: 12px;
        border: 3px solid #4a3f39;
        border-radius: 8px;
        background-color: rgba(255, 255, 255, 0.6);
    }
    .triangle {
        width: 0;
        height: 0;
        margin: auto;
        border-style: solid;
        border-right: 13px solid transparent;
        border-left: 13px solid transparent;
        border-bottom: 20px solid #4a3f39;
        border-top: 0;
    }
}


/*----------------------------------------------------------
footer
----------------------------------------------------------*/

@media screen and (min-width: 761px),
print {
    /* PC */
    footer {
        display: flex;
        flex-wrap: wrap;
        justify-content: left;
        align-items: center;
        width: 100%;
        margin: 48px 0 0 0;
        padding-top: 16px;
        background-color: #4a3f39;
        color: #fff;
    }
    .ft_l1 {
        width: 50%;
        margin: 0;
        padding-left: 20px;
        padding-bottom: 8px;
        font-size: 13px;
        line-height: 1.2;
    }
    .ft_l1 p {
        margin: 0.5em auto 0 0;
    }
    .ft_l1 p span {
        display: inline-block;
    }
    .ft_l1 a {
        color: #fff;
    }
    .ft_l2 {
        width: 50%;
        margin: 0;
        padding-right: 32px;
        text-align: center;
        font-size: 13px;
        line-height: 1;
    }
    .ft_l2 ul {
        display: block;
        width: 100%;
        margin: 0;
        text-align: center;
    }
    .ft_l2 ul li {
        display: inline-block;
        list-style-type: none;
        margin: 0 1em;
    }
    .ft_l2 ul li a {
        color: #fff;
        text-decoration: none;
    }
    .ft_privacy {
        display: block;
        width: 100%;
        margin: 1.5em 0 0 0;
        color: #fff;
        text-decoration: none;
        text-align: center;
    }
    .ft_l3 {
        width: 100%;
        margin: 16px 0 0 0;
        padding-bottom: 8px;
        text-align: center;
        font-size: 13px;
        line-height: 3;
        background-color: #6f6a63;
    }
}

@media screen and (max-width: 760px) {
    /* Sp */
    footer {
        width: 100%;
        margin: 48px 0 0 0;
        padding: 16px 0 0 0;
        background-color: #4a3f39;
        color: #fff;
    }
    .ft_l1 {
        width: 93%;
        margin: 0 auto;
        padding-bottom: 8px;
        font-size: calc(10px + 1vw);
        line-height: 1.2;
    }
    .ft_l1 p {
        margin: 0.55em auto 0 0;
    }
    .ft_l1 p span {
        display: inline-block;
    }
    .ft_l1 a {
        color: #fff;
    }
    .ft_l2 {
        width: 93%;
        margin: 32px auto 0 auto;
        padding-bottom: 16px;
        text-align: left;
        font-size: calc(10px + 1vw);
        line-height: 1;
    }
    .ft_l2 ul {
        display: block;
        width: 100%;
        margin: 0 0 0 -1em;
        text-align: left;
    }
    .ft_l2 ul li {
        display: block;
        list-style-type: none;
        margin: 1.25em 0;
    }
    .ft_l2 ul li a {
        color: #fff;
        text-decoration: none;
    }
    .ft_privacy {
        display: block;
        width: 100%;
        margin: 1em 0 0 0;
        padding-left: 2em;
        color: #fff;
        text-decoration: none;
        text-align: left;
    }
    .ft_l3 {
        width: 100%;
        margin: 16px 0 0 0;
        padding-bottom: 8px;
        text-align: center;
        font-size: calc(10px + 1vw);
        line-height: 3.5;
        background-color: #6f6a63;
    }
}