@charset "utf-8";

/* CSSリセット */
html,
body,
h1,
h2,
h3,
p,
dl,
dt,
dd,
ul,
li {
    margin: 0;
    padding: 0;
    line-height: 1;

    /* デフォルトの文字色、font-familiyを予め当てておく */
    color: #6b6b6b;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ",
        "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    font-feature-settings: "palt";
}

a {
    /* 下線を消す */
    text-decoration: none;

    /* 色を消す */
    color: inherit;

    transition: 0.3s;
}

a:hover {
    opacity: 0.5;
}

ul {
    /* 左の「・」を消す */
    list-style: none;
}

img {
    max-width: 100%;
    vertical-align: bottom;
    border: none;
}
/* ここまで */

html {
    scroll-behavior: smooth;
}

#first_view {
    width: 100%;
    height: 100vh;
}

#first_view::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background: url("../images/firstview_1_pc.jpg") no-repeat center;
    background-size: cover;
    padding: 20px 40px;
    box-sizing: border-box;
}

h1 {
    position: initial;
    transform: initial;
    text-shadow: none;
    font-family: "Parisienne", cursive;
    font-size: 40px;
    font-weight: lighter;
}

#header {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    transition: padding 0.3s;
}

#header.scroll {
    padding: 10px 40px;
}

#header.transform {
    background: rgba(255, 255, 255, 0.7);
    padding: 30px;
}

.header_wrap {
    position: absolute;
    top: 0;
    right: 0;
    padding: 24px 7% 0 2.8%;
}

.pc_nav ul {
    display: flex;
}

.pc_nav ul li {
    width: 105px;
    margin-left: 55px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.2em;
}

.pc_nav ul li.fixed {
    position: fixed;
    top: 0;
}

.section_inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
/* サービス */
#service {
    padding: 70px 0;
    background: #e1edf3;
}

.caption_name {
    text-align: center;
    padding-bottom: 60px;
    font-family: "Parisienne", cursive;
    font-size: 48px;
    font-weight: lighter;
}

.sub_title {
    padding-bottom: 30px;
    font-weight: lighter;
}

.webdesign {
    width: 40%;
    text-align: center;
    padding: 0 20px;
}

.webdesign img {
    height: 130px;
    padding-bottom: 20px;
}

.graphicdesign {
    width: 40%;
    text-align: center;
    padding: 0 20px;
}

.graphicdesign img {
    height: 130px;
    padding-bottom: 20px;
}

.service_detail {
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
}

#summary {
    padding: 70px 0;
    text-align: center;
    background: #f0e7fb;
}

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

#works {
    background: #f6f7f8;
    padding: 100px 0;
}

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

.works_1 {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 70px;
    padding: 0 10px;
}

.works_1 img {
    width: 338px;
}

.works_1 p {
    padding-top: 10px;
}

.works_2 {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 70px;
    padding: 0 10px;
}

.works_2 img {
    width: 338px;
}

.works_2 p {
    padding-top: 10px;
}

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

.works_3 {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 70px;
    padding: 0 10px;
}

.works_3 img {
    width: 338px;
}

.works_3 p {
    padding-top: 10px;
}

.works_4 {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 70px;
    padding: 0 10px;
}

.works_4 img {
    width: 338px;
}

.works_4 p {
    padding-top: 10px;
}

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

.works_5 {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 70px;
    padding: 0 10px;
}

.works_5 img {
    width: 338px;
}

.works_5 p {
    padding-top: 10px;
}

.works_6 {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 70px;
    padding: 0 10px;
}

.works_6 img {
    width: 338px;
}

.works_6 p {
    padding-top: 10px;
}

.btn {
    border: none;
    color: #ffeff0;
    background: #6b6b6b;
    border-radius: 32px;
    padding: 15px 50px;
    margin-bottom: 100px;
    transition: 0.3s;
}

.btn:hover {
    cursor: pointer;
    opacity: 0.5;
}

footer {
    background: #6b6b6b;
}

