/*
Theme Name: subl-theme
Description:takano subl-theme
Author: takano
Version: 1.0
*/
@charset "utf-8";
body{
	margin: 0;
	padding: 0;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	box-sizing:border-box;
}
html{
	scroll-behavior: smooth;
}

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


h2{
	color:#000;
	margin: 0;
	padding: 0;
	overflow: hidden;
}
h3{
	font-size: 2.5em;
	margin: 0;
	padding: 0;
	line-height: 180%;
}
h4{
	font-size: 2.0em;
	margin: 0;
	padding: 0;
	line-height: 180%;
}
h5{
	font-size: 1.8em;
	margin: 0;
	padding: 0;
	line-height: 180%;
}
h6{
	font-size: 1.4em;
	margin: 0;
	padding: 0;
	line-height: 180%;
}

p{
	line-height: 180%;
	margin: 0;
	padding: 0;
}

img{
	image-rendering: -webkit-optimize-contrast;
	vertical-align: bottom;
}
.w100{
	width: 100%;
}
.w60{
	width: 58%;
}
.w50{
	width: 48%;
}
.w40{
	width: 38%;
}
.w30{
	width: 31%;
}
.w25{
	width: 23%;
}
.w75{
	width: 75%;
}
.mb10{
	margin-bottom: 10px;
}

.fl1{
	flex: 1;
}
.w2c{
	width: 50%;
}
.clear{
	display: none;
}


.lf{
	text-align: left;
}
.rt{
	text-align: right;
}
.cen{
	text-align: center;
}
.min{
font-family: 'Noto Serif JP', serif;
}
.mg10{
	margin: 1%;
}


.shadow{
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

/* header */
header {
	width: 100%;
	height: 70px;
	margin: 0 auto;
	padding:0 15px;
	box-sizing: border-box;
	overflow:visible;
    position:fixed;
    top: 0;
	z-index:555;
	font-size: 1.0em;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	background-color: #fff;
	box-shadow:0 3px 3px 3px rgba(0, 0, 0, 0.3);
}
header h1{
	display: flex;
	align-items: center;
	font-size: 1.5em;
	font-family: 'Noto Serif JP', serif;
	width: 30%;
	max-width: 360px;
	margin: 0;
	padding: 0;
	color: #333;
	line-height: normal;
}
header h1 a{
	padding:0;
	color: #333;
	text-decoration: none;
	box-sizing: border-box;
}
header h1 img{
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
/* PCヘッダーメニュー */
.hdmenu{
	flex: 1;
	display: block;
}
.hdmenu ul{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
	margin: 0 0 0 0;
	padding: 0;
	border-right:3px solid #ccc;
}
.hdmenu ul li{
	list-style: none;
	margin: 0 0 0 0;
	padding: 0;
	border-left:3px solid #ccc;
	width: 120px;
	text-align: center;
	box-sizing: border-box;
}
.hdmenu ul li a{
	text-decoration: none;
	color:#333;
	padding: 0 10px;
	box-sizing: border-box;
	font-weight: bold;
}

/* メニューボタン */
.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    z-index: 200;
    background:rgba(52,76,183,1.0);
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
#menu-btn-check {
    display: none;
}
/* メニュー展開 */
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 150;
    background:rgba(255,255,255,0.9);
    transition: all 0.5s;/*アニメーション設定*/
	backdrop-filter: blur(10px);
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}

.menu-content ul {
	width: 80%;
	max-width: 1000px;
	margin: 0 auto;
    padding: 90px 10px 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}
.menu-content ul li {
	width: 100%;
	margin: 0;
	padding: 0;
	border-bottom: solid 1px #344cb7;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 1.2em;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 11px 15px 12px 10px;
    position: relative;
	color: #344cb7;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #344cb7;
    border-right: solid 2px #344cb7;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 20px;
}


/* top_contact */
.t_con{
position:fixed;
right:0px;
top:65%;
background: #525293;
	text-align: center;
	border-radius: 10px 0 0 10px; 
	border-left: 2px solid #fff;
	border-top: 2px solid #fff;
	border-bottom: 2px solid #fff;
	writing-mode: vertical-rl;
	z-index: 400;
}
.t_con a{
	padding:15px;
	font-weight: bold;
	display: block;
	color: #fff;
	text-decoration: none;
	line-height: 100%;
	letter-spacing: 1px;

	font-size: 1.4em;
}


