@charset "utf-8";
/* 標準可変メディア
   メモ : 可変メディアでは、HTML からメディアの高さおよび幅の属性を削除する必要がある
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 では最大幅がサポートされていないため、デフォルトで幅 100% に設定される */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver 可変グリッドプロパティ
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	10;
	dw-gutter-percentage:	25;
	
	以下からヒントを入手 : Ethan Marcotte 氏の「レスポンシブ Web デザイン」 
	http://www.alistapart.com/articles/responsive-web-design
	
	および Joni Korpi 氏の「Golden Grid System」
	http://goldengridsystem.com/ 
*/

/* モバイルレイアウト : 480 px およびそれ以下. */
body{
    background-color: #E73D69 ;
}
.slideBlock{
    position: relative;
    height: auto;
}
.slideBlock .logo{
    position: absolute;
    top: 30%;
	left: 5%;
	width: 70%;
}
.pc{
   display: none;
}
.exprienceContent{
    background-color: #76E2BD;
    background-image: url("images/index01.png") ;
    background-repeat: no-repeat;
    background-size:contain;
    background-position: left top;
    padding: 100px 0 0 0 ;
}
h2{
    font-size: 25px;
    font-weight: 700;
}
.oneDaysFlowContent{
    background-color: #fff;
    background-image: url("images/index02.png") ;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 25%;
    overflow: hidden;
    padding: 100px 0 0 0 ;
}
.oneDaysFlowContent .textBox{
    display: inline-block;
    float: right;
}
.faqContent{
    background-image: url("images/index03.png") ;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 30px 0;
}
.faqContent .textBox{
    display: inline-block;
    width: 100%;
    vertical-align: top;
}
.faqContent .textBox p{
    color: #fff;
}
.faqContent .buttonPanel{
    display: inline-block;
    vertical-align: bottom;
    width: 100%;
}
.faqContent .buttonPanel .linkButton{
    font-size: 20px;
    color: #000;
    background-color: #76E2BD;
    text-align: left;
    width: 85%;
    padding: 1em ;
    margin: 0.5%;
}
.newsContent{
    background-color: #76E2BD;
}
.slideBox{
    margin: 0;
}
.bx-wrapper {
	-moz-box-shadow: 0 0 0;
	-webkit-box-shadow: 0 0 0;
	box-shadow: 0 0 0;
	border: 0px;
	margin-bottom: 0;
}
.bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto {
	bottom: 20px;
}
.whatsNewList .item{
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 15px;
	line-height: 160%;
}
.whatsNewList .item .dateCol{
    display: inline-block;
    width: 6em;
    vertical-align: top;
}
.whatsNewList .item .titleCol{
    display: inline-block;
    width: calc(100% - 7em) ;
}
.whatsNewList .item .titleCol a{
    color: #000;
    text-decoration: none;
}
.whatsNewList .item .titleCol a:hover{
    color: #000;
    text-decoration: underline;
}
.whatsNewList .item .titleCol a:visited{
    color: #000;
}
/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only screen and (min-width: 481px) {
}

/* デスクトップレイアウト : 769 px ～最大 1232 px。モバイルレイアウトとタブレットレイアウトからスタイルを継承。 */

@media only screen and (min-width: 769px) {
.slideBlock .logo{
    top: 15%;
    left: 5%;
	width: auto;
}
.sp{
    display: none;
}
.pc{
   display: block;
}
.exprienceContent{
    padding: 100px 0 ;
    background-size: cover;
    background-position: right;
}
.oneDaysFlowContent{
    background-size: cover;
    background-position: left;
    padding: 100px 0;
}
.faqContent{
    background-size: cover;
    background-position: left;
    padding: 30px 0;
}
.faqContent .textBox{
    width: 30%;
}
.faqContent .buttonPanel{
    width: 69%;
}
.faqContent .buttonPanel .linkButton{
    width: 27%;
    padding: 1em ;
    margin: 0.5%;
}
.oneDaysFlowContent{
    background-position: center;
}
}