@charset "UTF-8";
html {
    margin: 0;
}

body {
    display: block;
    margin: 0;
    background-color: #fff;
    font-size: 15px;
    font-family: '游ゴシック',YuGothic,'ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','メイリオ','Archivo Black',Meiryo,sans-serif;
    line-height: 1.9;
    letter-spacing: .08rem;
    font-weight: normal;
    color: #333;
}


a {
  transition: opacity .3s;
  text-decoration: none;
  color: #1ca9e3;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border-style: none;
}



.pc-only {
  display: block;
}

.sp-only {
  display: none;
}


/*--------------------------------
 レイアウト
---------------------------------*/
.wrapper {
  padding-top: 73px;
}



.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
}



/*--------------------------------
 見出し
---------------------------------*/
.title {
  font-size: 34px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: .05em;
  color: #333;
}

.lead {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

/*--------------------------------
ヘッダー
---------------------------------*/
.header {
  position: fixed;
  top: 0;
  z-index: 1;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 5px 10px -6px rgba(0,0,0,.1);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
}

.header-logo {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  margin-right: 20px;
  letter-spacing: .05em;
}

.header-logo a {
  color: #333;
}

.gnav-list {
  display: flex;
  justify-content: space-between;
  list-style: none;
}

.gnav-item:not(:last-child) {
  margin-right: 20px;
}

.gnav-item a {
  position: relative;
  font-size: 13px;
  font-weight: bold;
  display: inline-block;
  padding: 5px 0;
  transition: .3s;
  letter-spacing: .05em;
  color: #333;
}
.gnav-item a:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  content: "";
  transition: .3s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #333;
}

.gnav-item a:hover:after {
  width: 100%;
}

/*--------------------------------
 メインビジュアル
---------------------------------*/
.mv {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 85vh;
  text-align: center;
  background-image: url("../img/img_profile.jpg");
  background-size: cover;
}

.mv-container {
  padding: 0 40px;
}

.mv-title {
  font-size: 60px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 5px;
  letter-spacing: .1em;
}
.mv-subtitle {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 40px;
  letter-spacing: .08em;
}

.mv-text {
  font-size: 16px;
  line-height: 1.8;
}
/*--------------------------------
 Works
---------------------------------*/

#topWorks {
    text-align: center;
    margin: 0 auto;
    padding-bottom: 120px;
    background-color: #fffacd;
	
}

.works {
    padding: 0 1.5rem;
    max-width: 1080px;
    margin: 0 auto;
}

h2.title {
    font-size: 36px;
    font-weight: normal;
    letter-spacing: .4rem;
    line-height: 1.2;
    padding-top: 70px;
    margin-bottom: 0;
    font-family: 'Archivo Black';
	font-weight:bold;
    text-align: center;
}
p.title-sub {
    font-size: 16px;
    letter-spacing: .3rem;
    margin-top: 0;
    margin-bottom: 70px;
    text-align: center;
}

.topWorks-flexAll {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

.topWorks-flexAll-inner {
    position: relative;
    width: 32%;
    margin-bottom: 18px;
}


.topWorks-flexAll-inner:hover { 
	opacity: 0.6; filter: brightness(110%); }




.contact-btn {
    margin-top: 10px;
	display: inline-block;
	position: relative;
	width: 250px;
	height: 50px; 
	line-height:50px;
	text-align: center;
	text-decoration: none;
	color: #333;
    background: #eee;
    transition: all .2s;
}
.contact-btn::before {
    display: inline-block;
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: 0px;
    left: 0px;
    border-top: 1px solid #333;
    border-left: 1px solid #333;	
}
.contact-btn::after {
    display: inline-block;
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: 0px;
    right: 0px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
}
.contact-btn span::before {
    display: inline-block;
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    border-bottom: 1px solid #333;
    border-left: 1px solid #333;
}
.contact-btn span::after {
    display: inline-block;
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    border-bottom: 1px solid #333;
    border-right: 1px solid #333;	
}
.contact-btn:hover {
	cursor: pointer;
    text-decoration: none;
    background: #87cefa;
    
}


/*--------------------------------
 About
---------------------------------*/
#about {
   margin-bottom: 100px;
}

.profile {
  display: flex;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}
.profile-img {
  width: 30%;
  margin-right: 30px;
  border-radius: 50%;
}

