@charset "utf-8";

/*--------------------------------------------------------------------------
   reset
---------------------------------------------------------------------------*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,
sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,
figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;}
body{line-height:0;}
article,aside,details,figcaption,figure,main,footer,header,hgroup,menu,nav,section{display:block;}
ol,ul,li{list-style:none;}
blockquote,q{quotes:none;}
blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;text-decoration: none;}
ins{background-color:#ff9;color:#000;text-decoration:none;}
mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold;}
img{border:0;vertical-align:top;}
em{font-style:italic;}
del{text-decoration:line-through;}
abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help;}
table{border-collapse:collapse;border-spacing:0;}
hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:0;padding:0;}
input,select,textarea{font-family:inherit;font-style:inherit;font-weight:inherit;font-size:100%;margin:0;padding:0;vertical-align:middle;}
input:focus,textarea:focus,select:focus{outline:none;}


/*--------------------------------------------------------------------------
   html
---------------------------------------------------------------------------*/
html{
  overflow-y: scroll;
  font-size: 62.5%;
}

/*--------------------------------------------------------------------------
   body
---------------------------------------------------------------------------*/
body{
  color: #413928;

  font-family: "Noto Sans JP","Zen Kaku Gothic New","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  font-size: 1.6rem;
  letter-spacing: .05em;
  line-height: 1.7;

  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;

  background: #ffffff;
  overflow-x: hidden;
}

/*
::-moz-selection{
  color:;
  background:;
}
::selection{
  color:;
  background:;
}
*/

/*--------------------------------------------------------------------------
   Loader
---------------------------------------------------------------------------*/
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader_inner {
  width: 40px;
  height: 40px;
  border: 3px solid #EDEBE5;
  border-top: 3px solid #897750;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#Page {
  transition: opacity 0.5s ease-out;
}

#Page.is-loaded {
  opacity: 1 !important;
}

/*--------------------------------------------------------------------------
   base link
---------------------------------------------------------------------------*/
a{
  outline: none;
  -webkit-tap-highlight-color: rgba(255,255,255,1);
  color: #3E3A39;
  transition: 0.5s;
}
a:link,
a:visited{
  text-decoration: none;
}
a:hover{
  text-decoration: none;
  outline: none;
}
a:active{
  outline: none;
}

/*--------------------------------------------------------------------------
   Other
---------------------------------------------------------------------------*/

/* clearfix
-----------------------------------------------------------------*/
.cf:before,
.cf:after{
  content: "";
  display: table;
}
.cf:after{
  clear: both;
}
.cf{
  zoom: 1;
}
.sp{
  display: none!important;
}

.go_top{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2;
/*  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s; */
}
.go_top.is_show{
  opacity: 1;
  visibility: visible;
}
.go_top a:hover{
  opacity: 0.7;
}

/* web font
-----------------------------------------------------------------*/
.ft_lexend {
  font-family: "Lexend", sans-serif;
}
.ftcl_gold{
  color: #897750;
}


/*--------------------------------------------------------------------------
   Page
---------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------
   Header
---------------------------------------------------------------------------*/
#Header{
  position: relative;
}

#Header .header_bar{
  background: #ffffff;
  padding: 30px 50px;
  position: relative;
}
#Header .logo{
  text-align: center;
}

#Header .insta_link{
  position: absolute;
  top: 35px;
  right: 200px;
  z-index: 1;
}
#Header .insta_link a:hover{
  opacity: 0.7;
}

.global_navi{
  position: fixed;
  top: 0;
  right: 0;
  width: 445px;
  z-index: 100;
  background: #EDEBE5;
  display: none;
}
.global_navi .global_navi_inner{
  width: 100%;
}

#Header .insta_link_in{
  position: absolute;
  top: 33px;
  right: 110px;
  z-index: 1;
}
#Header .insta_link_in a{
  display: flex;
  align-items: center;
}
#Header .insta_link_in a:hover{
  opacity: 0.7;
}
#Header .insta_link_in span{
  padding-right: 45px;
  margin-right: 5px;
  position: relative;
  font-size: 1.4rem;
  font-weight: 300;
  color: #897750;
  font-family: "Lexend", sans-serif;
}
#Header .insta_link_in span::after{
  content: "";
  height: 1px;
  width: 40px;
  background-color: #897750;
  position: absolute;
  right: 0;
  top: 12px;
}

