@charset "utf-8";
/* common.css */

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* reset    　　　　　　　　　                                            */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
body, div, textarea, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
dl, dt, dd, ol, ul, li, form, label, table, tr, th, td {
	padding: 0;
	font-weight: normal;
	font-size: 100%;
	margin-bottom: 0px;
	margin-left: 0;
	margin-right: 0;
	margin-top: 0;
}
body {
	-webkit-text-size-adjust: 100%;
}
img {
	vertical-align: bottom;
	border: 0;
}
ol,
ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
* {
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
}
p,li,th,td,dt,dd,span,a {
	font-weight: 500;
}
*, *::before, *::after {
  box-sizing: border-box;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* clear fix 　　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.row:before,
.doc_set:before,
.inner:before,
.cf:before,
.row:after,
.doc_set:after,
.inner:after,
.cf:after {
	content: "";
	display: table;
}

.row:after,
.doc_set:after,
.inner:after,
.cf:after {
	clear: both;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* 基本あれこれ　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
body {
	color: #000000;
	font-size: 16px;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	line-height: 1.8em;
}

/* -- ボックス ----------------------------------------------- */
.doc_set {
}
.inner {
	width: 1100px;
	margin-left: auto;
	margin-right: auto;
}

/* -- テキスト ----------------------------------------------- */
.text_SZ_xs {
	font-size: 12px;
	line-height: 1.6em;
}
.text_SZ_s {
	font-size: 14px;
	line-height: 1.6em;
}
.text_CL_gray {
	color: #5F5F5F;
}
.text_CL_red {
	color: #DD0003;
}

/* -- リンク ----------------------------------------------- */
.link_normal {
	text-decoration: none;
	color: #005BB1;
	webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
.link_normal:hover {
	color: #0385FF;
}
.link_pdf_after {
	text-decoration: none;
	color: #000000;
	background-image: url(../images/common/link_pdf.png);
	background-repeat: no-repeat;
	background-position: right center;
	padding-right: 24px;
	webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
.link_pdf_after:hover {
	color: #005BB1;
}
.link_pdf_before {
	text-decoration: none;
	color: #000000;
	background-image: url(../images/common/link_pdf.png);
	background-repeat: no-repeat;
	background-position: left center;
	webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
	padding-left: 24px !important;
}
.link_pdf_before:hover {
	color: #005BB1;
}

/* -- 中分類 ----------------------------------------------- */
.font_notosuns {
	font-family: "Noto Sans JP", sans-serif;
}
.font_roboto {
	font-family: "Roboto", sans-serif;
}

/* -- リスト ----------------------------------------------- */
.list_nomal ul {

}
.list_nomal li {
	list-style-type: disc;
	margin-left: 1.2em;
}

/* インライン */
.list_inline li {
	padding-left: 10px;
	background-image: url(../images/common/list_style_01.png);
	background-repeat: no-repeat;
	background-position: left 13px;
	display: inline-block;
	margin-right: 15px;
	background-size: 5px auto;
}

/* -- テーブル ----------------------------------------------- */
.tbl_nomal {
	margin-bottom: 10px;	
}
.tbl_nomal table {
	border-top: 1px solid #CCCCCC;
}
.tbl_nomal tr {
	border-bottom: 1px solid #CCCCCC;
}
.tbl_nomal th {
	background-color: #EBEBEB;
	width: 200px;
	text-align: left;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	vertical-align: top;
}
.tbl_nomal td {
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* -- フェードイン ----------------------------------------------- */
/* 下から上 */
.fadein_up {
    opacity : 0;
    transform : translate(0px, 100px);
    transition : all 500ms;
}
.fadein_up.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

/* 左から右 */
.fadein_lr {
    opacity : 0;
    transform : translate(-200px, 0px);
    transition : all 500ms;
}
.fadein_lr.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

/* 右から左 */
.fadein_rl {
    opacity : 0;
    transform : translate(200px, 0px);
    transition : all 500ms;
}
.fadein_rl.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

/* その場で */
.fadein_stay {
    opacity : 0;
    transition : all 1000ms;
}
.fadein_stay.scrollin {
    opacity : 1;
}

/* -- PC・スマホ 表示、非表示 ----------------------------------------------- */
.pc_none {
	display: none;	
}
.sp_none {
	
}

/* -- その他 ----------------------------------------------- */
.over {
}

/* TEL リンク */
a[href^="tel:"] { 
    cursor: default;
} 


/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* ページ遷移アニメーション　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.curtain .animation-bg, .curtain .animation-bg02 {
  display: none;
}
body.appear.curtain .animation-bg, body.appear.curtain .animation-bg02 {
  display: block;
}
.curtain .animation-bg, 
.curtain .animation-bg02 {
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  transform: scaleX(1);
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.curtain .animation-bg {
  background:  #f10908;
}
.curtain .animation-bg02 {
  background:  #184ba2;
}
.curtain .animation-bg {
  left: 50%;
  animation-name: PageAnime-curtain01;
}
.curtain .animation-bg02 {
  right: 50%;
  animation-name: PageAnime-curtain02;
}
/* カーテン左 キーフレーム */
@keyframes PageAnime-curtain01 {
  0% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/* カーテン右 キーフレーム */
@keyframes PageAnime-curtain02 {
  0% {
    transform-origin: right;
    transform: scaleX(1);
  }
  50% {
    transform-origin: left;
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}


/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* カーテン終了後に表示　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#wrapper {
	animation: fadeIn 0.1s ease-in 0.3s forwards;
	opacity: 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* ヘッダー　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#header{
	display: flex;
	align-items: center;
	background-color: #FFFFFF;
	height: 70px;
	border-bottom: 1px solid #000000;
	position: fixed;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	top: 0px;
	left: 0px;
	right: 0px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	z-index: 99;
}

/* ロゴ */
#logo {
	position: fixed;
	top: 15px;
	left: 10px;
	background-repeat: no-repeat;
}
#logo a {
	width: 265px;
	height: 40px;
	display: block;
	background-image: url(../images/common/logo.png);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 265px 40px;
	text-indent: -9999px;
}

/* グローバルナビ */
#gv_nav {
    margin-left: auto;
}	
#gv_nav ul {
	display: flex;
	border-right: 1px solid #000000;
	margin-right: 50px;
}
#gv_nav ul li {
	text-align: center;
	border-left: 1px solid #000000;
}
#gv_nav ul li a {
	color: #333333;
	text-decoration: none;
	display: block;
	padding-left: 20px;
	padding-right: 20px;
	font-weight: 600 !important;
	line-height: 1.4em !important;
	font-size: 15px;
}
#gv_nav ul li a span {
	font-weight: 800 !important;	
}

