@charset "UTF-8";

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


    .container {
        width: 100%;
        margin: 0 auto;
        /* 日本語 */
        /* font-family: "Zen Maru Gothic", serif;
    font-weight: 400;
    font-style: normal; */

        /* 英語 */
        font-family: "Lora", serif;
        font-optical-sizing: auto;
        font-weight: 517;
        font-style: italic;

    }

    /* ハンバーガー　メニュー 135まで*/
    #g-nav.panelactive {
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position: fixed;
        z-index: 999;
        top: 0;
        width: 100%;
        height: 100vh;
    }

    /*丸の拡大*/
    .circle-bg {
        position: fixed;
        z-index: 3;
        /*丸の形*/
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: #FCC2F4;
        /*丸のスタート位置と形状*/
        transform: scale(0);
        /*scaleをはじめは0に*/
        left: -50px;
        top: -50px;
        transition: all .6s;
        /*0.6秒かけてアニメーション*/
    }

    .circle-bg.circleactive {
        transform: scale(50);
        /*クラスが付与されたらscaleを拡大*/
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav-list {
        display: none;
        /*はじめは表示なし*/
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    #g-nav.panelactive #g-nav-list {
        display: block;
        /*クラスが付与されたら出現*/
    }

    /*ナビゲーション*/
    #g-nav ul {
        opacity: 0;
        /*はじめは透過0*/
        /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /*背景が出現後にナビゲーションを表示*/
    #g-nav.panelactive ul {
        opacity: 1;
    }

    /* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
    #g-nav.panelactive ul li {
        /* 英語 */
        font-family: "Lora", serif;
        font-optical-sizing: auto;
        font-weight: 517;
        font-style: italic;
        animation-name: gnaviAnime;
        animation-duration: 1s;
        animation-delay: .2s;
        /*0.2 秒遅らせて出現*/
        animation-fill-mode: forwards;
        opacity: 0;
    }

    @keyframes gnaviAnime {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }


    /*リストのレイアウト設定*/
    #g-nav li {
        text-align: center;
        list-style: none;
    }

    #g-nav li a {
        color: #333;
        text-decoration: none;
        padding: 10px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: bold;
    }


    /*ボタン　190まで*/
    .openbtn {
        position: fixed;
        top: 20px;
        left: 30px;
        z-index: 9999;
        /*ボタンを最前面に*/
        cursor: pointer;
        width: 50px;
        height: 50px;
    }

    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 5px;
        border-radius: 5px;
        background-color: #ffff;
        width: 70%;
    }


    .openbtn span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn span:nth-of-type(2) {
        top: 23px;
    }

    .openbtn span:nth-of-type(3) {
        top: 31px;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    .header {
        width: 100%;
        position: relative;
    }

    .header img {
        width: 100%;
    }

    .header p {
        color: #FCC2F4;
        text-align: center;
        font-size: 40px;
        position: absolute;
        bottom: 38px;
        left: 270px;
        letter-spacing: 0.12rem;
    }

    .profile {
        width: 100%;
        background-color: #E7B3FF;
        padding-top: 50px;
        padding-bottom: 20px;
        margin-top: -50px;
    }

    .profile p {
        /* 日本語 */
        font-family: "Zen Maru Gothic", serif;
        font-weight: 400;
        font-style: normal;
        text-align: center;
        font-size: 25px;
        padding-bottom: 30px;
    }

    .eachTextAnime span{opacity: 0;}
.eachTextAnime.appeartext span{ animation:text_anime_on 1s ease-out forwards; }
@keyframes text_anime_on {
	0% {opacity:0;}
	100% {opacity:1;}
}


    .up img {
        width: 100%;
        height: auto;
        padding-bottom: 40px;
    }

    /* ピンクのスライド  239まで*/
    .up .slick-slide {
        margin: 0 10px;
        /*スライド左右の余白調整*/
    }


    /* ボタン　300まで */
    .btn,
    a.btn,
    button.btn {
        /* margin-left: 43%; */
        font-size: 1rem;
        font-weight: 700;
        line-height: 1;
        position: relative;
        display: inline-block;
        padding: 1rem 4rem;
        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: 0rem;
        color: #a6b6c5;
        border-radius: 0.5rem;
    }

    a.btn-flat {
        overflow: hidden;
        padding: 1.5rem 3rem;
        color: #787878;
        border-radius: 0;
        background: #ffff;
    }

    a.btn-flat span {
        position: relative;
    }

    a.btn-flat:before {
        position: absolute;
        top: 0;
        left: 0;

        width: 150%;
        height: 500%;

        content: "";
        -webkit-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
        -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
        transform: translateX(-98%) translateY(-25%) rotate(45deg);

        background: #B7FFAC;
    }

    a.btn-flat:hover:before {
        -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
        transform: translateX(-9%) translateY(-25%) rotate(45deg);
    }

    .portfolio {
        width: 100%;
        background-color: #C2F9FC;
    }

    /* 水色　スライダー　396まで*/
    .slider {
        /*横幅94%で左右に余白を持たせて中央寄せ*/
        width: 94%;
        margin: 0 auto;
    }


    .slider img {
        width: 40vw;
        /*スライダー内の画像を60vwにしてレスポンシブ化*/
        height: auto;
    }

    .slider .slick-slide {
        transform: scale(0.4);
        /*左右の画像のサイズを80%に*/
        transition: all .5s;
        /*拡大や透過のアニメーションを0.5秒で行う*/
        opacity: 0.5;
        /*透過50%*/
    }

    .slick-slide.slick-center {
        transform: scale(0.8);
        /*中央の画像のサイズだけ等倍に*/
        opacity: 0.8;
        /*透過なし*/
    }

    /*矢印の設定*/
    /*戻る、次へ矢印の位置*/
    .slick-prev,
    .slick-next {
        position: absolute;
        /*絶対配置にする*/
        top: 42%;
        cursor: pointer;
        /*マウスカーソルを指マークに*/
        outline: none;
        /*クリックをしたら出てくる枠線を消す*/
        border-top: 2px solid #666;
        /*矢印の色*/
        border-right: 2px solid #666;
        /*矢印の色*/
        height: 15px;
        width: 15px;
    }

    .slick-prev {
        /*戻る矢印の位置と形状*/
        left: -1.5%;
        transform: rotate(-135deg);
    }

    .slick-next {
        /*次へ矢印の位置と形状*/
        right: -1.5%;
        transform: rotate(45deg);
    }

    /*ドットナビゲーションの設定*/

    .slick-dots {
        text-align: center;
        margin: 20px 0 0 0;
    }

    .slick-dots li {
        display: inline-block;
        margin: 0 5px;
    }

    .slick-dots button {
        color: transparent;
        outline: none;
        width: 8px;
        /*ドットボタンのサイズ*/
        height: 8px;
        /*ドットボタンのサイズ*/
        display: block;
        border-radius: 50%;
        background: #666;
        /*ドットボタンの色*/
    }

    .slick-dots .slick-active button {
        background: #666;
        /*ドットボタンの現在地表示の色*/
    }

    /* ボタン　459まで */

    .btn,
    a.btn,
    button.btn {
        margin-top: 10px;
        margin-bottom: 20px;
        margin-left: 43%;
        font-size: 1rem;
        font-weight: 700;
        line-height: 1;
        position: relative;
        display: inline-block;
        padding: 1rem 4rem;
        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: 0rem;
        color: #a6b6c5;
        border-radius: 0.5rem;
    }

    a.btn-flat {
        overflow: hidden;
        padding: 1.5rem 3rem;
        color: #787878;
        border-radius: 0;
        background: #ffff;
    }

    a.btn-flat span {
        position: relative;
    }

    a.btn-flat:before {
        position: absolute;
        top: 0;
        left: 0;

        width: 150%;
        height: 500%;

        content: "";
        -webkit-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
        -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
        transform: translateX(-98%) translateY(-25%) rotate(45deg);

        background: #FCC2F4;
    }

    a.btn-flat:hover:before {
        -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
        transform: translateX(-9%) translateY(-25%) rotate(45deg);
    }


    .contact {
        width: 100%;
        background-color: #B7FFAC;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .photo {
        width: 20%;
        text-align: center;
        display: flex;
        margin-left: 40%;
    }

    .insta img {
        width: 90%;
    }

    .mail img {
        width: 90%;
    }

    /* ボタン　543まで */

    .btn,
    a.btn,
    button.btn {
        margin-top: 25px;
        margin-left: 43%;
        font-size: 1rem;
        font-weight: 700;
        line-height: 1;
        position: relative;
        display: inline-block;
        padding: 1rem 4rem;
        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: 0rem;
        color: #a6b6c5;
        border-radius: 0.5rem;
    }

    a.btn-flat {
        overflow: hidden;
        padding: 1.5rem 3rem;
        color: #787878;
        border-radius: 0;
        background: #ffff;
    }

    a.btn-flat span {
        position: relative;
    }

    a.btn-flat:before {
        position: absolute;
        top: 0;
        left: 0;

        width: 150%;
        height: 500%;

        content: "";
        -webkit-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
        -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
        transform: translateX(-98%) translateY(-25%) rotate(45deg);

        background: #FCC2F4;
    }

    a.btn-flat:hover:before {
        -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
        transform: translateX(-9%) translateY(-25%) rotate(45deg);
    }

    .footer {
        text-align: center;
        padding-top: 10px;
        padding-bottom: 10px;
    }

}


























