@charset "UTF-8";
/* CSS Document */
/*統一事項 */
.container p, .container li, .works p, .works li, .about p, .about li, .biography p, .biography li, .profile p, .profile li, .statment p, .statment li, .contact p, .contact li {
  font-size: 14px;
  letter-spacing: 2px;
  font-family: 'Noto Sans JP', sans-serif; }

.container h1 {
  font-size: 40px;
  font-family: 'Cormorant', serif;
  letter-spacing: 5px;
  padding-left: 70px;
  margin-top: 100px; }

.container h2, .works h2, .about h2, .biography h2, .profile h2, .contact h2 {
  font-size: 22px;
  text-align: center;
  font-family: 'Cormorant', serif;
  letter-spacing: 3px;
  margin-top: 200px;
  margin-bottom: 70px; }

/*画面遷移でフェードイン用 */
header {
  display: none; }

/*リンク */
a {
  text-decoration: none; }

a:link {
  color: #000000; }

a:visited {
  color: #000000; }

a:hover {
  color: #80888E; }

a:active {
  color: #C6CACC; }

/*全体 */
.container {
  max-width: 1000px;
  width: 90%;
  overflow: hidden;
  margin: 0 auto; }

.left {
  width: 60%;
  max-width: 600px;
  float: left; }
  .left img {
    width: 100%; }

.right {
  width: 40%;
  max-width: 400px;
  float: right; }
  .right img {
    width: 100%; }

/*トップ*/
.topimg {
  max-width: 600px;
  min-width: 200px; }

/*グローバルナビ*/
.gnav {
  margin-left: 40px; }
  .gnav li {
    font-family: 'Cormorant', serif;
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 30px;
    list-style: none; }

/*statment*/
.statment {
  overflow: hidden;
  margin: 0 auto; }

/*works*/
.works {
  width: 70%;
  overflow: hidden;
  margin: 0 auto; }

.rightimg {
  max-width: 250px;
  margin-left: auto; }

.leftimg {
  max-width: 450px;
  margin: 0,auto; }

/*==================================================
ギャラリーのためのcss
===================================*/
/*＝＝＝並び替えボタンのCSS*/
.sort-btn {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0px 20px 20px 20px; }

.sort-btn li {
  list-style: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
  margin: 0 10px;
  line-height: 20px; }

.sort-btn li.active {
  /*ボタンに現在地＝activeというクラス名がついたら背景色を変更*/ }

/*横幅が480px以下になった際の指定*/
@media only screen and (max-width: 480px) {
  .sort-btn {
    justify-content: space-between; }

  .sort-btn li {
    width: 25%;
    margin: 0 0 10px 0;
    text-align: center; } }
/*＝＝＝Muuriのレイアウトのための調整 */
.grid {
  position: relative;
  /*並び替えの基準点を指定*/ }

/*各画像の横幅などの設定*/
.item {
  display: block;
  position: absolute;
  width: 20%;
  /*横並びで3つ表示*/
  z-index: 1;
  list-style: none; }

/*内側のボックスの高さが崩れないように維持*/
.item-content {
  position: relative;
  width: 100%;
  height: 100%; }

/*画像の横幅を100%にしてレスポンシブ化*/
.grid img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  /*画像の下にできる余白を削除*/ }

/*横幅が768px以下になった際の指定*/
@media only screen and (max-width: 768px) {
  .item {
    width: 33.2%;
    /*横並びで2つ表示*/ } }
/*＝＝＝fancyboxサムネイル背景と画像選択時の枠線の指定*/
.fancybox-thumbs {
  background: transparent !important; }

.fancybox-thumbs__list a:before {
  border: 6px solid #FA999B; }

/* 続きを読む2*/
.readmore2 {
  position: relative;
  box-sizing: border-box; }

.readmore-content2 {
  position: relative;
  overflow: hidden;
  /*以下お好み*/
  /*高さの初期値*/
  height: 700px; }

.readmore-content2::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  content: "";
  z-index: 2;
  /*以下お好み グラデーションの色と高さ 高さはreadmoreのheight以下にすること*/
  height: 300px;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.8) 50%, #FFFFFF 100%);
  background: linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.8) 50%, #fff 100%); }

/* 続きを読むボタン2 */
.readmore-label2 {
  display: table;
  bottom: 5px;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  margin: 0 auto;
  z-index: 3;
  padding: 0 10px;
  color: #000000;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  letter-spacing: 1px; }

.readmore-label2:before {
  content: '+more'; }

.readmore-check2 {
  display: none; }

/*チェック時にボタンを非表示*/
.readmore-check2:checked ~ .readmore-label2 {
  position: static;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  /* 「続きを読む」を押した後、元に戻す必要がない場合は、上のオプションを消してこの1行だけにする */
  /* display: none; */ }

.readmore-check2:checked ~ .readmore-label2:before {
  content: '-close'; }

/*チェック時に高さを自動に戻す*/
.readmore-check2:checked ~ .readmore-content2 {
  height: auto; }

/*チェック時グラデーション等を削除*/
.readmore-check2:checked ~ .readmore-content2::before {
  display: none; }

/*About*/
.text {
  margin-top: 50px;
  margin-bottom: 300px; }

.aboutlist li {
  padding: 0; }

/*About 矢印*/
a.btn_03 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 15px;
  position: relative;
  background: #778899;
  border: 1px solid #778899;
  border-radius: 30px;
  box-sizing: border-box;
  padding: 0 25px 0 20px;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  transition-duration: 0.3s;
  margin-left: auto; }

a.btn_03:before {
  content: '';
  width: 4px;
  height: 4px;
  border: 0;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 80%;
  right: 7px;
  margin-top: -6px; }

a.btn_03:hover {
  background: #fff;
  color: #778899; }

a.btn_03:hover:before {
  border-top: 2px solid #778899;
  border-right: 2px solid #778899; }

/*Biograohy*/
table {
  border-collapse: collapse;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif; }

/* 続きを読む*/
.readmore {
  position: relative;
  box-sizing: border-box; }

.readmore-content {
  position: relative;
  overflow: hidden;
  /*以下お好み*/
  /*高さの初期値*/
  height: 900px; }

.readmore-content::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  content: "";
  /*以下お好み グラデーションの色と高さ 高さはreadmoreのheight以下にすること*/
  height: 400px;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.8) 50%, #FFFFFF 100%);
  background: linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.8) 50%, #fff 100%); }

/* 続きを読むボタン */
.readmore-label {
  display: table;
  bottom: 5px;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  margin: 0 auto;
  z-index: 2;
  padding: 0 10px;
  color: #000000;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  letter-spacing: 1px; }

.readmore-label:before {
  content: '+more'; }

.readmore-check {
  display: none; }

/*チェック時にボタンを非表示*/
.readmore-check:checked ~ .readmore-label {
  position: static;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  /* 「続きを読む」を押した後、元に戻す必要がない場合は、上のオプションを消してこの1行だけにする */
  /* display: none; */ }

.readmore-check:checked ~ .readmore-label:before {
  content: '-close'; }

/*チェック時に高さを自動に戻す*/
.readmore-check:checked ~ .readmore-content {
  height: auto; }

/*チェック時グラデーション等を削除*/
.readmore-check:checked ~ .readmore-content::before {
  display: none; }

/*フッター*/
.contact {
  text-align: center;
  margin-top: 400px;
  margin-bottom: 50px; }
  .contact p {
    font-size: 10px;
    letter-spacing: 2px; }

.line {
  border-bottom: solid;
  border-color: #000000;
  border-width: 1px; }

/*トップへ戻る*/
#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #80888E;
  opacity: 0.6;
  border-radius: 50%; }

#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none; }

#page_top a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center; }

/*ポップアップ*/
.popup_wrap input {
  display: none; }

.popup_overlay {
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #ffffff;
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0); }

.popup_trigger {
  position: absolute;
  width: 100%;
  height: 100%; }

.popup_content {
  position: relative;
  align-self: center;
  width: 75%;
  max-width: 800px;
  box-sizing: border-box;
  background: #fff;
  line-height: 1.4em;
  transition: 0.5s;
  box-shadow: 0 0 5px rgba(94, 94, 94, 0.2); }

.popup_content p {
  padding: 30px 30px 20px 30px;
  text-align: left; }

.close_btn {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 30px;
  cursor: pointer;
  color: #757575; }

.popup_wrap input:checked ~ .popup_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s; }

.open_btn {
  border-radius: 3px;
  cursor: pointer;
  transition: .3s ease;
  padding: 5px 15px;
  font-weight: bold; }

.open_btn:hover {
  color: #959595;
  transition: .3s ease; }

/*スクロールでフェードイン*/
/* 画面外にいる状態 */
.fadein {
  opacity: 0;
  transform: translate(0, 10px);
  transition: all 2000ms; }

/* 画面内に入った状態 */
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0); }

