@import url("http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400italic,700,900");
@import url("font-awesome.min.css");

/* Reset */

	html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline;
	}

	article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
		display: block;
	}

	body {
        font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
        line-height: 1.8;
        font-size: 16px;
        letter-spacing: 1px;
        margin-top: 0px;
        color: #333333;
	}

	blockquote, q {
		quotes: none;
	}

	blockquote:before, blockquote:after, q:before, q:after {
		content: '';
		content: none;
	}

	table {
		border-collapse: collapse;
		border-spacing: 0;
	}

	body {
		-webkit-text-size-adjust: none;
	}

    a { text-decoration: none; } 
ul{
  padding-left:0;
}

li{
  list-style:none;
}


/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

/*----------------------------
menu
----------------------------*/
/*ロゴの大きさを調整*/
.logo img {
    float: left;
    width: 100px;
}


.gNav .gNav-menu {
    display: flex;
    padding: 20px 10px;
    background-color: #fff;
    justify-content: space-between;
    
}

.gNav-menu a {
    padding: 10px 10px;
    margin: 10px 15px;
    border: 0px solid red;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.1em;
}

.gnavi li a{
    /*線の基点とするためrelativeを指定*/
	position: relative;
}

.gnavi li.current a,
.gnavi li a:hover{
	color:#e60012;
}

.gnavi li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 10%;
    /*線の形状*/
    width: 80%;
    height: 2px;
    background:#e60012;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: center top;/*上部中央基点*/
}

/*現在地とhoverの設定*/
.gnavi li.current a::after,
.gnavi li a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}

.hamburger {
    margin: 0px auto 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

/* スマホ版 */
@media screen and (max-width: 1024px) {
    .logo img {
    width: 75px;
}
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.btn-gNav{
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
    display: none;
	position: relative;
	background:#333;
	cursor: pointer;
	border-radius: 5px;
    position: fixed;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    z-index: 12;
    box-sizing: border-box;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}

/*ボタン内側*/
.btn-gNav span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background: #fff;
    position: absolute;
    width: 100%;
    -webkit-transition: all 400ms;
    transition: all 400ms;
  }

.btn-gNav span:nth-of-type(1) {
	top:15px;	
  	width: 45%;
}

.btn-gNav span:nth-of-type(2) {
	top:23px;
  	width: 35%;
}

.btn-gNav span:nth-of-type(3) {
	top:31px;
  	width: 20%;
}

/*activeクラスが付与されると線が回転して×になる*/

.btn-gNav.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-135deg);
    width: 30%;
}

.btn-gNav.active span:nth-of-type(2) {
	opacity: 0;
}

.btn-gNav.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(135deg);
    width: 30%;
}
  .btn-gNav {
        display: block;
    }
    .gNav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        font-size: 16px;
        box-sizing: border-box;
        z-index: 1;
        padding-top: 80px;
        transition: .3s;
    }
    .gNav.open {
        right: 0;
        background-color: rgba(0, 0, 0, 1);
    }
    .gNav .gNav-menu {
        background-color: rgba(0, 0, 0, 1);
        padding: 0px;
        width: 100%;
        height: 100%;
        display: block;
        flex-direction: column;
        text-align: center;
        /*justify-content: center;*/
    }
    .gNav .gNav-menu li {
        width: 100%;
        padding: 15px 0px;
    }
    .gNav .gNav-menu li a {
        color: #fff;
    }
}

/* FVスライダーのためのcss */
#slider {
    width: 100%;
    height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

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


h2.index{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size:28px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
    font-weight: bold;
    -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
    text-align: left;
}
@media (max-width:768px){ /*スマホに適用*/
    h2.index{ font-size: 22px;}
}

/*=== 9-1-2 丸が動いてスクロールを促す ====*/

/*スクロールダウン全体の場所*/
.scrolldown2{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	bottom:10px;
	left:50%;
}

