@charset "UTF-8";
/*** inport ***/
@import "setting.css";
@import "web-font.css";
/*============
** COMMON **  
============*/
.flex-wrap{
	display:flex;
}
.flex-wrap .flex-box{
	width:50%;
}
.questrial-regular {
  font-family: "Questrial", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.gray{ color:#ccc; }

/*============
** NAVI **  
============*/
#g-nav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  transition: all 0.3s;
}
#g-nav.panelactive {
  opacity: 1;
  z-index: 999;
}
#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#g-nav ul {
  display: none;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
}
#g-nav.panelactive ul {
  display: block;
}
#g-nav li {
  list-style: none;
  padding: 10px 0;
}
#g-nav li a {
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.2rem;
}
#g-nav li span a {
  font-size: 1.1rem;
  color: #f2f2f2;
  padding: 0 0 0 30px;
}

.openbtn {
  position: fixed;
  z-index: 9999;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 8px;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  width: 65%;
}
.openbtn span:nth-of-type(1) {
  top: 10px;
}
.openbtn span:nth-of-type(2) {
  top: 18px;
}
.openbtn span:nth-of-type(3) {
  top: 26px;
}
.openbtn .txt-menu {
  position: absolute;
  bottom: 0;
  font-size: 0.8rem;
  color: #fff;
  padding: 0 6px;
}
.openbtn.active span:nth-of-type(1) {
  top: 13px;
  left: 8px;
  transform: translateY(6px) rotate(-45deg);
  width: 60%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 25px;
  left: 8px;
  transform: translateY(-6px) rotate(45deg);
  width: 60%;
}

/*============
** slider **  
============*/
.swiper-container {
  max-width: 100%;
  width: 100%;
  height: 100vh;
  margin: auto;
}

.swiper-container .bn-mem{
	position: absolute;
	z-index: 9;
	top:78%;
	right:1%;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.swiper-wrapper {
  display: block;
}

.slide-item {
  max-width: 100%;
  width: 100%;
  margin: auto;
  overflow: hidden;
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  animation: zoomUp 7s linear 0s 1 normal both;
}

.bg-slide{
	position:relative;
	top:0;
	z-index:10;
}

/*.slide-img{
  display: block;
}*/
.slide-item .slide-img.pc {
  display: block;
}

.slide-item .slide-img.sp {
  display: none;
}

@media screen and (max-width: 480px) {
  .swiper-container {
	  height: auto;
	  margin: auto;
	}
  .slide-item .slide-img.pc {
    display: none;
  }
  .slide-item .slide-img.sp {
    display: block;
  }
  .swiper-container .catch p {
    font-size: 1.4rem;
  }
  .swiper-container .catch p .logo-img:before {
    content: none;
  }
  .swiper-container .catch p .logo-img img {
    width: 90%;
  }
  .swiper-container .catch p .sp-br:before {
    content: "\a";
    white-space: pre;
  }
  .swiper-container .catch p .logo-img {
    display: block;
    padding: 10px 0;
  }
}
/*============
** header **  
============*/
#header {
  width: 100%;
  /*height:100vh;*/
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  /*transition: 0.5s;*/
}
#header .inner {
  width: 100%;
  /*height: 86px;*/
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .inner .logo {
  width: 30%;
  padding: 20px;
  transition: 0.5s;
  z-index:2;
}
#header .inner .logo img {
  max-width: 267px;
}
#header .bg-slide{
	position:absolute;
	z-index:1;
	width:100%;
}
#header .bg-slide img{
	width:100%;
}
#page #header .bg-slide{
	display:none;
}

/* PC nav */
nav.pc-nav {
  color: #fff;
  text-align: center;
  padding-right: 60px;
	z-index:2;
}

nav.pc-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}

nav.pc-nav ul ul {
  display: block;
}

nav.pc-nav ul li {
  position: relative;
  margin-right: 5px;
}

nav.pc-nav ul li ul li {
  margin: 0;
}

nav.pc-nav ul li a {
  display: block;
  text-decoration: none;
  font-size: 0.9rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  padding: 10px;
  transition: all 0.3s;
}

nav.pc-nav ul li li a {
  padding: 10px 35px;
}


.sample_link a.under {
  display: inline-block;
  text-decoration: none;
  position: relative;
  transition: 0.2s;
}

.sample_link a.under:hover {
  color: #d6d3d1;
}

.sample_link a.under::after {
  position: absolute;
  bottom: 0.3em;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #e50012;
  opacity: 0;
  transition: 0.2s;
}

.sample_link a.under:hover::after {
  bottom: 0;
  opacity: 1;
}

/*==矢印の設定*/
/*2階層目を持つliの矢印の設定*/
nav.pc-nav ul li.has-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
}

