/*
/whats_sogyotecho/のみで使用する独自スタイル
*/

/* ==== component: about section ==== */
.p_wrap1024 {
	max-width: 1024px;
	margin: 0 auto;
	padding: 10px;
  }
  
  .c_section_about {
	padding: 40px 20px;
  }
  
  .c_flexBox {
	display: flex;
	align-items: center;
  }
  
  .c_flexBox_reverse {
	  flex-direction: row-reverse;
	  background: #E4F0F3;
  }
  
  .c_flexBox_img {
	flex: 0 0 340px;
	position: relative;
	z-index: 1;
  }
  
  .c_flexBox_text {
	  flex: 1;
	  position: relative;
	  z-index: 1;
	  padding: 1rem;
  }
  
  /* 背景の帯つきパターン（「創業手帳とは？」ブロック用） */
  .c_flexBox_bg {
	  position: relative;
	  padding: 10px 20px 10px 0px;
	  background: #E4F0F3;
	  margin-top: 1rem;
  }
  
  .c_flexBox_bg .c_flexBox_img {
	  margin: -90px 0px 20px 30px;
  }
  
  .c_flexBox_reverse .c_flexBox_img {
	  margin: -90px 20px -30px 10px;
  }
  
  /* ==== utility ==== */
  .u_ml2{
  margin-left:2rem
  }
  .u_bg_blue {
	  background: #B3DBFF;
  }
  .u_bg_yellow {
	  background: linear-gradient(transparent 0%, #fff35a 10%);
	  font-weight: bold;
  }
  
  .c_button_inquiry {
	  background: #1DB5B2;
	  color: #fff;
	  font-weight: 600;
	  font-size: 1.2rem;
	  text-decoration: none;
	  border-radius: 30px;
	  padding: .8rem 4rem;
	  display: inline-block; 
	  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	  transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .c_button_inquiry:hover {
	  text-decoration: none;
	  transform: translateY(3px);
	  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
	  filter: none;
  }
  
  /* ==== component: feature section ==== */
  .c_section_feature {
	  background: #379FFF;
	  padding: 2rem 1rem;
	  margin: 1rem 0 3em;
  }
  
  .c_gridBox_feature {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-bottom: 32px;
  }
  
  /* 5枚目だけ中央寄せ、幅は他のカードと同じ */
  .c_card_feature_center {
	grid-column: 1 / -1;
	max-width: calc(50% - 12px);
	margin: 0 auto;
  }
  
  .c_card_feature {
	  background: #fff;
	  padding: .6rem;
	  display: flex;
	  align-items: center;
	  gap: 10px;
	  justify-content: center;
  }
  
  .c_card_feature_icon {
	flex: 0 0 100px;
  }
  
  .c_card_feature_body {
	flex: 1;
  }
  
  .c_card_feature_title {
	  font-size: 1.1rem;
	  font-weight: 700;
	  color: #003399;
	  margin-bottom: 8px;
  }
  
  .c_section_feature_lead {
	  text-align: center;
	  color: #fff;
	  font-weight: 700;
	  line-height: 2;
  }
  
  /* ==== SP（モバイル） ==== */
  @media screen and (max-width: 767px) {
  .l_container {
	  padding: 0;
  }
  .c_title_700BoldBlue {
	  text-align: left;
	  margin-left: 0;
  }
	.c_section_about {
	  padding: 0;
	}
  
	.c_section_feature_lead {
	  font-size: 1.1rem;
	  line-height: 1.6;
	}
  
	.c_flexBox, .c_flexBox_reverse {
	  gap: 16px;
	  display: block;
	}
  
	/* --- 創業手帳とは？ブロック --- */
	.c_flexBox_bg {
	  background: none;
	  padding: 0;
	  margin-top: 60px;
	}
  
	.c_flexBox_bg .c_flexBox_img {
	  margin: 0;
	  padding: 20px;
	  background: #E4F0F3;
	}
  
	.c_flexBox_bg .c_flexBox_img img {
	  margin-top: -60px;
	}
  
	.c_flexBox_bg .c_flexBox_img,
	.c_flexBox_bg .c_flexBox_text {
	  background: #E4F0F3;
	}
  
	.c_flexBox_img {
	  flex: none;
	  width: 100%;
	}
  
   /* --- 私たちの想いブロック：c_flexBox_bg と同じ仕組み --- */
  .c_flexBox_reverse {
	  margin-top: 50px;
  }
  
	.c_flexBox_reverse .c_flexBox_img {
	  margin: 0 0 16px 0;
	  padding: 20px;
	  background: #E4F0F3;
	}
  
  .c_flexBox_reverse .c_flexBox_img img {
	  margin-top: -60px;
	  margin-bottom: -20px;
  }
  
	/* --- 5つのこだわりブロック --- */
	.c_gridBox_feature {
	  grid-template-columns: 1fr;
	  gap: 16px;
	}
  
	.c_card_feature_center {
	  max-width: none;
	}
  
	.c_card_feature {
	  padding: 16px;
	}
  .c_section_feature {
	  margin-bottom: 1rem;
  }
  
  }