@charset "UTF-8";

.container {
    width: 100%;
    /* background-color: hotpink; */
}

.header {
    width: 100%;
    /* background-color: darkkhaki; */
    display: flex;
}

.rogo {
    width: 30%;
    background-color: rgb(0, 0, 0);
    padding-top: 40px;
    padding-left: 50px;
    padding-bottom: 50px;
}

.rogo p {
    font-size: 30px;
    color: #ffffff;
}

.navi {
    width: 70%;
    background-color: rgb(0, 0, 0);
}

.navi ul {
    display: flex;
    justify-content: space-around;
    padding-top: 50px;
    padding-bottom: 50px;
    align-items: center;
}

.navi li {
    list-style: none;
}

.navi a {
    color: #ffffff;
    text-decoration: none;
}

.navi a:hover {
    color: #ff00d0;
}

.top {
    width: 100%;
    height: 700px;
    background-image: url(../img/NATTY\ \(1\).png);
    background-size: cover;
    background-position: center;
}

.message {
    width: 100%;
    /* background-color: rgb(255, 0, 0); */
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
    font-size: 30px;
}

.profile {
    width: 100%;
    height: 900px;
    display: flex;
    background-image: url(../img/paper.png);
    background-size: cover;
    background-position: center;
}

.text {
    width: 50%;
    /* background-color: khaki; */
    padding-top: 100px;
    padding-left: 200px;

}

.photo {
    width: 50%;
    /* background-color: lightsalmon; */
    padding-top: 70px;
    padding-left: 70px;
}

.photo img {
    width: 50%;
}

.paper2 {
    width: 100%;
    margin-top: -120px;
    /* background-color: rgb(91, 255, 69); */
}

.paper2 img {
    width: 100%;
}

.service {
    width: 100%;
    height: 700px;
    margin-top: -30px;
    background-color: #34312f;
    padding-top: 80px;
    text-align: center;
}

.service h2 {
    color: rgb(255, 255, 255);
}

.paper3 {
    width: 100%;
    /* background-color: gold; */
}

.paper3 img {
    width: 100%;
}












.work {
    width: 100%;
    margin-bottom: 100px;
}

/*==================================================
ギャラリーのためのcss
===================================*/

/*＝＝＝並び替えボタンのCSS*/
.sort-btn {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 50px 20px;
}

.sort-btn li {
    background: #ff00a2;
    border-radius: 10px;
    cursor: pointer;
    padding: 10px;
    margin: 0 10px;
}

.sort-btn li.active {
    /*ボタンに現在地＝activeというクラス名がついたら背景色を変更*/
    background: #ffabf5;
}

/*横幅が480px以下になった際の指定*/
@media only screen and (max-width: 480px) {
    .sort-btn {
        justify-content: space-between;
    }

    .sort-btn li {
        width: 48%;
        margin: 0 0 10px 0;
        text-align: center;
    }
}

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

/*各画像の横幅などの設定*/
.item {
    display: block;
    position: absolute;
    width: 33%;
    /*横並びで3つ表示*/
    z-index: 1;
}

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

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

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

