@charset "utf-8";





/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("https://unpkg.com/sanitize.css");

/*slick.cssの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");

/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");

@import url('https://fonts.googleapis.com/css2?family=Abel&family=Rajdhani:wght@300&display=swap');




/*全体の設定
---------------------------------------------------------------------------*/
html,body {
	margin: 0;padding: 0;
	height: 100%;
	font-size: 14px;	/*基準となるフォントサイズ。下の方にある「画面幅900px以上」で基準を大きなサイズに再設定しています。*/
}

body {
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色*/
	color: #333;		/*全体の文字色*/
	line-height: 2;		/*行間*/
}
h2{font-family:"游明朝","Yu Mincho","游明朝体","YuMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro";}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav {margin: 0;padding: 0;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*section全般の設定*/
section + section {
	padding-top: 30px;	/*sectionの間に空けるスペース*/
}


/*opa1（透明から着色状態に）
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #333;	/*文字色*/
	transition: 0.3s;
}

a:hover {
	color: #D16C70;	/*マウスオン時の文字色*/
}


/*container（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 100%;				/*最大幅。これ以上広がらないように。後半の大きな端末用の「#menubar > ul」と数字を揃える。*/
	margin: 0 auto;
	height: 100%;
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
}


/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
    width: 100%;
	height: 100px;					/*ヘッダーの高さ*/
	padding: 0;					/*ヘッダー内の余白*/
}
.header_inner{
    width: 100%;
    margin: 0 auto;
    max-width: 1400px;
    display: flex;					/*flexボックスを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	align-items: center;			/*垂直揃えの指定。上下中央に配置されるように。*/
	flex: 0 0 auto;
	height: 90px;					/*ヘッダーの高さ*/
	padding: 0 20px;	
    
}

/*ロゴ画像*/
header #logo {
	line-height: 0;margin: -20px 0 0 0;
	width: 320px;		/*ロゴ画像の幅*/
}

/*電話番号ブロック*/
header address {
	font-style: normal;	/*addressがデフォルトで斜体になってしまうのを標準にする*/
	margin-right: 60px;	/*右側に空けるスペース。ハンバーガーメニューに重ならないようにする為です。*/
    font-size: 20px;
    font-weight:600;
    color: rgba(210,109,113,0.70);
}
header address img{
    width: 30px;
    margin-right: 5px;
}
header address a:hover{
    color: rgba(210,109,113,1.00);
}
header address a{
    color:　rgba(210,109,113,0.70);
    text-decoration: none;
}



/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;z-index: 100;
	top: 25px;		/*上からの配置場所指定*/
	right: 20px;	/*右からの配置場所指定*/
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	cursor: pointer;
	background: #d26d71 url(../images/ham.png) no-repeat center top/50px;/*背景色、ハンバーガメニュー画像の読み込み、50pxは幅の指定*/
}
/*×印が出ている状態の設定。*/
#menubar_hdr.ham {
	background: #d26d71 url(../images/ham.png) no-repeat center bottom/50px;
}


/*メニュー設定（全端末サイズ共通の設定）
---------------------------------------------------------------------------*/
#menubar ul {
	list-style: none;
    margin: 0;
	background: #fff;	/*背景色。諸事情あって、下のbackgroundのグラデーションのどちらかの色を抜いて下さい。*/
    font-size:15px;
}

/*メニュー1個あたりの設定*/
#menubar ul a {
	display: block;
    text-decoration: none;
	background: #fff;/*背景グラデーション*/
	color: #333;		/*文字色*/
	padding: 15px 30px;	/*上下、左右へのメニュー内の余白*/
    
}
#menubar img{
        margin-right: 10px;
    }
/*マウスオン時のメニュー色*/
#menubar > ul > li > a:hover {
	color: #d26d71;
}

/*ドロップダウンメニューのリンクタグ*/
#menubar .ddmenu {
	cursor: default;	/*リンク要素のカーソルを矢印に変更しておく*/
}




/*メニューの設定
---------------------------------------------------------------------------*/
#menubar {
    height: 0px;
    overflow: hidden;
 
}


/*小さな端末用のメニューブロック*/
#menubar.db {
	position:absolute;overflow: auto;z-index: 99;
	left: 0;top: 100px;
	width: 100%;
	height: auto;
	padding: 50px 30px;				/*上下、左右へのメニューブロック内の余白*/
    background-color: rgba(210,109,113,1.00);
}


/*ドロップダウンメニュー
---------------------------------------------------------------------------*/
#menubar .ddmenu_parent ul {display: none;}

/*ドロップダウンメニュー1個あたりの設定*/
#menubar .ddmenu_parent ul a {
	background: #fff;	/*背景色*/
	color: #333;		/*文字色*/
    
}


