/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments



--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

@media print, screen and (max-width:899px) { 

html {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 97%;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	/*user-select: none;*/
}

/* Box sizing
--------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: #333333;
	font-family:inherit;
	font-size: 100%;
	line-height: 1.7;
	letter-spacing: 0.1em;
}
b,
strong {
	font-weight: bolder;
}

small {
	font-size: 80%;
}
blockquote {
	margin: 0 1.5em 1.6em;
	padding: 15px;
	border: 1px solid #e2e2e2;
	border-radius: 5px;
}
address {
	margin: 0 0 1.5em;
}
/* Elements
--------------------------------------------- */
body {
	background: #fff;
	overflow-x: hidden;
}
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}
dt {
	font-weight: 500;
}
dd {
	margin: 0 1.5em 1.5em;
}
/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	pointer-events: none;
}
figure {
	margin: 1.5em 0;
}
table {
	margin: 0 0 15px;
	width: 100%;
}
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}
/*PC用の要素を非表示*/
.pc_show {
	display: none !important;
}

/* Links
--------------------------------------------- */
a {
	color: #0066c0;
}
a:visited {
	color: #649ACB;
}
a:hover,
a:focus,
a:active {
	color: #014786;
	text-decoration: none;
}
a:focus {
	outline: none;
}
a:hover,
a:active {
	outline: 0;
}
/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.2em .5em 0.6em;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}
button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: inherit;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px 8px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}
select {
	border: 1px solid #ccc;
}
/*--------------------------------------------------------------
# アニメーション
--------------------------------------------------------------*/
.ourworks_animation,
.ourworks_animation-delay {
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	transition: opacity .5s, visibility 1s, transform .5s;
	transition-timing-function: ease-out;
}
/* {
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	transition: opacity .5s, visibility 1s, transform .5s;
	transition-timing-function: ease-out;
	transition-delay: .4s;
}*/

/*きっかけで付与するクラス*/
.is-inview {
	opacity: 1;
	visibility: visible;
	transform: translate(0);
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
main.contents_top {
	margin: 0 auto;
	padding-top: 50vh;
}

main .contents_page_inner {
	margin: 0 auto 50px;
	width: 100%;
	min-height: 350px;
}
main .contents_page_inner article {
	margin: 40px auto;
	width: 90%;
}
main .contents_page_inner aside {
}


/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* header
--------------------------------------------- */
.header {
	background: #fff;
}
.header_inner {
	position: relative;
	margin: 0 auto;
	padding: 0;
	z-index: 1
}
.header_inner .header_left {
	width: 100%;
	height: 100%;
}
.header_inner .header_left a {
	display: inline-block;
	position: absolute;
	top: 15px;
	left: 15px;
	width: 175px;
	height: auto;
	z-index: 1;
	padding: 18px 0;
/*	width: 100%;
	height: 100%;*/
	text-align: center;
	background: rgba(255,255,255,0.8);
}
.site_title {
	display: inline-block;
	width: 58%;
}
.site_title img {
	margin-bottom: 15px;
}
.title_sub {
	display: inline-block;
	width: 80%;
}

.header_inner .header_right {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 60vh;
}
.header_inner .header_right .slick-slider {
	height: 60vh;
	overflow-x: hidden;
	object-fit: cover;
}
.header_inner .header_right .mv_slide .slick-slide img {
	width: 100%;
    height: 60vh;
    object-fit: cover;
	object-position: 44% 50%;
}


/*中ぺージのヘッダー*/
.header {
	width: 100%;
	height: 75px;
}
.page-template-default .header_inner .header_left,
.search .header_inner .header_left,
.archive .header_inner .header_left,
.single .header_inner .header_left,
.error404 .header_inner .header_left {
	top: 10px;
    left: 20px;
}
.page-template-default .header_inner .header_left a,
.search .header_inner .header_left a,
.archive .header_inner .header_left a,
.single .header_inner .header_left a,
.error404 .header_inner .header_left a {
	padding: 0;
	width: fit-content;
}
.page-template-default .header_inner .header_left .site_title,
.search .header_inner .header_left .site_title,
.archive .header_inner .header_left .site_title,
.single .header_inner .header_left .site_title,
.error404 .header_inner .header_left .site_title {
	margin: 0 auto;
	padding:0;
	width: fit-content;
}
.page-template-default .header_inner .header_left .site_title img,
.search .header_inner .header_left .site_title img,
.archive .header_inner .header_left .site_title img,
.single .header_inner .header_left .site_title img,
.error404 .header_inner .header_left .site_title img {
	margin: 0;
	padding: 0;
	width: 60px;
	height: auto;
}
.page-template-default .header_inner .header_right,
.search .header_inner .header_right,
.archive .header_inner .header_right,
.single .header_inner .header_right,
.error404 .header_inner .header_right {
	height: 75px;
}

/*スライダー建造物名*/
.header_inner .header_left .slider-nav.slick-slider {
	position: absolute;
	right: 0;
	top: 50vh;
	padding: 12px 10px 12px 25px;
	width: 80%;
	max-width: 400px;
	font-size: clamp(85%, 2vw, 96%);
	font-weight: 600;
	background: rgba(202,227,225,0.93);
	text-align: left;
	z-index: 1;
}
.header_inner .header_left .slider-nav.slick-slider:after {
	content: "";
	position: absolute;
	top: 23px;
	left: -10px;
	background: #222;
	width: 8%;
	height: 1px;
}

/* Navigation
--------------------------------------------- */

/*ボタン外側*/
.openbtn{
	position: fixed;
	top: 8px;
	right: 8px;
	cursor: pointer;
    width: 58px;
    height:58px;
	z-index: 20;
}

/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 9px;
    height: 2px;
    border-radius: 2px;
	background: #34302F;
  	width: 70%;
  }