/*＝＝＝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;
}













.contact {
    width: 100%;
    height: 1000px;
    background-image: url(../img/pineapple.jpg);
    background-size: cover;
    background-position: 0%;
    text-align: center;
}

.contact h2 {
    padding: auto;
    padding-top: 50px;
}



.footer {
    width: 100%;
    padding-top: 60px;
    padding-bottom: 50px;
    text-align: center;
    background-color: deeppink;
}



















/* iPad (タブレット)：768px〜1023px */
@media (min-width: 768px) and (max-width: 1023px) {

}
    /* iPad・タブレット用のスタイル */
    
    .container {
        width: 100%;
        /* background-color: hotpink; */
    }
    
    .header {
        width: 100%;
        /* background-color: darkkhaki; */
        display: flex;
    }
    
    .rogo {
        width: 30%;
        background-color: rgb(0, 0, 0);
        padding-top: 40px;
        padding-left: 50px;
        padding-bottom: 50px;
    }
    
    .rogo p {
        font-size: 30px;
        color: #ffffff;
    }
    
    .navi {
        width: 70%;
        background-color: rgb(0, 0, 0);
    }
    
    .navi ul {
        display: flex;
        justify-content: space-around;
        padding-top: 50px;
        padding-bottom: 50px;
        align-items: center;
    }
    
    .navi li {
        list-style: none;
    }
    
    .navi a {
        color: #ffffff;
        text-decoration: none;
    }
    
    .navi a:hover {
        color: #ff00d0;
    }
    
    .top {
        width: 100%;
        height: 700px;
        background-image: url(../img/NATTY\ \(1\).png);
        background-size: cover;
        background-position: center;
    }
    
    .message {
        width: 100%;
        /* background-color: rgb(255, 0, 0); */
        text-align: center;
        padding-top: 50px;
        padding-bottom: 50px;
        font-size: 30px;
    }
    
    .profile {
        width: 100%;
        height: 900px;
        display: flex;
        background-image: url(../img/paper.png);
        background-size: cover;
        background-position: center;
    }
    
    .text {
        width: 50%;
        /* background-color: khaki; */
        padding-top: 100px;
        padding-left: 200px;
    
    }
    
    .photo {
        width: 50%;
        /* background-color: lightsalmon; */
        padding-top: 70px;
        padding-left: 70px;
    }
    
    .photo img {
        width: 50%;
    }
    
    .paper2 {
        width: 100%;
        margin-top: -120px;
        /* background-color: rgb(91, 255, 69); */
    }
    
    .paper2 img {
        width: 100%;
    }
    
    .service {
        width: 100%;
        height: 700px;
        margin-top: -30px;
        background-color: #34312f;
        padding-top: 80px;
        text-align: center;
    }
    
    .service h2 {
        color: rgb(255, 255, 255);
    }
    
    .paper3 {
        width: 100%;
        /* background-color: gold; */
    }
    
    .paper3 img {
        width: 100%;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    .work {
        width: 100%;
        margin-bottom: 100px;
    }
    
    /*==================================================
    ギャラリーのためのcss
    ===================================*/
    
    /*＝＝＝並び替えボタンのCSS*/
    .sort-btn {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        padding: 50px 20px;
    }
    
    .sort-btn li {
        background: #ff00a2;
        border-radius: 10px;
        cursor: pointer;
        padding: 10px;
        margin: 0 10px;
    }
    
    .sort-btn li.active {
        /*ボタンに現在地＝activeというクラス名がついたら背景色を変更*/
        background: #ffabf5;
    }
    
    /*横幅が480px以下になった際の指定*/
    @media only screen and (max-width: 480px) {
        .sort-btn {
            justify-content: space-between;
        }
    
        .sort-btn li {
            width: 48%;
            margin: 0 0 10px 0;
            text-align: center;
        }
    }
    
    /*＝＝＝Muuriのレイアウトのための調整 */
    .grid {
        position: relative;
        /*並び替えの基準点を指定*/
    }
    
    /*各画像の横幅などの設定*/
    .item {
        display: block;
        position: absolute;
        width: 33%;
        /*横並びで3つ表示*/
        z-index: 1;
    }
    
    /*内側のボックスの高さが崩れないように維持*/
    .item-content {
        position: relative;
        width: 100%;
        height: 100%;
    }
    
    /*画像の横幅を100%にしてレスポンシブ化*/
    .grid img {
        width: 100%;
        height: auto;
        vertical-align: bottom;
        /*画像の下にできる余白を削除*/
    }
    
    /*横幅が768px以下になった際の指定*/
    @media only screen and (max-width: 768px) {
        .item {
            width: 49.5%;
            /*横並びで2つ表示*/
        }
    }
    
    /*＝＝＝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;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    .contact {
        width: 100%;
        height: 1000px;
        background-image: url(../img/pineapple.jpg);
        background-size: cover;
        background-position: 0%;
        text-align: center;
    }
    
    .contact h2 {
        padding: auto;
        padding-top: 50px;
    }
    
    
    
    .footer {
        width: 100%;
        padding-top: 60px;
        padding-bottom: 50px;
        text-align: center;
        background-color: deeppink;
    }















    /* 携帯 (スマホ)：〜767px */
@media (max-width: 767px) {
    /* スマホ用のスタイル */
  }

  .container {
    width: 100%;
    /* background-color: hotpink; */
}

.header {
    width: 100%;
    /* background-color: darkkhaki; */
    display: flex;
}

.rogo {
    width: 30%;
    background-color: rgb(0, 0, 0);
    padding-top: 40px;
    padding-left: 50px;
    padding-bottom: 50px;
}

.rogo p {
    font-size: 30px;
    color: #ffffff;
}

.navi {
    width: 70%;
    background-color: rgb(0, 0, 0);
}

.navi ul {
    display: flex;
    justify-content: space-around;
    padding-top: 50px;
    padding-bottom: 50px;
    align-items: center;
}

.navi li {
    list-style: none;
}

.navi a {
    color: #ffffff;
    text-decoration: none;
}

.navi a:hover {
    color: #ff00d0;
}

.top {
    width: 100%;
    height: 700px;
    background-image: url(../img/NATTY\ \(1\).png);
    background-size: cover;
    background-position: center;
}

.message {
    width: 100%;
    /* background-color: rgb(255, 0, 0); */
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
    font-size: 30px;
}

.profile {
    width: 100%;
    height: 900px;
    display: flex;
    background-image: url(../img/paper.png);
    background-size: cover;
    background-position: center;
}

.text {
    width: 50%;
    /* background-color: khaki; */
    padding-top: 100px;
    padding-left: 200px;

}

.photo {
    width: 50%;
    /* background-color: lightsalmon; */
    padding-top: 70px;
    padding-left: 70px;
}

.photo img {
    width: 50%;
}

.paper2 {
    width: 100%;
    margin-top: -120px;
    /* background-color: rgb(91, 255, 69); */
}

.paper2 img {
    width: 100%;
}

.service {
    width: 100%;
    height: 700px;
    margin-top: -30px;
    background-color: #34312f;
    padding-top: 80px;
    text-align: center;
}

.service h2 {
    color: rgb(255, 255, 255);
}

.paper3 {
    width: 100%;
    /* background-color: gold; */
}

.paper3 img {
    width: 100%;
}












.work {
    width: 100%;
    margin-bottom: 100px;
}

/*==================================================
ギャラリーのためのcss
===================================*/

/*＝＝＝並び替えボタンのCSS*/
.sort-btn {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 50px 20px;
}

.sort-btn li {
    background: #ff00a2;
    border-radius: 10px;
    cursor: pointer;
    padding: 10px;
    margin: 0 10px;
}

.sort-btn li.active {
    /*ボタンに現在地＝activeというクラス名がついたら背景色を変更*/
    background: #ffabf5;
}

/*横幅が480px以下になった際の指定*/
@media only screen and (max-width: 480px) {
    .sort-btn {
        justify-content: space-between;
    }

    .sort-btn li {
        width: 48%;
        margin: 0 0 10px 0;
        text-align: center;
    }
}

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

/*各画像の横幅などの設定*/
.item {
    display: block;
    position: absolute;
    width: 33%;
    /*横並びで3つ表示*/
    z-index: 1;
}

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

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

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

/*＝＝＝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;
}













.contact {
    width: 100%;
    height: 1000px;
    background-image: url(../img/pineapple.jpg);
    background-size: cover;
    background-position: 0%;
    text-align: center;
}

.contact h2 {
    padding: auto;
    padding-top: 50px;
}



.footer {
    width: 100%;
    padding-top: 60px;
    padding-bottom: 50px;
    text-align: center;
    background-color: deeppink;
}



    