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

:root { /* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
    --base-color: #333;
    --link-color: #666;
    --linkhover-color: #999;
    --back-color: #f7f7f7;
    --border-color: #ccc;
    --white-color: #fff;
    --nav-color: #333;
}
html {
    scroll-behavior: smooth;/* スムーススクロール */
}
body {
    background: var(--white-color); 
    color: var(--base-color);
}

img {
	max-width:100%;
	height: auto;/*高さ自動*/
}
a {
    color: var(--link-color);
    text-decoration-line: none;
}
a:hover { 
    color: var(--linkhover-color);
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.1rem;
}
h2 {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    text-align: center;
}
h3 {
    font-size: 2.2rem;
}
button {
    margin: 1rem;
}
.center {
    text-align: center;
}
/*ヘッダー
-------------------------------------*/
/* ヘッダー固定 */
header {
    position: sticky;
    top: 0;
    padding: 1px 0;
    z-index: 1;
    background-color: var(--white-color);
}
.header {
    font-family: 'Noto Serif JP', serif;
	display: flex;
    flex-direction: row;
    padding: 0;
    margin: 1rem 2rem;
}
.sitetitle {
    font-size: 2.5rem;
}
.header-box {
	margin-left: auto;
}

/*スマホ用メニュー
-------------------------------------*/	
nav ul {
	display: flex;
    flex-direction: row;
    justify-content: space-around;
    list-style: none;
	margin: 0;
}
nav li {
	flex: 1 0 auto;
    margin-bottom: 0
}
nav li a {
    text-decoration: none;
    text-align: center;
    width: 100%;
}
nav a:hover {
    background-color: var(--back-color);   
}
nav a {
    padding: 1rem;
    color: var(--nav-color);
    display: block;
}

@media screen and (min-width: 980px){
/* PC時はMENUボタンを非表示 */
#open,#close {
    display: none !important;
}

#navi {
    display: block !important;
}
}

@media screen and (max-width: 980px){
.header {
	flex-direction: column;
    margin-bottom: 20px;
}
.header #open,#close  {
    position: absolute;
    top: 14px;
    right: 12px;
}
nav ul {
	flex-direction: column;
}
.header li {
	padding-top: 0;
}
.header-box {
    margin-left: initial;
}
/* スマホ時はMENUボタンを表示 */
#open {
    display: block;
    background: url(../img/button.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 14px;
    right: 12px;
}
#close  {
    display: block;
    background: url(../img/button2.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 14px;
    right: 12px;
}
nav li a {
    border-bottom: 1px dashed var(--link-color);
}
/* スマホ時はメニューを非表示 */
#navi {
    display: none;
}
}
/*メイン画像
-------------------------------------*/
#mainimg {
    width: 100%;
}
#mainimg h1 {
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 2;
    text-align: center;
    color: var(--white-color);
    text-shadow: 1px 2px 3px var(--link-color); 
}

/*メインコンテンツ
-------------------------------------*/
main {
    margin: 0;
}
section {
	margin: 0;
	padding: 8rem 0;
}
.gray-back {
	background-color: var(--back-color);
    /*background: url('../img/gray-back.jpg'); gray-back.jpg背景画像を使用したい時にオンにしてください*/
    background-size: cover;
}

/* リスト表示（スマホ時2カラム）
-------------------------------------*/
.works-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.works-item {
    flex: 0 0 32%;
}
/*制作実績 3カラムの場合左寄せ
-------------------------------------*/
.works-list::after{
    content:"";
    display: block;
    flex: 0 0 32%;
  }

/* マウスホバーで画像を拡大
-------------------------------------*/
.hoverbox{
    max-height: 250px;
    overflow: hidden;
}
.hoverbox-img{
    transition-duration: 0.3s;
}
.hoverbox-img:hover{
    transform: scale(1.3);
    transition-duration: 0.3s;
}

/* プロフィール
-------------------------------------*/
.profile {
    max-width: 980px;
    margin: 0 auto;
}
.maru {
    text-align: center;
}
.maru img {
    border-radius: 50%; /* 画像を丸く切り抜く */
}

/*お問い合わせ
-------------------------------------*/
.sns {
    text-align: center;
}
.sns a {
    padding-right: 1rem;
}
/*フッター
-------------------------------------*/


@media screen and (min-width: 768px){
a[href*="tel:"] { /* PC時は電話番号無効 */
    pointer-events: none;
    cursor: default;
}
}
/*お問い合わせ
-------------------------------------*/
.contact-box {
	border: 1px solid var(--border-color);
	text-align: center;
	padding: 2rem 0;
}
.table {
	margin: 4rem 0;
}
.table th {
	width: 150px;
}
input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea { 
    background-color: var(--white-color);
}
/*コピーライト
-------------------------------------*/
.copyright {
    text-align: center;
    padding: 1rem 0;
    background-color: var(--base-color);
}
.copyright a {
    color: var(--white-color);
    text-decoration: none;
	display: inline;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: block;
    width: 40px;
    height: 40px;
    box-sizing: border-box;
    background: var(--white-color);
    border: 1px solid var(--linkhover-color);
    border-radius: 50%;
    padding-top: 30px;
    text-align: center;
    text-decoration: none;
    opacity: 0.8;
}
#pagetop::after{
    content: "";
    display: block;
    border-top: 2px solid var(--base-color);
    border-right: 2px solid var(--base-color);
    width: 25%;
    height: 25%;
    top: 45%;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    transform: rotate(-45deg);
}
#pagetop:hover{
    opacity: 0.5;
}

/* 下層ページヘッダー
-------------------------------------*/
.subimg {
    height: 350px;
    background: url('../img/subimg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 2rem;
}
.subimg h1 {
    height: 350px;
    line-height: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
    text-shadow: 1px 2px 3px var(--link-color); 
    margin: 0;
}
/* パンくずリスト
-----------------------------------*/
.breadcrumb {
    margin: 0 0 1em 0;
    padding: 0;	
}
.breadcrumb li {
    list-style-type: none;
}
.breadcrumb li a {
    display: inline-block;
    color: var(--link-color);
}

/* 幅768px以下の表示
-------------------------------------*/
@media screen and (max-width: 768px){
	
/*ヘッダー
-------------------------------------*/
.headerbar {
    display: none;
}	
/*メイン画像
-------------------------------------*/
#mainimg h1 {
    height: 350px;
}
/* リスト表示（スマホ時2カラム）
-------------------------------------*/
.works-item {
    flex: 0 0 48%;
}
}</pre></body></html>