<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*google font*/
@import url('https://fonts.googleapis.com/css2?family=Klee+One&amp;family=Noto+Serif+JP&amp;display=swap');

/*cssの初期化*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    background-color: #F5F3EB;
    scroll-behavior: smooth;
    scroll-padding-top: 75px; /*固定ヘッダーの高さ*/
}

body{
    font-family: "Noto Sans JP","ヒラギノ角ゴ Pro W3", sans-serif;
    color: #333;
    /*font-family: "Noto Sans Japanese",'Roboto', sans-serif;*/
}

select,input,textarea,button{
    font-family: inherit;
}


/*commonStyle*/

.mb10{
    margin-bottom: 10px;
}
.mb20{
    margin-bottom: 20px;
}
.mb30{
    margin-bottom: 30px;
}

/*normalData*/

.normalData{
    width: 80%;
    margin: 0 auto 30px auto;
}
.normalData dt{
    color: #fff;
    background-color: #b3803e;
    padding: 10px;
    font-weight: 600;
}
.normalData dd{
    background-color: #fff;
    padding: 10px;
}

/*****SVG checklistここから*****/
.SVGchecklist{
    width: 90%;
    background-color: #fff;
    border: none;
    padding: 20px;
    margin: 0 auto 30px auto;
    color: #a26737;
}
/*チェックボックス非表示*/
input[type="checkbox"] {
  opacity:0;
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
}
/*□のスタイル*/
input[type="checkbox"] + span::before {
  display: inline-block;
  content: '';
  width: 1.3rem;
  height: 1.3rem;
  border: 2px solid #ccc;
  border-radius: 3px;
  margin-right: .5rem;
}
/*SVG iconのスタイル*/
input[type="checkbox"]:checked + span::before {
  background-image: url("img/check-solid.svg");
  background-repeat: no-repeat;
  background-size: 0.8rem;
  background-position: 0 2px;
  padding-left: 5px;
  background-position:2px;
}
input[type="checkbox"]:focus + span::before {
  border-color:#a26737;
}
/*****SVG checklistここまで*****/

pre{
    white-space: pre-wrap;
}  

a{
    color: inherit;
}

.wrapper{
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 16px;
}

img{
    width: 95%;
}




/*fadeIn*/
.fadeIn{
    animation-name:fadeInAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
    @keyframes fadeInAnime{
      from {
        opacity: 0;
      }
    
      to {
        opacity: 1;
      }
    }

/*body-wrapper*/
.body-wrapper{
    position: relative;
}
.body-wrapper::before{
    top: 0;
    content: "";
    display: block;
    position: fixed;
    z-index: -1000;

    width: 100%;
    height: 100vh;
    background-image: url(img/main1.png);
    background-position: center top;
    background-size: cover;
}

/*topContainer*/
.topContainer{
    position: absolute;
    top: 1300px;
    z-index: 100;
    background-color: #F5F3EB;
}
/******ヘッダー固定ナビここから******/
.header{

    margin-bottom: 50px;
    position: relative;
    font-family: Noto Serif JP;
    z-index: 1000;
    display: block;
    /*background-attachment: fixed; */
}
/*.header::before{
    content: "";
    display: block;
    position: fixed;
    z-index: -1000;

    width: 100%;
    height: 100vh;
    background-image: url(img/main1.png);
    background-position: center top;
    background-size: cover;
}*/
nav{
    top: 0;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    position: fixed;
    z-index: 1000;



}
.logo{
    width: 150px;   
    cursor: pointer;
    font-size: 2rem;
    font-weight: 450;
    font-family: Noto Serif JP;
}
.logo a{
    text-decoration: none;
    color: #000;
}
#nav1 .logo{
    margin: 0 auto 20px auto;
}

