@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Aoboshi+One&family=M+PLUS+1p:wght@300;400;500;700;800&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    margin: 0;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #572c00;
}

.sp {
    display: none;
}

@media screen and (max-width: 426px) {
    body {
        font-size: 14px;
    }

    .sp {
        display: block;
    }

    .pc {
        display: none;
    }
}

img {
    width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: rgb(255, 136, 0);
}

ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
    line-height: 1.5em;
}


/* スライダー */
.slider {
    width: 100vw;
    height: 80vh;
    overflow: hidden;
    position: relative;
    max-width: 100%;
}

.slider div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 10;
    opacity: 0;
    animation-name: slide-fade;
    animation-duration: 15s;
    animation-iteration-count: infinite;
}

@keyframes slide-fade {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 0;
        z-index: 0;
    }
}

.slider div:first-of-type {
    background-image: url(img/slide01.jpg);
}

.slider div:nth-of-type(2) {
    background-image: url(img/slide02.jpg);
    animation-delay: 5s;
}

/* .slider div:last-of-type {
    background-image: url(img/slide03.jpg);
    animation-delay: 10s;
} */

h1 {
    display: block;
    width: fit-content;
    height: fit-content;
    position: absolute;
    top: 5%;
    left: 0;
    z-index: 555;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 0.5em 1em 0.5em 1em;
    line-height: 1.0;
    font-weight: 700;
}

h1 ruby {
    font-size: 1.25em;
    color: rgb(255, 136, 0);
}

h1 ruby rt {
    font-size: 0.25em;
}

a.open{
    display: block;
    position: absolute;
    bottom:50%;
    left: 5%;
    background-color: rgb(255, 246, 182);
    padding: 2rem 1rem;
    z-index: 999;
    text-align: center;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
}
a.open span{
    font-weight: bolder;
    font-size: 1.8em;
    margin: 0;
    padding: 0;
    line-height: 1.25em;
}

@media screen and (max-width: 426px) {
a.open{
bottom:100px;
}
}

div.wrapper {
    width: 96%;
    max-width: 1000px;
    margin: auto;
    position: relative;
}

h2 {
    text-align: center;
    font-size: 2rem;
    color: rgb(255, 136, 0);
    margin-bottom: 1.5rem;
}

h3 {
    color: rgb(255, 136, 0);
    font-size: 1.5rem;
    border-bottom: 10px solid rgb(255, 246, 182);
    padding-bottom: 5px;
    margin-bottom: 1.5rem;
}

section {
    margin-bottom: 5rem;
}


/* menu */
ul.menu {
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin-bottom: 5rem;
}

ul.menu li {
    width: 24%;
}

ul.menu li a {
    display: block;
    text-align: center;
    width: 100%;
    background-color: rgb(246, 115, 0);
    border-radius: 25px;
    color: #FFF;
    font-size: 1.3rem;
    padding: 0.25em 0.5em;
    box-sizing: border-box;
    font-weight: 500;
    border: 3px solid rgb(246, 115, 0);
}

ul.menu li a:hover {
    background-color: #FFF;
    color: rgb(246, 115, 0);
}

@media screen and (max-width: 768px) {
    ul.menu {
        flex-wrap: wrap;
    }

    ul.menu li {
        width: 48%;
        margin-bottom: 1rem;
    }

    ul.menu li a {
        font-size: 0.95rem;
    }

    ;
}


/* にぎり地蔵とは？ */
div.what {
    display: flex;
    justify-content: center;
    width: 100%;
}

div.what img {
    width: 30% !important;
}

div.what div {
    width: 70%;
    padding-left: 5em;
    box-sizing: border-box;
}

@media screen and (max-width: 768px) {
    div.what {
        flex-wrap: wrap;
    }

    div.what img {
        width: 100% !important;
    }

    div.what div {
        width: 100%;
        padding: 1em;
    }
}

h4 {
    font-size: 1.25rem;
    color: rgb(246, 115, 0);
    text-align: center;
}

/* 作り方 */
#two ol {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    counter-reset: section;
}

#two ol li {
    width: 48%;
    border: 5px solid rgb(255, 246, 182);
    border-radius: 25px;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#two ol li h5::before {
    counter-increment: section;
    content: counter(section) ". ";
}

h5 {
    font-size: 1.5em;
    font-weight: 600;
    margin: 0;
    padding: 0;
    height: 2em;
    text-align: center;
}

#two ol li img {
    margin: auto auto 0 auto;
}

#two ol li p {
    padding: 1em 0.5em;
}

@media screen and (max-width: 426px) {
    #two ol li {
        width: 100%;
        padding: 1em;
    }

    #two ol li img {
        width: 70%;
        margin-bottom: 1em;
    }

    #two ol li p {
        padding: 0;
    }
}

/* 価格・予約 */
#three div {
    background-color: rgb(255, 249, 207);
    border-radius: 30px;
    padding: 1rem;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

#three{
    position: relative
}

dl.opensale{
    position: absolute ;
    top: -60px;
    right: 0;
    background-color: rgb(255, 136, 0);
    padding: 0.5em;
    border-radius: 30px 30px;
    font-weight: bold;
}
 
dl.opensale dt{
    font-size: 1.8rem;
    text-align: center;
        color: #FFF;
 font-family: "Aoboshi One", serif;
   font-weight: 400;
  font-style: normal;
}

