@charset "UTF-8";

/* 【import】フォント */
@import url('https://fonts.googleapis.com/css2?family=Kaisei+Opti:wght@400;500;700&display=swap');
/* font-family: "Kaisei Opti", serif; */

@import url('https://fonts.googleapis.com/css2?family=Grey+Qo&display=swap');
/* font-family: "Grey Qo", serif; */
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho&display=swap');
/* font-family: "Zen Old Mincho", serif; */

* {
    margin: 0;
    padding: 0;
    font-family: "Kaisei Opti", serif;
}

html {
    position: relative;
    scroll-behavior: smooth;
}

body {
    background-color: #f0f0f0;
}

header {
    background-color: #ffffff;
    width: 100%;
}

article div {
    padding: 0 0 2em 0;
}

footer {
    color: #ffffff;
    text-align: center;
    background-color: #000000;
    width: 100%;
    position: absolute;
}

/* スライドショー */
.container {
    width: 100%;
}

.slider {
    position: relative;
    margin: 0 auto;
}

.slider span {
    position: absolute;
    z-index: 1;
    left: 0;
    width: 50%;
    padding: 2em 5% !important;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
}

.slider-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 0;
    animation: slideShow 28s linear infinite 0s;
}

.slider-item:nth-child(2) {
    animation-delay: 8s;
}

.slider-item:nth-child(3) {
    animation-delay: 12s;
}

.slider-item:nth-child(4) {
    animation-delay: 20s;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes slideShow {
    0% {
        opacity: 0;
        animation-timing-function: ease-in;
    }

    8% {
        opacity: 1;
        animation-timing-function: ease-out;
    }

    20% {
        opacity: 1;
    }

    40%,
    100% {
        opacity: 0;
    }
}

/* ショップ情報 */
.info p {
    font-family: "Zen Old Mincho", serif;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info p::before,
.info p::after {
    content: '';
    width: 5em;
    height: 3px;
    background: #e6d200;
}

.info p::before {
    margin-right: 3em;
}

.info p::after {
    margin-left: 3em;
}

.logo {
    display: flex;
    justify-content: center;
}

/* newsタイトル */
.news_title {
    font-size: 1.2em;
    position: relative;
    padding: 0.3em 0 0.2em 1em;
    border-bottom: 3px solid #e6d200;
}

.news_title::before {
    position: absolute;
    transform: rotate(55deg);
    background: #e6d200;
    content: '';
}

.news_title::after {
    position: absolute;
    transform: rotate(15deg);
    background: #e6d200;
    content: '';
}

.news_title span {
    font-size: 0.8em;
}

.news_title+p {
    color: #424242;
    padding: 0.5em 0 2em 0;
}

.blink {
    color: #ff0000;
    animation: blinking 1s ease-in-out infinite alternate;
}

#Contact .calendar {
    width: 30%;
}

#Contact .calendar>div {
    display: flex;
}

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

    100% {
        opacity: 1;
    }
}

.totop {
    padding: 1em;
}

.totop>a {
    position: fixed;
}

.topbutton {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background-color: #e6d200;
}

.topbutton:hover {
    border: 1px solid #e6d200;
    background-color: #fff;
}

.topbutton:hover path {
    fill: #e6d200;
}

/* sotzメニュー */
.sotz_menu {
    position: relative;
}

.sotz_menu>h2 {
    /* テープ背景色と透過*/
    background-color: rgba(255, 255, 255, 0.1);
    /* ギザギザ*/
    border-left: 0.3em dotted rgba(0, 0, 0, 0.3);
    border-right: 0.3em dotted rgba(0, 0, 0, 0.3);
    /*テープ影*/
    box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.5);
    /*テープの傾き*/
    transform: rotate(-10deg);
    position: absolute;
    padding: 1em 1em 1.2em 1em;
}

