@charset "UTF-8";

/* コンテンツラッパー */
.content_wrap {
  display: flex;
  gap: 40px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 100px 20px 0;
}

.main_content {
  flex: 1;
  min-width: 0;
   > .sec:last-child{
    padding-bottom: 150px;
   }
}

.aside {
  width: 300px;
  flex-shrink: 0;
  position: sticky;
  top: 190px;
  align-self: flex-start;
}

/* セクションタイトル */
/* .sec_ttl {
  font-size: 40px;
  font-weight: 700;
  color: var(--green);
  border-bottom: 2px solid var(--green);
  padding-bottom: 10px;
  margin-bottom: 30px;
  display: flex;
  align-items: baseline;
  gap: 15px;
} */

.sec_ttl_en {
  font-size: clamp(54px, 5.5vw, 84px);
  margin-left: auto;
  font-weight: 800;
  color: #e7f7f0;
}

/* もっと見るボタン */
/*.more_btn {
  display: flex;
  align-items: center;
  background-color: #FF6B35;
  color: #fff;
  padding: 0.5em 1em;
  border-radius: 25px;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.3s;
  max-width: 280px;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
  margin-top: 80px;
}

.more_btn .arrow_ico {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
}

.more_btn .arrow_ico img {
  width: 100%;
  height: auto;
}*/

/* サイドバー */
.side_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* サイドバナー */
.side_banner_wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.side_banner_item {
  display: flex;
  /* padding: 20px; */
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.3s;
  /* min-height: 100px; */
  align-items: center;
    img{
      height: auto;
    }
}
/* .side_banner_item + .side_banner_item {
  margin-top: 8px;
} */


/* .banner01 {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.banner02 {
  background: linear-gradient(135deg, #FF6B6B 0%, #C92A2A 100%);
}

.banner03 {
  background: linear-gradient(135deg, #51CF66 0%, #2B8A3E 100%);
}

.banner04 {
  background: linear-gradient(135deg, #4DABF7 0%, #1971C2 100%);
} */

.banner_content {
  width: 100%;
}

.banner_ttl {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
}

/* 検索バー */
.side_search {
  width: 300px;
}

.side_search .search-form {
  width: 100%;
  border: 2px solid #15ae67;
  border-radius: 100px;
  height: 50px;
}

.side_search .search-field {
  border-radius: 50px;
}

/* 検索フィールドのクリアボタン（×）を非表示 */
.side_search .search-field::-webkit-search-cancel-button {
  display: none;
  -webkit-appearance: none;
}

.side_search .search-field::-moz-search-clear-button {
  display: none;
}

/* 入会についてボタン */
/* .membership_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #FF6B35;
  color: #fff;
  padding: 15px 20px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.3s;
} */
/* 
.membership_btn:hover {
  opacity: 0.8;
} */

/* .membership_btn .btn_ico {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
} */

/* .membership_btn .btn_ico img {
  width: 100%;
  height: auto;
} */

/* Instagramセクション */
.side_instagram {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
}

/* Smash Balloon Instagram Feed プラグイン用スタイル */
.side_instagram #sb_instagram {
  width: 100%;
}

.side_instagram #sb_instagram .sbi_photo_wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 5px;
}

.side_instagram #sb_instagram .sbi_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.side_instagram #sb_instagram .sbi_item {
  aspect-ratio: 1;
  overflow: hidden;
}

/* プレースホルダー画像の非表示（実際の画像が読み込まれたら表示される） */
.side_instagram #sb_instagram img[src*="placeholder.png"] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.side_instagram #sb_instagram img[src*="placeholder.png"]:not([src*="placeholder"]) {
  opacity: 1;
}

/* ローディング状態の改善 */
.side_instagram #sb_instagram .sbi_photo_wrap::before {
  content: '';
  display: block;
  padding-top: 100%; /* 1:1のアスペクト比 */
}

.side_instagram #sb_instagram .sbi_photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.instagram_header {
  margin-bottom: 15px;
}

.instagram_ttl {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.5;
}

.instagram_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 15px;
}

.instagram_item {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 5px;
  transition: opacity 0.3s;
}


.instagram_img_wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.instagram_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FOLLOW MEボタン */
.instagram_follow_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--green);
  color: #fff;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.3s;
  width: 100%;
}


.instagram_follow_btn .btn_ico {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
}

.instagram_follow_btn .btn_ico img {
  width: 100%;
  height: auto;
}
/* .slider_wrap{
	position: relative;
		.mv_ttl {
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			position: absolute;
			z-index: 1;
			width: 100%;
			height: 100%;
			padding-bottom: 8.5%;
			color: #fff;
			pointer-events: none;
			.mv_ttl_en{
				font-weight: 700;
				font-size: clamp(54px, 5.5vw, 84px);
			}
			.mv_ttl_jp{
				font-weight: 700;
				font-size: clamp(18px, 1.8vw, 24px);
				margin-top: 1.2em;
			}
		}
}
.slider{
	margin-bottom: 0 !important;
		.slick-list li{
			width: 100%;
			height: auto;
			aspect-ratio: 1920 / 680;
			background-position: center;
			background-size: cover;
			background-repeat: no-repeat;
			min-height: 500px;
		}
		.slick-dots {
			bottom: 19%;
		}
		.slick-dots li button:before {
			font-size: 12px;
			color: #fff;
			opacity: 1;
			transition: .3s ease;
		}
		.slick-dots li.slick-active button:before {
			opacity: 1;
			color: #E3190F;
		}
		.slick-dots li button:focus:before, .slick-dots li button:hover:before {
			opacity: 1;
			color: #E3190F;
		}
} */
.sec_green_bg{
  .sec_ttl_en{
    color: #fff;
  }
}