.openbtn span:nth-of-type(1) {
	top:16px;	
}
.openbtn span:nth-of-type(2) {
	top:29px;
	left: 4px;
}
.openbtn span:nth-of-type(3) {
	top:42px;
}
/*activeクラスが付与されると線が回転して×になる*/
.openbtn.active span {
	background: #fff;
}
.openbtn.active span:nth-of-type(1) {
    top: 20px;
    left: 9px;
    transform: translateY(6px) rotate(-45deg);
    width: 70%;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
	left: 100%;
}
.openbtn.active span:nth-of-type(3){
    top: 31px;
    left: 9px;
    transform: translateY(-6px) rotate(45deg);
    width: 70%;
}

/*ナビメニュー*/
.sp_nav {
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    z-index: 11;
    background-color: #34302F;
    width: 100%;
    height: 100%;
	overflow-y: auto;
}
.sp_nav_header .header_inner {
	position: absolute;
	top: 15px;
	left: 15px;
	width: 175px;
	height: auto;
	z-index: 1;
}
.sp_nav_header .header_inner a {
	display: inline-block;
	padding: 18px 0;
	width: 100%;
	height: 100%;
	text-align: center;
}
.sp_nav_header .site_title {
	display: inline-block;
	width: 58%;
}
.sp_nav_header .site_title img {
	margin-bottom: 15px;
}
.sp_nav_header .title_sub {
	display: inline-block;
	width: 80%;
}
.sp_nav_wrap{
    display: flex;
    /*height: 100%;*/
    justify-content: center;
	padding: 200px 0 50px;
    width: 100%;
}
.sp_nav ul.sp_nav_menu {
	margin: 0 auto;
	padding: 15px 15px 30px;
	width: 94%;
	border-radius: 6px;
}

/*リンクのスタイル*/
.sp_nav a,
.sp_nav a:hover,
.sp_nav a:active,
.sp_nav a:visited {
	color: #fff;
	text-decoration: none;
	/*font-size: 100%;*/
	font-weight: 500;
	letter-spacing: 0.08em;
}
.sp_nav ul.sp_nav_menu li {
	position: relative;
	/*padding: 0.6em 30px;*/
	font-size: clamp(105%,3vw,120%);
	border-bottom: 1px dotted #888;
}
.sp_nav ul.sp_nav_menu li:first-child {
	border-top: 1px dotted #888;
}
.sp_nav ul.sp_nav_menu li a {
	display: block;
	padding: 0.6em 30px;
}

/* TOPコンテンツ　共通のスタイル
--------------------------------------------- */
section .h2_wrapper {

}
section .h2_wrapper h2 {
	display: inline-block;
	margin: 50px 0 30px -15px;
	padding: 18px 50px 14px 40px;
	background: #fff;
	border-radius: 3px;
	box-shadow: 3px 3px 8px rgba(0,0,0,0.25);
}
section .h2_wrapper h2 img {
	width: auto;
	height: 45px;
}

.section-innerwrap {
	border-left: 1px solid rgba(52,48,47,0.8);
	margin-left: 7vw;
	padding: 10px 10px 0 0;
}


/* TOPコンテンツ（お知らせ）
--------------------------------------------- */
section.news {
	position: relative;
	padding: 0;
	background: url("images/pages/bg_news.png")repeat;
	/*background: #efefef;*/
}
section.news .section-innerwrap {
	padding-bottom: 10px;
}
ul.news_wrapper {
	flex: 1;
	margin: 0;
}
ul.news_wrapper li.news_box {
	position: relative;
	padding: 8px 1% 8px 8%;
}
ul.news_wrapper li.news_box:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 21px;
	left: 0;
	width: 5vw;
	height: 1px;
	background: rgba(52,48,47,0.8);
}

ul.news_wrapper li.news_box .title_box {
	font-size: 95%;
}