/* ハンバーガーボタン */
#navbtn{
    display:none;
}

/* -- HOMEボタン ----------------------------------------------- */
#bt_home img {
	width: 20px;
	height: auto;
}
#bt_home a {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center;
}

/* -- ローマ字 ----------------------------------------------- */
#gv_nav li span::after {
	display: block;
	font-size: 10px;
	color: #B0B0B0;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.2em;
}

/* 個別設定 */
#bt_home span::after {
	content: "Home";
}
#bt_hakusan span::after,
#bt_kawakita span::after {
	content: "Junior Youth";
}
#bt_fleur span::after {
	content: "Ladies team";
}
#bt_u12 span::after {
	content: "Junior";
}
#bt_school span::after {
	content: "School";
}
#bt_shakaijin span::after {
	content: "Top team";
}
#bt_about span::after {
	content: "About us";
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* container　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#container {
	margin-left: 50px;
	margin-right: 50px;
	border-right: 1px solid #000000;
	border-left: 1px solid #000000;
	padding-top: 70px;
	padding-bottom: 150px;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* footer　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

/* -- PARTNER ----------------------------------------------- */
#partner_area {
	padding-top: 120px;
	padding-bottom: 180px;
	background-image: url(../images/common/partner_bg.jpg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	margin-left: 50px;
	margin-right: 50px;
	border-right: 1px solid #000000;
	border-left: 1px solid #000000;
}

/* h3 */
#partner_banner h3 {
	text-align: center;
	font-size: 50px;
	font-weight: 900;
	margin-bottom: 40px;
	color: #E6ECF5;
	display: flex;
    align-items: center;
}
#partner_banner h3:before,
#partner_banner h3:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #E6ECF5;
}
#partner_banner h3:before {
    margin-right: 1rem;
}
#partner_banner h3:after {
    margin-left: 1rem;
}