/*Scrollテキストの描写*/
.scrolldown2 span{
    /*描画位置*/
	position: absolute;
	left:10px;
	bottom:10px;
    /*テキストの形状*/
	color: #eee;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown2:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom:0;
    left:-4px;
    /*丸の形状*/
	width:10px;
	height:10px;
	border-radius: 50%;
	background:#eee;
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
	animation:
		circlemove 1.6s ease-in-out infinite,
		cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
      0%{bottom:45px;}
     100%{bottom:-5px;}
 }

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
      0%{opacity:0}
     50%{opacity:1;}
    80%{opacity:0.9;}
	100%{opacity:0;}
 }

/* 線の描写 */
.scrolldown2:after{
	content:"";
    /*描画位置*/
	position: absolute;
	bottom:0;
	left:0;
    /*線の形状*/
	width:2px;
	height: 50px;
	background:#eee;
}
/* plof kensa */

.center {
    text-align: center;
}
.text {
    font-weight: 500;
    line-height: 2.3em;
}

/*----------------------------
pankuzu
----------------------------*/

#pankuzu {
    max-width: 1200px;
    margin: auto;
    padding: 0px 50px;
    border: 0px solid #000;
}
/* pankuzu */
.breadcrumb-001 {
    display: flex;
    gap: 0 10px;
    list-style: none;
    padding: 0;
    font-size: .8em;
}

.breadcrumb-001 li {
    display: flex;
    align-items: center;
}

.breadcrumb-001 li:first-child::before {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 4px;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M11.7%207.5%204%2013.8v6.8c0%20.4.3.7.7.7h4.7c.4%200%20.7-.3.7-.7v-4c0-.4.3-.7.7-.7h2.7c.4%200%20.7.3.7.7v4c0%20.4.3.7.7.7h4.7c.4%200%20.7-.3.7-.7v-6.8l-7.7-6.3h-.9zm12.1%204.4L20.3%209V3.2c0-.3-.2-.5-.5-.5h-2.3c-.3%200-.5.2-.5.5v2.9L13.3%203c-.7-.6-1.8-.6-2.5%200L.2%2011.8c-.2.2-.3.5-.1.7l1.1%201.3c.2.2.5.2.7.1l9.8-8.1h.6l9.8%208.1c.2.2.5.1.7-.1l1.1-1.3c.2-.2.1-.5-.1-.6z%22%20style%3D%22fill%3A%23333333%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    content: '';
}

.breadcrumb-001 li:not(:last-child)::after {
    display: inline-block;
    transform: rotate(45deg);
    width: .3em;
    height: .3em;
    margin-left: 10px;
    border-top: 1px solid #333333;
    border-right: 1px solid #333333;
    content: '';
}

.breadcrumb-001 a {
    color: #333333;
    text-decoration: none;
}

@media(max-width: 1024px){ /*ウィンドウ幅が最大1024pxまでの場合に適用*/
#pankuzu {
    border: 0px solid #000;
    width: 80%;
    margin: auto;
    padding: 0px 0px;}
}
/*----------------------------
index
----------------------------*/

.space {
    max-width: 1200px;
    margin: auto;
    padding: 100px 50px;
}
.entitle {
    color: #f3f1f1;
    font-family: 'Josefin Sans', sans-serif;
    font-style: italic;
    font-weight: 500;
    font-size: 80px;
    margin-bottom: -70px;
}

h3 {
    font-size: 42px;
    font-weight: bold;
}

hr {
 height: 3px;
 background-color: red;
 width: 60px;
 border: none;
text-align:left;
margin: 35px 0 45px 0;
}

/* service */
#service {
    background-color: #e7e7e7;
    padding-top: 100px;
    padding-bottom: 100px;
}

.entitle-r {
    color: #f3f1f1;
    font-family: 'Josefin Sans', sans-serif;
    font-style: italic;
    font-weight: 500;
    font-size: 130px;
    text-align: right;
    margin-top: -330px;
}

