@charset "UTF-8";

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing:border-box;
  }

body{
    padding: 0;
    margin: 0;

    background-color: #fffaf6;
}

img{/*画像自動リサイズ*/
    max-width: 100%;
    height: auto;
}

.mb-26{
    margin-bottom: 26px;
}

/*ヘッダー*/
header{
    background-color: #603b29;
}

.logo{/*ロゴ*/
    width: 60%;
    height: auto;
    margin-top: 15px
}

h1{
    padding: 0;
    margin: 0;
}

nav{/*ナビゲーションメニュー*/
    font-size: 2.4rem;
    font-weight: 400;  
    margin: 40px 0;
    height: auto;
    text-align: center;
}

nav > ul{
    display: flex;
    list-style-type: none;
}

nav > ul > li{
    width: 50%;
    height: auto;
    
}

nav > ul > li > a{
    color: #fff;
    text-decoration: none;
}

nav > ul > li > a:hover{
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
}


.footer-nav{
    display: flex;
    list-style-type: none;
}

.footer-nav > li{
    width: 50%;
    height: auto;
    
}

.footer-nav > li > a{
    color: #fff;
    text-decoration: none;
}

.footer-nav > li > a:hover{
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
}


/*メインビジュアル*/
.main-visual {/*TOP画像の背景*/
    width: 100%;
    height: auto;
    margin: 0 auto;
    background-color: #fff0e6;
    padding-bottom: 160px;
}
.main-visual > img{
    width: 100%;
    height: auto;
    margin: 0 auto;
}
.main-visual2 {/*TOP画像の背景*/
display: none;
}

.wave1{/*波線*/
    margin: -3px 0 140px 0;
}
.wave1 > img{
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.wave2{/*波線*/
    padding-bottom: 70px;
     margin: 110px 0 0 0;
    background-color: #fff0e6;
}
.wave2 > img{
    width: 100%;
    height: auto;
    margin: -8px auto 0 auto;
}

/*works*/
.works-title{
    position: relative;/*worksのテキストの為のポジション*/
    font-family: monospace;
    font-size: 3.5rem;
    font-weight:100
    padding: 40px 0 10px 0;
    margin: 0;
    margin-bottom: 50px;
}

.works-title:after{/*右上のworks装飾*/
    position: absolute;/*worksのテキストの為のポジション*/
    bottom: 0;/*位置調整　下*/
    right: -25px;/*位置調整　右*/
    content: 'works';
    color: #f4e7e1;
    font-family: cursive;
    font-size: 9.7rem;
    font-weight: 1000;
}

.works-column> img{
    margin-bottom: 15px;
}


/*works制作実績カテゴリ別の装飾*/
.works-web{/*webのボックス装飾*/
    background-color: #eddbd3;
    border-radius: 30px;/*角丸*/
    padding: 40px 20px;
    margin-bottom: 150px;
}

.category1{/*web*/
    color: #ffffff;
    font-size: 2.4rem;
    font-weight: 600;
    background-color: #ad5836;
    width: 110px;   
    padding: 1px;   
    margin: -68px 0 25px;
    border-radius: 80px;
    text-align: center;
}   


.works-dtp{/*DTPのボックス装飾*/
    background-color: #ede1d3;
    border-radius: 30px;/*角丸*/
    padding: 40px 20px;
    margin-bottom: 150px;
}

.category2{/*DTP*/
    color: #ffffff;
    font-size: 2.4rem;
    font-weight: 600;    
    background-color: #c46231;
    width: 110px;   
    padding: 1px;   
    margin: -68px 0 25px;
    border-radius: 80px;
    text-align: center;
  
}

.works-illust{/*Illustのボックス装飾*/
    background-color: #e5ded3;
    border-radius: 30px;/*角丸*/
    padding: 40px 20px;
    margin-bottom: 150px;
}

.category3{/*illust*/
    color: #ffffff;
    font-size: 2.4rem;
    font-weight: 600;
    background-color: #ad772f;
    width: 110px;   
    padding: 1px;   
    margin: -68px 0 25px;
    border-radius: 80px;
    text-align: center;
}

.works-column{
    background-color: #fff;
    padding: 25px 15px;
    border-radius: 15px;
}

.works-column2{
   padding: 0 20px;
}

.works-column > h3{
    font-size: 1.2rem;
}

.works-column > h3 > span{
    border: 1px solid #000;/*線の太さ　種類　色*/
    padding: 3px 7px;
    border-radius: 30px;
}

.works-column-soft{
    font-weight: bolder;
}



/*profile*/
#profile{
    background-color: #fff0e6;
    padding-bottom: 120px;

}
.profile-title{
    text-align: center;/*テキスト中央揃え*/
    font-family: monospace;
    font-size: 3.5rem;
    background-color: #fff;
    max-width: 450px;
    width: 100%;
    height: 200px;
    padding: 50px 20px;
    margin: 0 auto 60px auto;
    border-radius: 50%;
}

.brown{
    text-align: center;/*テキスト中央揃え*/
    font-family: auto;
    font-weight: 600;
    font-size: 2.5rem;
    color: #603b29;
}

.profile-icon{
    margin-left: 120px;
}

.profile-name{
    font-family: monospace;
    font-size: 3.5rem;
    font-weight: 100;
    margin: 100px auto 60px auto;
    white-space: nowrap;/*改行しない*/
}

