@charset "utf-8";
/* 投稿一覧 */
.wrapper main {
  flex: 1;
}
.wrapper {
  display: flex;
}
h1.sec--ttl {
  color: var(--BLUEGRAY);
  font-weight: bold;
  font-size: clamp(50px,6vw,60px);
  font-family: var(--FF_EN);
  display: flex;
  letter-spacing: .05em;
  line-height: .8;
}
h1.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;
	font-weight: 400;
}
.post__list{
	display: grid;
	margin-bottom: clamp(40px,5vw,60px);
}
.post__list--wrap {
  position: relative;
}
.post__list--info {
	display: flex;
	align-items: center;
  margin-bottom: 5px;
}
.post__list--info time {
  margin-right: 1em;
  font-size: var(--FZ_12);
  letter-spacing: .05em;
}
.post__list--cat a {
  background: var(--BEIGE);
  padding: 1px 12px 2px;
  line-height: 1;
  font-size: var(--FZ_11);
  border-radius: var(--COMMON_BDRS_S);
}
h3.post__list--ttl {
  font-size: var(--FZ_16_CONST);
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 5px;
}
h3.post__list--name {
  font-size: var(--FZ_16_CONST);
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 5px;
  padding-bottom: 5px;
  text-align: center;
  border-bottom: 2px solid;
}
.post__list--txt {
  font-size: var(--FZ_14_CONST);
  text-align: justify;
}
.post__list--tag{
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--GAP_10);
}
.post__list--tag li a{
  font-size: var(--FZ_14);
  color: var(--BLUEGRAY);
  font-weight: bold;
}
.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;
}
.post__list--type {
  position: absolute;
  left: 0;
  top: 0;
  background: var(--YELLOW);
  padding: 5px 10px;
  line-height: 1;
  font-size: var(--FZ_16);
  z-index: 2;
}
	.profile_post .post__list--img img {
			padding: 12% 10% 8%;
			box-sizing: border-box;
			border: 1px solid var(--TGRAY);
	}

@media screen and (min-width: 901px){
	.post__list.list--mag,
	.post__list.list--blog{
		grid-template-columns: repeat(3,1fr);
		gap: var(--GAP_40) var(--GAP_30);
	}
}
@media (min-width:768px) and (max-width:900px){
	.post__list.list--mag,
	.post__list.list--blog{
		grid-template-columns: repeat(2,1fr);
		gap: var(--GAP_40) var(--GAP_30);
	}
}
@media screen and (min-width: 768px){
	.wrapper {
	  gap: var(--GAP_40);
	}
	h1.sec--ttl {
	  margin-bottom: var(--GAP_80);
	}
	.post__list--info {
	  align-items: baseline;
	}
	.post__list--img {
	  margin-bottom: 5px;
	}
	.sec--btn a:hover {
    max-width: 240px;
    transition: .3s;
    opacity: 1;
	}
	.post__list.list--member{
		grid-template-columns: repeat(2,1fr);
		gap: var(--GAP_40) var(--GAP_30);
	}
}
@media (min-width:415px) and (max-width:767px){
	.post__list{
		grid-template-columns: repeat(2,1fr);
		gap: var(--GAP_40_CONST) var(--GAP_40);
	}
	.post__list--img {
	  margin-bottom: 10px;
	}
}
@media screen and (max-width: 414px){
	.post__list{
		grid-template-columns: repeat(1,1fr);
		gap: var(--GAP_40);
	}
	.post__list--img {
	  margin-bottom: 10px;
	}
}
@media screen and (max-width: 767px){
	.wrapper {
		flex-direction: column;
	  gap: var(--GAP_60);
	}
	.nav-arrow select {
    width: 100%;
    padding: 7px 0 5px;
    border-radius: 4px;
    font-size: 14px;
	}
	h1.sec--ttl {
	  margin-bottom: var(--GAP_60);
	}

}

/* サイドバー */
@media screen and (min-width: 768px){
	.sidebar {
	  width: 220px;
	}
	.side__sec--title {
	  background: var(--BLUEGRAY);
	  padding: 4px 1em;
	  color: var(--WHITE);
	  font-weight: 500;
	  text-align: center;
	}
	.side__sec--list {
    padding: 10px 0;
	}
  .side__sec--list li a {
	  display: block;
    font-size: var(--FZ_16);
    padding: 5px .5em;
    border-bottom: 1px dashed var(--TGRAY);
	}
  .side__sec--list li a:hover{
	  background: var(--BGGRAY);
	  opacity: 1;
	}
}
@media (min-width:415px) and (max-width:767px){
	.sp-dd {
	  gap: var(--GAP_40);
	}
}
@media screen and (max-width: 414px){
	.sp-dd {
	  gap: var(--GAP_20);
	}
}
@media screen and (max-width: 767px){
	.sp-dd {
    display: flex;
    justify-content: space-between;
	}
	.sp-select{
		width: 50%;
	}
	.nav-arrow select {
    width: 100%;
    padding: 7px 0 5px;
    background: var(--BLUEGRAY);
    border: 0;
    color: var(--WHITE);
    text-align: center;
	}

}

