@charset "UTF-8";
/*
Theme Name: 北海道まちづくり促進会
Author: 北海道まちづくり促進会
Requires at least: 6.8
Tested up to: 6.8.2
Requires PHP: 5.6
Version: 1.0.0
*/
:root {
  --text: #282828;
  --pale-text: #5a5a5a;
  --link: #282828;
  --primary: #333333;
  --secondary: #414141;
  --white: #fff;
  --gray: #969696;
  --bg-black: #282828;
  --bg-darkgray: #d3d2d0;
  --bg-gray: #dbdbd9;
  --bg-white: #fff;
  --border-gray: #e6e6e6;
}
html {
  font-size: 100%;
}
body {
  color: var(--text);
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 100%;
  background-color: #fff;
  color: var(--text);
  font-size: 14px;
  line-height: 2em;
  margin: 0;
}
a {
  text-decoration: none;
}
a:hover {
  opacity: 0.6;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
ul, ol {
  padding-left: 1.5em;
}
h1,h2,h3,h4,h5,h6 {
  margin-bottom: .5em;
  padding: 0;
  line-height: 1.3;
  font-weight: bold;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}
blockquote {
  border-left: 5px solid var(--primary);
  margin: 0 0 1.75em;
  padding: 0.1em 0 0 1.5rem;
  color: #666;
}

/**
 *  Table
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 0 1.75em;
  table-layout: fixed;
  width: 100%;
}
table, caption, th, td {

}
th {
  font-weight: bold;
}
th, td {
  border-width: 0 1px 1px 0;
  padding: 0.5rem 1.5rem;
}
/* table-1 */
.table-1 {
  width: 100%;
}
.table-1 th {
  width: 30%;
}
@media only screen and (max-width: 480px) {
  th, td {
    border-width: 0 0 1px;
  }
  /* table-1 */
  .table-1 th,
  .table-1 td {
    width: 100%;
    display: block;
  }
}
.for-pc {
  display: block;
}
.for-sp {
  display: none;
}

address {
  font-style: normal;
}
.bg-black    { background-color: var(--bg-black); }
.bg-darkgray { background-color: var(--bg-darkgray); }
.bg-white    { background-color: var(--bg-white);}
.text-white  { color: var(--bg-white);}

article .inner {
  margin: auto;
  width:100%;
  max-width: 1080px;
  box-sizing: border-box;
  padding: 35px 0 90px;
}
article section {

}
section .inner {
  margin: auto;
  width: 100%;
  max-width: 1080px;
  box-sizing: border-box;
  padding: 100px 5%;
}
section h3 {
  font-size: 20px;
  font-weight: normal;
  color: var(--primary);
}

/**
 *  inview
 */
.fadeIn {
  opacity: 0;
  transition: 1.5s;
}
.fadeIn.is-show {
  opacity: 1;
}

/**
 *  TOP：loader
 */
.loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 555;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader img {
  width: 120px;
  height: auto;
}
@media screen and (max-width: 480px) {
  .loader img {
    width: 96px;
    height: auto;
  }
}
/**
 *  Header
 */
#header {
  position: fixed;
  top: 0;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: #fff;
  z-index: 10;
}
#header.with-scroll {
  box-shadow:rgb(0 0 0 / 20%) 0px 2px 4px -1px,
             rgb(0 0 0 / 14%) 0px 4px 5px 0px,
             rgb(0 0 0 / 12%) 0px 1px 10px 0px
}

.header-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1080px;
  margin: auto;
}

/* Logo */
#header .brand-block {
  width: 310px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .brand-block .catch-text {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
}
#header .logo {
  width: 100px;
  height: auto;
  margin-block-start: 0;
  margin-block-end: 0;
}
#header .logo a {
  display: block;
  height: 100%;
}

