@charset "UTF-8";

@media(min-width:1000px) {
    body {
        min-width: 1000px;
    }

    .container {
        width: 100%;
    }

    /* PCcss */
body {
    min-width: 1000px;
    /* background-color: #F2EBDB; */
    background-image: url(../img/green.png);
    background-repeat: no-repeat;
}

img {
    width: 100%;
}

a {
    text-decoration: none;
}

* {
    cursor: url(../img/cute.png), auto;
}

/* Loading背景画面設定　*/

#splash {
    /*fixedで全面に固定*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    background:#F2EBDB;
    text-align: center;
    color: #fff;
}

/* Loadingバー中央配置　*/
#splash_text {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 999;
    width: 100%;
    transform: translate(-50%, -50%);
    color: #fff;
}



a {
    color: #333;
}

a:hover {
    text-decoration: none;
}
.container {
    width: 100%;
    margin: 0 auto;
}


/* ヘッダー */
.header {
    width: 100%;
    height: 65px;
    padding: 1% 0;
    opacity: .8;
    display: flex;
    align-items: center;
    text-align: center;
    background-color: #F2EBDB;
    border-radius: 50px 50px 50px 50px;
    margin-bottom: 40px;
}

.main-title {
    /* width: 12.86%; */
    width: 20%;
}

.main-title img {
    width: 100%;
    object-fit: cover;
}

.nav1 {
    width: 42.47%;
    margin-left: 44.67%;
    font-size: 16px;
    font-weight: bold;
}

.nav1 a {
    color: black;
    list-style: none;
    display: block;
}

.nav1 a:hover {
    color: #8D1133;
    opacity: 0.8;
    cursor: url(../img/click1.png), auto;
}

.nav1 a:active {
    cursor: url(../img/click1.png), auto;
}

.nav1 ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

h2{
    width: 350px;
    font-family: "Kaisei Decol", serif;
    margin: 0 auto;
    text-align: center;
    font-size: 35px;
    font-weight: lighter;
    font-weight: bold;
    border-bottom: solid 5px #D2B497;
    font-weight: bold;
}
/* googleフォームここから */
form{
    background-color: #F2EBDB;
    padding: 3%;
    border-radius: 5%;
}

.c-form {
    max-width: 600px;
    margin: 0 auto;
}

.c-form p{
    line-height: 1.7;
}

.c-form__item {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-evenly;
    margin-bottom: 20px;
    align-items: center;
}



.c-form__label,
.c-form__input {
    padding: 10px;
}

.c-form__label {
    width: 90%;
}

.c-form__input {
    width: 90%;
    font-size: 16px;
    border: solid 1px #333;
    border-radius: 4px;
}

.c-form__input:focus-visible {
    outline: #D2B497 auto 1px;
}

.c-form__required {
    color: #fff;
    background-color: #D2B497;
    border-radius: 4px;
    padding: 5px 5px;
    margin: 0 0 0 18px;
}

textarea.c-form__input {
    height: 160px;
}

.c-form__submit {
    text-align: center;
}

.c-form__submit button {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background-color: #D2B497;
    border: solid 1px #D2B497;
    border-radius: 4px;
    padding: 5px 32px;
    transition: 0.4s;
    cursor: pointer;
}

.c-form__submit button:hover {
    color: #D2B497;
    background-color: transparent;
}

@media (min-width: 640px) {
    .c-form__item {
        flex-wrap: nowrap;
    }

    .c-form__label {
        width: 40%;
    }

    .c-form__input {
        width: 55%;
    }
}


/* フッダー */
.footer {
    width: 100%;
    height: 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-top: 15px; */
    background-color: #F2EBDB;
    border-radius: 50px 50px 50px 50px;
    margin-top: 40px;
    font-size: 16px;
    font-weight: bold;
    padding: 1% 0;
    opacity: .8;
}

.nav-title {
    /* width: 12.86%; */
    width: 20%;
}

.nav-title img {
    width: 100%;
    align-items: flex-end;
    /* margin-top: 90px; */
}