#Navi{
}
#Navi ul.nav{
  padding: 50px 60px 30px;
}
#Navi ul li{
  text-align: left;
  margin: 20px 0 0;
}
#Navi ul li a{
  font-size: 2.4rem;
  color: #897750;
  font-weight: 300;
  font-family: "Lexend", sans-serif;
}
#Navi ul li a:hover{
  opacity: 0.7;
}
#Navi ul li a .txt_jp{
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  display: block;
}

#Navi .link{
  padding: 0 60px 30px;
}
#Navi .link ul{
  display: flex;
}
#Navi .link ul li{
  margin-top: 0;;
}
#Navi .link ul li:first-child{
  margin: 0 30px 0 0;
}
#Navi .link ul li a{
  font-size: 1.2rem;
  color: #897750;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}

#Navi .reco_box{
  padding: 40px 60px;
  background-color: #897750;
}
#Navi .reco_box .box_inner > a:hover{
  opacity: 0.7;
}
#Navi .reco_box .box_inner .flex{
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
#Navi .reco_box .box_inner .img{
  width: 96px;
}
#Navi .reco_box .box_inner .img img{
  width: 100%;
  height: auto;
}
#Navi .reco_box .box_inner .txt_box{
  width: calc(100% - 106px);
}
#Navi .reco_box .box_inner .txt_box .ttl{
  font-size: 1.6rem;
  font-weight: 400;
  color: #ffffff;
}
#Navi .reco_box .box_inner .txt_box .ttl span{
  display: block;
  font-size: 1.4rem;
}
#Navi .reco_box .box_inner .txt_box .price{
  font-size: 1.6rem;
  font-weight: 500;
  color: #ffffff;
  margin-top: 10px;
}
#Navi .reco_box .box_inner .txt_box .price span{
  font-size: 1.2rem;
  font-weight: 400;
  color: #ffffff;
}

#Header .nav_box{
  position: fixed;
  top: 20px;
  right: 40px;
  width: 50px;
  height: 50px;
  text-align: center;
  z-index: 110;
}
#Header .menu-trigger,
#Header .menu-trigger span{
  display: inline-block;
  box-sizing: border-box;
  transition: all .4s;
}
#Header .menu-trigger{
  position: relative;
  width: 21px;
  height: 25px;
  cursor: pointer;
  padding: 20px 15px;
}
#Header .menu-trigger a:hover{
  opacity: 1;
}
#Header .menu-trigger span{
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: #897750;
}
#Header .menu-trigger span:nth-of-type(1){
  top: 28px;
}
#Header .menu-trigger span:nth-of-type(2){
  top: 18px;
}
#Header .menu-trigger.active span:nth-of-type(1){
  top: 25px;
  transform: rotate(-45deg);
}
#Header .menu-trigger.active span:nth-of-type(2){
  top: 25px;
  transform: rotate(-135deg);
}


/*--------------------------------------------------------------------------
   MV (Main Visual)
---------------------------------------------------------------------------*/
.mv {
  position: relative;
  overflow: hidden;
}

.mv_slide {
  position: relative;
}

.mv_slide .mv_img {
  position: relative;
  overflow: hidden;
}

.mv_slide .mv_img {
  position: relative;
  overflow: hidden;
}

.mv_slide .mv_img picture,
.mv_slide .mv_img img {
  width: 100%;
  height: auto;
  display: block;
}

.mv_slide .mv_img img {
  transition: transform 10s ease-out;
  transform: scale(1.05);
  will-change: transform;
}

.mv_slide .slick-slide .mv_img img.zoom-in {
  transform: scale(1.15);
}

.mv_slide .slick-slide .mv_img img.zoom-out {
  transform: scale(1);
}

.mv_slide .slick-slide {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.mv_slide .slick-slide.slick-active {
  opacity: 1;
}

/*--------------------------------------------------------------------------
   Content
---------------------------------------------------------------------------*/

.pankuzu{
  padding: 10px 50px;
  background-color: #ffffff;
}
.pankuzu ul{
  display: flex;
  align-items: center;
  color: #897750;
  font-size: 1.2rem;
  font-weight: 300;
}
.pankuzu ul li{
  margin-right: 5px;;
}
.pankuzu ul li a{
  color: #897750;
  font-family: "Lexend", sans-serif;
}
.pankuzu ul li a:hover{
  opacity: 0.7;
}

/* Main
-----------------------------------------------------------------*/
#Main{
}
#Main section{
}
#Main .inner{
}
#Main h2.ttl{
  font-size: 5.4rem;
  font-weight: 300;
  color: #897750;
  font-family: "Lexend", sans-serif;
  line-height: 5.8rem;
}
#Main h2.ttl span{
  font-size: 1.6rem;
  font-weight: 400;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
}
#Main h3.ttl{
}