/* Navi */
.nav-wrap {
  display: flex;
  justify-content: space-between;
}
#nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
#global-menu {
  display: flex;
  align-items: center;
  height: 100%;
  z-index: 1;
}
#global-menu > li {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 13px;
  margin: 0 0.5em;
}
#global-menu > li.menu-item-has-children > a::after {
  content: '';
  position: absolute;
  top: 45%;
  right: 10px;
  width: 5px;
  height: 5px;
  border-top: 2px solid var(--link);
  border-right: 2px solid var(--link);
  transform: rotate(135deg);
}
#global-menu > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  color: var(--text);
  text-align: center;
  padding: 0 1em;
  line-height: 2em;
  word-break: keep-all;
  white-space: nowrap
}
#global-menu > li > a:hover {
  color: var(--link);
}
#global-menu > li.members-menu a {
	color: #fff;
	background-color: #666;
  box-sizing: border-box;
}
_::-webkit-full-page-media, _:future, :root #global-menu > li.members-menu a {
  padding-top: 2px;
}

/* Sub menu */
#global-menu .sub-menu {
  position: absolute;
  display: none;
  top: 80px;
  left: 0;
  width: auto;
  box-sizing: border-box;
}
#global-menu .sub-menu li {
  box-sizing: border-box;
  word-break: keep-all;
  background-color: var(--primary);
}
#global-menu .sub-menu li a {
  position: relative;
  display: block;
  height: 100%;
  padding: 16px;
  color: #fff;
  text-decoration: none;
  background-color: var(--primary);
}
#global-menu .sub-menu li a:hover {
  background-color: var(--link);
}

/* Menu icon */
#menu-icon {
  background: transparent;
  cursor: pointer;
  width: 50px;
  aspect-ratio: 1/1;
  margin-left: auto;
  position: relative;
  z-index: 10;
  display: none;
}
#menu-icon span {
  display: inline-block;
  background: #000;
  width: 50%;
  height: 2px;
  transition: all .4s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
#menu-icon span:nth-child(1) { top: 30%; }
#menu-icon span:nth-child(2) { top: 50%; }
#menu-icon span:nth-child(3) { top: 70%; }
#menu-icon.active span:nth-child(1) {
  top: 50%;
  left: 25%;
  width: 50%;
  transform: rotate(-45deg);
}
#menu-icon.active span:nth-child(2) {
  opacity: 0;
}
#menu-icon.active span:nth-child(3) {
  top: 50%;
  left: 25%;
  width: 50%;
  transform: rotate(45deg);
}
main {
  margin-top: 80px;
}


/* パンくずリスト */
.breadcrumb {
  height: 20px;
  list-style: none;
  padding: 0;
  margin :0;
  font-size: 9px;
}
.breadcrumb li {
  padding: 5px 0;
  display: inline;
}
.breadcrumb li a {
  color: var(--pale-text);
  text-decoration: none;
}
.breadcrumb li.current a {
  color: var(--gray);
  text-decoration: none;
}
.breadcrumb li + li:before {
  content: " | ";
  margin:.5em;
}


/**
 *  footer
 */
#footer {
  background-color: var(--bg-gray);
  padding-bottom: 20px;
}
#footer .inner {
  box-sizing: border-box;
  width: 100%;
  margin: auto;
  padding: 30px 0;
}
#footer .logo {
  width: 120px;
  margin: 0 auto;
}
#footer .logo img {
  width: 100%;
  height: auto;
}

#footer .copyright {
  margin: auto;
  box-sizing: border-box;
  padding: ;
  font-size: 0.6rem;
  text-align: center;
}


/**
 *  トップ：Mainvisual
 */
#mainvisual {
  position: relative;
}
#mainvisual .inner {
  position: relative;
  padding: 85px 40px 0;
}
#mainvisual img {
  width: 100%;
  height: auto;
}
#mainvisual img.overlap {
  position: absolute;
  height: 98% !important;
  width: auto !important;
  left: 0;
  bottom: 10px;
  z-index: 2;
}
#mainvisual img.overlap-text {
  position: absolute;
  width: 130px;
  height: auto;
  left: 23%;
  top: 90px;
  z-index: 2;
}
.swiper-horizontal {
	height: calc( 100vh - 80px );
	overflow: hidden;
}