.profile-body {
  flex: 1;
}

.profile-body p {
  font-size: 15px;
  line-height: 1.8;
}

.profile-body p:not(:last-child) {
  margin-bottom: 30px;
}


/*--------------------------------
 Contact
---------------------------------*/
#contact {
    text-align: center;
    margin-bottom: 120px;
}

form {
    max-width: 700px;
    margin: 70px auto 0;
}

.contact-item {
    overflow: hidden;
    margin-left: 20px;
}

.lavel {
    float: left;
    text-align: left;
    width: 170px;
    line-height: 45px;
    border-left: solid 6px #DEEEF7;
    padding-left: 15px;
    padding-right: 15px;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form textarea {
    display: block;
    width: 450px;
    margin-bottom: 15px;
    padding: 15px;
    border: none;
    background: #DEEEF7;
    color: #333;
}

.contact-form textarea {
    height: 150px;
}

.contact-form input[type=submit] {
    display: block;
    margin: 40px auto 0;
    width: 250px;
    height: 50px;
    line-height: 50px;
    font-size: 15px;
    border: 1px solid #333;
    text-align: center;
    background: #fff;
    transition: all .3s;
    cursor: pointer;
}

.contact-form input[type=submit]:hover {
    background: #455C81;
    color: #fff;
}

/*--------------------------------
 ページトップ
---------------------------------*/
.page-top {
  font-weight: bold;
  padding: 10px;
  cursor: pointer;
  text-align: center;
  background-color: #4c4c4c;
}

.page-top .material-icons-outlined {
  vertical-align: bottom;
  color: #fff;
}

/*--------------------------------
 フッター
---------------------------------*/
.footer {
  padding: 30px;
  background-color: #f0e68c;
}

.copyright {
  font-size: 10px;
  text-align: center;
  color: #797979;
}

/*--------------------------------
 下層：Worksページ
---------------------------------*/

/*----------------------------------------*/
/* HEADER(上部タイトルと項目箇所)
/*----------------------------------------*/
.pc-nav {
  margin-top: 50px;
}

.pc-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;/* 各リスト項目の左側にある点・を非表示 */
}

.pc-nav li {
   cursor: pointer;/* マウスを乗せると指になる */
   float: left;
   margin: 20px 20px 0 20px;/* リストの各項目の左を20px余白 */
   font-size: 12px;/* リストの項目の文字サイズは7px */
   color: #B2B0B0;/* 色指定 */
   transition: .3s;
   -webkit-transform: scale(1);
   transform: scale(1);
   font-family: "Open Sans";/* フォント指定 */
}

.pc-nav li:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  color: #000000;
}

/* 項目選択時文字色変える */
#sort li.selected {
  color: #000000;/* 色指定 */ 
}

/* カテゴリー分けフィルタリング時アニメーション */
@keyframes zoom-in {
  0% {
	transform: scale(.1);
  }
  100% {
	transform: none;
  }
}
 
.animate {
	animation: .8s zoom-in;
}


/*----------------------------------------*/
/* アーカイブ作品一覧
/*----------------------------------------*/
/* アーカイブ全体の箱 */
.workcontainer {
  display: flex;
  flex-wrap: wrap;
  margin: 40px  3%  10px;
  text-align: center;
}

.g-container {
  display: flex;
  flex-wrap: wrap;
  margin: 100px  3%  10px;
  text-align: center;
}
/* アーカイブ一つずつの箱 */
.item{
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 210px;
  margin: 10px;
  position: relative;/* 相対位置指定 */
}
/* 物件名 */
.item h3{
  font-size : 11px;/* 文字サイズ */
  color: #696969;
  margin-top: 7px;
}

.item h3:hover{
  color: #66cdaa;
}

/* ファイル名 */
.item p{
  font-size : 10px;/* 文字サイズ */
}

.item p:hover{
  color: #66cdaa;
}


/* HOME用画像 */

.sample_box{
 width: 100%;/* 画像幅 */
 height: 200px;/* 画像高さ */
 margin:0 auto; /* サンプルで中央に寄せたいので書かせていただいております。 */
 object-fit: cover;/* 大きさより大きい画像はセンター合わせでトリミングする */
 overflow:hidden; /* これを記述することではみ出た部分を非表示にします。 */
}

.sample_box img{
	transition:1s all;
}