/*3階層目を持つliの矢印の設定*/
nav.pc-nav ul ul li.has-child::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 17px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

/*== 2・3階層目の共通設定 */
/*下の階層を持っているulの指定*/
nav.pc-nav li.has-child ul {
  /*絶対配置で位置を指定*/
  position: absolute;
  left: 0;
  top: 42px;
  z-index: 4;
  /*形状を指定*/
  background: #5d5d5d;
  width: 180px;
  /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
  /*アニメーション設定*/
  transition: all 0.3s;
}

/*hoverしたら表示*/
nav.pc-nav li.has-child:hover > ul,
nav.pc-nav li.has-child ul li:hover > ul,
nav.pc-nav li.has-child:active > ul,
nav.pc-nav li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav.pc-nav li.has-child ul li a {
  color: #fff;
  border-bottom: solid 1px rgba(255, 255, 255, 0.6);
}

nav.pc-nav li.has-child ul li:last-child a {
  border-bottom: none;
}

nav.pc-nav li.has-child ul li a:hover,
nav.pc-nav li.has-child ul li a:active {
  background: #999;
}

/*==3階層目*/
/*3階層目の位置*/
nav.pc-nav li.has-child ul ul {
  top: 0;
  left: 182px;
  background: #66ADF5;
}

nav.pc-nav li.has-child ul ul li a:hover,
nav.pc-nav li.has-child ul ul li a:active {
  background: #448ED3;
}

@media screen and (max-width: 896px) {
  nav.pc-nav {
    padding: 0;
  }
  nav.pc-nav ul {
    display: block;
  }
  nav.pc-nav li.has-child ul,
  nav.pc-nav li.has-child ul ul {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    visibility: visible; /*JSで制御するため一旦表示*/
    opacity: 1; /*JSで制御するため一旦表示*/
    display: none; /*JSのslidetoggleで表示させるため非表示に*/
    transition: none; /*JSで制御するためCSSのアニメーションを切る*/
  }
  nav.pc-nav ul li a {
    border-bottom: 1px solid #ccc;
  }
  /*矢印の位置と向き*/
  nav.pc-nav ul li.has-child::before {
    left: 20px;
  }
  nav.pc-nav ul ul li.has-child::before {
    transform: rotate(135deg);
    left: 20px;
  }
  nav.pc-nav ul li.has-child.active::before {
    transform: rotate(-45deg);
  }
}
/*
.pc-nav{
  width:70%;
  padding:15px 80px 20px 20px;
  text-align:right;

  ul{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style:none;

    li{
      padding:10px;

      a{
        text-align: center;
        color:#fff;
        text-align:center;
        display:inline-block;
        transition: all .2s;

        span{
          display:inline-block;
        }


      }

      }

  }
}*/
@media screen and (max-width: 980px) {
  .pc-nav {
    display: none;
  }
}
@media screen and (max-width: 896px) {
  #header .inner .logo {
    width: 40%;
    padding: 10px;
  }
  #header .inner .logo img {
    max-width: 100%;
  }
}
@media screen and (max-width: 480px) {
  #header .inner .logo {
    width: 60%;
  }
  header .inner .logo {
    
  }
  #page header .inner .logo {
    display: block;
  }
}
#page #header {
  background: #000;
}

@media screen and (max-width: 896px) {
  #page #header {
    height: 76px;
  }
}
@media screen and (max-width: 480px) {
  #page #header {
    height: 72px;
  }
  #page #header .inner .logo {
    width: 60%;
  }
}
/* スクロールするため高さを出すためのsection */
.section {
  height: 100vh;
}

.section-a {
  background: #000;
}

.section-b {
  background: #fff;
}

/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
header.scroll-nav {
  background: #000;
  /* コンテンツの背景が白でもナビゲーションだと分かりやすいように影をつける */
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

/* 「scroll-navクラス」がヘッダーについたときに、ロゴとナビゲーションの文字を黒にする */
header.scroll-nav .logo,
header.scroll-nav ul li a {
  color: #fff;
}

header.scroll-nav .inner .logo {
  display: block;
}
header.scroll-nav .bg-slide{
	display:none;
}

/*============
** MAIN **  
============*/

.next, .next_b {
  width: 100%;
  padding: 5px 10px;
  background: #e4e4e4;
  text-align: center;
  font-size: 90%;
  color: #fff;
  margin: 10px 0;
}

.next a, .next_b a {
  color: #fff;
}

.next span, .next_b span {
  padding: 3px 8px;
  background: #fff;
  color: #333;
  margin: 0 3px;
}

.next span a, .next_b span a {
  color: #3399cc;
}
/*----------- contents -------------*/
.contents {
  position: relative;
}
.contents-inner{
	background:url(../img/car-tracks.png) no-repeat right top;
}
#page .contents-inner{
	background:none;
}