nav ul{
    background: #000;
    width: 100%;
}
nav ul li{
    display: inline-block;
    list-style:none;
    margin: 20px 30px;
}
nav ul li a{
  text-decoration: none;
  color: #fff;
}
.text{
    padding: 20px 10%;
}
nav.sticky{
    position: fixed;
    left:0;
    top:0;
    background: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 3%;
    transition: 0.6s;
}
nav.sticky .logo{
    margin-top: 10px;    
}
nav.sticky ul{
    background-color: transparent;
    font-size: 0.8rem;
}
nav.sticky .logo a{
    color: #fff;
}
/******ヘッダー固定ナビここまで******/


/* SP用固定ナビ */
#nav2 {
    display: none;
}
#nav2 .logo a{
    color: #fff;
}

/*Top見出し*/
h3{
    text-align: center;
    font-size: 1.2rem;
    font-family: futura-pt,Futura,"Noto Sans JP",-apple-system,BlinkMacSystemFont,".SFNSDisplay-Regular","Hiragino Sans","Hiragino Kaku Gothic ProN",Helvetica,"游ゴシック Medium",meiryo,sans-serif;
    margin-bottom: 25px;
}

/* Profile */

#profile{
    /*position: absolute;*/
    /*top: 1300px;*/
    width: 100%;
    height: 100vh;
    text-align: center;
    z-index: 10;
    background-color: #F5F3EB;
    padding: 50px;
    
}
#profile figure{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    text-align: center;
    display: inline-block;
}
#profile img{
    width: 100px;
    /*clip-path: circle(50% at center);
    z-index: 1;*/
}


#profile .specialty{
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
}

#profile .exp{
    text-align: left;
    font-size: 0.8rem;
    width: 300px;
    margin: 0 auto;
    line-height: 1.5em;
    padding-bottom: 10px;
}

#profile2 figure{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    text-align: center;
    display: inline-block;
}
#profile2 img{
    width: 100px;
}



/******パララックスここから******/
/*クラスbox*/
.service{
    position: relative;
}

.box1{
    /*display: block;
    height: 100vh;
    width: 100%;
    background-image: url(./img/001.jpg);
    background-size:cover;
    background-repeat:no-repeat;
    background-position: center;
    display: table;/*
    /*background-attachment: fixed;
    position: fixed;
    z-index: -1;*/
}
.box2{
    /*height: 100vh;
    width: 100%;
    background-image: url(./img/002.jpg);
    background-size:cover;
    background-repeat: no-repeat;
    background-position: center;
    display: table;*/
    /*background-attachment: fixed;*/
}
.box3{
   /*height: 100vh;
    width: 100%;
    background-image: url(./img/003.jpg);
    background-size:cover;
    background-repeat: no-repeat;
    background-position: center;
    display: table;/*
    /*background-attachment: fixed;*/
}

.inner{
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
	justify-content: center;
}

.moji-set{
    width: 70%;
    height:auto;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    

}

.moji-set p{
    font-size: 0.95rem;
    line-height: 1.8em;
    color: #fff;
    width: 65%;
    line-break: strict;
}
.moji-set p span{
    font-size: 0.75rem;
}


/*文字*/
#service h2{
    width: 30%;
    line-height: 1em;
    font-family: futura-pt,Futura,"Noto Sans JP",-apple-system,BlinkMacSystemFont,".SFNSDisplay-Regular","Hiragino Sans","Hiragino Kaku Gothic ProN",Helvetica,"游ゴシック Medium",meiryo,sans-serif;
    font-weight: 100;
    font-size: 80px;
    color: #fff;
    text-align: center;
    /*親のテーブルの真ん中にする*/
    display: table-cell;
    vertical-align:middle;
    /*font-family: Noto Serif JP;*/

}

#service h2 span{
    text-align: center;
    display: block;
    font-size: 45px;
    line-height: 1em;
}

/***ParallaxBox JSここから***/
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.parabox {
  position: relative;
  height: 100vh;
}
.parallax {
  position: absolute;
  top: 0;
  display: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  font-size: 3em;
  color: #fff;
  z-index: -1;
}
.bgI1 {
  background-image: url("img/001.jpg");
}
.bgI2 {
  background-image: url("img/002.jpg");
}
.bgI3 {
  background-image: url("img/003.jpg");
}

