@charset "UTF-8";

/*
VARIABLES
================================================ */
:root {
    --light-green: #d5edeb;
    --green: #63dbd0;
    --brown: #403632;
    --light-grey: #eee;
    --white: #fff;
    --oswald-font: "Kaisei Tokumin", serif;
}

/*
LOADING
================================================ */
#loading {
    background-color: rgba(245,222,179,1);
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    transition: opacity 1.2s ease;
    pointer-events: none;
}

#loading p {
    font-size: 1.5rem;
    font-family: var(--oswald-font);
}



/*
SHOPICON
================================================ */

#shop-icon {
  position: fixed;
  top: 1rem;
  right: 6rem;        /* メニューの左 */
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2100;

  /* 当たり判定を安定させる */
  pointer-events: auto;
}

#shop-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;

  transition: transform 0.2s ease, filter 0.2s ease;
}

#shop-icon:hover img {
  transform: scale(1.1);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
}

/* ホバー時テキスト */
#shop-icon::after {
  content: "オンラインショップへ";
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--oswald-font);
  font-size: 0.7rem;
  color: #432;
  background: rgba(255, 255, 255, 0.9);
  padding: 3px 8px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

#shop-icon:hover::after {
  opacity: 1;
}

/* =========================
   スマホ用 ナビ周り微調整
========================= */
@media (max-width: 768px) {

  /* ギフトアイコン */
  #shop-icon {
    top: 1rem;
    right: 5rem;   /* ハンバーガーと被らない */
    width: 44px;
    height: 44px;
  }

  /* メニューボタン */
  #menu-open.btn-menu {
    top: 0.6rem;
    right: 0.8rem;
  }

}









/*
SLIDE MENU
================================================ */
/* 開閉ボタン */
.btn-menu {
    position: fixed;
    right: 1rem;
    top: 1rem;
    z-index: 4;
    padding: .5rem 1rem;
    border: 1px solid #432;
    border-radius: 50%;
    height: 4rem;
    width: 4rem;
    transition: .4s;
}
.btn-menu svg {
    fill: #432;
    margin-top: .25rem;
    height: 2rem;
    width: 2rem;
}

/* 閉じるボタン */
#menu-close {
    border: 1px solid #432;
}
#menu-close svg {
    fill: #432;
}

/* 開くボタンはローディングより上、オーバーレイより下に */
#menu-open {
    z-index: 1999;
}

/* スライドメニューパネル */
#menu-panel {
    text-align: center;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 3000;
    padding: 8rem 2rem 2rem;
    width: max(30vw, 20rem);
    height: 100vh;
    background-color: wheat;
    box-shadow: 0 0 2rem #432;
    font-family: var(--oswald-font);
    translate: 100%;
    transition: translate 0.4s ease;
}
.menu-list {
    list-style: none;
}
.menu-list li {
    margin: 1.5rem 0;
    opacity: 0;
}
.menu-list a {
    color: #432;
    text-decoration: none;
    font-size: 1.5rem;
}

.menu-list a:hover{
    color: #c0392b;
}


/* 共通部分
------------------------------- */
html {
    font-size: 100%;
}
body{
    font-family: "Kaisei Tokumin", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.7;
    color: #432;
}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
}
.wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4%;
}

/* 大きな背景画像 */
.big-bg {
    background-size: cover;
    background-position: center top;
}

/* 見出し */
.page-title {
    font-size: 3rem;
    font-family: 'Philosopher', serif;
    text-transform: uppercase;
    font-weight: normal;
}
.sub-title {
    font-size: 1.375rem;
    padding: 0 8px 8px;
   
    font-weight: normal;
}

/* ボタン */
.button {
    font-family:"Kaisei Tokumin", serif;
    font-size: 1rem;
    background: #432;
    color: #fff;
    border-radius: 50%;
    padding: 18px 32px;
}
.button:hover {
    background: #ff7575;
}

/* iframe */
iframe {
    width: 100%;
}

/* HEADER
------------------------------- */
.page-header {
    display: flex;
    justify-content: space-between;
}
.logo {
    width: 300px;
    margin-top: 14px;
}
.main-nav {
    display: flex;
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-top: 34px;
    list-style: none;
}
.main-nav li {
    margin-left: 36px;
}
.main-nav a {
    font-size: 1rem;
    font-family: "Radley", serif;
    font-weight: bold;
    background-color: #ffffff97;
    color: #432;
    
    margin: 3px;
    padding: 15px;
    border-width: 1px;
    border-radius: 50%;
    border-style: dashed;
}
.main-nav a:hover {
    color: #ff7575;
}

