@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{
    background-image: url("images/one_days_flow00.png") ;
    background-repeat: no-repeat;
    background-size: cover;
    height:calc(100vw * 0.6) ;
    background-position: center;
    position: relative;
}
.slideBlock .logo{
    position: absolute;
    top: 35%;
}
.contentFrame{
    background-color: #fff;
    border-radius: 15px ;
    padding: 15px ;
    margin-bottom: 25px;
        
}
.tabList{
    width: 100%;
}
.tabList > div{
    display: inline-block;
    width: calc(50% - 30px);
    vertical-align: top;
    
}
.tab{
    background-color: #E5E5E5;
    padding: 15px;
}
.tab a{
    display: inline-block;
    font-size: 21px;
    text-decoration: none;
    color: #000;
    width: 100%;
}
.tab a:hover{
    font-weight: 700;
}
.activeTab{
    background-color: #fff;
}
#tab1{
    border-top-left-radius: 15px;
}
#tab2{
    border-top-right-radius: 15px;
    text-align: right;
}
#tab2 p{
    text-align: right;
}
.tabContent{
    display: none;
    background-color: #fff;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 15px ;
    margin-bottom: 25px;
}
.activeContent{
    display: block;
}
.timeFlow .item > div{
    display: inline-block;
    vertical-align: top;
}
.timeFlow .item .photoBox{
    width: 15%;
    margin-right: 2%;
}
.timeFlow .item .photoBox img{
    width: 100%;
}
.timeFlow .item .textBox{
    width: 83%;
}
.timeFlow .item .textBox h3{
    margin: 0;
    font-size: 15px;
}
.timeFlow .item .textBox p{
    font-size: 13px;
}
.timeFlow .item .textBox .imageLine{
    text-align: right;
}
/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only print {
}

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

@media only print {
.slideBlock .logo{
    top: 15%;
    left: 5%;
}
.slideBlock{
    height:470px;
}
}