/*------ info2026 --------*/
#info{
	background:url(../img/bg-pattern.png) no-repeat right bottom #0e0d0d;
}
#info .info-bg{
	padding:20px;
	background:url(../img/car.png) no-repeat left top;
}
#info .inner{
	max-width:1200px;
	margin:50px auto 20px;
}
#info .icon-apple{
	margin:15px;
	text-align:right;
}
@media screen and (max-width: 896px){
	#info .flex-wrap{
		display:block;
	}
	#info .flex-box{
		width:100%;
	}
}
@media screen and (max-width: 480px){
	#info .info-bg{
		padding:0px;
	}
	#info .inner{
		margin:10px auto 20px;
	}
}

#info h2{
	font-size:4.0rem;
	position:relative;
}
#info h2 span{
	margin-left:15px;
	
}
#info h2 span{
	display:inline-block;
}

#info h2 span a {
  display: inline-block;
  position:absolute;
  top:15px;
  margin-left:15px;
  width: 40px;
  height:40px;
  text-align: center;
  text-decoration: none;
  font-size:22px;
  line-height:1.5;
  color: #9c9c9c;
  border: 2px solid #9c9c9c;
  border-radius:50%;
}
#info h2 span a:hover {
  background-position: right center;
  background-size: 200% auto;
  -webkit-animation: pulse 2s infinite;
  animation: ripple 1.5s infinite;
  color: #e50012;
  border: 2px solid #e50012;
}
@keyframes ripple {
  0% {box-shadow: 0 0 0 0 #e50012;}
  70% {box-shadow: 0 0 0 10px rgb(27 133 251 / 0%);}
  100% {box-shadow: 0 0 0 0 rgb(27 133 251 / 0%);}
}

#info .flex-box{
	padding:10px;
}
#info dl{
	padding:15px;
	border-bottom:1px solid #535353;
}
#info dl dt span,#page #info .date span[ class*="icon-" ]{
	font-size:0.9rem;
	display:inline-block;
	width:140px;
	padding:1px 10px;
	margin-left:20px;
	text-align:center;
}
#info dl dt .icon-jimu,#page #info .date .icon-jimu{background:#000;color:#fff;}/*事務局*/
#info dl dt .icon-hokkaido,#page #info .date .icon-hokkaido{background:#0099cc;color:#fff;}/*北海道エリア*/
#info dl dt .icon-touhoku,#page #info .date .icon-touhoku{background:#ff9900;color:#fff;}/*東北エリア*/
#info dl dt .icon-higashi-k,#page #info .date .icon-higashi-k{background:#4ea72e;color:#fff;}/*東関東エリア*/
#info dl dt .icon-k-tyuo,#page #info .date .icon-k-tyuo{background:#cc00ff;color:#fff;}/*関東中央エリア*/
#info dl dt .icon-kita-k,#page #info .date .icon-kita-k{background:#cc0000;color:#fff;}/*北関東エリア*/
#info dl dt .icon-minami-k,#page #info .date .icon-minami-k{background:#cccc00;color:#333;}/*南関東エリア*/
#info dl dt .icon-shinetsu,#page #info .date .icon-shinetsu{background:#0000ff;color:#fff;}/*信越エリア*/
#info dl dt .icon-toukai,#page #info .date .icon-toukai{background:#993300;color:#fff;}/*東海南信エリア*/
#info dl dt .icon-kansai,#page #info .date .icon-kansai{background:#666633;color:#fff;}/*関西エリア*/
#info dl dt .icon-shikoku,#page #info .date .icon-shikoku{background:#ee0000;color:#fff;}/*四国エリア*/
#info dl dt .icon-chugoku,#page #info .date .icon-chugoku{background:#000066;color:#fff;}/*中国エリア*/
#info dl dt .icon-kyusyu,#page #info .date .icon-kyusyu{background:#66ff99;color:#333;}/*九州沖縄エリア*/
#info dl dt .icon-other,#page #info .date .icon-other{background:#ffcc66;color:#333;}/*その他*/

