@charset "UTF-8";
/* 基本
-----------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;600&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  letter-spacing: 1px;
  font-feature-settings: "palt";
  font-family: 'Barlow Condensed', 'Noto Sans JP', sans-serif;
  font-weight: 300;
  text-align: justify;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  color: var(--main_color_text);
  background-color: var(--main_color_back);
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border: none;
}
a {
  color: var(--main_color_text);
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: underline;
}
a:hover {
  opacity: 0.7;
}
/* レイアウト
-----------------------------------------------------------------------*/
.wrapper {
  width: 100%;
  position: relative;
}
section {
  max-width: 800px;
  margin: auto;
  padding: 180px 50px 0 50px;
}
@media screen and (max-width: 580px) {
  section {
    padding: 200px 30px 0 30px;
  }
}
/* ファーストビュー
-----------------------------------------------------------------------*/
.block_hero {
  position: absolute;
  width: 100%;
  height: calc(100svh - 170px);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 150px;
  left: 0;
  right: 0;
  margin: auto;
}
/*プロフフィールブロック*/
.block_profile {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  bottom: -130px;
}
.block_name_copy {
  color: var(--site_name_color);
  text-shadow: rgba(0, 0, 0, 0.10) 0 0 5px;
  margin: 0px;
}
/*profileアイコン*/
.profile {
  display: flex;
  justify-content: center;
  margin: 10px;
  width: 75px;
  height: 75px;
}
.profile img {
  display: block;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
  border: solid 6px;
  color: var(--main_color_back);
}
/*サイト名*/
h1 {
  font-size: 30px;
  letter-spacing: 6px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 300;
  text-align: center;
}
/*肩書*/
h1 span {
  display: block;
  font-size: 11px;
  letter-spacing: 4px;
  text-align: center;
}
/*キャッチコピー*/
.site_copy {
  font-size: 12px;
  letter-spacing: 3px;
  text-align: center;
}
/*SNSアイコン*/
.block_sns_icon {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-flow: wrap;
  gap: 10px;
  position: absolute;
  width: 100%;
  height: 100px;
  bottom: -220px;
  background-color: var(--main_color_back);
}
.block_sns_icon img {
  display: block;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.5


}
/*スクロールダウン アニメーション*/
.scroll_down {
  position: absolute;
  width: 100%;
  opacity: 0.9;
  bottom: 0;
  z-index: 1000;
}
.scroll_down span {
  position: absolute;
  right: 10px;
  bottom: 0;
  z-index: 2;
  padding-bottom: 60px;
  color: #fff;
  font-size: 9px;
  letter-spacing: 3px;
  writing-mode: vertical-lr;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 300;
}
.scroll_down span:before, .scroll_down span:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 55px;
}
.scroll_down span:before {
  background-color: #fff;
}
.scroll_down span:after {
  background-color: #000000;
  animation: scroll_down 1.5s ease-in-out infinite;
}
@keyframes scroll_down {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  70% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@media screen and (max-width: 580px) {
  .block_hero {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }
}
/*カテゴリーテキスト
-----------------------------------------------------------------------*/
/*タイトル*/
h2 {
  font-size: 16px;
  margin: 80px 0 3px 0;
  letter-spacing: 2px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
}
/*コピー*/
p {
  font-size: 13px;
  line-height: 1.7em;
  margin-bottom: 1em;
  letter-spacing: 2px;
  font-weight: 300;
}
/* ギャラリー
-----------------------------------------------------------------------*/
.block_gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.block_gallery img {
  cursor: pointer;
  transition: transform 0.5s ease, opacity 0.5s ease;
  border-radius: 70px;
}
.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  padding: 10%;
  object-fit: contain;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
  opacity: 1;
}
.fullscreen.hidden {
  opacity: 0;
  background-color: rgba(0, 0, 0, 1);
  transform: scale(1);
}
@media screen and (max-width: 580px) {
  .block_gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}
/* フッター
-----------------------------------------------------------------------*/
.footer_block {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  padding: 150px 30px;
}
.copyright {
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  line-height: 20px;
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
}
.copyright a {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-decoration: none
}
/* ページトップへ移動ボタン
-----------------------------------------------------------------------*/
.scroll_top {
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.scroll_top.show {
  opacity: 1;
  pointer-events: auto;
}
.scroll_top a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 15px;
  bottom: 15px;
  background-color: rgba(0, 0, 0, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.scroll_top a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.scroll_top a::after {
  content: "";
  position: absolute;
  margin: auto;
  top: 18px;
  left: 16px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  transition: 0.3s ease-in-out;
}
.scroll_top a:hover::after {
  top: 25px;
}
/* 色指定5
-----------------------------------------------------------------------*/ :root {
  --site_name_color: #948E85;
  --main_color_text: #948E85;
  --main_color_back: #291D0A;
}