#mainvisual .mainvisual-text {
  position: absolute;
  top: 240px;
  left: 165px;
  margin: auto;
  padding:0;
}
#mainvisual .mainvisual-text .title {
  color: #fff;
  font-size: 42px;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}
#mainvisual .mainvisual-text .sub-title {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.mainvisual-message {
  width: 100%;
  text-align: center;
}
.mainvisual-message h2 {
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 48px;
  letter-spacing: 0.2em;
}
.mainvisual-message .text-block {
  font-size: 18px;
  line-height: 2.2em;
}
#mainvisual .mainvisual-message .inner {
  margin: auto;
  width: 100%;
  max-width: 1080px;
  box-sizing: border-box;
  padding: 100px 0;
}
@media screen and (max-width: 1024px){
	.swiper-horizontal {
		height: unset;
		overflow: unset;
	}
}
@media screen and (max-width:768px) {
  .mainvisual-message h2 {
    font-size: 36px;
  }
  .mainvisual-message .text-block {
    font-size: 14px;
  }
	#mainvisual img.overlap-text {
	  width: 100px;
	  height: auto;
	  left: 28%;
	  top: 40px;
	}
}
@media screen and (max-width: 480px){
  .mainvisual-message {
    background-size: 680px auto;
    background-position: left 30px top 0;
  }
  #mainvisual .mainvisual-message .inner {
    padding: 40px 5%;
  }
  .mainvisual-message h2 {
    margin-bottom: 20px;
    font-size: 28px;
  }
  #mainvisual .mainvisual-text .title {
    font-size: 32px;
  }
  #mainvisual .mainvisual-text .sub-title {
    font-size: 18px;
  }
  .mainvisual-message h2 {
    font-size: 28px;
  }
  .mainvisual-message .text-block {
    text-align: left;
  }

	.swiper {
	  height: calc( 100vh - 60px );
	}
	.swiper-slide {
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  height: calc( 100vh - 60px );
	  overflow: hidden;
	}

	#mainvisual .swiper-slide img {
	  height: 100%; /* 画像の縦を画面にフィット */
	  width: auto;   /* 横幅は自動（はみ出してもOK） */
	  object-fit: cover;
	}
}

/* トップ：WITH LAND ラインナップ */
.with-land-list {
  display: flex;
  justify-content: center;
  padding-bottom: 80px;
  background-color: var(--bg-black);
}
.with-land-list a {
  display: block;
  width: 32.33%;
  background-color: var(--white);
}
.with-land-list a img {
}
.with-land-list a:hover {
	opacity: 1;
}
.with-land-list a img:hover {
	opacity: 0.6;
}
.with-land-list a:nth-child(2) {
	margin: 0 1.5%;
}
.with-land-list a img {
  width: 100%;
  height: auto;
}
@media screen and (max-width:480px) {
  .with-land-list {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .with-land-list a,
  .with-land-list a:nth-child(2) {
    width: 100%;
    margin: 0 0 5px;
  }
}

/* トップ：お知らせ */
#news .inner {
  padding: 100px 5%;
}
.news-block {
  display: flex;
  justify-content: space-between;
}
.news-block .news-text-block {
  width: 33%;
}
.news-block .blog-posts {
  width: 67%;
}
.news-block .post-block .post-title {
  margin-bottom: 1em;
}
.news-block .post-meta .post-cat {
  background-color: var(--text);
}
.news-block .post-meta {
  border-bottom: 1px solid var(--text);
}
.news-block .post-meta .post-cat {
  padding: 0 1.5em;
}
.news-block .post-meta .post-date {
  padding: 0 1em;
}
@media screen and (max-width:1023px) {
  #news .inner {
    padding: 0;
  }
	.news-block {
		flex-direction: column;
		flex-wrap: wrap;
    padding: 60px 5%;
	}
	.news-block > * {
		width: 100% !important;
	}
	.news-block .news-text-block {
	  text-align: center;
	  margin-bottom: 3em;
	}
}