.event dl dt .icon-hokkaido,#page #info .date .icon-hokkaido{background:#0099cc;color:#fff;}/*北海道エリア*/
.event dl dt .icon-touhoku,#page #info .date .icon-touhoku{background:#ff9900;color:#fff;}/*東北エリア*/
.event dl dt .icon-higashi-k,#page #info .date .icon-higashi-k{background:#4ea72e;color:#fff;}/*東関東エリア*/
.event dl dt .icon-k-tyuo,#page #info .date .icon-k-tyuo{background:#cc00ff;color:#fff;}/*関東中央エリア*/
.event dl dt .icon-kita-k,#page #info .date .icon-kita-k{background:#cc0000;color:#fff;}/*北関東エリア*/
.event dl dt .icon-minami-k,#page #info .date .icon-minami-k{background:#cccc00;color:#333;}/*南関東エリア*/
.event dl dt .icon-shinetsu,#page #info .date .icon-shinetsu{background:#0000ff;color:#fff;}/*信越エリア*/
.event dl dt .icon-toukai,#page #info .date .icon-toukai{background:#993300;color:#fff;}/*東海南信エリア*/
.event dl dt .icon-kansai,#page #info .date .icon-kansai{background:#666633;color:#fff;}/*関西エリア*/
.event dl dt .icon-shikoku,#page #info .date .icon-shikoku{background:#ee0000;color:#fff;}/*四国エリア*/
.event dl dt .icon-chugoku,#page #info .date .icon-chugoku{background:#000066;color:#fff;}/*中国エリア*/
.event dl dt .icon-kyusyu,#page #info .date .icon-kyusyu{background:#66ff99;color:#333;}/*九州沖縄エリア*/
.event dl dt .icon-other,#page #info .date .icon-other{background:#ffcc66;color:#333;}/*その他*/

@media screen and (max-width: 480px){
	#info h2{
		font-size:3.0rem;
	}
}

/*------ introduction2026 --------*/
#introduction{
	max-width:1200px;
	margin:0 auto;
	padding:50px 10px;
}
#introduction img{
	max-width:100%;
}

#introduction .flex-box{
	width:50%;
	margin:20px;
	
	position: relative;
	width: 100%;
	height: auto;
}
#introduction h3{
	font-size:5.0rem;
	position:relative;
	padding:20px;
}
#introduction h3 span{
	font-size:1.2rem;
	color:#9e9e9e;
	position:absolute;
	top:40px;
	margin-left:20px;
}
#introduction .bg-color{
	padding:20px 0 0;
	background:#151515;
}
#introduction p{
	padding:20px;
	line-height:1.8;
}
#introduction .photo img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display:block;
}

#introduction .member .member-area{
	display:flex;
	color:#333;
	background:#fff;
	font-size:1.2rem;
	padding:20px;
}
#introduction .member .member-area .photo{
	flex: 0 0 220px;
}
#introduction .member .member-area .txt{
	flex: 1 1 auto;
	
	position: relative;
	width: 100%;
	height: auto;
}
#introduction .member .member-area .img-circle img{
	width:200px;
	height:200px;
	border-radius: 50%; 
}

#introduction .more{
	position: absolute;
	bottom: 0;
	right: 10px;
	z-index: 2;
}

#introduction .more a{
	color:#939393;
	padding:10px 20px;
	border-radius:20px 20px 0 0;
	background:#000;
}
#introduction .more a span:before{
	content:url(../img/icon-more-line.png);
	position:relative;
	top:-3px;
	margin-right:15px;
}
@media screen and (max-width: 896px){
	#introduction{
		padding:20px 10px;
	}
	#introduction .flex-wrap{
		display:block !important;
	}
	#introduction .flex-box{
		width:100%;
		margin:0;
	}
	#introduction h3{
		font-size:3.0rem;
	}
	#introduction h3 span{
		position:static;
		top:0;
		margin-left:0;
	}
	#introduction h3 span:before{
		content: "\A";
		white-space: pre;
	}
	#introduction .con{
		margin-top:20px;
	}
	#introduction .member .member-area{
		display:block;
	}
	#introduction .member .member-area .img-circle img{
		width:100%;
		height:auto;
		border-radius: 0%; 
	}
	#introduction p{
		padding:10px;
	}
	#introduction .member p{
		padding:10px 10px 30px;
	}
}
@media screen and (max-width: 480px){
	#introduction .con{
		margin-top:0;
	}
}

.sns{
	max-width:1200px;
	margin:0 auto;
}
.sns ul{
	display:flex;
	justify-content:center;
	list-style-type:none;
}
.sns ul li{
	padding:5%;
}


/*============
** footer2026 **  
============*/
footer{
	position:relative;
	padding:40px 20px 0;
	background:url(../img/bg-pattern.png) no-repeat right bottom #0e0d0d;
}
footer .inner{
	max-width:1000px;
	margin:0 auto;
}
footer .inner .flex-box{
	width:33.3%;
}
footer .inner .flex-box:nth-child(3) img{
	margin-left:80px;
}

