@charset "UTF-8";
/* 共通のCSS */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1.5;
  background-color: #fff;
  color: #6b6a6a;
  
  --webkit-text-size-adjust:100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  

}

#wrapper {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}



figure {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
  z-index: 0;
}



.slideshow-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background: no-repeat 50% 50%;
  background-size: cover;
  animation: loading 2.5s;
  
}

/* ロゴ */
h1 {
  position: fixed;
  width: 150px;
  top:15px;
  left: 15px;
  z-index: 9900;
  animation: loading 4s;
}

@keyframes loading {
	0% {opacity: 0;
    visibility: hidden;}
	100% {opacity: 1;
  visibility: visible;}
}

#top_main {
  height: 100vh;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
}

/* ナビゲーション */
#top_main #guide {
  position: absolute;
  width: 100%;
  z-index: 20000;
  font-weight: bold;
}

#top_main #guide nav ul li {
  display: block;
  height: 40px;
}
#top_main #guide nav ul li a {
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  font-size: 1.3rem;
  font-family: "Arsenal SC", serif;
  font-weight: 400;
  font-style: normal;
}
#top_main #guide nav ul li a span {
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  padding-left: 7px;
}
#top_main #guide nav ul li a:hover {
  color: #697663;
}

/* インスタロゴ */
#top_main #guide nav ul li a figure img{
  width: 20px;
  height: 20px;
  margin: 0 auto;
}
/* ファーストビュー */
#top_main figure img {
  position: relative;
  z-index: 0;
  height: 100dvh;
  -o-object-fit: contain;
     object-fit: contain;
}

/* 要素をふわっと表示する */
.element {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.6s, visibility 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, visibility 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, visibility 0.6s, transform 0.6s;
  transition: opacity 0.6s, visibility 0.6s, transform 0.6s, -webkit-transform 0.6s;
}

/* フェードイン時に入るクラス */
.is-fadein {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
































/* スマホ用CSS */




/* ハンバーガーメニュークリック前 */
/* クリックエリアと位置を指定 ---------------------- */
.btnHamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px; /* クリックエリアの横幅*/
  height: 20px; /* クリックエリアの高さ*/
  cursor: pointer;
  z-index: 40000;
}

/* 3本線の1本ごとに共通するスタイルを指定 ---------------------- */
.btnHamburger .line {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 30px; /* 横幅 */
  height: 1px; /* 1本辺りの高さ */
  background: #000000; /* 線の色 */
  /* 適用するプロパティ、変化する時間、変化する速度 */
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

/* 3本線の各線の位置を指定 ---------------------- */
.btnHamburger .line_01 {
  top: 0px;
}

.btnHamburger .line_02 {
  top: 8px;
}

.btnHamburger .line_03 {
  top: 16px;
}

/* ハンバーガーメニュークリック前ここまで */
/* ナビゲーションクリック前 */
nav {
  position: fixed;
  top: 60px;
  left: -100%;
  width: 100%;
  opacity: 0;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  text-align: center;
}

/* ナビゲーションクリック前ここまで */
/* #coverlayerクリック前 */
#coverlayer {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  /* width: -100%; */
  opacity: 0;
  background-color: #ffffff;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  z-index: 0;
}