/* バナーリスト */
#partner_banner ul {
	font-size: 0px;
	text-align: center;
	margin-left: -6px;
	margin-right: -6px;
}
#partner_banner li {
	width: 266px;
	border: 1px solid #000000;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background-color: #FFFFFF;
	margin-bottom: 12px;
	margin-right: 6px;
	margin-left: 6px;
	font-size: 16px;
	display: inline-block;
}
#partner_banner li img {
	width: 100%;
	height: auto;
}

/* -- フッターデータ ----------------------------------------------- */
#ft_data {
	margin-left: 50px;
	margin-right: 50px;
	border-right: 1px solid #000000;
	border-left: 1px solid #000000;
	background-color: #2150a4;
	color: #FFFFFF;
	padding-top: 120px;
	text-align: center;
	padding-bottom: 80px;
}

/* ロゴ */
#ft_logo {
	width: 160px;
	margin-left: auto;
	margin-right: auto;
	margin-top: -220px;
	margin-bottom: 30px;
}
#ft_logo img {
	width: 100%;
	height: auto;
}

/* h3、h4 */
#ft_data h3 {
	font-size: 60px;
	font-weight: 900;
	line-height: 1.2em;
}
#ft_data h4 {
	font-size: 24px;
	font-weight: 900;
}

/* リンク */
ul#ft_link {
	margin-top: 40px;
	display: flex;
	justify-content: center;
}
#ft_link li {
	font-size: 14px;
	font-weight: 600;
	border-left: 1px solid #FFFFFF;
	line-height: 1.2em;
}
#ft_link li:last-child {
	border-right: 1px solid #FFFFFF;
}
#ft_link li a {
	color: #FFFFFF;
	text-decoration: none;
	padding-left: 15px;
	padding-right: 15px;
	display: block;
	webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
	font-size: 14px;
}
#ft_link li a:hover {
	color: #FFFD00;
}

/* -- コピーライト ----------------------------------------------- */
#copy {
	padding-top: 20px;
	border-top: 1px solid #000000;
	text-align: center;
	font-size: 11px;
	font-family: Arial, Helvetica, sans-serif;
	padding-bottom: 20px;
	border-bottom: 1px solid #000000;
}
#copy a {
	color: #333333;
	text-decoration: none;
	webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
#copy a:hover {
	color: #2150A4;
}

/* -- スポーツくじ ----------------------------------------------- */
#toto_banner {
	text-align: center;
	margin-top: 50px;
	margin-bottom: 50px;
}
#toto_banner ul {
	margin-bottom: 12px;
}
#toto_banner ul a {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: auto;
	margin-right: auto;
	width: 643px;
}
#toto_banner ul li:first-child {
	margin-right: 15px;
}
#toto_banner ul li:first-child img {
	width: 250px;
	height: auto;
}
#toto_banner ul li:last-child img {
	width: 378px;
	height: auto;
}
#toto_banner p {
	font-size: 16px;
	font-weight: 700;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* サイド固定ナビ　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#side_nav {
	position: fixed;
	right: 0px;
	top: 70px;
	z-index: 90;
}
#side_nav ul {
	width: 100%;	
}
#side_nav li {
	width: 50px;
	height: 160px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1em;
	border-bottom: 1px solid #000000;
	writing-mode: vertical-rl;
}
#side_nav li img {
	width: 22px;
	height: auto;
	position: absolute;
	top: 15px;
	right: 13px;
}
#side_nav li a {
	display: block;
	text-decoration: none;
	width: 50px;
	padding-top: 45px;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}

/* 個別設定 */
#nav_contact a {
	background-color: #2150a4;
	color: #FFFFFF;
	padding-right: 17px;
}
#nav_contact a:hover {
	background-color: #1A4083;
}
#nav_insta a {
	background-color: #FFFFFF;
	color: #000000;
	padding-right: 15px;
	font-size: 16px;
}
#nav_insta a:hover {
	background-color: #E4E4E4;
}
#nav_schedule a {
	background-color: #e80411;
	color: #FFFFFF;
	padding-right: 17px;
}
#nav_schedule a:hover {
	background-color: #C8030E;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* PAGE TOP            　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#page_top {
	position: fixed;
	bottom: 60px;
	right: 70px;
	z-index: 10;
	margin-left: auto;
	margin-right: auto;
	background-color: #000000;
}
#page_top img {
	width:80px;
	height: auto;
}




