#Main .ttl_area{
  text-align: center;
  background-color: #897750;
  position: relative;
  padding: 0 50px;
}
#Main .ttl_area h2{
  font-size: 2.4rem;
  font-weight: 300;
  color: #ffffff;
  font-family: "Lexend", sans-serif;
  position: absolute;
  top: 16px;
  left: 50px;
}
#Main .ttl_area h3{
  font-size: 1.4rem;
  font-weight: 400;
  color: #ffffff;
  padding: 25px 0;
}

.more_btn {
}
.more_btn a{
  display: block;
  color: #ffffff;
	font-size: 1.4rem;
	font-weight: 400;
  padding: 5px;
  border-radius: 30px;
  border: 1px solid #ffffff;
  text-align: center;
  background-color: #897750;
}
.more_btn a:hover{
  display: block;
  color: #897750;
  border: 1px solid #897750;
  text-align: center;
  background-color: #ffffff;
}

.link_btn {
  width: 280px;
  margin:  50px auto 0;
  padding-top: 50px;
}
.link_btn a{
  position: relative;
  display: block;
  color: #897750;
	font-size: 1.6rem;
	font-weight: 400;
  padding: 15px;
  border: 1px solid #897750;
  text-align: center;
  background-color: #ffffff;

}
.link_btn a:hover{
  display: block;
  color: #ffffff;
	font-weight: 400;
  border: 1px solid #897750;
  text-align: center;
  background-color: #897750;
}
.link_btn a:after{
  content: "";
  display: block;
  width: 1px;
  height: 55px;
  background-color: #897750;
  position: absolute;
  top: -45px;
  left: 50%;
}

.link_btn.itemmore{
  padding: 0 0 80px 0;
  margin: 0 auto;
}
.link_btn.itemmore a:after{
  display: none;
}


.more_btn_m {
  width: 240px;
  margin: 30px 0 0 auto;
}
.more_btn_m a{
  display: block;
  color: #ffffff;
	font-size: 1.6rem;
	font-weight: 400;
  padding: 5px;
  text-align: center;
  background-color: #897750;
  border-radius: 6px;
  border: 1px solid #897750;

}
.more_btn_m a:hover{
  display: block;
  color: #897750;
	font-weight: 400;
  text-align: center;
  background-color: #ffffff;

}


.ItemList{
  background-color: #EDEBE5;
}
.ItemList .catlink{
  display: flex;
  flex-wrap: wrap;
  max-width: 920px;
  padding: 0 50px;
  margin: 40px auto 0;
}
.ItemList .catlink li{
  display: flex;
  margin: 8px 8px 0 0;
}
.ItemList .catlink li a{
  display: block;
  border: solid 1px #897750;
  color: #897750;
  font-size: 1.4rem;
  padding: 5px 15px;
  border-radius: 20px;
}
.ItemList .catlink li a.all{
  background-color: #ffffff;
}
.ItemList .catlink li a:hover{
  background-color: #ffffff;
}

.ItemList .itemList{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 50px 100px;
}
.ItemList .itemList .item.part{
  width: 30%;
  margin-top: 60px;
}
.ItemList .itemList .item.part img.image-resize{
  width: 100%;
  height: auto;
}
.ItemList .itemList:after{
  content: "";
  display: inline-block;
  width: 30%;
}

.ItemList .itemList .item.part .itemTitle{
  margin-top: 15px;
}
.ItemList .itemList .item.part .itemTitle h2{
  font-weight: 500;
}
.ItemList .itemList .item.part .itemDetail{
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 5px;
}


/*--------------------------------------------------------------------------
   Footer
---------------------------------------------------------------------------*/
#Footer{
  background: #897750;
}
#Footer .footer_inner{
  max-width: 920px;
  margin: 0 auto;
  padding: 60px 50px 30px;
  position: relative;
}
#Footer .logo{
  text-align: center;
}
#Footer .insta_box{
  text-align: center;
  margin-top: 40px;
}
#Footer .insta_box a:hover{
  opacity: 0.7;
}