/* トップ：開発実績・お客様の声 */
#result .inner {
  padding: 100px 5%;
}
#message .inner {
  padding: 100px 5% 0;
}
#result {
	background-color: var(--bg-black);
	color: var(--white);
}
#result .more-link a {
	background-color: var(--white);
	color: var(--text);
}
#result .more-link a::before {
    border-top: solid 1px var(--text);
    border-right: solid 1px var(--text);
}
.result-block,
.message-block {
  display: flex;
  justify-content: space-between;
}
.message-block {
  flex-direction: row-reverse;
}
.result-img-block,
.message-img-block {
  display: flex;
  align-items: center;
  height: auto;
  box-sizing: border-box;
}
.result-img-block {
  width: 50%;
}
.message-img-block {
  width: 40%;
}
.result-img-block img,
.message-img-block img {
  width: 100%;
  height: auto;
}
.message-img-block img {
	margin-top: -80px;
}
.result-text-block {
	width: 40%;
  box-sizing: border-box;
	padding: 0;
}
.message-text-block {
  width: 50%;
  box-sizing: border-box;
	padding: 0;
}
.news-text-block > h3,
.result-text-block > h3,
.message-text-block > h3 {
  color: var(--text);
  font-weight: bold;
  font-size: 40px;
  margin-top: 0;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.result-text-block > h3 {
  color: var(--white);
}
.massage-img-block {
  padding: 0 0 0 8%;
  align-items: end;
  margin-bottom: -90px;
}
@media screen and (max-width:1023px) {
	.massage-img-block {
		margin-bottom: 0;
		margin: 0 auto 40px;
	}
	.message-img-block img {
		width: 60%;
		height: auto;
		margin: auto;
	}
}
.result-text,
.message-text {
  font-size: 14px;
  line-height: 2em;
  margin-bottom: 1.5rem;
  text-align: left;
}
.title-en {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
}
.more-link {
  position: relative;
  display: block;
  width: 260px;
}
.more-link a {
  display: block;
  box-sizing: border-box;
  padding: 0.8em 1em;
  width: 100%;
  font-size: 12px !important;
  letter-spacing: 0.2em;
  color: var(--white);
  background-color: var(--primary);
  text-align: center;
  font-size: 14px;
  line-height: 1.5em;
}
.more-link a::before {
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 1px var(--white);
  border-right: solid 1px var(--white);
  transform: rotate(45deg);
  position: absolute;
  top: 13px;
  right: 15px;
}
@media screen and (max-width:1023px) {
  #result .inner, #message .inner {
    padding: 0;
  }
  .result-block,
  .message-block {
    flex-wrap: wrap;
    flex-direction: column;
    padding: 60px 5%;
    text-align: center;
  }
  .result-block > *,
  .message-block > * {
    width: 100% !important;
  }
  .result-block .result-img-block,
  .message-block .message-img-block {
    margin: 0 auto 40px;
  }
  .result-text-block
  .message-text-block {
    padding: 0;
  }
  .result-text-block > h3,
  .message-text-block > h3 {
    margin-top: 1rem;
    font-size: 36px;
    text-align: center;
  }
  .result-text, .message-text {
    text-align: center;
  }
  .more-link {
    margin: auto;
  }
}
@media screen and (max-width:480px) {
  .result-text-block > h3,
  .message-text-block > h3 {
    font-size: 28px;
  }
  .result-text,
  .message-text {
    margin-bottom: 1.5em;
  }
  .result-text br.for-pc,
  .message-text br.for-pc {
    display: none;
  }
}

/* トップ：正規会員メーカー */
#maker .inner {
  padding: 100px 5%;
}
#maker h3 {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #333;
  margin-top: 80px;
}
#maker h3.top0 {
  margin-top: 0;
}

