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

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, html {
  /* important */
  height: 100%;
}

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

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

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: 1000px;
  margin: 0 auto;
  text-align: left;
  font-size: 80%;
}
.cd-container::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: 13px 0 0 3%;
}
.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 3%;
  }
}

.cd-main-nav {
  float: right;
  font-family:"Hiragino Mincho ProN","HG����E","�l�r �o����", serif;
  margin-right: 3%;
  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 {
  font-family:"Hiragino Mincho ProN","HG����E","�l�r �o����", serif;
  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("../flamenco/cd-background-1.jpg");
}
.cd-fixed-bg.cd-bg-2 {
  background-image: url("../flamenco/cd-background-2.jpg");
}
.cd-fixed-bg.cd-bg-3 {
  background-image: url("../flamenco/cd-background-3.jpg");
}
.cd-fixed-bg.cd-bg-4 {
  background-image: url("../flamenco/cd-background-4.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;
  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-color-1 {
  background-color: #006600;
  color: #fff;
}
.cd-scrolling-bg.cd-color-2 {
  background-color: #b20101;
  color: #fff;
}
.cd-scrolling-bg.cd-color-3 {
  background-color: #006600;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .cd-scrolling-bg {
    padding: 4em 0;
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: 300;
  }
}


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

�ǉ�

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

ul.info_eve_box {
    margin:0;
    width:1030px;
	overflow: hidden;
}
 
ul.info_eve_box li {
    margin:0 15px 50px 15px;
    padding:10px 0 0 0;
    display:inline-block;
    width:220px;
    list-style:none;
    vertical-align:top; /* ��[���� */
	border-top: 3px solid #fff;
}
ul.info_eve_box li img {
    width:100%;
	height: 310px;
	margin:10px 0;
}


.info_contact_box {
	width:800px;
	margin:0 auto 30px auto;
	padding: 20px 0;
	font-size: 120%;
	text-align: center;
	line-height: 1.0;
	background-color:#035703;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
}



.info_youtube {
    width:350px;
	margin:0 auto 40px auto;
}
.info_youtube iframe {
	aspect-ratio: 9 / 16;
	width: 100%;
	height: 100%;
}



.info_link_list {
	display:flex;
    flex-wrap:wrap;
	
	width:100%;
	margin: 0 auto 0 auto ;
}
.info_link_list li {
	position: relative;
	width: calc((100% - 20px) / 2);
	margin: 0 20px 20px 0 ;
	padding: 20px 0;
	font-size: 100%;
	text-align: center;
	background-color:#88b285;
	border-radius: 30px;
	transition: 0.5s ;
	box-sizing:border-box;
}
.info_link_list li:nth-child(2n){margin: 0 0 20px 0 ;}
.info_link_list li a {position:absolute; top:0; left:0; height:100%; width:100%;}
.info_link_list li:hover{opacity:0.5; filter: alpha(opacity=50); -ms-filter: "alpha( opacity=50 )";}
.info_link_list strong{font-size: 130%;font-weight: bold;}




.info_fb_btn {
	float:left; 
	width:490px;
	margin:15px 20px 0 auto;
	padding: 20px 0;
	font-size: 110%;
	text-align: center;
	line-height: 1.4;
	background-color:#4469b0;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
}

.info_yt_btn {
	float:left; 
	width:490px;
	margin:15px auto 0 auto;
	padding: 20px 0;
	font-size: 110%;
	text-align: center;
	line-height: 1.4;
	background-color:#b60812;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
}





.info_box {
	width:1000px;
	margin:0 auto;
	padding: 20px 20px 10px 20px;
	background-color:#035703;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
}

.info_kiji_topline {
	margin-bottom:10px;
	border-bottom: 1px dashed #4ca74c;
}

.info_kiji {
	margin-bottom:10px;
	padding-bottom: 10px;
	border-bottom: 1px dashed #4ca74c;
}





ul.point_box {
    margin:0;
    width:1030px;
	overflow: hidden;
}
 
ul.point_box li {
    margin:0 15px 50px 15px;
    padding:0;
    display:inline-block;
    width:220px;
    list-style:none;
    vertical-align:top; /* ��[���� */
}
ul.point_box li img {
    width:100%;
	margin:10px 0;
}

.point_no {
    width:30px;
	height:30px;
	margin:0 auto 10px auto;
	font-size: 120%;
	color:#ff0000;
	font-weight: bold; 
	text-align: center;
	line-height: 30px;
	background-color:#ffb55d;
}

.point_tit {
	font-size: 120%;
	color:#ffb55d;
	font-weight: bold; 
	text-align: center;
}







.con_box_center {
	width:450px;
	margin:0 auto;
	padding: 0;
}

.con_box_left {
	float:left; 
	width:500px;
	margin: 0 ;
	padding: 0 49px 0 0;
	border-right: 1px dashed #fff;
}

.con_box_right {
	float:left; 
	width:500px;
	margin:0 0 0 0;
	padding: 0 0 0 50px;
}

.profmarisa_box_left {
	float:left; 
	width:400px;
	margin:0;
	padding: 0;
}

.profmarisa_box_right {
	float:left; 
	width:570px;
	margin:0 0 0 30px;
	padding: 0;
}

.lsn_box { 
	width:665px;
	margin:0 auto;
	padding: 0;
}

.lsn_box_left {
	float:left; 
	width:330px;
	margin:0;
	padding: 0;
}

.lsn_box_right {
	float:left; 
	width:330px;
	margin:0 0 0 5px;
	padding: 0;
}

.liv_box_left {
	float:left; 
	width:700px;
	margin:0;
	padding: 0;
}

.liv_box_right {
	float:left; 
	width:284px;
	margin:0 0 0 16px;
	padding: 0;
}


ul.eve_box {
    margin:0;
    width:1035px;
	overflow: hidden;
}
 
ul.eve_box li {
    margin:0 31px 50px 0;
    padding:0;
    display:inline-block;
    width:310px;
    list-style:none;
    vertical-align:top; /* ��[���� */
	border-top: 3px solid #fff;
}
 
/* IE6 */
* html ul.eve_box li {
    display:inline; /* IE�ł�inline-block�Ɠ����\���ɂȂ� */
}
 
/* IE7 */
*+ html ul.eve_box li {
    display:inline; /* IE�ł�inline-block�Ɠ����\���ɂȂ� */
}

ul.eve_box li img {
    margin:15px 0;
}

.fla_stit {
	font-family:"Hiragino Mincho ProN","HG����E","�l�r �o����", serif;
	width:100%;
	font-size: 150%;
	text-align: center;
	margin: 0;
	padding: 10px 0;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

.fla_sstit {
	width:100%;
	font-size: 130%;
	text-align: center;
	margin: 10px 0;
	padding: 0;
	background-color:#ff9966;
}

.fla_ssstit {
	width:100%;
	font-size: 130%;
	text-align: center;
	margin: 10px 0;
	padding: 0;
}

.fla_prof {
	font-size: 70%;
}

.fla_prof li {
	padding: 10px;
	box-sizing:border-box;
}
.fla_prof li:nth-child(even) {
	background-color:#035703;
}

.footer {
	width:100%;
	font-size: 70%;
	margin: 60px 0 0 0;
	padding: 20px 0 0 0;
	border-top: 1px solid #fff;
}

#footer_box_left {
	float:left; 
	width:250px;
	margin:0;
	padding: 0;
}

#footer_box_right {
	float:left; 
	width:700px;
	margin:0;
	padding: 0 0 0 50px;
}

.text_red {
	color:#ff0000;
}

.text_eve_day {
	font-size: 110%;
	font-weight: bold; 
}

.text_eve_tit {
	font-size: 110%;
	font-weight: bold; 
	color:#ffb55d;
}

.text_bgred {
	color:#fff;
	background-color:#b20101;
	padding: 5px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}

.text_y {
	color:#dfa11b;
}

.text_gleen {
	color:#009944;
}

.text_xl {
	font-size: 170%;
}

.text_l {
	font-size: 130%;
}

.text_s {
	font-size: 80%;
}

.text_min {
	font-family:"Hiragino Mincho ProN","HG����E","�l�r �o����", serif;
}

.text_go {
	font-family: '�q���M�m�p�S Pro W3','Hiragino Kaku Gothic Pro','���C���I',Meiryo,'�l�r �o�S�V�b�N',sans-serif;
}

.clear { clear:both; }  
.clear hr { display:none; }  