.yomigana{
    font-size: 1.6rem;
    padding-left: 20px;
}
.profile-text{
    font-size: 1.3rem;
}

/*skill*/
.skill-border{
    width: 100%;
    height: 2px;
    border: 2px dashed #603b29;
    margin-bottom: -40px;
    margin-top: 100px;
}
.skill-title{
    color: #fff;
    font-size: 2.8rem;
    font-weight: 600;
    background-color:  #603b29;
    width: 130px;
    height: 80px;
    padding: 10px 0;
    border-radius: 50%;
    text-align: center;
    margin: 0 auto 100px auto;
}
.skill-column{
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 35px;
}

.skill-column> img{
    margin-bottom: 30px;
}

/*フッター*/
footer{
    background-color: #603b29;
    margin: 0 auto;
}
.footer-logo{
    width: 40%;
    height: auto;
    margin: 15px -60px;
}
.footer-nav{
    display: flex;/*子要素の横並び*/
    font-size: 1.8rem;
    font-weight: 400;  
    margin: 30px 0;
    height: auto;
    text-align: center;
}

.copyright{/*コピーライト*/
    text-align: center;
    color: #fff;
}



/*ここからｽﾏﾎ*/


@media (max-width: 768px){/*768px以下の時適用*/
.logo{/*ロゴ*/
    width: 55%;
    height: auto;
    margin: 45px 0 -25px 0;
}

 nav > ul > li > a {
  color: #fff;
  text-decoration: none;
  font-size: 1.8rem;
}

.main-visual {/*TOP画像の背景*/
    display: none;
    width: 100%;
    height: auto;
    margin: 0 auto;
    background-color: #fff0e6;
    padding-bottom: 160px;
}

.main-visual2 {/*TOP画像の背景*/
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    background-color: #fff0e6;
    padding-bottom: 100px;
}

.works-title{
    position: relative;/*worksのテキストの為のポジション*/
    font-family: monospace;
    font-size: 2.6rem;
    font-weight:100
    padding: 40px 0 10px 0;
    margin: 0;
    margin-bottom: 50px;
}

.works-title:after{/*右上のworks装飾*/
    position: absolute;/*worksのテキストの為のポジション*/
    bottom: 0;/*位置調整　下*/
    right: 0;/*位置調整　右*/
    content: 'works';
    color: #f4e7e1;
    font-family: cursive;
    font-size: 6.3rem;
    font-weight: 1000;
    margin-bottom: 45px;
}

.category1 {
    color: #ffffff;
    font-size: 2.0rem;
    font-weight: 600;
    background-color: #ad5836;
    width: 110px;
    padding: 1px;
    margin: -68px 0 25px;
    border-radius: 80px;
    text-align: center;
}

.category2 {
    color: #ffffff;
    font-size: 2.0rem;
    font-weight: 600;
    background-color: #c46231;
    width: 110px;
    padding: 1px;
    margin: -68px 0 25px;
    border-radius: 80px;
    text-align: center;
}

.category3 {
    color: #ffffff;
    font-size: 2.0rem;
    font-weight: 600;
    background-color: #ad772f;
    width: 110px;
    padding: 1px;
    margin: -68px 0 25px;
    border-radius: 80px;
    text-align: center;
}

.profile-title{
    text-align: center;/*テキスト中央揃え*/
    font-family: monospace;
    font-size: 2.6rem;
    background-color: #fff;
    max-width: 450px;
    width: 100%;
    height: 180px;
    padding: 50px 20px;
    margin: 0 auto 60px auto;
    border-radius: 50%;
}

.brown{
    text-align: center;/*テキスト中央揃え*/
    font-family: auto;
    font-weight: 600;
    font-size: 2.2rem;
    color: #603b29;
}

.profile-icon{
    margin: 0 auto;
}

.profile-icon > img{
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.profile-name{
    font-family: monospace;
    font-size: 2.7rem;
    font-weight: 100;
    margin: 100px auto 60px auto;
    white-space: nowrap;/*改行しない*/
}

.yomigana{
    font-size: 1.2rem;
    padding-left: 10px;
}
.profile-text{
    font-size: 1.1rem;
}

.skill-border{
    width: 100%;
    height: 2px;
    border: 2px dashed #603b29;
    margin-bottom: -33px;
    margin-top: 100px;
}

.skill-title{
    color: #fff;
    font-size: 2.2rem;
    font-weight: 600;
    background-color:  #603b29;
    width: 100px;
    height: 62px;
    padding: 10px 0;
    border-radius: 50%;
    text-align: center;
    margin: 0 auto 90px auto;
}

nav > ul > li > a {
    color: #fff;
    text-decoration: none;
    font-size: 2.0rem;

}

.footer-logo{
    width: 40%;
    height: auto;
    margin: 15px 0 -20px 0;
}

.footer-nav{
    display: flex;/*子要素の横並び*/
    font-size: 1.5rem;
    font-weight: 400;  
    margin: 30px 0;
    height: auto;
    text-align: center;
}

.copyright{/*コピーライト*/
    font-size: 0.7rem;
    text-align: center;
    color: #fff;
}

/*
position: absolute;
    bottom: 0;
    right: 0;
    content: 'works';
    color: #f4e7e1;
    font-size: 4rem;
    font-weight: 1000;
}
*/