@charset "UTF-8";
/* 変数定義
------------------------------------------ */
:root {
    --main-color: #f6d89f;
    --bg-color: #ffffff;
    --accent-color: #2c2621;
    --text-color: #2c2b2b;
    --max-width: 1600px;

/* レイアウト 
------------------------------------------ */
    --width-content: 1200px;
    --width-narrow: 770px;
    --space-unit: 20px;
    --space-section: 20px;
    
/* その他 
------------------------------------------ */
    --duration: 0.7s;
}

/* ベース設定
------------------------------------------ */
html {
    font-size: 100%;
    scroll-padding-top: 70px;
}

body {
    font-family: "Kiwi Maru", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.7;
    color: var(--text-color);
    text-align: center;
    overflow-x: hidden;
    background: linear-gradient(180deg,
    #fff 15%,
    #f5e3c7 100%);
    background-size: cover;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
    z-index: 0;
}

html, body {
    position: relative;
    z-index: 0;
    height: 100%;
    background: linear-gradient(180deg, #fff 15%, #faebd7 70%,#fff 100%);
}

figure {
    justify-content: center;
    text-align: center;
}


/* 基本要素
------------------------------------------ */
a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width:100%;
    height: auto;
}

p {
    padding: 0 20px;
}

.text-shadow {
    text-shadow: 1px 2px 2px var(--bg-color);
    text-align: center;
}

.single, .news-category {
    margin-top: 160px;
}

/* レイアウト
------------------------------------------ */
.wrapper {
    width: var(--width-content);
    margin: 0 auto;
    position: relative;
    padding: 0 var(--space-unit);
}

section {
    margin-bottom: .5rem;
}

/* 見出し
------------------------------------------ */
h1 {
    font-family: serif;
}

h2 {
    font-family: "Delius", cursive;
    font-weight: 400;
    font-style: normal;
    padding-bottom: 20px;
    margin-top: 50px;
}

h3 {
    font-family: "Kiwi Maru", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 1rem;
}

.heading-large {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    text-align: center;
    padding: 100px 2rem .5rem;
}

.font-english {
    font-family: "Delius", cursive;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    text-shadow: 1px 2px 2px var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.heading-large::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\e573";
    display: inline-block;
    width: 70px;
    height: 70px;
    text-align: center;
    align-items: center;
    padding: .5rem 0;
    transform: scale(-1,1);
}

.heading-large::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\e572";
    width: 70px;
    height: 70px;
    text-align: center;
    align-items: center;
    padding: .5rem 0;
    display: inline-block;
}

.heading-large {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.heading-large.in-view {
    opacity: 1;
    transform: translateY(0);
}

.dogrun-nav,
.wrapper {
    background-color: transparent;  
}
/* ヘッダー
------------------------------------------ */
header {
    position: fixed;
    width: 100vw;
    height: 130px;
    z-index: 999; /* ナビゲーションより低く */
    top: 0;
    background: linear-gradient(var(--main-color), 65%, var(--bg-color));
}

.header-wrapper {
    width: 100vw;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; /* 追加 */
    padding: 0 30px;
}

.l-header_container_icons {
    display: flex;
}

.logo {
    height: 130px;
}

.container2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.item3 {
    font-size: 1rem;
    color: var(--text-color);
    padding: 15px 30px;

}
/* フッター
------------------------------------------ */
.page-footer {
    background-image: url(../img/p_pt_0124_l_pt_01249.png);
    background-repeat: repeat-x
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.item {
    color: var(--main-color); 
    padding: 15px 30px;
    font-size: 1rem;
    transition: opacity 0.3s;
    text-shadow: .5px .5px .5px var(--bg-color);
}

.item:hover {
    opacity: 0.8;
}

.item2 {
    font-size: .7rem;
    padding: 10px 20px;
    text-shadow: .5px .5px .5px var(--bg-color);
}

.copyright {
    color: var(--main-color);
    text-align: center;
    padding-bottom: 10px;
    text-shadow: .5px .5px .5px var(--bg-color);
}

/* ナビゲーション
------------------------------------------ */
.nav_content {
    width: 30vw;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -100vw;
    left: auto;
    z-index: 1000; /* ハンバーガーメニューより低く設定 */
    background: var(--main-color);
    transition: .5s;
}

#drawer_input:checked ~ .nav_content {
    right: 0; /* leftからrightに変更 */
}

.nav_list {
    list-style: none;
    padding: 100px 20px; /* パディング追加 */
    text-align: center; /* 追加 */
}

.nav_item {
    margin: 20px 0;
}

/* ページトップボタン 
------------------------------------------ */ 
.pagetop {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    background-color: #d2b48c;
    border-radius: 50%;
    opacity: 1;
}

.pagetop:before {
    display: block;
    position: absolute;
    content: "";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f6d3";
    width: 50px;
    height: 50px;
    top: calc(50% - 25px);
    color: var(--text-color);
    right: 2px;
}

.pagetop i {
    color: var(--text-color);
    rotate: (-50grad);
    padding-top: 25px;

}

/* メインビジュアル
------------------------------------------ */

.video-wrap {
    position: relative;
    width: 100%; 
    max-width: 1200px; 
    margin: 0 auto; 
    overflow: hidden; 
}

.video-wrap video {
    display: block; 
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.page-title {
    position: absolute;
    top: 40%; 
    left: 50%;
    transform: translate(-50%, -50%); 
    width: 90%; 
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.6;
    color: var(--main-color);
    /* padding-top: 110px; */ /* 位置調整方法が変わるためコメントアウトまたは調整 */
    text-shadow: 1px 1px 1px var(--text-color);
    z-index: 1;
}

.box {
    width: 100%;
    max-width: 1200px;
    margin : 100px auto 30px;
}

.fadein {
    transform: translate3d(50px, 0, 0);
    transition: 2s;
    opacity: 0;
}

.fadein.animated {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

.parallax-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
    opacity: 0.3;
}

.parallax-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 1.2),   
        rgba(255, 255, 255, 0.3), 
        rgba(255, 255, 255, 1.2));
    z-index: -1;
}

