@charset "utf-8";

/* リセットCSSと共通設定 */
*,
::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul,
li {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

body {
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    color: #000;
    line-height: 1;
    background-color: #fff;
    margin: 0;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;

}

/* ヘッダー */

.header {
    background-color: #ffffff99;
    backdrop-filter: blur(1px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999999;
}

.header-inner {
    max-width: 1200px;
    height: 105px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-menu-button {
    display: none;
}

.site-menu ul {
    display: flex;
}

.site-menu ul li {
    margin: 0 20px;
}

.site-menu ul li a {
    font-family: "Kosugi", sans-serif;
    font-weight: normal;
    font-size: 15px;
    white-space: nowrap;
    letter-spacing: 2px;
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}

.site-menu ul li a:hover {
    transform: scale(1.2);
}

.icon-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.instaicon {
    width: 35px;
}

.loginicon {
    background-color: #135A30;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 60px;
    height: 60px;
    border-radius: 10px;
    margin-left: 20px;
    filter: drop-shadow(3px 3px 3px #1a1a1a);
}

.loginicon img {
    margin-top: 6px;
    width: 40px;
}

.carticon {
    display: flex;
    flex-direction: column;
    /* 縦方向にアイコンと文字を並べる */
    justify-content: center;
    align-items: center;
    background-color: #135A30;
    /* 緑 */
    width: 60px;
    height: 60px;
    border-radius: 12px;
    color: white;
    /* font-size: 12px; */
    margin-left: 20px;
    filter: drop-shadow(3px 3px 3px #1a1a1a);

}

.carticon img {
    width: 29px;
    height: auto;
    margin-bottom: 4px;
}

.carticon p {
    font-size: 10px;
    color: #fff;
    font-weight: bold;
    margin-top: 1px;
    text-align: center;
}

/* ファーストビュー */

.slideshow {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.image {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-size: cover;
    background-position: center center;
    animation: image-switch-animation 15s infinite;
    z-index: 1;
}

.src1 {
    background-image: url(./images/sakupanfv1_01_01.jpg);
}

.src2 {
    background-image: url(./images/sakupanfv1_02_01.jpg);
}

.src3 {
    background-image: url(./images/sakupanfv1_03_01.jpg);
}

.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.logo img {
    max-width: 220px;
    width: 100%;
    height: auto;
    filter: drop-shadow(3px 3px 3px #221602);
}

/* スライドショーのアニメーション */
@keyframes image-switch-animation {
    0% {
        opacity: 0;
    }

    33% {
        opacity: 1;
    }

    66% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.slideshow .image:nth-child(1) {
    animation-delay: 0s;
}

.slideshow .image:nth-child(2) {
    animation-delay: 5s;
}

.slideshow .image:nth-child(3) {
    animation-delay: 10s;
}


/* ここまでスライドショーのアニメーション */
/* コンセプト */
.concept {
    height: 300px;
    min-height: 300px;
    background-image: url(./images/copy_02.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
}

.title01 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.title01 h2 {
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 2.5;
    letter-spacing: 3px;
}

.title01 p {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

/* ここまでコンセプト */

/* 商品一覧 */
#lineup {
    width: 100%;
    height: 1900px;
    background-image: url(./images/lineupbase_02.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: relative;
}


.title {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.title h2 {
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 2;
    letter-spacing: 8px;
    padding-top: 60px;
}

.title p {
    font-size: 18px;
    letter-spacing: 10px;
    color: #968F78;
    font-family: "Zen Kaku Gothic New", sans-serif;

}

.lineup-menu {
    width: 1000px;
    max-width: 90%;
    margin: 60px auto 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.lineup-menu img {
    max-width: 600px;
    margin-top: -50px;
}

.lineup-text {
    position: relative;
    min-width: 500px;
}

.number {
    font-size: 50px;
    color: #C9C099;
    display: block;
    text-align: left;
    letter-spacing: 5px;
    position: absolute;
    top: 0;
    left: 0;
    font-family: "Kaushan Script", cursive;
    font-weight: 400;
    font-style: normal;
}

.gurutenfree-area {
    background-color: #C9C099;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    position: absolute;
    top: 20px;
    right: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(2px 2px 2px #978f6a);
}

.gurutenfree-area p {
    font-family: "Zen Kaku Gothic New", sans-serif;
    color: #fff;
    font-size: 23px;
    transform: rotate(15deg);
    text-align: center;
    letter-spacing: -0.1em;
}

.lineup-text h3 {
    margin-top: 80px;
    font-size: 60px;
    font-family: "Noto Serif JP", serif;
    font-weight: 800;
    letter-spacing: 10px;
    padding-left: 5px;
}

dl {
    display: block;
}

dt {
    font-size: 22px;
    font-family: "Noto Serif JP", serif;
    margin-top: 15px;
    margin-left: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    padding-left: 3px;
}

dd {
    max-width: 90%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    font-size: 16px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    margin-top: 30px;
    margin-left: 10px;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: -0.1em;

}

.price {
    font-family: "Noto Serif JP", serif;
    display: flex;
    justify-content: right;
    align-items: baseline;
    gap: 10px;
    margin: 40px 40px;

}

.small-text {
    font-size: 16px;
    color: #666;
    font-weight: bold;
    font-family: serif;
}

.large-text {
    font-size: 30px;
    font-weight: bold;
    color: #333;
    font-family: serif;
}

.buy-button-area {
    background-color: #135A30;
    width: 150px;
    height: 40px;
    border-radius: 20px;
    position: absolute;
    top: 360px;
    right: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(2px 2px 2px #9b7646);
}

.buy-button {
    color: #fff;
    font-size: 15px;
}

.buy-button-area:hover {
    background-color: #778311;


}

.lineup-menu.reverse {
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    padding-left: 80px;
}

.lineup-menu.reverse img {
    margin-left: -50px;
}

.reverse .buy-button-area {
    top: 360px;
}

/* さくまぱんについて */
#aboutus .title {
    margin-bottom: 80px;
    position: relative;
}

.aboutus-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    min-width: 90%;
}

.wave-animation {
    display: inline-block;
    transform-origin: bottom center;
    /* 回転の中心を下にするのがポイント */
    animation: wave 20s ease-in-out infinite;
}

.leaf01 {
    width: 85px;
    position: absolute;
    top: 200px;
    right: 110px;
}

.leaf02 {
    width: 100px;
    position: absolute;
    top: 800px;
    left: 70px;
}

.aboutus-menu img {
    width: 400px;
    max-width: 80%;
}

.aboutus-text {
    width: 400px;
}

.aboutus-text dt {
    font-size: 32px;
    line-height: 1.6;
    margin-left: 30px;
}

.aboutus-text dd {
    font-size: 16px;
    line-height: 1.5;
    margin-left: 28px;
}

.aboutus-menu.reverse {
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
}

.aboutus-menu.reverse dd {
    padding-right: 10px;
}

.materials {
    background-color: #fff;
    margin: 50px auto;
}

.materials p {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 16px;
    text-align: center;
    margin-top: 100px;
}

.materials-list {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 40px 60px 10px;
    overflow-x: scroll;
}

.materials-list img {
    width: 110px;
    margin: auto auto;
    /* filter: drop-shadow(10px 10px 10px #978f6a); */

}

.materials-list li {
    flex-shrink: 0;
    width: 150px;
    margin-left: 110px;
    justify-content: center;
    align-items: center;
}

.materials-list li p {
    font-size: 15px;
    margin-top: 15px;
    text-align: center;
}

@keyframes wave {
    0% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(-15deg);
    }

    40% {
        transform: rotate(15deg);
    }

    60% {
        transform: rotate(-10deg);
    }

    80% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}


/* 最新情報はインスタグラムで */
.instagram {
    background-image: url(./images/instahaikei_02_02.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 60vh;
}


.instagram .title h2 {
    color: #fff;
    padding-top: 40px;
}

.instagram .title p {
    color: #968F78;
}

.instagram-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.instagram-image img:hover {
    opacity: 0.7;
}

/* アクセス */

/* #access.title {
    width: 700px;
    max-width: 90%;
    margin: 20px auto;
}

#access.title {
    padding-top: 100px;
} */

.address {
    padding-bottom: 100px;
    text-align: center;
    display: block;
}

/* #access iframe {
    border: 0;
    display: block;
    padding: 0 350px 0;
    width: 100%;
    min-width: 90%;
    height: 380px;
    margin-top: 60px;
    margin-bottom: 60px;
} */

.address p {
    line-height: 1.8;
    display: inline-block;
    text-align: left;
}

.label {
    display: inline-block;
    width: 5em;
    font-weight: bold;
}

#access .title {
    width: 700px;
    max-width: 90%;
    margin: 20px auto;
    padding-top: 100px;
}

#access iframe {
    border: 0;
    display: block;
    width: 90%;
    max-width: 800px;
    margin: 60px auto;
    height: 380px;
}

.iframe-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* フッター */

#footer {
    background-image: url(./images/footer_02.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 550px;
}

.footer-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1100px;
    margin: 0 auto;
    padding-top: 20px;
}

.footer-inner-img {
    width: 500px;
    padding: 50px;
}

.footer-site-menu {
    padding-top: 30px;
}

.footer-site-menu p {
    line-height: 1.5;
}

.footer-menu {
    font-size: 16px;
}

.footer-menu ul {
    margin-bottom: 10px;
}

.footer-menu ul li {
    line-height: 3;
}

.footericon-area {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
}

.footericon-area img {
    width: 65px;
    padding-right: 10px;
}

.freephone {
    font-size: 45px;
    font-weight: bold;
}

.mailicon {
    font-size: 25px;
}

.under-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 1100px;
    margin: 30px auto 0;
}

.copyright {
    font-size: small;
}

.instaicon-footer {
    width: 35px;
}

/* レスポンシブ */
@media(max-width:830px) {
    .site-menu ul {
        display: block;
        text-align: center;
    }

    .site-menu ul li {
        margin: 20px auto;
    }

    .site-menu ul li a {
        color: #fff;
    }

    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: #ffffff99;
        backdrop-filter: blur(1px);
        height: 80px;
        z-index: 10;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    }

    .header-inner {
        padding: 10px 20px;
        height: 100%;
        position: relative;
    }

    .header-site-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        color: #fff;
        background-color: #736e62;
        padding-top: 30px;
        padding-bottom: 50px;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        transition: all 0.5s;
    }

    .header-site-menu.is-show {
        opacity: 1;
        pointer-events: all;
        visibility: unset;
    }

    .toggle-menu-button {
        display: block;
        width: 40px;
        height: 34px;
        background-color: transparent;
        border: none;
        border-radius: 0;
        outline: 0;
        padding-left: 0;
    }

    .line {
        display: block;
        width: 40px;
        height: 2px;
        background-color: #135A30;
        position: relative;
        transition: all 0.5s;
    }

    .line::before,
    .line::after {
        content: "";
        display: block;
        width: 100%;
        height: 2px;
        background-color: #135A30;
        margin: 0 auto;
        position: absolute;
        left: 0;
        transition: all 0.5s;
    }

    .line::before {
        top: -10px;
    }

    .line::after {
        top: 10px;
    }

    .toggle-menu-button.is-show .line {
        background-color: #00000000;
    }

    .toggle-menu-button.is-show .line::before {
        top: 0;
        transform: rotate(25deg);
    }

    .toggle-menu-button.is-show .line::after {
        top: 0;
        transform: rotate(-25deg);
    }

    .slideshow {
        height: calc(100vh - 20px);
        align-items: flex-start;
    }

    .logo img {
        max-width: 150px;
    }

    .concept {
        min-width: 90%;
        background-image: url(./images/copy_02_T.jpg);
    }

    .title01 h2 {
        font-size: 25px;
        line-height: 3;
        font-weight: bold;
    }

    .title01 p {
        font-size: 14px;
        line-height: 2;
        letter-spacing: 1.5px;
    }

    .lineup-menu {
        flex-direction: column;
        align-items: center;
    }

    .title h2 {
        font-size: 25px;
        line-height: 2;
        letter-spacing: 1.5px;
        font-weight: bold;
    }

    .title p {
        font-size: 20px;
        line-height: 1.5;
        letter-spacing: 1.5px;
    }

    .lineup-menu {
        flex-direction: column;
        align-items: center;
        margin-top: 20px;

    }

    .lineup-menu img {
        margin-top: 0;
        max-width: 100%;
    }

    .lineup-text {
        min-width: auto;
        padding: 0 20px;
        text-align: center;
    }

    .buy-button-area {
        position: static;
        margin: 20px auto;
    }

    .lineup-menu.reverse {
        flex-direction: column;
        padding-left: 0;
        margin-top: 20px;
    }

    .lineup-menu.reverse img {
        margin: 0 auto;
    }

    .number {
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        letter-spacing: 2px;
    }

    .gurutenfree-area {
        width: 90px;
        height: 90px;
        top: 0;
        right: 70px;
    }

    .gurutenfree-area p {
        font-size: 16px;
    }

    .price {
        justify-content: center;
        margin: 10px auto;
    }

    .buy-button-area {
        margin: 10px auto;
    }

    #lineup {
        height: 320vh;
    }

    .aboutus-menu,
    .aboutus-menu.reverse {
        flex-direction: column;
    }

    .aboutus-text dl {
        padding: 30px;
        text-align: center;
    }

    .aboutus-text dt {
        font-size: 32px;
        line-height: 1.6;
        margin-left: 0;
        text-align: center;
        margin: 0 auto;

    }

    .aboutus-text dd {
        font-size: 16px;
        line-height: 1.5;
        text-align: center;
        margin: 0 auto;

    }

    .leaf01 {
        width: 40px;
        top: 60px;
        right: 35px;
    }

    .leaf02 {
        width: 43px;
        top: 60px;
        left: 45px;
    }

    .materials p {
        margin: 30px auto 20px;
    }

    .materials-list {
        padding: 0;
        overflow-x: scroll;
    }

    .materials-list li {
        margin: 0;
    }

    .materials-list img {
        width: 60px;
    }

    .instagram {
        height: 90vh;
    }

    .instagram-image {
        display: flex;
        flex-wrap: wrap;
    }

    .instagram-image image {
        width: 50%;
    }

    .iframe-wrapper {
        padding: 0 20px;
    }

    .access-map {
        width: 100%;
        height: 300px;
        /* 任意 */
        border: none;
        display: block;
        /* 親divに合わせる */
    }


}