/* CSS Document */

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

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;
  color: #3d3536;
  background-color: white;
  overflow-x:hidden;
}

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

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

.clearfix {
  zoom: 1;
}

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

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-container-alpha {
  /* 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: 950px;
  margin: 0 auto;
}

.cd-container-alpha::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

.cd-container-monthly {
  /* 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: 950px;
  margin: 0 auto;
}

.cd-container-monthly::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;
  z-index:9999;
}
.cd-header:after {
  content: "";
  display: table;
  clear: both;
}
.cd-header #cd-logo {
  float: left;
  margin: -5px 0 0 5%;
}
.cd-header #cd-logo img {
  display: block;
}
@media only screen and (min-width: 768px) {
  .cd-header {
    height: 70px;
  }
  .cd-header #cd-logo {
    margin: 23px 0 0 5%;
  }
}

.cd-main-nav {
  float: right;
  margin-right: 5%;
  width: 44px;
  height: 100%;
  background: url("../img/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: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}
.cd-fixed-bg h1, .cd-fixed-bg h2 {
  position: absolute;
  left: 50%;
  top: 45%;
  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.6);
  color: white;
}

.cd-fixed-bg h3 {
  position: absolute;
  left: 50%;
  top: 53%;
  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: 9px;
  font-size: 1.575rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  color: white;
}

@media screen and (min-width: 321px) and (max-device-width: 920px) {
.cd-fixed-bg h3 {
  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: 10px;
  @font-size: 1.875rem;
  font-size: 1.275rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  color: white;
}
}
.cd-fixed-bg.cd-bg-1 {
	background-image:url(../images/f-bg05.jpg);
}
.cd-fixed-bg.cd-bg-2 {
	background-image:url(../images/f-bg02.jpg);
}
.cd-fixed-bg.cd-bg-3 {
	background-image:url(../images/f-bg01.jpg);
}
.cd-fixed-bg.cd-bg-4 {
	background-image:url(../images/f-bg03.jpg);
}
.cd-fixed-bg.cd-bg-5 {
	background-image:url(../images/f-bg04.jpg);
}
.cd-fixed-bg.cd-bg-6 {
	background-image:url(../images/f-bg06.jpg);
}
.cd-fixed-bg.cd-bg-7 {
	background-image:url(../images/f-bg07.jpg);
}
@media only screen and (min-width: 768px) {
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-fixed-bg {
    background-attachment: fixed;
  }
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 48px;
    font-weight: 300;
  }
}

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

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

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

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


.cd-scrolling-bg.cd-color-1 {
  @background-color: #3d3536;
  background-color:#FFF9F9;
  color: #a6989a;
}
.cd-scrolling-bg.cd-color-2 {
  background-color: #99a478;
  color: #3d3536;
}
.cd-scrolling-bg.cd-color-3 {
  background-color: #b4d7a8;
  color: #3d3536;
}
.cd-scrolling-bg.cd-color-4 {
  background-color: #ffffff;
  color: #3d3536;
  min-height:600px;
}/*今月のおすすめ*/

.cd-scrolling-bg.cd-color-5 {
  background-color: #ffffff;
  color: #3d3536;
  height:400px;
}

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

.cd-container p{
  font-size:2em;
}

@media screen and (min-width: 0px) and (max-device-width: 320px) {
.cd-scrolling-bg.cd-color-4 {
  background-color: #ffffff;
  color: #3d3536;
  margin-bottom:-200px;
}
}

@media screen and (min-width: 321px) and (max-device-width: 920px) {
.cd-scrolling-bg.cd-color-4 {
  background-color: #ffffff;
  color: #3d3536;
  height:800px;
}
}


.cd-scrolling-bg.cd-color-5 {
  background-color: #b4d7a8;
  color: #3d3536;
}
@media only screen and (min-width: 768px) {
  .cd-scrolling-bg {
    padding: 8em 0;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2;
    font-weight: 300;
  }
}

.cd-color-1 h2 {
	font-size:1.6em;
}
@media screen and (min-width: 321px) and (max-device-width: 920px) {
.cd-color-1 h2 {
	font-size:2em;
	margin-top:-80px;
}
}

.cd-color-2 h2 {
	font-size:1.6em;
}
@media screen and (min-width: 321px) and (max-device-width: 920px) {
.cd-color-2 h2 {
	font-size:2em;
	margin-top:-80px;
}
}

.cd-color-3 h2 {
	font-size:1.6em;
}
@media screen and (min-width: 321px) and (max-device-width: 920px) {
.cd-color-3 h2 {
	font-size:2em;
	margin-top:-80px;
}
}

.cd-color-4 h2 {
	font-size:1.7em;
}
@media screen and (min-width: 321px) and (max-device-width: 920px) {
.cd-color-4 h2 {
	font-size:2em;
	margin-top:-80px;
}
}

.cd-color-1 h2 {
	font-size:1.6em;
}
@media screen and (min-width: 321px) and (max-device-width: 920px) {
.cd-color-1 h2 {
	font-size:2em;
	margin-top:-80px;
}
}

.cd-container-alpha h2 {
	font-size:1.6em;
}
@media screen and (min-width: 321px) and (max-device-width: 920px) {
.cd-container-alpha h2 {
	font-size:2em;
	margin-top:-80px;
}
}

.cd-container-alpha p {
	font-size:1em;
}
@media screen and (min-width: 321px) and (max-device-width: 920px) {
.cd-container-alpha p {
	font-size:0.8em;
	margin-top:-80px;
}
}

@media screen and (min-width: 0px) and (max-device-width: 320px) {
.cd-container-alpha p {
	font-size:0.8em;
	margin-top:-80px;
}
}

.cd-color-1 h3 {
	font-size:1.4em;
	font-family:"ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	font-weight:800;
	margin-top:50px;
}
.cd-color-1 p {
	font-size:1.2em;
	margin-top:20px;
}
	
	
.cd-color-2 h3 {
	font-size:1.4em;
	font-family:"ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	font-weight:800;
	margin-top:50px;
}
@media screen and (min-width: 0px) and (max-device-width: 320px) {
.cd-color-2 h3 {
	font-size:.8em;
	font-family:"ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	font-weight:800;
	margin-top:50px;
}
}
.cd-color-2 p {
	font-size:1.2em;
	margin-top:20px;
}

@media screen and (min-width: 0px) and (max-device-width: 320px) {
.cd-color-2 p {
	font-size:.8em;
	margin-top:20px;
}

}

.cd-color-3 h3 {
	font-size:1.4em;
	font-family:"ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	font-weight:800;
	margin-top:50px;
}
@media screen and (min-width: 0px) and (max-device-width: 320px) {
.cd-color-3 h3 {
	font-size:.8em;
	font-family:"ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	font-weight:800;
	margin-top:50px;
}
}
.cd-color-3 p {
	font-size:1.2em;
	margin-top:20px;
}
@media screen and (min-width: 0px) and (max-device-width: 320px) {
.cd-color-3 p {
	font-size:.6em;
	margin-top:20px;
}
}
.cd-color-4 p {
	font-size:1.1em;
	margin-top:20px;
}

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

Recommend style

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

.cd-wrapper {
	width:950px;
	margin:0 auto;
	@display:block;
	@clear:both;
}
@media screen and (min-width: 321px) and (max-device-width: 920px) {
  .cd-wrapper {
	width:100%;
    padding: 8em 0.5em;
    font-size: 1px;
    font-size: 1.25rem;
    line-height: 2;
    font-weight: 300;
  }
}

.Storage {
	width:100%;
	clear:both;
	@float:left;
	margin:40px 0;
	padding:50px 0;
}

.Comments-Area {
	width:550px;
	float:right;
	text-align:left;
	padding:20px 0;
}
.Comments-Area p {
	font-size:1.3em;
	font-weight:500;
}

@media screen and (min-width: 321px) and (max-device-width: 920px) {
  .Comments-Area p{
    font-size: 1px;
    font-size: 1.25rem;
    line-height: 2;
    font-weight: 300;
  }
}



.Storage-photo {
	float:left;
}

#intro {
	width:100%;
	height:300px;
	margin-top:50px;
	@background-image:url(../images/bg-color01.jpg);
	background-repeat:repeat;
}