/*-----------------------------------------------------*/
/* タブレット用のCSS */
/*-----------------------------------------------------*/
@media only screen and (min-width:600px) and (max-width:999px) {
    .container {
        width: 100%;
        margin: 0 auto;
        /* 日本語 */
        /* font-family: "Zen Maru Gothic", serif;
font-weight: 400;
font-style: normal; */

        /* 英語 */
        font-family: "Lora", serif;
        font-optical-sizing: auto;
        font-weight: 517;
        font-style: italic;

    }

    /* ハンバーガー　メニュー 135まで*/
    #g-nav.panelactive {
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position: fixed;
        z-index: 999;
        top: 0;
        width: 100%;
        height: 100vh;
    }

    /*丸の拡大*/
    .circle-bg {
        position: fixed;
        z-index: 3;
        /*丸の形*/
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: #FCC2F4;
        /*丸のスタート位置と形状*/
        transform: scale(0);
        /*scaleをはじめは0に*/
        left: -50px;
        top: -50px;
        transition: all .6s;
        /*0.6秒かけてアニメーション*/
    }

    .circle-bg.circleactive {
        transform: scale(50);
        /*クラスが付与されたらscaleを拡大*/
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav-list {
        display: none;
        /*はじめは表示なし*/
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    #g-nav.panelactive #g-nav-list {
        display: block;
        /*クラスが付与されたら出現*/
    }

    /*ナビゲーション*/
    #g-nav ul {
        opacity: 0;
        /*はじめは透過0*/
        /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /*背景が出現後にナビゲーションを表示*/
    #g-nav.panelactive ul {
        opacity: 1;
    }

    /* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
    #g-nav.panelactive ul li {
        /* 英語 */
        font-family: "Lora", serif;
        font-optical-sizing: auto;
        font-weight: 517;
        font-style: italic;
        animation-name: gnaviAnime;
        animation-duration: 1s;
        animation-delay: .2s;
        /*0.2 秒遅らせて出現*/
        animation-fill-mode: forwards;
        opacity: 0;
    }

    @keyframes gnaviAnime {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }


    /*リストのレイアウト設定*/
    #g-nav li {
        text-align: center;
        list-style: none;
    }

    #g-nav li a {
        color: #333;
        text-decoration: none;
        padding: 10px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: bold;
    }


    /*ボタン　190まで*/
    .openbtn {
        position: fixed;
        top: 20px;
        left: 30px;
        z-index: 9999;
        /*ボタンを最前面に*/
        cursor: pointer;
        width: 50px;
        height: 50px;
    }

    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 5px;
        border-radius: 5px;
        background-color: #ffff;
        width: 70%;
    }


    .openbtn span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn span:nth-of-type(2) {
        top: 23px;
    }

    .openbtn span:nth-of-type(3) {
        top: 31px;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    .header {
        width: 100%;
        position: relative;
    }

    .header img {
        width: 100%;
    }

    .header p {
        color: #FCC2F4;
        text-align: center;
        font-size: 30px;
        position: absolute;
        bottom: 38px;
        left: 60px;
        letter-spacing: 0.12rem;
    }

    .profile {
        width: 100%;
        text-align: center;
        background-color: #E7B3FF;
        padding-top: 50px;
        padding-bottom: 20px;
        margin-top: -50px;
    }

    .profile p {
        /* 日本語 */
        font-family: "Zen Maru Gothic", serif;
        font-weight: 400;
        font-style: normal;
        text-align: center;
        font-size: 20px;
        padding-bottom: 30px;
    }

    .eachTextAnime span{opacity: 0;}
.eachTextAnime.appeartext span{ animation:text_anime_on 1s ease-out forwards; }
@keyframes text_anime_on {
	0% {opacity:0;}
	100% {opacity:1;}
}


    .up img {
        width: 100%;
        height: auto;
        padding-bottom: 40px;
    }

    /* ピンクのスライド  239まで*/
    .up .slick-slide {
        margin: 0 10px;
        /*スライド左右の余白調整*/
    }


    /* ボタン　300まで */
    .btn,
    a.btn,
    button.btn {
        /* margin-left: 43%; */
        font-size: 1rem;
        font-weight: 700;
        line-height: 1;
        position: relative;
        display: inline-block;
        padding: 1rem 4rem;
        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: 0rem;
        color: #a6b6c5;
        border-radius: 0.5rem;
    }

    a.btn-flat {
        overflow: hidden;
        padding: 1.5rem 3rem;
        color: #787878;
        border-radius: 0;
        background: #ffff;
    }

    a.btn-flat span {
        position: relative;
    }

    a.btn-flat:before {
        position: absolute;
        top: 0;
        left: 0;

        width: 150%;
        height: 500%;

        content: "";
        -webkit-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
        -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
        transform: translateX(-98%) translateY(-25%) rotate(45deg);

        background: #B7FFAC;
    }

    a.btn-flat:hover:before {
        -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
        transform: translateX(-9%) translateY(-25%) rotate(45deg);
    }

    .portfolio {
        width: 100%;
        background-color: #C2F9FC;
        text-align: center;
    }

    /* 水色　スライダー　396まで*/
    .slider {
        /*横幅94%で左右に余白を持たせて中央寄せ*/
        width: 94%;
        margin: 0 auto;
    }


    .slider img {
        width: 40vw;
        /*スライダー内の画像を60vwにしてレスポンシブ化*/
        height: auto;
    }

    .slider .slick-slide {
        transform: scale(0.4);
        /*左右の画像のサイズを80%に*/
        transition: all .5s;
        /*拡大や透過のアニメーションを0.5秒で行う*/
        opacity: 0.5;
        /*透過50%*/
    }

    .slick-slide.slick-center {
        transform: scale(0.8);
        /*中央の画像のサイズだけ等倍に*/
        opacity: 0.8;
        /*透過なし*/
    }

    /*矢印の設定*/
    /*戻る、次へ矢印の位置*/
    .slick-prev,
    .slick-next {
        position: absolute;
        /*絶対配置にする*/
        top: 42%;
        cursor: pointer;
        /*マウスカーソルを指マークに*/
        outline: none;
        /*クリックをしたら出てくる枠線を消す*/
        border-top: 2px solid #666;
        /*矢印の色*/
        border-right: 2px solid #666;
        /*矢印の色*/
        height: 15px;
        width: 15px;
    }

    .slick-prev {
        /*戻る矢印の位置と形状*/
        left: -1.5%;
        transform: rotate(-135deg);
    }

    .slick-next {
        /*次へ矢印の位置と形状*/
        right: -1.5%;
        transform: rotate(45deg);
    }

    /*ドットナビゲーションの設定*/

    .slick-dots {
        text-align: center;
        margin: 20px 0 0 0;
    }

    .slick-dots li {
        display: inline-block;
        margin: 0 5px;
    }

    .slick-dots button {
        color: transparent;
        outline: none;
        width: 8px;
        /*ドットボタンのサイズ*/
        height: 8px;
        /*ドットボタンのサイズ*/
        display: block;
        border-radius: 50%;
        background: #666;
        /*ドットボタンの色*/
    }

    .slick-dots .slick-active button {
        background: #666;
        /*ドットボタンの現在地表示の色*/
    }

    /* ボタン　459まで */

    .btn,
    a.btn,
    button.btn {
        margin-top: 10px;
        margin-bottom: 20px;
        /* margin-left: 43%; */
        font-size: 1rem;
        font-weight: 700;
        line-height: 1;
        position: relative;
        display: inline-block;
        padding: 1rem 4rem;
        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: 0rem;
        color: #a6b6c5;
        border-radius: 0.5rem;
    }

    a.btn-flat {
        overflow: hidden;
        padding: 1.5rem 3rem;
        color: #787878;
        border-radius: 0;
        background: #ffff;
    }

    a.btn-flat span {
        position: relative;
    }

    a.btn-flat:before {
        position: absolute;
        top: 0;
        left: 0;

        width: 150%;
        height: 500%;

        content: "";
        -webkit-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
        -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
        transform: translateX(-98%) translateY(-25%) rotate(45deg);

        background: #FCC2F4;
    }

    a.btn-flat:hover:before {
        -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
        transform: translateX(-9%) translateY(-25%) rotate(45deg);
    }


    .contact {
        width: 100%;
        text-align: center;
        background-color: #B7FFAC;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .photo {
        width: 20%;
        text-align: center;
        display: flex;
        margin-left: 40%;
    }

    .insta img {
        width: 90%;
    }

    .mail img {
        width: 90%;
    }



    /* ボタン　543まで */

    .btn,
    a.btn,
    button.btn {
        margin-top: 25px;
        /* margin-left: 43%; */
        font-size: 1rem;
        font-weight: 700;
        line-height: 1;
        position: relative;
        display: inline-block;
        padding: 1rem 4rem;
        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: 0rem;
        color: #a6b6c5;
        border-radius: 0.5rem;
    }

    a.btn-flat {
        overflow: hidden;
        padding: 1.5rem 3rem;
        color: #787878;
        border-radius: 0;
        background: #ffff;
    }

    a.btn-flat span {
        position: relative;
    }

    a.btn-flat:before {
        position: absolute;
        top: 0;
        left: 0;

        width: 150%;
        height: 500%;

        content: "";
        -webkit-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
        -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
        transform: translateX(-98%) translateY(-25%) rotate(45deg);

        background: #FCC2F4;
    }

    a.btn-flat:hover:before {
        -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
        transform: translateX(-9%) translateY(-25%) rotate(45deg);
    }

    .footer {
        text-align: center;
        padding-top: 10px;
        padding-bottom: 10px;
    }

}






















