@charset "utf-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
@media screen and (max-width:640px){

img{
	max-width: 100%;
	height: auto;
	width /***/:auto;
}
.pc_only {
	display: none;
}
.tab_only {
	display: none;
}


/* ------------------------------
 基本
------------------------------ */

* {
	margin: 0;
	padding: 0;
}
html,body{
	width: 100%;
}


html {
	-webkit-text-size-adjust: none;
}
body {
	background-color: #FFF;
	margin: 0 auto;
	font-family: 'Noto Sans JP', sans-serif;
	color: #111;
	text-align: center;
}

li {
	line-height: 2em;
}
table {
	text-align: left;
}
td {
	vertical-align: top;
}
hr {
	clear: both;
}
img {
	border: none;
	vertical-align: middle;
	backface-visibility: hidden;
}
ul {
	margin: 0;
	padding: 0;
}
ol {
	margin: 0;
	padding: 0;
}
article {
	border-top: solid 15px #a52a2a;
}
section {
	width: auto;
	overflow: hidden;
	text-align: left;
}
section p {
	margin: 10px 0;
}
section div.wrapper ul,
section div.wrapper ol {
	margin: 20px 20px 30px 10px;
}
section div.wrapper li {
	margin-bottom: 5px;
}
a {
	transition: all 100ms 0s ease;
}
a:hover {
}

/* ------------------------------
 見出し部分
------------------------------ */

h1 {
	font-size: 10px;
	font-weight: normal;
	margin: 0;
	padding: 0;
}
h2.index {
}
div.h2_bg {
	width: 100%;
	height: 80px;
	background-image:url(../BBT/image/h2.jpg);
	background-repeat: no-repeat;
}
h2.sub {
	font-size: 30px;
	color: #FFF;
	line-height: 80px;
}
h3 {
	clear: both;
}
h4 {
	clear: both;
}


/* ------------------------------
 テキスト関連
------------------------------ */

p.center {
	text-align: center;
	margin: 30px 20px !important;
	clear: both;
}
p.pc_center {
	text-align: center;
	margin: 50px auto !important;
	clear: both;
}
p.p_right {
	text-align: right;
}
span.red {
	color: #E10000;
	font-weight: bold;
}
span.blue {
	color: #fd5f00;
	font-weight: bold;
}
span.bg_y {
	background-image: linear-gradient(transparent 60%, #fcd900 50%);
}
span.bold {
	color: #000000;
	font-weight: bold;
}
span.none {
	display: none;
}
.clear {
	clear: both;
}
.fnt_s {
	font-size: 0.7em;
}
.fnt_l {
	font-size: 1.3em;
}
span.minchou {
	font-family: Times,"Hiragino Mincho ProN",HGS明朝E;
}

/* ------------------------------
 全体
------------------------------ */

div.wrapper {
	width: auto;
	margin: 0 15px;
	text-align: left;
}
section div.wrapper {
	margin: 30px 10px !important;
}
section div {
	overflow: hidden;
	clear: both;
}

.bg01 {
	background-color: #ededed;
}
.bg02 {
	background-color: #543f32;
	color: #FFF;
}
.bg03 {
	background-color: #c1c0c0;
}
.bottom01 {
	margin-bottom: 10px;
}
.bottom02 {
	margin-bottom: 3px;
}
.bottom03 {
	margin-bottom: 60px;
}

/* ------------------------------
 ヘッダー
------------------------------ */

header {
	width: 100%;
	overflow: hidden;
	position: fixed;
	background-color: #FFF;
	z-index: 500;
}
div.header_left {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 50px;
}
div.header_left_logo {
	width: 30%;
}
div.header_left_text {
	width: 68%;
}
div.header_left_text p {
	font-size: 12px;
}
div.header_left_text p span {
	color: #F00;
}
div.header_right {
	text-align: center;
	margin: 20px 10px;
}

/* ------------------------------
 リンクボタン
------------------------------ */

a.button {
	font-size: 14px;
	display: block;
	background-color: #a52a2a;
	border-radius: 2.5em / 2.5em;
	color: #FFF;
	text-decoration: none;
	box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, .3);
	padding: 7px 0;
}
a.button:hover {
	background-color: #bf3030;
}

/* ------------------------------
 メニュー
------------------------------ */

nav {
	display: none;
}
div.slide_menu {
	width: 20%;
	top: 10px;
	right: 20px;
	overflow: visible !important;
	z-index: 999;
}
#fixed {
	position: fixed;
}
#nav-drawer {
	position: relative;
	text-align: left;
	margin: 5px 10px;
}

.nav-unshown {
	display:none;
}

#nav-open {
	display: inline-block;
	height: 50px;
}

