@charset "UTF-8"; /*==========================

共通

===========================*/
* {
    box-sizing: border-box;
}

body {
    font-family: "游ゴシック体",YuGothic,"游ゴシック","Yu Gothic","メイリオ",sans-serif;
    background-color: #fff;
    color: #000;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

a:link {
    color: #000;
    transition: 0.2s;
    text-decoration: none;
}

a:visited {
    color: #000;
}

a:hover {
    transition: 0.2s;
    opacity: 0.7;
}

a:active {
    color: #000;
}

img {
    display: block;
}

.small {
    font-size: 0.8em;
}

.pc_only {
    display: block!important;
}

.sp_only {
    display: none!important;
}

.bold {
    font-weight: 600;
}

h2 img {
    margin: 0 auto;
    height: 40px;
}

img.p2em {
    margin-top: 2em;
    display: inline-block;
    height: 40px;
}

img.btn {
    display: inline-block;
}

@media screen and (max-width: 960px) {
    body {
        font-size: 13px;
    }

    .pc_only {
        display: none!important;
    }

    .sp_only {
        display: block!important;
    }

    img {
        max-width: 100%;
    }

    h2 img {
        margin: 0 auto;
        height: 28px;
    }

    img.p2em {
        margin-top: 1em;
        display: inline-block;
        height: 28px;
    }

    img.btn {
        display: inline-block;
        width: 70%;
        padding: 1em;
        max-width: 305px;
    }
}

/*==========================

レイアウト

===========================*/
.page-content {
    margin-left: 250px;
}

.left-nav {
    width: 250px;
    position: fixed;
    height: 100%;
    border-right: 2px solid #000;
    z-index: 200;
    top: 0;
    left: 0;
}

.navbox {
    margin-top: 70px;
    padding: 0 40px;
}

.navbox ul {
    margin-top: 40px;
}

.navbox li {
    padding: 20px 0;
    font-size: 15px;
    font-weight: bold;
}

.navbox img {
    width: 100%;
    border-bottom: 2px solid #000;
}

.nav_img {
    padding: 0 20px 70px;
}

.left-nav-sns {
    position: fixed;
    bottom: 35px;
    margin: auto;
    width: 250px;
    display: flex;
    justify-content: center;
}

.left-nav-sns img {
    width: 60px;
    margin: 0 10px;
}

.left-nav-sns img:hover {
    opacity: 0.7;
}

.container {
    max-width: 1200px;
}

section {
    border-bottom: 2px solid #000;
}

section h2 {
    font-weight: bold;
    font-size: 26px;
    letter-spacing: 0.2em;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    margin: auto;
}

.title {
    display: flex;
    position: relative;
    margin: 2em auto 3em;
}

.wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 50px;
}

@media screen and (max-width: 960px) {
    .page-content {
        margin-left: 0;
    }
}

@media screen and (min-width: 768px) and (max-width: 1025px) {
    .container {
        width: 100%;
        padding: 0 3%;
    }
}

@media screen and (max-width: 768px) {
    .wrap {
        max-width: 100%;
        padding: 0 15px;
    }

    .container {
        width: 100%;
        padding: 0 3%;
    }

    section h2 {
        font-size: 20px;
    }
}

/*==========================

ヘッダー

===========================*/
header {
    margin-left: 250px;
    position: relative;
    /* height: 100px; */
    padding: 15px 20px;
}

h1 {
    font-size: 1.8vw;
    text-align: center;
    margin: 0;
    order: 2;
}

#header_group {
    /* position: relative; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header_group .logo {
    text-align: center;
}

#header_group .logo img {
    display: inline-block;
    width: 180px;
}

img.top_btn {
    position: absolute;
    top: -15px;
    right: 3%;
    width: 200px;
}

header nav {
    display: none;
}

.header-btn {
    /* position: absolute; */
    /* right: 20px; */
    /* top: 0; */
    /* bottom: 0; */
    /* margin: auto; */
    height: 62px;
    border: 2px solid #000;
    width: 150px;
    font-weight: bold;
    text-align: center;
    line-height: 62px;
    letter-spacing: 0.1em;
    font-size: 16px;
    /* background-color: #000; */
    order: 3;
    display: inline-block;
}

.header-btn a {
    color: #000;
}

@media screen and (max-width: 960px) {
    header {
        margin-left: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: auto;
        padding: 10px;
    }

    #header_group .logo img {
        display: inline-block;
        height: auto;
        width: 140px;
        text-align: left;
    }

    #header_group {
        padding-left: 1%;
        display: block;
    }

    #header_group .logo {
        text-align: left;
    }

    #header_group h1 {
        text-align: left;
        font-size: 11px;
        margin: 0 0 5px 0;
    }
}