.sotz_menu>div {
    background-image: linear-gradient(0deg, transparent 1.9em, #cccccc 2em), linear-gradient(90deg, transparent 1.9em, #cccccc 2em);
    background-size: 2em 2em;
}

.sotz_menu p {
    font-size: 0.9em;
}

/* sotzタイトル */
.sotz_title {
    position: relative;
}

.sotz_title::before {
    content: attr(data-en);
    position: absolute;
    transform: rotate(-15deg);
    color: rgba(0, 0, 0, 0.2);
    font-family: "Grey Qo", serif;
}

/* 購入フォーム */
.buy p {
    color: #ff0000;
    font-size: 0.8em;
}

.buy_title {
    text-align: center;
    padding: 3em 0 1em 0;
}

.buy_table {
    width: 100%;
    padding: 0 0 2em 0;
}

.buy_item,
.buy_body {
    padding: 1em;
    border: 1px solid #878787;
}

.buy_item {
    text-align: left;
    width: 30%;
    background-color: #ffffff;
}

.buy_body {
    width: 70%;
}

.form-select {
    width: 50px;
    height: 20px;
    border: 1px solid #878787;
    border-radius: 5px;
}

.form-text {
    width: 100%;
    padding: 0.5em;
    border-radius: 5px;
    border: 1px solid #878787;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    max-width: 185px;
}

.form-textarea {
    width: 100%;
    padding: 0.5em;
    height: 200px;
    border-radius: 5px;
    border: 1px solid #878787;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.buy_button {
    position: relative;
    width: 250px;
    margin: 0 auto;
    padding: .9em 2em;
    color: #000000;
    font-size: 1em;
    display: flex;
    justify-content: center;
}

.buy_button::before,
.buy_button::after {
    position: absolute;
    z-index: -1;
    width: 0;
    height: 1px;
    content: '';
}

.buy_button::before {
    top: -1px;
    left: 0;
    border-top: 1px solid transparent;
    border-right: 1px solid transparent;
}

.buy_button::after {
    bottom: 0;
    right: 0;
    border-bottom: 1px solid transparent;
    border-left: 1px solid transparent;
}

.buy_button:hover::before,
.buy_button:hover::after {
    width: 100%;
    height: 100%;
    border-color: #000000;
    transition: width .3s ease, height .3s .3s ease;
}

.buy_button span {
    display: flex;
    justify-content: center;
    align-items: center;
}

.buy_button span::after {
    display: inline-block;
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-top: 2px solid #000000;
    border-right: 2px solid #000000;
    content: '';
}

.privacy {
    display: flex;
    justify-content: center;
}

.accordion {
    width: 100%;
    margin-bottom: 7px;
    border: 2px solid #000000;
    border-radius: 5px;
}

.accordion summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2028%2028%22%3E%0A%20%20%20%20%3Ccircle%20cx%3D%2214%22%20cy%3D%2214%22%20r%3D%2214%22%20style%3D%22fill%3A%23000000%3B%22%2F%3E%0A%3C%2Fsvg%3E');
    background-position: right calc(2em - 7px) center;
    background-size: 22px;
    background-repeat: no-repeat;
    color: #000000;
    font-weight: 600;
    cursor: pointer;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 5px;
    height: 5px;
    border-bottom: 3px solid #ffffff;
    border-right: 3px solid #fff;
    content: '';
    transition: transform .3s;
}

.accordion[open] summary::after {
    transform: rotate(225deg);
}

.accordion p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 0 2em 1.5em;
    color: #000000;
    transition: transform .5s, opacity .5s;
}

.accordion[open] p {
    transform: none;
    opacity: 1;
}

.accordion div {
    padding: 0 1em 0 1em;
}

/* カレンダー */
.calendar h3 {
    text-align: center;
    padding: 0 0 0.3em 0;
}

.calendar table {
    width: 100%;
}

.calendar p span {
    color: #ff6347;
}

.dotw {
    color: #ffffff;
    text-align: center;
    background-color: #424242;
}

.day {
    text-align: center;
    background-color: #ffffff;
}

.recess {
    background-color: #ff6347;
}