ul.news_wrapper li.news_box .title_box time.date span {
	display: inline-block;
	margin-right: 15px;
	padding: 5px 0 7px;
	width: 7em;
	font-weight: 700;
	line-height: 1em;
}
img.mark_new {
	position: relative;
	top: -.1em;
    right: 0px;
}
/*リンク色*/
ul.news_wrapper li.news_box a,
ul.news_wrapper li.news_box a:visited {
	color: #222;
	text-decoration: underline;
}
ul.news_wrapper li.news_box a:hover,
ul.news_wrapper li.news_box a:active {
	text-decoration: none;
}

/*過去一覧*/
.news_more {
	margin: 20px 14% 40px 0;
	text-align: right;
}
.news_more a {
	position: relative;
	display: inline-block;
	color: #333;
	font-size: 82%;
	font-weight: 500;
	text-decoration: none;
	transition: all .2s;
}
.news_more a:after {
	content: "";
	display: inline-block;
	position: absolute;
	right: -25px;
    bottom: -6px;
	background: url("images/pages/arrow_more.svg")no-repeat;
	width: 130px;
	height: 11px;
	transition: all .2s;
}
.news_more a:hover:after {
	right: -40px;
	transition: all .2s;
}

/* TOPコンテンツ（our works）
--------------------------------------------- */
section.ourworks {
	border-bottom: 1px solid rgba(52,48,47,0.8);
}
.ourworks_content .img_box {
	margin: 1vw 4vw 0;
	max-width: 550px;
}
.ourworks_content .txt_box {
	margin: 3vw 0 3vw 4.3vw;
	
	font-weight: 500;
}
.ourworks_content .txt_box .txtm {	
	padding-right: 2vw;
	font-size: clamp(97%,3vw,105%);
	font-weight: 400;
	margin-bottom: 40px;
}

.ourworks_content .example ul li {
	position: relative;
	margin-top: 20px;
	width: 100%;
}
.ourworks_content .example ul li a {
	display: block;
}
.ourworks_content .example ul li h3 {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 7px 1em 9px;
	color: #fff;
	font-size: 95%;
	font-weight: 600;
	line-height: 1em;
	letter-spacing: 0.12em;
	background: rgb(39, 30, 30);
}
.ourworks_content .example ul li:nth-child(odd) {
	margin-left: -17px;
}

/*コンセプトのテキストアニメーション*/
.txt_animation {
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
	margin: 40px 0;
	color: #000;
	font-size: clamp(100%,10.5vw,420%);
	font-weight: 700;
	text-transform: uppercase;
}
.txt_animation.is-active {
  --x: 0;
}
.char {
    overflow: hidden;
}
.char-text {
	display: inline-block;
	transform: translateX(var(--x, -101%));
	transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
	transition-delay: calc(0.05s * var(--char-index));
	line-height: 1em;
}
.char-text rt {
	font-size: 25%;
}
.txt_animation .no {
	display: inline-block;
	margin: 0 .5em;
	font-size: 60%;
}
.txt_animation .kachi {
	display: block;
	width: 100%;
	font-size: 80%;
	letter-spacing: 0.08em;
}
/* 初期CSS */
.visuallyHidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* TOPコンテンツ（project）
--------------------------------------------- */
section.project {
	border-bottom: 1px solid rgba(52,48,47,0.8);	
}
.project .section-innerwrap {
	padding-bottom: 50px;
}
.project_content {
	width: 100%;
}
.project_content ul li {
	margin-top: 18px;
	width: 85%;
	overflow: hidden;
	aspect-ratio: 16/6.5;
}
.project_content ul li.p01 {
	background: url("images/pages/p_house.webp")no-repeat;
	background-size: cover;
	background-position: center;
}
.project_content ul li.p02 {
	background: url("images/pages/p_hukushi.webp")no-repeat;
	background-size: cover;
	background-position: center;
}
.project_content ul li.p03 {
	background: url("images/pages/p_kyouiku.webp")no-repeat;
	background-size: cover;
	background-position: center;
}
.project_content ul li.p04 {
	background: url("images/pages/p_gyoumu.webp")no-repeat;
	background-size: cover;
	background-position: center;
}
.project_content ul li.p05 {
	background: url("images/pages/p_jisya.webp")no-repeat;
	background-size: cover;
	background-position: center;
}
.project_content ul li.p06 {
	background: url("images/pages/p_bunka.webp")no-repeat;
	background-size: cover;
	background-position: center;
}
.project_content ul li.p07 {
	background: url("images/pages/p_syukuhaku.webp")no-repeat;
	/*background-size: cover;*/
	background-position: center;
}
.project_content ul li.p08 {
	background: url("images/pages/btn_competition.webp")no-repeat;
	background-size: 140%;
    background-position: 20% 70%;
}

.project_content ul li a {
	display: inline-block;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	color: #fff;
	font-size: clamp(16px, 1.8vw,22px);
	letter-spacing: 0.09em;
	text-decoration: none;
	background: rgba(0,0,0,0.7);
}
.project_content ul li a:focus,
.project_content ul li a:active {
	transition: all .2s;
	background: rgba(0,0,0,0.3);
}
.project_content ul li a h3 {
	display: flex;
	align-items: center;
	width: 95%;
	height: 90%;
	font-size: 110%;
	border: 1px solid rgba(255,255,255,0.5);
}
.project_content ul li a h3 span {
	padding-left: 1em;
	font-weight: 500;
}

