@charset "UTF-8";

/*-----------------------------------------------------*/
/* PC用 */
/*-----------------------------------------------------*/
@media only screen and (min-width: 1025px) {


.container {
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    font-family: "DM Serif Text", serif;
}

.header {
    width: 100%;
    display: flex;
}

.header1 {
    width: 30%;
    margin-left: 30px;
}

.header1 img {
    width: 50%;
}

.header2 {
    width: 70%;
    margin-top: 70px;
}

.header2 ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.header2 a {
    text-decoration: none;
}

.header2 img {
    width: 30px;
}

.btn {
    display: none;
}

.color {
    width: 100%;
    margin: 0 auto;
    background-color: rgb(255, 250, 194);   
}

.top {
    width: 95%;
    height: 600px;
    margin-left: 70px;
    position: relative;
    font-family: "Miltonian Tattoo", serif;
}

.top h1 {
    position: absolute;
    top: 300px;
    left: -3%;
    font-size: 50px;
}

.top img {
    width: 95%;
    padding-top: 30px;
    padding-left: 150px;
}

.pr {
    width: 95%;
    margin: 0 auto;
    margin-top: 50px;
}

.pr1 {
    width: 100%;
    margin: 0 auto;
}

.pr1 img {
    width: 70%;
    padding-top: 100px;
    padding-left: 350px;
}

.pr1 h2 {
    padding-top: 50px;
    padding-bottom: 30px;
    text-align: center;
    font-size: 36px;
}

.profile {
    width: 95%;
    margin: 0 auto;
    display: flex;
    margin-top: 20px;
}

.profile1 {
    width: 50%;
    margin-left: 20px;
}

.profile1 img {
    width: 100%;
}

.profile2 {
    width: 40%;
    margin-left: 20px;
    margin-top: 20px;
    position: relative;
    color: peru;
}

.profile2 img {
    width: 40%;
    position: absolute;
    top: 20px;
    left: 80%;
}

.profile2 h2 {
    padding-left: 30px;
    font-size: 30px;
}

.profile2 h3 {
    padding-top: 20px;
    padding-left: 30px;
}

.profile2 p {
    padding-top: 20px;
    padding-left: 30px;
    font-size: 15px;
}


.title {
    width: 100%;
    text-align: center;
    margin-top: 50px;
    background-color: #fff;
}

.title h2 {
    padding-top: 40px;
    padding-bottom: 30px;
    font-size: 36px;
}

.skill {
    width: 95%;
    margin: 0 auto;
    display: flex;
}

.skill1 {
    width: 45%;
    display: flex;
}

.sk1 img {
    width: 50%;
    margin-top: 20px;
    margin-bottom: 50px;
}

.sk2 {
    width: 50%;
    margin-top: 30px;
}

.sk2 h3 {
    font-size: 30px;
}

.sk2 p {
    padding-top: 20px;
    padding-left: 30px;
    text-align: left;
    font-size: 18px;
}

.skill2 {
    width: 45%;
    display: flex;
}

.sk3 img {
    width: 50%;
    margin-top: 20px;
    margin-bottom: 50px;
}

.sk4 {
    width: 50%;
    margin-top: 30px;
}

.sk4 h3 {
    font-size: 30px;
}

.sk4 p {
    padding-top: 20px;
    padding-left: 50px;
    text-align: left;
    font-size: 18px;
}

.sk p {
    padding-top: 30px;
    padding-bottom: 50px;
}
.portfolio {
    width: 95%;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 50px;
}

.portfolio h2 {
    text-align: center;
    padding-bottom: 30px;
    font-size: 36px;
}

.image_link{
    display:block; 
    position:relative;
    text-decoration:none;
   }
   .image_link img{
     display:block;
     width:100%;
   }
   .image_link:before{
     content:"";
     display:block;
     width:100%;
     height:100%;
     position:absolute;
     z-index:2;
     background:#000;/*好みの色に変えてください。*/
     opacity:0;
     transition:0.3s;
   }
   .image_link:after{
     content:"READ MORE";/*好みの文章に変更してください。*/
     display:block;
     color:#fff;
     line-height:48px;
     width:180px;
     border:solid 1px #fff;
     border-radius:5px;
     text-align:center;
     position:absolute;
     top:50%;
     left:50%;
     margin-top:-1em;
     margin-left:-90px;
     opacity:0;
     z-index:3;
     transition:0.3s;
     font-weight:bold;
     letter-spacing:0.2em;
   }
   .image_link:hover:before{
     opacity:0.5;
   }
   .image_link:hover:after{
     opacity:1;
     margin-top:-0.5em;
   }
   





/*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
    width:80%;
    margin:0 auto;
    margin-top: 30px;
}

.slider img {
    width:25vw;/*スライダー内の画像を60vwにしてレスポンシブ化*/
    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;/*ドットボタンの色*/
}

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