#Footer nav ul{
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
#Footer nav ul li{
  margin: 0 22px;
  text-align: center;
}
#Footer nav ul li a{
  font-size: 2.4rem;
  font-weight: 300;
  color: #ffffff;
  font-family: "Lexend", sans-serif;
}
#Footer nav ul li a span{
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
}
#Footer nav ul li a:hover{
  opacity: 0.7;
}

#Footer .flex{
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  align-items: center;
}
#Footer .flex ul{
  display: flex;
}
#Footer .flex ul li{
  margin: 0 30px 0 0;
}
#Footer .flex ul li a{
  font-size: 1.2rem;
  font-weight: 400;
  color: #ffffff;
}
#Footer .flex ul li a:hover{
  opacity: 0.7;
}
#Footer .copy{
  font-size: 1.2rem;
  font-weight: 300;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  /* 768pxまでの幅の場合に適応される */


}

@media screen and (max-width: 640px) {
/* 640pxまでの幅の場合に適応される */

body{
  min-width: 320px;
  font-size: 1.6rem;
}

.sp{
  display: inline-block!important;
}
.pc{
  display: none!important;
}

.go_top{
  right: 10px;
  bottom: 10px;
}
.go_top img{
  width: 60px;
}


/*--------------------------------------------------------------------------
   Header
---------------------------------------------------------------------------*/
#Header{
}

#Header .header_bar{
  background: #ffffff;
  padding: 20px 25px;
  position: relative;
}
#Header .logo{
  text-align: center;
}
#Header .logo img{
  width: 110px;
  height: auto;
}

#Header .insta_link{
  display: none;;
}



.global_navi{
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  z-index: 100;
  background: #EDEBE5;
}
.global_navi .global_navi_inner{
  width: 100%;
}

#Header .insta_link_in{
  position: absolute;
  top: 22px;
  right: 70px;
  z-index: 1;
}

#Navi{
}
#Navi ul.nav{
  padding: 40px 30px 20px;
}
#Navi ul li{
  text-align: left;
  margin: 15px 0 0;
}
#Navi ul li a{
  font-size: 2rem;
  color: #897750;
  font-weight: 300;
  font-family: "Lexend", sans-serif;
}
#Navi ul li a:hover{
  opacity: 0.7;
}
#Navi ul li a .txt_jp{
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  display: block;
}

#Navi .link{
  padding: 0 30px 30px;
}
#Navi .link ul{
  display: block;
}
#Navi .link ul li a{
  font-size: 1.2rem;
  color: #897750;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}
#Navi .link ul li:first-child {
  margin: 0 0 10px 0;
}

#Navi .reco_box{
  padding: 20px 10px;
  background-color: #897750;
}
#Navi .reco_box .box_inner .flex{
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
#Navi .reco_box .box_inner .img{
  width: 96px;
}
#Navi .reco_box .box_inner .img img{
  width: 100%;
  height: auto;
}
#Navi .reco_box .box_inner .txt_box{
  width: calc(100% - 106px);
}
#Navi .reco_box .box_inner .txt_box .ttl{
  font-size: 1.4rem;
  font-weight: 400;
  color: #ffffff;
}
#Navi .reco_box .box_inner .txt_box .ttl span{
  display: block;
  font-size: 1.2rem;
}
#Navi .reco_box .box_inner .txt_box .price{
  font-size: 1.4rem;
  font-weight: 500;
  color: #ffffff;
  margin-top: 10px;
}
#Navi .reco_box .box_inner .txt_box .price span{
  font-size: 1.2rem;
  font-weight: 400;
  color: #ffffff;
}

#Header .nav_box{
  position: fixed;
  top: 8px;
  right: 10px;
  width: 50px;
  height: 50px;
  text-align: center;
  z-index: 110;
}




/*--------------------------------------------------------------------------
     Content
  ---------------------------------------------------------------------------*/

.pankuzu{
  display: none;
}
  

/* Main
-----------------------------------------------------------------*/
#Main{
}
#Main .inner{
}
#Main section{
}
#Main h2.ttl{
  font-size: 3.6rem;
  font-weight: 300;
  color: #897750;
  font-family: "Lexend", sans-serif;
  line-height: 4rem;
}
#Main h2.ttl span{
  font-size: 1.6rem;
  font-weight: 400;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
}
#Main h3.ttl{
}

