@charset "utf-8";
/*
Theme Name: Noguchi Katsumi by.scent design
Author: Scent Design
Description: original theme
Version： 1.0.0
*/

/* CSS Document */



/* 極小デバイス（縦向きモバイル, 576px 未満） */
/* Bootstrapではデフォルトで `xs` のメディアクエリは存在しない */

/* 小デバイス（横向きモバイル, 576px 以上） */
@media (min-width: 576px) { ... }

/* 中デバイス（タブレット, 768px 以上） */
@media (min-width: 768px) { ... }

/* 大デバイス（デスクトップ, 992px 以上） */
@media (min-width: 992px) { ... }

/* 特大デバイス（ワイド・デスクトップ, 1200px 以上） */
@media (min-width: 1200px) { ... }

/* 超特大デバイス (よりワイドな・デスクトップ, 1400px 以上） */
@media (min-width: 1400px) { ... }


/* `xs` はルールセットのみを返し、メディアクエリは返さない */
/* ... { ... } */

/* `sm` は極小デバイス（縦向きモバイル, 576px未満）に適用 */
@media (max-width: 575.98px) { ... }

/* `md` は小デバイス（横向きモバイル, 768px 未満）に適用 */
@media (max-width: 767.98px) { ... }

/* `lg` は中デバイス（タブレット, 992px 未満）に適用 */
@media (max-width: 991.98px) { ... }

/* `xl` は大デバイス（デスクトップ, 1200px 未満）に適用 */
@media (max-width: 1199.98px) { ... }

/* `xxl` は特大デバイス（ワイド・デスクトップ, 1400px 未満）に適用 */
@media (max-width: 1399.98px) { ... }


@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');

::selection {
    background: #88b124;
    color: #fffdf4;
	opacity: 0.5;
}


html{
    font-size:100%; /*ユーザー設定の文字サイズを正しく反映*/
}
*{
    box-sizing:border-box; /*余白や線を幅や高さに含める*/
}
img{
    max-width:100%; /*画像が親要素からはみ出すのを防ぐ*/
    height:auto;
}
body{
    background-color:#e0e0e0;
    margin:0;
    padding:0;
	color: #294628;
	line-height:1.5rem;
	letter-spacing: 0.05rem;
}

a:hover{
	text-decoration: none;
	color: inherit;
}
.text-center{
	text-align: center;
}


.header{
  /*position: fixed;*/
  left: 0;
  top: 0;
  width: 100%;
 /* height: 60px;*/
  font-family: "Libre Baskerville", system-ui;
}
.header_inner {
 /* position: relative;
  padding: 15px;*/
}
.logo{
  position: absolute;
/*  top: 0;
  left: 0;*/
 /* padding: 10px 15px*/
}
.title{
  font-size: 1.5rem;
  font-weight: 400;
}


.main{  
  margin-top: 60px;
}

#footer {
  margin: 2rem auto;
}

table.cv-exhibition-tbl tbody tr th{
	font-family: "Poppins", sans-serif;
    font-weight: bold;
    font-style: italic;
	color: #738964;
}
.cv-name_fr{
	font-size: 1.5rem!important;
}
.cv-text_fr{
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
    }
table.cv-exhibition-tbl_fr tr td{
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
}
.biographie{
	background-color: #fff;
	padding-bottom: 2rem;
	padding-top:0.5rem;
}

/* front-bottom-layout */
span.top-inf {
    background-color: #294628;
    color: #fffdf4;
    padding: 0.5rem 1rem;
}


.footer{
	margin: 5rem auto 5.5rem;
}
/* Polylang Flags Inline */

.polylang {
  text-align: center;
 /* display: flex;*/
  justify-content: center; 	
}
ul.polylang li {
 /* display: inline;*/
}
.lang-item{
  position: relative;
}


.Gallery-content{
	background-color: #fff;
	padding: 1rem 2rem 4rem;
}



.g-menu a{
	position: relative;
	text-decoration: none;
	color: #294628;
	transition: 0.3s;
}
/*.g-menu a:hover{
}
.g-menu a::before{
	content: "";
	position: absolute;
	left: 50%;
	bottom: -17px;
	width: 0;
	height: 3px;
	background: #294628;
	transition: 0.3s;
}
.g-menu a:hover::before{
	left: 0;
	width: 100%;
}*/