#maker .sub-text {
  text-align: center;
  font-size: 18px;
  margin-bottom: 60px;
}
.maker-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  box-sizing: border-box;
  padding: 1em 0;
}
.maker-list.border-bottom {
	border-bottom: 1px solid #333;
}
.maker-list > * {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 33%;
  box-sizing: border-box;
  padding: 30px;
  height: 120px;
}
.maker-list > a:not(:last-child) {
	border-right: 1px solid var(--text);
}
.maker-list > a img {
  height: auto;
}
.maker-list > a img.w100 {  }
.maker-list > a img.w90  { width: 90%; }
.maker-list > a img.w80  { width: 80%; }
.maker-list > a img.w70  { width: 70%; }
.maker-list > a img.w60  { width: 60%; }
.maker-list > a img.w50  { width: 50%; }

#maker .more-link {
  margin: 60px auto 0;
}
@media screen and (min-width: 481px) {
  .maker-list > a img {
    max-width: 220px;
  }
}
@media screen and (max-width: 1023px) {
  #maker .inner {
    padding: 60px 5%;
  }
}
@media screen and (max-width:767px) {
  #maker h3 {
    font-size: 36px;
  }
  #maker .sub-text {
    font-size: 14px;
    margin-bottom: 30px;
  }
  #maker h3 {
    font-size: 28px;
    margin-top: 40px;
  }
  .maker-list {
    justify-content: center;
    flex-direction: column;
    padding: 0;
  }
  .maker-list > a {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
  }
  .maker-list > * {
    padding: 30px 1em;
    height: auto;
  }
  .maker-list > a:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--text);
  }
}
@media screen and (max-width:480px) {
  .maker-list > a img.w100 { max-width: 65%; }
  .maker-list > a img.w90  { max-width: 59%; }
  .maker-list > a img.w80  { max-width: 52%; }
  .maker-list > a img.w70  { max-width: 46%; }
  .maker-list > a img.w60  { max-width: 39%; }
  .maker-list > a img.w50  { max-width: 33%; }
}

/**
 *  アーカイブ
 */
.archive-wrap {
	display: flex;
	justify-content: space-between;
	margin-top: 25px;
}
.members-title {
	width: 25%;
}
.members-title h1 {
	font-size: 28px;
	font-weight: bold;
	letter-spacing: 0.1em;
	margin: 0;
}
.archive-posts {
	width: 75%;
}
.post-block {
}
.post-block-s {
	margin-top: 100px;
	padding-bottom: 80px;
}
.post-block a,
.post-block-s a {
	color: #333;
	text-decoration: none;
}
.post-meta {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #666;
	margin-bottom: 1em;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0.2em;
	letter-spacing: 0.2em;
}
.post-meta ul {
	padding-left: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}
.post-meta .post-cat {
	background-color: #666;
	color: #fff;
	font-size: 15px;
	padding: 0.3em 1.5em;
	border-radius: 0 10px 0 0;
}
.post-meta .post-tag {
	padding: 0 1em;
}
.post-meta .post-date {
	padding: 0.3em 1em;
}
.post-block .post-title {
  margin-top: 10px;
  text-align: left;
  font-size: 16px;
  margin-bottom: 3em;
}
.post-block-s .post-title {
  margin: 30px 0 60px;
  text-align: left;
  font-size: 36px;
}
.with-land-list.post-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}
.post-categories li {
  display: inline-block;
  width: auto;
}
.post-categories li a {
  display: block;
  width: 100%;
  color: #FFF;
  box-sizing: border-box;
}
.blog-posts {

}
@media screen and (max-width:480px) {
  .post-block .post-date-pc { display: none; }
  .post-block .post-date-sp { display: block; }
  .post-block .post-data {
    width: 100%;
    margin-left: 0;
  }
}

/**
 *  記事ガイド
 */