/* slide */
.slidebace {
	width: 100%;
	position: relative;
	margin-top: 70px;
	padding:30px 0;
	background-color: #c9d7f4;
	box-sizing: border-box;
	overflow: hidden;
}
.slidebace img{
	width: 100%;
	height: auto;
	object-fit: cover;
}

/* main-image */
.main-img{
	margin-top: 70px;
	padding:0 0 0 0;
	background-color: #577bc1;
}
.main-img img{
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
/* contents1 */
.conbace01{
	padding:70px 0;
	background-image: url("images/bg01.jpg");
	background-size: cover;
	position: relative;
}
.conbace01 h2{
	width: 100%;
	text-align: right;
	position: absolute;
	top: 70px;
	padding: 0 0 0 10px;
	box-sizing: border-box;
}
/* contents2 */
.conbace02{
	padding:40px 0;
	background-color: #005bac;
}
/* contents3 */
.conbace03{
	padding:70px 0;
	background-image: url("images/bg02.jpg");
	background-size: cover;
	position: relative;
}
.conbace03 h2{
	width: 100%;
	text-align: right;
	position: absolute;
	top: 70px;
	padding: 0 0 0 10px;
	box-sizing: border-box;
}

/* contents4 */
.conbace04{
	padding:0 0 0 0;
	background-color: #FFFFFF;
}
/* page */
.conbace{
	padding:70px 0 0 0;
}
.pagebace{
	max-width: 1000px;
	margin: 50px auto 0 auto;
	padding: 10px;
	box-sizing: border-box;
	overflow-wrap: break-word;
}
.pagebace h3{
	background-image: url("images/h3_line.png");
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size:contain;
	padding: 10px 0;
	margin: 0 0 30px 0;
}
.pagebace h4{
	border-left:10px solid #005bac;
	padding:0 0 0 10px;
	margin: 0 0 15px 0;
	line-height: normal;
}
.page_title{
	text-align: center;
	background: linear-gradient(to top, #014b9a, #1879c3);
	padding: 30px;
	box-sizing: border-box
}
.page_title h2{
	color: #fff;
	font-size: 2.4em;
	margin: 0;
	padding: 0;
	line-height: normal;
}
.page_title p{
	color: #fff;
}

/* パンくずリスト */
.bclist{
	background-color: #31a3e8;
}
.bclist_con{
	max-width: 1000px;
	margin: 0 auto;
	padding: 10px;
	box-sizing: border-box;
	color: #fff;
}
.bclist_con a{
	text-decoration: none;
	color: #fff;
}

/* news */
ul.newsbox{
	width: 100%;
	padding: 0;
}
ul.newsbox li{
	margin: 10px 0 10px 0;
	padding: 15px;
	list-style: none;
	list-style-position:inside;
	border-bottom: 1px dotted #000;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	font-size: 1.2em;
}
ul.newsbox li .date{
	flex: 1 15%;
	font-weight: bold;
	color: #333;
}
ul.newsbox li .tit{
	flex: 2 85%;
	color: #333;
}
ul.newsbox li .tit a{
	text-decoration: none;
	color: #333;
}
.nw_link{
	width: 200px;
	margin: 30px auto 0 auto;
	text-align: center;
	font-size: 1.2em;
	color: #333;
}
.nw_link a{
	color: #333;
	font-weight: bold;
	text-decoration: none;
	line-height: 45px;
	padding:0 10px;
	display: block;
	border-radius: 10px;
	border:1px solid #333;
	transition: all 0.8s;
}
.nw_link a:hover{
	opacity: 0.3;
}

/* single */
.single_info{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}
.single_info ul{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
}
.single_info ul li{
	list-style: none;
	margin: 0 10px 0 0;
	padding: 0;
}
.single_info .s_date{
	margin: 0 15px 0 0;
}
.single_wrapper{
	width: 100%;
}
.single_wrapper h2{
	font-size: 2.0em;
	margin: 10px 0 0 0;
	padding:10px;
	border: 1px solid #ccc;
}
.single_bace{
	padding: 20px 1% 0 1%;
	margin: 0;
}
.single_bace h2{
	font-size: 2.4em;
	margin: 0 0 0 0;
	padding: 0;
	border: none;
}
.single_bace h3{
	font-size: 2.2em;
	margin: 0 0 0 0;
	padding: 0;
	border: none;
}

.single_bace ul{
	margin: 5px 0;
	padding: 0 0 0 30px;
}
.single_bace ul li{
	padding: 0;
	margin: 0;
}
.single_bace ol{
	margin: 5px 0;
	padding: 0 0 0 25px;
}
.single_bace ol li{
	padding: 0 0 0 5px;
	margin: 0;
}

/* archive */
ul.archive{
	margin: 0 0 25px 0;
	padding: 0;
	border-top: 1px dotted #333;
}
ul.archive li{
	list-style: none;
	margin: 0;
	padding:30px 15px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	border-bottom: 1px dotted #333;
	font-size: 1.2em;
}
ul.archive .date{
	font-weight: bold;
	margin-right: 20px;
}
ul.archive .tit a{
	text-decoration: none;
	color: #333;
	font-weight: bold;
}

/* pagenation */
.pagination{
   margin:40px 0 0 0;
}
.nav-links{
   display:flex;
}
.pagination .page-numbers{
   display:inline-block;
   margin-right:10px;
   padding:8px 13px;
   color:#333;
   border-radius:5px;
   background:#fff;
	border: 1px solid #ccc;
}
.pagination .current{
   padding:8px 13px;
   background:#ccc;
   color:#fff;
	border: 1px solid #ccc;
}
.pagination .prev,
.pagination .next{
   background:transparent;
   box-shadow:none;
   color:#333;
}
.pagination .dots{
   background:transparent;
   box-shadow:none;
}
.pagination a{
	text-decoration: none;
}


/* calendar */
.calendar{
	vertical-align: bottom;
}
.calendar img{
	width: 100%;
	height: auto;
}

/* point */
.point1{
	width: 100%;
	position: relative;
	height: 500px;
}
.point1 img{
	width: 100%;
	height: 500px;
	object-fit: cover;
}

.point2{
	width: 100%;
	position: relative;
	height: 500px;
}
.point2 img{
	width: 100%;
	height: 500px;
	object-fit: cover;
}

.textbox{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	margin: 0;
	padding: 20px;
	text-align: center;
	background-color: #fff;
}


/* flexbox */
.flb{
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
}
.flb li{
	list-style: none;
	padding: 0;
}
.fstart{
	justify-content: flex-start;
}
.fcenter{
	justify-content: center;
}
.fbetween{
	justify-content:space-between;
}
.alc{
	align-items: center;
}


/* fade animation */
.box{
	opacity: 0;
}

.fadeUp {
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(30px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}


.delay-time02{
animation-delay: 0.8s;
}

.delay-time04{
animation-delay: 1.6s;
}
.delay-time06{
animation-delay: 2.4s;
}

/* footer */
footer{
	color: #fff;
	background-color: #005bac;
	margin-top: 50px;
}
.copyright{
	background-color: #000957;
	padding: 10px 0;
	text-align: center;
	color: #fff;
}

/* icon */
.icon{
	color: #000;
	border-radius: 50px;
	width: 38px;
	line-height: 38px;
	text-align: center;
	margin-top: 8px;
	margin-right: 8px;
	margin-bottom: 8px;
	font-size: 1.2em;
	border: solid 1px #000;
}
.icon a{
	display: block;
	color: #000;
	text-decoration: none;
}
.more a{
	background-color: #005bac;
	padding:5px 15px;
	border-radius: 5px;
	text-decoration: none;
	color: #fff;
	display: inline-block;
	font-weight: bold;
}


/* fade */
.view{
opacity : 0;
transform : translate(0, 70px);
transition : all 500ms;
}
.view.scrollin{
opacity : 1;
transform : translate(0, 0);
}

/* contactform7 */
.wpcf7
{
    background-color: #efefef;
	border-radius: 10px;
 	padding:0;
	margin-top: 20px;
	box-sizing: border-box;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea
{
    background-color: #fffdeb;
	border: 1px solid #ccc;
    color: #000;
    width: 100%;
	padding: 15px;
	box-sizing: border-box;
	font-size: 1.2em;
	vertical-align: bottom;
}

.wpcf7 input[type="submit"]{
	width: 100%;
	background-color: #000957;
	border: none;
	line-height: 250%;
	margin: 0;
	padding: 0 25px;
	box-sizing: border-box;
	color: #fff;
	font-weight: bold;
	font-size: 1.2em;
}
ul.form{
	margin: 0;
	padding: 20px 20px 0 20px;
	box-sizing: border-box;
}
ul.form li{
	list-style: none;
	margin: 0 0 15px 0;
	padding: 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	vertical-align: bottom;
}
.ftit{
	display: flex;
	background-color: #344cb7;
	border: 1px solid #344cb7;
	width: 250px;
	padding: 10px;
	box-sizing: border-box;
	color: #fff;
	margin-right: 15px;
	align-items: center;
	line-height: 180%;
}
.sbmt{
	width: 250px;
	margin: 30px auto;
}
.hs{
	background-color: #ff9900;
	border: 1px solid #fff;
	border-radius: 5px;
	padding: 0 10px;
	font-size: 0.9em;
	font-weight: bold;
	line-height: 200%;
	margin-left: 10px;
}


/** pagetop **/
#page_top{
  width: 73px;
  height: 73px;
  position: fixed;
  right: -73px;
  bottom: 85px;
	z-index: 999;
}
#page_top a{
  position: relative;
  display: block;
  width: 73px;
  height: 73px;
  text-decoration: none;
}
#page_top a:hover{
	opacity: 0.5;
	transition:0.3s;
}
#page_top a::before{
  position: absolute;
  width: 73px;
  height: 73px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
#page_top img{
	width: 100%;
	max-width: 70px;
	height: auto;
	vertical-align: bottom;
}