/* #coverlayerクリック前ここまで */
/* ハンバーガーメニュークリック後 */
/* 最上部の線のスタイル ---------------------- */
.btnHamburger.is-active .line_01 {
  top: 8px; /* 上から2番目の線の位置に変更 */
  background-color: #000000;
  /* 線を45度回転 */
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* 上から2番目の線のスタイル ---------------------- */
.btnHamburger.is-active .line_02 {
  opacity: 0; /* 不透明度を下げて線を消す */
}

/* 最下部の線のスタイル ---------------------- */
.btnHamburger.is-active .line_03 {
  top: 8px; /* 上から2番目の線の位置に変更 */
  background-color: #000000;
  /* 線を135度回転 */
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

/* ハンバーガーメニュークリック後ここまで */
/* ナビゲーションクリック後 */
nav.is-active {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 1;
  width: 100%;
}

/* ナビゲーションクリック後ここまで */
/* #coverlayerクリック後 */
#coverlayer.is-active {
  width: 100%;
  opacity: 0.8;
  left: 0;
  z-index: 10000;
}

/* #coverlayerクリック後ここまで */





main {
  position: relative;
}


main article {
  padding-left: 40px;
  padding-right: 40px;
  text-align: left;
  letter-spacing: 0.02em;
}


/* ギャラリーをタイル状に並べる */
#gallery #yokonarabi{
    display: flex;
    flex-wrap: wrap;
    animation: loading 4s;
  }
#gallery #yokonarabi .card-wrapper{
  flex-grow: 1;
}
#gallery #yokonarabi .card-wrapper section {
  animation: loading 3s;
}

#gallery #yokonarabi img {
  object-fit: cover;
  height: 300px;
  padding: 2px;
}

/* 画像のリンク */
#gallery a{
  text-decoration: none;
}
/* 画像のホバー時のアニメーション */
#gallery a:hover figure{
  opacity: 0.2;
  transition-duration: .5s;
}




#news #yokonarabi3 section {
  padding: 7px;
  width: 100%;
  animation: loading 4s;
}




#news #yokonarabi3 a {
  text-decoration: none;
  color: #000;
  font-weight: normal;
}
#news #yokonarabi3 a h4 {
  margin-top: 10px;
}
#news #yokonarabi3 a p {
  text-decoration: none;
  color: #a2a2a2;
  font-weight: normal;
  font-size: 1.2rem;
  margin-top: 10px;
}
#news #yokonarabi3 a:hover {
  opacity: 0.4;
  transition-duration: .5s;
}
/* お知らせ非表示 */
/* #news_center {
  display: none;
}
#news_right {
  display: none;
} */



/* view　more 実装してから*/
/* #news h5{
  position: relative;
  font-family: "Arsenal SC", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
  border-bottom: 1px solid #000000;
	width: fit-content;
  color: #000;
  margin: 20px auto;
}
#news h5 a::after {
	content: ">";
	margin-left: 20px;
}
#news h5 span{
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
}
#news h5 a{
  color: #000;
  text-decoration: none;
}
#news h5 a:hover {
  color: #ccc;
}
#news h5:hover {
  border-bottom: 1px solid #ccc;
} */


/* view　more 実装する前*/
#news h5{
  position: relative;
  font-family: "Arsenal SC", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
  border-bottom: 1px solid #ccc;
	width: fit-content;
  color: #ccc;
  margin: 20px auto;
}
#news h5 a::after {
	content: ">";
	margin-left: 20px;
}
#news h5 span{
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
}
#news h5 a{
  color: #ccc;
  text-decoration: none;
  pointer-events: none;
}





/* お問い合わせ */
#contact {
  position: relative;
  margin-bottom: 100px;
}

#contact a{

  font-size: 1.9rem;
  color: #fff;
  background-color: #a2917f;
  border-radius: 5px;
  text-decoration: none;
  height: 30px;
  padding: 5px 15px 8px 15px;
  font-weight: 500;
  letter-spacing: 0.03em;

}

#contact a:hover{


  color: #fff;
  background-color: #bbb;

}

#contact p{
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
}
#contact #mailadress {
  text-align: center;
  margin-bottom: 80px;
}

/* 依頼内容テンプレート */
#contact #condition {
  background: #f4f4f4;

  padding: 30px;
}
#contact h4{
  text-decoration: none;
  color: #000;
  font-size: 1.5rem;
  font-weight: 500;
}
#contact figure {
text-align: right;
padding-top: 50px;
}

#contact figure img {
  width: 350px;
  text-align: right;

}