/* HOME
------------------------------- */
/*#home {
    background-image: url(../images/217430c3-126d-43c9-a1cb-df2e22e12590.jpg);
    background-color: rgba(255, 168, 243, 0.232);
    background-blend-mode: hard-light;
    min-height: 120vh;
}*/
/*#home .page-title {
    font-family: "Sacramento", cursive;
    
  
  font-style: normal;
}*/

.home-title {
    font-size: 50px;
    font-family: "Kaisei Tokumin", serif;
}


.home-content {
    font-family: "Sacramento", cursive;
    
    font-style: normal;
    text-align: center;
    margin-top: 10%;

}
.home-content p {
    font-size: 2rem;
    margin: 10px 0 100px;
}

#order {
    margin-top: 50px;
    margin-bottom: 50px;
}

#about #order {
    margin-bottom: 0;
    padding-bottom: 50px;
}

/* 背景スライドショー */
.slideshow {
  position: relative;
  overflow: hidden;
  min-height: 120vh;
}

/* 背景オーバーレイ（暗めフィルター） */
.slideshow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.35);
  z-index: 1;
}

/* 背景画像 */
.slideshow .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease;
  z-index: 0;
}

/* 表示中のスライド */
.slideshow .slide.active {
  opacity: 1;
}

/* テキストやヘッダーを前面に */
.home-content,
.page-header {
  position: relative;
  z-index: 10;
}




/* NEWS about
------------------------------- */
#about {
    background-image: url(../images/LINE_ALBUM_素材_250326_7.jpg);
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    min-height: 100vh;
    margin-bottom: 0px;
}

/* iOSはfixed非対応なのでスマホは通常表示に戻す */
@media (max-width: 768px) {
  #about {
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
  }
  .about-contents {
    font-size: 1rem;
    line-height: 2.2;
    padding: 20px 24px;
  }
}
#about .page-title {
    text-align: center;
    font-family: "Radley", serif;
}
.about-contents {
    text-align: center;
    justify-content: space-between;
    margin-bottom: 50px;
    padding: 30px 40px;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(2px);
    margin-top: 30px;
    font-size: 1.5rem;
    border-radius: 10px;
    line-height: 3;
}

article {
    text-align: justify;
    margin: 20px;
}

.sign{
    text-align: right;
    margin-top: 7%;
}

/* 記事部分 *
article {
    width: 74%;
}
.post-info {
    position: relative;
    padding-top: 4px;
    margin-bottom: 40px;
}
.post-date {
    background: #0bd;
    border-radius: 50%;
    color: #fff;
    width: 100px;
    height: 100px;
    font-size: 1.625rem;
    text-align: center;
    position: absolute;
    top: 0;
    padding-top: 10px;
}
.post-date span {
    font-size: 1rem;
    border-top: 1px rgba(255,255,255,.5) solid;
    padding-top: 6px;
    display: block;
    width: 60%;
    margin: 0 auto;
}
.post-title {
    font-family: "Kaisei Tokumin", serif;
    font-size: 2rem;
    font-weight: normal;
}
.post-title,
.post-cat {
    margin-left: 120px;
}
article img {
    margin-bottom: 20px;
}
article p {
    margin-bottom: 1rem;
}

/* サイドバー *
aside {
    width: 22%;
}
.sub-menu {
    margin-bottom: 60px;
    list-style: none;
}
.sub-menu li {
    border-bottom: 1px #ddd solid;
}
.sub-menu a {
    color: #432;
    padding: 10px;
    display: block;
}
.sub-menu a:hover {
    color: #0bd;
}
aside p {
    padding: 12px 10px;
}

/* MENU gift
------------------------------- */
#menu {
    background-image: url(../images/IMG_2849.jpeg);
    min-height: 100vh;
}
.menu-content {
    max-width: 560px;
    
    text-align: center;
    font-size: 1.75rem;
    border-radius: 5px;
    line-height: 3;
    background-color: #ffffff7d;
}
.menu-content .page-title {
    text-align: center;
    font-family: "Radley", serif;
    margin: 0px 0px 30px 0px;

}
.menu-content p {
    font-size: 25px;
    
}

.grid {
    
  display: grid;
  width: 75%;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 6%;
  margin-bottom: 50px;
}







/* =========================
   オーバーレイ
========================= */
#image-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}

#image-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* =========================
   中身