.post-guide, .page-guide {
  padding-top: 80px;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  border-top: 1px dotted #ccc;
}
.post-guide > a,
.page-guide .prev-page a,
.page-guide .next-page a {
  color: var(--primary);
}
.post-guide .list_btn {
	text-align: center;
}
.post-guide .next_btn {
	text-align: right;
}
.post-guide > a {
  width: 7em;
}
.page-guide {
	font-size: 1em;
}
.page-guide .prev-page,
.page-guide .next-page {
	line-height: 1;
  background-repeat: no-repeat;
  background-size: contain;
}
.page-guide .prev-page:hover,
.page-guide .next-page:hover {
	background-color:rgba(255,255,255,0.5);
	background-blend-mode:lighten;
}
.page-guide .prev-page a {
	padding-left: 1.7em;
}
.page-guide .next-page a {
	padding-right: 1.7em;
}
.page-guide .prev-page {
  background-image: url(images/arrow-prev.png);
  background-position: center left;
}
.page-guide .next-page {
	text-align: right;
  background-image: url(images/arrow-next.png);
  background-position: center right;
}

/**
 *  ページナビ
 */
.wp-pagenavi {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi a,
.wp-pagenavi span,
.wp-pagenavi .page {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  padding: 0;
  margin: 0 5px;
  border-radius: 50%;
  background-color: var(--bg-gray);
  color: var(--primary);
  text-decoration: none;
  border: none;
  line-height: 1;
  font-size: 12px;
}
.wp-pagenavi span.current {
  color: var(--white);
  background-color: var(--primary);
  border-color: var(--bg-gray);
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  background-color: transparent;
  font-size: 24px;
  color: var(--primary);
  padding-bottom: 0.3em;
  box-sizing: border-box;
}
.wp-pagenavi .extend {
  display: none;
}

@media screen and (max-width: 767px) {
  .wp-pagenavi span,
  .wp-pagenavi .page {
    padding: 0.3rem 0.6rem;
      margin: 0 5px;
  }
}


/**
 *  ページ
 */
.page-header-wrap {
	width: 100%;
	padding: 40px 5% 10px;
	box-sizing: border-box;
}
.page-header {
  width: 100%;
  max-width: 440px;
  margin: auto;
  text-align: center;
}
.page-header h2 {
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1em;
  margin-bottom: 0;
  text-transform: uppercase;
  font-family: "Noto Sans JP", sans-serif;
}
.page-header h2 .ja {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
.page-header h3 {
	font-size: 22px;
}
.page-header h2 .gray {
  color: #bbb;
}
.page-header h2 .ja {
  display: block;
  font-size: 16px;
  padding: 1em 0;
}
.error404 .page-header {
	max-width: 880px;
}
.error404 .page-header > * {
	text-align: center;
}
@media screen and (max-width:768px) {
	.page-header-wrap {
		padding: 40px 5% 30px;
	}
	.page-header h2 {
		font-size: 28px;
	}
	.page-header h3 {
		font-size: 16px;
	}
}

@media screen and (max-width:768px) {
	.error404 .section-header .copy {
		font-size: 20px;
	}
}

/**
 *	お知らせ：NEWS
 */
.post-type-archive-news .page-header-wrap,
.single-news .page-header-wrap {
	background-color: var(--bg-gray);
}
.category .archive-wrap,
.post-type-archive-news .archive-wrap {
	justify-content: center;
}
.single-news .post-block-s {
	margin-top: 25px;
}

/**
 *	お客様の声：VOICE
 */
.voice-wrap {
  margin-top: 100px;
  padding-bottom: 80px;
  display: flex;
  justify-content: space-between;
}
.voice-wrap:first-child {
	margin-top: 30px;
}
.voice-wrap.row-reverse {
  flex-direction: row-reverse;
}
.voice-text {
  width: 55%;
}
.voice-img {
  position: relative;
  display: flex;
  width: 40%;
}
.voice-img img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 85%;
  height: auto;
}
.row-reverse .voice-img img {
  right: unset;
  left: 0;
}
.voice-text h3 {
  background-color: var(--text);
  color: var(--white);
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 0.5em;
  padding: 0 0.8em;
  line-height: 2em;
}
.voice-text h4 {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 0.5em;
}
.voice-text h4:not(:first-child) {
  margin-top: 2em;
}
.voice-num {
  width: 120px;
  height: auto;
}
@media screen and (max-width:768px) {
  .voice-wrap {
    margin-top: 60px;
    padding-bottom: 60px;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
  }
  .voice-text, .voice-img {
    width: 100%;
  }
  .voice-wrap.row-reverse {
    flex-direction: column;
  }
  .voice-img {
    text-align: center;
  }
  .voice-img img {
    position: relative;
    left: unset;
    right: unset;
    bottom: unset;
    width: 60%;
    margin: auto;
  }
  .voice-num {
    width: 80px;
  }
}
@media screen and (max-width:480px) {
  .voice-text h3 {
    font-size:18px;
  }
}

/**
 *	開発実績：result
 */
body.result {
	background-image: url(images/bg-result-left.png);
	background-repeat: repeat-y;
	background-size: contain;
	background-position: top left;
}
body.result main {
	background-image: url(images/bg-result-right.png);
	background-repeat: repeat-y;
	background-size: contain;
	background-position: top right;
}
.result-year-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 440px;
  margin: auto;
  padding: 80px 0 50px;
  border-bottom: 1px solid #333;
}
.result-year-wrap:first-child {
  margin-top: 60px;
  padding: 0 0 50px;
}
.result-year {
  width: 65%;
  height: auto;
  margin: 0 auto 30px;
}
.result-info {
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width:768px) {
  .result-year-wrap {
    padding: 40px 0 30px;
    border-bottom: 1px solid #333;
  }
  .result-year-wrap:first-child {
    margin-top: 0;
    padding: 0 0 30px;
  }
  .result-info {
    font-size: 16px;
  }
}
@media screen and (max-width:480px) {
	body.result .page-header-wrap {
		padding: 40px 20% 30px;
	}
  .result-year-wrap {
  	width: 70%;
  }
  .result-info {
    font-size: 13px;
  }
}