/*========= レイアウトのためのCSS ===============*/

ul{
	margin:0;
	padding: 0;
	list-style: none;
}









.contact {
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
}

.contact h2 {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 30px;
    font-size: 36px;
}

.contact p {
    text-align: center;
    padding-top: 20px;
    font-size: 15px;
}

.button018 {
    width: 95%;
    margin: 0 auto;
    margin-top: 30px;
}





/* 018 */
.button018 a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 225px;
    padding: 10px 0px 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}

.button018 a:before, .button018 a:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
}
.button018 a:before {
  width: 0.5rem;
  height: 0.5rem;
  left: 1.1rem;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  z-index: 2;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}
.button018 a:after {
  left: 0;
  background: #ffba6b;
  z-index: 1;
  width: 3rem;
  height: 3rem;
  border-radius: 4rem;
  transform: translateY(-50%);
  transition: all 0.5s;
}
.button018 a span {
  position: relative;
  transition: all 0.3s;
  z-index: 3;
}

.button018 a:hover span {
  color: #fff;
}
.button018 a:hover:before {
  left: 2rem;
}
.button018 a:hover:after {
  right: 0;
  width: 100%;
}






.footer {
    width: 100%;
    margin-top: 30px;
}

.footer ul {
    height: 100px;
    padding-top: 70px;
    padding-bottom: 70px;
    display: flex;
    justify-content: space-around;
    list-style: none;   
}

.footer a {
    text-decoration: none;
}

.footer img {
    width: 30px;
}

.footer p {
    text-align: center;
    background-color: rgb(255, 250, 194);   
}

}