.nav2 {
    width: 55%;
    margin-left: 30%;
}

.nav2 a {
    cursor: url(../img/cute.png), auto;
}

.nav2 a:active {
    cursor: url(../img/cute.png), auto;
}

.nav2 ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

.nav2 li {
    margin-left: 120px;
}

.nav2 li a {
    color: black;
    display: block;
}

.nav2 li a:hover {
    color: #8D1133;
    opacity: 0.8;
    cursor: url(../img/click1.png), auto;
}

.nav2 li a:active {
    cursor: url(../img/click1.png), auto;
}

/*========= ページトップのためのCSS ===============*/
/* 8-1-8 リンクボタンをクリックしたら形状が変化 */
/*リンクを右下に固定*/
#page-top {
    position: fixed;
    right: 10px;
    bottom: 90px;
    z-index: 2;
    /*はじめは非表示*/
    opacity: 0;
    transform: translateY(150px);
}

/*　上に上がる動き　*/
#page-top.UpMove {
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(150px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*　下に下がる動き　*/
#page-top.DownMove {
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 1;
        transform: translateY(150px);
    }
}

/*画像の切り替えと動き*/
#page-top a {
    /*aタグの形状*/
    display: block;
    width: 100px;
    height: 100px;
    color: #333;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.6rem;
    /*背景画像の指定*/
    background: url("../img/hibiscus1.png") no-repeat center;
    background-size: contain;
}

#page-top.floatAnime a {
    width: 100px;
    height: 130px;
    /*背景画像の指定*/
    background: url("../img/hibiscus2.png") no-repeat center;
    background-size: contain;
    /*アニメーションの指定*/
    animation: floatAnime 2s linear infinite;
    opacity: 0;
}

@keyframes floatAnime {
    0% {
        transform: translateX(0);
        opacity: 0;
    }

    25% {
        transform: translateX(-6px);
        opacity: 1;
    }

    50% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(6px);
        opacity: 1;
    }
}

/*Page Topと書かれたテキストの位置*/
#page-top span {
    position: absolute;
    bottom: -5px;
    right: 20px;
    color: #333;
    font-weight: bold;
    font-size: 15px;
}
}

