@charset "utf-8";
/* ファーストビュー */
#fv{
	background-color: var(--YELLOW);
}
.fv__con{
	position: relative;
}
h1.fv__ttl {
  position: absolute;
}
@media screen and (min-width: 768px){
	h1.fv__ttl {
	  top: 50%;
	  left: clamp(3%, 10vw, 10%);
	  transform: translate(0, -50%);
	  width: 47vw;
    max-width: 500px;
    font-size: clamp(12px, 1.5vw, 16px);
    text-align: center;
	}
  #fv .inner{
	  padding: 30px 0;
  }
}
@media screen and (max-width: 767px){
  #fv .inner{
	  width: 95%;
  }
	h1.fv__ttl {
	  top: 45%;
	  left: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
		font-size: clamp(12px, 3vw, 16px);
		line-height: 1.8;
	}
  
}
/* お知らせ */
h2.sec--ttl {
  color: var(--BLUEGRAY);
  font-weight: bold;
  font-size: clamp(50px,6vw,60px);
  font-family: var(--FF_EN);
  display: flex;
  align-items: center;
  letter-spacing: .05em;
  line-height: .8;
}
h2.sec--ttl span {
  color: var(--GRAY);
	font-family: var(--FF_BASE);
	font-size: var(--FZ_10);
	writing-mode: vertical-rl;
	letter-spacing: .3em;
  line-height: 1.5;
	margin-right: .5em;
	padding-top: 8px;
	font-weight: 400;
}
.news__list li {
  display: flex;
  border-bottom: 1px dashed var(--LGRAY);
	padding-bottom: 15px;
}
.news__list li:not(:first-child){
	padding-top: 15px;
}
.news__list li time {
  margin-right: 1em;
  font-size: var(--FZ_12);
  letter-spacing: .05em;
}
.news__list--cat a {
  background: var(--BEIGE);
  padding: 1px 12px 2px;
  line-height: 1;
  font-size: var(--FZ_11);
  border-radius: var(--COMMON_BDRS_S);
}
@media screen and (min-width: 768px){
	h2.sec--ttl {
	  margin-bottom: var(--GAP_80);
	}
	.news__list li {
	  flex-wrap: wrap;
	  align-items: center;
	  margin: 0 10%;
	  line-height: 2;
	}
	span.news__list--cat a {
	  margin-right: 1em;
	}
  
}
@media screen and (max-width: 767px){
	h2.sec--ttl {
	  margin-bottom: var(--GAP_60);
	}
	.news__list li {
	  flex-direction: column;
	}
	.news__list--info {
	  margin-bottom: 10px;
	}
  
}
/* カテゴリ */
.category__list {
  display: flex;
  gap: var(--GAP_30);
}
.category__list.list--2{
	margin-bottom: var(--GAP_30);
}
.category__list--wrap{
	background-color: var(--YELLOW);
}
.category__list--img {
  margin: 0 auto;
  padding: 20px 0 5px;
}
h3.sec--subttl {
  text-align: center;
  font-weight: bold;
  font-size: var(--FZ_20);
  padding-bottom: 10px;
}
.category__list--txt {
  background-color: var(--BGGRAY);
  padding: 15px 15px 20px;
  font-size: var(--FZ_14);
  position: relative;
}
.category__list--txt::after{
	content: "";
	background: url(/asset/images/common/arrow.svg) no-repeat;
	background-size: contain;
	width: 20px;
	height: 20px;
	display: inline-block;
	position: absolute;
	right: 10px;
	bottom: 10px;
}
@media screen and (min-width: 768px){
	.category__list {
		justify-content: center;
	}
	.category__list li {
		width: 32%;
		max-width: 280px;
		display: flex;
		flex-direction: column;
	}
	.category__list li a {
		display: flex;
		flex-direction: column;
		flex-grow: 1;
	}
	.category__list--txt {
		flex-grow: 1;
	}
	.category__list--img {
		width: 40%;
		max-width: 100px;
	}
}
@media screen and (max-width: 767px){
	.category__list {
		flex-direction: column;
	}
	.category__list--img {
		width: 25%;
	}

}
/* マガジン */
.magazine__list{
	display: grid;
	margin-bottom: clamp(40px,5vw,60px);
}
.magazine__list--info {
	display: flex;
	align-items: center;
  margin-bottom: 5px;
}
.magazine__list--info time {
  margin-right: 1em;
  font-size: var(--FZ_12);
  letter-spacing: .05em;
}
.magazine__list--cat{
  line-height: 0;
}
.magazine__list--cat a {
  padding: 1px 12px 2px;
  line-height: 1;
  font-size: var(--FZ_11);
  border-radius: var(--COMMON_BDRS_S);
}
h3.magazine__list--ttl {
  font-size: var(--FZ_16);
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 5px;
}
.magazine__list--txt {
  font-size: var(--FZ_12);
}
.sec--btn {
  text-align: center;
}
.sec--btn a {
  background: var(--YELLOW);
  color: var(--WHITE);
  padding: 12px 0 15px;
  border-radius: 30px;
  display: block;
  width: 80%;
  max-width: 200px;
  margin: 0 auto;
}
@media screen and (min-width: 901px){
	.magazine__list{
		grid-template-columns: repeat(4,1fr);
		gap: var(--GAP_40) var(--GAP_30);
	}
}
@media (min-width:768px) and (max-width:900px){
	.magazine__list{
		grid-template-columns: repeat(3,1fr);
		gap: var(--GAP_40) var(--GAP_30);
	}
}
@media screen and (min-width: 768px){
	.magazine__list--info {
	  align-items: center;
	}
	.magazine__list--img {
	  margin-bottom: 5px;
	}
	.sec--btn a:hover {
    max-width: 240px;
    transition: .3s;
    opacity: 1;
	}
}
@media (min-width:415px) and (max-width:767px){
	.magazine__list{
		grid-template-columns: repeat(2,1fr);
		gap: var(--GAP_40_CONST) var(--GAP_40);
	}
	.magazine__list--img {
	  margin-bottom: 10px;
	}
}
@media screen and (max-width: 414px){
	.magazine__list{
		grid-template-columns: repeat(1,1fr);
		gap: var(--GAP_40);
	}
	.magazine__list--img {
	  margin-bottom: 10px;
	}
}
/* 交流会のお知らせ */
#notice{
	background-color: var(--BEIGE);
}
#notice .inner{
	padding: clamp(40px,3vw,60px) 0;
	display: flex;
}
#notice .sec--ttl {
  color: var(--BLACK);
  font-family: var(--FF_BASE);
  font-size: var(--FZ_40);
  margin-bottom: var(--GAP_30);
}
.notice__wrap--txt {
  margin-bottom: 30px;
  line-height: 2.5;
  font-size: clamp(12px,3vw,16px);
}
#notice .sec--btn a{
	background-color: var(--BLUEGRAY);
}
#notice h2.sec--ttl span{
	color: var(--BLUEGRAY);
}
@media screen and (min-width: 768px){
  .notice--img {
    width: 35%;
    display: flex;
	}
	.notice--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	}
	.notice__wrap {
    width: 65%;
    background: var(--WHITE);
    padding: 30px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
	}
}
@media screen and (max-width: 767px){
	#notice .inner{
		flex-direction: column;
	}
	.notice__wrap {
    padding: 20px 7% 30px;
    background: var(--WHITE);
	}
  .notice--img img {
    aspect-ratio: 3/2;
    object-fit: cover;
	}
}
/* 新規加入企業 */
.new_companies__list{
	display: flex;
	flex-direction: column;
  gap: var(--GAP_40_CONST);
}
.new_companies__list li {
  display: flex;
}
.new_companies__list--img img {
  border: 1px solid var(--TGRAY);
}
h3.new_companies__list--ttl{
	font-weight: bold;
	font-size: var(--FZ_20);
	margin-bottom: 5px;
}
.new_companies__list--txt{
	font-size: var(--FZ13);
	margin-bottom: 1em;
}
@media screen and (min-width: 768px){
	.new_companies__list--img{
		width: 30%;
		margin-right: 5%;
	}
	.new_companies__list--wrap{
		flex: 1;
	}
	.new_companies__list li .sec--btn a{
		margin: 0 0 0 auto;
		max-width: 170px;
		padding: 7px 0 10px;
	}
  .new_companies__list li .sec--btn a:hover{
	  max-width: 190px;
  }
}
@media (min-width:415px) and (max-width:767px){
	.new_companies__list {
		display: grid;
		grid-template-columns: repeat(2,1fr);
		gap: var(--GAP_40_CONST) var(--GAP_40);
	}
}