footer ul{
	list-style-type:none;
}
footer ul li{
	padding:5px 0;
}
footer ul li a{
	display:block;
	position:relative;
	font-size:0.85rem;
}
footer ul li a:before{
	content:url(../img/icon-list-line.png);
	position:absolute;
	top:-5px;
	left:-35px;
}
.footer-logo{
	width:100%;
}
@media screen and (max-width: 896px){
	footer .inner{
		padding:20px;
	}
	footer .inner .flex-wrap{
		display:block;
	}
	footer .inner .flex-box{
		width:100%;
	}
	footer ul li{
		padding:0;
		border-bottom:1px solid #d00b1b;
	}
	footer ul li a{
		padding:10px;
		font-size:1.0rem;
	}
	footer ul li a:hover{
		
	}
	footer ul li a:before{
		content:none;
		position:static;
	}
	footer .bn-sponsor{
		text-align:center;
	}
	footer .footer-logo{
		text-align:center;
		
	}
	footer .inner .flex-box:nth-child(3){
		width:100%;
		margin-top:20px;
		border-top:1px solid #3e3e3e;
	}
	footer .inner .flex-box:nth-child(3) img{
		width:40%;
		margin-left:0;
		margin-top:20px;
	}
}
@media screen and (max-width: 480px){
	footer .inner .flex-box:nth-child(3) img{
		width:50%;
	}
}

.copylight{
	color:#ccc;
	padding:20px;
	margin-top:20px;
	text-align:right;
	border-top:1px solid #3e3e3e;
}
@media screen and (max-width: 896px){
	.copylight{
		border-top:none;
		margin-top:0;
		padding:0 20px 20px;
	}
}
/* --------pagetop2026-------- */
#PageTop.pc #page_top {
    position: fixed;
    bottom: 230px;
    right: 20px;
    width:100px;
    height:100px;
    padding: 15px 20px 10px;
    background-color: #000;
    font-size:13px;
    color: #ccc;
    border-radius: 10px;
    text-decoration: none;
    transition: opacity 0.3s;
    opacity: 0;
    transition: .3s;
}
#PageTop.sp a{
	display:none;
}
#PageTop.pc #page_top:before{
	content:url(../img/arrow-top.png);
	margin-left:13px;
}

#PageTop.pc #page_top.is_active {
    opacity: 1;
}
#PageTop.pc #page_top:hover{
	color:#fff;
	background-color: #e50012;
}
@media screen and (max-width: 896px){
	#PageTop.pc #page_top {
		display:none;
	}
	#PageTop.sp a {
		display:block;
	}
	#PageTop.sp a {
	    position:absolute;
	    bottom: 45px;
	    right: 0;
	    width:100px;
	    height:100px;
	    padding: 15px 20px 10px;
	    background-color: #000;
	    font-size:13px;
	    color: #ccc;
	    border-radius: 10px;
	    text-decoration: none;
	}
	#PageTop.sp a:before{
		content:url(../img/arrow-top.png);
		margin-left:13px;
	}
	
}

/*============
** PAGE2026 **  
============*/
#page #header{
	height:120px;
}
#page #header .inner .logo img{
	max-width:220px
}
#page #container{
	height:auto;
	margin-top:
}
#page .contents{
	margin:120px auto 0;
	padding:20px;
	background:#0e0d0d;
	max-width:1200px;
}
@media screen and (max-width: 480px){
	#page .contents{
		padding:10px;
	}
}
/*------------------------*/
/*** info2026 ***/
/*------------------------*/
#page #info{
	background:none;
}
#page #info .date{
	text-align:right;
	color:#ccc;
	padding:15px 0;
}
#page #info .detaile{
	padding:20px;
	border-top:1px solid #3e3e3e;
}
#page #info .detaile h3{
	font-size:1.8rem;
	font-weight:400;
	padding:20px 0 40px;
}
#page #info .detaile .image{
	float:left;
	width:50%;
	padding:0 15px 15px 0;
}
#page #info .detaile .image img{
	max-width:100%;
	display:block;
}
#page #info .detaile p{
	line-height:1.8;
	color:#e9e9e9;
}
#page #info .detaile .photo{
	clear:both;
	display:flex;
	margin:30px 0 0;
	flex-wrap:wrap;
	gap: 15px 1.0%;
}
#page #info .detaile .photo div{
	width:32%;
	position: relative;
	overflow: hidden;
	padding-top: 30%;
}
#page #info .detaile .photo div img{
	position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#page #info .detaile .link{
	margin:30px 10px;
}

#page #info .detaile .link a{
	display:block;
	padding:10px;
	border-bottom:1px dotted #3e3e3e;
}
#page #info .detaile .link a:hover{
	
	background:#3e3e3e;
}
#page #info .detaile .link span:first-child a{
	
	border-top:1px dotted #3e3e3e;
}
#page #info .link a:before{
	content:url(../img/icon-link.png) ;
	margin-right:5px;
}

#page #info .detaile .pdf{
	margin:30px 10px;
}

