@charset "utf-8";

/* ======================
   Base
====================== */
body{
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  font-family:  "Hiragino Mincho ProN", "Yu Mincho", "Times New Roman", Georgia, serif;
  color: #333;
}

p{
  text-align: left;
  font-size: 12px;
  line-height: 1.8;
  color: #666;
  margin: 0 15px 15px;
}

img{
  border: none;
  vertical-align: bottom;
}

/* ======================
   Layout
====================== */
#mainWrapper{
  width: 1000px;      /* メインコンテンツ幅固定 */
  margin: 0 auto;
}

.setLeft{
  float: left;
  width: 100%;
}

.setRight{
  float: right;
}

.clear{
  clear: both;
}

/* ======================
   HERO（トップ画像） - フル幅対応
====================== */

#Top{
  width: 1000px;             
  height: 480px;
  background-image: url("../img/top1.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  margin: 0 auto;  /* 中央に配置 */
}

/* 薄いオーバーレイで文字を読みやすく */
#Top::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);  /* 半透明黒 */
  z-index: 0;
}

/* テキストを画像中央に配置 */
.hero-text{
  position: absolute;
  top: 50%;          
  left: 50%;         
  transform: translate(-50%, -50%); /* 完全中央 */
  max-width: 600px;
  text-align: center;
  z-index: 2;
  color: #ffffff;           /* 白文字 */
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7); /* 読みやすくする影 */
}

.hero-text h1{
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.hero-text p{
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
}

/* ======================
   Headings
====================== */
h1{
  font-size: 18px;
  font-weight: 200;
  color: #fff;
  text-align: center;
}
h2{
  font-size: 20px;
  font-weight: 200;
  color: #414745;
  text-align: left;
	margin-left: 15px;
}

h3{
  font-size: 16px;
  font-weight: 200;
  color: #414745;
  text-align: left;
	margin-left: 15px;
}

/* ======================
   About / Detail
====================== */
#aboutContents{
  float: right;
  width: 664px;
}

.detail{
  background-color: #fff;
  color: #333;
  font-size: 12px;
  padding: 10px;
  text-align: center;
}

/* ======================
   Flowers / Gallery
====================== */
.flowers,
.flowers2{
  width: 1000px;
  float: left;
  background-color: #fff;
}

/* ======================
   Contact
====================== */
#Contact{
  width: 1000px;
  background-color: #E9E9E9;
  padding: 20px 0;
}

#Contact p{
  font-size: 12px;
  line-height: 1.8;
}

/* ======================
   Footer
====================== */
.notice{
  color: #999;
  font-size: 10px;
  text-align: center;
  margin: 30px 0;
}

/* ======================
   Fixed Button
====================== */
.fixed_btn{
  position: fixed;
  bottom: 30px;
  right: 50px;
  padding: 6px 30px;
  background: #333;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* ======================
   Navigation
====================== */
#navi{
  position: relative; /* または fixed にして常に上に表示も可 */
  z-index: 10;
  text-align: left;
}

#navi img{
  display: inline-block;
  margin: 0;
  padding: 0;
}

/* ======================
   Overview colomn
====================== */
/* ===== Overview Columns : GRID FINAL ===== */

.flower-columns {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px !important;

  max-width: 1200px !important;
  margin: 30px auto !important;
  padding: 0 !important;

  box-sizing: border-box !important;
}

/* 各カラム */
.flower-columns .column {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;

  box-sizing: border-box !important;
}

/* 画像 */
.flower-columns .column img {
  width: 100% !important;
  height: auto !important;
  display: block !important;

  float: none !important;   /* ★ これが重要 */
  clear: both !important;

  border-radius: 8px !important;
  margin-bottom: 10px !important;
}

/* リスト */
.flower-columns .column ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.flower-columns .column ul li {
  margin-bottom: 5px !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

/* ===== レスポンシブ ===== */

/* タブレット：2列 */
@media screen and (max-width: 900px) {
  .flower-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* スマホ：1列 */
@media screen and (max-width: 600px) {
  .flower-columns {
    grid-template-columns: 1fr;
  }
}