@media screen and (max-width: 767px){
	.new_companies__list li {
	  flex-direction: column;
	}
	.new_companies__list--img{
		margin-bottom: 10px;
	}
  
}
/* Legacyについて */
#legacy {
  background-color: var(--BGGRAY);
  position: relative;
}
#legacy::before{
	content: "";
	background-color: var(--YELLOW);
	width: 100%;
	height: 50%;
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}
#legacy .inner{
  position: relative;
  z-index: 2;
}
.ttl--wrap {
  display: flex;
	align-items: center;
  color: var(--WHITE);
}
h2.legacy--ttl{
	font-size: var(--FZ_35);
  position: relative;
}
.legacy--catch{
	font-size: var(--FZ_16);
}
.legacy__list {
  margin: 0 auto;
  line-height: 3.5;
  font-size: var(--FZ_18);
  background: var(--WHITE);
  padding: clamp(5%, 6vw, 7%) 5%;
}
.legacy__list li {
  line-height: 1.4;
  display: flex;
  align-items: center;
}
.legacy__list li:not(:last-child) {
  margin-bottom: 25px;
}
.legacy__list li span.legacy__list--num {
  font-size: var(--FZ_35);
  color: var(--BLUEGRAY);
  line-height: 1;
  opacity: .5;
}
@media screen and (min-width: 768px){
	.ttl--wrap {
	  margin: -50px 0 10px;
	}
	h2.legacy--ttl{
		width: 50%;
		padding: 30px 60px 30px 0;
		text-align: right;
	}
	h2.legacy--ttl::after {
	  content: "";
	  width: 1px;
	  height: 60%;
	  background: var(--WHITE);
	  display: inline-block;
	  position: absolute;
	  right: 0;
	  top: 20%;
	}
	.legacy--catch{
		width: 50%;
		padding: 30px 60px;
	}
	.legacy__list {
	  width: 90%;
	}
	.legacy__list--num {
	  margin-right: .5em;
	}
}
@media screen and (max-width: 767px){
	.ttl--wrap {
    flex-direction: column;
	  margin: 0 0 15px;
	}
	h2.legacy--ttl {
    margin-bottom: 20px;
    line-height: 1;
	}
	.legacy__list li span.legacy__list--txt{
		width: 85%;
		font-size: var(--FZ_14);
	}
	.legacy__list li span.legacy__list--num {
    width: 15%;
	}
}
/* 加入企業一覧 */
.member__list{
	display: grid;
}
.member__list li img {
  border: 1px solid var(--TGRAY);
}
@media screen and (min-width: 901px){
	.member__list{
		grid-template-columns: repeat(6,1fr);
		gap: var(--GAP_20);
	}
}
@media (min-width:768px) and (max-width:900px){
	.member__list{
		grid-template-columns: repeat(4,1fr);
		gap: var(--GAP_20);
	}
}
@media (min-width:415px) and (max-width:767px){
	.member__list{
		grid-template-columns: repeat(3,1fr);
		gap: var(--GAP_30);
	}
}
@media screen and (max-width: 414px){
	.member__list{
		grid-template-columns: repeat(2,1fr);
		gap: var(--GAP_20);
	}
}
/* ------------------- -------------------- */
@media screen and (min-width: 768px){
  
}
@media screen and (max-width: 767px){
  
}
/* ------------------- -------------------- */
@media screen and (min-width: 768px){
  
}
@media screen and (max-width: 767px){
  
}
































