@charset "UTF-8";

/*-----------------------------------------------------*/
/* PC用 */
/*-----------------------------------------------------*/
@media only screen and (min-width: 1181px) {

body {
    background-color: #fff;
    width: 100%;
    font-family: "Noto Sans JP", serif;
    color: black;
}

img {
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-touch-callout: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-touch-callout: none
}

.header {
    /* background-color: blueviolet; */
    width: 90%;
    margin: 60px auto 60px auto;
    text-align: center;
    display: flex;
    align-items: center;
}

.header1 {
    /* background-color: #ccc; */
    width: 20%;
}

.header1 img {
    width: 100%;
}

.header2 {
    /* background-color: cornflowerblue; */
    width: 50%;
    /* margin-top: 30px; */
    text-align: justify;
    padding-left: 2.5%;
}

.header2 h1 {
    font-size: 42px;
    font-weight: normal;
    text-align: center;
}

.btn,
a.btn,
button.btn {
    line-height: 1.5;
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    border-radius: 0.5rem;
}

.btn-contact {
    width: 30%;
    font-size: 24px;
    font-weight: normal;
    text-decoration: none;
    display: block;
    text-align: center;
    text-decoration: none;
    margin: auto;
    padding: 20px 40px;
    background: #ffae3c;
    color: #fff;
    border-radius: 100vh;
    transition: 0.5s;
    box-sizing: border-box;
    letter-spacing: 1.5px;
    border: 5px solid #ffae3c;
}

.btn-contact:hover {
    color: #ffae3c;
    background: #fff;
}

.top {
    width: 100%;
}

/* ↓6-1-8スライダーコピペ------------------------------------- */

/*==================================================
スライダーのためのcss
===================================*/
.slider img {
    width: 100%;
    /*スライダー内の画像を横幅100%に*/
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin: 0 0;
    /*スライド左右の余白調整*/
}


/*========= レイアウトのためのCSS ===============*/

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ↑6-1-8スライダーコピペ------------------------------------- */

.about {
    width: 100%;
    margin: 200px auto 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 45px;
    font-weight: normal;
}

.about1 {
    width: 100%;
    margin-top: 70px;
    display: flex;
}

.about2 {
    /* background-color: #ffae3c; */
    width: 50%;
    height: 500px;
}

.about2 img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about3 {
    width: 50%;
    text-align: left;
    padding-left: 3%;
    margin-top: 4%;
}

.about3 p {
    font-size: 154%;
    letter-spacing: 1.5px;
    line-height: 50px;
}

.works {
    width: 100%;
    margin: 200px auto 0 auto;
    text-align: center;
}

h3 {
    font-size: 60px;
    font-weight: normal;
    text-align: center;
}

.wrapper {
    width: 85%;
    margin: 0 auto;
}

/* ↓6-2-3コピペ--------------------------------------------- */

/*==================================================
ギャラリーのためのcss
===================================*/
/*＝＝＝並び替えボタンチェックマークのCSS*/
.sort-btn {
    padding: 20px;
    margin: 50px auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.sort-btn dt {
    font-weight: normal;
    margin: 0 0 10px 0;
    font-size: 20px;
    text-align: left;
    margin-left: -15px;
}

.sort-btn dd {
    margin: 0 0 10px 0;
    font-size: 25px;
}

.sort-btn ul {
    display: flex;
    flex-wrap: wrap;
    font-size: 25px;
}

.sort-btn li {
    margin: 0 10px;
}

.sort-btn ul li {
    position: relative;
    cursor: pointer;
    padding: 0 50px 0 30px;
    margin: 0 10px 0 0;
}

/*横幅が810px以下になった際の指定*/
@media only screen and (max-width: 810px) {
    .sort-btn li {
        width: 100%;
        margin: 0;
    }

    .sort-btn ul li {
        width: auto;
    }

}

/*チェックマークの設定*/
.sort-btn ul li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 30px;
    height: 30px;
    border: 2px solid #ccc;
    margin-left: -15px;
}

.sort-btn ul li.active::after {
    /*現在地＝activeというクラス名がついたらチェックマークを出現*/
    content: '';
    position: absolute;
    left: -8px;
    top: 9px;
    /*チェックマークの色や形*/
    border-left: 2px solid #333;
    border-bottom: 2px solid #333;
    width: 16px;
    height: 9px;
    transform: rotate(-45deg);
}

/*＝＝＝Muuriのレイアウトのための調整 */
.grid {
    position: relative;
    /*並び替えの基準点を指定*/
}

/*各画像の横幅などの設定*/
.item {
    display: block;
    position: absolute;
    width: 33%;
    /*横並びで3つ表示*/
    padding: 0 10px 10px 10px;
    /*画像に余白をつける*/
    z-index: 1;
}

/*内側のボックスの高さが崩れないように維持*/
.item-content {
    position: relative;
    width: 100%;
    height: 100%;
}

/*画像の横幅を100%にしてレスポンシブ化*/
.grid img {
    width: 90%;
    height: auto;
    vertical-align: bottom;
    /*画像の下にできる余白を削除*/
    padding-top: 50px;
}

/*横幅が768px以下になった際の指定*/
@media only screen and (max-width: 768px) {
    .item {
        width: 49.5%;
        /*横並びで2つ表示*/
        padding: 0 5px 10px 5px;
    }
}


/*＝＝＝fancyboxサムネイル背景と画像選択時の枠線の指定*/
.fancybox-thumbs {
    background: transparent !important;
}

.fancybox-thumbs__list a:before {
    border: 6px solid #FA999B;
}

/*========= レイアウトのためのCSS ===============*/
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    color: #333;
}