/* プロフィール */
#about {
  position: relative;
  margin-bottom: 100px;
}


/* 名前 */
#about h5{
  font-family: "Karla", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
  color: #000;
}
/* 漢字の名前 */
#about span{
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 2rem;
  color: #000;
}
/* 肩書き */
#about p {
  font-size: 1.4rem;
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 50px;
}
#about .yokonarabi2 aside a{

  font-size: 1.6rem;
  color: #fff;
  background-color: #a2917f;
  border-radius: 5px;
  text-decoration: none;
  height: 30px;
  padding: 6px 15px 7px 15px;
  font-weight: bold;
  font-family: "Arsenal SC", serif;
  font-weight: 600;
  letter-spacing: 0.09em;

}
#about .yokonarabi2 aside a span {
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 0em;
  color: #fff;
}

#about .yokonarabi2 aside a:hover {


  color: #fff;
  background-color: #bbb;

}



/* プロフィール文章 */
#about aside {
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 50px;
}

 #about aside a {
  color: #bbb;
 }

#about figure {
/*   position: relative;
  width: 80%; */
}
/* 作業環境画像 */
#about #desk {
  display: none;
}
/* プロフィール前の画像 */
#about #kirin img{
  width: 300px;
  margin-bottom: 40px;
}


/* フッター */
footer {
  background: #f4f4f4;
  text-align: center;
  
}
/* ロゴ */
footer h1 {
  width: 200px;
  margin: auto;
  padding: 30px;
  z-index: 1000;
  position: relative;
  top:0px;
  left: 0px;
}
footer #footer_nav {
  font-weight: bold;
  position: relative;
  z-index: 9000;
  margin-bottom: 100px;
  margin: auto;

  

}
footer #footer_nav li {
  height: 70px;
}
footer #footer_nav li a {
  text-decoration: none;
  color: #000;
  font-size: 2rem;
  font-family: "Arsenal SC", serif;
  font-weight: 400;
  font-style: normal;
}
footer #footer_nav li a span{
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
}
footer #footer_nav li a:hover {
  color: #a2917f;
}
footer #footer_nav #privacy a span {
  font-size: 1.2rem;
  color: #9f9f9f;
  font-weight: normal;
  text-decoration: underline;

}
footer #footer_nav #privacy {
  height: 30px;

}
footer #footer_nav #privacy a span:hover {
  color: #a2917f;
}


footer small {
  font-size: 1.2rem;
  color: #9f9f9f;
  font-weight: normal;

}


/* 各項目タイトル */

/* 英語 */
main h3 {
  color: #000000;
  font-weight: bold;
  font-size: 4.5rem;
  line-height: 1;
  
  padding-top: 100px;

  font-family: "Arsenal SC", serif;
  font-weight: 400;
  font-style: normal;
/*   margin-left: 10px; *//* 左寄せの時 */
  text-align: center;/* 中央よせ */
  margin-bottom: 5px;
}
/* 日本語タイトル */
main h2 {
  color: #000000;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 2;
  position: relative;
  /* margin-left: 10px; *//* 左寄せの時 */
  text-align: center;/* 中央よせ */
  padding-bottom: 10px;

  
}
/* 境目の線、あしらい */
.border{
  margin: auto;/* 中央よせ */
  padding-bottom: 4px;
  margin-bottom: 120px;
  /* margin-left: 10px; *//* 左寄せの時 */
}

.border02{
  border-bottom: solid 1px #000;
  animation: border_anim 0.5s linear forwards;
}
@keyframes border_anim {
	0%{
		width: 0%;
	}
	100%{
		width: 3%;
	}
}
#background_right {

  position: absolute;
  top: 150px;

}

#background_left {

  position: absolute;
  top: 10px;

}





/* 左よせのときの見出し調整 */
/* #contact h3 {
  margin-left: 0px;
}
#contact h2 {
  margin-left: 0px;
}
#contact .border{
  margin-left: 0px;

}
#about h3 {
  margin-left: 0px;
}
#about h2 {
  margin-left: 0px;
}
#about .border{
  margin-left: 0px;

} */





