/*ギャラリータイトル*/
.gl-info{
	background-color: #fff;
	height: 3.5rem;
	transition: 0.9s all ;
}
.gl-info p {
    font-size: 1.3rem;
    font-family: 'Noto Serif JP';
    letter-spacing: 0.2rem;
    text-align: center;
    padding-top: 1rem;
}	
.gl-info:hover {
    background: #88b124;
    color: #fffdf4;
  　transition: 1s !important;
}	


.work-thumb-link{
 display:block; 
 position:relative;
 text-decoration:none;
}
.work-thumb-link img{
  display:block;
  width:100%;
  transition:1s;
}
.work-thumb-link:before{
  content:" ";
  display:block;
 /* color:#fff;
  line-height:48px;
  width:180px;
  border:solid 1px #fff;
  border-radius:5px;
  text-align:center;*/
  position:absolute;
  top:50%;
  left:50%;
  margin-top:-1em;
  margin-left:-90px;
  opacity:0;
  z-index:3;
  transition:0.3s;
  font-weight:bold;
  letter-spacing:0.2em;
}
.work-thumb-link:hover img{
  filter:blur(3px);
}
.work-thumb-link:hover:before{
  opacity:1;
  margin-top:-0.5em;
}

/* frontpage-bottom-layout */
.top-inf{
	font-family: "Libre Baskerville", system-ui;
}

/* ナビゲーションメニュー */
.lang-nav-menu {
 /* color: #fff;*/ /* メニューテキストの色 */
font-family: "Libre Baskerville", system-ui;	
}
.lang-menu-list {
  display: flex;
  justify-content: center; /* メニューアイテムを中央揃えに */
}
.lang-menu-item {
  /*background-color: #333;*/ /* メニューアイテムの背景色 */
  /*border-left: 1px solid #fff;*/ /* メニューアイテムの左ボーダー */
  position: relative;
  /*transition: background-color .3s; *//* 背景色の変化をアニメーション化 */
}
.lang-menu-item:last-child {
  /*border-right: 1px solid #fff;*/ /* 最後のメニューアイテムの右ボーダー */
}

/* メニューアイテムのホバースタイル */
.lang-menu-item:hover .polylang {
  transform: scaleY(1); /* ドロップダウンメニューの表示 */
}
.lang-menu-item:hover {
 /* background-color: #696969; *//* メニューアイテムのホバー時の背景色 */
  /*transition: background-color .3s; *//* 背景色の変化をアニメーション化 */
}
ul.polylang li:hover {
  opacity: .8; /* ドロップダウンメニューアイテムのホバー時の不透明度 */
  transition: opacity .3s; /* 不透明度の変化をアニメーション化 */
}

.lang-menu-item a {
  align-items: center;
  /*color: #fff; *//* メニューアイテム内のリンクテキストの色 */
  display: flex;
  height: 1.6rem;
  justify-content: center;
  text-decoration: none; /* リンクの下線を非表示 */
  font-size: 0.8rem;
}

/* ドロップダウンメニュー */
.drop-menu {
  position: relative;
}
.polylang {
  left: 0;
  position: absolute;
  top: 100%;
  transform: scaleY(0); /* ドロップダウンメニューの非表示 */
  transform-origin: center top; /* 変形を適応する基準を設定 */
  transition: transform .3s; /* 表示の変化をアニメーション化 */
  width: max-content;
  z-index: 1;
}
ul.polylang li {
  /*background-color: #696969;*/ /* ドロップダウンメニューの背景色 */
  transition: opacity .3s; /* 不透明度の変化をアニメーション化 */
	padding-left: 1.2rem;
}


.sns-icon img{
	width: 1.8rem;
}

.lang-menu-list li{
	margin: 0 0.8rem;
}