/* ↓↓↓↓↓↓↓↓↓↓ ---以下スマホ--- ↓↓↓↓↓↓↓↓↓↓ */


@media screen and (max-width: 767px) {
	
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* 基本あれこれ　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
body {
	font-size: 14px;
	line-height: 1.6em;
}
	
/* -- ボックス ----------------------------------------------- */
.doc_set {
	padding-left: 20px;
	padding-right: 20px;
}
.inner {
	width: 100%;
}
	
/* -- テキスト ----------------------------------------------- */
.text_SZ_s {
	font-size: 12px;
	line-height: 1.6em;
}
	
/* -- テーブル ----------------------------------------------- */
.tbl_nomal th {
	width: 100%;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
	display: block;
}
.tbl_nomal td {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 25px;
	padding-left: 10px;
	width: 100%;
	display: block;
}
	
/* -- PC・スマホ 表示、非表示 ----------------------------------------------- */
.pc_none {
	display: inherit;
}
.sp_none {
	display: none;
	
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* ヘッダー　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#header {
	display: inherit;
	/* [disabled]background-color: transparent !important; */
	border-bottom-style: none;
	/* [disabled]background-image: -webkit-linear-gradient(270deg,rgba(0,0,0,0.45) 0%,rgba(33,80,164,0.00) 100%); */
	/* [disabled]background-image: -moz-linear-gradient(270deg,rgba(0,0,0,0.45) 0%,rgba(33,80,164,0.00) 100%); */
	/* [disabled]background-image: -o-linear-gradient(270deg,rgba(0,0,0,0.45) 0%,rgba(33,80,164,0.00) 100%); */
	/* [disabled]background-image: linear-gradient(180deg,rgba(0,0,0,0.45) 0%,rgba(33,80,164,0.00) 100%); */
	height: 50px;
	position: fixed;
	left: 0px;
	right: 0px;
	top: 0px;
	margin-left: auto;
	margin-right: auto;
}
	
/* ロゴ */
#logo {
	top: 10px;
}
#logo a {
	/* [disabled]background-image: url(../images/common/logo_sp.png); */
	background-size: cover;
	height: 30px;
	width: 200px;
}
	
/* グローバルナビ */
#gv_nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100vh - 50px);
	background-color: #2150A4;
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	visibility: hidden;
	opacity: 0;
	/* ふわっと表示 */
	transition: 0.5s ease-in-out;
}
#gv_nav ul {
	list-style: none;
	text-align: center;
	display: block;
	border-right-style: none;
	margin-right: 0px;
}
#gv_nav ul li {
	margin-left: 0px;
	border-left-style: none;
	border-bottom: 1px solid #FFFFFF;
}
#gv_nav ul li a {
	color: #ffffff;
	padding-bottom: 10px;
	padding-top: 10px;
	font-size: 14px;
	line-height: 1.2em;
}
	
/* ハンバーガーボタン（開く） */
#navbtn {
	display: inherit;
	position: fixed;
	top: 0px;
	right: 0px;
	padding-top: 13px;
	padding-right: 13px;
	padding-left: 13px;
	padding-bottom: 15px;
	outline: none;
	border: none;
	background-image: none;
	width: 24px;
	height: 22px;
	cursor: pointer;
	background-color: #D30609;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
#navbtn::before,
#navbtn::after {
  content : '';
  display: block;
  height: 2px;
  background-color: #FFFFFF;
  transform: translateY(10px);
  transition: 0.3s ease-in-out;
}
#navbtn::before {
  transform: translateY(-8px);
  box-shadow: 0 10px #FFFFFF;
}

/* ハンバーガーボタン（閉じる） */
.open #navbtn {
  z-index: 100;
}
.open #navbtn::before {
  transform: rotate(-45deg);
  box-shadow: none;
  background-color: #FFFFFF;
}
.open #navbtn::after {
	transform: rotate(45deg);
	box-shadow: none;
	background-color: #FFFFFF;
	margin-top: -1px;
}
	
/* ナビゲーションメニュー 開いた時*/
.open #gv_nav {
  visibility: visible;
  opacity: 1;
  z-index: 99;
}
	