/* PC */
@media screen and (min-width: 481px) {
    main {
        padding: 5em 6.5em 10em 6.5em;
    }

    article {
        padding: 3em 0 0 3em;
        width: 70%;
    }

    aside {
        padding: 3em 0 0 3em;
        width: 20%;
    }

    footer {
        padding: 3em 0 3em 0;
    }

    .smartphone {
        display: none;
    }

    .hover {
        text-decoration: none;
        /* 文字色は透明にして背景が見えるようにする */
        color: transparent;
        /* 50%の位置で切り替わるグラデーション */
        background: linear-gradient(to right, #ff6347 50%, #000000 50%) 100%;
        /* 背景をテキストで切り抜く */
        background-clip: text;
        /* 横幅は200%にしてグラデーションの青部分は見えないようにする */
        background-size: 200% 100%;
        transition: background-position 0.3s;
    }

    .hover:hover {
        /* グラデーションの位置を移動 */
        background-position: 0 100%;
    }

    .PC div {
        display: flex;
        padding: 1em 6em 1em 6em;
        justify-content: center;
        align-items: center;
    }

    .PC img {
        width: 20%;
        padding: 0 15em 0 3em
    }

    nav ul {
        display: flex;
        padding: 0 0 0 1em;
    }

    nav ul li {
        list-style: none;
        padding: 0 1em 0 1em;
    }

    nav ul li a {
        font-size: 0.8em;
    }

    /* スライドショー */
    .slider {
        width: 1080px;
        height: 588px;
    }

    .slider span {
        bottom: 5em;
    }

    /* ショップ情報 */
    .logo {
        padding: 3em 0 1em 0;
    }

    .logo img {
        height: 30em;
    }

    .info p {
        font-size: 2em;
        padding: 1em 0 3em 0;
    }

    /* newsタイトル */
    .news_title::before {
        top: 0;
        left: 0.3em;
        height: 11px;
        width: 12px;
    }

    .news_title::after {
        top: 0.6em;
        left: 0;
        height: 8px;
        width: 8px;
    }

    /* sotzメニュー */
    .sotz_menu {
        padding: 2em 0 2em 0;
    }

    .sotz_menu>h2 {
        top: 1.5em;
    }

    .sotz_menu>div {
        display: flex;
        align-items: center;
    }

    /* sotzタイトル */
    .sotz_title {
        padding: 2em 0.5em 0em 0.5em;
        font-size: 1.5em;
    }

    .sotz_title span {
        padding: 0em 0em 0em 1em;
        font-size: 0.5em;
    }

    .sotz_title::before {
        top: -0.3em;
        font-size: 2em;
    }

    /* sotz画像 */
    .sotz_img {
        width: 35%;
    }

    .form-textarea {
        max-width: 350px;
    }

    /* aside */
    /* news */
    .aside_news>ul {
        padding: 0.5em 1em 0.5em 2.3em;
        position: relative;
        /*ボーダー*/
        border-top: solid #000000 1px;
        border-bottom: solid #000000 1px;
    }

    .aside_news ul li {
        list-style-type: none !important;
        font-size: 0.8em;
    }

    .aside_news ul li span {
        font-size: 0.3;
    }

    .aside_news ul li:before {
        content: "★";
        position: absolute;
        left: 1em;
        color: #e6d200;
    }

    /* contact */
    .aside_contact {
        padding: 2em 0 2em 0;
    }

    .totop>a {
        bottom: 12em;
        right: 5em;
    }
}

/* スマートフォン */
@media screen and (max-width: 480px) {
    main {
        padding: 1em 1em 10em 1em;
    }

    article {
        width: 100%;
        font-size: .6em;
        padding: 3em 1em 0 1em;
    }

    aside {
        display: none;
    }

    footer {
        padding: 3em 0 3em 0;
    }

    footer p {
        font-size: 0.5em;
    }

    .hover {
        text-decoration: none;
        color: #000000;
    }

    .PC {
        display: none;
    }

    .smartphone div {
        list-style: none;
        text-align: center;
    }

    .smartphone img {
        width: 70%;
        padding: 1em 0 0 0;
    }

    nav>ul li {
        display: inline-block;
    }

    nav ul li {
        list-style: none;
        padding: 1em 1em 1em 0;
    }

    nav ul li a {
        color: #000000;
        text-decoration: none;
    }

    /* スライドショー */
    .slider {
        width: 300px;
        height: 176px;
    }

    .slider span {
        font-size: 0.3em;
        bottom: 3em;
    }

    /* ショップ情報 */
    .logo {
        padding: 1em 0 1em 0;
    }

    .logo img {
        height: 20em;
    }

    .info p {
        font-size: 0.75em;
        padding: 1em 0 3em 0;
    }

    /* newsタイトル */
    .news_title::before {
        top: 0;
        left: 0.3em;
        height: 5px;
        width: 6px;
    }

    .news_title::after {
        top: 0.6em;
        left: 0;
        height: 4px;
        width: 4px;
    }

    /* sotzメニュー */
    .sotz_menu>h2 {
        top: 3em;
    }

    /* sotzタイトル */
    .sotz_title span {
        padding: 0em 0em 0em 1em;
        font-size: 0.5em;
    }

    .sotz_title::before {
        top: -0.3em;
        font-size: 2em;
    }


    /* sotz画像 */
    .sotz_img {
        width: 100%;
        text-align: center;
    }

    .form-textarea {
        max-width: 185px;
    }

    .totop>a {
        bottom: 10em;
        right: 1em;
    }

}