.parallax-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: transparent;
}

.parallax-section .bg1 {
    background-image: url(../img/kalmeiji.webp);
    background-attachment: fixed;
}

.parallax-section .bg2 {
    background-image: url(../img/kalmeiji2.webp);
    background-attachment: fixed;
}

.parallax-section .bg3 {
    background-image: url(../img/kalmeiji3.webp);
    background-attachment: fixed;
}

.content {
    position: relative;
    z-index: 2;
}


/* homeカフェ
------------------------------------------ */
.cafe, .cafe2, .cafe-cover {
    background-image:
      url('../img/1083288.png'), /* 通常の画像 */
      url('../img/1083288.png'); /* 逆さまにする画像 */
    width: 100%;
    padding-bottom: 20px;
    background-repeat: repeat, repeat; /* 両方の画像を繰り返す */
    background-position: top left, bottom left; /* 通常の画像は上から、逆さまの画像は下から */
    background-size: auto, auto; /* 元のサイズを維持 */
}

.cafe-menu {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 3rem;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
}

.menu-description {
    grid-column: 1 / -1;
    text-align: center;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.menu-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    padding: 10px;
}

.menu-image img {
    width: 100%;
    object-fit: cover;
}

.section h2 {
    position: relative; 
    padding: 40px 60px; /* 左右に余白を追加して、アイコン分を確保 */
    font-size: 1.5rem;
    text-align: center;
}

.section h2::before,
.section h2::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f1b0";
    width: 40px;
    height: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    transform: translateY(-50%);
    font-size: 1.5rem;
    animation: bounce 1s ease-in-out infinite;
}

.section h2::before {
    top: 40%; 
    left: 56%;
    transform: translateX(-50%);
    line-height: 1;
}

.section h2::after {
    top: 40%; 
    left: 40%;
    transform: translateX(-50%);
    line-height: 1;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
    transform: translateY(-20px);
    }
}


/* ボタン
------------------------------------------ */
.button ,.button2 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px; /* テキストと矢印の間隔 */
    width: 150px;
    height: 50px;
    font-size: 20px;
    color: var(--accent-color);
    border: 1px solid;
    border-radius: 50px;
    background-color: var(--bg-color);
    text-decoration: none;
    cursor: pointer;
    margin: 20px;
}

  /* 矢印の装飾をafterで追加 */
.button::after  {
    content: '→'; /* 矢印 */
    font-size: 20px;
    transition: transform 0.3s ease;
}

  /* ホバー時に矢印を動かす演出 */
.button:hover::after, .button2:hover::before {
    transform: translateX(5px);
}