.gallery-h1 h1{
  text-align: center;
  margin: 3rem auto 2rem;
  font-size: 2.2rem !important;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.5rem;
  position: relative;
  height: 100px;
}
.gallery-h1 p{
  text-align: center;
  margin: auto;
  font-size: 2.2rem !important;
  position: relative;
  height: 6rem;
}
.gallery-h1 h1::after, .gallery-h1 p::after{
	content:'';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 1.5px;
	height: 30px;
	margin: auto;
	background-color: #294628;
}
.gallery-p{
	font-family: 'Noto Serif JP', serif;
	line-height: 1.6rem;
	margin-bottom: 2.5rem;
}


.h1-under_bar{
	position:relative;
}
.h1-under_bar::after{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -50px;
  width: 1.5px;
  height: 30px;
  margin: auto;
  background-color: #294628;
}
.profile-photo{
	margin-top:2rem;
}



.load-fade {
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s;
}
.load-fade.is-show {
  opacity: 1;
  visibility: visible;
}

.scroll-up {
  opacity: 0; 
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}
.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/*========= Contact Form =========*/
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    background-color: #fff;
    width: 60vw;
    color: #294628;
    padding: 0.5rem;
}
.wpcf7-form p {
    margin-bottom: 1.5rem;
}
textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required {
    background-color: #fff;
    max-width:100%;
    width: 60vh;
    color: #294628;
    padding: 0.5rem;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
    display: block;
    position: relative;
    width: 160px;
    padding: 0.8rem;
    text-align: center;
    text-decoration: none;
    color: #294628;
    background-color: #fff;
    border: 1px solid #333;
    letter-spacing: 0.1rem;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
    background: #294628;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    transition: all 1s;
}
:focus {
    outline: none;
}



/*========= single.php =========*/

span.archive-category {
    padding: 0.3rem 0.8rem;
    border-left: 3px solid #294628;
    background-color: #ededed;
    border-radius: 1.5px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.0);
}
.blog-item__title {
    font-size: 1.5rem;
    margin-top: 2rem !important;
}
img.attachment-post-thumbnail {
    max-height: 500px;
    height: auto;
    object-fit: contain;
}
/*========= News =========*/
article.blog-list__list-item {
    margin: 2rem auto;
    padding-bottom: 2rem;
    border-bottom: 1px solid #b3bd9d;
}

/*========= ▼▼　SP　▼▼ =========*/
@media only screen and (max-width: 992px) {
	.header{
		height: 60px;
	}
	.header-inner{
		height: 60px;
	}
  .nav {
    position: fixed;
    right: -320px; /* 右から出てくる */
    top: 0;
    width: 300px; /* スマホに収まるサイズ */
    height: 100vh;
    padding-top: 60px;
    /*background-color: #629933;*/
	background-color: #88b124;
    transition: all .6s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
	color: #fffdf4;
	opacity: 0.8;
  }
  .hamburger {
    position: absolute;
    right: 15px;
    top: 8px;
    width: 40px; /* クリックしやすい幅 */
    height: 40px; /* クリックしやすい高さ */
    cursor: pointer;
    z-index: 300;
  }
  .nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  li.menu-item {
    text-align: center !important;
    padding: 0 14px;
  }
  li.menu-item a {
    display: block;
    padding: 1rem 0;
   /* border-bottom: 1px solid #eee;*/
    text-decoration: none;
    color: #fffdf4;
  }
  li.menu-item a:hover {
    color: #fbe688;
    transition: all .6s;
  }
  .hamburger_border {
    position: absolute;
    left: 11px;
    width: 18px;
    height: 2px;
    background-color: #333;
    transition: all .6s;
  }
  .hamburger_border_top {
    top: 14px;
  }
  .hamburger_border_center {
    top: 20px;
  }
  .hamburger_border_bottom {
    top: 26px;
  }
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }

  /* 表示された時用のCSS */
  .nav-open .nav {
    right: 0;
  }
  .nav-open .black_bg {
    opacity: .8;
    visibility: visible;
  }
  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
  }
	
	
	.nav-ttl{
font-size: 1.4rem;
/*   font-weight: bold;*/
  text-align: center;
  position: relative; /*positionをrelativeに指定*/
  margin-bottom: 2rem;
}	
  .nav-ttl::after {
  position: absolute; /*positionをabsoluteに指定*/
  content: "";
  background-color: #fffdf4; /*下線の色*/
  width: 8rem; /*線の幅*/
  height: 1.2px; /*線の太さ*/
  bottom: -1rem; /*線のタテ位置*/
  left: 50%;  /*線のヨコ位置*/
  transform: translateX(-50%);　/*線のヨコ位置*/
  }
	
 .logo{
      top:8px;
      height: 40px;
	}	
  .title{
	  font-size: 1.4rem;
      height:40px;
      padding-top: 10px;
  }
	