#page #info .detaile .pdf a{
	display:block;
	padding:10px;
	border-bottom:1px dotted #3e3e3e;
}
#page #info .detaile .pdf a:hover{
	
	background:#3e3e3e;
}

#page #info .pdf a:before{
	content:url(../img/icon-file.png) ;
	margin-right:5px;
}

#page #info .gray-font{
	color:#ff9900;
}
#page #info .date .organizer{
	padding-right:10px;
}
#page #info .date .open:before{
	content:"　/　"
}
#page #info .date .venue{
	padding-left:10px;
}
#page #info .date .venue:before{
	content:"　/　"
}
@media screen and (max-width: 480px){
	#page #info .date .open:before{
		content: "\A";
		white-space: pre;
	}
	#page #info .date .open:after{
		content: "\A";
		white-space: pre;
	}
	#page #info .date .venue:before{
		content:"";
	}
	#page #info .date .venue:after{
		content: "\A";
		white-space: pre;
	}
}

/* list */
#page #info .news-area h2,#page #info .event-area h2{
	margin-bottom:40px;
}

#page #info dl{
	padding:0;
	border-bottom:1px solid #535353;
}

#page #info .news-area dl dd a,#page #info .event-area dl dd a{
	display:block;
	padding:15px;
}
#page #info .news-area dl dd a:hover,#page #info .event-area dl dd a:hover{
	
	background:#3e3e3e;
}

@media screen and (max-width: 896px){
	#page #info .detaile .image{
		float:none;
		width:100%;
		padding:0 0 20px;
	}
}
@media screen and (max-width: 480px){
	#page #info .detaile .photo{
		gap: 5px 1.0%;
	}
	#page #info .detaile .photo div{
		width:49%;
	}
}
/*------------------------*/
/*** ARCへの入会ご案内2026 ***/
/*------------------------*/
#page #arc-join h2{
	font-size:3.0rem;
	margin-bottom:20px;
}
#page #arc-join img{
	max-width:100%;
}
#page #arc-join p{
	line-height:1.8;
}

#page #arc-join a:before{
	content:url(../img/icon-link.png) ;
	margin-right:5px;
}
#page #arc-join dl dt{
	font-size:1.1rem;
	color:#999;
}
#page #arc-join .more{
	padding:10px;
	width:70%;
	margin:20px auto 0;
}
#page #arc-join .more a{
	display:block;
	padding:15px;
	font-size:1.3rem;
	color:#fff;
	text-align:center;
	background:#006699;
	border-radius:10px;transition: .3s;
}
#page #arc-join .more a:hover{
	background:#003366;
}
@media screen and (max-width: 896px){
	#page #arc-join .more{
		width:100%;
	}
	.list dl{
		display:block
	}
	.list dl dt,.list dl dd{
		width:100%;
	}
	#page #arc-join dl dd{
		padding:0px 15px 10px;
	}
}
@media screen and (max-width: 480px){
	#page #arc-join h2{
		font-size:2.5rem;
	}
}

#page #arc-join .club-rule{
	max-width:90%;
	margin:20px auto;
	padding:15px;
	color:#333;
	background:#f2f2f2;
}
#page #arc-join .club-rule h3{
	font-size:2.0rem;
	text-align:center;
	padding:10px 10px 20px;
}
#page #arc-join .club-rule dl{
	padding:10px 0;
	border-top:1px dotted #666;
}
#page #arc-join .club-rule dl dt{
	font-size:1.2rem;
	color:#000;
	font-weight:600;
}
#page #arc-join .club-rule dl dd{
	padding:10px;
}
#page #arc-join .club-rule dl dd span{
	color:#663300;
	font-size:1.1rem;
	font-weight:600;
	display:block;
}
@media screen and (max-width: 896px){
	#page #arc-join .club-rule{
		max-width:100%;
	}
}

/*------------------------*/
/*** ARCチームの紹介2026 ***/
/*------------------------*/
#page #arc-team h2{
	font-size:3.0rem;
	margin-bottom:20px;
}
#page #arc-team h2 span{
	font-size:2.0rem;
}
#page #arc-team p{
	line-height:1.8;
}
#page #arc-team img{
	max-width:100%;
}
#page #arc-team .underline{
	border-bottom:1px solid #575757;
}

#page #arc-team .sup{
	text-align:center;
	margin-top:40px;
}
#page #arc-team h3{
	font-size:2.8rem;
	color:#d00b1b;
	font-weight:500;
}
#page #arc-team h3 span{
	font-size:1.5rem;
}

#page #arc-team .sup .big{
	font-size:1.5rem;
	padding:10px 10px 20px;
	margin-top:10px;
	display:inline-block;
	border-top:2px dotted #575757;
}