h4 {
    font-size: 36px;
    font-weight: bold;
}
span.number {
    font-size: 76px;
    color: #ffffff;
    font-weight: 300;
    font-family: 'Josefin Sans', sans-serif;
    font-style: italic;
    font-weight: 500;
    padding-right: 10px;
}

h5 {
    font-weight: bold;
    font-size: 20px;
    line-height: 3em;
    display: flex;
    align-items: center;
}
h5:after {
    border-top:#ccc 1px solid;
    content: "";
    flex-grow: 1;
}
h5:after {
    margin-left: 1rem;
}

img.arch {
    width: 65%;
    margin-right: -100px;
    float: right;
    padding-bottom: 60px;
}


.left-box {
    width: 38%;
}
.memo {
    font-size: 14px;
    font-weight: 500;
}

img.rest {
    width: 65%;
    margin-left: -100px;
    padding-bottom: 60px;
    border-top-left-radius: 60px;
}
.right-box {
    width: 38%;
    float: right;
}
img.brand {
    width: 65%;
    margin-right: -100px;
    float: right;
    padding-bottom: 60px;
    border-top-left-radius: 60px;
}

@media (max-width:1280px){ /*ウィンドウ幅が最大992pxまでの場合に適用*/
    
    h4 {
        font-size: 32px;
    } 
    span.number {
        font-size: 60px;
    }
}

@media(max-width: 1024px){ /*ウィンドウ幅が最大1024pxまでの場合に適用*/
    .entitle {
    font-size: 50px;
    margin-bottom: -48px;
}

    h3 {
    font-size: 30px;
    font-weight: bold;
}
    
    .entitle-r {
    font-size: 58px;
    text-align: right;
    margin-top: -250px;
}
     h4 {
        font-size: 24px;
    } 
    span.number {
        font-size: 42px;
    }
    img.arch {
    width: 100%;
    margin-right: 0px;
    float: none;
    padding-bottom: 0px;
}
    .left-box {
    width: 100%;
}
    img.rest {
    width: 100%;
    margin-left: 0px;
    padding-bottom: 0px;
}
    .right-box {
    width: 100%;
    float: none;
}
    img.brand {
    width: 100%;
    margin-right: 0px;
    float: none;
    padding-bottom: 0px;
}
    h5 {
    font-weight: bold;
    font-size: 16px;
    line-height: 2.5em;
    display: flex;
    align-items: center;
}
    .work {
        margin-bottom: 80px;
    }
    #service {
    padding-bottom: 0px;
    }
    .space {
    border: 0px solid #000;
    width: 80%;
    margin: auto;
    padding: 100px 0px;
}
}
    
/* button */
.button016 a {
    font-weight: 300;
    font-family: 'Josefin Sans', sans-serif;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 3px;
    background: #bcabae;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 220px;
    padding: 10px 25px;
    color: #ffffff;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    transform: skew(-10deg, 0deg);
}
.button016 a span {
    transform: skewX(10deg);
}
.button016 a:before {
    content: '';
    position: absolute;
    top: calc(50% - 2px);
    right: -1em;
    transform: translateY(calc(-50% - 2px)) rotate(30deg);
    width: 12px;
    height: 2px;
    background-color: #333333;
    transition: 0.3s;
}
.button016 a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1em;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background-color: #333333;
    transition: 0.3s;
}
.button016 a:hover:before, .button016 a:hover:after {
    right: -1.2em;
}
.button016 a:hover {
    background: #e60012;
    color: #ffffff;
}

