@charset "UTF-8";
body {
    font-family: "ＭＳ Ｐゴシック", "Osaka", sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #ffffff;
}

/* ヘッダー */
.header {
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
    text-align: right;
}
.logo-link { display: inline-block; }
.logo-img {
    width: auto;   /* 原寸で表示 */
    height: auto;
	 margin-right: 50px;  
}

/* メインコンテンツ */
.content-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 50px;       /* ★ 写真と文字を50px上へ */
    margin-left: 100px;
    margin-right: 100px;
    padding-bottom: 250px;  /* ★ 画面下に250px空きを確保 */
}


/* 写真 */
.image-section {
    flex: 1;
    min-width: 300px;
}
.main-image {
    width: 100%;
    height: auto;
    /* 角丸なし */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* テキスト */
.text-section {
    flex: 1.5;
    min-width: 300px;
    max-width: 550px;   /* 左右幅を550pxに制限 */
    margin-left: auto;
    margin-right: auto;
    margin-top: -25px;  /* ★ 文字全体を20px上へ */
}

/* CTAリンク */
.shop-link {
    text-decoration: underline;
    font-size: 22pt;
    font-weight: 800;
    display: inline-block;
    margin-top: 20px;
}

/* リンク色 */
a:link    { color: #587D36; }
a:visited { color: #587D36; }
a:hover   { color: #B79237; }
a:active  { color: #E8BC4D; }

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .content-container {
    flex-direction: column;
    margin-top: 80px;
    margin-left: 20px;   /* 狭い画面では左右余白を縮小 */
    margin-right: 20px;
  }
  .text-section { max-width: 90%; }
  .shop-link { font-size: 18pt; }
}
