@charset "UTF-8";
ul {
  list-style: none;
}

a {
  text-decoration: none;
}


img {
  width: 100%;
}
h1 {
  font-family: "Times New Roman", "Franklin Gothic Medium", "Arial Narrow",
    Arial, sans-serif;
  font-weight: bold;
}


h2 {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 15px;
}

h3 {
  font-family: "Times New Roman", "Franklin Gothic Medium", "Arial Narrow",
    Arial, sans-serif;
  font-weight: bold;
}

dt,
dd {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  color: #848484;
  line-height: 1.8;
  font-size: 14px;
}

.sa {
  opacity: 0;
  transition: all 1s ease;
}

.sa.show {
  opacity: 1;
  transform: none;
}

.sa--up {
  transform: translate(0, 100px);
}

/*========= ぼかしのためのCSS ===============*/

.mainblur {
  filter: blur(8px);
}

/*========= ナビゲーションのためのCSS ===============*/

#g-nav {
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position: fixed;
  z-index: -1;
  opacity: 0; /*はじめは透過0*/
  /*ナビの位置と形状*/
  top: 0;
  width: 100vh;
  height: 100vh; /*ナビの高さ*/
  background: rgba(255, 255, 255, 0.3); /*背景を少し透過させる*/
  /*動き*/
  transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
  opacity: 1;
  z-index: 999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  display: none; /*はじめは非表示*/
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#g-nav.panelactive ul {
  display: block;
}
/*リストのレイアウト設定*/

#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #666;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

#page_top {
  width: 90px;
  height: 90px;
  position: fixed;
  right: 0;
  bottom: 0;
  opacity: 0.6;
}
#page_top a {
  position: relative;
  display: block;
  width: 90px;
  height: 90px;
  text-decoration: none;
}
#page_top a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f102";
  font-size: 25px;
  color: #333;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -40px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#page_top a::after {
  content: "PAGE TOP";
  font-size: 13px;
  color: #fff;
  position: absolute;
  top: 45px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  color: #333;
}

/* Loading背景画面設定*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #fff;
  text-align: center;
  color: #fff;
}

/* Loading画像中央配置*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定*/
#splash_logo img {
  width: 90%;
}

/* fadeUpをするアイコンの動き */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.timeline {
  max-width: 400px;
  width: 100%;
  margin: 50px auto;
  padding: 0 30px;
}

.timeline li {
  /*線の起点とするためrelativeを設定*/
  position: relative;
  list-style: none;
  padding: 0 0 5px 0;
}

.timeline dl {
  margin: 0 0 20px 3em;
}

/*絶対配置で線を設定*/
.border-line {
  /*線の位置*/
  position: absolute;
  left: 0.2em;
  top: 0;
  width: 2px; /*線の太さ*/
  height: 0; /*はじめは高さを0に*/
  background: #ccc;
}

/*タイムラインの見出し横の丸の位置と形状*/
.timeline li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: #666;
  border-radius: 50%;
}

.slider {
  /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 94%;
  margin: 0 auto;
}

.slider img {
  width: 60vw; /*スライダー内の画像を60vwにしてレスポンシブ化*/
  height: auto;
}

.slider .slick-slide {
  transform: scale(0.8); /*左右の画像のサイズを80%に*/
  transition: all 0.5s; /*拡大や透過のアニメーションを0.5秒で行う*/
  opacity: 0.5; /*透過50%*/
}

.slider .slick-slide.slick-center {
  transform: scale(1); /*中央の画像のサイズだけ等倍に*/
  opacity: 1; /*透過なし*/
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute; /*絶対配置にする*/
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #666; /*矢印の色*/
  border-right: 2px solid #666; /*矢印の色*/
  height: 15px;
  width: 15px;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: -1.5%;
  transform: rotate(-135deg);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: -1.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 0px; /*ドットボタンのサイズ*/
  height: 15px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: white;
}

.slick-dots .slick-active button {
  background: #333; /*ドットボタンの現在地表示の色*/
}

/* commonstyle */

#slider {
  width: 100%;
  height: 100vh; /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

.content {
  padding: 30px 20px;
  display: block;

}

.content_play {
  padding: 30px 20px 0px;
  display: block;
}

.content_box {
  display: flex;
  justify-content: space-between;
}

.content_title {
  font-size: 30px;
  color: #5a5a5a;
  letter-spacing: 2px;
  text-align: center;
}

.content_text {
  margin-top: 30px;
  color: #848484;
  line-height: 1.8;
  font-size: 13px;
}

.content_text_title {
  margin-top: 30px;
  color: #848484;
  line-height: 1.8;
  font-size: 14px;
  text-align: center;
}

.content:nth-of-type(odd) {
  background-color: #eeeeee;
}

/*about*/

.pc_title {
  text-align: center;
}

.about_topphotos > li.first {
  background-image: url("./Photo/Profile-1.jpg");
  margin-top: 50px;
}

.about_topphotos > li.second {
  background-image: url("./Photo/Profile-2.jpg");
}

.about_topphotos > li.third {
  background-image: url("./Photo/Profile-3.JPG");
}

