@charset "utf-8";
/* CSS Document */

/* #E4D00A シトリンイエロー rgba(228,208,10,1) */
/* #494a41 文字色 千歳茶 rgba(73,74,65,1)*/
/* #fffffc 胡粉色 */

/* 共通部分-----------------------------------------*/
.pc { display: block !important; }
.sp { display: none !important; }

html {
  font-size: 100%;
}
body {
  font-family: "co-headline", "corporate-logo-ver2", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.7;
  background-image: url("../images/bg.png");
  background-size: 5%;
  background-color: rgba(255,255,255,0.3);
  background-blend-mode:lighten;
  background-repeat: repeat;
  color: #494a41;
  
}
a {
  text-decoration: none;
  color: #000000;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
}
article {
  margin-top: 100px;
}
.wrapper {
  width: 60%;
  max-width: 1100px;
  margin: 0 auto;
}

/* ハンバーガーメニュー-----------------------------------------*/
/* メニューのスタイル */
.menu {
  position: fixed;
  top: 0;
  right: -100%; /* 初期状態では画面の外に隠れている(-100%に設定) */
  width: 300px;
  height: 100%;
  background-color: rgba(228,208,10,1.0);
  color: #494a41;
  transition: right 0.3s ease; /* スライドインのアニメーション */
  padding: 20px;
  box-sizing: border-box;
  z-index: 10;
}

/* メニューが開いているとき */
.menu.open {
  right: 0;
}

/* ボタンのスタイル */
.hamburger {
  position: fixed;
  top: 50px;
  right: 50px;
  width: 30px;
  cursor: pointer;
  z-index: 20;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #333;
  margin: 5px 0;
  transition: 0.4s;
}

/* バツ印に変化するスタイル */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* メニューリストのスタイル */
.menu ul {
  padding: 0;
  margin-top: 80px;
  margin-left: 50px;
}
.menu ul li a {
  color: #494a41;
  display: block;
  margin-top: 30px;
}
.menu ul li.menu-main {
  text-decoration: underline;
  padding-bottom: 1px;
}
.menu ul li.menu-sub {
  margin-top: 20px;
}
.menu ul li.menu-icon {
  margin-top: 50px;
}
.menu ul li img {
  width: 20px;
  height: auto;
}


/* トップページ----------------------------------------------------------------*/
header #top-line {
  position: fixed;
  top: 0;
  border-top: 20px solid #494a41;
  width: 100%;
  z-index: 999;
}
header h1 {
  text-align: center;
  line-height: 1.3;
  margin-top: 50px;
  font-size: 2.2em;
}

#contents-menu {
  display: flex;
  justify-content: space-around;
  background: rgba(255,255,255,0.5);
  margin-top: 5%;
  padding: 7% 3%;
  border: 1px solid #494a41;
  border-radius: 20px;
}
#contents-menu a img {
  width: 100%;
  padding: 0 10px;
}
#contents-menu a img:hover {
  transform: translateY(-10px);
}

#contents-menu a p {
  text-align: center;
  color: #494a41;
}
/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 1s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}


#profile {
  text-align: center;
}
#profile h2 { 
  display: inline-block;
  text-align: center;
  border-bottom: 10px double #494a41;
  font-size: 1.7em;
  margin-top: 150px;
  margin-bottom: 50px;
}
#contents-profile {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
}
#contents-profile img#main-img {
  width: 25%;
  height: auto;
  border-radius: 30px;
  margin-right: 5%;
  margin-bottom: 5%;
  object-fit: cover;
}
#contents-profile #profile-text1 {
  margin-bottom: 5%;
}
#contents-profile #skill {
  width: 80%;
  margin: 5% auto 0 auto;
}