@media print, screen and (min-width:550px) {
.project .section-innerwrap {
	padding-bottom: 10px;
}
.project_content ul {
	display: flex;
	flex-wrap: wrap;
	margin: 15px 5vw 5vw;
}
.project_content ul li:nth-child(n+3) {
	margin-top: 2.3vw;
}
.project_content ul li:nth-child(odd) {
	margin-right: 2.7vw;
}
.project_content ul li {
	width: 46%;
	max-width: 470px;
	overflow: hidden;
	aspect-ratio: 16/9;
}
}

/* TOPコンテンツ（links）
--------------------------------------------- */
.links {
	border-bottom: 1px solid rgba(52,48,47,0.8);
}

.links .links_content ul {
	display: flex;
	flex-wrap: wrap;
	padding: 10px 0 30px 20px;
}
.links .links_content ul li {
	margin: 3% 2%;
}
.links .links_content ul li a {
	display: inline-block;
/*	box-shadow: 0 0 6px rgba(0,0,0,0.15);*/
	/*border: 1px solid #ccc;*/
}

.links .links_content ul li a img{
	width: auto;	
}
	
/* TOPコンテンツ（contact）
--------------------------------------------- */
.contact {

}
.contact .section-innerwrap {
	background: #CAE3E1;
}
.contact .contact_content {
	padding: 10px 5vw 20px;
	width: 100%;
	height: auto;
}
.contact dl dt {
	margin: 0 0 15px;
	font-size: 90%;
	font-weight: 500;
}
.contact dl dd {
	margin: 0 0 30px;
}
.contact dl dd p {
	display: inline-block;
}
.contact dl dd p span.business_hours {
	display: inline-block;
	margin-top: 10px;
	width: 100%;
	color: #34302F;
	font-size: 80%;
	font-weight: 500;
	text-align: center;
	background: #DEDEDE;
	border: 1px solid #B7B7B7;
	border-radius: 50px;
}
.contact dl dd a.btn_contact {
	position: relative;
	display: inline-block;
	padding: 1.3em 2em;
	width: 92%;
	max-width: 23em;
	color: #34302F;
	font-weight: 500;
	text-decoration: none;
	background: #fff;
	border: 1px solid #8ABDB8;
	border-radius: 100px;
}
.contact dl dd a.btn_contact:after {
    content: "";
    display: inline-block;
    position: absolute;
	right: -30px;
	bottom: 58%;
	-webkit-transform : translateY(58%);
	transform : translateY(58%);
    background: url("images/pages/arrow_more.svg")no-repeat;
	background-size: contain;
	background-position: bottom;
    width:30%;
	max-width: 130px;
    height: 11px;
    transition: all .2s;
}
.contact dl dd a.btn_contact:hover:after,
.contact dl dd a.btn_contact:active:after {
	right: -50px;
	transition: all .2s;
}


/* Posts and pages
--------------------------------------------- */
.entry-content p {
	margin-bottom: 1.8em;
}
.entry-content ul,
.entry-content ol {
	margin: 0 0 1.5em 3em;
}

.entry-content ul {
	list-style: disc;
}

.entry-content ol {
	list-style: decimal;
}

.entry-content li > ul,
.entry-content li > ol {
	margin-bottom: 0;
	margin-left: 1.2em;
}
.entry-content .entry_meta {
	margin: 0 10px 20px;
	text-align: right;
	font-size: 90%;
}

.sticky {
	display: block;
}

.post,
.page {
	margin: 0;
}

.updated:not(.published) {
	display: none;
}

/*.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}
*/
.page-links {
	clear: both;
	margin: 0 0 1.5em;
}


/* Posts and pages（見出し）
--------------------------------------------- */
/* H1 */
.title_bg {
	margin-top: 6px;
	padding: 50px 0 35px;
	text-align: center;
	background: #CAE3E1;
	border-top: 1px solid rgba(52,48,47,0.8);
	border-bottom: 1px solid rgba(52,48,47,0.8);
}
.error404 .title_bg {
	margin-top: 0;
	padding: 0;
	background: #fff;
	border-top: 1px solid rgba(52,48,47,0.8);
	border-bottom: none;
}
.clearText {
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}