.button2::before {
    content: '←'; 
    font-size: 20px;
    transition: transform 0.3s ease;
}

.align-center {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    text-align: center;
    grid-column: 1 / -1;
}

.align-right {
    text-align: right;
    padding: 0 100px 30px 0;
}

.over-button {
    bottom: 30px;  
    z-index: 2;
    background-color: var(--bg-color); 
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
}


/* News
------------------------------------------ */

.dl-row {
    display: flex;
    width: 400px;
    align-items: center;
    margin-bottom: var(--space-unit);
    border-bottom: 2px dotted var(--main-color); 
    margin-left: auto;
    margin-right: auto;
}

.dl-row dt {
    width: 30%;
    font-weight: bold;
    margin: 0;
    padding: var(--space-unit) 0;
    text-align: left;
}

.dl-row dd {
    width: 70%;
    margin: 0;
    padding: var(--space-unit) ;
}

.news-thumbnail img {
    width: 100px;
    height: auto;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.news-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.news-item dt {
    width: 100px;
    margin: 0;
    font-weight: bold;
    flex-shrink: 0;
}

.news-item dd {
    margin: 0;
    flex: 1;
}

.news-list {
    padding-bottom: 30px;
}

/*ドッグラン
------------------------------------------ */
.dogrun-image {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    margin-top: 30px;
    margin-bottom: 30px;
}


.dog, .dogrun-info {
    font-size: 1.2rem;
}

.dogrun-flex {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 30px;
}

.dogrun-info th,
.dogrun-info td {
    padding-left: 30px ;
    text-align: center;
    vertical-align: middle;
}

.user-info {
    background-color: var(--main-color);
    border-radius: 20px;
}

.dogruninside {
    width: 100%;
    table-layout: fixed;
}

.dogruninside img {
    max-width: 100%;
    height: auto;
}

.user-info th,
.user-info td {
    padding: 20px 20px;
    text-align: left;
}

.dogrun-info, .user-info {
    margin: auto;
    border-spacing: 0;
}

.dogruninside h3 {
    padding-bottom: 0;
}

.dogrun tr {
    border: 1px dotted var(--accent-color);
}

.modal {
    display: none; /* 初期状態は非表示 */
    position: fixed; /* スクロールしても位置が固定 */
    z-index: 1; /* 他の要素の上に表示 */
    left: 0;
    top: 0;
    width: 100%; /* 幅は全体 */
    height: 100%; /* 高さも全体 */
    overflow: auto; /* コンテンツが多い場合はスクロール */
    background-color: rgba(0, 0, 0, 0.7); /* 背景の透明度 */
}

.modal-content {
    margin: 15% auto; /* 中央寄せ */
    display: block; /* ブロック要素 */
    width: 80%; /* 幅は80% */
    max-width: 700px; /* 最大幅を設定 */
}

.close {
    position: absolute; /* 絶対位置に配置 */
    top: 10px; /* 上から10pxの位置 */
    right: 25px; /* 右から25pxの位置 */
    color: white; /* 色を白に */
    font-size: 35px; /* フォントサイズを35pxに */
    font-weight: bold; /* 太字 */
    cursor: pointer;  /* カーソルをポインターにしてクリック可能に */
}

/* FAQ
------------------------------------------ */
.faq h2 {
    font-size: 1.5rem;
}

.faq-container {
    max-width: 600px;
    width: 100%; 
    margin: 0 auto;
    padding: 10px 20px;
    box-sizing: border-box;
}

details {
    margin: 20px 0;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    border: 1px dotted var(--accent-color);
}

summary {
    font-weight: bold;
    cursor: pointer;
    padding: 10px 0;
}

details p {
    margin-top: 10px;
    padding-left: 20px;
}

.movie_blk {
    width: 100%;
    min-height: 700px;
    position: relative;
    overflow: hidden;
}
.movie_blk video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.inner {
    font-size: 16px;
    padding: 15px;
    border-radius: 8px;
    background-color: rgba(255,255,255,0.7);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%,-50%);
}
.faq wrapper {
    padding: 0;
}