/*-----------------------------------------------------*/
/* タブレット用のCSS */
/*-----------------------------------------------------*/
@media only screen and (min-width:600px) and (max-width:1024px) {
    .container {
        width: 100%;
        margin: 0 auto;
        background-color: #fff;
        font-family: "DM Serif Text", serif;
    }
    
    .header {
        width: 100%;
        display: flex;
    }
    
    .header1 {
        width: 30%;
        margin-left: 30px;
    }
    
    .header1 img {
        width: 50%;
    }
    
    .header2 {
        width: 70%;
        margin-top: 50px;
    }
    
    .header2 ul {
        display: flex;
        justify-content: space-around;
        list-style: none;
    }
    
    .header2 a {
        text-decoration: none;
    }
    
    .header2 img {
        width: 20px;
        padding-top: 3px;
    }

    .btn {
        display: none;
    }
    
    .color {
        width: 100%;
        margin: 0 auto;
        background-color: rgb(255, 250, 194);   
    }
    
    .top {
        width: 95%;
        margin-left: 50px;
        position: relative;
        font-family: "Miltonian Tattoo", serif;
    }
    
    .top h1 {
        position: absolute;
        top: 200px;
        left: -3%;
        font-size: 40px;
    }
    
    .top img {
        width: 95%;
        padding-top: 30px;
        padding-left: 100px;
    }
    
    .pr {
        width: 95%;
        margin: 0 auto;
        margin-top: 30px;
    }
    
    .pr1 {
        width: 100%;
        margin: 0 auto;
    }
    
    .pr1 img {
        width: 70%;
        padding-top: 50px;
        padding-left: 230px;
    }
    
    .pr1 h2 {
        padding-top: 50px;
        padding-bottom: 30px;
        text-align: center;
        font-size: 36px;
    }
    
    .profile {
        width: 95%;
        margin: 0 auto;
        display: flex;
        margin-top: 20px;
    }
    
    .profile1 {
        width: 50%;
    }
    
    .profile1 img {
        width: 100%;
    }
    
    .profile2 {
        width: 40%;
        margin-left: 20px;
        position: relative;
        color: peru;
    }
    
    .profile2 img {
        width: 40%;
        position: absolute;
        top: 40px;
        left: 80%;
    }
    
    .profile2 h2 {
        padding-left: 30px;
        font-size: 20px;
    }
   
    .profile2 h3 {
        padding-top: 10px;
        padding-left: 30px;
    }
    
    .profile2 p {
        padding-top: 10px;
        padding-left: 30px;
        font-size: 12px;
    }
    
    
    .title {
        width: 100%;
        text-align: center;
        margin-top: 50px;
        background-color: #fff;
    }
    
    .title h2 {
        padding-top: 50px;
        padding-bottom: 30px;
        font-size: 36px;
    }
    
    .skill {
        width: 100%;
        margin: 0 auto;
        display: flex;
    }
    
    .skill1 {
        width: 45%;
        display: flex;
    }
    
    .sk1 img {
        width: 50%;
        margin-top: 20px;
        margin-bottom: 30px;
    }
    
    .sk2 {
        width: 50%;
        margin-top: 30px;
    }
    
    .sk2 h3 {
        font-size: 18px;
    }
    
    .sk2 p {
        padding-top: 15px;
        padding-left: 10px;
        text-align: left;
        font-size: 12px;
    }
    
    .skill2 {
        width: 45%;
        display: flex;
    }
    
    .sk3 img {
        width: 50%;
        margin-top: 20px;
        margin-bottom: 30px;
    }
    
    .sk4 {
        width: 50%;
        margin-top: 30px;
    }
    
    .sk4 h3 {
        font-size: 18px;
    }
    
    .sk4 p {
        padding-top: 15px;
        padding-left: 20px;
        text-align: left;
        font-size: 12px;
    }
    
    .sk p {
        padding-top: 30px;
        padding-bottom: 50px;
        font-size: 12px;
    }
    .portfolio {
        width: 95%;
        margin: 0 auto;
        margin-top: 50px;
        margin-bottom: 50px;
    }
    
    .portfolio h2 {
        text-align: center;
        padding-bottom: 30px;
        font-size: 36px;
    }
    
    .image_link{
        display:block; 
        position:relative;
        text-decoration:none;
       }
       .image_link img{
         display:block;
         width:100%;
       }
       .image_link:before{
         content:"";
         display:block;
         width:100%;
         height:100%;
         position:absolute;
         z-index:2;
         background:#000;/*好みの色に変えてください。*/
         opacity:0;
         transition:0.3s;
       }
       .image_link:after{
         content:"READ MORE";/*好みの文章に変更してください。*/
         display:block;
         color:#fff;
         line-height:48px;
         width:180px;
         border:solid 1px #fff;
         border-radius:5px;
         text-align:center;
         position:absolute;
         top:50%;
         left:50%;
         margin-top:-1em;
         margin-left:-90px;
         opacity:0;
         z-index:3;
         transition:0.3s;
         font-weight:bold;
         letter-spacing:0.2em;
       }
       .image_link:hover:before{
         opacity:0.5;
       }
       .image_link:hover:after{
         opacity:1;
         margin-top:-0.5em;
       }
       
    
    
    
    
    
    /*==================================================
    スライダーのためのcss
    ===================================*/
    .slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
        width:80%;
        margin:0 auto;
        margin-top: 30px;
    }
    
    .slider img {
        width:25vw;/*スライダー内の画像を60vwにしてレスポンシブ化*/
        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;/*ドットボタンの色*/
    }
    
    .slick-dots .slick-active button{
        background:#333;/*ドットボタンの現在地表示の色*/
    }
    
    
    /*========= レイアウトのためのCSS ===============*/
    
    ul{
        margin:0;
        padding: 0;
        list-style: none;
    }
    
    
    
    
    
    
    
    
    
    .contact {
        width: 100%;
        margin: 0 auto;
        background-color: #fff;
    }
    
    .contact h2 {
        text-align: center;
        padding-top: 50px;
        padding-bottom: 30px;
        font-size: 36px;
    }
    
    .contact p {
        text-align: center;
        padding-top: 20px;
        font-size: 15px;
    }
    
    .button018 {
        width: 95%;
        margin: 0 auto;
        margin-top: 30px;
    }
    
    
    
    
    
    /* 018 */
    .button018 a {
        position: relative;
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin: 0 auto;
        max-width: 225px;
        padding: 10px 0px 10px 25px;
        color: #313131;
        transition: 0.3s ease-in-out;
        font-weight: 500;
    }
    
    .button018 a:before, .button018 a:after {
      content: "";
      position: absolute;
      display: block;
      top: 50%;
    }
    .button018 a:before {
      width: 0.5rem;
      height: 0.5rem;
      left: 1.1rem;
      border-top: solid 2px #fff;
      border-right: solid 2px #fff;
      z-index: 2;
      transform: translateY(-50%) rotate(45deg);
      transition: all 0.3s;
    }
    .button018 a:after {
      left: 0;
      background: #ffba6b;
      z-index: 1;
      width: 3rem;
      height: 3rem;
      border-radius: 4rem;
      transform: translateY(-50%);
      transition: all 0.5s;
    }
    .button018 a span {
      position: relative;
      transition: all 0.3s;
      z-index: 3;
    }
    
    .button018 a:hover span {
      color: #fff;
    }
    .button018 a:hover:before {
      left: 2rem;
    }
    .button018 a:hover:after {
      right: 0;
      width: 100%;
    }
    
    
    
    
    
    
    .footer {
        width: 100%;
        margin-top: 30px;
    }
    
    .footer ul {
        height: 100px;
        padding-top: 70px;
        padding-bottom: 70px;
        display: flex;
        justify-content: space-around;
        list-style: none;   
    }
    
    .footer a {
        text-decoration: none;
    }
    
    .footer img {
        width: 20px;
        padding-top: 3px;
    }
    
    .footer p {
        text-align: center;
        background-color: rgb(255, 250, 194);   
    }
    
}