/*会社概要*/
.page-id-14 h1.entry-title {
	background: url("images/pages/h_about.svg")no-repeat;
	background-position: center;
	background-size: contain;
	height: 55px;
}
/*実績紹介*/
.post-type-archive-works h1.entry-title,
.search h1.entry-title,
.tax-works_cat h1.entry-title,
.single.single-works h1.entry-title,
.post-type-archive-competition h1.entry-title,
.single.single-competition h1.entry-title {
	background: url("images/pages/h_project.svg")no-repeat;
	background-position: center;
	background-size: contain;
	height: 55px;
}
/*競技設計*/
/*.post-type-archive-competition h1.entry-title,
.single.single-competition h1.entry-title {
	background: url("images/pages/h_competition.svg")no-repeat;
	background-position: center;
	background-size: contain;
		height: 55px;
}*/
/*採用情報*/
.page-id-16 h1.entry-title {
	background: url("images/pages/h_recruit.svg")no-repeat;
	background-position: center;
	background-size: contain;
	height: 55px;
}
/*アクセス*/
.page-id-20 h1.entry-title {
	background: url("images/pages/h_access.svg")no-repeat;
	background-position: center;
	background-size: contain;
	height: 55px;
}
/*お問い合わせ*/
.page-id-18 h1.entry-title,
.parent-pageid-18 h1.entry-title {
	background: url("images/pages/h_contact.svg")no-repeat;
	background-position: center;
	background-size: contain;
	height: 55px;
}
/*保護方針*/
.privacy-policy h1.entry-title {
	background: url("images/pages/h_policy.svg")no-repeat;
	background-position: center;
	background-size: contain;
	height: 55px;
}
/*お知らせ*/
.category-news h1.entry-title,
.single h1.entry-title {
	background: url("images/pages/h_news.svg")no-repeat;
	background-position: center;
	background-size: contain;
	height: 55px;
}


/* H2 */
.entry-content h2 {
	position: relative;
	margin: 50px 0 30px;
	padding: 0 0 0 15px;
	font-size: 130%;
	font-weight: 500;
	line-height: 1.5;
}
.entry-content h2:before {
	content: "";
	display: inline-block;
	position: absolute;
	left: -5.8%;
	top: 50%;
	-webkit-transform : translateY(-50%);
	transform : translateY(-50%);
	background: #000000;
	width: 7%;
	height: 1px;
}
/* H3 */
.entry-content h3 {
	margin: 45px 0 20px;
	padding: 0 .5em 2px;
	font-size: 115%;
	font-weight: 500;
	border-left: 4px solid #c6c6c6;
    line-height: 1.2em;
}

/* Posts and pages（ページナビ）
--------------------------------------------- */
body .wp-pagenavi {
	margin: 30px 0 0;
	text-align: center;
	font-size: 90%;
}
body .wp-pagenavi span,
body .wp-pagenavi a {
	display: inline-block;
	margin: 0;
	padding:2px 9px 4px;
	color: #222;
	border-radius: 0;
	border: none;
}
body .wp-pagenavi a 
,body .wp-pagenavi a:visited {
	color: #222;
	border: none;
}
body .wp-pagenavi a:hover
,body .wp-pagenavi a:active {
	background: #ddd;
	text-decoration: none;
	color: #222;
	border: none;
}

body .wp-pagenavi span.pages {
	display: block;
	text-align: center;
	border: none;
}
body .wp-pagenavi span.current {
	color: #fff;
	font-weight: 400;
	background: #34302f;
	border: none;
}
body .wp-pagenavi span.extend {
	border: none;
	padding-left: 0;
	padding-right: 0;
}

/* Posts and pages（会社概要）
--------------------------------------------- */
.page-id-14 table {
	font-size: 92%;
}
.page-id-14 .gaiyou table tr td:first-child {
	width: 20%;
	min-width: 130px;
}
.page-id-14 .enkaku table tr td:first-child {
	padding-right: 0;
	width: 20%;
	min-width: 145px;
}

/* Posts and pages（実績紹介）
--------------------------------------------- */
/*
※注意
トップページはh3タグ、アーカイブはh2タグ
*/
.post-type-archive-works .entry-content ul {
	margin: 0;
	list-style: none;
}
.post-type-archive-works .project_content ul li {
	margin-right: auto;
    margin-left: auto;
}
.post-type-archive-works .project_content ul li a h2 {
	display: flex;
	align-items: center;
	margin: 0;
	font-size: 110%;
	font-weight: 400;
	width: 95%;
    height: 89%;
	border: 1px solid rgba(255,255,255,0.5);
}
.post-type-archive-works .project_content ul li a h2 span {
	padding-left: 1em;
}

/*h1下のカテゴリーリスト*/
#works_cat_list {
	display: inline-block;
	margin-top: 40px;
	width: 90%;
	letter-spacing: 0.08em;
	text-align: left;
}
#works_cat_list ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0 auto;
	max-width: 350px;
}
#works_cat_list ul li:nth-child(odd) {
	width: 55%;
}
#works_cat_list ul li:nth-child(even) {
	width: 40%;
}
#works_cat_list ul li {
	margin-bottom: 8px;
}
#works_cat_list ul li p.current {
	font-weight: 600;
	text-decoration: underline;
}
#works_cat_list ul li a,
#works_cat_list ul li a:visited {
	color: #689A95;
	font-weight: 500;
	text-decoration: none;
}
#works_cat_list ul li a:hover,
#works_cat_list ul li a:active {
	text-decoration: underline;
}