/* レスポンシブ対応 */
/*--------------------PC--------------------*/
@media all and (min-width:900px) {
  .sec.sec01{
    padding-top: 100px;
  }
  .content_wrap {
    display: flex;
  }
  /* .content_wrap {
    min-width: 1140px;
  } */
  
  .aside {
    padding-bottom: 150px;
  }
  .sec_green_bg {
    position: relative;
    padding: 60px 0;
  }
  .sec_green_bg::before {
    content: '';
    display: block;
    width: 100vw;
    height: 100%;
    background-color: var(--l_green);
    position: absolute;
    top: 0;
    left: calc(-50vw + 50%);
    z-index: -1;
  }
}

/*--------------------SP--------------------*/
@media all and (max-width:899px) {

  main{
    padding-bottom: 70px;
  }
  .content_wrap {
    flex-direction: column;
    padding: 40px 0;
    gap: 50px;
  }
  .main_content {
    > .sec:last-child {
        padding-bottom: 50px;
    }
  }
  .aside {
    /* width: 100%; */
    width: 88%;
    margin-left: auto;
    margin-right: auto;
  }
  .side_search {
    width: 100%;
  }
  .sec_ttl {
    font-size: 20px;
  }
  
  .sec_ttl_en {
    font-size: 28px;
  }
  
  /* news_list関連のスタイルはcommon.cssに移動しました */
  
  /*.more_btn {
    width: 60%;
    padding: 15px 24px;
    margin-right: 0;
    border-radius: 50px;
  }*/
  
  .side_banner_item {
    min-height: 80px;
    /* padding: 15px; */
  }
  
  .banner_ttl {
    font-size: 13px;
  }
  
  .sec_green_bg {
    padding: 40px 0;
  }
  .sec_green_bg::before {
    left: calc(-50vw + 50%);
  }
}

/* 商工会について・支援情報セクション */
.about_content,
.support_content {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.about_text,
.support_text {
  flex: 1;
  min-width: 0;
}

.about_text p,
.support_text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--black);
  margin-bottom: 1.2em;
}

.about_text p:last-child,
.support_text p:last-child {
  margin-bottom: 0;
}

.about_img,
.support_img {
  flex: 0 0 300px;
  max-width: 100%;
}

.about_img img,
.support_img img {
  width: 100%;
  height: auto;
  /* border-radius: 8px; */
}

/* 会員紹介セクション */
.member_text {
  margin-bottom: 30px;
}

.member_text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--black);
}

.member_cat_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.member_cat_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* gap: 10px; */
  background-color: #fff;
  border: 2px solid var(--green);
  border-radius: 10px;
  padding: 10px 0px 7px;
  text-decoration: none;
  transition: all 0.3s;
  /* min-height: 110px; */
  position: relative;
  overflow: hidden;
  img {
      max-width: 98px;
  }
  span{
    font-weight: 700;
    margin-top: 5px;
  }
}

.member_cat_item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 30px 30px;
  border-color: transparent transparent var(--green) transparent;
}

.member_cat_item:hover {
  opacity: 0.7;
}

.member_cat_item.active {
  background-color: #fff;
}

.member_cat_item.active::after {
  border-color: transparent transparent var(--green) transparent;
}

.member_cat_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}

.member_cat_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.member_cat_name {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  text-align: center;
}

.member_cat_item:hover .member_cat_name,
.member_cat_item.active .member_cat_name {
  color: var(--black);
}

@media all and (max-width:999px){
  .member_cat_grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

/* レスポンシブ対応 - 商工会について・支援情報 */
@media all and (max-width:899px) {
  .about_content,
  .support_content {
    flex-direction: column;
    gap: 20px;
  }

  .about_img,
  .support_img {
    flex: 1 1 auto;
    width: 100%;
  }

  .about_text p,
  .support_text p {
    font-size: 14px;
  }

  .member_text p {
    font-size: 14px;
  }

  

  .member_cat_item {
    padding: 15px;
    min-height: 100px;
  }


  .member_cat_icon {
    width: 50px;
    height: 50px;
  }

  .member_cat_name {
    font-size: 14px;
  }
}


@media all and (max-width:600px){
  .member_cat_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}



/* sec01
***************************************************************/
.sec.sec01{
  padding-top: 0;
}

/*--------------------PC--------------------*/
@media all and (min-width:900px){
}
/*--------------------SP--------------------*/
@media all and (max-width:899px){
}





/* sec02
***************************************************************/
.sec.sec02{
  padding-top: 0;
}

/*--------------------PC--------------------*/
@media all and (min-width:900px){
}
/*--------------------SP--------------------*/
@media all and (max-width:899px){
}






/* sec03
***************************************************************/

/*--------------------PC--------------------*/
@media all and (min-width:900px){
}
/*--------------------SP--------------------*/
@media all and (max-width:899px){
}














/* aaa
***************************************************************/

/*--------------------PC--------------------*/
@media all and (min-width:900px){
}
/*--------------------SP--------------------*/
@media all and (max-width:899px){
}




/* aaa
***************************************************************/

/*--------------------PC--------------------*/
@media all and (min-width:900px){
}
/*--------------------SP--------------------*/
@media all and (max-width:899px){
}




/* aaa
***************************************************************/

/*--------------------PC--------------------*/
@media all and (min-width:900px){
}
/*--------------------SP--------------------*/
@media all and (max-width:899px){
}