.parallax.active {
  position: fixed;
  top: 0;
}
/***ParallaxBox JSここまで***/
/******パララックスここまで******/

/***　mark要素のスタイルを下線にするスタイル　***/
mark{
    background: linear-gradient(transparent 80%,#29ac49 0%);
}


section{
    /*margin-bottom: 70px;*/
}

#profile h3{
    text-align: center;
    font-size: 1.2rem;
    font-family: futura-pt,Futura,"Noto Sans JP",-apple-system,BlinkMacSystemFont,".SFNSDisplay-Regular","Hiragino Sans","Hiragino Kaku Gothic ProN",Helvetica,"游ゴシック Medium",meiryo,sans-serif;
    margin-bottom: 25px;
}

/* new article */
.new-article{
    display: flex;
    flex-wrap: wrap;
    justify-content:left;
    align-items: center;
    text-align: left;
}
.new-article:after{
    content: "";
    display: block;
    width: 31%;
    height: 0;
}
.new-article img{
    width: 100%;
}

.new-article article{
    width: 31%;
    margin-bottom: 50px;
    margin-left:3%;
}
.new-article article:nth-child(3n+1){
    margin-left: 0;
}
article p{
    font-weight: 700;
    margin-top: 10px;
}

article a{
    text-decoration: none;
    color: #000;
    display: block;
   /* margin-top: 10px;*/
}

article .data{
    font-size: 0.8em;
}

#blogList img{
    cursor: pointer;
    transition: all 0.3s;
}
#blogList img:hover{
    opacity: 0.7;

}

article .moreread a::after{
    content:"";
    display: block;
    width: 80px;
    background-color: #000;
    height: 1px;
    margin: 0 auto;
}

/*honbun*/
.honbun section{
    width: 100%;
    margin-bottom: 50px;
    display: inline-block;
}

.honbun p{
    font-weight: lighter;
    font-size: 1rem;
    line-height: 1.7em;
    margin-bottom: 20px;
    height: auto;

}

.honbun p:last-child{
    margin-bottom: 0;
}
.honbun ul,ol{
    font-size: 0.8rem;
    color: #a26737;
    display: block;
    line-height: 1.2em;
    margin: 0 8% 30px 8%;
    background-color: rgb(255, 255, 255,0.7);
    padding: 50px;
    border-radius: 15px;
}

.honbun ul li a{
    text-decoration:underline;
    color: #a26737;
    cursor:pointer;
}
.honbun ul li a:hover{
    opacity: 0.6;
}

.honbun ul li{
    list-style-type:square;
    list-style-position:outside;
    text-indent:0.2em;
    margin-bottom: 20px;
}
.honbun ul li:last-child{
    margin-bottom: 0;
}

.honbun ol li:last-child{
    margin-bottom: 0;
}

.honbun ol{
    list-style: none;
    counter-reset:ranking;
}
.honbun ol li{
    list-style-position:outside;
    text-indent:0.2em;
    margin-bottom: 15px;
}
.honbun ol li a{
    text-decoration:underline;
    color: #a26737;
    cursor:pointer;
}
.honbun ol li a:hover{
    opacity: 0.6;
}

.honbun .quote{
    background-color: rgb(255, 255, 255,0.7);
    padding: 30px;
    border-radius: 0 20px 20px 0;
    border-left: 8px solid #e5d2c4;
    color: #a26737;
    /*margin-bottom: 30px;*/
    margin: 0 8% 30px 8%;

}
.quote::before{
    font-family: 'FontAwesome';
    font-size: 3remem
    em;
    content: '\f10d';
    color: #c77e42;
}

/*blog list*/
#blogList{
    background-color:#F5F3EB ;
    padding: 50px 0 0 0;
}
#blogList article p{
    font-weight: 700;
    margin-top: 10px;
    height: 5em;
    line-height: 1.3em;
}