/*-----------------------------------------------------*/
/* スマホ用のCSS */
/*-----------------------------------------------------*/
@media only screen and (max-width: 599px) {
        .container {
            width: 100%;
            margin: 0 auto;
            /* 日本語 */
            /* font-family: "Zen Maru Gothic", serif;
        font-weight: 400;
        font-style: normal; */

            /* 英語 */
            font-family: "Lora", serif;
            font-optical-sizing: auto;
            font-weight: 517;
            font-style: italic;

        }

        /* ハンバーガー　メニュー 135まで*/
        #g-nav.panelactive {
            /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
            position: fixed;
            z-index: 999;
            top: 0;
            width: 100%;
            height: 100vh;
        }

        /*丸の拡大*/
        .circle-bg {
            position: fixed;
            z-index: 3;
            /*丸の形*/
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: #FCC2F4;
            /*丸のスタート位置と形状*/
            transform: scale(0);
            /*scaleをはじめは0に*/
            left: -50px;
            top: -50px;
            transition: all .6s;
            /*0.6秒かけてアニメーション*/
        }

        .circle-bg.circleactive {
            transform: scale(50);
            /*クラスが付与されたらscaleを拡大*/
        }

        /*ナビゲーションの縦スクロール*/
        #g-nav-list {
            display: none;
            /*はじめは表示なし*/
            /*ナビの数が増えた場合縦スクロール*/
            position: fixed;
            z-index: 999;
            width: 100%;
            height: 100vh;
            overflow: auto;
            -webkit-overflow-scrolling: touch;
        }

        #g-nav.panelactive #g-nav-list {
            display: block;
            /*クラスが付与されたら出現*/
        }

        /*ナビゲーション*/
        #g-nav ul {
            opacity: 0;
            /*はじめは透過0*/
            /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
            position: absolute;
            z-index: 999;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        /*背景が出現後にナビゲーションを表示*/
        #g-nav.panelactive ul {
            opacity: 1;
        }

        /* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
        #g-nav.panelactive ul li {
            /* 英語 */
            font-family: "Lora", serif;
            font-optical-sizing: auto;
            font-weight: 517;
            font-style: italic;
            animation-name: gnaviAnime;
            animation-duration: 1s;
            animation-delay: .2s;
            /*0.2 秒遅らせて出現*/
            animation-fill-mode: forwards;
            opacity: 0;
        }

        @keyframes gnaviAnime {
            0% {
                opacity: 0;
            }

            100% {
                opacity: 1;
            }
        }


        /*リストのレイアウト設定*/
        #g-nav li {
            text-align: center;
            list-style: none;
        }

        #g-nav li a {
            color: #333;
            text-decoration: none;
            padding: 10px;
            display: block;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: bold;
        }


        /*ボタン　190まで*/
        .openbtn {
            position: fixed;
            top: 7px;
            left: 20px;
            z-index: 9999;
            /*ボタンを最前面に*/
            cursor: pointer;
            width: 50px;
            height: 50px;
        }

        .openbtn span {
            display: inline-block;
            transition: all .4s;
            position: absolute;
            height: 5px;
            border-radius: 5px;
            background-color: #ffff;
            width: 50%;
        }


        .openbtn span:nth-of-type(1) {
            top: 15px;
        }

        .openbtn span:nth-of-type(2) {
            top: 23px;
        }

        .openbtn span:nth-of-type(3) {
            top: 31px;
        }

        .openbtn.active span:nth-of-type(1) {
            top: 18px;
            left: 18px;
            transform: translateY(6px) rotate(-45deg);
            width: 30%;
        }

        .openbtn.active span:nth-of-type(2) {
            opacity: 0;
        }

        .openbtn.active span:nth-of-type(3) {
            top: 30px;
            left: 18px;
            transform: translateY(-6px) rotate(45deg);
            width: 30%;
        }

        .header {
            width: 100%;
            position: relative;
        }

        .header img {
            width: 100%;
        }

        .header p {
            color: #FCC2F4;
            text-align: center;
            font-size: 15px;
            position: absolute;
            bottom: 5px;
            left: 25px;
            letter-spacing: 0.05rem;
        }

        .profile {
            width: 100%;
            text-align: center;
            background-color: #E7B3FF;
            padding-top: 50px;
            padding-bottom: 20px;
            margin-top: -50px;
        }

        .profile p {
            /* 日本語 */
            font-family: "Zen Maru Gothic", serif;
            font-weight: 100;
            font-style: normal;
            text-align: center;
            font-size: 10px;
            padding-bottom: 30px;
        }

        .eachTextAnime span{opacity: 0;}