/* タブレット */
@media screen and (min-width: 600px) {

/* ギャラリーのタイルの高さ調節 */
  #gallery #yokonarabi img {
  height: 380px;
}
#gallery #yokonarabi {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  gap: 1px 1px;
}
#gallery #yokonarabi .card-wrapper {
  width: 100%;
}


#news #yokonarabi3 {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  gap: 1px 1px;

}
#news #yokonarabi3 section {
  width: 100%;
}




  #about #yokonarabi_profile {
    display: flex;
    justify-content: space-between;
    
    
  }

  #about #yokonarabi_profile #p_2 {
    /* border-left: solid 1px #ddd; */
    padding-left: 100px;
    width: 50%;
  }

  #background_right {

  position: absolute;
  top: 100px;

}

#background_left {

  position: absolute;
  top: 10px;

}

  .wrap {
    width: 70%;
    margin: auto;
  }

}

























/* PC */
@media screen and (min-width: 960px) {
  #top_main h2 {
    font-size: 1.5rem;
    line-height: 2;
  }

  /* ナビゲーション */
  nav {

    opacity: 1;
    margin-left: auto;
    width: 70%;
    position: fixed;
    top: 20px;
    right: 5px;
    height: 20%;
    z-index: 40001;
    -webkit-animation: SlideIn 1.6s infinite;
            animation: SlideIn 1.6s infinite;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
            
            
    /* CSSアニメーションの設定 */
  }
  @-webkit-keyframes SlideIn {
    0% {
      opacity: 0; /*初期状態では透明に*/
      -webkit-transform: translateX(64px);
              transform: translateX(64px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
  }
  @keyframes SlideIn {
    0% {
      opacity: 0; /*初期状態では透明に*/
      -webkit-transform: translateX(64px);
              transform: translateX(64px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
  }
  #top_main #guide nav {
    height: 40px;
  }
  nav ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: right;
            margin:0 0 0 auto;
    
  }
  nav ul li {
    width: 160px;
  }
  nav ul li a {
    display: block;
    border-right: 1px solid #292626;
    text-align: center;

  }
  nav ul li:nth-child(3) {
    width: 240px;
  }
  nav ul li:nth-child(4) {
    width: 180px;
  }
    nav ul li:nth-child(5) {
    width: 200px;
  }
  #top_main #guide nav ul li:nth-child(5) a {
    font-weight: bold;
  }
  #top_main #guide nav ul li:nth-child(5) a span {
    font-weight: 500;
  }


  nav ul li:last-child {
    width: 50px;
  }
  
  nav ul li:last-child a {
    border-right: 0;

  }
  .btnHamburger {
    display: none;
  }
  

/* 敷き詰め画像の高さ調節 */
  #gallery #yokonarabi img {
  height: 400px;
}
#gallery #yokonarabi {
  display: grid;
  grid-template-columns: repeat(3, 33%);
  gap: 1px 1px;
}
#gallery #yokonarabi .card-wrapper {
  width: 100%;
}


#news #yokonarabi3 {
  display: grid;
  grid-template-columns: repeat(3, 33%);
  gap: 1px 1px;
}
#news #yokonarabi3 section {
  width: 100%;
}


/* プロフィールのレイアウト */
  #about .yokonarabi2{
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  #about #name{
    width: 250px;
    display: block;
  }


  #about aside{
    display: block;
  }
  #about figure{
/*   width: 40%; */
}
  #about #kirin img{
    width: 400px;
    display: block;
  }


  #background_right {

  position: absolute;
  top: 10px;

}

#background_left {

  position: absolute;
  top: 10px;

}







  .wrap {
    width: 60%;
    margin: auto;
  }
}/*# sourceMappingURL=style.css.map */