/*ipadサイズレスポンシブ*/
@media(min-width:600px) and (max-width:999px) {
    body {
        min-width: 600px;
        max-width: 999px;
        background-image: url(../img/green.png);
    }

    .container {
        width: 100%;
    }

    /* PCcss */
        img {
            width: 100%;
        }
    
        a {
            text-decoration: none;
        }
    
        * {
            cursor: url(../img/cute.png), auto;
        }
    
        /* Loading背景画面設定　*/
    
        #splash {
            /*fixedで全面に固定*/
            position: fixed;
            z-index: 999;
            width: 100%;
            height: 100%;
            background: #F2EBDB;
            text-align: center;
            color: #fff;
        }
    
        /* Loadingバー中央配置　*/
        #splash_text {
            position: absolute;
            top: 50%;
            left: 50%;
            z-index: 999;
            width: 100%;
            transform: translate(-50%, -50%);
            color: #fff;
        }
    
    
    
        a {
            color: #333;
        }
    
        a:hover {
            text-decoration: none;
        }
    
        .container {
            width: 100%;
            margin: 0 auto;
        }
    
    
        /* ヘッダー */
        .header {
            width: 100%;
            height: 65px;
            padding: 1% 0;
            opacity: .8;
            display: flex;
            align-items: center;
            text-align: center;
            background-color: #F2EBDB;
            border-radius: 50px 50px 50px 50px;
            margin-bottom: 40px;
        }
    
        .main-title {
            /* width: 12.86%; */
            width: 20%;
        }
    
        .main-title img {
            width: 100%;
            object-fit: cover;
        }
    
        .nav1 {
            width: 42.47%;
            margin-left: 44.67%;
            font-size: 16px;
            font-weight: bold;
        }
    
        .nav1 a {
            color: black;
            list-style: none;
            display: block;
        }
    
        .nav1 a:hover {
            color: #8D1133;
            opacity: 0.8;
            cursor: url(../img/click1.png), auto;
        }
    
        .nav1 a:active {
            cursor: url(../img/click1.png), auto;
        }
    
        .nav1 ul {
            display: flex;
            justify-content: space-around;
            list-style: none;
        }
    
        h2 {
            width: 350px;
            font-family: "Kaisei Decol", serif;
            margin: 0 auto;
            text-align: center;
            font-size: 35px;
            font-weight: lighter;
            font-weight: bold;
            border-bottom: solid 5px #D2B497;
            font-weight: bold;
        }
    
        /* googleフォームここから */
        form {
            background-color: #F2EBDB;
            padding: 3%;
            border-radius: 5%;
        }
    
        .c-form {
            max-width: 600px;
            margin: 0 auto;
        }
    
        .c-form p {
            line-height: 1.7;
        }
    
        .c-form__item {
            display: flex;
            /* flex-wrap: wrap; */
            justify-content: space-evenly;
            margin-bottom: 20px;
            align-items: center;
        }
    
    
    
        .c-form__label,
        .c-form__input {
            padding: 10px;
        }
    
        .c-form__label {
            width: 90%;
        }
    
        .c-form__input {
            width: 90%;
            font-size: 16px;
            border: solid 1px #333;
            border-radius: 4px;
        }
    
        .c-form__input:focus-visible {
            outline: #D2B497 auto 1px;
        }
    
        .c-form__required {
            color: #fff;
            background-color: #D2B497;
            border-radius: 4px;
            padding: 5px 5px;
            margin: 0 0 0 18px;
        }
    
        textarea.c-form__input {
            height: 160px;
        }
    
        .c-form__submit {
            text-align: center;
        }
    
        .c-form__submit button {
            font-size: 18px;
            font-weight: bold;
            color: #fff;
            background-color: #D2B497;
            border: solid 1px #D2B497;
            border-radius: 4px;
            padding: 5px 32px;
            transition: 0.4s;
            cursor: pointer;
        }
    
        .c-form__submit button:hover {
            color: #D2B497;
            background-color: transparent;
        }
    
        @media (min-width: 640px) {
            .c-form__item {
                flex-wrap: nowrap;
            }
    
            .c-form__label {
                width: 40%;
            }
    
            .c-form__input {
                width: 55%;
            }
        }
    
    
        /* フッダー */
        .footer {
            width: 100%;
            height: 65px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            /* margin-top: 15px; */
            background-color: #F2EBDB;
            border-radius: 50px 50px 50px 50px;
            margin-top: 40px;
            font-size: 16px;
            font-weight: bold;
            padding: 1% 0;
            opacity: .8;
        }
    
        .nav-title {
            /* width: 12.86%; */
            width: 20%;
        }
    
        .nav-title img {
            width: 100%;
            align-items: flex-end;
            /* margin-top: 90px; */
        }
    
        .nav2 {
            width: 55%;
            margin-left: 30%;
        }
    
        .nav2 a {
            cursor: url(../img/cute.png), auto;
        }
    
        .nav2 a:active {
            cursor: url(../img/cute.png), auto;
        }
    
        .nav2 ul {
            display: flex;
            justify-content: center;
            list-style: none;
        }
    
        .nav2 li {
            margin-left: 50px;
        }
    
        .nav2 li a {
            color: black;
            display: block;
        }
    
        .nav2 li a:hover {
            color: #8D1133;
            opacity: 0.8;
            cursor: url(../img/click1.png), auto;
        }
    
        .nav2 li a:active {
            cursor: url(../img/click1.png), auto;
        }
    
        /*========= ページトップのためのCSS ===============*/
        /* 8-1-8 リンクボタンをクリックしたら形状が変化 */
        /*リンクを右下に固定*/
        #page-top {
            position: fixed;
            right: 10px;
            bottom: 80px;
            z-index: 2;
            /*はじめは非表示*/
            opacity: 0;
            transform: translateY(150px);
        }
    
        /*　上に上がる動き　*/
        #page-top.UpMove {
            animation: UpAnime 0.5s forwards;
        }
    
        @keyframes UpAnime {
            from {
                opacity: 0;
                transform: translateY(150px);
            }
    
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
    
        /*　下に下がる動き　*/
        #page-top.DownMove {
            animation: DownAnime 0.5s forwards;
        }
    
        @keyframes DownAnime {
            from {
                opacity: 1;
                transform: translateY(0);
            }
    
            to {
                opacity: 1;
                transform: translateY(150px);
            }
        }
    
        /*画像の切り替えと動き*/
        #page-top a {
            /*aタグの形状*/
            display: block;
            width: 100px;
            height: 100px;
            color: #333;
            text-align: center;
            text-transform: uppercase;
            text-decoration: none;
            font-size: 0.6rem;
            /*背景画像の指定*/
            background: url("../img/hibiscus1.png") no-repeat center;
            background-size: contain;
        }
    
        #page-top.floatAnime a {
            width: 100px;
            height: 130px;
            /*背景画像の指定*/
            background: url("../img/hibiscus2.png") no-repeat center;
            background-size: contain;
            /*アニメーションの指定*/
            animation: floatAnime 2s linear infinite;
            opacity: 0;
        }
    
        @keyframes floatAnime {
            0% {
                transform: translateX(0);
                opacity: 0;
            }
    
            25% {
                transform: translateX(-6px);
                opacity: 1;
            }
    
            50% {
                transform: translateX(0)
            }
    
            100% {
                transform: translateX(6px);
                opacity: 1;
            }
        }
    
        /*Page Topと書かれたテキストの位置*/
        #page-top span {
            position: absolute;
            bottom: -5px;
            right: 20px;
            color: #333;
            font-weight: bold;
            font-size: 15px;
        }
    }