/*ハンバーガーメニュー*/
@media screen and (max-width: 960px) {
    /*メニュー部分*/ header nav {
        display: none;
        position: absolute;
        top: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255,255,255,0.93);
        right: 0;
        z-index: 10;
    }

    header nav ul {
        display: block;
        width: 90%;
        height: 480px;
        position: absolute;
        top: 30px;
        right: 0px;
        bottom: 0px;
        left: 0px;
        margin: auto;
    }

    header nav ul li {
        padding: 1.8em 1em 1.3em 0em;
        margin-left: 38%;
        text-align: right;
        border-bottom: solid 2px #000;
        font-size: 15px;
        font-weight: bold;
    }

    header nav ul li img {
        text-align: right;
        display: inline-block;
        height: 6vw;
        max-height: 28px;
    }

    header nav ul li:last-child {
        border: none;
    }

    header nav ul li a {
        display: block;
        color: #3e2c13;
    }
}

@media screen and (max-width: 960px) {
    /*開閉ボタン*/ #nav_toggle {
        display: block;
        width: 40px;
        height: 40px;
        position: relative;
        top: 9px;
        right: 18px;
        z-index: 100;
    }

    #nav_toggle div {
        position: relative;
    }

    #nav_toggle span {
        display: block;
        height: 3px;
        background: #000;
        position: absolute;
        width: 100%;
        left: 0;
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }

    #nav_toggle span:nth-child(1) {
        top: 0px;
    }

    #nav_toggle span:nth-child(2) {
        top: 12px;
    }

    #nav_toggle span:nth-child(3) {
        top: 24px;
    }

    /*開閉ボタンopen時*/
    .open #nav_toggle span:nth-child(1) {
        top: 12px;
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    .open #nav_toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }

    .open #nav_toggle span:nth-child(3) {
        top: 12px;
        -webkit-transform: rotate(-135deg);
        -moz-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }
}

/*==========================

フッター

===========================*/
footer {
    color: #000;
    text-align: center;
    margin-left: 250px;
}

footer .footer_group ul {
    padding: 3em 0 0;
}

footer .footer_group ul li {
    padding: 0 3em 2em;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
}

footer .footer_group ul li img {
    height: 30px;
    width: auto;
    display: inline-block;
}

footer img.logo {
    display: inline-block;
    width: 250px;
}

footer .footer_group p {
    margin: 0 auto;
}

footer .footer-sns img {
    display: none;
}

.copy p {
    font-size: 10px;
    color: #333;
    text-align: center;
    margin: 1em auto;
}

@media (max-width: 960px) {
    footer {
        margin-left: 0;
    }

    footer .footer_group ul {
        padding: 2em 0;
        margin: 0 auto;
    }

    footer .footer_group ul li {
        padding: 1em 0;
        display: block;
        font-size: 14px;
    }

    footer .footer-sns {
        display: flex;
        justify-content: center;
    }

    footer .footer-sns p {
        margin: 0;
    }

    footer .footer-sns img {
        display: block;
        padding: 0;
        margin: 1em 15px 4em;
        width: 50px;
    }

    footer img.logo {
        width: 150px;
    }

    .copy p {
        font-size: 9px;
    }
}

/*==========================ここからページコンテンツ===========================*/
/*==========================

メインビジュアル

===========================*/
#mainVisual {
    border-bottom: #000 2px solid;
}

.fv {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.fv > img {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 3;
    width: 550px;
}

.swiper-container, .swiper-slide {
    width: 100%;
    height: 600px;
}

#mainVisual .swiper-slide > img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.page-title {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    z-index: 5;
}

.page-title p {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    padding: 0 2em;
    text-shadow: 0 0 10px rgba(0,0,0,0.6);
}

@media screen and (max-width: 960px) {
    .fv {
        min-height: 208px;
    }

    #mainVisual .swiper-slide > img {
        height: 75vw;
        min-height: 250px;
    }

    .fv > img {
        width: 62%;
    }

    #mainVisual .swiper-container, .swiper-slide {
        height: auto;
    }

    .page-title {
        bottom: 20px;
    }

    .page-title p {
        font-size: 20px;
        font-weight: bold;
        color: #fff;
        padding: 0 2em;
    }
}

/*==========================

INFO

===========================*/
#info {
    padding: 5em 0;
    text-align: center;
}

#info p {
    font-size: 22px;
    font-weight: bold;
    margin: auto;
    letter-spacing: 0.05em;
    line-height: 1.8;
}

@media screen and (max-width: 767px) {
    #info {
        padding: 4em 0;
        text-align: center;
    }

    #info p {
        font-size: 16px;
    }
}

/*==========================

TRIMAP（トリマップ）とは

===========================*/
#what {
    padding: 3em 0;
    text-align: center;
}

#what .txt {
    margin: 0 auto;
    padding-bottom: 3em;
    text-align: left;
    letter-spacing: 0.02em;
}