/*実績一覧*/
ul.works_pastlist {
	margin: 50px 0;
	list-style: none;
}
ul.works_pastlist li {
	border-top: 1px solid #404040;
}
ul.works_pastlist li:last-child {
	border-bottom: 1px solid #404040;	
}
/*写真がある場合、アイコンが出現してリンクになる*/
ul.works_pastlist li a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	color: #222;
	text-decoration: none;	
}
ul.works_pastlist li a:hover,
ul.works_pastlist li a:active {
	transition: all .1s;
	background: #F1F1F1;
}
ul.works_pastlist li a:before {
	content: "";
	display: inline-block;
	position: absolute;
    right: 15px;
/*	bottom: 15px;*/

  top: 55%;
  -webkit-transform : translateY(-55%);
  transform : translateY(-55%);

	background: url("icon/icon_photo.svg")no-repeat;
	background-size: contain;
	background-position: center;
	width: 50px;
	height: 41px;
}
/*実績タイトル*/
ul.works_pastlist li p.work_title {
	margin: 0;
	padding: 15px 2vw 8px;
	font-size: 102%;
	font-weight: 500;
	letter-spacing: 0.07em;
	line-height: 1.4em;
}
ul.works_pastlist li p.work_title span.modified {
	position: relative;
	top: -.22em;
    right: 6px;
	display: inline-block;
	padding: 0px 4px;
	color: #C70003;
	font-size: 55%;
	border: 1px solid #C70003;
}
ul.works_pastlist li p.work_title .mark_new {
	position: relative;
    top: -.05em;
    right: 3px;
}
/*詳細　共通*/
ul.works_pastlist li .row1_4col,
ul.works_pastlist li .row2_4col,
ul.works_pastlist li .area {
	display: flex;
	flex-wrap: wrap;
	margin: 0 3vw;
	font-size: clamp(12px,1vw,14px);
}
ul.works_pastlist li .area .row3_4col {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
/*詳細　1行目、2行目*/
ul.works_pastlist li .row1_4col p,
ul.works_pastlist li .row2_4col p,
ul.works_pastlist li .row3_4col p {
	margin: 0;
	padding: 0 5px;
}
ul.works_pastlist li .row1_4col p.title,
ul.works_pastlist li .row2_4col p.title,
ul.works_pastlist li .row3_4col p.title {
	position: relative;
	width: 85px;
}
ul.works_pastlist li .row1_4col p.title:after,
ul.works_pastlist li .row2_4col p.title:after,
ul.works_pastlist li .row3_4col p.title:after {
	content: ":";
	position: absolute;
	right: 0;
	top: 0.2em;
}
ul.works_pastlist li .row1_4col p.value,
ul.works_pastlist li .row2_4col p.value,
ul.works_pastlist li .row3_4col p.value {
	/*padding-right: 18%;*/
	width: calc(100% - 85px);
}
/*詳細　面積*/
ul.works_pastlist li .row_area {
	display: flex;
}

/*最後のdivに対するスタイル*/
ul.works_pastlist li > div:last-child,
ul.works_pastlist li a > div:last-child {
	padding-bottom: 15px;
}



/*写真がある場合の投稿ぺージ　※競技設計と共通*/
.single-works ul.works_pastlist {
	margin: 0;
}
.single_term {
	display: inline-block;
	padding: 0px 1em;
	color: #34302F;
	font-size: 75%;
	background: #fff;
	border: 1px solid #34302F;
}
.works_img,
.competition_img {
	margin: 50px 0 50px;
}
button.arrow_back {
	position: relative;
	display: block;
	margin: 40px auto 0;
	padding: 10px;
    font-size: 100%;
    font-weight: 500;
	background: #fff;
	border: none;
	cursor: pointer;
}
button.arrow_back:after {
	content: "";
	display: inline-block;
	position: absolute;
	right: 110%;
    bottom: 10px;
	background: url("images/pages/arrow_back.svg")no-repeat;
	background-size: contain;
	width: 90px;
	height: 9px;
	transition: all .2s;
}


@media print, screen and (min-width:550px) { 
ul.works_pastlist li .row1_4col,
ul.works_pastlist li .row2_4col,
ul.works_pastlist li .area {
	flex-wrap: nowrap;
}
ul.works_pastlist li .area .row3_4col {
	width: auto;
}
ul.works_pastlist li .row1_4col p.title,
ul.works_pastlist li .row2_4col p.title,
ul.works_pastlist li .row3_4col p.title {
	width: 7em;
}
ul.works_pastlist li .row1_4col p.value,
ul.works_pastlist li .row2_4col p.value,
ul.works_pastlist li .row3_4col p.value {
	width: 14em;
}

}
/*検索*/
.searchform-wrap {
	text-align: right;
	font-size: 80%;
}
.searchform-wrap select {
	margin-bottom: 3px;
	border:1px solid #34302f;
	background: #fff;
}
.searchform-wrap input#feas_0_1 {
	margin-bottom: 3px;
	padding: 0 5px;
	border:1px solid #34302f;
	background: #fff;
	border-radius: 0;
	width: 160px;
}
.searchform-wrap input#feas-submit-button-0 {
	margin-bottom: 3px;
	border:1px solid #34302f;
	background: #fff;
	border-radius: 0;
	padding: 5px 8px;
}