========================= */
.overlay-content {
  width: 88vw;
  max-width: 900px;
  height: 85vh;              /* ← ここ固定 */
  max-height: 680px;
  padding: 24px 24px 28px;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  align-items: center;

  overflow: hidden;
}

/* =========================
   画像表示（高さを抑えて全体を収める）
========================= */
#image-overlay-img {
  max-height: 60%;
  object-fit: contain;
}


#image-overlay.show #image-overlay-img {
  transform: scale(1);
}

/* =========================
   テキスト
========================= */
.overlay-info {
  flex-grow: 1;              /* ← 文字エリアが余白を吸収 */
  display: flex;
  flex-direction: column;
  justify-content: center;
}


#image-overlay.show .overlay-info {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   フルーツ別の空気感
========================= */
#image-overlay.peach .overlay-content {
  box-shadow: 0 0 50px rgba(255,190,190,.25);
}

#image-overlay.grape .overlay-content {
  box-shadow: 0 0 50px rgba(180,160,255,.25);
}

/* =========================
   矢印・閉じる
========================= */
.overlay-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 44px;
  color: #fff;
  cursor: pointer;
  padding: 10px 14px;
  user-select: none;
  opacity: .85;
  transition: opacity .2s ease;
  z-index: 2100;
}

.overlay-arrow:hover { opacity: .6; }
.overlay-arrow.left { left: 20px; }
.overlay-arrow.right { right: 20px; }

#image-close {
  position: absolute;
  top: 18px;
  right: 26px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  opacity: .85;
  transition: opacity .2s ease;
  z-index: 2100;
}

#image-close:hover { opacity: .6; }

/* =========================
   星表示（甘さ）
========================= */
.star-wrapper {
  display: inline-block;
  position: relative;
  font-size: 1.2rem;
  width: 5em;
  color: #ccc;

  transform: scaleX(0);
  transform-origin: left;
  animation: sweetSpread .6s ease forwards;
}

@keyframes sweetSpread {
  to { transform: scaleX(1); }
}

.star-wrapper::before {
  content: "★★★★★";
}

.star-wrapper::after {
  content: "★★★★★";
  position: absolute;
  top: 0;
  left: 0;
  color: gold;
  overflow: hidden;
  white-space: nowrap;
  width: var(--star-width);
}

/* =========================
   商品サムネイル
========================= */
.item {
  position: relative; /* ← これが超重要 */
  overflow: hidden;
}

.item img {
  display: block;
  width: 100%;
  transition: transform .3s ease;
}

.item:hover img {
  transform: scale(1.05);
}

/* =========================
   タグ
========================= */
.tags {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 3;
}

.tag {
  padding: 4px 12px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 999px;
  color: #fff;
  letter-spacing: .05em;
}

.tag.season { background: #e67e22; }
.tag.recommend { background: #27ae60; }
.tag.limited { background: #c0392b; }

/* =========================
   詳細を見る（hover時のみ）
========================= */
.hover-detail {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .15em;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.item:hover .hover-detail {
  opacity: 1;
}

/* =========================
   ショップリンク
========================= */
.shop-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-weight: bold;
  color: #2e8b57;
  text-decoration: none;
  transition: color .3s ease;
}

.shop-link::after {
  content: "→";
  opacity: 0;
  transform: translateX(-4px);
  transition: all .3s ease;
}

.image-caption:hover .shop-link {
  color: #1e6f43;
}

.image-caption:hover .shop-link::after {
  opacity: 1;
  transform: translateX(0);
}

/* =========================
   オーバーレイ内 文字色調整（白基調）
========================= */

/* 基本文字色 */
#image-overlay,
#image-overlay * {
  color: #fff;
}

/* タイトルはしっかり白 */
#image-title {
  color: #ffffff;
}

/* 説明文・値・季節などは少し柔らかく */
#image-caption,
#image-season,
#image-texture {
  color: rgba(255,255,255,0.88);
}

/* ラベル（食感・香り・甘さなどの見出し） */
.overlay-info li span:first-child {
  color: rgba(255,255,255,0.65);
}

/* =========================
   ショップリンク（視認性アップ）
========================= */
.shop-link {
  color: #a8e6cf;            /* やさしい農園グリーン */
}

.shop-link:hover {
  color: #d2f5e3;
}

/* =========================
   オーバーレイ内 文字中央ぞろえ
========================= */

/* テキスト全体を中央寄せ */
.overlay-info {
  text-align: center;
}

/* =========================
   スペック表示（中央配置＋項目軸固定）
========================= */

.spec-list {
  list-style: none;
  padding: 0;
  margin: 16px auto;
  width: fit-content;   /* ← 中央に寄せつつ */
}