/**
 *	概要：overview
 */
.page-overview .page-header-wrap {
	background-color: var(--bg-gray);
}
.overview-table {
	border-collapse: collapse;
	width: 100%;
	max-width: 640px;
	margin: 60px auto 0;
}
.overview-table th, .overview-table td {
	padding: 1.5em 1em;
  overflow-wrap: anywhere;
  word-break: normal;
}
.overview-table th {
	width: 20%;
	min-width: 6em;
	font-weight: bold;
	text-align: left;
	vertical-align: top;
}
.overview-table th {
	font-weight: bold;
}
.overview-table ol  ul {
	list-style: disc;
}
.overview-table iframe {
	width: 100%;
	height: 260px;
}
.overview-table a {
  color: var(--text);
}
@media screen and (max-width:480px){
	.overview-table {
		margin-top: 0;
	}
	.overview-table th, .overview-table td {
		padding: 1em 0;
	}
}

/*-------------------------------------------
SP
-------------------------------------------*/

@media (max-width: 1024px) {
  body {
    font-size: 13px;
  }
  /**
   *  Header
   */
  #header {
    height: 60px;
    flex-direction: column;
  }
  #header .header-inner {
    width: 100%;
  }
  #header .brand-block {
  	width: 200px;
  }
  #header .brand-block .catch-text {
  	font-size: 10px;
  }
  #header .logo {
  	height: 32px;
    width: 59px;
    margin: 14px 10px;
  }
  #header .logo a {
    display: flex;
  }
  #header .logo img {
    position: relative;
    /* bottom: 12px;*/
  }
  #header .logo .for-pc {
    display: none;
  }
  #header .logo .for-sp {
    display: block;
  }
  #header .nav-wrap > .nav-contact {
    display: none;
  }
  #header #nav-menu .nav-contact {
    display: block;
    width: 200px;
    margin-top: 30px;
  }
  #menu-icon {
    display: block;
  }
  #header #nav-menu {
    position: fixed;
    top: 60px;
    right: -100vw;
    align-items: start;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    transition: 0.3s;
    z-index: 1;
    background-color: var(--white);
    /*
    box-shadow:rgb(0 0 0 / 20%) 0px 2px 4px -1px,
               rgb(0 0 0 / 14%) 0px 4px 5px 0px,
               rgb(0 0 0 / 12%) 0px 1px 10px 0px;
    */
  }
  #header #nav-menu > div {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: #fff;
  }
  #header #nav-menu.open {
    right: 0;
  }
  #global-menu .sub-menu {
    display: block;
    position: relative;
    top: unset;
    width: 100%;
  }
  #global-menu .sub-menu li {
    border-bottom: 1px solid #fff;
  }
  #global-menu .sub-menu li a {
    padding: 5px 10px 8px 20px;
    font-size: 0.8em;
  }
  #global-menu {
    flex-direction: column;
    width: 200px;
    height: auto;
    box-sizing: border-box;
    padding: 0 0 40px;
    margin: 30px auto 0;
    background-color: var(--white);
  }
  #header
  #global-menu > li {
    display: block;
  }
  #global-menu > li > a br {
    display: none;
  }
  #global-menu > li > a,
  #global-menu > li.menu-item-has-children > a {
    width: 100%;
    margin-right: 0;
    background-color: #fff;
  }
  #global-menu > li a {
    display: block;
    box-sizing: border-box;
    padding: 10px 0;
    text-align: center;
  }
  main {
    margin-top: 60px;
  }

  /**
   * フッター
   */
  #footer .inner {
    padding-top: 60px;
  }

  article section {
    padding-left: 0;
    padding-right: 0;
  }
  article .inner,
  section .inner,
  #footer .inner {
    padding: 30px 4%;
  }

	/**
	 *  記事：一覧
	 */
	.members-title h1 {
	    font-size: 16px;
	    letter-spacing: 0.1em;
	}
	.archive-wrap {
    margin-top: 30px;
	}

	/**
	 *  記事：single
	 */
  .post-block-s {
  	margin-top: 30px;
  }
  .post-block-s .post-title {
  	font-size: 28px;
  	margin: 1em 0;
  }
	.post-content h2 { font-size: 1.5rem; }
	.post-content h3 { font-size: 1.25rem; }
	.post-content h4 { font-size: 1.1rem; }
	.post-content h5 { font-size: 1rem; }

}