#page #arc-team .more{
	padding:10px;
	width:70%;
	margin:0 auto 40px;
}
#page #arc-team .more a{
	display:block;
	padding:15px;
	font-size:1.3rem;
	color:#fff;
	text-align:center;
	background:#006699;
	border-radius:10px;
	transition: .3s;
}
#page #arc-team .more a:hover{
	background:#003366;
}
@media screen and (max-width: 896px){
	#page #arc-team .more{
		width:100%;
	}
}
@media screen and (max-width: 480px){
	#page #arc-team h2{
		font-size:2.5rem;
	}
	#page #arc-team h2 span{
		font-size:1.5rem;
	}
	#page #arc-team h2 span:after{
		content: "\A";
white-space: pre;
	}
}

/*------------------------*/
/*** 全国の活動エリア2026 ***/
/*------------------------*/
#page #activity h2{
	font-size:3.0rem;
	margin-bottom:20px;
}

#activity p{
	line-height:1.8;
}
#page #activity .link a{
	font-size:1.1rem;
	color:#66ccff;
}
#page #activity .link a:hover{
	color:#d00b1b;
}
#page #activity .link a:before{
	content:url(../img/icon-link.png) ;
	margin-right:5px;
}

#page #activity .area-info{
	padding:15px;
	margin:20px 0 0;
}
#page #activity .area-info h3{
	font-size:2.0rem;
	font-weight:400;
}
#page #activity .area-info .big{
	font-size:1.2rem;
	margin:10px 0
}
@media screen and (max-width: 480px){
	#page #activity .area-info{
		padding:15px 0;
	}
}

#page #activity .list{
	color:#000;
	padding:20px;
	margin-bottom:20px;
	background:#dcdcdc;
}
#page #activity .list h4{
	font-size:1.5rem;
	font-weight:400;
	padding:10px;
	margin-bottom:20px;
}
#page #activity .list h4:before{
	content:url(../img/gnav-apple_red.png) ;
	margin-right:5px;
}
#page #activity .list dl{
	border-bottom:none;
	background:#fff;
	margin:10px 0;
}
@media screen and (max-width: 480px){
	#page #activity h2{
		font-size:2.5rem;
	}
	#page #activity .list{
		padding:10px;
	}
	#page #activity .list dl dt{
		font-weight:600;
	}
}

/*------------------------*/
/*** Privacy policy2026 ***/
/*------------------------*/
#page #policy h2{
	font-size:3.0rem;
	margin-bottom:20px;
}
#page #policy p{
	line-height:1.8;
}
#page #policy .policy_box{
	color:#000;
	padding:20px;
	margin:20px 0;
	background:#dcdcdc;
}

#page #policy .policy_box dl{
	padding:10px;
	border-bottom:2px dotted #fff;
}
#page #policy .policy_box dl dt{
	font-size:1.1rem;
	font-weight:600;
}
#page #policy .policy_box dl dd{
	line-height:1.8;
}
#page #policy .policy_box ul{
	list-style-type:none;
}

@media screen and (max-width: 480px){
	#page #policy h2{
		font-size:2.5rem;
	}
	#page #policy .policy_box{
		padding:10px;
	}
}
/*------------------------*/
/*** コンタクト ***/
/*------------------------*/
#page .contact .inner {
  background: none;
  position: static;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  line-height: 2;
}

/* ==================
	FORM
===================== */
.form-group .flex {
  display: flex;
}

.form-group .flex.frap {
  flex-wrap: wrap;
}

.form-group .flex.hlf .box {
  margin: 0.5%;
}

.form-group .flex.hlf .box-top {
  width: 49%;
  padding: 25px;
}

@media screen and (max-width: 896px) {
  .form-group .flex.hlf .box-top {
    padding: 15px;
  }
}
.form-group .box {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  margin-top: 20px;
}

.form-group .box:first-child {
  margin-top: 0;
}

.form-group .box fieldset {
  border: 0;
}

fieldset ul {
  list-style-type: none;
}

.form-group {
  clear: both;
  max-width: 1000px;
  background: #f7f7f7;
  margin: 25px auto;
  padding: 25px 15px;
  border-radius: 10px;
  transition: 0.3s;
}

.form-group.form-top ul {
  display: block;
  margin-left: 30px;
}

.form-group.form-top ul li {
  padding: 1px 10px;
}

@media screen and (max-width: 896px) {
  .form-group.form-top ul li {
    padding: 1px 0;
  }
}
.form-group.form-top .bt {
  padding: 20px 10px;
}

