@charset "utf-8";
/* CSS Document */




/*--====== パンくずリスト ======--*/
/* パンくず全体 */
#pan_box {
  text-align: right; /* 全体を右寄せ */
	background: #01c0ef;
}

.topic-path {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  top: 15px;
  left: 2.2%;
  z-index:999;
}

.topic-path li {
  font-size: 60%;
  letter-spacing: 2px;
  font-weight: bold;
}

.topic-path li a,
.topic-path li.visited {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
  text-decoration: none;
  border: 1px solid #ccc;
  background: #f9f9f9;
  transition: all 0.3s ease;
}

/* 通常のリンクボタン */
.topic-path li a {
  color: #333;
}

.topic-path li a:hover {
  background: #ffe680;
  border-color: #f0c040;
}

/* visited風デザイン（固定） */
.topic-path li.visited {
  background: #ffe680;
  color: #555;
  border-color: #f0c040;
}

.topic-path li:not(:last-child)::after {
  content: '➔'; /* 矢印 */
  color: gold;
  margin: 0 0px 0px 8px;
  font-size: 15px;
}
/*--====== ここまでパンくずリスト ======--*/




.mainvisual{
	width: 100%;
	height: 482px;
	background:url(../img/homepagesakusei/mainvisual.jpg) center top no-repeat;
	position: relative;

/*	background: #01c0ef;
	border-bottom: 25px solid #0981A8;
	background: #0981A8;
*/}
h1.main_title{
	z-index: 100;
	text-align: center;
	color: #FFF;
	font-size: 230%;
	letter-spacing: 5px;
	font-weight: 900;
	text-align: center;
	text-shadow: 2px 2px 2px #000;
	position: relative;
	top: 205px;
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
}
span.ss_title{
	font-size:77%;
}





main {
	background: #01c0ef;
    display: flex;
    justify-content: center; /* 横方向センター */
	padding-bottom: 180px;
}

article.container {
  width: 80%;
  height: auto;
  max-width: 1200px; /* PCで広がりすぎないように制限 */
  margin: 0 auto; /* 中央寄せ */
  background: #FFF;
  border-radius: 30px;
  position: relative;
  top: 50px;
  padding-bottom: 110px;
}

/* スマホやタブレットで自動調整 */
@media screen and (max-width: 768px) {
  .container {
    width: 95%;
  }
}
	
h2.title_01{
	text-align: center;
	color: #444;
	letter-spacing: 2px;
	font-size: 200%;
	font-weight: normal;
	padding: 70px 20px 20px;
}
.photo_01 img {
  max-width: 85%;
  height: auto;
  display: block;   /* 余計な余白防止 */
  margin: 0 auto;   /* 中央寄せしたい場合 */
}


p.text_01{
	text-align: justify;
	letter-spacing: 2px;
	line-height: 1.6;
	font-size: 110%;
	color: #535353;
	width: 85%;
	margin:0 auto;
	padding-top: 5px;
	padding-bottom: 30px;
}
p.text_01 a{
  color: #f73;
}

p.text_02{
	letter-spacing: 2px;
	font-size: 116%;
	color: #535353;
	width: 85%;
	padding-left: 30px;
}

ul.wp_list{
	width: 90%;
	margin: 0 auto;
    list-style: none;
    margin-top: 5px 0 10px 0;
    padding: 1.2em;
    background-color: #f5faff;
    border: 1px solid #cce5ff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    font-size: 1.05em;
    line-height: 1.8;
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    color: #333;
}

ul.wp_list li{
  position: relative;
  padding-left: 1em;
  margin-bottom: 0.6em;
  letter-spacing: 2px;
  color: #535353;
  font-size: 123.1%;
  display: flex;
}
ul.wp_list li p{
  margin-left: 5px;
}


/* コンテナ */
.flow-list {
  display: flex;
  flex-direction: column;
  gap: 50px; /* 各行の間隔 */
  max-width: 1200px; /* 任意 */
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

/* 各行（画像 + コンテンツ） */
.flow-item {
  display: flex;
  align-items: center;      /* 縦方向中央揃え */
  gap: 20px;
}

/* 画像枠（固定幅） */
.photo_02 {
  flex: 0 0 300px;          /* 画像の幅（調整可） */
  height: 180px;            /* 固定高さにして揃える */
  overflow: hidden;
}

/* 画像は枠にフィットさせる */
.photo_02 img {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* 切り抜きで見栄えを均一に */
  display: block;
}

/* テキスト側が伸びる */
.flow-item .content {
  flex: 1 1 auto;
}

/* 見出し・本文の余白調整 */
.flow-item h3 {
  margin: 0 0 8px 30px;
  font-size: 131%;
  line-height: 1.3;
}

/*.flow-item .text_02 {
  margin: 0;
  color: #444;
  line-height: 1.7;
}
*/
/* オプション：奇数偶数で画像とテキストの左右入替（交互レイアウト） */
.flow-list.alternate .flow-item:nth-child(even) .photo_02 {
  order: 2;
}
.flow-list.alternate .flow-item:nth-child(even) .content {
  order: 1;
}

/* レスポンシブ（スマホ）: 縦並びにする */
@media (max-width: 768px) {
  .flow-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .photo_02 img{
    width: 100%;
    flex: 0 0 auto;
    height: 200px; /* スマホで高さを大きめに */
  }
  .flow-item .content {
    width: 100%;
  }
}


.link-btn-container {
  text-align: center; /* 中央揃え */
  margin: 40px 0;
}

.pop-btn {
  display: inline-block;
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, #ff6ec7, #ffcc70);
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

/* ホバー時の動き */
.pop-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* 押した時 */
.pop-btn:active {
  transform: scale(0.95);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}







