@charset "UTF-8";

/* =========================
   リセット
========================= */
*,
*::before,
*::after{
  box-sizing:border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

.page-wrapper {
  min-height: 100vh;   /* ←これが一番重要 */
  display: flex;
  flex-direction: column;
}

.furu_page{
  display:flex;
  flex-direction:column;
  margin: 0;
}

.furu_main-section{
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content: flex-start; /* ←重要 */
}
.sp-only {/* PCでは改行しない */
  display: none;
}
/* =========================
   ヘッダー
========================= */
.furu_header{
  width:100%;
  background:#fff; 
	margin-bottom: 30px;
}

.furu_header-inner{
  width:90%;
  margin:0 auto;
  text-align:center;
}

.furu_header img{
  height:auto;
  display:block;
	margin: auto;
	padding: 10px;
  width: 60%;   /* ← デフォルト（スマホ） */
  height: auto;
  display: block;
}

/* =========================
   レイアウト
========================= */
.furu_page{
  display:flex;
  flex-direction:column;
	margin-bottom: 0;
}

.furu_main-section{
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
}


/* =========================
   上部テキスト
========================= */
.furu_intro{
  width:90%;
  margin:20px auto 40px;
	font-size: 16px;
}

.furu_intro h2{
  font-size:18px;
	font-weight: 500;
  margin-bottom:30px;
  text-align:center;
}
.furu_intro p{
  margin-bottom:15px;
}

/* =========================
   カード
========================= */
.furu_contact-container{
  width:90%;
  margin:0 auto 15px;
  background:#fff;
  padding:20px 15px;
  border-radius:12px;
  box-shadow:0 3px 8px rgba(0,0,0,0.05);
}

.furu_contact-title{
  font-size:15px;
  font-weight:bold;
  margin-bottom:10px;
  border-left:3px solid #333;
  padding-left:8px;
}


/* =========================
   テキスト
========================= */
.furu_info{
  font-size:13px;
  line-height:1.8;
}

.furu_info-item{
  margin-bottom:6px;
}


/* =========================
   リンク
========================= */
.furu_main-section a{
  color:#007acc;
  text-decoration:underline;
  word-break:break-all;
}


/* =========================
   フッター
========================= */
.furu_footer{
  text-align:center;
  font-size:12px;
  padding:15px 10px;
  color:#777;
}


/* =========================
   タブレット
========================= */
@media screen and (min-width:750px){
.furu_intro h2{
  margin-bottom:30px;
}
  .furu_intro{
    width:700px;
    margin:50px auto 30px;
  }

  .furu_contact-container{
    width:640px;
    margin:0 auto 20px;
    padding:25px 30px;
  }

  .furu_contact-title{
    font-size:16px;
  }

  .furu_info{
    font-size:14px;
  }
	  .furu_header img{
    width: 260px; 
  }
}