/*雑貨
-----------------------------------------*/
ul.zakka-item {
    line-height: 0;
    -webkit-column-count: 4;
    -webkit-column-gap: 0px;
    -moz-column-count: 4;
    -moz-column-gap: 0px;
    column-count: 4;
    column-gap: 0px;
    gap: 50px;
    list-style: none;
}
ul.zakka-item li{
    width: 100% ;
    height: auto ;
    break-inside: avoid;
    border: none;
}
ul.zakka-item li img{
    width:100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.small {
    max-width: 50%;
    padding-top: 50px;
}

.medium {
    max-width: 80%;
}

.large {
    max-width: 100%;
}

.zakka-cover {
    margin-top: 140px;
}

.zakka {
    font-size: 1.2rem;
}

.zakka-item p {
    padding-top: 10px;
}

.flexbox1 {
    display: flex;
    grid-template-columns: repeat(3,1fr);
    gap: 10%;
    justify-content: space-between;
    padding: 30px 10px 0px;
}

.flexbox2 {
    display: flex;
    grid-template-columns: repeat(2,1fr);
    justify-content: space-between;
    margin: 0 250px;
    gap: 15%;
    padding: 0 10px 30px;
}

.zakka-dog {
    background-color: var(--main-color);
    border-radius: 10px;
    padding-bottom: 40px;
}

.zakka9{
    clip-path: circle(48% at 51% 49%);
}
.zakka11 {
    clip-path: circle(44% at 49% 51%);
}

/* コンセプト
------------------------------------------ */

.concept img {
    justify-content: center;
    text-align: center;
    display: inline-block;
    width: 30%;
    margin-bottom: 40px;
}

.concept p {
    padding: 30px;
}

/* コンタクト
------------------------------------------ */
.contact-flex {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

.contact-info {
    width: 35%;
}

.location-map {
    width: 55%;
}

.contact-info th,
.contact-info td {
    padding-left: 50px 50px;
    text-align: left;
    margin-left: 50px;
}

.contact-info tr{
    border-bottom: 2px dotted var(--main-color);
}

.contact {
    margin: auto;
    border-spacing: 0;
    padding: 0 2rem;
}
.sns-icons {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center; 
    width: 150px;
    height: 150px;
}

/*cafemenu
------------------------------------------ */
.loading-area {
    position: relative;
    font-size: 2rem;
    animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

50% {
    transform: translateY(-20px);
}
}

.cafe2 {
    margin-top: 130px;
}

.cafe-description {
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.6;
    color: var(--text-color);
}

.food, .cafe-item {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-color);
    padding-top: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px; 
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 20px;
}

.cafe-item {
    box-sizing: border-box;
    width: 100%;
}
.cafe-item img {
    border-radius: 10%;
    max-width: 100%;
    height: auto;
}

.food-section {
    border: 1px solid brown;
    border-radius: 40px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden; 
}

.cafe-item p {
    padding: 20px;
}

/* 0.5秒間かけてフェードイン */
.first {
    animation-name: fadeIn500ms;
    animation-delay: 500ms;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateX(50px);
    opacity: 0;
}
@keyframes fadeIn500ms {
    0% {
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* 1秒間かけてフェードイン */
.second {
    animation-name: fadeIn1s;
    animation-delay: 1s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateY(-50px);
    opacity: 0;
}
@keyframes fadeIn1s {
    0% {
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
/* 2.5秒間かけてフェードイン */
.third {
    animation-name: fadeIn1500ms;
    animation-delay: 2500ms;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateY(50px);
    opacity: 0;
}
@keyframes fadeIn1500ms {
    0% {
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 3秒間かけてフェードイン */
.fourth {
    animation-name: fadeIn2s;
    animation-delay: 3000ms;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateX(-50px);
    opacity: 0;
}
@keyframes fadeIn2s {
    0% {
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/*動画
------------------------------------------ */

.movie_blk {
        padding-bottom: var(--space-section);
    }
video {
        width: 100%;
        height: auto;
}

/* スライダー
------------------------------------------ */

.slider {
    margin-bottom: var(--space-section);
}
    
.slider img, .slider video{
    width: 100%;
    height: 800px;
    justify-content: center;
    object-fit: cover;
}
    
/* スライダー矢印カスタマイズ */
.slick-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    left : 50px;
}
    
.slick-next {
    right: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
    
.slick-prev:before,
.slick-next:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 1000;
    content: "\f1b0";
    color: var(--bg-color);
}  
    
.slide-dots {
        margin: 0;
        padding: 0;
        text-align: center;
}
.slide-dots li {
        display: inline-block;
        margin: 0 10px;
}
.slide-dots li button {
        position: relative;
        text-indent: -9999px;
}
.slide-dots li button::before {
        background-image: url(../img/image-regular.svg);
        background-repeat: no-repeat;
        background-size: contain;
        content: "";
        cursor: pointer;
        height: 13.5px;
        left: 0;
        margin: auto;
        position: absolute;
        right: 0;
        top: 24px;
        width: 13.5px;
}
.slide-dots li.slick-active button::before {
        background-image: url(../img/image-solid.svg);
}
button {
        background: none;
        border: none;
        outline: none;
        padding: 0 7px;
}

.post_thumbnail {
    text-align: center; /* インライン要素を中央揃え */
    margin: 20px 0;
}

.post_thumbnail img {
    max-width: 200px;
    height: auto;
    display: inline-block; /* 中央揃えに効く */
}


/* メディアクエリ
------------------------------------------ */

/* タブレット用 (768px〜1024px) 
------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .wrapper, .figure {
        width: 95%;
        padding: 0 15px;
    }

    .grid {
        grid-template-columns: repeat(2, 1fr);
        margin: 0 auto;
    }

    .menu-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .contact-info, .location-map {
        width: 100%;
    }

    .flexbox2 {
        margin: 0 150px;
    }

    .content {
        padding: 40px 15px;
        font-size: 1rem;
    }

    .parallax-block {
        background-attachment: scroll;
        width: 100%;
        height: 50vh;
        background-position: center;
    }
}

.section h2::before {
    left: 57%;
}

.section h2::after {
    left: 39%;
}

/* スマホ用 (〜767px) 
------------------------------------------*/
@media screen and (max-width: 767px) {
    :root {
        --space-unit: 15px;
        --space-section: 20px;
    }

    body {
        text-align: left;
    }

    .wrapper {
        width: 90%;
        padding: 0 5px;
    }

    h2, .heading-large {
        margin-top: 12px;
        padding: 20px 10px .5rem;
    }

    header, .header-content {
        height: 90px;
    }

    section {
        margin: 30px 0;
    }

    .logo {
        height: 80px;
    }

    .info {
        width: 35px;
        margin-top: 10px;
    }

    .button {
        margin: 10px;
        width: 140px;
        height: 40px;
        font-size: 16px;
    }

    .hamburger, .drawer_open {
        width: 60px;
        height: 60px;
    }

    .nav_content {
        width: 50vw;
    }

    .cover-home {
        width: 100%;
        margin-top: 110px;
    }

    .video-wrap {
        max-width: 100%; /* スマホでは画面幅いっぱいに */
        aspect-ratio: 9 / 16; /* 例：一般的な縦長動画の比率 (9:16) 。動画に合わせて調整してください。 */
    }
    .page-title {
        font-size: 1.2rem; 
        padding-top: 60px;
    }

    .heading-large::before,
    .heading-large::after {
        padding: 1rem 0;
    }

    .slider img, .slider video {
        height: 300px;
        width: 100%;
    }

    .flexbox1, .flexbox2 {
        display: flex;
        width: 100%;
        margin: 0 auto;
        flex-wrap: wrap;
        padding: 10px;
    }

    .cafe-menu {
        gap: 0.5rem;
        padding: 5px;
    }

    .menu-item img {
        width: 100%;
    }

    .cafe, .font-english {
        padding-bottom: 10px;
    }

    .small {
        max-width: 70%;
        padding-top: 20px;
    }

    .medium {
        max-width: 90%;
    }

    .large {
        max-width: 100%;
    }

    .contact-flex {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-info, .location-map {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        height: auto;
    }

    .over-button {
        right: 20px;
        bottom: 20px;
        padding: 8px 20px;
        font-size: 1rem;
    }

    .heading-large {
        font-size: 22px;
        margin-top: 50px;
    }

    .dogrun-nav h2{
        margin-top:100px;
    }

    .dogrun-image h2 {
        padding: 20px;
        margin-top: 0;
    }

    .dogrun-info th, .dogrun-info td {
        padding: 10px;
        text-align: center;
        vertical-align: middle;
    }
    
    .user-info {
        border-collapse: separate;
        border-spacing: 0;
        border: 1px solid gray; /* テーブルの外枠 */
        border-radius: 20px; /* 念のためテーブル全体にも */
        overflow: hidden; /* 角丸を表示させるため */
    }
    
    .user-info th, .user-info td {
        padding: 10px;
        text-align: center;
        vertical-align: middle;
        border-bottom: 1px solid gray; /* 横線 */
        border-left: none;
        border-right: none;
        border-top: none;
    }
    
    .user-info tr:last-child td {
        border-bottom: none; /* 最後の行は横線を消す */
    }
    .user-info tr:last-child th {
        border-bottom: none;
    }
    .user-info tr:last-child td:first-child {
        border-bottom-left-radius: 20px;
    }
    
    .user-info tr:last-child td:last-child {
        border-bottom-right-radius: 20px;
    }

    .user-info p, .user-info th, .zakka-cover h3 {
        font-size: 1rem;
        padding: 10px;
    }

    .pagetop:before, .pagetop i {
        left: -1px;
        padding-left: 20px;
    }

    .flexbox1 img, .flexbox2 img,
    .dogrun-info img {
        max-width: 100%;
        height: auto;
        padding: 30px 20px 0;
    }

    .dogrun-info img {
        padding: 0;
    }

    .faq-container {
        max-width: 80%;
        margin: 0 auto;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .food-section, .cafe-menu p, .cafe-item p {
        padding: 0;
        font-size: 1rem;
    }

    .cafe-item img, .concept img {
        max-width: 100%;
    }

    .concept img {
        width: 80%;
    }

    .inner, .faq-container p {
        font-size: 1rem;
        padding: 10px;
    }

    ul.zakka-item {
        display: grid;
        gap: 4%;
        grid-template-columns: 30% 30% 30%;
    }

    .box {
        margin: 100px auto 0;
    }

    .slick-prev {
        left: 20px;
    }

    .slick-next {
        right: 20px;
    }

    .small {
        max-width:  100%;
        padding-top: 0px;
    }
    
    .medium {
        max-width: 100%;
    }
    

    .zakka9 video, .zakka11 video {
        padding: 30px 20px 0;
    }

    .item3, .container2 {
        display: none;
    }

    .section h2 {
        padding-top: 40px;
        font-size: 1.1rem;
    }

    .section h2::before {
        left: 61%;
    }

    .section h2::after {
        left: 26%;
    }

    .content {
        font-size: 1rem;
    }

    .parallax-block {
        background-attachment: scroll;
        width: 100%;
        height: 50vh;
        background-position: center;
    }

    .grid, .cafe-menu {
        grid-template-columns: repeat(1, 1fr);
        margin: 0 auto;
    }

    /* ハンバーガーメニュー */
    .hamburger {
        position: relative;
        width: 30px;
        height: 100px;
        display: flex;
        align-items: center;
        padding-right: 20px;
        z-index: 1001;
    }

    .drawer_open {
        width: 50px;
        height: 50px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 1001;
    }

    .drawer_open span,
    .drawer_open span::before,
    .drawer_open span::after {
        content: '';
        display: block;
        height: 3px;
        width: 30px;
        border-radius: 3px;
        background: var(--accent-color);
        transition: 0.5s;
        position: absolute;
    }

    .drawer_open span {
        left: 10px;
    }

    .drawer_open span::before {
        bottom: 10px;
        left: 0;
    }

    .drawer_open span::after {
        top: 10px;
        left: 0;
    }

    .drawer_hidden {
        display: none;
        opacity: 0;
        position: absolute;
        width: 0;
        height: 0;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    #drawer_input:checked ~ .drawer_open span {
        background: rgba(255, 255, 255, 0);
    }

    #drawer_input:checked ~ .drawer_open span::before {
        bottom: 0;
        transform: rotate(45deg);
    }

    #drawer_input:checked ~ .drawer_open span::after {
        top: 0;
        transform: rotate(-45deg);
    }

    #drawer_input:checked ~ .nav_content {
        right: 0;
        background: linear-gradient(var(--main-color), 35%, var(--bg-color));
    }
}

/* プリント用スタイル
------------------------------------------ */
@media print {
    .page-header {
        display: none !important;
    }
    
      /* 印刷時の1ページ目だけヘッダー表示 */
    body::before {
        content: "";
        display: block;
        page-break-after: always;
    }
    
    .print-header {
        display: block !important;
    }
    
      /* それ以外は隠す */
    .page-header:not(.print-header) {
        display: none !important;
    }

    }