.form-group.form-top .bt a {
  font-size: 110%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  display: block;
  padding: 15px 20px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#c5deea+0,8abbd7+31,066dab+100;Web+2.0+Blue+3D+%231 */
  background: rgb(197, 222, 234); /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgb(197, 222, 234) 0%, rgb(138, 187, 215) 31%, rgb(6, 109, 171) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#c5deea", endColorstr="#066dab",GradientType=0 ); /* IE6-9 */
  border: 1px solid #6393c1;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}

.form-group.form-top .bt a:hover {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#d5e2e8+0,8abbd7+31,1d76aa+100 */
  background: rgb(213, 226, 232); /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgb(213, 226, 232) 0%, rgb(138, 187, 215) 31%, rgb(29, 118, 170) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#d5e2e8", endColorstr="#1d76aa",GradientType=0 ); /* IE6-9 */
}

@media screen and (max-width: 896px) {
  .form-group.form-top .bt a {
    font-size: 105%;
  }
}
fieldset {
  display: hidden;
}

legend {
  width: 100%;
  font-size: 110%;
  font-weight: bold;
  line-height: 1.8;
  padding: 5px;
}

.form-group .no {
  width: 40px;
  height: 40px;
  padding: 10px;
  font-size: 120%;
  color: #fff;
  line-height: 2;
  border-radius: 5px;
  background: #141414;
  margin-right: 10px;
  float: left;
  text-align: center;
  transition: 0.3s;
}

.form-group ul li {
  padding: 3px 10px;
}

.form-control {
  border: 1px solid #ccc;
  padding: 3px;
  border-radius: 5px;
  box-shadow: inset 1px 2px 4px -3px rgba(0, 0, 0, 0.5);
}

.form-control.long {
  width: 80%;
}

@media (max-width: 750px) {
  .form-control.long {
    width: 100%;
  }
}
textarea {
  width: 60%;
  height: 140px;
}

.button ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.button ul li {
  padding: 5px;
}

.submit, .reset {
  color: #333;
  border: 1px solid #666;
  border-radius: 3px;
  padding: 10px;
  width: 140px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#e2e2e2+0,dbdbdb+50,d1d1d1+51,fefefe+100;Grey+Gloss+%231 */
  background: #e2e2e2; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #e2e2e2 0%, #dbdbdb 50%, #d1d1d1 51%, #fefefe 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#e2e2e2", endColorstr="#fefefe",GradientType=0 ); /* IE6-9 */
  cursor: pointer;
}

.submit {
  color: #fff;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#3b679e+0,2b88d9+50,207cca+51,7db9e8+100;Blue+Gloss+%232 */
  background: #3b679e; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #3b679e 0%, #2b88d9 50%, #207cca 51%, #7db9e8 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#3b679e", endColorstr="#7db9e8",GradientType=0 ); /* IE6-9 */
}

.submit:hover {
  background: #207cca;
}

.reset:hover {
  background: #d1d1d1;
}

select {
  outline: none;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0 12px;
  margin-bottom: 5px;
  border: 1px solid #ccc;
  /*color:#828c9a;*/
  /*width:100%*/
  border-radius: 3px;
}

select option {
  background-color: #fff;
  color: #333;
}

select::-ms-expand {
  display: none;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #828c9a;
}

.select-wrap.select-primary:before {
  color: #fff;
}

.select-wrap.select-primary > select {
  background: #0084B4;
  color: #fff;
  border-color: #0084B4;
}

.select-wrap.select-primary > select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #fff;
}

.select-wrap.select-inverse:before {
  color: #fff;
}

.select-wrap.select-inverse > select {
  color: #fff;
  border-color: #fff;
}

.select-wrap.select-inverse > select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #fff;
}

@media screen and (max-width: 896px) {
  .form-group .flex {
    display: block;
  }
  .form-group .flex.hlf .box {
    width: 100%;
    margin: 0 0 10px;
  }
}
@media (max-width: 750px) {
  .form-group .no {
    width: 95%;
    height: auto;
    padding: 5px 10px;
    font-size: 110%;
    line-height: 1.2;
    float: none;
    text-align: left;
  }
  textarea {
    width: 95%;
  }
}
.form .form-group ul {
  list-style-type: none;
}

/* 完了ページ */
#aq_button a {
  display: block;
  width: 50%;
  margin: 30px auto;
  font-size: 160%;
  color: #ffff00;
  text-align: center;
  padding: 25px;
  border: 4px solid #fff;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#4d94ff+0,0066ff+100 */
  background: rgb(77, 148, 255); /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgb(77, 148, 255) 0%, rgb(0, 102, 255) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#4d94ff", endColorstr="#0066ff",GradientType=0 ); /* IE6-9 */
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4);
  transition: 0.3s;
}

#aq_button a:hover {
  background: #0066ff;
}

@media (max-width: 750px) {
  #aq_button a {
    width: 80%;
    font-size: 145%;
  }
}


/*========= レイアウトのためのCSS ===============*/

#container{
    width:100%;
    height: 100vh;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow:hidden;
}