/* company */
#company {
    text-align: center !important;
    background-image: url('../img/index_bg_office2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}


.center {
    margin: 20px auto;
}
.center40 {
    margin: 40px auto;
}
.right {
    margin: 20px 0 0 auto;
}


/*----------------------------
company
----------------------------*/

#page-title {
    height: 350px;
    border: 0px solid red;
    background-color: #fff;
}
.page-title {
    font-size: 42px;
    color: #333;
    font-weight: bold;
    text-align: center;
    letter-spacing: 4px;
}
@media(max-width: 1024px){ /*ウィンドウ幅が最大1024pxまでの場合に適用*/
#page-title {
    height: 240px;
    border: 0px solid red;
    background-color: #fff;
}
    .page-title {
    font-size: 24px;
    color: #333;
    font-weight: bold;
    text-align: center;
    letter-spacing: 4px;
}
}
.rinen {
    font-weight: bold;
    color: #fff;
}

/*タイムライン全体の設定*/
.timeline{
    border: 0px solid red;
	max-width: 700px;
	width:100%;
	margin:50px 0 50px auto;
}
.timeline img {
    width:100%;
}
.timeline li{
    border: 0px solid blue;
    border-style: dotted;
    /*線の起点とするためrelativeを設定*/
    position: relative;
	list-style: none;
	padding:0 0 20px 0;
}
.timeline dt {
    font-weight: bold;
    border-top: 3px #ccc solid;
    width: 55px;
    font-size: 22px;
    font-family: 'Josefin Sans', sans-serif;
    font-style: italic;
    font-weight: 500;
}
.timeline dd {
    margin: 15px  0;
}
.timeline dl{
	margin:0 0 20px 3em;
}

/*絶対配置で線を設定*/
.border-line {
    /*線の位置*/
	position: absolute;
	left:0.2em;
	top:0;
	width:2px;/*線の太さ*/
	height:0;/*はじめは高さを0に*/
	background: #ccc;
    
}

/*タイムラインの見出し横の丸の位置と形状*/
.timeline li::after{
	content:'';
	position: absolute;
	top:0;
	left:0;
	width:10px;
	height: 10px;
	background:#231815;
	border-radius: 50%;
}


#information {
    margin-top: -100px;
}
/* table */
.table {
    border-collapse: collapse;
    border-spacing: 0;
    max-width: 700px;
	width:100%;
    margin:50px 0 50px auto;
}
.table tr {
    border-bottom: 1px solid #e0e0e0;
}
.table tr th,
.table tr td {
    padding: 20px 0;
    text-align: left;
    vertical-align: top;
}
.table tr th {
    width: 30%;
    font-weight: bold;
}
.table tr td {
    width: 75%;
}

@media screen and (max-width: 767px){
.table tr th,
.table tr td {
    display: block;
    width: 100%;
    padding: 0;
    margin: 20px 0;
}
}




/*----------------------------
restrant
----------------------------*/

