﻿/* -------------------------------- 

Primary style

-------------------------------- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

body {
  font-size: 100%;
  /* font-family: "Roboto", sans-serif; */
  font-family: "メイリオ","ヒラギノ角ゴ Pro","ＭＳ Ｐゴシック", sans-serif;
  color: #3d3536;
  background-color: white;
}

body, html {
  /* important */
  height: 100%;
}

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

/*リンク上にカーソルを乗せると下線が表示*/
a { text-decoration:none;}
a:hover { text-decoration:underline;}


/*太字指定*/
span.bold {font-weight: bold; }


/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 768px;
  margin: 0 auto;
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------- 

-------------------------------- */
.cd-container2 {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}
.cd-container2::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------- 


Main components 

-------------------------------- */
.cd-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.cd-header:after {
  content: "";
  display: table;
  clear: both;
}
.cd-header #cd-logo {
  float: left;
  margin: 2px 0 0 5%;
}
.cd-header #cd-logo img {
  display: block;
}
@media only screen and (min-width: 768px) {
  .cd-header {
    height: 120px;
  }
  .cd-header #cd-logo {
    margin: 10px 0 0 5%;
  }
}

.cd-main-nav {
  float: right;
  margin-right: 5%;
  width: 44px;
  height: 100%;
  background: url("../images/cd-icon-menu.svg") no-repeat center center;
  background-size: 44px 44px;
  cursor: pointer;
}
.cd-main-nav ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.cd-main-nav ul.is-visible {
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}
.cd-main-nav a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding-left: 5%;
  background: #2f292a;
  border-top: 1px solid #453c3d;
  color: #8e7d7f;
}
@media only screen and (min-width: 768px) {
  .cd-main-nav {
    width: auto;
    height: auto;
    background: none;
    cursor: auto;
  }
  .cd-main-nav ul {
    position: static;
    width: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    line-height: 70px;
  }
  .cd-main-nav ul.is-visible {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .cd-main-nav li {
    display: inline-block;
    margin-left: 1em;
  }
  .cd-main-nav a {
    display: inline-block;
    height: auto;
    line-height: normal;
    background: transparent;
    padding: .6em 1em;
    border-top: none;
    color: #3d3536;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    font-size: 0.875rem;
  }
  .no-touch .cd-main-nav a:hover {
    color: #99a478;
  }
}

.cd-main-content {
  /* you need to assign a min-height to the main content so that the children can inherit it*/
  height: 100%;
  position: relative;
  z-index: 1;

}

.cd-fixed-bg {
  position: relative;
  min-height: 80%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}



/*cd-fixed-bgの画像サイズが横幅に合わせて可変*/
.cd-fixed-bg img { width: 100%; }



.cd-fixed-bg h1, .cd-fixed-bg h2 {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 90%;
  max-width: 1170px;
  text-align: right;
  font-size: 10px;

  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  color: white;
}



.cd-fixed-bg-colorline {
  position: relative;
  min-height: 2%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}



.cd-fixed-bg-colorline h1, .cd-fixed-bg-colorline h2 {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 90%;
  max-width: 1170px;
  text-align: center;
  font-size: 30px;
  font-size: 1.875rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  color: white;
}









.cd-fixed-bg.cd-bg-1 {
  background-image: url("../images/1920_1280_1.jpg");
}
.cd-fixed-bg.cd-bg-2 {
  background-image: url("../img/cd-background-2.jpg");
}
.cd-fixed-bg.cd-bg-3 {
  background-image: url("../img/cd-background-3.jpg");
}
.cd-fixed-bg.cd-bg-4 {
  background-image: url("../img/cd-background-4.jpg");
}
.cd-fixed-bg.cd-bg-5 {
  background-image: url("../images/contact.jpg");
}
.cd-fixed-bg.cd-bg-6 {
  background-image: url("../images/contact_airbnb.jpg");
}
.cd-fixed-bg.cd-bg-7 {
  background-image: url("../images/contact_shoot.jpg");
}
.cd-fixed-bg-colorline.cd-bg-2 {
  background-image: url("../images/new_colorline.gif");
}
.cd-fixed-bg-colorline.cd-bg-3 {
  background-image: url("../images/colorline2.gif");
}

@media only screen and (min-width: 768px) {
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 10px;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-fixed-bg {
    background-attachment: fixed;
  }
  .cd-fixed-bg-colorline {
    background-attachment: fixed;
  }
  
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 10px;
    font-weight: 300;
  }
}