#nav-open span {
	position: absolute;
	vertical-align: middle;
	background-color: #57bcdb;
	color: #FFF;
	font-size: 14px;
	padding: 5px 10px;
	cursor: pointer;
	border-radius: 5px;
}

#nav-close {
	display: none;
	position: fixed;
	z-index: 8888;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0;
	transition: .3s ease-in-out;
}

#nav-content {
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 65%;
	max-width: 330px;
	height: 100%;
	background: #fff;
	transition: .3s ease-in-out;
	-webkit-transform: translateX(-105%);
	transform: translateX(-105%);
	font-size: 16px;
}

#nav-input:checked ~ #nav-close {
	display: block;
	opacity: .5;
}

#nav-input:checked ~ #nav-content {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
	box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

#nav-content ul {
	text-align: left;
	margin: 20px 20px;
	list-style: none;
}
#nav-content ul a {
	text-decoration: none;
	color: #000;
	display: block;
	padding: 10px 0;
}
#nav-content ul a:hover {
	background-color: #F5F5F5;
}


/* ------------------------------
 メイン画像
------------------------------ */

div.topimg {
	width: auto;
	margin: 0 auto;
	padding-top: 180px;
}

/* ------------------------------
 ボックス
------------------------------ */

div.box_wrapper {
	width: auto;
	margin: 20px 0;
}

/* ------------------------------
 ボックス01
------------------------------ */

div.box01 {
	width: auto;
	border-bottom: solid 1px #AAA;
}
div.box01_left {
	width: auto;
	font-size: 20px;
	color: #a52a2a;
	font-family: Times,"Hiragino Mincho ProN",HGS明朝E;
}
div.box01_right {
	width: auto;
}
div.box01_right ul {
	color: #a52a2a;
	list-style: none;
	font-family: Times,"Hiragino Mincho ProN",HGS明朝E;
}
div.box01_right ul li {
	background-image:url(image/check.png);
	background-repeat: no-repeat;
	background-position: 0 8px;
	padding-left: 30px;
}

/* ------------------------------
 ボックス02
------------------------------ */

div.box02 {
	width: auto;
	border-top: solid 8px #a52a2a;
	margin: 30px 0;
	background-color: #d3cbc6;
}
div.box_top {
	background-color: #FFF;
	padding: 8px 0 0;
}

div.box_day01 {
	width: auto;
	border-bottom: solid 2px #a52a2a;
	color: #a52a2a;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	font-family: din;
}
div.box_day02 {
	width: auto;
	border-bottom: solid 2px #a52a2a;
	color: #a52a2a;
	font-weight: bold;
	font-size: 1.2rem;
}
div.box_title {
	background-color: #6f514c;
	color: #FFF;
	font-family: Times,"Hiragino Mincho ProN",HGS明朝E;
}

div.box_title p {
	margin: 15px 30px;
	font-size: 24px;
}
div.box_title p span {
	font-size: 16px;
}

div.box_body_height01 {
	width: auto;
}
div.box_body p {
	margin: 15px 30px;
}
div.box_body p.bottom_border {
	border-bottom: solid 2px #FFF;
	padding-bottom: 15px;
}
div.box_body div.bottom_border {
	border-bottom: solid 2px #FFF;
	padding-bottom: 15px;
	margin: 15px 30px;
	display: flex;
	gap: 15px;
	align-self: center;
}

p.button02 {
	text-align: center;
	margin: 30px 30px 30px !important;
}

p.button02 a {
	display: block;
	color: #ffffff;
	background-color: #a52a2a;
	text-decoration: none;
	border-radius: 2.5em / 2.5em;
	padding: 8px 0;
}
p.button02 a:hover {
	background-color: #EEE;
}

/* ------------------------------
 ボックス03
------------------------------ */

div.box03_wrapper {
	background-color: #FFF;
	margin: 30px 0 10px;
}
div.box03 {
	border-top: solid 15px #a52a2a;
	margin: 0 15px;
}
div.box_day03 {
	width: auto;
}
div.box_day03 p span {
	background-color: #000;
	color: #FFF;
	padding: 7px 10px;
}
p.title_size {
	font-size: 24px !important;
}

div.box_text {
	margin: 20px 0;
}
div.box03_left {
	width: auto;
}
div.box03_right {
	width: auto;
}

div.box_body02_wrapper {
	background-color: #d3cbc6;
}
div.box_body02 {
	border-bottom: solid 2px #FFF;
}
div.box_body02 p {
	margin: 15px 30px;
}

span.fnt24 {
	font-size: 20px !important;
}

div.box03_button {
	text-align: center;
	margin: 10px 10px 50px;
	padding-right: 10px;
}

div.photo01 {
	display: none;
}
div.photo01_2 {
	display: none;
}