/*マウスオン時*/
#menubar .ddmenu_parent ul a:hover {
    background-color: rgba(210,109,113,0.10);;
	color: rgba(210,109,113,1.00);
}


/*contentsブロック
---------------------------------------------------------------------------*/
#contents {
	min-height: 0%;		/*IE対策*/
	flex: 1 0 auto;
}
/*ページタイトル*/
.page-ttl{
  width: 100%;
  color: #000;
  font-family:"游明朝","Yu Mincho","游明朝体","YuMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro"; 
  font-size: 25px;
  text-align: center;
  letter-spacing: 0.1em;
  padding: 10px 0;
  background-image: url("../images/page_ttl_bg.png"),url("../images/page_ttl_bg2.jpg");
  background-position: center,center;
  background-size: contain,contain;
  background-repeat: no-repeat,repeat-x;
    
}


/*mainブロック設定
---------------------------------------------------------------------------*/
/*mainブロックの設定*/
.main {
    width: 100%;
	display: block;			/*IE対策*/
	margin: 0 auto;	/*上、左右、下へのブロックの外側にとるスペース*/
    max-width: 1200px;
    background-color: #fff;
}
.main_ttl{
    color: #555;
    font-size: 35px;
    text-align: center;
    margin: 30px auto 0;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.2em;

}


.main2 {
    width: 100%;
    padding: 50px 0;
	display: block;			/*IE対策*/
	margin: 0;	/*上、左右、下へのブロックの外側にとるスペース*/
    background-color: #fff4ef;
}
.main2_ttl{
    color: #555;
    font-size: 35px;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Rajdhani', sans-serif; 
    letter-spacing: 0.2em;
}

.main3 {
    width: 100%;
    padding: 50px 0;
	display: block;			/*IE対策*/
	margin: 0;	/*上、左右、下へのブロックの外側にとるスペース*/
    background-color: #fff;
}
.main3_ttl{
    color: #000;
    font-size: 35px;
    text-align: center;
    margin-bottom: 20px;
    font-family:"游明朝","Yu Mincho","游明朝体","YuMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro"; 
}
.main4{
    width: 100%;
    padding: 50px 0 0;
    background-image: url("../live/live_img/live_top_bg.png");
    background-repeat: repeat-x;
    background-size:contain;
}
.main5 {
    width: 100%;
    padding: 40px 0;
	display: block;			/*IE対策*/
    background-color: #fff4ef;
    margin: -50px 0 0 0;

}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
    background-color: #d26d71;  
}
#footer_inner{
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}
/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
	display: flex;		/*flexボックスを使う指定*/
    flex-direction: row;
	justify-content: space-between;	/*並びかたの種類の指定*/
    padding: 30px 5%;

}
.menu_inner{
    display:none;
}

.footer_logo{
    width: 60%;
    margin: 10px auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    
}
.footer_contact{
        width: 90%;
        margin: 0;
    }
.footer_contact img{
    margin: 10px 0 0 10%;
}

.copyright {
	font-size: 12px;
    background-color:#de9496;  
	color: #fff;			/*文字色*/
	text-align: center;		/*内容をセンタリング*/
	padding: 15px;			/*ボックス内の余白*/
    font-family: "Courier New", Courier, "monospace";
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 250px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 2rem;	/*文字サイズ*/
	background:  rgba(216,128,135,0.70);	/*背景色。0,0,0は黒の事で0.3は色が30%出た状態。*/
	width: 2em;			/*幅*/
	line-height: 2em;	/*高さ*/
    border-radius: 60px;
}

/*マウスオン時*/
.pagetop a:hover {
	background: rgba(216,128,135,1.00);	/*背景色。0,0,0は黒の事で0.8は色が80%出た状態。*/
}


.pc{
    display: block;
    
}
.tb{
   display: block; 
}
.sp{
    display: none;
}



/*---------------------------------------------------------------------------
ここから下は画面幅480px以下の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width:480px) {

/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
    width: 100%;
	height:125px;					/*ヘッダーの高さ*/
	padding: 0;					/*ヘッダー内の余白*/
}
.header_inner{
    width: 100%;
    margin: 0 auto;
    max-width: 480px;
    display: flex;	
    flex-direction: column;/*flexボックスを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	align-items:center;			/*垂直揃えの指定。上下中央に配置されるように。*/
	height: auto;					/*ヘッダーの高さ*/
	padding: 0 20px;	
    
}

/*ロゴ画像*/
header #logo {
	line-height: 0;
    margin: 0;
	width: 100%;		/*ロゴ画像の幅*/
}