.cd-scrolling-bg {
  position: relative;
  min-height: 100%;
  padding: 4em 0;
  line-height: 1.6;
    /* box-shadow: 0 0 50px rgba(0, 0, 0, 0.5); */
  z-index: 2;
}


/*cd-scrolling-bgの画像サイズが横幅に合わせて可変*/
.cd-scrolling-bg img { width: 100%; }




.cd-scrolling-bg.cd-color-1 {
  background-color: #3d3536;
  color: #ffffff;
}
.cd-scrolling-bg.cd-color-2 {
  background-color: #ffffff;
  color: #333333;
}
.cd-scrolling-bg.cd-color-3 {
  background-color: #f0f0f0;
  color: #333333;
}


.cd-scrolling-bg-footer {
  position: relative;
  min-height: 5%;
  padding: 1em 0;
  line-height: 1.6;
    /* box-shadow: 0 0 50px rgba(0, 0, 0, 0.5); */
  z-index: 2;
}







.cd-scrolling-bg-footer.cd-color-1 {
  background-color: #3d3536;
  color: #ffffff;
}



@media only screen and (min-width: 768px) {
  .cd-scrolling-bg {
	min-height: 50%;
    padding: 4em 0;
    font-size: 16px;

    line-height: 2;
    font-weight: 300;
  }
  
    .cd-scrolling-bg-footer {
	min-height: 5%;
    padding: 1em 0;
    font-size: 12px;

    line-height: 2;
    font-weight: 300;
  }
}





#A {
  margin-top: -72px; /* 固定ナビの高さ分のネガティブマージン */
  padding-top: 72px; /* 打ち消し用のパディング */
}
#B {
  margin-top: -72px; /* 固定ナビの高さ分のネガティブマージン */
  padding-top: 72px; /* 打ち消し用のパディング */
}
#C {
  margin-top: -72px; /* 固定ナビの高さ分のネガティブマージン */
  padding-top: 72px; /* 打ち消し用のパディング */
}
#D {
  margin-top: -72px; /* 固定ナビの高さ分のネガティブマージン */
  padding-top: 72px; /* 打ち消し用のパディング */
}
#E {
  margin-top: -72px; /* 固定ナビの高さ分のネガティブマージン */
  padding-top: 72px; /* 打ち消し用のパディング */
}
#F {
  margin-top: -72px; /* 固定ナビの高さ分のネガティブマージン */
  padding-top: 72px; /* 打ち消し用のパディング */
}

#S0 {
  margin-top: -72px; /* 固定ナビの高さ分のネガティブマージン */
  padding-top: 72px; /* 打ち消し用のパディング */
}
#S1 {
  margin-top: -72px; /* 固定ナビの高さ分のネガティブマージン */
  padding-top: 72px; /* 打ち消し用のパディング */
}
#S2 {
  margin-top: -72px; /* 固定ナビの高さ分のネガティブマージン */
  padding-top: 72px; /* 打ち消し用のパディング */
}
#S3 {
  margin-top: -72px; /* 固定ナビの高さ分のネガティブマージン */
  padding-top: 72px; /* 打ち消し用のパディング */
}
#S4 {
  margin-top: -72px; /* 固定ナビの高さ分のネガティブマージン */
  padding-top: 72px; /* 打ち消し用のパディング */
}
#S5 {
  margin-top: -72px; /* 固定ナビの高さ分のネガティブマージン */
  padding-top: 72px; /* 打ち消し用のパディング */
}
#S6 {
  margin-top: -72px; /* 固定ナビの高さ分のネガティブマージン */
  padding-top: 72px; /* 打ち消し用のパディング */
}
#S7 {
  margin-top: -72px; /* 固定ナビの高さ分のネガティブマージン */
  padding-top: 72px; /* 打ち消し用のパディング */
}
#S8 {
  margin-top: -72px; /* 固定ナビの高さ分のネガティブマージン */
  padding-top: 72px; /* 打ち消し用のパディング */
}
#S9 {
  margin-top: -72px; /* 固定ナビの高さ分のネガティブマージン */
  padding-top: 72px; /* 打ち消し用のパディング */
}