/* frontpage-bottom-layout */	
.inf-title {
    margin: 1rem auto;
}	
	span.top-inf{
		font-size: 0.7rem;
		padding: 0.2rem 1rem;
	}
	.inf-contents{
		line-height: 1.8rem;
	}	
.inf-contents ul li {
        margin-bottom: 0.5rem;
}
	
	
	h1.page-h1 {
    text-align: center;
    font-size: 1.5rem;
    font-family: "Libre Baskerville", system-ui;
    margin: 1.8rem auto;
}
.cv h2 {
    font-size: 1.5rem;
    font-family: "Noto Serif JP", serif;
	margin: 2rem auto;
}
	
/* gallery */
.gallery-h1 h1 {
    margin: 3rem auto 0rem;	
	}
	
.work-sumbnail {
    margin-bottom: 2rem;
}	
	
	
}



/*========= ▼▼　PC　▼▼ =========*/
@media only screen and (min-width: 992px) {
	
	.text-md-center{
		text-align: center
	}
	.header{
		/*height:75px;*/
	}
  .header_inner{
    /*max-width: 980px;*/
    width: 100%;
   /* padding: 30px 30px;*/
    margin-left: auto;
    margin-right: auto;
	 /* position: absolute;*/
	 /* height: 60px;*/
	  line-height: 75px;
  }
  .logo{
    /*padding: 12px 30px;*/
	  vertical-align: middle;
  }
	.title{
		vertical-align: middle;
	}
	
	
.g-menu a:hover{
	/*color: #0055df;*/
}
.g-menu a::before{
	content: "";
	position: absolute;
	left: 50%;
	bottom: -17px;
	width: 0;
	height: 3px;
	background: #294628;
	transition: 0.3s;
}
.g-menu a:hover::before{
	left: 0;
	width: 100%;
}	
	
	
  .nav_list{
    text-align: right;
  }
  .nav_list li{
    display: inline-block;
    text-align: right;
    padding-left: 20px;
  }
  .nav_list li a{
    color: #000;
    font-weight: 400;
	font-size: 0.9rem;
  }
	h1.page-h1 {
    text-align: center;
    font-size: 2rem;
    font-family: "Libre Baskerville", system-ui;
    margin: 3rem auto;
}

	/* frontpage-bottom-layout */

	.inf-title{
		position: relative;
	}
	
	.inf-contents {
    border-left: 1.5px solid #294628;
    line-height: 2rem;
	}
	.top-news {
    margin-top: 2rem;
    height: 4rem;
	display:flex;
}	
span.top-inf {
    position: absolute;
    top: 0.75rem;
    left: 27%;
}	
	
/* gallery */
.gallery-h1 h1 {
    margin: 3rem auto 2rem;	
	}	
	
	
.cv-text {
   /* border-left: 1px solid #294628;
    padding: 1rem 0 1rem 2rem; */
    margin-top: 2rem;
    margin-bottom: 1rem;
}	
	
	
.cv-exhibition-tbl tr td {
  padding-left: 2rem;
}
	table.cv-exhibition-tbl{
		line-height: 2rem;
	}
.cv h2 {
    font-size: 1.5rem;
    font-family: "Noto Serif JP", serif;
	margin: 2rem auto;
}
.cv_fr h2{
	font-size: 2rem;
	margin: 2.5rem auto;
		font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
	}
	.cv-mas{
		font-size: 1.2rem;
	}	
	.cv-text{
		line-height: 1.8rem;
	}	
	table.cv-exhibition-tbl tr{
		line-height: 2rem;
	}
		
	/* single.php */
	
	img.attachment-post-thumbnail{
	/*	margin-top: 50%; */
	}	
	
}/* pc */



@media only screen and (min-width: 1200px) {
    img.attachment-post-thumbnail {
         margin-top: 50%; 
    }
}
