<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*ページ全体*/
body{
    margin: 0;
    font-family: 'sans-serif';
    background-color: rgb(41, 57, 72);
}


/*ヘッダー*/

header{
    width: 100%;
    height: 130px;
    margin: 0;
    background-color: rgb(188, 195, 196);
    display: flex;
    top:0;
    position: fixed;
    opacity: 0.7;
}

header img{
    width: 130px;
    margin: 20px;
    margin-left: 60px;
}

header a{
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
}

header a:hover{
    opacity: 0.6;
}

header .container{
    display: flex;
    flex: 100%;
    justify-content: space-between;
}

.container li{
    padding-top: 30px;
    list-style-type: none;

}
.container li a{
    border-bottom: double #ffffff;
    background-color: #a5b4b8;
    padding: 10px;
    margin-right: 50px;
}


/*ヒーロー*/
.hero{
    background-image: url(../img/hero.png);
    background-size: cover;
    background-position: center;
    height:600px;
    padding: 150px;
}

.hero h1{
    font-size: 90px;
    color: #ffffff;
    margin-bottom: 50px;
    margin-top: 50px;
}

.hero ul{
    width: 300px;
    border: solid 1px #ffffff;
    padding: 10px 40px;
}
.hero li{
    font-size: 20px;
    color: #ffffff;
    list-style-type: circle;
}

.hero nav a{
    color: #a4a7aa;
    padding: 12px;
    margin-top: 10px;
    text-decoration: none;
    transition-duration: 0.5s;
    line-height: 1;
}
.hero nav a:hover{
    color: #ebedef;
    border-bottom: solid 1px #ffffff;

}

/*本文*/
.profile{
    background-color: #a4adb1;
    margin: 50px;

}
.profile #me{
    display: flex;   
}

.profile img{
    width: 300px;
    height: 300px;
    margin: 50px;
    border-radius: 50%;
}
.profile p{
    font-size: 30px;
    color: #ffffff;
    padding: 30px;

}

.profile h1,.works h1,.news h1,.gocontact h1{
    margin-top: 60px;
    padding-top: 60px;
    text-align: center;
    color: #ffffff;
    font-size: 50px;
}

#spinner2 {
    margin: 50px;
    position: relative;
}

#outer {
    position: absolute;
    top:1197px;
    left:134px;
    width:300px;
    height:300px;
    border-radius: 50%;
    border: 6px dotted;
    border-color: rgb(183, 237, 255) transparent ;

    animation: turn 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s infinite;
}


/*写真集*/
.works{
    background-color: #535b5e;
    margin: 50px;
    text-align: center;
    box-sizing: border-box;
}

.works ul{
    display: flex;
    flex: 100%;
    flex-wrap: wrap;
    padding-bottom: 80px;
}
.works ul li{
    width: 15%;
    margin: 20px;
    list-style-type: none;
    margin-left: 100px;
    margin-right: 100px;
}
.works li img{
    width: 200px;
    transition-duration: 0.5s;
}
.works li img:hover{
    width: 205px;

}



/*ニュースとコンタクト*/
.news{
    background-color: #a4adb1;
    margin: 50px;   
    padding-bottom: 50px;
    margin-left: 150px;
    margin-right: 150px;
}
.news p{
    font-size: 30px;
    color: #ffffff;
    margin: 50px;
    margin-left: 150px;
    text-align: left;
    line-height: 2;
}

.gocontact{
    padding-bottom: 50px;
}
.gocontact p{
    font-size: 20px;
    color: #c4ced3;
    line-height: 2;
    text-align: center;
}
.gocontact p a{
    font-size: 30px;
    background-color:#535b5e;
    padding: 10px;
    color: #ffffff;
    text-decoration: none;
    border: solid 1px;
}
.gocontact p a:hover{
    opacity: 0.6;
}

/* 点滅 */
.blink {
	animation: blinking 0.5s ease-in-out infinite alternate;
}
 
@keyframes blinking {
	0% {opacity: 0;}
	100% {opacity: 1;}
}



/*＝＝＝＝＝お問い合わせページ＝＝＝＝＝*/
.contact{
    width: 600px;
    background-color: #a4adb1;
    padding: 30px;
    margin: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 150px;
}

.contact h1,h2{
    color: #ffffff;
    text-align: center;
}
.contact h1{
    width: 300px;
    font-size: 40px;
    border: double 7px #335e6e;
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
}
.contact h2{
    font-size: 25px;
    padding-bottom: 10px;
}
.contact p{
    color: #ffffff;
    text-align: left;
    font-size:20px;
    width: 80%;
    margin-left: 55px;
    
}

input,textarea{
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
}

textarea{
    height: 100px;
}


input[type="submit"]{
    background-color: rgb(74, 84, 146);
    color: #ffffff;
    border:solid #ffffff;
    width: 200px;
    text-align: center;
    transition-duration: 0.5s;
}
input[type="submit"]:hover{
    background-color: #429cbc;
}


/*フッター*/
footer{
    padding: 30px;
    text-align: center;
    color: #ffffff;
    background-color:#335e6e;
}


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