/*-----------------------------------------------------*/
/* スマホ用のCSS */
/*-----------------------------------------------------*/
@media only screen and (max-width: 599px) {
    .container {
        width: 100%;
        margin: 0 auto;
        background-color: #fff;
        font-family: "DM Serif Text", serif;
    }
    
    .header {
        width: 100%;
        display: flex;
    }
    
    .header1 {
        width: 20%;
        margin-left: 30px;
    }
    
    .header1 img {
        width: 100%;
    }
    
    .header2 {
        width: 70%;
        margin-top: 50px;
        display: none;
    }
    
    .header2 ul {
        display: flex;
        justify-content: space-around;
        list-style: none;
    }
    
    .header2 a {
        text-decoration: none;
    }
    
    .header2 img {
        width: 30px;
    }

    .insta img {
        width: 10%;
    }




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

/*アクティブになったエリア*/
#g-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
	top: 0;
	width:100%;
    height: 100vh;
}

/*丸の拡大*/
.circle-bg{
    position: fixed;
	z-index:3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #7fd9d2;
    /*丸のスタート位置と形状*/
	transform: scale(0);/*scaleをはじめは0に*/
	bottom:-50px;
    left:calc(50%-50px);
    transition: all .6s;/*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive{
	transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
     display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
	opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
    opacity:1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;/*0.2 秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;
}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}


/*リストのレイアウト設定*/
#g-nav li{
	text-align: center; 
	list-style: none;
}

