@charset "UTF-8";

#header {
    width: 100%;
    background-color: rgba(218, 190, 255, 0.3);
    font-family: "Klee One", cursive;
    font-weight: 500;
    font-style: normal;
    position: relative;
}

p,
li,
dl,
h2 {
    color: #333;
}

.head_logo {
    width: 20%;
}

.head_logo img {
    width: 100%;
    max-width: 250px;
    vertical-align: bottom;
    margin: 20px 0 0 20px;
}

.main_list_head {
    display: flex;
    list-style: none;
    position: absolute;
    top: 10px;
    right: 8vw;
}

/* メニュー黒ポチを消す */
.nav_list {
    list-style: none;
    margin: 100px 0 0 0;
}

.nav_item {
    text-align: center;
    margin: 25px 0;
}

.nav_item a {
    text-decoration: none;
    color: #444;
    cursor: pointer;
}

.en_color {
    font-family: "Playwrite BE VLG", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(12px, 1.4vw, 18px);
    color: #9F84FF;
}

.jp_color {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(12px, 1.5vw, 18px);
    color: #9F84FF;
}


.en {
    font-family: "Playwrite BE VLG", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(12px, 1.4vw, 18px);
}

.jp {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(12px, 1.5vw, 18px);
}


/* 文字回転 */

.rotate {
    /* 3D変形させた際の、奥行きを指定 */
    perspective: 300px;
    text-decoration: none;
    display: inline-block;
}

.rotate>span {
    /* 背面の要素（2個目のspanタグ）を非表示にする */
    backface-visibility: hidden;
    /* アニメーション効果を0.5秒間で適用 */
    transition: transform .5s;
    display: block;
    height: 20px;
}

/* ホバー前 */
.rotate>span:first-child {
    /* 10px下に移動し縦中央に表示する */
    transform: translateY(10px) rotateX(0deg);
}

.rotate>span:last-child {
    /* 90度回転させ非表示にする */
    transform: rotateX(-90deg);
}

/* ホバー時 */
.rotate:hover>span:first-child {
    /* X軸周りに90度回転して非表示にする */
    transform: rotateX(90deg);
}

.rotate:hover>span:last-child {
    /* 10px上に移動し表示する */
    transform: translateY(-10px) rotateX(0deg);
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked~.nav_content {
    right: 0;
    /* メニューを画面に入れる */
}

/* ハンバーグ */

/* ここから下がハンバーガーメニューに関するCSS */

/* チェックボックスを非表示にする */

.nav {
    position: fixed;
    right: 20px;
    z-index: 150;
    top: 0;
    transition: .2s;
    opacity: 1;
}

.drawer_hidden {
    display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
    display: flex;
    height: 80px;
    width: 80px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
    /* 重なり順を一番上にする */
    cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #333;
    transition: 0.5s;
    position: absolute;
}

.drawer_open span::before {
    content: '';
    display: block;
    height: 3px;
    width: 35px;
    border-radius: 3px;
    background: #333;
    transition: 0.5s;
    position: absolute;
}

.drawer_open span:after {
    content: 'menu';
    display: block;
    height: 3px;
    width: 25px;
    transition: 0.5s;
    position: absolute;
    font-family: "Petit Formal Script", cursive;
    font-weight: 600;
    font-style: normal;
}


/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
    top: 10px;
}

.drawer_open span:before {
    bottom: 15px;

}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked~.drawer_open span {
    transform: rotate(45deg);
    width: 35px;
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */

#drawer_input:checked~.drawer_open span::after {
    top: 0;
    opacity: 0;

}

#drawer_input:checked~.drawer_open span::before {
    bottom: 0;
    transform: rotate(-90deg);

}

/* メニューのデザイン*/
.nav_content {
    width: 20%;
    min-width: 200px;
    height: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    /* メニューを画面の外に飛ばす */
    z-index: 99;
    background-color: rgba(216, 190, 255, 0.7);
    backdrop-filter: blur(5px);
    transition: .5s;
}

.hun_icon {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

}

.sns {
    margin: 10px 7px 5px 7px;
}

.sns_img {
    width: 3vw;
    min-width: 25px;
    max-width: 40px;
    cursor: pointer;
}

.sns_img:hover {
    transform: scale(1.1);
}

.head_inf {
    width: 90%;
    display: flex;
    justify-content: space-between;
    margin: 20px 0 0 5%;
    align-items: flex-end;
    padding-bottom: 30px;
}

h2 {
    color: #444;
}

.head_inf h2 {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    font-size: 35px;
    letter-spacing: 3px;

}

.inf_tel {
    vertical-align: baseline;
    font-size: 25px;
    border: #fff solid 3px;
    text-align: center;
    font-weight: 100;
    font-family: "Allura", cursive;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 2px;
    cursor: pointer;
    padding: 0.8vw 2vw 0.6vw 2vw;

}

.inf_tel:hover {
    transform: scale(1.1);
    transition: 0.3s;
}

.inf_tel a {
    text-decoration: none;
    color: #fff;
}

.inf_sns {
    width: 100%;
    margin-right: 3vw;
    display: flex;
    justify-content: right;
}

.inf_sns img {
    width: clamp(30px, 3vw, 40px);
    cursor: pointer;
    margin: 20px 1vw 0 0;
}

.head_tel {
    display: none;
}

.inf_sns img:hover {
    transform: scale(1.1);
    transition: 0.3s;
}

/* main入り */

.all_title {
     font-weight: 100;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    letter-spacing: 2px;
    width: 80%;
    margin: 50px auto 50px auto;
}

.all_title h2 {
    font-size: 28px;
}

.all_title p {
    font-family: "Playwrite BE VLG", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #9F84FF;
}

@media screen and (max-width:1024px) {

    .main_list_head {
        display: none;
    }

    .all_title h2 {
        font-size: 25px;
    }


    .head_inf h2 {
        font-size: 25px;
    }

    .inf_tel {
        vertical-align: baseline;
        font-size: 20px;
        border: #fff solid 2px;
        text-align: center;
        font-weight: 100;
        font-family: "Allura", cursive;
        font-weight: 600;
        font-style: normal;
        letter-spacing: 2px;
        cursor: pointer;
        padding: 1vw 2vw 0.5vw 2vw;
    }

}

@media screen and (max-width:590px) {

    .all_title h2 {
        font-size: 22px;
    }

    .inf_tel {
        display: none;
    }

    .head_tel {
        display: block;
    }

    .inf_sns img {
        margin: 20px 1vw 0 1vw;
    }

}