@media (max-width: 480px) {
  .for-pc {
    display: none;
  }
  .for-sp {
    display: block;
  }
  #header #nav-menu {
    max-width: 100%;
  }
  #global-menu > li a {
    /* text-align: left; */
  }
  .breadcrumb {
  	font-size: 8px;
  }

  #mainvisual .inner {
    padding: 60px 3% 0;
  }
  #mainvisual .mainvisual-message .inner {
    padding: 40px 3%;
  }
  article .inner,
  section .inner,
  #footer .inner {

  }
  #footer .logo {
    width: 96px;
  }
  article section {
    padding-top: 0;
  }
  .post-block-s {
  	padding-bottom: 40px;
  }

	/**
	 *  記事：一覧
	 */
  .archive-wrap {
  	flex-direction: column;
  	flex-wrap: wrap;
  }
  .archive-wrap > * {
  	width: 100%;
  }
  .members-title {
  	font-size: 14px;
  	text-align: center;
  	margin-bottom: 30px;
  }
  .post-meta .post-cat {
  	font-size: 13px;
  }
  .post-met .post-tag,
  .post-met .post-date {
  	font-size: 12px;
  }
  .post-block .post-title {
  	font-size: 14px;
  	margin-bottom: 2em;
  }

	/**
	 *  記事：single
	 */
  .post-block-s .post-title { font-size: 1.2rem; }
	.post-content h2 { font-size: 1.15rem; }
	.post-content h3 { font-size: 1.1rem; }
	.post-content h4 { font-size: 1rem; }
	.post-content h5 { font-size: 1rem; }

  .post-guide {
  	padding-top: 40px;
    font-size: 12px;
  }
}