.spec-list li {
  display: grid;
  grid-template-columns: 4em auto; /* ← タイトル幅を固定 */
  column-gap: 12px;
  align-items: center;
}

/* 項目名（甘さ・香りなど） */
.spec-list .label {
  text-align: left;     /* ← ここが肝 */
  white-space: nowrap;
}

/* 値（★やテキスト） */
.spec-list .value {
  text-align: left;
}

/* キャプション */
.image-caption {
  text-align: center;
}

/* ショップリンクも中央 */
.shop-link {
  justify-content: center;
}

/* =================================================
   スマホ最適化（iOS / Android 共通）
================================================= */

/* vh問題（iOS Safari対応） */
@media (max-width: 768px) {
  .overlay-content {
    height: 100svh;              /* 安全な画面高 */
    max-height: none;
    padding-bottom: env(safe-area-inset-bottom);
  }

  #image-overlay-img {
    max-height: 45%;
  }
}

/* =========================
   スマホでは hover UI を無効化
========================= */
@media (hover: none) {
  .hover-detail {
    display: none;
  }

  .item:hover img {
    transform: none;
  }
}


/* タップ操作の安定化 */
.overlay-arrow,
#image-close {
  touch-action: manipulation;
}

/* =================================================
   スマホ：中身が見えない問題の修正
================================================= */
@media (max-width: 768px) {
  .overlay-content {
    overflow-y: auto;          /* ← 縦スクロール許可 */
    -webkit-overflow-scrolling: touch;
  }

  .overlay-info {
    justify-content: flex-start;
    padding-bottom: 24px;
  }
}

body.no-scroll {
  overflow: hidden;
}







/*インスタ最新情報*/
/* =========================
   Instagram 最新情報
========================= */

.news-insta {
  margin: 100px auto;
  padding: 0 6%;
}


.news-insta h2 {
  font-family: "Kaisei Tokumin", serif;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  position: relative;
}

/* 見出しの飾り線（絵本の章タイトル風） */
.news-insta h2::after {
  content: "";
  display: block;
  width: 400px;
  height: 2px;
  background: #432;
  margin-top: 6px;
}

.insta-lead {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 24px;
  line-height: 1.8;
}

/* Instafeedグリッド */
#instafeed {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
  margin-top: 24px;
}

#instafeed a {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

#instafeed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

#instafeed a:hover img {
  transform: scale(1.05);
}

.page-title{
    text-align: center;
}

.news {
    background-image: url(../images/);
    min-height: 100vh;
}




/* モバイル調整 */
@media (max-width: 600px) {
  .news-insta {
    margin: 60px auto;
  }

  .insta-lead {
    font-size: 0.85rem;
  }
}
















.bgcolor{
    background-color: antiquewhite;
}

.map{
    font-family:"Kaisei Tokumin", serif;  
    color: #ff7575;
    border: #ff7575;
}

.map:hover{
    color: white;
    background-color: #ff7575;
    border-radius: 10%;
    

}

.peach-title{
    text-align: center;
    margin-top: 5%;
    font-size: 2rem;
}

.regular-title{
    background-color: white;
    border-radius: 5px;
    width: 200px;
    text-align: center;
    margin-top: 10%;
    border-style: dashed;
    display: block;
    font-size: larger;

}

.regular-content{
    margin-top: 3%;
    font-size: 20px;
    text-align: center;
}

.content-flex{
    display: flex;
    justify-content: space-around;
    margin-top: 5%;
    font-size: 20px;
}

.regular-box2kg,.regular-box3kg{
    width: 45%;
    height: auto;
    text-align: center;
    font-weight: bold;
    padding: 2%;
    
    /*border-radius: 40% 10%/10% 50%;*/
}
.regular-box2kg{
    background-color: #ffa7bf
}
.regular-box3kg{
    background-color: #d0e39b;
}



.calender{
    margin-top: 3%;
}


.small-title{
    background-color: #ffe875;
    border-radius: 5px;
    width: 200px;
    text-align: center;
    margin-top: 10%;
    border-style: dashed;
    display: block;
    font-size: larger;

}

.sizeimage,.smallsize{
    width: 50%;
    /*background-color: #ff7575;
    padding: 3%;
    border-radius: 40% 10%/10% 50%;
    height: 100%;*/
    
}

.smallsize{
    
    margin-left: 3%;
    text-align: left;
    font-size: 20px;
    

}