.about_topphotos > li.forth {
  background-image: url("./Photo/Profile-4.png");
}

.about_topphotos {
  display: block;
  justify-content: center;
}

.about_topphotos > li {
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  background-position: center 25%;
}

.content_bar {
  position: relative;
  padding-bottom: 40px;
  text-align: center;
}
.content_bar_active {
  position: relative;
  text-align: center;
}
/*movie*/

.play_movie {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 70%;
}

.play_movie iframe {
  position: absolute;
  top: 0%;
  left: 10%;
  width: 80%;
  height: 75%;
}

/*work*/
.work_box > li {
  text-align: center;
}

.work_list_icon {
  display: inline-block;
  width: 25%;
}

.work_lost_title {
  color: #333;
  margin-top: 20px;
  font-size: 20px;
}

.work_list_text {
  color: #666;
  margin-top: 30px;
  line-height: 1.5;
}

/*blog*/

.blog_title {
  font-size: 20px;
  margin: 40px 0;
}

.blog_text {
  color: #666;
  font-size: 15px;
  margin-bottom: 20px;
}

.blog_alltext {
  flex: 1;
  text-align: center;
}

.blog_more {
  margin-top: 50px;
  text-align: center;
  height: 50px;
}

/*LANGUAGE*/

#LANGUAGE{
  display: flex;
  justify-content: end;
  margin: 10px 20px 0px;
}

.LANGUAGE {
  display: flex;
  justify-content: center;
  align-items: center;

}

/*矢印が右に移動する*/
.btnarrow4{
  /*矢印と下線の基点とするためrelativeを指定*/
position: relative;
  /*形状*/
  display: inline-block;
padding: 0 20px;
  color: #333;
  text-decoration: none;
  outline: none;
}

/*矢印と下線の形状*/
.btnarrow4::before{
  content: '';
  /*絶対配置で下線の位置を決める*/
position: absolute;
  bottom:-8px;
  left:15%;
  /*下線の形状*/    
  width: 85%;
  height: 1px;
background:#333;
  /*アニメーションの指定*/
  transition: all .3s;
}

.btnarrow4::after{
  content: '';
  /*絶対配置で矢印の位置を決める*/
position: absolute;
  bottom:-3px;
  right:0;
  /*矢印の形状*/    
  width: 15px;
  height:1px;
background:#333;
  transform: rotate(35deg);
  /*アニメーションの指定*/
  transition: all .3s;
}

/*hoverした際の移動*/
.btnarrow4:hover::before{
  left:20%;
}

.btnarrow4:hover::after{
  right:-5%;
}

.footer{
  text-align: center;
}

.txt-hide{
  display: none;
  }
  
  button.more {
  width: 120px;
  margin: 20px auto;
  display: block;
  background-color: #666;
  color: #fff;
  padding:10px 15px;
  border: none;
  outline: 0;
  transition: .5s;
  -erbkit-transition: .5s;
  }
   
  button.more::after {
  content: "SEE PHOTOS";
  transition: .2s;
  -erbkit-transition: .2s;
  }
  
  button.more.on-click::after{
  content: "CLOSE";
  }

  /*====== 9-1-1 縦線が動いてスクロールを促す =======*/

/*スクロールダウン全体の場所*/
.scrolldown1{
  /*描画位置※位置は適宜調整してください*/
position:absolute;
left:50%;
bottom:10px;
  /*全体の高さ*/
height:50px;
}