/*電話番号ブロック*/
header address {
	font-style: normal;	/*addressがデフォルトで斜体になってしまうのを標準にする*/
	margin: 0 auto 10px;	/*右側に空けるスペース。ハンバーガーメニューに重ならないようにする為です。*/
    font-size: 20px;
    font-weight:600;
    color: rgba(210,109,113,0.70);
}
header address img{
    width: 30px;
    margin-right: 5px;
    margin-bottom: 5px;
}
    
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;z-index: 100;
	top: 60px;		/*上からの配置場所指定*/
    }
/*×印が出ている状態の設定。*/
/*小さな端末用のメニューブロック*/
#menubar.db {
	left: 0;top: 125px;
}

#menubar .ddmenu_parent ul a {
   width: 80%;
	background: #fff;	/*背景色*/
	color: #333;		/*文字色*/
    margin-left: 50px;
}
 /*mainブロックの設定*/
.main {
    width: 86%;
	display: block;			/*IE対策*/
	margin: 0 auto;	/*上、左右、下へのブロックの外側にとるスペース*/
    max-width: 480px;
    background-color: #fff;
} 
.main2 {
    width: 100%;
    padding: 30px 0;
	display: block;			/*IE対策*/
	margin: 0;	/*上、左右、下へのブロックの外側にとるスペース*/
    background-color: #fff4ef;
}
.main3 {
    width: 100%;
    padding: 30px 0;
	display: block;			/*IE対策*/
	margin: 0;	/*上、左右、下へのブロックの外側にとるスペース*/
    background-color: #fff;
}
.main3_ttl{
    color: #000;
    font-size: 20px;
    text-align: center;
    margin-bottom: 0;
    font-family:"游明朝","Yu Mincho","游明朝体","YuMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro"; 
}
.main4{
    width: 100%;
    padding: 20px 0 0;
    background-image: url("../live/live_img/live_top_bg.png");
    background-repeat: repeat-x;
    background-size:6%;
}

    
 /*ページタイトル*/
.page-ttl{
  width: 100%;
  color: #000;
  font-family:"游明朝","Yu Mincho","游明朝体","YuMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro"; 
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.1em;
  padding: 6px 0;
  background-image: url("../images/page_ttl_bg.png"),url("../images/page_ttl_bg2.jpg");
  background-position: center,center;
  background-size: contain,contain;
  background-repeat: no-repeat,repeat-x;
    
}
/*フッター設定
---------------------------------------------------------------------------*/

#footer_inner{
    width: 80%;
    max-width: 400px;
    margin: 0 auto;
}
/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
	display: flex;		/*flexボックスを使う指定*/
    flex-direction:column;
	justify-content: space-between;	/*並びかたの種類の指定*/
    padding: 20px 0;

}
.menu_inner{
    display:none;
}

.footer_logo{
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}
.footer_contact{
        width: 100%;
        margin: 0 0 0 0;
    }
.footer_contact img{
    margin:0 auto 10px;
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/

.pagetop a {
	display: block;text-decoration: none;text-align: center;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 10px;		/*右からの配置場所指定*/
	bottom: 100px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 2rem;	/*文字サイズ*/
	background: rgba(216,128,135,0.70);	/*背景色。0,0,0は黒の事で0.3は色が30%出た状態。*/
	width: 2em;			/*幅*/
	line-height: 2em;	/*高さ*/
    border-radius: 60px;
}

/*マウスオン時*/
.pagetop a:hover {
	background: rgba(216,128,135,1.00);	/*背景色。0,0,0は黒の事で0.8は色が80%出た状態。*/
}
.pc{
    display: none;
    
}
.tb{
   display: block; 
}
.sp{
    display: block;
}
    
/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}





/*---------------------------------------------------------------------------
ここから下は画面幅900px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:900px) {


/*全体の設定
---------------------------------------------------------------------------*/
html, body {
	font-size: 16px;	/*基準となるフォントサイズの上書き*/
}


/*fixmenu。大きな端末で、メインメニューが画面上部についた時のスタイル。
---------------------------------------------------------------------------*/
.fixmenu{
	position: fixed !important;z-index: 100;
	left:0px;top:0px;
	width: 100%;
}

/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
    width: 100%;
	height: 100px;					/*ヘッダーの高さ*/
	padding: 0;					/*ヘッダー内の余白*/
}
.header_inner{
    width: 100%;
    margin: 0 auto;
    max-width: 1400px;
    display: flex;					/*flexボックスを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	align-items: center;			/*垂直揃えの指定。上下中央に配置されるように。*/
	flex: 0 0 auto;
	height: 100px;					/*ヘッダーの高さ*/
	padding: 0 20px;	
    
}