.gradeb-title{
    background-color: #ad7741;
    border-radius: 5px;
    width: 200px;
    text-align: center;
    margin-top: 10%;
    border-style: dashed;
    display: block;
    font-size: larger;

}

/*.wrapper .grid{
    background-image: url(../images/IMG_1930.jpeg);
    background-repeat: repeat;
}*/





/* CONTACT
------------------------------- */
#contact {
    background-image: url(../images/IMG_847501.JPG);
    /*background-color: rgba(255, 220, 151, 0.576);*/
    background-blend-mode: hard-light;
    min-height: 100vh;
}
#contact .page-title {
    font-family: "Radley", serif;
    margin-bottom: 30px;
}



/* フォーム */
form div {
    margin-bottom: 20px;
}
/*label {
    font-size: 1.125rem;
    margin-bottom: 10px;
    display: block;
}
input[type="text"],
input[type="email"],
textarea {
    background: rgba(255,255,255,.5);
    border: 1px #fff solid;
    border-radius: 5px;
    padding: 10px;
    font-size: 1rem;
}
input[type="text"],
input[type="email"] {
    width: 100%;
    max-width: 240px;
}
textarea {
    width: 100%;
    max-width: 480px;
    height: 6rem;
}
input[type="submit"] {
    border: none;
    cursor: pointer;
    line-height: 1;
}
*/

/* 店舗情報・地図 */
#location {
    padding: 4% 0;
}
#location .wrapper {
    display: flex;
    justify-content: space-between;
}
.location-info {
    width: 23%;
}
.location-info p {
    padding: 12px 10px;
}
.location-map {
    width: 74%;
}

.sub-title{
    font-family: "Kaisei Tokumin", serif;
}
h4.sub-title{
    font-family: "Sacramento", cursive;
    border-bottom: 2px #432 solid;
}

/* SNS */
#sns {
    background: #FAF7F0;
    padding: 4% 0;
}
#sns .wrapper {
    display: flex;
    justify-content: space-between;
}
#sns .sub-title {
    margin-bottom: 30px;
}
.sns-box {
    width: 10%;

}

/* フッター
------------------------------- */
footer {
    
    background: #432;
    text-align: center;
    padding: 26px 0;
}
footer p {
    color: #fff;
    font-size: 0.875rem;
}

/* モバイル版
------------------------------- */
@media (max-width: 600px) {
    #home {
        background-image: url(../images/mobile_bgimg.jpg);
    }
    .big-bg {
        background-size: cover;
        background-position: center top;
    }
    .page-title {
        font-size: 2.5rem;
    }
    .page-header {
        flex-direction: column;
        align-items: center;
    }

    .logo {
        width: 200px;
    margin-top: 30px;
    }

    /* HEADER */
    .main-nav {
        font-size: 1rem;
        margin-top: 100px;
    }
    .main-nav li {
        margin: 0 20px;
    }

    

    /* HOME */

    .home-title {
        margin-top: 50%;
        font-size: 1.75rem;
    }

    .home-content {
        margin-top: 30%;
    }

    .home-content p{
        margin-bottom: 50%;
    }

    /* NEWS about*/
    

    .news-contents {
        flex-direction: column;
        font-size: 16px;
        width: 80%;
        background-color:#ffffffb5;
    }
    #news .page-title {
        margin-top: 30px;
    }
    article,
    aside {
        width: 100%;
    }
    aside {
        margin-top: 60px;
    }
    .post-info {
        margin-bottom: 30px;
    }
    .post-date {
        width: 70px;
        height: 70px;
        font-size: 1rem;
    }
    .post-date span {
        font-size: 0.875rem;
        padding-top: 2px;
    }
    .post-title {
        font-size: 1.375rem;
    }
    .post-cat {
        font-size: 0.875rem;
        margin-top: 10px;
    }
    .post-title,
    .post-cat {
        margin-left: 80px;
    }

    /* MENU */
    #menu {
        background-position: center top;
    }
    .menu-content {
        margin-top: 20%;
    }

    .regular-content,.smallsize {
        font-size: 14px;
    }

    /* CONTACT */
    #contact .page-title {
        margin-top: 40px;
    }

    /* フォーム */
    input[type="text"],
    input[type="email"],
    textarea {
        max-width: 100%;
    }

    /* 店舗情報・地図 / SNS */
    #location .wrapper,
    #sns .wrapper {
        flex-direction: column;
    }
    .location-info,
    .location-map,
    .sns-box {
        width: 100%;
        
    }
    .sns-box {
        margin: 30px; 
        display: flex;
        justify-content: space-between;
        width: 20%;  
    }


}