dl.opensale dd{
    background-color: rgb(255, 249, 207);
    padding: 0.25em 1em;
    margin: 0;
    line-height: 2em;
    border-radius: 0 0 20px 20px;
}

dl.opensale dd span{
    font-size: 1.8em;
}

@media screen and (max-width: 768px) {
    dl.opensale{
    position: initial;
    text-align: center;
    width: fit-content;
    margin: 1rem auto;
    }
    dl.opensale dd{
    padding: 0.25em 0.5em;
    }
}

#three div h5 {
    text-align: center;
}

#three div dl {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 auto;
    padding: 0;
    font-size: 1.5rem;
    width: fit-content;
    max-width: 600px;
    border-bottom: #572c00 2px dotted;
}

@media screen and (max-width: 426px) {
    #three div dl {
        font-size: 1.2rem;
    }
}

#three div dl dt {
    font-weight: 600;
    box-sizing: border-box;
    margin-bottom: 1rem;
    line-height: 1em;
    position: relative;
    width: 60%;
    padding-left: 2em;
    box-sizing: border-box;
}

#three div dl dt span {
    font-size: 0.6em;
}

#three div dl dt::after {
    content: "・・・";
    display: block;
    width: 3em;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    font-size: 1rem;
}

#three div dl dd {
    margin: 0 0 1rem 0;
    padding: 0 0 0 1em;
    box-sizing: border-box;
    width: 40%;
}

#three div dl dd::after {
    content: "（税込）";
    font-size: 0.6em;
}

#three div dl dd:last-of-type::after {
    content: "";
}

@media screen and (max-width: 426px) {
    #three div dl dt {
        width: 50%;
        padding-left: 1em;
    }

    #three div dl dt::after {
        font-size: 0.5em;
    }

    #three div dl dd {
        width: 50%;
    }
}

#three div ul {
    width: 100%;
    margin: 1em auto;
    padding: 0 2em;
    box-sizing: border-box;
}

#three div ul li {
    padding-left: 1em;
    text-indent: -1em;
    margin-bottom: 0.5em;
}

#three div ul li::before {
    content: "※";
}

#three ol.yoyakulist {
    width: 100%;
    counter-reset: section;
}

#three ol.yoyakulist li {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 1rem;
}

#three ol.yoyakulist li h6 {
    font-size: 1.2rem;
    padding: 0.25em;
    margin: 0;
}

#three ol.yoyakulist li h6::before {
    counter-increment: section;
    content: counter(section) ". ";
}


#three ol.yoyakulist li div {
    width: 70%;
    margin: 0;
    ;
}

#three ol.yoyakulist li div p {
    padding-left: 1em;
}

#three ol.yoyakulist li div p.yoyakulink {
    display: flex;
    flex-wrap: wrap;
    margin: 0.5em auto;
    justify-content: space-around;
    padding-left: 0;
}

#three ol.yoyakulist li div a {
    display: block;
    width: 45%;
    background-color: rgb(246, 115, 0);
    color: #FFF;
    text-align: center;
    padding: 0.5em;
    border-radius: 25px;
    font-weight: 500;
    border: rgb(246, 115, 0) 3px solid;
    box-sizing: border-box;
}

#three ol.yoyakulist li div a:hover {
    background-color: #FFF;
    color: rgb(246, 115, 0);
}

#three ol.yoyakulist li div a i {
    padding-right: 0.5em;
}

#three ol.yoyakulist li img {
    width: 20%;
}

@media screen and (max-width: 426px) {
    #three ol.yoyakulist li {
        flex-wrap: wrap;
    }

    #three ol.yoyakulist li div {
        width: 100%;
    }

    #three ol.yoyakulist li img {
        width: 60%;
        margin-bottom: 1rem;
    }

    #three ol.yoyakulist li div a {
        width: 90%;
        margin-bottom: 0.5rem;
    }
}

/* Googleマップ埋め込み用レスポンシブ対応 */
.access {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


.access iframe {
    width: 100%;
    max-width: 500px;
    height: 300px;
    border: 0;
    display: block;
}

.access dl {
    width: calc(100% - 520px);
}

.access dl dd {
    margin-bottom: 1em;
}

@media screen and (max-width: 768px) {
    .access {
        flex-direction: column;
        gap: 1rem;
    }

    .access iframe {
        max-width: 100%;
        height: 200px;
    }

    .access dl {
        width: 90%;
        margin: 1rem auto;
    }
}

footer {
    width: 100%;
    background-color: #201000;
    padding: 1rem;
    text-align: center;
    color: #FFF;
}

footer p {
    font-size: 0.8rem;
}

a.koreiyoyaku {
    width: 60px;
    height: fit-content;
    display: flex;
    padding: 0 0 5px 0;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 10px;
    bottom: 40px;
    background-color: rgb(255, 143, 45);
    color: #FFF;
    border-radius: 10px;
    font-size: 12px;
    text-align: center;
    line-height: 1em;
    z-index: 999;
    border: 1px #FFF solid;
}

a.koreiyoyaku img {
    width: 60px;
    height: auto;
}

@media screen and (max-width: 768px) {
    a.koreiyoyaku {
        width: 50px;
        height: 90px;
        right: 0;
        border-radius: 5px 0 0 5px;
    }

    a.koreiyoyaku img {
        width: 30px;
        height: auto;
    }
}