.sample_box img:hover{
  transform:scale(1.2,1.2);
  transition:1s all;
}

/* galleery用画像 */

.item img{
	object-fit: cover;/* 大きさより大きい画像はセンター合わせでトリミングする */
    width: 100%;/* 画像幅 */
    height: 200px;/* 画像高さ */
}

/* 拡大するの文字 */
.item .caption {
	font-size: 90%;/* 文字サイズ */
	text-align: center;/* 文字位置 */
	color: #fff;/* 文字色 */
}
/* 拡大するの文字と共に出るグレー時 */
.item .mask {
	width: 100%;
	height: 200px;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;	/* マスクを表示しない */
	background-color: rgba(0,0,0,0.40);/* 色指定 */
	-webkit-transition:	all 0.6s ease;
	transition: all 0.6s ease;
}
/* マウスを乗せると拡大するが出る */
.item:hover .mask {
	opacity: 1;	/* マスクを表示する */
	padding-top: 90px;	/* ホバーで下にずらす */
}

/*----------------------------------------*/
/* 飛び出す写真
/*----------------------------------------*/
body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  outline: none;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;

  /* Image border */
  border: 4px solid white;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;

  /* Background color behind image.
     This is visible during transitions. */
  background-color: white;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../images/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 15px;
  height: 15px;
  background: url(../images/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}



/*--------------------------------
 Contacts
---------------------------------*/
  /* 文字 */
.heading-primary {
	margin-top: 30px;
	margin-bottom: 20px;
    font-size: 22px;
  }

.section-lead {
    margin-bottom: 80px;
  }



/*----------------------------------------*/
/* work
/*----------------------------------------*/

#work{
   margin-top: 100px;
   text-align: center;
   margin-bottom: 50px;
}

.tittle {
	margin-top: 30px;
    font-size: 15px;
	font-family: "Sawarabi Gothic";
	color: #3f3f3f;
  }

#work p {
    margin-bottom: 20px;
	font-size: 12px;
	
  }

#work img {
  display: inline-block;
   width: 70%;
}

/*--------------------------------
 フッター
---------------------------------*/
.footer {
  background-color: #87cefa;
}

.footer .inner {
  padding: 50px;
}

.copyright {
  font-size: 10px;
  text-align: center;
  color: #8c8c8c;
}

/*----------------------------------------*/
/* 上に戻るボタン
/*----------------------------------------*/
/* ボタンを入れている箱 */
#page_top{
  width: 85px;/* 横サイズ */
  height: 180px;/* 縦サイズ */
  position: fixed;
  right: 30px;/* 右からどのくらい開けたところに置くか */
  bottom: -50px;/* 下をどのくらい開けるか */
  border-radius: 50%;
}


/*media Queries 767
----------------------------------------------------*/
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  /* 見出し */
  .title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .lead {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  /* レイアウト */
  .wrapper {
    padding-top: 57px;
  }

  .section {
    padding: 60px 0;
  }

  .container {
    padding: 0 20px;
  }

  /* ヘッダー */
  .header .container {
    padding: 15px;
  }

  .header-logo {
    font-size: 15px;
    margin-right: 15px;
  }

  .gnav-item:not(:last-child) {
    margin-right: 10px;
  }

  .gnav-item a {
    font-size: 10px;
  }

  .gnav-item a:after {
    display: none;
  }

  /*  メインビジュアル */
  .mv {
    height: 75vh;
  }

  .mv-container {
    padding: 0 20px;
  }

  .mv-title {
    font-size: 30px;
  }
  .mv-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .mv-text {
    font-size: 14px;
    line-height: 1.7;
  }



  /* About */
  .profile {
    display: block;
  }
  .profile-img {
    width: 150px;
    margin: 0 auto;
    margin-bottom: 25px;
  }

  .profile-body p {
    font-size: 14px;
    line-height: 1.7;
  }

  .profile-body p:not(:last-child) {
    margin-bottom: 20px;
  }

  /* フッター */
  .footer {
    padding: 20px;
  }

  /* 下層ページ */
  .article {
    padding: 50px 0;
  }

  .article-body h3 {
    font-size: 16px;
    padding-left: .8em;
  }

  .article-body h3:not(:first-child) {
    margin-top: 30px;
  }

  .article-body p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
  }
}