.space2 {
    max-width: 1200px;
    margin: auto;
    padding: 0px 50px;
}
@media(max-width: 1024px){ /*ウィンドウ幅が最大1024pxまでの場合に適用*/
.space2 {
    border: 0px solid #000;
    width: 80%;
    margin: auto;
    padding: 0px 0px;
}
}
.tumeru {
    margin-top: -50px;
}
.kugiri {
    margin-bottom: 100px;
}
#restrant-work {
    padding-top: -100px;
}
#restrant-work h3 {
    font-size: 32px;
}
#restrant-work h4 {
    font-size: 22px;
}
.resnum {
    padding-top: 0px;
    font-weight: bold;
    font-size: 20px;
    line-height: 3em;
    display: flex;
    align-items: center;
}
.resnum:after {
    margin-left: 1em;
     background: radial-gradient(circle farthest-side, #3a3a3a, #3a3a3a 30%, transparent 30%, transparent);
    background-size: 8px;
    content: '';
    display: inline-block;
    height: 8px;
    width: 100%;
}
/* table */
.table-r {
    border-collapse: collapse;
    border-spacing: 0;
    max-width: 700px;
	width:100%;
    margin: 30px 0 50px 0;
    border-left: 1px solid #333;
    font-size: 14px;
}
.table-r tr th,
.table-r tr td {
    padding: 0.5em 1em;
    text-align: left;
    vertical-align: top;
}
.table-r tr th {
    width: 20%;
    font-weight: bold;
}
.table-r tr td {
    width: 80%;
}

@media screen and (max-width: 425px){
    .table-r {
    border-collapse: collapse;
    border-spacing: 0;
    max-width: 700px;
	width:100%;
    margin: 30px 0 50px 0;
    border-left: 1px solid #333;
    font-size: 14px;
}
    .table-r tr th,
    .table-r tr td {
        border: 0px red solid;
    text-align: left;
    vertical-align: top;
}
    .table-r tr th {
    width: 38%;
    font-weight: bold;
        padding: 0.5em 0em 0.5em 1em;
}
    .table-r tr td {
    width: 62%;       padding: 0.5em 0;
}
}

/* button */
a.btn-icon {
  position: relative;
  display: inline-block;
  border-bottom: 2px dotted;
  padding: .5rem 2.6rem .5rem .5rem;
    margin-top: .5rem;
  transition: all .3s;
  color:#614f38;

  &:before {
    content: "";
    position: absolute;
    right: 5px;
    bottom: 0;
    width: 0;
    height: 0;
    bottom:40%;
    border-left: 5px solid black;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    transition: all .3s;
    
  }
  &:hover{
    
    &:before{
      right:0;
    }
  }
}

a.btn-icon img {
    width: 20px;
    margin-right: 10px;margin-bottom: -5px;
}
.store {
    width: 50%;
    margin-top: 0px;
}
.store p {
    margin-top: 50px;
}
.image-right {
    border: 0px red solid;
    float: right;
    width: 48%;
    margin-top: 0px;
}
.photo {
    width: 90%;
}
.photo-b {
    width: 65%;
}
.right {
    text-align: right;
}
.logo-img {
    width: 33%;
}

@media screen and (max-width: 1280px){
    #restrant-work h3 {
    font-size: 24px;
}
    #restrant-work h4 {
    font-size: 20px;
}
    .store {
    width: 100%;
    border: 0px red solid;
}
    .image-right {
    border: 0px red solid;
    float: none;
    width: 100%;
    margin-top: 0px;
}
    .photo {
    width: 90%;
}
    .photo-b {
    width: 65%;
}
    .right {
    text-align: right;
}
    .logo-img {
    width: 32%;
}
}

/*----------------------------
branding
----------------------------*/

#branding h3 {
    margin-top: 100px;
    margin-bottom: 25px;
}

#branding h4 {
    margin-top: 100px;
    font-size: 22px;
    margin-bottom: 25px;
    border-left: 4px solid #333;
    padding-left: 15px;
    line-height: 28px;
}
.resnum2 {
    padding-top: 0px;
    font-weight: bold;
    line-height: 3em;
    display: flex;
    align-items: center;
}
.resnum2:after {
     background: radial-gradient(circle farthest-side, #3a3a3a, #3a3a3a 30%, transparent 30%, transparent);
    background-size: 8px;
    content: '';
    display: inline-block;
    height: 8px;
    width: 100%;
}

/* list */
ul.list_design{
}
ul.list_design li{
    list-style:none; /* デフォルトのリストのスタイルはなしに */
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: bold;
}
ul.list_design li::before {
    content: '＊'; /* リストのスタイルを＊にします */
    color: #EEB1C0; /* リストのスタイルの色をピンクに */
    padding-right: 5px;/* リストの番号と文字の間に隙間をあける */
}

/* flow */
.flow_design03 {
  display: flex;
  align-items: center;
  margin-left: 0px;
    margin-top: 35px;
}

.flow_design03 ul {
  padding: 0;
}

.flow_design03 li {
  list-style-type: none;
}

.flow_design03 dd {
  margin-left: 0;
    font-size: 14px;
}

.flow03 {
  position: relative;
}

.flow03::before {
  content: "";
  width: 15px;
  height: 100%;
  background: #eee;
  margin-left: -128px;
  display: block;
  position: absolute;
  top: 0;
  left: 120px;
  border-radius: 20px;
}

.flow03 > li {
  position: relative;
}

.flow03 > li:not(:last-child) {
  margin-bottom: 60px;
}

.flow03 > li .icon03 {
  font-size: 0.8em;
  width: 2em;
  height: 2em;
  line-height: 2;
  text-align: center;
  font-weight: bold;
  border-radius: 100vh;
  color: #fff;
  background: #333;
  display: inline-block;
  margin-right: 0.3em;
}

.flow03 > li dl {
  padding-left: 30px;
  position: relative;
}

.flow03 > li dl::before,
.flow03 > li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
}