/* ↓↓ */
/*SPサイズレスポンシブ*/
@media(max-width:599px) {
    body {
        max-width: 599px;
    }

    .container {
        width: 100%;
    }

    /* タブレットcss */
    body {
        min-width: 600px;
        max-width: 999px;
        background-image: url(../img/green.png);
    }

    .container {
        width: 100%;
    }

    /* PCcss */
img {
    width: 100%;
}

a {
    text-decoration: none;
}

* {
    cursor: url(../img/cute.png), auto;
}

/* Loading背景画面設定　*/

#splash {
    /*fixedで全面に固定*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: #F2EBDB;
    text-align: center;
    color: #fff;
}

/* Loadingバー中央配置　*/
#splash_text {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 999;
    width: 100%;
    transform: translate(-50%, -50%);
    color: #fff;
}



a {
    color: #333;
}

a:hover {
    text-decoration: none;
}

.container {
    width: 100%;
    margin: 0 auto;
}


/* ヘッダー */
.header {
    width: 100%;
    height: 65px;
    padding: 1% 0;
    opacity: .8;
    display: flex;
    align-items: center;
    text-align: center;
    background-color: #F2EBDB;
    border-radius: 50px 50px 50px 50px;
    margin-bottom: 40px;
}

.main-title {
    /* width: 12.86%; */
    width: 20%;
}

.main-title img {
    width: 100%;
    object-fit: cover;
}

.nav1 {
    width: 42.47%;
    margin-left: 44.67%;
    font-size: 16px;
    font-weight: bold;
}

.nav1 a {
    color: black;
    list-style: none;
    display: block;
}

.nav1 a:hover {
    color: #8D1133;
    opacity: 0.8;
    cursor: url(../img/click1.png), auto;
}

.nav1 a:active {
    cursor: url(../img/click1.png), auto;
}

.nav1 ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

h2 {
    width: 350px;
    font-family: "Kaisei Decol", serif;
    margin: 0 auto;
    text-align: center;
    font-size: 35px;
    font-weight: lighter;
    font-weight: bold;
    border-bottom: solid 5px #D2B497;
    font-weight: bold;
}

/* googleフォームここから */
form {
    background-color: #F2EBDB;
    padding: 12%;
    border-radius: 5%;
}