.searchform-wrap input#feas-submit-button-0:active,
.searchform-wrap input#feas-submit-button-0:focus {
	background: #ddd;
}

/* Posts and pages（競技設計）
--------------------------------------------- */
ul.competition_pastlist {
	margin: 50px 0;
    list-style: none;	
}
ul.competition_pastlist li {
	border-top: 1px solid #404040;
}
ul.competition_pastlist li:last-child {
	border-bottom: 1px solid #404040;
}
ul.competition_pastlist li .competition_title {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 10px 1.2vw;
    font-weight: 400;
    letter-spacing: 0.07em;
}
/*競技年*/
ul.competition_pastlist .acf_date {
	margin: 0 1em 0 0;
	width: 100%;
}
ul.competition_pastlist .acf_date span {
	display: inline-block;
	margin-bottom: 3px;
	padding: 0 1em;
	color: #777;
	font-size: 75%;
	font-weight: 400;
	text-align: center;
	background: #fff;
	border: 1px solid #777;	
}
ul.competition_pastlist .acf_date span.tousen {
	color: #fff;
	font-weight: 500;
	background: #777;
}
ul.competition_pastlist .acf_title {
	margin-bottom: 0;
	width: 86%;
	font-weight: 500;
}
/*共同企業体*/
.acf_txts_blue {
	display: block;
    padding-top: 3px;
	color: rgb(35, 133, 195);
	font-size: 70%;
	font-weight: 500;
	line-height: 1.5;
}
/*企業*/
.acf_kigyou {
	display: block;
	padding-top: 3px;
	color: rgba(195,129,35,1.00);
	font-size: 70%;
	font-weight: 500;
	line-height: 1.5;
}
/*設計協力、備考*/
.acf_txts_green {
	display: block;
    padding-top: 3px;
	color: rgb(69, 170, 137);
	font-size: 70%;
	font-weight: 500;
	line-height: 1.5;
}

/*写真がある場合、アイコンが出現してリンクになる*/
ul.competition_pastlist li a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	color: #222;
	text-decoration: none;	
}
ul.competition_pastlist li a:hover,
ul.competition_pastlist li a:active,
ul.competition_pastlist li a:focus {
	transition: all .1s;
	background: #F1F1F1;
}
ul.competition_pastlist li a:before {
	content: "";
	display: inline-block;
	position: absolute;
    right: 2vw;
	top: 0;
	background: url("icon/icon_photo.svg")no-repeat;
	background-size: contain;
	background-position: center;
	width:7%;
	min-width: 35px;
	height: 100%;
}

/* Posts and pages（採用情報）
--------------------------------------------- */
.bosyu table tr td:nth-child(1){
	width: 8em;
}

/* Posts and pages（お問い合わせ）
--------------------------------------------- */
.inquiry_list {
	margin-top: 20px;
}
.inquiry_list p {
	margin-bottom: 0;	
}
.inquiry_list dt.inquiry_title {
	display: inline-block;
	margin: 25px 0 5px;
	width: 100%;
	vertical-align: top;
}

.inquiry_list dd {
	display: inline-block;
	margin: 0;
	padding: 0;
	width: 100%;
}

.inquiry_list .must-txt {
	position: relative;
	top: -1px;
	left: 3px;
	padding: 0px 4px 1px;
	color: #fff;
	font-size: 60%;
	font-weight: 500;
	background: #db3b3b;
	border-radius: 2px;
	cursor: default;
	user-select: none;
}
.wpcf7-not-valid-tip {
	font-size: 80% !important;
}

body .wpcf7-spinner {
	display: block;
	margin: 15px auto 0;
	width: 24px;
	height: 24px;
}

.recaptcha {
	margin: 50px 0 0;
	color: #777;
	font-size: 65%;
	line-height: 1.5em;
}
#agreement {
	margin-top: 50px;
}
#agreement p {
	text-align: center;
}
input[type="submit"].wpcf7-form-control,
input[type="button"].wpcf7-form-control {
	padding: 25px 80px;
	border: solid 1px #999999;
	font-size: 100%;
	font-weight: 600;
	letter-spacing: 0.25em;
	cursor: pointer;
}
input[type="button"].wpcf7-form-control {
	padding: 25px 40px;
	background: #f5f5f5;
}
input[type="submit"].wpcf7-form-control:hover,
input[type="button"].wpcf7-form-control:hover {
	background: #aaa;
	transition: all .2s;
}
input[type="submit"].wpcf7-form-control:active,
input[type="submit"].wpcf7-form-control:focus,
input[type="button"].wpcf7-form-control:active,
input[type="button"].wpcf7-form-control:focus {
	background: #ccc;
	border: solid 1px #999;
	transition: all .2s;
}
.con_name,
.con_tel,
.con_address {
	width: 90%;
	max-width: 25em;
}
.con_inquiry {
	width: 100%;
	height: 12em;
}