.eachTextAnime.appeartext span{ animation:text_anime_on 1s ease-out forwards; }
@keyframes text_anime_on {
	0% {opacity:0;}
	100% {opacity:1;}
}


        .up img {
            width: 70%;
            height: auto;
            padding-bottom: 40px;
        }

        /* ピンクのスライド  239まで*/
        .up .slick-slide {
            margin: 0 3px;
            /*スライド左右の余白調整*/
        }


        /* ボタン　300まで */
        .btn,
        a.btn,
        button.btn {
            font-size: 1rem;
            font-weight: 700;
            line-height: 1;
            position: relative;
            display: inline-block;
            padding: 1rem 4rem;
            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: 0rem;
            color: #a6b6c5;
            border-radius: 0.5rem;
        }

        a.btn-flat {
            overflow: hidden;
            padding: 1.5rem 3rem;
            color: #787878;
            border-radius: 0;
            background: #ffff;
        }

        a.btn-flat span {
            position: relative;
        }

        a.btn-flat:before {
            position: absolute;
            top: 0;
            left: 0;

            width: 150%;
            height: 500%;

            content: "";
            -webkit-transition: all 0.5s ease-in-out;
            transition: all 0.5s ease-in-out;
            -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
            transform: translateX(-98%) translateY(-25%) rotate(45deg);

            background: #B7FFAC;
        }

        a.btn-flat:hover:before {
            -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
            transform: translateX(-9%) translateY(-25%) rotate(45deg);
        }

        .portfolio {
            width: 100%;
            background-color: #C2F9FC;
            text-align: center;
        }

        /* 水色　スライダー　396まで*/
        .slider {
            /*横幅94%で左右に余白を持たせて中央寄せ*/
            width: 94%;
            margin: 0 auto;
        }


        .slider img {
            width: 40vw;
            /*スライダー内の画像を60vwにしてレスポンシブ化*/
            height: auto;
        }

        .slider .slick-slide {
            transform: scale(0.4);
            /*左右の画像のサイズを80%に*/
            transition: all .5s;
            /*拡大や透過のアニメーションを0.5秒で行う*/
            opacity: 0.5;
            /*透過50%*/
        }

        .slick-slide.slick-center {
            transform: scale(0.8);
            /*中央の画像のサイズだけ等倍に*/
            opacity: 0.8;
            /*透過なし*/
        }

        /*矢印の設定*/
        /*戻る、次へ矢印の位置*/
        .slick-prev,
        .slick-next {
            position: absolute;
            /*絶対配置にする*/
            top: 42%;
            cursor: pointer;
            /*マウスカーソルを指マークに*/
            outline: none;
            /*クリックをしたら出てくる枠線を消す*/
            border-top: 2px solid #666;
            /*矢印の色*/
            border-right: 2px solid #666;
            /*矢印の色*/
            height: 15px;
            width: 15px;
        }

        .slick-prev {
            /*戻る矢印の位置と形状*/
            left: -1.5%;
            transform: rotate(-135deg);
        }

        .slick-next {
            /*次へ矢印の位置と形状*/
            right: -1.5%;
            transform: rotate(45deg);
        }

        /*ドットナビゲーションの設定*/

        .slick-dots {
            text-align: center;
            margin: 20px 0 0 0;
        }

        .slick-dots li {
            display: inline-block;
            margin: 0 5px;
        }

        .slick-dots button {
            color: transparent;
            outline: none;
            width: 8px;
            /*ドットボタンのサイズ*/
            height: 8px;
            /*ドットボタンのサイズ*/
            display: block;
            border-radius: 50%;
            background: #666;
            /*ドットボタンの色*/
        }

        .slick-dots .slick-active button {
            background: #666;
            /*ドットボタンの現在地表示の色*/
        }

        /* ボタン　459まで */

        .btn,
        a.btn,
        button.btn {
            margin-top: 10px;
            margin-bottom: 20px;
            /* margin-left: 43%; */
            font-size: 1rem;
            font-weight: 700;
            line-height: 1;
            position: relative;
            display: inline-block;
            padding: 1rem 4rem;
            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: 0rem;
            color: #a6b6c5;
            border-radius: 0.5rem;
        }

        a.btn-flat {
            overflow: hidden;
            padding: 1.5rem 3rem;
            color: #787878;
            border-radius: 0;
            background: #ffff;
        }

        a.btn-flat span {
            position: relative;
        }

        a.btn-flat:before {
            position: absolute;
            top: 0;
            left: 0;

            width: 150%;
            height: 500%;

            content: "";
            -webkit-transition: all 0.5s ease-in-out;
            transition: all 0.5s ease-in-out;
            -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
            transform: translateX(-98%) translateY(-25%) rotate(45deg);

            background: #FCC2F4;
        }

        a.btn-flat:hover:before {
            -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
            transform: translateX(-9%) translateY(-25%) rotate(45deg);
        }


        .contact {
            width: 100%;
            text-align: center;
            background-color: #B7FFAC;
            padding-top: 30px;
            padding-bottom: 30px;
        }

        .photo {
            width: 20%;
            text-align: center;
            display: flex;
            margin-left: 40%;
        }

        .insta img {
            width: 90%;
        }

        .mail img {
            width: 90%;
        }



        /* ボタン　543まで */

        .btn,
        a.btn,
        button.btn {
            margin-top: 25px;
            /* margin-left: 43%; */
            font-size: 1rem;
            font-weight: 700;
            line-height: 1;
            position: relative;
            display: inline-block;
            padding: 1rem 4rem;
            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: 0rem;
            color: #a6b6c5;
            border-radius: 0.5rem;
        }

        a.btn-flat {
            overflow: hidden;
            padding: 1.5rem 3rem;
            color: #787878;
            border-radius: 0;
            background: #ffff;
        }

        a.btn-flat span {
            position: relative;
        }

        a.btn-flat:before {
            position: absolute;
            top: 0;
            left: 0;

            width: 150%;
            height: 500%;

            content: "";
            -webkit-transition: all 0.5s ease-in-out;
            transition: all 0.5s ease-in-out;
            -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
            transform: translateX(-98%) translateY(-25%) rotate(45deg);

            background: #FCC2F4;
        }

        a.btn-flat:hover:before {
            -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
            transform: translateX(-9%) translateY(-25%) rotate(45deg);
        }

        .footer {
            background-color:#ffff;
            text-align: center;
            padding-top: 10px;
            padding-bottom: 10px;
        }

    }