.c-form {
    max-width: 600px;
    margin: 0 auto;
}

.c-form p {
    line-height: 1.7;
}

.c-form__item {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-evenly;
    margin-bottom: 20px;
    align-items: center;
}



.c-form__label,
.c-form__input {
    padding: 10px;
}

.c-form__label {
    width: 90%;
}

.c-form__input {
    width: 90%;
    font-size: 16px;
    border: solid 1px #333;
    border-radius: 4px;
}

.c-form__input:focus-visible {
    outline: #D2B497 auto 1px;
}

.c-form__required {
    color: #fff;
    background-color: #D2B497;
    border-radius: 4px;
    padding: 5px 5px;
    margin: 0 0 0 18px;
}

textarea.c-form__input {
    height: 160px;
}

.c-form__submit {
    text-align: center;
}

.c-form__submit button {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background-color: #D2B497;
    border: solid 1px #D2B497;
    border-radius: 4px;
    padding: 5px 32px;
    transition: 0.4s;
    cursor: pointer;
}

.c-form__submit button:hover {
    color: #D2B497;
    background-color: transparent;
}

@media (min-width: 640px) {
    .c-form__item {
        flex-wrap: nowrap;
    }

    .c-form__label {
        width: 40%;
    }

    .c-form__input {
        width: 55%;
    }
}


/* フッダー */
.footer {
    width: 100%;
    height: 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-top: 15px; */
    background-color: #F2EBDB;
    border-radius: 50px 50px 50px 50px;
    margin-top: 40px;
    font-size: 16px;
    font-weight: bold;
    padding: 1% 0;
    opacity: .8;
}

.nav-title {
    /* width: 12.86%; */
    width: 20%;
}

.nav-title img {
    width: 100%;
    align-items: flex-end;
    /* margin-top: 90px; */
}

.nav2 {
    width: 55%;
    margin-left: 30%;
}

.nav2 a {
    cursor: url(../img/cute.png), auto;
}

.nav2 a:active {
    cursor: url(../img/cute.png), auto;
}

.nav2 ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

.nav2 li {
    margin-left: 120px;
}

.nav2 li a {
    color: black;
    display: block;
}

.nav2 li a:hover {
    color: #8D1133;
    opacity: 0.8;
    cursor: url(../img/click1.png), auto;
}

.nav2 li a:active {
    cursor: url(../img/click1.png), auto;
}

/*========= ページトップのためのCSS ===============*/
/* 8-1-8 リンクボタンをクリックしたら形状が変化 */
/*リンクを右下に固定*/
#page-top {
    position: fixed;
    right: 10px;
    bottom: 30px;
    z-index: 2;
    /*はじめは非表示*/
    opacity: 0;
    transform: translateY(150px);
}

/*　上に上がる動き　*/
#page-top.UpMove {
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(150px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*　下に下がる動き　*/
#page-top.DownMove {
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 1;
        transform: translateY(150px);
    }
}

/*画像の切り替えと動き*/
#page-top a {
    /*aタグの形状*/
    display: block;
    width: 100px;
    height: 100px;
    color: #333;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.6rem;
    /*背景画像の指定*/
    background: url("../img/hibiscus1.png") no-repeat center;
    background-size: contain;
}

#page-top.floatAnime a {
    width: 100px;
    height: 130px;
    /*背景画像の指定*/
    background: url("../img/hibiscus2.png") no-repeat center;
    background-size: contain;
    /*アニメーションの指定*/
    animation: floatAnime 2s linear infinite;
    opacity: 0;
}

@keyframes floatAnime {
    0% {
        transform: translateX(0);
        opacity: 0;
    }

    25% {
        transform: translateX(-6px);
        opacity: 1;
    }

    50% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(6px);
        opacity: 1;
    }
}

/*Page Topと書かれたテキストの位置*/
#page-top span {
    position: absolute;
    bottom: -5px;
    right: 20px;
    color: #333;
    font-weight: bold;
    font-size: 15px;
}
}