.footer_copy {
    text-align: center;
    color: #ffeff0;
    padding-top: 200px;
    padding-bottom: 20px;
    left: 0;
    right: 0;
    font-size: 12px;
}

/* スマホ版メニューを消す */
.sp_nav,
.sp_btn {
    display: none;
}

@media screen and (max-width: 1100px) {
    .footer_copy {
        font-size: 14px;
    }

    .pc_nav ul li {
        font-size: 12px;
    }
}

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

@media screen and (max-width: 767px) {
    .pc_nav {
        display: none;
    }

    /* ハンバーガー */
    .sp_btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 25px;
        height: 23px;
        cursor: pointer;
        z-index: 2;
    }

    .sp_btn span {
        display: block;
        background: #444;
        width: 32px;
        height: 1px;
        border-radius: 1px;
        position: relative;
        top: 15px;
        transition: 0.3s;
    }

    .sp_btn span::before,
    .sp_btn span::after {
        content: "";
        display: block;
        background: #444;
        width: 32px;
        height: 1px;
        border-radius: 1px;
        position: absolute;
        transition: 0.3s;
    }

    .sp_btn span::before {
        bottom: 10px;
    }

    .sp_btn span::after {
        top: 10px;
    }

    /* ハンバーガー　閉じる */
    .sp_btn.open span {
        background: transparent;
    }

    .sp_btn.open span::before {
        bottom: 0;
        transform: rotate(45deg);
    }

    .sp_btn.open span::after {
        top: 0;
        transform: rotate(135deg);
    }

    /* ハンバーガーメニュー */
    .sp_nav {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(12px);
        z-index: 1;
    }

    .sp_nav ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .sp_nav ul li {
        padding: 40px 0;
        color: #444;
        font-weight: bold;
        letter-spacing: 0.2em;
    }

    .first_view {
        background: url("../images/firstview_1_sp.jpg") center / cover;
    }

    .section_inner {
        padding: 0 20px;
    }

    h1 {
        font-size: 20px;
    }

    .concept {
        font-size: 14px;
    }

    #summary {
        padding: 50px 0;
    }

    /* サービス */
    .service_content {
        display: block;
    }

    .webdesign {
        width: 90%;
        padding-bottom: 60px;
    }

    .graphicdesign {
        width: 90%;
        padding-bottom: 60px;
    }

    .works_content {
        display: block;
    }

    .clamp_1{
        display: block;
    }

    .clamp_2{
        display: block;
    }

    .clamp_3{
        display: block;
    }

    .works_1 {
        margin-bottom: 50px;
    }

    .works_2 {
        margin-bottom: 50px;
    }

    .works_3 {
        margin-bottom: 50px;
    }

    .works_4 {
        margin-bottom: 50px;
    }

    .contact_form {
        overflow: hidden;
    }

    .footer_wrap img {
        width: 100%;
    }

    .footer_copy {
        font-size: 12px;
    }
}

/* works*/

body {
    background: #f6f7f8;
}

.section_inner_works {
    max-width: 600px;
    margin: 200px auto 0;
}

.works_title {
    font-family: "Parisienne", cursive;
    font-size: 48px;
    font-weight: lighter;
    text-align: center;
    padding-bottom: 100px;
}

.works_outline {
    margin-bottom: 50px;
}

.works_outline dl {
    display: flex;
    font-size: 16px;
}

.works_outline dt {
    font-weight: medium;
    width: 25%;
    padding: 16px 8px;
    border-bottom: 1px solid #c3c3c3;
    box-sizing: border-box;
}

.works_outline dd {
    width: 75%;
    padding: 16px 8px;
    border-bottom: 1px solid #c3c3c3;
    box-sizing: border-box;
    margin: 0;
}

.works_subtitle {
    text-align: left;
    border-bottom: 1px solid #6b6b6b;
    padding-bottom: 20px;
}

.works_detail {
    font-size: 16px;
    line-height: 1.8;
    padding: 20px 0 100px 0;
    text-align: left;
}

.backBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    position: relative;
    border: none;
    background: #6b6b6b;
    color: #f6f7f8;
    text-align: center;
    border-radius: 32px;
    padding: 15px 50px;
    width: 60px;
    margin: 0 auto 100px;
    transition: 0.3s;
}

.backBtn::after {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 1px solid #f6f7f8;
    border-right: 1px solid #f6f7f8;
    transform: rotate(45deg);
    position: absolute;
    right: 25px;
}

.backBtn:hover {
    cursor: pointer;
}

.works_footer_copy {
    text-align: center;

    padding-top: 200px;
    padding-bottom: 20px;
    left: 0;
    right: 0;
    font-size: 12px;
}

.works_footer_copy p {
    color: #f6f7f8;
}

@media screen and (max-width: 767px) {
    .section_inner_works {
        max-width: 316px;
        margin: 150px auto 0;
    }

    .works_outline dl {
        font-size: 14px;
    }

    .works_detail {
        font-size: 14px;
    }
}

/* バナー一覧 */
.banner_1 {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 70px;
    padding: 0 10px;
}

.banner_1 img {
    width: 338px;
}

.banner_1 p {
    padding-top: 10px;
}

.banner_2 {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 70px;
    padding: 0 10px;
}

.banner_2 img {
    width: 338px;
}

.banner_2 p {
    padding-top: 10px;
}

.banner_3 {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 70px;
    padding: 0 10px;
}

.banner_3 img {
    width: 338px;
}

.banner_3 p {
    padding-top: 10px;
}

.banner_4 {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 70px;
    padding: 0 10px;
}

.banner_4 img {
    width: 400px;
}

.banner_4 p {
    padding-top: 10px;
}

.banner_5 {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 70px;
    padding: 0 10px;
}

.banner_5 img {
    width: 450px;
}

.banner_5 p {
    padding-top: 10px;
}

.banner_6 {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 70px;
    padding: 0 10px;
}

.banner_6 img {
    width: 450px;
}

.banner_6 p {
    padding-top: 10px;
}

@media screen and (max-width: 767px) {
    .banner_1 {
        margin-bottom: 50px;
    }

    .banner_2 {
        margin-bottom: 50px;
    }

    .banner_3 {
        margin-bottom: 50px;
    }

    .banner_4 {
        margin-bottom: 50px;
    }
}

/* バナー詳細 */

.banner_img {
    width: 400px;
    padding-bottom: 50px;
    margin: 0 auto;
}

.banner_img_1 {
    width: 500px;
    padding-bottom: 50px;
    margin: 0 auto;
}

.banner_img_2 {
    width: 600px;
    padding-bottom: 50px;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .banner_img {
        width: 320px;
        
    }

    .banner_img_1 {
        width: 320px;
    }

    .banner_img_2 {
        width: 330px;
    }
}

/* LINEリッチメニュー詳細 */
.works2_img_1 {
    width: 400px;
    padding-bottom: 50px;
    margin: 0 auto;
}

.works2_img_2 {
    width: 500px;
    padding-bottom: 100px;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .works2_img_1 {
        width: 300px;
        
    }

    .works2_img_2 {
        width: 300px;
    }
}

/* ショップカード詳細 */
.works3_img {
    width: 500px;
    padding-bottom: 100px;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .works3_img {
        width: 320px;
        
    }
}

/* ロゴ一覧 */

.logo_1 {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 70px;
    padding: 0 10px;
}

.logo_1 img {
    width: 380px;
}

.logo_1 p {
    padding-top: 10px;
}

.logo_2 {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 70px;
    padding: 0 10px;
}

.logo_2 img {
    width: 380px;
}

.logo_2 p {
    padding-top: 10px;
}

/* ロゴ詳細 */
.logo1_slider {
    padding-bottom: 100px;
}

.logo2_slider {
    padding-bottom: 100px;
}

/* リーフレット詳細 */
.leaflet1_slider {
    padding-bottom: 100px;
}

/* イラスト詳細 */
.works6_img {
    padding-bottom: 100px;
}
/* ここまで */