.biger {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.1em;
    text-align: center;
    padding-top: 1.5em;
}

#what .pr {
    display: flex;
    align-items: baseline;
    justify-content: center;
    padding-top: 1em;
}

#what .pr li {
    padding: 0.5em;
    flex: 3;
    text-align: center;
}

#what .pr li img {
    width: auto;
    height: 80px;
    margin: 0 auto;
}

#what .pr li p {
    font-size: 16px;
    padding-top: 1em;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    #what {
        padding: 2em 3%;
    }

    #what p {
        padding: 1em 0;
    }

    #what .pr li {
        padding: 1em;
    }

    #what .pr li img {
        width: auto;
        height: 50px;
        margin: 0 auto;
    }

    #what .pr li p {
        font-size: 14px;
        padding-top: 1em;
    }

    .biger {
        font-size: 17px;
        padding-top: 0;
    }
}

/*==========================

お知らせ

===========================*/
#news {
    padding: 3em 0;
    text-align: center;
}

#news ul {
    margin: 3em 0;
}

#news li {
    margin: 0 auto;
    text-align: left;
    border-top: solid 2px #e4e4e4;
    font-size: 16px;
    font-weight: 700;
    padding: 20px 0;
}

#news li:last-child {
    border-bottom: solid 2px #e4e4e4;
}

#news li .date {
    font-weight: normal;
    background-color: #000;
    color: #fff;
    padding: 2px 8px;
    margin-right: 2em;
    margin-left: 15px;
    font-size: 14px;
}

#news ul li p {
    padding: 0.7em 15px 0;
    font-size: 14px;
    font-weight: normal;
    margin: 0;
}

#news ul li .red {
    font-weight: 700;
}

#news ul li .u-line {
    text-decoration: underline;
}

@media screen and (max-width: 767px) {
    #news {
        padding: 2em 3%;
    }

    #news ul {
        margin: 2em 0;
    }

    #news li {
        font-size: 14px;
        padding-bottom: 15px
    }

    #news li .date {
        margin-right: 1em;
        margin-left: 0;
        font-size: 13px;
    }

    #news ul li p {
        padding: 1em 0 0;
        font-size: 13px;
    }
}

/*==========================

作成事例はこちら

===========================*/
#art {
    padding: 3em 0;
    text-align: center;
}

#art p {
    padding: 1em 0;
}

@media screen and (max-width: 767px) {
    #art {
        padding: 2em 0;
    }

    #art p {
        padding: 1em 0;
    }

    #art .wrap-txt {
        padding: 1em 30px;
    }
}

/*==========================
作成事例スライダー
===========================*/
#art .swiper02 {
    margin: 2em 0;
}

#art .swiper-container, #art .swiper-slide {
    width: inherit;
    height: inherit!important;
}

#art .swiper-slide {
    cursor: pointer;
}

#art .swiper-slide img {
    width: 100%;
}

.swiper02 .swiper-button-prev, .swiper02 .swiper-button-next {
    display: none;
}

@media (min-width: 960px) {
    .swiper02 .swiper-button-prev, .swiper02 .swiper-button-next {
        display: none;
    }
}

.btn-normal {
    font-size: 16px;
    font-weight: bold;
    padding: 10px 0;
    border: 1px solid;
    margin: 2em auto;
    display: inline-block;
    width: 220px;
    letter-spacing: 0.1em;
}

.btn-normal:hover {
    opacity: inherit;
    background-color: #000;
    color: #fff;
}

@media (max-width: 767px) {
    .btn-normal {
        font-size: 14px;
        width: 200px;
    }
}

/*==========================

制作料金

===========================*/
#price {
    padding: 3em 0;
    text-align: center;
}

#price .wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

@media screen and (max-width: 768px) {
    #price .wrap {
        max-width: 100%;
        padding: 0 15px;
    }
}

#price .pr {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding-top: 2em;
}

#price .pr li {
    flex: 3;
    margin: 0 2.5%;
}

#price .pr h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 2em;
    position: relative;
    z-index: 5;
}

#price .pr h3 span {
    background-color: #fff;
    position: relative;
    padding: 0 1em;
}

#price .pr h3::before {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #000;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 0;
}

#price .pr img {
    width: 100%;
}

#price .now {
    width: 860px;
    margin: 0 auto;
}

#price img.town {
    padding-top: 2em;
    width: 100%;
}

@media (max-width: 767px) {
    #price {
        padding: 2em 3%;
    }

    #price .pr {
        display: block;
        padding: 1em 0 0;
    }

    #price .pr li {
        width: 90%;
        max-width: 300px;
        margin: 0 auto 4em;
    }

    #price .pr h3 {
        font-size: 16px;
        margin-bottom: 1em;
    }

    #price .pr li img {
        width: 100%;
        margin: 0 auto;
    }

    #price img.town {
        display: none;
    }
}