/*PC用*/
@media screen and (min-width: 481px) {
  .pc {
    display: block !important; }

  .sp {
    display: none !important; } }
/*スマホ用*/
@media screen and (max-width: 480px) {
  .pc {
    display: none !important; }

  .sp {
    display: block !important; }

  .container h1, .works h1, .about h1, .biography h1, .profile h1, .statment h1, .contact h1 {
    font-size: 30px;
    letter-spacing: 3px;
    margin-top: 50px;
    text-align: center;
    padding-left: 0px; }
  .container h2, .works h2, .about h2, .biography h2, .profile h2, .statment h2, .contact h2 {
    font-size: 20px;
    margin-top: 100px;
    margin-bottom: 20px; }
  .container P, .works P, .about P, .biography P, .profile P, .statment P, .contact P {
    font-size: 13px;
    line-height: 20px; }
  .container li, .works li, .about li, .biography li, .profile li, .statment li, .contact li {
    font-size: 13px;
    line-height: 20px; }
  .container ul, .works ul, .about ul, .biography ul, .profile ul, .statment ul, .contact ul {
    padding: 0; }

  .gnav li {
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 30px; }

  table {
    font-size: 13px;
    line-height: 20px; }

  .contact {
    margin-top: 200px;
    margin-bottom: 20px; }
    .contact p {
      font-size: 7px;
      margin-top: 100px; }

  .sort-btn li {
    padding: 2px; }

  .left {
    width: 100%; }
    .left img {
      width: 60%;
      margin: 0 auto;
      margin-bottom: 50px; }

  .right {
    width: 100%; }
    .right img {
      width: 60%;
      margin: 0 auto;
      margin-bottom: 50px; }

  .topimg {
    text-align: center; }
    .topimg img {
      width: 90%;
      margin-bottom: 20px; }

  .works {
    width: 100%; } }