/** 202501 **/
.news{
	max-width: 1000px;
	margin: 0 auto 0 auto;
	background-color: #fff;
	padding:150px 50px 25px 50px;
	box-sizing: border-box;
}
ul.game{
	margin: 0;
	padding: 0;
}
ul.game li{
	display: flex;
	justify-content: space-between;
	align-items:flex-start;
	flex-wrap: wrap;
	list-style: none;
	margin: 0 0 25px 0;
	padding: 0;
}
.thumb{
	width: 180px;
	height: 135px;
	border: 2px solid #ccc;
	box-sizing: border-box;
	margin: 0 20px 0 0;
	overflow: hidden;
}
.thumb img{
	width: 100%;
	height: 135px;
	object-fit: cover;
}
.game_txt{
	flex: 1;
	margin: 0;
	padding: 0;
}
.ginfo{
	width: 100%;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
}
.gdate{
	font-weight: bold;
	margin-right: 15px;
}
.gtit{
	width: 100%;
	margin: 0;
	padding: 10px 0;
	font-size: 1.6em;
	font-weight: bold;
}
.gtit a{
	text-decoration: none;
	color: #333;
}

.cat01{
	text-align: center;
	margin-right: 15px;
	border-radius: 5px;
}
.cat01 a{
	display: block;
	background-color: #074799;
	width: 125px;
	color: #fff;
	line-height: 200%;
	text-decoration: none;
	border-radius: 5px;
}
.cat02{
	text-align: center;
	margin-right: 15px;
	border-radius: 5px;
}
.cat02 a{
	display: block;
	background-color: #009990;
	width: 125px;
	color: #fff;
	line-height: 200%;
	text-decoration: none;
	border-radius: 5px;
}
.cat03{
	text-align: center;
	margin-right: 15px;
	border-radius: 5px;
}
.cat03 a{
	display: block;
	background-color: #577bc1;
	width: 125px;
	color: #fff;
	line-height: 200%;
	text-decoration: none;
	border-radius: 5px;
}