.flow03 > li dl::before {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  background: #333;
  border-radius: 50%;
  left: -4px;
}

.flow03 > li dl::after {
  width: 20px;
  border-bottom: 1px dashed #999;
  position: absolute;
  left: 5px;
}

.flow03 > li dl dt {
  font-size: 1.3em;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
}



/* gallery */
.small {
    font-size: 14px;
    margin-bottom: 15px;
}
.gallery{
columns: 4;/*段組みの数*/
padding:0 0px;/*ギャラリー左右に余白をつける*/
margin:0;
}

.gallery li {
    margin-bottom: 20px;/*各画像下に余白をつける*/
list-style:none;
}

/*ギャラリー内のイメージは横幅100%にする*/
.gallery img{
	width:100%;
	height:auto;
	vertical-align: bottom;/*画像の下にできる余白を削除*/}

/*　横幅900px以下の段組み設定　*/
@media only screen and (max-width: 900px) {
	.gallery{
	columns:3;
	}	
}

@media only screen and (max-width: 768px) {
	.gallery{
	columns: 2;
	}	
}

/*画像を出現させるアニメーションCSS*/

.flipLeft{
animation-name: flipLeft;
animation-duration:0.5s;
animation-fill-mode:forwards;
perspective-origin: left center;
opacity: 0;
}

@keyframes flipLeft{
  from {
   transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
  opacity: 0;
  }

  to {
  transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
  opacity: 1;
  }
}
/*----------------------------
architecture
----------------------------*/
.a-fv {
    padding-top: 35px;
    width: 100%;
}
.big {
    font-weight: bold;
    font-size: 20px;
}

@media only screen and (max-width: 768px) {
	.big {
    font-size: 16px;
}	
    .arc {
        font-size: 26px;
    }
}
/*----------------------------
contact
----------------------------*/
#contact_mail {
    margin-top: -100px;
}

/*----------------------------
footer
----------------------------*/

/* contact */
p.century {
    margin: 0; 
    padding: 0;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 500;
    font-size: 26px;
    color: #333;
}
p.ja {
    font-size: 14px;
    color: #333;
}
img.mail {
    width: 26px;
}

.box17{
    text-align: center;
    margin: auto;
    position: relative;
    padding: 1.5em 1.5em;
    border-top: solid 1px #333;
    border-bottom: solid 1px #333;
    width: 80%;
    max-width: 350px; 
}
.box17:before, .box17:after{
    content: '';
    position: absolute;
    top: -10px;
    width: 1px;
    height: -webkit-calc(100% + 20px);
    height: calc(100% + 20px);
    background-color: #333;
}
.box17:before {left: 10px;}
.box17:after {right: 10px;}
.box17:hover {
    background-color: #f7f6f6;
}

/* page top */
.page-top {
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  background-color: #fff;
}
.page-top {
    text-align: center;
    margin: 100px 0;
}
.page-top img {
    width: 25px;
}

/* footer */
footer {
    text-align: center;
    border-top: 1px #ccc solid;
}
footer img {
    margin: 65px 0;
}
footer p.name {
    font-weight: bold;
}
footer p.address {
    font-size: 13px;
}

/* copyright */
.cpl {
    margin: 100px auto;
    text-align: center;
    font-size: 12px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 500;
    
}