/*Scrollテキストの描写*/
.scrolldown1 span{
  /*描画位置*/
position: absolute;
left:-15px;
top: -15px;
  /*テキストの形状*/
color: #eee;
font-size: 0.7rem;
letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after{
content: "";
  /*描画位置*/
position: absolute;
top: 0;
  /*線の形状*/
width: 1px;
height: 30px;
background: #eee;
  /*線の動き1.4秒かけて動く。永遠にループ*/
animation: pathmove 1.4s ease-in-out infinite;
opacity:0;
}

/*スクロールダウン全体の場所*/
.scrolldown2{
  /*描画位置※位置は適宜調整してください*/
position:absolute;
left:50%;
bottom: 100px;
}

/*Scrollテキストの描写*/
.scrolldown2 span{
  /*描画位置*/
position: absolute;
left:-20px;
top: -15px;
  /*テキストの形状*/
color: #000;
font-size: 1rem;
letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown2::after{
content: "";
  /*描画位置*/
position: absolute;
top: 0;
  /*線の形状*/
width: 1px;
height: 30px;
background: #fff;
  /*線の動き1.4秒かけて動く。永遠にループ*/
animation: pathmove 1.4s ease-in-out infinite;
opacity:0;
}

/* 線の描写 */
.scrolldown2:after{
content:"";
  /*描画位置*/
position: absolute;
bottom:0;
left:0;
  /*線の形状*/
width:2px;
height: 50px;
background:#000;
}
/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
0%{
  height:0;
  top:0;
  opacity: 0;
}
30%{
  height:30px;
  opacity: 1;
}
100%{
  height:0;
  top:50px;
  opacity: 0;
}
}
@media screen and (max-width: 768px) {
  /* SP style */

  .pc_news {
    display: none;
  }

  .news_list {
    padding: 15px;
  }

  .news > li {
    border-bottom: 1px solid #000;
  }

  .news_header {
    display: flex;
  }

  .day {
    color: #000;
    width: 70px;
  }

  .label {
    background-color: #848484;
    border-radius: 3px;
    color: #fff;
    padding: 2px;
    margin: 0 20px;
    text-align: center;
  }
  .text {
    margin-top: 5px;
    color: #000;
  }

  /*hero*/

  .hero_title {
    position: absolute;
    top: 50%;
    width: 100%;
    padding: 0 10px;
    text-align: center;
    font-size: 40px;
    background-color: rgb(255, 255, 255, 0.5);
  }

  /*about*/

  .about_topphotos > li {
    width: 100%;
    height: 200px;
    margin-top: 40px;
  }

  .content_text {
    margin-top: 40px;
    color: #848484;
    line-height: 1.8;
    font-size: 12px;
  }

  .about_photos {
    width: 100%;
  }

  /*work*/

  .work_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .work_box > li {
    margin-top: 30px;
    width: 50%;
  }

  .work_box > li:nth-child(n + 3) {
    margin-top: 40px;
  }

  .work_lost_title {
    display: none;
  }

  /*blog*/

  .blog_photo {
    margin-top: 20px;
  }

  .blog_title {
    margin-top: 40px;
    color: #666;
  }

  .blog_text {
    margin-top: 20px;
    line-height: 1.5;
  }

  .content_bar_pc {
    display: none;
  }

  .btnlinestretches2{
    color: white;
    font-size: 15px;
    border-radius: 5px;
    padding: 4px 8px;
    background-color: #848484;
  }

  .scrolldown2{
    display: none;
  }
}
@media screen and (min-width: 769px) {
  /* PC style */

  .news {
    width: 50%;
    margin-left: 25%;
  }

  .sp_news {
    display: none;
  }
  .news_list {
    display: flex;
    justify-content: left;
    padding: 15px;
    border-bottom: 1px solid #000;
  }

  .day {
    color: #000;
    width: 80px;
  }
  .label {
    background-color: #848484;
    border-radius: 3px;
    color: #fff;
    text-align: center;
    padding: 2px 5px;
    height: 22px;
    line-height: 22px;
    margin: 0 20px;
  }
  .text {
    color: #000;
  }

  /*header*/

  .hero_title {
    position: absolute;
    top: 50%;
    width: 100%;
    padding: 0 10px;
    text-align: center;
    font-size: 60px;
    background-color: rgb(255, 255, 255, 0.5);
  }

  /*about*/

  .about_photos {
    width: 60%;
  }

  .profile {
    display: flex;
    justify-content: space-between;
  }

  .content_text {
    margin-top: 30px;
    color: #848484;
    line-height: 1.8;
    font-size: 13px;
  }

  .about_topphotos {
    align-items: center;
    flex-wrap: wrap;
  }

  .about_topphotos > li {
    height: 270px;
    margin-top: 15px;
  }

  .content_bar_pc {
    position: relative;
    padding-bottom: 40px;
  }
  .content_bar_sp {
    display: none;
  }

  .about_text {
    width: 30%;
  }

  /*work*/

  .work_box {
    margin: 40px 20% 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .work_box > li {
    width: 30%;
  }

  .work_box > li:nth-child(n + 4) {
    margin-top: 60px;
  }

  /*blog*/

  .blog_list {
    margin-top: 40px;
  }

  .blog_photo {
    width: 400px;
  }

  .blog_list > li:not(:first-child) {
    margin-top: 80px;
  }

  .blog_alltext {
    padding-top: 10px;
    flex: 1;
    text-align: center;
  }

  .blog_text {
    margin-top: 10px;
    line-height: 1.5;
  }
  .btnlinestretches2{
    /*線の基点とするためrelativeを指定*/
	position:relative;
    /*ボタンの形状*/  
	color:#333;
    padding: 10px 30px;
	display:inline-block;
    text-decoration: none;
    outline: none;
}

/*線の設定*/
.btnlinestretches2::before,
.btnlinestretches2::after {
	content:'';
    /*絶対配置で線の位置を決める*/
	position:absolute;
    /*事前に出現させる線の形状*/
	border:solid #333;
	width:10px;
	height:10px;
    /*アニメーションの指定*/
	transition:all 0.3s ease-in-out;
}

.btnlinestretches2::before{
    /*事前に出現させる線の位置*/
	top:0;
	left:0;
    /*事前に出現させる線の形状*/
	border-width:2px 0 0 2px;
}

.btnlinestretches2::after{
    /*事前に出現させる線の位置*/
	bottom:0;
	right:0;
    /*事前に出現させる線の形状*/
	border-width:0 2px 2px 0;
}

/*hoverした際の線の形状*/
.btnlinestretches2:hover::before,
.btnlinestretches2:hover::after{
	width:calc(100% - 2px);
	height:calc(100% - 2px);
	border-color:#666
}
}