/* サムネイル画像を拡大表示 */
img{
	vertical-align:bottom;
	border:0;
}
.over img{
	filter:alpha(opacity=75);
	opacity:0.75;
}
#navi ul{
	font-size:0;
	padding:10px 0 0 0;
	margin:0;
}
#navi li{
	display:inline;
	list-style:none;
	padding:0 13px 0 13px;
}


/* グーグルマップレスポンシブ対応 */
.ggmap {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
}
 
.ggmap iframe,
.ggmapr object,
.ggmap embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

/* グーグルカレンダーレスポンシブ対応 */
.cal_wrapper {
max-width: 960px;
min-width: 300px;
margin: 2.0833% auto;
}
.googlecal {
position: relative;
padding-bottom: 100%;
height: 0;
}
.googlecal iframe {
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height: 100% !important;
}



/* tableレスポンシブ対応 */
section table   { width: 100%; }
section th, section td  { padding: 10px; border: 0px solid #ddd; }
section th  { background: #f4f4f4; }
 
/*----------------------------------------------------
    .demo02
----------------------------------------------------*/
.demo02 th  { width: 13%; }
.demo02 td  { text-align: center; }
.demo02 td:first-child  { text-align: left; }
@media only screen and (max-width: 800px) { 
    .demo02 { 
        display: block; 
        width: 100%; 
        margin: 0 -10px;
    }
    .demo02 thead{ 
        display: block; 
        float: left;
        overflow-x:scroll;
    }
    .demo02 tbody{ 
        display: block; 
        width: auto; 
        overflow-x: auto; 
        white-space: nowrap;
    }
    .demo02 th{ 
        display: block;
        width:auto;
    }
    .demo02 tbody tr{ 
        display: inline-block; 
        margin: 0 -3px;
    }
    .demo02 td{ 
        display: block;
		width: 100%;
    }
	
}
/* tableレスポンシブ対応 */


/* tableレスポンシブ対応 */
section table   { width: 100%; }
section th, section td  { padding: 10px; border: 1px solid #ddd; }
section th  { background: #f4f4f4; }
 
/*----------------------------------------------------
    .demo03
----------------------------------------------------*/
.demo03 th  { width: 25%; }
.demo03 td  { text-align: left; }
.demo03 td:first-child  { text-align: left; }
@media only screen and (max-width: 800px) { 
    .demo03 { 
        display: block; 
        width: 100%; 
        margin: 0 -10px;
    }
    .demo03 thead{ 
        display: block; 
        float: left;
        overflow-x:scroll;
    }
    .demo03 tbody{ 
        display: block; 
        width: auto; 
        overflow-x: auto; 
        white-space: nowrap;
    }
    .demo03 th{ 
        display: block;
        width:auto;
    }
    .demo03 tbody tr{ 
        display: inline-block; 
        margin: 0 -3px;
    }
    .demo03 td{ 
        display: block;
    }
	
}
/* tableレスポンシブ対応 */


/* tableレスポンシブ対応 */
section table   { width: 100%; }
section th, section td  { padding: 10px; border: 1px solid #ddd; }
section th  { background: #f4f4f4; }
 
/*----------------------------------------------------
    .demo04
----------------------------------------------------*/
.demo04 th  { width: 15%; }
.demo04 td  { text-align: left; }
.demo04 td:first-child  { text-align: left; }
@media only screen and (max-width: 800px) { 
    .demo04 { 
        display: block; 
        width: 100%; 
        margin: 0 -10px;
    }
    .demo04 thead{ 
        display: block; 
        float: left;
        overflow-x:scroll;
    }
    .demo04 tbody{ 
        display: block; 
        width: auto; 
        overflow-x: auto; 
        white-space: nowrap;
    }
    .demo04 th{ 
        display: block;
        width: auto;
    }
    .demo04 tbody tr{ 
        display: inline-block; 
        margin: 0 -3px;
    }
    .demo04 td{ 
        display: block;
    }
	
}
/* tableレスポンシブ対応 */


/* tableレスポンシブ対応 */
section table   { width: 100%; }
section th, section td  { padding: 10px; border: 1px solid #ddd; }
section th  { background: #f4f4f4; }
 
/*----------------------------------------------------
    .demo05
----------------------------------------------------*/
.demo05 th  { width: 13%; }
.demo05 td  { text-align: center; }
.demo05 td:first-child  { text-align: left; }
@media only screen and (max-width: 800px) { 
    .demo05 { 
        display: block; 
        width: 100%; 
        margin: 0 -10px;
    }
    .demo05 thead{ 
        display: block; 
        float: left;
        overflow-x:scroll;
    }
    .demo05 tbody{ 
        display: block; 
        width: auto; 
        overflow-x: auto; 
        white-space: nowrap;
    }
    .demo05 th{ 
        display: block;
        width:auto;
    }
    .demo05 tbody tr{ 
        display: inline-block; 
        margin: 0 -3px;
    }
    .demo05 td{ 
        display: block;
    }
}
/* tableレスポンシブ対応 */


/*画像幅100％*/
p.resizeimage img { width: 100%; }



@media only screen and (min-width: 768px) {
.googlecal { padding-bottom: 75%; }
}



/* フェイスブックレスポンシブ対応 */
.fb_likebox_wrap iframe{ width: 100%!important;
}



/* bxslider画像の周りのグレー枠線を削除 */
 .bx-viewport {
    border:none!important;
}


/* coordinateページの画像オンマウス */
.hover-opacity50:hover{
opacity:0.5;
}





/* nivoslider導入 */
.nivoSlider {
	position:relative;
	width:100%;
	height:auto;
	overflow: hidden;
}
.nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
	max-width: none;
}
.nivo-main-image {
	display: block !important;
	position: relative !important; 
	width: 100% !important;
}

/* If an image is wrapped in a link */
.nivoSlider a.nivo-imageLink {
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	border:0;
	padding:0;
	margin:0;
	z-index:6;
	display:none;
}
/* The slices and boxes in the Slider */
.nivo-slice {
	display:block;
	position:absolute;
	z-index:5;
	height:100%;
	top:0;
}
.nivo-box {
	display:block;
	position:absolute;
	z-index:5;
	overflow:hidden;
}
.nivo-box img { display:block; }

/* Caption styles */
.nivo-caption {
	position:absolute;
	left:0px;
	bottom:0px;
	background:#000;
	color:#fff;
	width:100%;
	z-index:8;
	padding: 5px 10px;
	opacity: 0.8;
	overflow: hidden;
	display: none;
	-moz-opacity: 0.8;
	filter:alpha(opacity=8);
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.nivo-caption p {
	padding:5px;
	margin:0;
}
.nivo-caption a {
	display:inline !important;
}
.nivo-html-caption {
    display:none;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	position:absolute;
	top:45%;
	z-index:9;
	cursor:pointer;
}
.nivo-prevNav {
	left:0px;
}
.nivo-nextNav {
	right:0px;
}
/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
	text-align:center;
	padding: 15px 0;
}
.nivo-controlNav a {
	cursor:pointer;
}
.nivo-controlNav a.active {
	font-weight:bold;
}