div.photo02 {
	display: none;
}

div.photo03 {
	display: none;
}
div.photo03_2 {
	display: none;
}

/* ------------------------------
 参加者の声
------------------------------ */

p.midashi {
	text-align: center;
	font-size: 20px;
	margin: 20px auto;
	font-family: Times,"Hiragino Mincho ProN",HGS明朝E;
}

div.impression_wrapper01 {
	margin-bottom: 30px;
}
div.impression_wrapper02 {
	margin-bottom: 30px;
}
div.impression {
	background-color: #FFF;
	border-radius: 0.5em / 0.5em;
	margin-bottom: 15px;
}
div.flex_between div.impression {
	width: auto;
}
div.impression p {
	margin: 30px 30px;
}


div.impression_button div {
	width: auto;
	text-align: center;
	margin: 10px 10px 10px;
	padding-right: 10px;
}

/* ------------------------------
 box04
------------------------------ */

p.midashi02 {
	text-align: center;
	font-size: 20px;
	color: #C1A159;
	margin: 20px auto;
	font-family: Times,"Hiragino Mincho ProN",HGS明朝E;
}
div.box04_wrapper {
	margin: 30px 0;
}
div.box04 {
	width: auto;
	background-color: #C1A159;
	color: #FFF;
	border-radius: 0.5em / 0.5em;
	margin-bottom: 15px;
	font-family: Times,"Hiragino Mincho ProN",HGS明朝E;
}
div.box04 p {
	text-align: center;
	margin: 20px auto;
}
div.box04 p span {
	font-size: 20px;
}
p.midashi03 {
	text-align: center;
	font-size: 24px;
	margin: 40px auto;
	font-family: Times,"Hiragino Mincho ProN",HGS明朝E;
}

div.box04_left {
	width: auto;
	margin-bottom: 20px;
}
div.box04_right {
	width: auto;
}
div.box04_right p {
	margin: 0 0 30px 0;
}

/* ------------------------------
 下段05
------------------------------ */

div.midashi_box {
	width: auto;
	text-align: center;
	margin: 20px auto;
	font-family: Times,"Hiragino Mincho ProN",HGS明朝E;
}
div.midashi_box p {
	font-size: 24px;
}
div.link05 {
	margin: 10px auto 30px;
	text-align: center;
	padding: 0 10px 30px;
}
div.link05 a {
	display: block;
	background-color: #a52a2a;
	border-radius: 2.5em / 2.5em;
	color: #FFF;
	text-decoration: none;
	box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, .3);
	padding: 10px 0;
}
div.link05 a:hover {
	background-color: #00A1FC;
}

div.box05_wrapper {
	margin: 30px 0;
}
p.box05_midashi {
	font-size: 24px;
	font-family: Times,"Hiragino Mincho ProN",HGS明朝E;
}
div.box05_left {
	width: auto;
}
div.box05_left img {
	margin-top: 20px;
}
div.box05_right {
	width: auto;
}
div.box05_right img {
	margin-top: 40px;
}

/* ------------------------------
 最下段
------------------------------ */

div.bottom {
	width: auto;
}
div.bottom a {
	display: block;
	background-color: #a52a2a;
	border-radius: 2.5em / 2.5em;
	color: #FFF;
	text-decoration: none;
	box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, .3);
	padding: 10px 0 10px 30px;
	margin-right: 20px;
}
div.bottom a:hover {
	background-color: #00A1FC;
}

/* ------------------------------
 パンくず、トップ
------------------------------ */

div.pagetop {
	width: 100%;
	margin: 0;
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 999;
	pointer-events: none;
	font-size: 14px;
	text-align: right;
}
div.pagetop a {
	background-color: #FFF;
	padding: 10px 15px;
	border: solid 1px #DDD;
	text-decoration: none;
	color: #111;
	pointer-events: auto;
}


/* ------------------------------
 フッター
------------------------------ */

footer {
	width: auto;
	overflow: hidden;
	font-size: 12px;
	padding: 40px 0 60px;
	margin: 0 0 0;
	color: #FFF;
	background-color: #222222;
}
div.footer_logo {
	width: auto;
}
div.footer_text {
	width: auto;
}
div.footer_text p {
	margin: 15px 0;
}
div.footer_copy {
	width: auto;
}

footer ul {
	list-style: none;
	margin: 20px 0;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	border-left: solid 1px #aaa;
}
footer li {
	padding: 0 10px;
	border-right: solid 1px #aaa;
}
footer a {
	color: #FFF;
	text-decoration: none;
}
	/* ------------------------------
 ページ内リンク調整用
------------------------------ */
.link_adjustment {
    padding-top: 130px;
    margin-top:-130px;
}


}