#work {
  text-align: center;
  margin-top: 0;
}
#work h2 { 
  display: inline-block;
  text-align: center;
  border-bottom: 10px double #494a41;
  font-size: 1.7em;
  margin-top: 150px;
  margin-bottom: 50px;
}
#work h3 {
  display: inline-block;
  border: 1px solid #494a41;
  padding: 0 15px 5px 15px;
  margin-bottom: 10px;
}
#work img {
  border: 5px double rgba(73,74,65,0.5);
  border-radius: 20px;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {/*左右に余白を持たせて中央寄せ*/
    margin: 5% auto;
}
.slider img {
    width: 20vw; /*スライダー内の画像を20vwにしてレスポンシブ化*/
    height: auto;
    
}
.slider .slick-slide {
	transform: scale(0.8); /*左右の画像のサイズを80%に*/
	transition: all .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: 8px; /*ドットボタンのサイズ*/
  height: 8px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc; /*ドットボタンの色*/
  margin-top: 15px;
  margin-bottom: 50px;
}
.slick-dots .slick-active button{
  background: #494a41; /*ドットボタンの現在地表示の色*/
}

/*きらっと光るボタン*/
.btnshine{
    /*キラッと光る基点とするためrelativeを指定*/
	position: relative;
    /*ボタンの形状*/	
	display:inline-block;
  background: #494a41;
  color: #FFFFFF;
  padding: 10px 20px;
  text-decoration: none;
  outline: none;
  overflow: hidden;
  border-radius: 10px;
}

/*キラッと光る*/
.btnshine::before {
	content: '';
    /*絶対配置でキラッと光るの位置を決める*/
	position: absolute;
	top: 0;
	left: -75%;
    /*キラッと光る形状*/
    width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	transform: skewX(-25deg);
}

/*hoverした際の移動のアニメーション*/
.btnshine:hover::before {
	animation: shine 0.7s;
}

@keyframes shine {
	100% {
		left: 125%;
	}
}

/* トップに戻るボタンのスタイル----------------------------------------- */
#to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border: 1px solid #494a41;
  background-color: #fffffc;
  color: #494a41;
  border-radius: 50%;/*この設定で丸型に無くせば四角になる*/
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  z-index: 999;
}

#to-top:hover {
  opacity: 0.5;/*ホバーすると色が変わる*/
  transform: translateY(-3px);/*ホバーすると浮き上がる*/
}

/* フッター-----------------------------------------*/
footer {
  position: relative;
  bottom: 0;
  width: 100%;
  background-color: #494a41;
  text-align: center;
  padding: 20px 0 10px 0;
  margin-top: 100px;
  margin-bottom: 0;
}
footer p img { /*メールアイコン*/
  width: 20px;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 3px; /*微調整*/
}
footer p.footer-text {
  color: #fffffc;
  margin: 15px 0;
  font-size: 1.1em;
}
footer #sns_logo img {
  width: 25px;
  margin: 5px 15px 30px 15px;
}
footer p small {
  color: #fffffc;
  margin-bottom: 10px;
}

/* 作品ページ--------------------------------------------------------------------------------------------------------------- */
#contents-works {
  margin-top: 30px;
}

/*==================================================
ギャラリーのためのcss
===================================*/

/*＝＝＝並び替えボタンのCSS*/
.sort-btn{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 50px 20px;
}
.sort-btn li{
  background: #fffffc;
  color: #494a41;
  border-radius: 30px;
  cursor: pointer;
  padding: 10px 20px;
  margin: 0 10px;
  border: 1px solid #494a41;
}
.sort-btn li.active{ /*ボタンに現在地＝activeというクラス名がついたら背景色を変更*/
  background: #494a41;
  color: #fffffc;
}

/*＝＝＝Muuriのレイアウトのための調整 */
.grid {
  position: relative;/*並び替えの基準点を指定*/
}

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

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


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

/*========= レイアウトのためのCSS ===============*/
ul.grid{
	margin:0;
	padding: 0;
	list-style: none;
  text-align: center;
}
ul.grid li img {
  width: 95%;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(73,74,65,0.4);
  transition: all .3s;
}
ul.grid li img:hover {
  transform: scale(1.05,1.05);
}
ul.grid li a:hover,
ul.grid li a:active{
	text-decoration: none;
}

/* 各ページ--------------------------------------------------------------------------------------------------------------- */

#page {
	margin: 100px auto;
	display: block;
	text-align: center;
}

#page img {
	width: 50%;
	margin-bottom: 10px;
}

#page p {
	margin: 100px auto 200px;
}

#page p a {
	color: #494a41;
	padding: 10px 30px;
	border: double 5px #494a41;
	border-radius: 10px;
}