/*ロゴ画像*/
header #logo {
	line-height: 0;margin: -15px 0 0 0;
	width: 350px;		/*ロゴ画像の幅*/
}

/*電話番号ブロック*/
header address {
	font-style: normal;	/*addressがデフォルトで斜体になってしまうのを標準にする*/
	margin-right: 80px;	/*右側に空けるスペース。ハンバーガーメニューに重ならないようにする為です。*/
    font-size: 25px;
    font-weight:600;
    color: rgba(210,109,113,0.70);
}
header address img{
    width: 40px;
    margin-right: 10px;
}
header address a:hover{
    color:  rgba(210,109,113,1.00);
}
header address a{
    color: rgba(210,109,113,0.70);
    text-decoration: none;
}


/*menubar
---------------------------------------------------------------------------*/
/*ハンバーガーメニューを非表示にする*/
#menubar_hdr {display: none;}

/*メニューのボックス全体の設定（※変更不要）*/
#menubar {height: auto;overflow: visible;}
#menubar.db {position: static;overflow: visible;height: auto;padding: 0;}

/*ドロップダウンに影響させない為。*/
#menubar > ul {
	display: flex;					/*flexボックスを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	max-width: 1400px;				/*最大幅。これ以上広がらないように。前半の小さな端末用の「#container」と数字を揃える。*/
	margin: 0 auto;    
}
    

/*メニュー１個あたりの設定*/
#menubar li {
	text-align: center;	/*テキストをセンタリング*/
	flex: 1;			/*個々のメニューを均等にし、幅いっぱいまで使う設定*/
	position: relative;	/*ddmenu ulの幅となる基準を作っておく*/
}
    #menubar img{
        margin-right: 10px;
    }

/*ドロップダウンメニュー
---------------------------------------------------------------------------*/
/*ドロップダウンメニューブロック全体*/
#menubar ul ul {
	position: absolute;
    z-index: 100;
	width: 100%;
}


#menubar .ddmenu_parent ul li a {
	padding-left: 0;
}

#menubar ul a {
	display: block;
    text-decoration: none;
	background: #fff;/*背景グラデーション*/
	color: #333;		/*文字色*/
	padding: 15px 0;	/*上下、左右へのメニュー内の余白*/
    border-left: 1px solid #F5F5F5;
    border-right: 1px solid #F5F5F5;
    border-bottom: 1px solid #F5F5F5;
    
}
/*ページタイトル*/
.page-ttl{
  width: 100%;
  color: #000;
  font-family:"游明朝","Yu Mincho","游明朝体","YuMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro"; 
  font-size: 30px;
  text-align: center;
  letter-spacing: 0.1em;
  padding: 15px 0;
  background-image: url("../images/page_ttl_bg.png"),url("../images/page_ttl_bg2.jpg");
  background-position: center,center;
  background-size: contain,contain;
  background-repeat: no-repeat,repeat-x;
    
}
.main_ttl{
    color: #555;
    font-size: 40px;
    text-align: center;
    margin: 50px auto 0;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.2em;
}   
.main2_ttl{
    color: #555;
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Rajdhani', sans-serif; 
    letter-spacing: 0.2em;
    }
/*フッター設定
---------------------------------------------------------------------------*/
footer {
    background-color: #d26d71;  
    }
#footer_inner{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
	display: flex;		/*flexボックスを使う指定*/
    flex-direction: row;
	justify-content: space-between;	/*並びかたの種類の指定*/
    padding: 30px 5%;

}
.menu_inner{
    width: 75%;
    font-size: 0.7rem;
	padding: 20px 0 0 5%;		/*ボックス内の余白*/
	display: flex;		/*flexボックスを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	align-items:flex-start;		/*垂直揃えの指定。上に配置されるように。*/
    margin: 30px  auto;
    text-align: left;
}
    

.footer_logo{
    width: 24%;
    margin: 10px 4% 0 0;
    display: flex;
    flex-direction: column;
    
}
.footer_contact a img{
        width: 90%;
        margin: 0 auto 10px;
    }

/*ボックス内のリンクテキスト設定*/
#footermenu a {
	text-decoration: none;
	color: rgba(255,255,255,0.70);	/*文字色*/
}

/*リンクテキストのマウスオン時*/
#footermenu a:hover {
	color: rgba(255,255,255,1.00);	/*文字色*/
}

/*ulタグ（メニューの列単位）*/
#footermenu ul {
	margin: 0;
	padding: 0 2px;
	flex: 1;
	list-style: none;
}

/*title*/
#footermenu .title {
	olor: #8E282C;
    font-size: 14px;
}



.pc{
    display: block;
    
}
.tb{
   display: none; 
}
.sp{
    display: none;
}

}