/* -- HOMEボタン ----------------------------------------------- */
#bt_home {
	text-align: center;
}
#bt_home img {
	width: 25px;
	height: auto;
	margin-bottom: 5px;
}
#bt_home a {
	height: auto;
}
	
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* container　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#container {
	margin-left: 0px;
	margin-right: 0px;
	border-right-style: none;
	border-left-style: none;
	padding-top: 0px;
	padding-bottom: 80px;
}
	
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* footer　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

/* -- PARTNER ----------------------------------------------- */
#partner_area {
	padding-top: 90px;
	padding-bottom: 120px;
	margin-left: 0px;
	margin-right: 0px;
	padding-left: 20px;
	padding-right: 20px;
	border-right-style: none;
	border-left-style: none;
}

/* h3 */
#partner_banner h3 {
	font-size: 40px;
	margin-bottom: 30px;
}

/* バナーリスト */
#partner_banner ul {
	margin-left: 0px;
	margin-right: 0px;
}
#partner_banner li {
	width: 100%;
	border: 1px solid #000000;
	margin-bottom: 5px;
	margin-right: 0px;
	margin-left: 0px;
	display: inherit;
}

/* -- フッターデータ ----------------------------------------------- */
#ft_data {
	margin-left: 0px;
	margin-right: 0px;
	border-right-style: none;
	border-left-style: none;
	padding-top: 80px;
	padding-bottom: 40px;
	padding-left: 20px;
	padding-right: 20px;
}

/* ロゴ */
#ft_logo {
	width: 100px;
	margin-top: -140px;
	margin-bottom: 30px;
}

/* h3、h4 */
#ft_data h3 {
	font-size: 32px;
	line-height: 1.2em;
}
#ft_data h4 {
	font-size: 18px;
}

/* リンク */
ul#ft_link {
	margin-top: 40px;
	display: inherit;
	font-size: 0px;
}
#ft_link li {
	font-size: 14px;
	border-left-style: none;
	line-height: 1.2em;
	width: 50%;
	display: inline-block;
	text-align: center;
	border-bottom: 1px solid #FFFFFF;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#ft_link li:nth-child(even) {
	border-right: 1px solid #FFFFFF;
}
#ft_link li:first-child {
	width: 100%;
	border-top: 1px solid #FFFFFF;
}
#ft_link li:last-child {
	border-right-style: none;
	display: none;
}
#ft_link li a {
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 10px;
	padding-bottom: 10px;
	font-size: 12px;
}
	
/* -- コピーライト ----------------------------------------------- */
#copy {
	border-top-style: none;
	font-size: 11px;
	border-bottom: 1px solid #000000;
}
#copy span {
	display: none;
}

/* -- スポーツくじ ----------------------------------------------- */
#toto_banner {
	margin-bottom: 150px;
}
#toto_banner ul a {
	display: inherit;
	width: auto;
}
#toto_banner ul li:first-child {
	margin-right: 0px;
	margin-bottom: 15px;
}
#toto_banner ul li:first-child img {
	width: 280px;
	height: auto;
}
#toto_banner ul li:last-child img {
	width: 280px;
	height: auto;
}
#toto_banner p {
	font-size: 14px;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* サイド固定ナビ　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#side_nav {
	right: 0px;
	top: auto;
	bottom: 0px;
	left: 0px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}
#side_nav ul {
	display: flex;
}
#side_nav li {
	width: calc(100% / 3);
	height: 50px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1em;
	border-bottom-style: none;
	writing-mode: horizontal-tb;
	-webkit-writing-mode: horizontal-tb;
	-ms-writing-mode: horizontal-tb;
}
#side_nav li img {
	position: static;
	margin-right: 5px;
}
#side_nav li a {
	width: 100%;
	padding-top: 0px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-top: 1px solid #000000;
}

/* 個別設定 */
#nav_contact a {
	padding-right: 0px;
}
#nav_contact a:hover {
	background-color: #2150a4;
}
#nav_insta a {
	padding-right: 0px;
	font-size: 13px;
	border-right: 1px solid #000000;
	border-left: 1px solid #000000;
}
#nav_insta a:hover {
	background-color: #FFFFFF;
}
#nav_schedule a {
	padding-right: 0px;
}
#nav_schedule a:hover {
	background-color: #e80411;
}
	
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* PAGE TOP            　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#page_top {
	bottom: 80px;
	right: 10px;
}
#page_top img {
	width:50px;
}

}