.bbox{
	width: 100%;
	max-width: 534px;
	margin:10px 0;
	background-image: url("images/img-bbox00.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.bbox a{
	background-image: url("images/img-bbox01.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	flex-wrap: wrap; 
	margin: 0;
	padding: 30px 0 30px 150px;
	box-sizing: border-box;
	text-decoration: none;
	line-height: 100%;
	height: 110px;
}
a:hover{
	opacity: 0.3;
	transition: all 0.5s;
}
.bbox .blname{
	width: 100%;
	margin: 0;
	padding: 0;
	color: #333;
	font-weight: bold;
	font-size: 1.8em;
}
.bbox .bltxt{
	width: 100%;
	margin: 20px 0 0 0;
	padding: 0;
	color: #333;
	font-weight: bold;
	font-size: 1.4em;
}

.insta_sample{
	max-width: 1199px;
	margin: 70px auto;
	vertical-align: bottom;
}
.insta_sample img{
	width: 100%;
	height: auto;
}

.button{
	width: 100%;
	box-sizing: border-box;
	text-align: center;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.button a{
	display: block;
	color: #fff;
	text-decoration: none;
	line-height: 280%;
	font-size: 1.3em;
	font-weight: bold;
}
.button a:hover{
	opacity: 1.0;
}
.button::before {
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transform: skewX(-20deg);
	content: "";
	background-color:#005bac;
}
.bt01{
	width: 300px;
	margin: 50px auto 0 auto;
}
.bt01:hover{
	opacity: 0.5;
	transition:0.3s;
}

.bl_button{
	width: 320px;
	border: 1px solid #ccc;
	font-size: 1.2em;
	line-height: normal;
}
.bl_button a{
	background-image: url("images/button_bg.png");
	background-position: left;
	background-repeat: no-repeat;
	box-sizing: border-box;
	padding: 15px 0 15px 40px;
	display: block;
	text-decoration: none;
	font-weight: bold;
	color: #333;
}

ul.ft_sns{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin:0;
	padding: 30px 0;
}
ul.ft_sns li{
	list-style: none;
	padding:0 15px;
	font-size: 4.5em;
}
ul.ft_sns li a{
	text-decoration: none;
	color: #fff;
}

/** teams **/
.team{
	width: 100%;
	border:5px solid #ccc;
	padding: 18px;
	box-sizing: border-box;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
}
.team h4{
	width: 100%;
	border:none;
	font-size: 1.5em;
	padding: 0 0 0 35px;
	margin: 0;
	box-sizing: border-box;
	line-height: 160%;
	background-image: url("images/button_bg.png");
	background-repeat: no-repeat;
	background-position: left center;
}
ul.teaminfo{
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	box-sizing: border-box;

}
ul.teaminfo li{
	list-style: none;
	padding: 0;
	box-sizing: border-box;
	line-height: 180%;
}
ul.teaminfo li p{
	margin: 0;
	padding: 0;
	line-height: 180%;
}
.break {
  width: 100%;
}
.ti_tit{
	width: 70px;
	text-align: center;
	border: 1px solid #333;
	margin-top: 15px;
	margin-right: 10px;
	line-height: 180%;
}
.ti_txt{
	flex:1;
	margin-top: 15px;
}
a.link01{
	width: 100%;
	font-size: 0.85em;
	background-color: #eda60a;
	padding:10px 8px;
	display: block;
	line-height: 100%;
	text-decoration: none;
	color: #fff;
	font-weight: bold;
	box-sizing: border-box;
}
a.link02{
	width: 100%;
	font-size: 0.85em;
	background-color: #344cb7;
	padding:10px 8px;
	display: block;
	line-height: 100%;
	text-decoration: none;
	color: #fff;
	font-weight: bold;
	box-sizing: border-box;
}
a.link03{
	width: 100%;
	font-size: 0.85em;
	background-color: #6f7793;
	padding:10px 8px;
	display: block;
	line-height: 100%;
	text-decoration: none;
	color: #fff;
	font-weight: bold;
	box-sizing: border-box;
}
.team_bd{
	width: 100%;
	border-top: 3px dotted #ccc;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	margin:15px 0 0 0;
	padding:15px 0 0 0;
	column-gap: 13px;
}
.team_bd .imgbox{
	width: 45%;
	max-width: 180px;
	max-height: 135px;
	padding: 0;
	box-sizing: border-box;
}
.team_bd .imgbox img{
	width: 100%;
	height: auto;
}
.team_link{
	flex: 1;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	row-gap:8px;
}

/** 一部調整 **/
@media screen and (max-width: 1080px) {
	
.sp_tab{
	width: 100%;
}
	
/* header */
header h1{
	width: 100%;
	margin: 0 0 0 0;
	max-width: 250px;
}
#gnav > ul {
	width: 100%;
	margin: 0;
}




h3{
	font-size: 2.0em;
}
h4{
	font-size: 1.8em;
}
h5{
	font-size: 1.6em;
}
h6{
	font-size: 1.4em;
}
	
/* PCヘッダーメニュー */
.hdmenu{
	font-size: 0.9em;
}
.hdmenu ul li{
	margin: 0 0 0 0;
	line-height: 180%;
}
.hdmenu ul li{
	width: auto;	
}

/* top_contact */
.t_con{
	top: 60%;
}
.t_con a{
	padding: 15px;
	font-size: 1.0em;
}
/* page */
.pagebace{
	width: 98%;
	margin: 30px auto 0 auto;
}
.pagebace2{
	width: 98%;
}	
	
/* news */
ul.newsbox{
	width: 98%;
}
		
ul.newsbox li{
	font-size: 1.0em;
}
ul.newsbox li .date{
	flex: 1 100%;
	padding-bottom: 5px;
}
ul.newsbox li .tit{
	flex: 2 100%;
}

/* footer */
.ft_sitemap{
	margin: 20px 0 0 0;
	padding: 0;
}
.copyright{
	font-size: 0.9em;
}
	
}

/** モバイル **/
@media screen and (max-width: 768px) {
	
.hdmenu{
	display: none;
}
	
.menu-content ul li {
	width: 100%;
}

h3{
	font-size: 1.6em;
}
h4{
	font-size: 1.4em;
}
h5{
	font-size: 1.2em;
}
h6{
	font-size: 1.0em;
}	
.spacer { width: 100%; }	
.pc{display: none;}
.sp{display: block;}

.w60{
	width: 100%;
}
.w50{
	width: 100%;
}
.w40{
	width: 100%;
}
.w30{
	width: 100%;
}
.w25{
	width: 100%;
}
.w75{
	width: 100%;
}
	
.w2c{
	width: 100%;
}
/* slide */
.slidebace {
	padding:0px 0;
}
	
/* contactform7 */
ul.form{
	padding: 15px 15px 0 15px;
}
ul.form li{
	margin: 0 0 20px 0;
}
.ftit{
	width: 100%;
	margin-right: 0px;
	margin-bottom: 5px;
}
.sbmt{
	width: 80%;
	margin: 20px auto;
}
	
/* 202501 */
.news{
	margin: 0 auto 0 auto;
	padding:90px 15px 25px 15px;
}
ul.game li{
	margin: 0 0 25px 0;
}
.thumb{
	width: 100px;
	height: 75px;
	margin: 0 10px 0 0;
}
.thumb img{
	height: 75px;
}
.gdate{
	margin-right: 8px;
	font-size: 0.8em;
}
.gtit{
	padding: 10px 0 0 0;
	font-size: 1.0em;
}
.cat01{
	margin-right: 10px;
	font-size: 0.8em;
}
.cat01 a{
	width: 85px;
}
.cat02{
	margin-right: 10px;
	font-size: 0.8em;
}
.cat02 a{
	width: 85px;
}
.cat03{
	margin-right: 10px;
	font-size: 0.8em;
}
.cat03 a{
	width: 85px;
}
/* archive */
ul.archive li{
	padding:15px 10px;
	font-size: 1.0em;
}
ul.archive .date{
	margin-right: 8px;
}
ul.archive .tit{
	margin-top: 10px;
	width: 100%;
}
ul.archive .tit a{
	text-decoration: none;
	color: #333;
	font-weight: bold;
}
	
/* contents1 */
.conbace01{
	padding:50px 0;
}
.conbace01 h2{
	top: 50px;
}
.conbace01 h2 img{
	width: 950px;
}
/* contents3 */
.conbace03{
	padding:50px 0;
}
.conbace03 h2{
	top: 50px;
}
.conbace03 h2 img{
	width: 950px;
}
	
.bbox{
	max-width: 330px;
}
.bbox a{
	padding: 15px 0 15px 90px;
	height: 68px;
}
.bbox .blname{
	font-size: 1.2em;
}
.bbox .bltxt{
	margin: 5px 0 0 0;
	font-size: 1.0em;
}
	
.tb_scrl{
	display: block;
	max-width: 100%;
	overflow-x: auto;
	white-space: nowrap;
}
.tb_scrl img {
    width: auto !important;
    height: auto !important;
    max-width: none !important;
    display: block;
}
	
/* footer */
ul.ft_sns{
	padding: 15px 0;
	justify-content: flex-start
}
ul.ft_sns li{
	padding:0 0 0 15px;
	font-size: 3.5em;
}
.copyright{
	font-size: 0.8em;
}
	
/** pagetop **/
#page_top{
  width: 63px;
  height: 63px;
  right: -63px;
  bottom: 85px;
}
#page_top a{
  width: 63px;
  height: 63px;
}
#page_top a::before{
  width: 63px;
  height: 63px;
}
#page_top img{
	max-width: 63px;
}
	
/** teams **/
.team{
	border:3px solid #ccc;
	padding: 15px;
}
.team h4{
	font-size: 1.2em;
	margin-top: 15px;
}
.team_bd .imgbox{
	width: 100%;
	max-width: 100%;
	height: auto;
	text-align: center;
	margin-bottom: 10px;
}
.team_bd .imgbox img{
	width: 180px;
	height: 135px;
}
	
}