@charset "UTF-8";
/*
Theme Name: SANE
Version: 1.0.0
Author: Sane - https://saneyoshi.com
-------------------------------------------------*/

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    /*baseline→middleにアレンジ*/
    vertical-align: middle;
    background: transparent;
}

body {
    margin: 0;
    word-break: normal;
    overflow-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: none;
}

* {
    box-sizing: border-box;
}


article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

del {
    text-decoration: line-through;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

input,
select {
    vertical-align: middle;
}

/*img*/
img {
    max-width: 100%;
    height: auto;
    border: 0;
}




/*========================================
	外部機能
	セクション
	レイアウト
	装飾
	ボタン
*---------------------------------------*/
/*========================================
*	fonts.css
*---------------------------------------*/
:root {
    font-size: 62.5%;

    /*ベースカラー*/
    --black-color: #211310;
    --white-color: #fff;
    --gray-color: #f7f7f7;
    /*イメージカラー*/
    --brown-color: #a79c8e;
    --gold-color: #6e5227;
    --red-color: #b81c22;
    /*テキスト*/
    --text-color: #110205;
    --text-link-color: #1d3994;
    /*ページ最大幅*/
    --widthMax: 960px;
}

body {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 1.8rem;
    line-height: 1.6;
    letter-spacing: 0.08em;
    color: var(--text-color);
}

a {
    color: var(--text-link-color);
}

/*========================================
*	外部機能
*---------------------------------------*/
/* Splide Adjustment */
.splide__slide img {
    width: 100%;
    height: auto;
    display: block;
}

#thumbnail-slider {
    margin-top: 10px;
}

#thumbnail-slider .splide__slide {
    opacity: 0.3;
    transition: opacity 0.3s;
    cursor: pointer;
}

#thumbnail-slider .splide__slide.is-active {
    opacity: 1;
    border: none;
}

/*========================================
*	セクション
*---------------------------------------*/
.section-contents {
    position: relative;
}

.section-inner {
    width: 100%;
    max-width: var(--widthMax);
    margin: 0 auto;
    padding: 50px 0;
}

/*========================================
*	header
*---------------------------------------*/
.header {
    position: relative;
}

#header-inner {
    width: 100%;
}

#header-inner .logo {
    position: absolute;
    z-index: 999;
    left: 15px;
}

#header-inner img {
    height: 250px;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, .2));
}

/*========================================
*	footer
*---------------------------------------*/
/*footer-fixed*/
#footer-fixed {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 999;
    opacity: 1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

#footer-fixed div {
    background: var(--white-color);
    padding: 15px;
    border-radius: 99px;
    width: 80px;
    height: 80px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
}

#footer-fixed.hide {
    opacity: 0;
}

/*footer*/
.footer {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: var(--black-color);
    color: var(--white-color);
}

#footer-inner {
    width: 100%;
    max-width: var(--widthMax);
    margin: 0 auto;
}

#footer-inner>img {
    height: 30px;
    padding: 5px;
    display: block;
    background: var(--white-color);
}

.footer-menu {
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    padding-bottom: 8rem;
}

.footer-menu p {
    font-size: 1.8rem;
    line-height: 1.25;
}

.footer-menu div:first-of-type {
    width: 50%;
    padding-right: 8rem;
}

.footer-menu h3 {
    font-size: 1.5rem;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.footer-menu ul.sns {
    margin-top: 4rem;
    display: flex;
}

.footer-menu ul.sns li {
    padding-right: 20px;
}

#footer-inner .footer-menu ul.sns img {
    height: 30px;
}

.copyright {
    font-size: 1.2rem;
    border-top: 1px solid rgb(151, 151, 151);
    padding-top: 1rem;
    text-align: right;
}

/*========================================
*	共通
*---------------------------------------*/
.section-contents h2 {
    font-size: 2.8rem;
    color: var(--gold-color);
    font-weight: normal;
    padding-bottom: 10px;
}

figcaption {
    font-size: 1.9rem;
    color: var(--white-color);
    background: var(--black-color);
    padding: 0px 5px;
    text-align: center;
}