/* 投稿詳細 */
.singleP--ttl{
  color: var(--BLUEGRAY);
  font-weight: 600;
  font-size: clamp(26px,6vw,28px);
  line-height: 1.2;
  margin-bottom: .5em;
}
.singleP--tag{
	display: flex;
	gap: var(--GAP_10);
}
.singleP h2 {
  font-size: var(--FZ_20);
  padding-left: .5em;
  border-left: 10px solid var(--BLUEGRAY);
  line-height: 1.4;
  margin-bottom: .5em;
}
.singleP h3{
  font-size: var(--FZ_20);
  line-height: 1.4;
  margin-bottom: .5em;
}
.singleP figure {
  margin: 0;
}
.singleP--magazine img,
.singleP--blog img{
	margin-bottom: 2em;
}
.singleP p {
  font-size: var(--FZ_16);
	margin-bottom: 2em;
}
@media screen and (min-width: 768px){
	.singleP--tag{
		margin-bottom: var(--GAP_60);
	}
}
@media screen and (max-width: 767px){
	.singleP--tag{
		margin-bottom: var(--GAP_40);
	}
}

/* 企業詳細 */
.singleP--logo {
  width: 70%;
  margin: 0 auto 1em;
}
h1.singleP--prottl {
  text-align: center;
  font-size: var(--FZ_28);
  padding: 1em 0;
  border-top: 1px solid;
  border-bottom: 1px solid;
  line-height: 1.4;
  margin-bottom: .5em;
	font-weight: 600;
}
.singleP--type {
  text-align: center;
  margin-bottom: 2em;
  font-size: var(--FZ_20);
}
.singleP--type span {
  background: var(--BEIGE);
  padding: 3px 20px;
  font-size: var(--FZ_14);
  border-radius: 3px;
  margin-right: .5em;
  display: inline-block;
  line-height: 1.2;
}
.singleP--proimg {
  margin-bottom: 3em;
}
h2.singleP--subttl {
	font-size: var(--FZ_20);
	font-weight: 600;
  border-left: none;
  margin-bottom: .5em;
}
h2.singleP--subttl::before{
	content: "";
  background: var(--YELLOW);
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 .5em 2px 0;
}
.singleP--txt {
  font-size: var(--FZ_14);
  padding-left: .5em;
  margin-bottom: 3em;
}
.singleP--gallery {
  margin-bottom: 3em;
  display: grid;
}
.singleP__info {
  border: 1px solid var(--TGRAY);
  width: 100%;
  border-collapse: collapse;
}
.singleP__info td,
.singleP__info th{
	padding: 10px 15px;
	vertical-align: middle;
	border-bottom: 1px solid var(--TGRAY);
	font-weight: 400;
	line-height: 1.4;
}
.singleP__info th{
	background: var(--BGGRAY);
}
.profile_sns--list {
  display: flex;
  gap: var(--GAP_10_CONST);
}
.profile_sns--list li {
  width: 25px;
  height: 27px;
}
.profile_sns--list li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a.hp--link{
	text-decoration: underline;
}
.matching--btn a {
  width: 100%;
  max-width: 600px;
  text-align: center;
  display: block;
  margin: 0 auto 2em;
  letter-spacing: .2em;
  background: var(--BTN);
  color: var(--WHITE);
  padding: 15px;
  border-radius: var(--COMMON_BDRS_M);
  font-size: var(--FZ_22);
}
.matching--txt {
  font-size: var(--FZ_16);
  color: var(--BTN);
  font-weight: bold;
  margin-bottom: 1em;
}
@media screen and (min-width: 901px){
	.singleP--gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media screen and (min-width: 768px){
	.singleP--logo {
	  max-width: 250px;
	}
	.singleP--profile .singleP--ttl,
	.singleP--support .singleP--ttl{
		text-align: center;
	}
	.singleP__info th{
		width: 30%;
	}
	.singleP__info td{
		width: 70%;
	}
	.singleP__info th {
    width: 35%;
    border-right: 1px solid var(--TGRAY);
  }
	.singleP--support .singleP__info{
		margin-bottom: var(--GAP_60);
	}
	.matching--txt {
	  text-align: center;
	}

}
@media screen and (max-width: 900px){
	.singleP--gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media screen and (max-width: 767px){
	.singleP__info td,
	.singleP__info th{
		display: block;
	}
	.singleP--support .singleP__info{
		margin-bottom: var(--GAP_40);
	}
}

/* マッチング一覧 */
h2.sec--subttl {
  font-size: var(--FZ_22);
  margin-bottom: 1em;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--LGRAY);
}
.matching--wrap {
  background: var(--BGGRAY);
	margin-bottom: clamp(60px,5vw,80px);
  border-radius: var(--COMMON_BDRS_S);
}
.matching__flow {
  display: flex;
  flex-wrap: wrap;
  gap: var(--GAP_20);
	margin-bottom: clamp(40px,5vw,60px);
}
.matching__flow li:nth-of-type(odd) {
  background: var(--WHITE);
  border-radius: var(--COMMON_BDRS_S);
  padding: 10px 1em;
}
.matching__note li {
  list-style-type: square;
  margin-left: 1.5em;
  line-height: 2;
  font-size: var(--FZ_16);
}
.matching__flow--ttl {
  font-size: var(--FZ_18);
  font-weight: 600;
  margin-bottom: 5px;
}
.matching__flow--txt {
  font-size: var(--FZ_15);
  text-align: justify;
}
@media (min-width:768px) and (max-width:900px){
	.matching__flow li:nth-of-type(odd) {
	  width: 44%;
	}
}
@media screen and (min-width: 900px){
	.matching__flow li:nth-of-type(odd) {
	  width: 20%;
	}
}
@media screen and (min-width: 768px){
	.matching--wrap {
	  padding: 2em;
	}
	.matching__flow {
	  display: flex;
	  flex-wrap: wrap;
	  gap: var(--GAP_20);
	}
	.matching__flow li:nth-of-type(even) {
	  width: 2%;
	}
	.matching__flow--arrow {
	  background: var(--BLUEGRAY);
	  height: calc(tan(60deg)* 40px / 2);
	  width: 20px;
	  clip-path: polygon(0 0, 100% 50%, 0 100%);
	}

}
@media screen and (max-width: 767px){
	.matching--wrap {
	  padding: 1em 7%;
	}
	.matching__flow {
	  flex-direction: column;
	}
	.matching__flow--arrow {
	  background: var(--BLUEGRAY);
	  background-position: center center;
	  height: calc(tan(60deg)* 20px / 2);
	  width: 30px;
	  clip-path: polygon(0 0, 100% 0, 50% 100%);
	}
}

/* ページナビ一覧 */
.wp-pagenavi {
  font-size: 18px;
  gap: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#pnavi > span.pages{
	display: block;
	text-align: center;
	margin-top: 10px;
}
.wp-pagenavi > *{
	aspect-ratio: 1/1;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-weight: normal;
	border-radius: var(--COMMON_BDRS_S);
}
.wp-pagenavi a {
  text-decoration: none;
  padding: 8px 10px;
  margin: 3px;
  color: #222;
	border: 1px solid var(--TGRAY);
	border-radius: var(--COMMON_BDRS_S);
}
.wp-pagenavi .current{
	background-color:var(--BLUEGRAY);
	border: 1px solid var(--BLUEGRAY);
	color: var(--WHITE);
  padding: 8px 10px;
}
#pnavi a.previouspostslink,
#pnavi a.nextpostslink{
	border: 1px solid var(--BLUEGRAY);
	display: flex;
	justify-content: center;
	text-align: center;
	align-items: center;
	position: relative;
}
#pnavi a.previouspostslink .navi-prev,
#pnavi a.nextpostslink .navi-next{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#pnavi a.previouspostslink .navi-prev::before,
#pnavi a.nextpostslink .navi-next::before{
	content: "";
	display: inline-block;
  width: 8px;
  height: 12px;
  vertical-align: text-bottom;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#pnavi a.previouspostslink .navi-prev::before{
	background: url(/asset/images/common/arrow_left.svg) no-repeat;
	background-size: contain;
}
#pnavi a.nextpostslink .navi-next::before{
	background: url(/asset/images/common/arrow_right.svg) no-repeat;
	background-size: contain;
}
.wp-pagenavi > *{
	width: 45px;
}
@media screen and (min-width: 768px){
	.wp-pagenavi{
		font-size: 18px;
		gap: 10px;
	}
	#pnavi {
		margin: 70px auto 0;
	}
}
@media (hover: hover){
	.wp-pagenavi a:hover{
		background-color:var(--BGGRAY);
	}
}
@media screen and (max-width: 767px){
	.wp-pagenavi{
		font-size: 16px;
		gap: 5px;
	}
	#pnavi {
		margin: 40px auto 0;
	}
}

/* ページナビ詳細 */
#wp-single__link {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
#wp-single__link p {
  font-size: var(--FZ_14);
  margin-bottom: 0;
}
#wp-single__link__toArchive {
  text-align: center;
}
#wp-single__link__next {
  text-align: right;
}
#wp-single__link a {
  font-weight: bold;
  text-decoration: underline;
}

/* ターム一覧 */
h1.tarm--ttl {
  color: var(--BLUEGRAY);
  font-weight: bold;
  font-size: clamp(35px,6vw,45px);
	font-family: var(--FF_BASE);
  display: flex;
  line-height: 1;
}
h1.tarm--ttl span {
  color: var(--GRAY);
	font-size: var(--FZ_10);
	writing-mode: vertical-rl;
	letter-spacing: .3em;
  line-height: 1.5;
	margin-right: 1em;
	font-weight: 400;
}
@media screen and (min-width: 768px){
	h1.tarm--ttl {
	  margin-bottom: var(--GAP_80);
	}
}
@media screen and (max-width: 767px){
	h1.tarm--ttl {
	  margin-bottom: var(--GAP_60);
	}

}