#Recommended {
	width:900px;
	margin:0 auto;
	display:block
}

#Recom01 {
	width:450px;
	float:left;
	display:block;
}

#Recom02 {
	width:450px;
	float:right;
	display:block;
}

#Recommended img {
	margin:0 auto;
	margin:30px 0 20px;
}

#Recom01 h3 , #Recom02 h3 {
	font-family:"ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	font-size:1.2em;
	font-weight:800;
}

#Recom01 p , #Recom02 p {
	font-family:"メイリオ","Hiragino Kaku Gothic Pro",Meiryo,"ヒラギノ角ゴ Pro W3","MS PGothic","MS UI Gothic",Helvetica,Arial,sans-serif;
	font-size:.9em;
}

#slide {
width:440px;
height:300px;
margin:0 auto;
position:relative;
}
#slide img {
position:absolute;
left:0;
top:0;
}

#left-Wing {
	width:460px;
	float:left;
	text-align:left;
	margin-top:30px;
}

#left-Wing p {
	font-size:1em;
	line-height:1.5;
	font-weight:800;
}


#right-Wing {
	@clear:both;
	float:right;
	margin-top:30px;
	padding-top:60px;
}

#add {
	padding:30px 0;
}

#Des-area {
	margin:40px 0 0;
}

#Des-area p {
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight:500;
	margin:25px auto 0;
	
}