a:hover,
a:active {
    text-decoration: none;
}

/* ↑6-2-3コピペ--------------------------------------------- */

.contact {
    margin-top: 200px;
    margin-bottom: 150px;
}

.contact h3 {
    margin-bottom: 50px;
}

.footer {
    width: 100%;
    text-align: center;
    margin: 70px auto;
}

.footer p {
    font-size: 25px;
}

}


























/*-----------------------------------------------------*/
/* タブレット用のCSS */
/*-----------------------------------------------------*/
@media only screen and (min-width:600px) and (max-width:1180px) {

    body {
        background-color: #fff;
        width: 100%;
        font-family: "Noto Sans JP", serif;
        color: black;
    }

    img {
        pointer-events: none;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-touch-callout: none;
        -moz-user-select: none;
        user-select: none;
        -webkit-touch-callout: none
    }
    
    .header {
        /* background-color: blueviolet; */
        width: 90%;
        margin: 30px auto 60px auto;
        text-align: center;
        display: flex;
        align-items: center;
    }
    
    .header1 {
        /* background-color: #ccc; */
        width: 20%;
    }
    
    .header1 img {
        width: 100%;
    }
    
    .header2 {
        /* background-color: cornflowerblue; */
        width: 50%;
        /* margin-top: 30px; */
        text-align: justify;
        padding-left: 2.5%;
    }
    
    .header2 h1 {
        font-size: 25px;
        font-weight: normal;
        text-align: center;
    }
    
    .btn,
    a.btn,
    button.btn {
        line-height: 1.5;
        position: relative;
        display: inline-block;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        text-align: center;
        vertical-align: middle;
        text-decoration: none;
        letter-spacing: 0.1em;
        border-radius: 0.5rem;
    }
    
    .btn-contact {
        width: 30%;
        font-size: 15px;
        font-weight: normal;
        text-decoration: none;
        display: block;
        text-align: center;
        text-decoration: none;
        margin: auto;
        padding: 20px 15px;
        background: #ffae3c;
        color: #fff;
        border-radius: 100vh;
        transition: 0.5s;
        box-sizing: border-box;
        letter-spacing: 1.5px;
        border: 5px solid #ffae3c;
    }
    
    .btn-contact:hover {
        color: #ffae3c;
        background: #fff;
    }
    
    .top {
        width: 100%;
    }
    
    /* ↓6-1-8スライダーコピペ------------------------------------- */
    
    /*==================================================
    スライダーのためのcss
    ===================================*/
    .slider img {
        width: 100%;
        /*スライダー内の画像を横幅100%に*/
    }
    
    /*slickのJSで書かれるタグ内、スライド左右の余白調整*/
    
    .slider .slick-slide {
        margin: 0 0;
        /*スライド左右の余白調整*/
    }
    
    
    /*========= レイアウトのためのCSS ===============*/
    
    ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    /* ↑6-1-8スライダーコピペ------------------------------------- */
    
    .about {
        width: 100%;
        margin: 150px auto 0 auto;
        text-align: center;
    }
    
    .about h2 {
        font-size: 30px;
        font-weight: normal;
    }
    
    .about1 {
        width: 100%;
        margin-top: 30px;
    }
    
    .about2 {
        /* background-color: #ffae3c; */
        width: 80%;
        margin: 0 auto;
    }
    
    .about2 img {
        width: 100%;
    }
    
    .about3 {
        width: 80%;
        text-align: center;
        padding-left: 5%;
        padding-top: 3%;
        margin: 0 auto;
    }
    
    .about3 p {
        font-size: 23px;
        letter-spacing: 1.5px;
    }
    
    .works {
        width: 100%;
        margin: 150px auto 0 auto;
        text-align: center;
    }
    
    h3 {
        font-size: 35px;
        font-weight: normal;
        text-align: center;
    }
    
    .wrapper {
        width: 85%;
        margin: 0 auto;
    }
    
    /* ↓6-2-3コピペ--------------------------------------------- */
    
    /*==================================================
    ギャラリーのためのcss
    ===================================*/
    /*＝＝＝並び替えボタンチェックマークのCSS*/
    .sort-btn {
        /* background-color: #FA999B; */
        padding-left: 50px;
        margin: 50px auto 10px auto;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .sort-btn dt {
        /* background-color: blueviolet; */
        font-weight: normal;
        margin: 0 0 10px 0;
        font-size: 20px;
        text-align: left;
        margin-left: -15px;
    }
    
    .sort-btn dd {
        margin: 0 0 10px 0;
        font-size: 25px;
    }
    
    .sort-btn ul {
        display: flex;
        flex-wrap: wrap;
        font-size: 25px;
    }
    
    .sort-btn li {
        margin: 0 10px;
    }
    
    .sort-btn ul li {
        position: relative;
        cursor: pointer;
        padding: 0 50px 0 30px;
        margin: 0 10px 0 0;
    }
    
    /*横幅が810px以下になった際の指定*/
    @media only screen and (max-width: 810px) {
        .sort-btn li {
            width: 100%;
            margin: 0;
        }
    
        .sort-btn ul li {
            width: auto;
        }
    
    }
    
    /*チェックマークの設定*/
    .sort-btn ul li::before {
        content: '';
        position: absolute;
        left: 0;
        width: 30px;
        height: 30px;
        border: 2px solid #ccc;
        margin-left: -15px;
    }
    
    .sort-btn ul li.active::after {
        /*現在地＝activeというクラス名がついたらチェックマークを出現*/
        content: '';
        position: absolute;
        left: -8px;
        top: 9px;
        /*チェックマークの色や形*/
        border-left: 2px solid #333;
        border-bottom: 2px solid #333;
        width: 16px;
        height: 9px;
        transform: rotate(-45deg);
    }
    
    /*＝＝＝Muuriのレイアウトのための調整 */
    .grid {
        position: relative;
        /*並び替えの基準点を指定*/
    }
    
    /*各画像の横幅などの設定*/
    .item {
        display: block;
        position: absolute;
        width: 33%;
        /*横並びで3つ表示*/
        padding: 0 10px 10px 10px;
        /*画像に余白をつける*/
        z-index: 1;
    }
    
    /*内側のボックスの高さが崩れないように維持*/
    .item-content {
        position: relative;
        width: 100%;
        height: 100%;
    }
    
    /*画像の横幅を100%にしてレスポンシブ化*/
    .grid img {
        width: 90%;
        height: auto;
        vertical-align: bottom;
        /*画像の下にできる余白を削除*/
        padding-top: 50px;
    }
    
    /*横幅が768px以下になった際の指定*/
    @media only screen and (max-width: 768px) {
        .item {
            width: 49.5%;
            /*横並びで2つ表示*/
            padding: 0 5px 10px 5px;
        }
    }
    
    
    /*＝＝＝fancyboxサムネイル背景と画像選択時の枠線の指定*/
    .fancybox-thumbs {
        background: transparent !important;
    }
    
    .fancybox-thumbs__list a:before {
        border: 6px solid #FA999B;
    }
    
    /*========= レイアウトのためのCSS ===============*/
    ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    a {
        color: #333;
    }
    
    a:hover,
    a:active {
        text-decoration: none;
    }
    
    /* ↑6-2-3コピペ--------------------------------------------- */
    
    .contact {
        margin-top: 150px;
        margin-bottom: 150px;
    }
    
    .contact h3 {
        margin-bottom: 50px;
    }
    
    .footer {
        width: 100%;
        text-align: center;
        margin: 70px auto;
    }
    
    .footer p {
        font-size: 16px;
    }

}































/*-----------------------------------------------------*/
/* スマホ用のCSS */
/*-----------------------------------------------------*/
@media only screen and (max-width: 599px) {

    body {
        background-color: #fff;
        width: 100%;
        font-family: "Noto Sans JP", serif;
        color: black;
    }

    img {
        pointer-events: none;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-touch-callout: none;
        -moz-user-select: none;
        user-select: none;
        -webkit-touch-callout: none
    }
    
    .header {
        /* background-color: blueviolet; */
        width: 90%;
        margin: 30px auto 30px auto;
        text-align: center;
        display: flex;
        align-items: center;
    }
    
    .header1 {
        /* background-color: #ccc; */
        width: 20%;
    }
    
    .header1 img {
        width: 100%;
    }
    
    .header2 {
        /* background-color: cornflowerblue; */
        width: 50%;
        /* margin-top: 30px; */
        text-align: justify;
        padding-left: 2.5%;
    }
    
    .header2 h1 {
        font-size: 12px;
        font-weight: normal;
        text-align: center;
    }
    
    .btn,
    a.btn,
    button.btn {
        line-height: 1.5;
        position: relative;
        display: inline-block;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-transition: all 0s;
        transition: all 0s;
        text-align: center;
        vertical-align: middle;
        text-decoration: none;
        letter-spacing: 0.1em;
        border-radius: 0.5rem;
    }
    
    .btn-contact {
        width: 30%;
        font-size: 7px;
        font-weight: normal;
        text-decoration: none;
        display: block;
        text-align: center;
        text-decoration: none;
        margin: auto;
        padding: 10px 5px;
        background: #ffae3c;
        color: #fff;
        border-radius: 100vh;
        transition: 0s;
        box-sizing: border-box;
        letter-spacing: 1.5px;
        border: 5px solid #ffae3c;
    }
    
    .btn-contact:hover {
        color: #ffae3c;
        background: #fff;
    }
    
    .top {
        width: 100%;
    }
    
    /* ↓6-1-8スライダーコピペ------------------------------------- */
    
    /*==================================================
    スライダーのためのcss
    ===================================*/
    .slider img {
        width: 100%;
        /*スライダー内の画像を横幅100%に*/
    }
    
    /*slickのJSで書かれるタグ内、スライド左右の余白調整*/
    
    .slider .slick-slide {
        margin: 0 0;
        /*スライド左右の余白調整*/
    }
    
    
    /*========= レイアウトのためのCSS ===============*/
    
    ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    /* ↑6-1-8スライダーコピペ------------------------------------- */
    
    .about {
        width: 100%;
        margin: 80px auto 0 auto;
        text-align: center;
    }
    
    .about h2 {
        font-size: 16px;
        font-weight: normal;
    }
    
    .about1 {
        width: 100%;
        margin-top: 30px;
    }
    
    .about2 {
        /* background-color: #ffae3c; */
        width: 80%;
        margin: 0 auto;
    }
    
    .about2 img {
        width: 100%;
    }
    
    .about3 {
        width: 95%;
        text-align: center;
        padding-left: 5%;
        padding-top: 3%;
        margin: 0 auto;
    }
    
    .about3 p {
        font-size: 13px;
        letter-spacing: 1.5px;
    }
    
    .works {
        width: 100%;
        margin: 80px auto 0 auto;
        text-align: center;
    }
    
    h3 {
        font-size: 20px;
        font-weight: normal;
        text-align: center;
    }
    
    .wrapper {
        width: 85%;
        margin: 0 auto;
    }
    
    /* ↓6-2-3コピペ--------------------------------------------- */
    
    /*==================================================
    ギャラリーのためのcss
    ===================================*/
    /*＝＝＝並び替えボタンチェックマークのCSS*/
    .sort-btn {
        /* background-color: #FA999B; */
        padding-left: 80px;
        margin: 10px auto 0 auto;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .sort-btn dt {
        font-weight: normal;
        margin: 0 0 10px 0;
        font-size: 11px;
        text-align: left;
        margin-left: -15px;
    }
    
    .sort-btn dd {
        /* background-color: bisque; */
        margin: 0 0 10px 0;
        font-size: 11px;
    }
    
    .sort-btn ul { 
        display: flex;
        flex-wrap: wrap;
        font-size: 11px;
    }
    
    .sort-btn li {
        margin: 0 10px;
    }
    
    .sort-btn ul li {
        position: relative;
        cursor: pointer;
        padding: 0 10px 0 10px;
        margin: 0 10px 0 0;
    }
    
    /*横幅が810px以下になった際の指定*/
    @media only screen and (max-width: 810px) {
        .sort-btn li {
            width: 100%;
            margin: 0;
        }
    
        .sort-btn ul li {
            width: auto;
        }
    
    }
    
    /*チェックマークの設定*/
    .sort-btn ul li::before {
        content: '';
        position: absolute;
        left: 0;
        width: 20px;
        height: 20px;
        border: 2px solid #ccc;
        margin-left: -15px;
    }
    
    .sort-btn ul li.active::after {
        /*現在地＝activeというクラス名がついたらチェックマークを出現*/
        content: '';
        position: absolute;
        left: -10px;
        top: 2px;
        /*チェックマークの色や形*/
        border-left: 2px solid #333;
        border-bottom: 2px solid #333;
        width: 16px;
        height: 9px;
        transform: rotate(-45deg);
    }
    
    /*＝＝＝Muuriのレイアウトのための調整 */
    .grid {
        position: relative;
        /*並び替えの基準点を指定*/
    }
    
    /*各画像の横幅などの設定*/
    .item {
        display: block;
        position: absolute;
        width: 33%;
        /*横並びで3つ表示*/
        padding: 0 10px 10px 10px;
        /*画像に余白をつける*/
        z-index: 1;
    }
    
    /*内側のボックスの高さが崩れないように維持*/
    .item-content {
        position: relative;
        width: 100%;
        height: 100%;
    }
    
    /*画像の横幅を100%にしてレスポンシブ化*/
    .grid img {
        width: 90%;
        height: auto;
        vertical-align: bottom;
        /*画像の下にできる余白を削除*/
        padding-top: 30px;
    }
    
    /*横幅が768px以下になった際の指定*/
    @media only screen and (max-width: 768px) {
        .item {
            width: 49.5%;
            /*横並びで2つ表示*/
            padding: 0 5px 10px 5px;
        }
    }
    
    
    /*＝＝＝fancyboxサムネイル背景と画像選択時の枠線の指定*/
    .fancybox-thumbs {
        background: transparent !important;
    }
    
    .fancybox-thumbs__list a:before {
        border: 6px solid #FA999B;
    }
    
    /*========= レイアウトのためのCSS ===============*/
    ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    a {
        color: #333;
    }
    
    a:hover,
    a:active {
        text-decoration: none;
    }
    
    /* ↑6-2-3コピペ--------------------------------------------- */
    
    .contact {
        margin-top: 100px;
        margin-bottom: 100px;
    }
    
    .contact h3 {
        margin-bottom: 30px;
    }
    
    .footer {
        width: 100%;
        text-align: center;
        margin: 70px auto;
    }
    
    .footer p {
        font-size: 10px;
    }

}