/* Posts and pages（検索結果ぺージ）
--------------------------------------------- */
/*ul.search_result {
	list-style: disc;
	padding-left: 20px;
}
ul.search_result li {
	margin-bottom: 0.6em;
}
*/

/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* sidebar
--------------------------------------------- */
/* ▼side（これまでのお知らせ） */
aside.past_entry  {
	background: #fff;
	border: 1px solid #ccc;
}
.past_entry h2 {
	padding: 15px 5px;
	font-size: 95%;
	font-weight: 500;
	text-align: center;
	background: #EFEFEF;
}
.past_entry ul.past_entry_list {
	margin: 4%;
}
.past_entry ul li {
	position: relative;
	display: flex;
	flex-direction: column;
	margin-bottom: 13px;
	padding:0 5px 13px 10px;
	border-bottom: 1px dotted #777;
}
.past_entry ul li time {
	order: 1;
	margin-bottom: 5px;
	font-size: 95%;
	font-weight: 500;
}
.past_entry ul li a {
	order: 2;
	font-size: 90%;
}
.past_entry .more {
	margin: 15px 10px;
	text-align: right;
}


/* Widgets
--------------------------------------------- */
/* ▼side（これまでのお知らせ） */
.recent_entry_list section {
	padding: 15px 20px;
	background: #fff6e9;
	border-radius: 10px;
	border: 1px solid #efe4d3;
}
.recent_entry_list a,
.recent_entry_list a:visited {
	color: #222;
	text-decoration: none;
}
.recent_entry_list a:hover,
.recent_entry_list a:active {
	color: #f99ea1;
	transition: all .2s;
}

.recent_entry_list h2 {
	margin: 10px 0 20px;
	font-size: 110%;
	font-weight: 500;
	text-align: center;
}
.recent_entry_list ul li {
	position: relative;
	display: flex;
	flex-direction: column;
	margin-bottom: 10px;
	padding: 0 8px 10px 15px;
	border-bottom: 1px dotted #555;
}
.recent_entry_list ul li:before {
	content: "●";
	position: absolute;
	top: .5em;
	left: 1px;
	color: #ffbbbd;
	font-size: .8rem;
	
}
.recent_entry_list ul li time {
	order: 1;
	margin-bottom: 3px;
	font-size: 85%;
	font-weight: 500;
}
.recent_entry_list ul li a {
	order: 2;
	font-size: 90%;
}


.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}


/* footer
--------------------------------------------- */
#site_footer {
	padding: 20px 0 65px;
	color: #fff;
	font-weight: 300;
	background: #34302F;
}

.footer_innerwrap {
	margin: 0 auto;
	width: 94%;
	text-align: center;
}
#site_footer .logo {
	margin: 15px auto;
	width: 90px;
	text-align: center;
	opacity: 0.85;
}
#site_footer .address {
	display: inline-block;
	font-size: 83%;
	font-weight: 400;
	text-align: left;
}
#site_footer .address .address_wrap {
	margin: 15px 0;
	line-height: 1.4;
}

/*フッターの共通スタイル*/
.footer_innerwrap a,
.footer_innerwrap a:visited {
	color: #222;
	text-decoration: none;
	font-size: 84%;
}
.footer_innerwrap a:hover,
.footer_innerwrap a:active {
	text-decoration: underline dotted #555;
}

/*コピーライト*/
#copyright {
	padding: 10px 0 0;
	font-size: 65%;
	text-align: center;
	letter-spacing: 0.2em;
}
#copyright a,
#copyright a:visited {
	color: #fff;
	text-decoration: none;
}
#copyright a:hover,
#copyright a:active {
	text-decoration: underline;
}

/*下部固定メニュー*/
.footer_area {
	display: flex;
	justify-content: space-around;
	position: fixed;
	padding:10px 0;
	bottom: 0;
	width: 100%;
	background-color: #34302F;
	z-index: 10000;
}
.footer_area .footer_area_inner {
	flex: 1;
}
a.inquiry_btn {
	display: block;
    text-align: center;
	padding: 5px 0;
	border-right: 1px solid #707070;
}
a.inquiry_btn img.tel {
	width: auto;
	height: 30px;
	margin-bottom: 2px;
}
a.inquiry_btn img.contact {
	width: auto;
	height: 30px;
	margin-bottom: 2px;
}
a.inquiry_btn p {
	color: #fff;
	font-size: 0.9rem;
	line-height: 1.9;
}



/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

/*PDFアイコン*/
a[href $='.pdf'] {
    background:url(icon/ico_pdf.gif) no-repeat right 70%;
    padding:0 18px 0 0;
}
a[href $='.pdf'] a {
    text-decoration:none;
}

a[href $='.pdf'] a:hover {
    text-decoration:none;
}
}