#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;
	top:10px;
	right: 10px;
	z-index: 9999;/*ボタンを最前面に*/
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .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%;
}









    
    .color {
        width: 100%;
        margin: 0 auto;
        background-color: rgb(255, 250, 194);   
    }
    
    .top {
        width: 95%;
        margin-left: 20px;
        position: relative;
        font-family: "Miltonian Tattoo", serif;
    }
    
    .top h1 {
        position: absolute;
        top: 100px;
        left: -3%;
        font-size: 25px;
    }
    
    .top img {
        width: 95%;
        padding-top: 20px;
        padding-left: 60px;
    }
    
    .pr {
        width: 95%;
        margin: 0 auto;
    }
    
    .pr1 {
        width: 100%;
        margin: 0 auto;
    }
    
    .pr1 img {
        width: 70%;
        padding-top: 50px;
        padding-left: 100px;
    }
    
    .pr1 h2 {
        padding-top: 30px;
        padding-bottom: 20px;
        text-align: center;
        font-size: 20px;
    }
    
    .profile {
        width: 95%;
        margin: 0 auto;
        margin-top: 20px;
    }
    
    .profile1 {
        width: 60%;
        margin: 0 auto;
    }
    
    .profile1 img {
        width: 100%;
    }
    
    .profile2 {
        width: 80%;
        margin-top: 10px;
        margin-left: 20px;
        position: relative;
        color: peru;
    }
    
    .profile2 img {
        width: 30%;
        position: absolute;
        top: 50px;
        left: 80%;
    }
    
    .profile2 h2 {
        padding-left: 30px;
        font-size: 15px;
    }
    
    .profile2 h3 {
        padding-top: 10px;
        padding-left: 30px;
    }
    
    .profile2 p {
        padding-top: 10px;
        padding-left: 30px;
        font-size: 10px;
    }
    
    
    .title {
        width: 100%;
        text-align: center;
        margin-top: 50px;
        background-color: #fff;
    }
    
    .title h2 {
        padding-top: 30px;
        padding-bottom: 20px;
        font-size: 20px;
    }
    
    .skill {
        width: 100%;
        margin: 0 auto;
    }
    
    .skill1 {
        width: 80%;
        display: flex;
    }
    
    .sk1 img {
        width: 40%;
        margin-top: 20px;
        margin-bottom: 30px;
    }
    
    .sk2 {
        width: 60%;
        margin-top: 20px;
    }
    
    .sk2 h3 {
        font-size: 15px;
    }
    
    .sk2 p {
        padding-top: 15px;
        padding-left: 10px;
        text-align: left;
        font-size: 10px;
    }
    
    .skill2 {
        width: 80%;
        display: flex;
    }
    
    .sk3 img {
        width: 40%;
        margin-top: 20px;
        margin-bottom: 30px;
    }
    
    .sk4 {
        width: 60%;
        margin-top: 20px;
    }
    
    .sk4 h3 {
        font-size: 15px;
    }
    
    .sk4 p {
        padding-top: 15px;
        padding-left: 20px;
        text-align: left;
        font-size: 10px;
    }
    
    .sk p {
        padding-top: 20px;
        padding-bottom: 50px;
        font-size: 10px;
    }

    .portfolio {
        width: 95%;
        margin: 0 auto;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    .portfolio h2 {
        text-align: center;
        padding-bottom: 20px;
        font-size: 20px;
    }
    
    .image_link{
        display:block; 
        position:relative;
        text-decoration:none;
       }
       .image_link img{
         display:block;
         width:100%;
       }
       .image_link:before{
         content:"";
         display:block;
         width:100%;
         height:100%;
         position:absolute;
         z-index:2;
         background:#000;/*好みの色に変えてください。*/
         opacity:0;
         transition:0.3s;
       }
       .image_link:after{
         content:"READ MORE";/*好みの文章に変更してください。*/
         display:block;
         color:#fff;
         line-height:48px;
         width:180px;
         border:solid 1px #fff;
         border-radius:5px;
         text-align:center;
         position:absolute;
         top:50%;
         left:50%;
         margin-top:-1em;
         margin-left:-90px;
         opacity:0;
         z-index:3;
         transition:0.3s;
         font-weight:bold;
         letter-spacing:0.2em;
       }
       .image_link:hover:before{
         opacity:0.5;
       }
       .image_link:hover:after{
         opacity:1;
         margin-top:-0.5em;
       }
       
    
    
    
    
    
    /*==================================================
    スライダーのためのcss
    ===================================*/
    .slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
        width:80%;
        margin:0 auto;
        margin-top: 30px;
    }
    
    .slider img {
        width:25vw;/*スライダー内の画像を60vwにしてレスポンシブ化*/
        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;/*ドットボタンの色*/
    }
    
    .slick-dots .slick-active button{
        background:#333;/*ドットボタンの現在地表示の色*/
    }
    
    
    /*========= レイアウトのためのCSS ===============*/
    
    ul{
        margin:0;
        padding: 0;
        list-style: none;
    }
    
    
    
    
    
    
    
    
    
    .contact {
        width: 100%;
        margin: 0 auto;
        background-color: #fff;
    }
    
    .contact h2 {
        text-align: center;
        padding-top: 30px;
        padding-bottom: 20px;
        font-size: 20px;
    }
    
    .contact p {
        text-align: center;
        padding-top: 20px;
        font-size: 10px;
    }
    
    .button018 {
        width: 95%;
        margin: 0 auto;
        margin-top: 30px;
    }
    
    
    
    
    
    /* 018 */
    .button018 a {
        position: relative;
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin: 0 auto;
        max-width: 225px;
        padding: 10px 0px 10px 25px;
        color: #313131;
        transition: 0.3s ease-in-out;
        font-weight: 500;
    }
    
    .button018 a:before, .button018 a:after {
      content: "";
      position: absolute;
      display: block;
      top: 50%;
    }
    .button018 a:before {
      width: 0.5rem;
      height: 0.5rem;
      left: 1.1rem;
      border-top: solid 2px #fff;
      border-right: solid 2px #fff;
      z-index: 2;
      transform: translateY(-50%) rotate(45deg);
      transition: all 0.3s;
    }
    .button018 a:after {
      left: 0;
      background: #ffba6b;
      z-index: 1;
      width: 3rem;
      height: 3rem;
      border-radius: 4rem;
      transform: translateY(-50%);
      transition: all 0.5s;
    }
    .button018 a span {
      position: relative;
      transition: all 0.3s;
      z-index: 3;
    }
    
    .button018 a:hover span {
      color: #fff;
    }
    .button018 a:hover:before {
      left: 2rem;
    }
    .button018 a:hover:after {
      right: 0;
      width: 100%;
    }
    
    
    
    
    
    
    .footer {
        width: 100%;
        margin-top: 20px;
    }
    
    .footer ul {
        padding-top: 50px;
        padding-bottom: 50px;
        display: flex;
        justify-content: space-around;
        list-style: none;   
    }
    
    .footer a {
        text-decoration: none;
        font-size: 10px;
    }
    
    .footer img {
        width: 15px;
        padding-top: 7px;
    }
    
    .footer p {
        text-align: center;
        font-size: 10px;
        background-color: rgb(255, 250, 194);   
    }

}