#Main .ttl_area{
  text-align: center;
  background-color: #897750;
  position: relative;
  padding: 0 16px;
}
#Main .ttl_area h2{
  font-size: 1.6rem;
  font-weight: 300;
  color: #ffffff;
  font-family: "Lexend", sans-serif;
  position: absolute;
  top: 14px;
  left: 16px;
}
#Main .ttl_area h3{
  font-size: 1.4rem;
  font-weight: 400;
  color: #ffffff;
  padding: 15px 0;
}


.more_btn {
}
.more_btn a{
  display: block;
  color: #ffffff;
	font-size: 1.4rem;
	font-weight: 400;
  padding: 5px;
  border-radius: 30px;
  border: 1px solid #ffffff;
  text-align: center;
  background-color: #897750;
}
.more_btn a:hover{
  display: block;
  color: #897750;
  border: 1px solid #897750;
  text-align: center;
  background-color: #ffffff;
}

.link_btn {
  max-width: 100%;
  width: 310px;
  margin:  50px auto 0;
  padding-top: 40px;
}
.link_btn a{
  position: relative;
  display: block;
  color: #897750;
	font-size: 1.6rem;
	font-weight: 400;
  padding: 15px;
  border: 1px solid #897750;
  text-align: center;
  background-color: #ffffff;

}
.link_btn a:hover{
  display: block;
  color: #ffffff;
	font-weight: 400;
  border: 1px solid #897750;
  text-align: center;
  background-color: #897750;
}
.link_btn a:after{
  content: "";
  display: block;
  width: 1px;
  height: 55px;
  background-color: #897750;
  position: absolute;
  top: -45px;
  left: 50%;
}


.more_btn_m {
  max-width: 100%;
  width: 340px;
  margin: 30px auto 0;
}
.more_btn_m a{
  display: block;
  color: #ffffff;
	font-size: 1.6rem;
	font-weight: 400;
  padding: 5px;
  text-align: center;
  background-color: #897750;
  border-radius: 6px;
  border: 1px solid #897750;

}
.more_btn_m a:hover{
  display: block;
  color: #897750;
	font-weight: 400;
  text-align: center;
  background-color: #ffffff;

}


.ItemList{
  background-color: #EDEBE5;
}
.ItemList .catlink{
  display: flex;
  flex-wrap: wrap;
  max-width: 920px;
  padding: 0 16px;
  margin: 40px auto 0;
}
.ItemList .catlink li{
  display: flex;
  margin: 8px 8px 0 0;
}
.ItemList .catlink li a{
  display: block;
  border: solid 1px #897750;
  color: #897750;
  font-size: 1.4rem;
  padding: 5px 15px;
  border-radius: 20px;
}
.ItemList .catlink li a.all{
  background-color: #ffffff;
}
.ItemList .catlink li a:hover{
  background-color: #ffffff;
}

.ItemList .itemList{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 16px 50px;
}
.ItemList .itemList .item.part{
  width: 48%;
  margin-top: 40px;
}
.ItemList .itemList .item.part img.image-resize{
  width: 100%;
  height: auto;
}
.ItemList .itemList .item.part img.label_image{
  width: 45px;
  height: 45px;
}
.ItemList .itemList:after{
  content: "";
  display: inline-block;
  width: 30%;
}

.ItemList .itemList .item.part .itemTitle{
  margin-top: 15px;
}
.ItemList .itemList .item.part .itemDetail{
  font-size: 1.8rem;
  margin-top: 5px;
}


/*--------------------------------------------------------------------------
   Footer
---------------------------------------------------------------------------*/
#Footer{
  background: #897750;
}
#Footer .footer_inner{
  max-width: 920px;
  margin: 0 auto;
  padding: 30px 32px 70px;
  position: relative;
}
#Footer .logo{
  text-align: center;
}
#Footer .insta_box{
  text-align: center;
  margin-top: 25px;
}
#Footer .insta_box a:hover{
  opacity: 0.7;
}

#Footer nav{
  display: none;
}

#Footer .flex{
  max-width: 310px;
  margin: 0 auto;
  display: block;
  margin-top: 30px;
}
#Footer .flex ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#Footer .flex ul li{
  margin: 0;
}
#Footer .flex ul li a{
  font-size: 1.2rem;
  font-weight: 400;
  color: #ffffff;
}
#Footer .flex ul li a:hover{
  opacity: 0.7;
}
#Footer .copy{
  text-align: center;
  font-size: 1.2rem;
  font-weight: 300;
  color: #ffffff;
  margin-top: 15px;
}


/* 640pxまでの幅の場合に適応される */
}