/*========================================
*	home-ttl
*---------------------------------------*/
.home-ttl .section-inner {
    max-width: 100%;
    padding: 0;
}

/*========================================
*	お知らせ
*---------------------------------------*/
.section-contents.home-contents-news {
    background-image: url(/assets/img/common/bg-news.jpg);
}

.home-contents-news .section-inner {
    text-align: center;
}

.home-contents-news .box {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding: 20px;
    background: var(--white-color);
    position: relative;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
    border-radius: 2px;
}

/*お知らせ[OWS]*/
.news-date {
    color: var(--brown-color);
    text-align: left;
}

.news-date:not(:first-child) {
    padding-top: 15px;
}

.news-title {
    color: var(--red-color);
    font-weight: bold;
    font-size: 2.0rem;
    text-align: left;
}

.news-text {
    text-align: left;
}

/*========================================
*	季節の和菓子
*---------------------------------------*/
.section-contents.home-contents-season {
    background-image: url(/assets/img/common/bg-news.jpg);
}

.home-contents-season .section-inner {
    text-align: center;
}

.home-contents-season .box {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
}

.home-contents-season img {
    border-radius: 2px;
}

/*========================================
*	定番の和菓子
*---------------------------------------*/
.section-contents.home-contents-regular {
    background-image: url(/assets/img/common/bg-regular.jpg);
}

.home-contents-regular .section-inner {
    text-align: center;
}

.home-contents-regular .box {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 1fr 1fr;
}

.home-contents-regular .box:last-of-type {
    padding-top: 20px;
}

.home-contents-regular dl {
    display: flex;
    flex-wrap: wrap;
    line-height: 2.1;
}

.home-contents-regular dt {
    text-align: left;
    width: 75%;
}

.home-contents-regular dd {
    width: 25%;
}

.home-contents-regular h3 {
    font-size: 2.1rem;
    color: var(--text-color);
    font-weight: normal;
    margin: 15px 0;
    border-bottom: solid 1px var(--brown-color);
}

/*========================================
*	お店情報
*---------------------------------------*/
.section-contents.home-contents-store {
    background-image: url(/assets/img/common/bg-store.jpg);
}

.home-contents-store .section-inner {
    text-align: center;
}

.home-contents-store .box {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 1fr;
}

.home-contents-store .box-inner {
    background: var(--white-color);
    padding: 20px;
    border-radius: 2px;
}

.home-contents-store .box-inner>div {
    background: var(--gray-color);
    padding: 10px 0;
    margin-bottom: 10px;
}

.home-contents-store h3 {
    font-size: 2rem;
    font-weight: bold;
}

.home-contents-store h4 a {
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--red-color);
    display: block;
    padding-bottom: 25px;
    line-height: 1.25;
}

.home-contents-store p:last-of-type span {
    font-size: 0.7em;
}

.home-contents-store p:last-of-type a {
    font-size: 1.6rem;
    color: var(--text-link-color);
}

.home-contents-store img {
    max-width: 250px;
}

@media screen and (max-width:560px) {

    /*========================================
*	セクション
*---------------------------------------*/
    .section-inner {
        padding: 40px 15px;
    }

    /*========================================
*	header
*---------------------------------------*/
    #header-inner img {
        height: 150px;
    }

    /*========================================
*	footer
*---------------------------------------*/
    #footer-inner {
        padding: 10px 25px;
    }

    .footer-menu {
        flex-direction: column;
        padding-bottom: 4rem;
    }

    .footer-menu div:first-of-type {
        width: 100%;
        padding-right: 2rem;
    }

    .footer-menu h3 {
        margin-top: 3rem;
    }

    /*========================================
*	季節の和菓子
*---------------------------------------*/
    .home-contents-season .box {
        grid-template-columns: 1fr;
    }

    /*========================================
*	定番の和菓子
*---------------------------------------*/
    .home-contents-regular .box {
        grid-template-columns: 1fr;
    }

    /*========================================
*	お店情報
*---------------------------------------*/
    .home-contents-store .box {
        grid-template-columns: 1fr;
    }
}