#blogList ul{
    list-style: none;
    display: flex;
}
#blogList li{
    margin-right: 15px;
}

/*カテゴリー*/
.category-designTech{
    background-color: darkslategray;
    color: #fff;
    font-size: 0.7em;
    border-radius: 3px;
    padding: 3px 6px;
    
}

.category-diary{
    background-color:darksalmon;
    color: #fff;
    font-size: 0.7em;
    padding: 3px 6px;
    border-radius: 3px;
}
.data{
    font-size: 0.9em;
}

/* footer */
footer{
    font-weight: 0.8em;
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 30px 0;
}
footer .copyrights{
    font-size: 0.9em;
    line-height: 1em;
    display: inline;
    vertical-align: bottom;
}
footer .copyrights span{
    font-size: 1.3rem;
    vertical-align: bottom;
}

.youtube{
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.youtube iframe{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

/* media query */

@media (max-width:1000px){
    .logo{
        font-size: 1.8rem;
    }
    .sticky .logo{
        margin:0 auto !important;
    }

    .header{
        width: 100%;
        height: 100vh;
    }

    /* profile */
    #profile{
        /*top: 800px;*/
        width: 100%;
        height: 100vh;
        padding: 50px;
    }

}

@media (max-width:820px){
     


    article p{
        height:auto !important;
    }
    .author p{
        max-width: 100% !important;
    }

    /*チェックボックス*/
    input[type="checkbox"]::after {

        top: ０;/*チェック時の位置調整*/
      }



}

@media (max-width:768px){

    .header {
        background-image: none;
        height: 50px !important;
      }


    /* PC用固定ナビゲーションバー */
    #nav1 {
        display: none;
    }

    /* SP用固定ナビゲーションバー */
    #nav2 {
        display: block;
    }
    #nav2{
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 8vh;
        background-color: #000;
        position: fixed;
        width: 100%;
        top:0;
    }

    #nav2 .logo1{
        color: #fff;
        font-size: 1.5rem;
        margin-left: 0;
    }
    #nav2 .nav-links{
        display: flex;
        position: fixed;
        right: 0;
        height: 92vh;
        top:8vh;
        /*background-color: #364e8b ;*/
        background-color: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
    }

        #nav2 .nav-links li{
            list-style: none;
            opacity: 0;
    }

        #nav2 .nav-links a{
            text-decoration: none;
            color: #fff;
            font-weight: bold;
        }

        #nav2 .burger{
            cursor: pointer;
            display: block;
        margin-right: 3%;
        }
        
        /* ハンバーガーメニュー */
        .burger div{
        width: 25px;
        min-height: 3px;
        background-color: #fff;
        margin: 5px;
        transition:all 0.5s ease-in-out ;
        }

        .toggle .line1{
            transform: rotate(-45deg) translate(-5px, 6px);
        }
        .toggle .line2{
            opacity: 0;    
        }
        .toggle .line3{
            transform: rotate(405deg) translate(-5px, -6px);   
        }

    .nav-active{
        transform: translateX(0%) !important;
    }

    /* plofile */
    #profile{
        /*top: 500px;*/
        width: 100%;
        height: 100vh;
        margin: 0 auto 50px auto;
        padding: 30px;
    }

    #profile .exp{
        width: 100%;
    }
    
    /*service*/
    #service h2{
       padding-bottom: 30px;
        /*display: inline-block;*/
    }

    .moji-set{
        width: 80%;
        height: auto;
        display: block;
    }

    .moji-set h2{
        margin-bottom: 30px;
    }
    .moji-set p{
        width: 100%;
    }

    /* new article */
    .new-article{
        flex-direction: column;
    }

    .new-article article{
        width: 100%;
        margin-left: 0;
    }


}

@keyframes navLinksFade{
    0%{
        opacity: 0;
        transform: translateX(50px);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }

}

@media (max-width:576px){

}</pre></body></html>