@charset "utf-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');

html{
	scroll-behavior: smooth;
	}

div,p,li,header,footer{
	box-sizing: border-box;
	}
img{
	border : 0px;
	vertical-align: bottom;
	}

/* リンク */
a:link { color: #353535; text-decoration : none;} 
a:visited { color: #353535; text-decoration : none;} 
a:hover { color: #353535; text-decoration : none;} 
a:active { color: #353535; text-decoration : none;} 
a:focus{ outline:none;}

.ce{
	text-align : center;
	}
.aligncenter{
	text-align : center;
	margin: 0 auto;
	display: block;
	}
.rr{
	text-align : right;
	}
.ll{
	text-align : left;
	}

.alignright{
	float: right;
	margin-left: 20px;
	}
.alignleft{
	float: left;
	margin-right: 20px;
	}

p{
	margin : 0;
	}

.mb10{margin-bottom: 10px;}
.mb20{margin-bottom: 20px;}
.mb30{margin-bottom: 30px;}
.mb40{margin-bottom: 40px;}
.mb50{margin-bottom: 50px;}


form{
	margin : 0;
	}
input,select,button{
	margin : 0 0 10px 0;
	}
table{
	text-align: left;
	border-collapse: collapse;
	width: 100%;
	}
ul,ol,li,dl,dt,dd,td,tr{
	margin : 0;
	padding : 0;
	list-style: none;
	}







body{
	font-family: 'Noto Sans JP', "Hiragino Kaku Gothic Pro","ヒラギノ角ゴシック Pro", "メイリオ", Meiryo, Osaka, sans-serif;
    font-style: normal;
    font-weight: 400;
	font-size: 14px;
	line-height: 2;
	color: #000;
	margin: 0 auto;
	padding: 0;
	}



/***********************文字サイズ調整**********************/

/* デフォルト（中） */
body.font-medium{
	font-size: 14px;
	}
body.font-medium ul#mainnav li a{
	font-size: 16px;
	}

/* 小 */
body.font-small{
	font-size: 12px;
	}
body.font-small ul#mainnav li a{
	font-size: 12px;
	}

/* 大 */
body.font-large{
	font-size: 18px;
	}
body.font-large ul#mainnav li a{
	font-size: 18px;
	}





header{
	display: flex;
	justify-content: space-between;
	padding: 5px 10px 5px 40px;
	width: 100%;
	min-width: 1000px;
	text-align: left;
	border-bottom: solid 1px #cecece;
	}
header h1{
	margin: 0;
	font-weight: bold;
	font-size: 14px;
	}
header h2{
	margin: 5px 0 0 0;
	display: flex;
	justify-content: left;
	align-items: center;
	gap: 5px;
	font-size: 30px;
	font-family: 'Noto Serif JP','游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
	}

header #font-size-controls{
	font-size: 12px;
	}
header #font-size-controls button{
	border: solid 1px #000;
	background: #fff;
	border-radius: 5px;
	cursor: pointer;
	font-size: 12px;
	padding: 2px 5px 3px 5px;
	}
header #font-size-controls button:first-child{
	margin: 0 0 0 5px;
	}
header #font-size-controls button.active {
	background: #000;
	color: #fff;
	border-color: #000;
	}


ul#mainnav{
	display: flex;
	justify-content: center;
	min-width: 1000px;
	gap: 20px;
	font-weight: 700;
	border-bottom: solid 1px #cecece;
	border-top: solid 1px #cecece;
	padding: 10px 0;
	position: sticky;
	top: 0;
	z-index: 9999;
	background: #fff;
	}
ul#mainnav li a{
	transition: 0.2s;
	font-size: 16px;
	}
ul#mainnav li a:hover{
	color: #61951d;
	transition: 0.2s;
	}



footer{
	padding: 40px 0 10px 0;
	text-align: center;
	border-top: solid 1px #dedede;
	}
footer h2{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	font-size: 18px;
	font-family: 'Noto Serif JP','游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
	margin: 0;
	}
footer h2 img{
	width: 42px;
	}
footer ul.nav{
	display: flex;
	justify-content: center;
	gap: 20px;
	font-size: 14px;
	margin: 30px 0 0 0;
	font-weight: bold;
	}
footer ul.nav li a{
	transition: 0.2s;
	}
footer ul.nav li a:hover{
	color: #61951d;
	transition: 0.2s;
	}


footer ul.sns{
	display: flex;
	justify-content: center;
	gap: 40px;
	font-size: 18px;
	margin: 30px 0 0 0;
	font-weight: bold;
	}
footer ul.sns li a{
	display: flex;
	justify-content: left;
	gap: 5px;
	padding: 6px;
	border-radius: 5px;
	}
footer ul.sns li img{
	width: 30px;
	}


#copy{
	background: #5a5a5a;
	color: #fff;
	font-size: 12px;
	text-align: center;
	padding: 10px 0;
	}
#copy h2{
	font-size: 12px;
	margin: 0;
	font-weight: normal;
	}



.scroll-top{
	position: fixed;
	bottom: 14px;
	right: 20px;
	width: 38px;
	height: 38px;
	cursor: pointer;
	display: none;
	z-index: 9999;
	}
.scroll-top:hover{
	bottom: 30px;
	transition: 0.2s;
	}






/*animation*/
#kv .fade1{
	opacity: 0;
	animation: fadeIn 1.5s forwards;
	}
#kv .fade2{
	opacity: 0;
	animation: fadeIn 1s 1s forwards;
	}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}



.amt.fadeup{
	opacity: 0;
	transition-duration: .5s;
	transform: translateY(100px);
	}
.amt.fadeup.active{
	opacity: 1;
	transform: translateY(0px);
	}

.amt.zoom{
	opacity: 0;
	transition-duration: .5s;
	transform:scale(0.2);
	}
.amt.zoom.active{
	opacity: 1;
	transform:scale(1);
	}



	
#breadcrumb{
	background: #f0f0f0;
	font-size: 14px;
	}
#breadcrumb ul{
	width: 1000px;
	margin: 0 auto;
	padding: 5px 0;
	display: flex;
	justify-content: left;
	gap: 10px;
	}
#breadcrumb a{
	color: #61951d;
	}
#all{
	padding: 120px 0;
	background: #faf9ec;
	}
#main{
	width: 1000px;
	margin: 0 auto;
	}
#main img{
	max-width: 1000px;
	}
	.block{
		margin: 0 0 80px 0;
		}

.block a:hover{color: #61951d; text-decoration : underline !important;}
.block a:link{color: #61951d; text-decoration : none;} 
.block a:visited { color: #61951d;} 
.block a:active { color: #61951d;} 

#page_title{
	border-top: solid 1px #cecece;
	border-bottom: solid 1px #cecece;
	background: url('https://kanchu.tokyo/wp-content/themes/hakuyo_theme/img/common/main.jpg') no-repeat;
	}
#page_title h2{
	margin: 65px auto;
	font-size: 32px;
	text-align: center;
	line-height: 1.4;
	font-weight: normal;
	color: #fff;
	}

h3.title{
	border-bottom: solid 1px #000;
	text-align: left;
	font-size: 24px;
	font-weight: normal;
	}













/* index */

#index_kv{
	min-width: 1000px;
	position: relative;
	top: 0;
	background: #faf9ec;
	}
#index_kv .image {
  position: relative;
  height: 492px;
	width: 1000px;
	margin: 0 auto;
	display: block;
}

#index_kv .image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 4s ease-in-out;
}

.sketch { opacity: 1; }
.photo { opacity: 0; }
.photo.show { opacity: 1; }



#index_kv .text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	font-family: 'Noto Serif','游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
	font-weight: 100;
	font-size: 2.0vw;
	color: #000;
	line-height: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	}



#index_main{
	width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	gap: 8%;
	}
#index_main #info{
	width: 46%;
	}
#index_main #info ul li{
	border-bottom: solid 1px #c8c8c8;
	padding: 20px 0;
	}
#index_main #info ul li .info-title{
	font-size: 120%;
	font-weight: bold;
	}
#index_main #info ul li a{
	color: #61951d;
	}
#index_main #info ul li a:hover{
	text-decoration: underline;
	}
#index_main #other{
	width: 46%;
	}
#index_main #other .event{
	margin: 0 0 150px 0;
	}
#index_main #other .event ul{
	}
#index_main #other .event ul li{
	border-bottom: solid 1px #c8c8c8;
	padding: 20px 0;
	}
#index_main #other .event ul li .info-title{
	font-size: 120%;
	font-weight: bold;
	margin: 0 0 20px 0;
	}
#index_main #other .event ul li .image{
	width: 140px;
	}
#index_main #other .event ul li .text .lead{
	color: #61951d;
	font-size: 16px;
	font-weight: bold;
	}
#index_main #other .event ul li .text p{
	margin: 0 0 20px 0;
	}

#index_main #other .gallery li{
	margin: 0 auto 30px;
	}
#index_main #other .gallery img{
	width: 60%;
	margin: 0 auto;
	display: block;
	}


#index_main .title{
	margin: 0 0 30px 0;
	border-bottom: solid 1px #c8c8c8;
	display: flex;
	justify-content: space-between;
	align-items: center;
	}
#index_main .title h3{
	color: #c3d075;
	font-size: 30px;
	font-weight: normal;
	margin: 0;
	padding: 0 0 15px 0;
	}
#index_main .title h3 span{
	color: #000;
	font-size: 18px;
	margin: 0 0 0 10px;
	}
#index_main .title .btn a{
	display: block;
	border: solid 1px #c3d075;
	border-radius: 50px;
	background: #c3d075;
	color: #fff;
	position: relative;
	padding: 5px 50px;
	transition: 0.5s;
	font-size: 16px;
	white-space: nowrap;
	}
#index_main .title .btn a:hover{
	background: #fff;
	color: #c3d075;
	}
#index_main .title .btn a:after{
	content: "";
	width: 10px;
	height: 10px;
	border-bottom: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: rotate(-45deg);
	position: absolute;
	right: 15px;
	top: 15px;
	transition: 0.5s;
	}
#index_main .title .btn a:hover:after{
	border-bottom: solid 2px #c3d075;
	border-right: solid 2px #c3d075;
	}



/* お知らせ一覧 */

ul.information li{
	border-bottom: solid 1px #c8c8c8;
	padding: 20px 0;
	}
ul.information li .info-title{
	font-size: 120%;
	font-weight: bold;
	}




/* 白楊だより一覧 */

ul.hakuyoudayori-list{
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
	gap: 1.3%;
	margin: 50px 0 0 0;
	}
ul.hakuyoudayori-list li{
	width : 24%;
	border: solid 1px #ccc;
	padding: 20px 20px 10px 20px;
	background: #fff;
	border-radius: 5px;
	margin: 0 0 1.3% 0;
	line-height: 1.2;
	}
ul.hakuyoudayori-list li img{
	width : 100%;
	margin: 0 0 10px 0;
	}
ul.hakuyoudayori-list li img:hover{
	opacity: 0.8;
	}


/* 白楊だより個別記事 */
	
.hakuyoudayori{
	margin: 0 0 150px 0;
	}
.hakuyoudayori .data{
	display: flex;
	justify-content: space-between;
	margin: 50px 0;
	}
.hakuyoudayori .data .image{
	width: 20%;
	}
.hakuyoudayori .data .image img{
	width: 100%;
	}
.hakuyoudayori .data .image .pdf{
	background: url('https://kanchu.tokyo/wp-content/themes/hakuyo_theme/img/common/pdf.png') no-repeat left center;
	padding: 0 0 0 35px;
	margin: 10px 0 0 0;
	}
.hakuyoudayori .data .contents{
	width: 70%;
	}
.hakuyoudayori .back{
	text-align: center;
	}



/* W杯観戦記 */

.wcup_lead{
	font-size: 160%;
	font-weight: bold;
	color: #1c4587;
	text-align: center;
	margin: 0 0 50px 0;
	}
.wcup_lead p{
	margin: 0 0 20px 0;
	}

.wcup_block{
	display: flex;
	justify-content: space-between;
	margin: 0 0 80px 0;
	}
.wcup_block p{
	margin: 0 0 20px 0;
	}
.wcup_block .text{
	width: 65%;
	text-align: justify;
	}
.wcup_block .text h3{
	border-left: solid 6px #000;
	line-height: 1.6;
	font-size: 140%;
	padding: 0 0 0 10px;
	margin: 0 0 20px 0;
	}
.wcup_block .text img{
	width: 100%;
	}
.wcup_block .image{
	width: 30%;
	text-align: center;
	}
.wcup_block .image img{
	width: 100%;
	}


/* 会員のページ */
.philosophy img{
	margin: 0 auto;
	width: 80%;
	display: block;
	}










/* ページネーション */
/* ページネーション全体を中央寄せ */
.pagination {
  text-align: center;
  margin-top: 40px;
}

/* ナビゲーション内部のリンクリスト */
.pagination .nav-links {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* 各ページ番号ボタンのスタイル */
.pagination .page-numbers {
  display: inline-block;
  padding: 5px 14px;
  background-color: #f0f0f0;
  color: #333;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.2s, color 0.2s;
}

/* 現在のページ */
.pagination .current {
  background-color: #c3d075;
  color: #fff;
  pointer-events: none;
}

/* ホバーエフェクト */
.pagination .page-numbers:hover:not(.current) {
  background-color: #c3d075;
  color: #fff;
}

/* 「次へ」や「前へ」ボタン */
.pagination .next,
.pagination .prev {
  font-weight: bold;
}







/* link.html */

ul.link{
	border-top: solid 1px #ccc;
	padding: 20px 0 0 0;
	}
ul.link li{
	margin: 0 0 20px 0;
	padding: 0 0 20px 0;
	border-bottom: solid 1px #ccc;
	}
ul.link li .title{
	font-size:  140%;
	font-weight: bold;
	}
ul.sponsor li a{
	display: flex;
	gap: 20px;
	}
ul.sponsor li a .bnr{
	width: 150px;
	}
ul.sponsor li a .bnr img{
	max-width: 100% !important;
	}



/* bukkosha.html */
.bukkosha{
	display: flex;
	justify-content: space-between;
	margin: 0 0 40px 0;
	}
.bukkosha p{
	width: 50%;
	}



/* kouka.html */
.kouka{
	display: flex;
	justify-content: space-between;
	margin: 0 0 40px 0;
	}
.kouka div{
	width: 50%;
	}
.kouka div img{
	width: 88px;
	}
	


/* kouka_column.html */
#column1 h3.title,
#column2 h3.title,
#column3 h3.title{
	padding: 50px 0 0 0;
	margin: -50px 0 0 0;
	}



/* contact */


.contact_list{
	display: flex;
	justify-content: left;
	gap: 2%;
	flex-wrap: wrap;
	margin: 50px 0 0 0;
	}
.contact_list li{
	width: 32%;
	margin: 0 0 2% 0;
	background: #fff;
	border: solid 1px #ccc;
	padding: 25px;
	border-radius: 5px;
	}
.contact_list li .title{
	margin: 0 0 20px 0;
	border-left: solid 5px #000;
	font-size: 120%;
	font-weight: bold;
	line-height: 1.2;
	padding: 0 0 0 10px;
	}
.contact_list li a{
	display: block;
	border: solid 1px #c3d075;
	border-radius: 50px;
	background: #c3d075;
	color: #fff !important;
	position: relative;
	padding: 5px;
	text-align: center;
	transition: 0.5s;
	font-size: 16px;
	white-space: nowrap;
	margin: 20px 0 0 0;
	width: 100%;
	}
.contact_list li a:hover{
	background: #fff;
	color: #c3d075 !important;
	text-decoration: none !important;
	}
.contact_list li a:after{
	content: "";
	width: 10px;
	height: 10px;
	border-bottom: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: rotate(-45deg);
	position: absolute;
	right: 15px;
	top: 15px;
	transition: 0.5s;
	}
.contact_list li a:hover:after{
	border-bottom: solid 2px #c3d075;
	border-right: solid 2px #c3d075;
	}



.data_table{
	width: 100%;
	margin: 50px 0;
	}
.data_table th{
	border-bottom: solid 1px #ccc;
	vertical-align: top;
	padding: 35px 0;
	width: 20%;
	}
.data_table td{
	border-bottom: solid 1px #ccc;
	padding: 35px 0;
	}


	.kiyaku_box{
		overflow : auto;
		height : 200px;
		border : solid 1px #cdcdcd;
		margin : 0 0 30px 0;
		background : #fff;
		}
	.kiyaku_box .text{
		padding : 25px;
		}
	.kiyaku_box .text ol{
		list-style : decimal;
		padding : 0 0 0 15px;
		}
	.kiyaku_box .text ol li{
		margin : 0 0 10px 0;
		}
	.kiyaku_box .text .title{
		font-size : 18px !important;
		border-bottom : solid 1px #cdcdcd;
		}
	.kiyaku_box .text p{
		margin : 0 0 15px 0;
		}


table.data_table .req {
	background: #ff6600;
	padding: 2px 5px;
	font-size: 10px;
	color: #fff;
	border-radius: 3px;
	-webkit-radius: 3px;
	-moz-border-radius: 3px;
	}
table.data_table input[type=text],
table.data_table input[type=tel],
table.data_table input[type=email],
table.data_table textarea{
	margin : 5px 0;
	padding : 10px;
	border-radius : 5px;
	border: solid 1px #ccc;
	width : 500px;
	}
table.data_table select{
	margin : 5px 0;
	padding : 10px;
	}
	
form h2{
	border-bottom: solid 1px #000;
	font-size: 24px;
	text-align: left;
	margin: 0 0 30px 0;
	font-weight: bold;
	}
	.btn01{
		background : #ff811b;
		border : none;
		color : #fff;
		font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
		padding : 10px 0;
		width : 300px;
		font-size : 16px;
		cursor : pointer;
		margin: 0 auto;
		display: block;
		}
	.btn01:hover{
		background : #ffad6a;
		}
	.btn02{
		background : #a4a4a4;
		border : none;
		color : #fff;
		font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
		padding : 10px 0;
		width : 200px;
		font-size : 12px;
		cursor : pointer;
		}
	.btn02:hover{
		background : #cecece;
		}










/********************************************************************************************************************************************************************************/
@media screen and (min-width: 950px) {
/********************************************************************************************************************************************************************************/

a[href^="tel:"] { pointer-events: none; color:#000;}



	.sp{
		display : none;
		}

#sp_menu{
	display : none;
	}








/********************************************************************************************************************************************************************************/
}
@media screen and (max-width: 949px) {
/********************************************************************************************************************************************************************************/


	.pc{
		display : none;
		}

img{
	max-width: 100%;
	}
#main img{
	max-width: 100%;
	}
	
body{
	color : #353535;
	font-size : 16px;
	padding: 0;
	margin: 0;
	}


#sp_menu{
	display : block;
	}






/* メニューボタン */

.menu_btn{
    position: fixed;
    top: 8px;
    right: 10px;
    display: flex;
    height: 40px;
    width: 40px;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    background: #61951d;
    border-radius: 5px;
	}
.menu_btn span,
.menu_btn span:before,
.menu_btn span:after{
	transition: all .4s;
    content: '';
    display: block;
    height: 2px;
    width: 20px;
    border-radius: 3px;
    background: #ffffff;
    position: absolute;
	}
.menu_btn span:before{
    bottom: 6px;
	}
.menu_btn span:after{
    top: 6px;
	}


#menu_btn_check:checked ~ .menu_btn{
    background: #fff;
	}

#menu_btn_check:checked ~ .menu_btn span{
    background-color: rgba(255, 255, 255, 0);
	}
#menu_btn_check:checked ~ .menu_btn span::before{
    background: #61951d;
    bottom: 0;
    transform: rotate(495deg);
	}
#menu_btn_check:checked ~ .menu_btn span::after{
    background: #61951d;
    top: 0;
    transform: rotate(-495deg);
	}

#menu_btn_check{
    display: none;
	}

#menu_btn_check:checked ~ .content{
    left: 0;
	}



#sp_menu .content {
    width: 100%;
    height: 100%;
    position: fixed;
    overflow: auto;
    top: 0;
    left: 100%;
    z-index: 2;
    background-color: rgb(97,149,29,0.96);
    transition: all 0.5s;
    color: #fff;
    padding: 0 20px;
	}
#sp_menu .content ul {
    padding: 50px 0 0 0;
	}
#sp_menu .content ul:first-child li {
    border-bottom: solid 1px #fff;
    list-style: none;
	}
#sp_menu .content ul:first-child li a{
    display: block;
    width: 100%;
    font-size: 18px;
    box-sizing: border-box;
    color: #fff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
	}

#sp_menu #font-size-controls{
	font-size: 16px;
	display: flex;
	justify-content: center;
	margin: 20px 0 0 0;
	}
#sp_menu #font-size-controls button{
	border: solid 1px #000;
	background: #fff;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
	margin: 0 0 0 5px;
	}
#sp_menu #font-size-controls button:first-child{
	margin: 0 0 0 5px;
	}
#sp_menu #font-size-controls button.active {
	background: #000;
	color: #fff;
	border-color: #000;
	}


/* デフォルト（中） */
body.font-medium{
	font-size: 14px;
	}
body.font-medium #sp_menu .content ul:first-child li a{
	font-size: 16px;
	}

/* 小 */
body.font-small{
	font-size: 12px;
	}
body.font-small #sp_menu .content ul:first-child li a{
	font-size: 14px;
	}

/* 大 */
body.font-large{
	font-size: 18px;
	}
body.font-large #sp_menu .content ul:first-child li a{
	font-size: 18px;
	}



.scroll-top{
	bottom: 10px;
	right: 10px;
	width: 38px;
	height: 38px;
	}
.scroll-top:hover{
	bottom: 10px;
	}








header{
	display: block;
	padding: 5px 10px 5px 10px;
	min-width: 100%;
	}
header h1{
	font-size: 12px;
	line-height: 1.4;
	}
header h2{
	justify-content: center;
	font-size: 24px;
	}
header h2 img{
	width: 40px;
	}

header #font-size-controls{
	display: none;
	}

ul#mainnav{
	display: none;
	}



footer{
	padding: 15px 0;
	}
footer h2{
	display: none;
	}
footer ul.nav{
	display: none;
	}


footer ul.sns{
	font-size: 14px;
	margin: 0;
	}
footer ul.sns li a{
	align-items: center;
	padding: 0px;
	line-height: 0;
	}
footer ul.sns li img{
	width: 20px;
	}





	
#breadcrumb{
	font-size: 12px;
	padding: 0 10px;
	}
#breadcrumb ul{
	width: 100%;
	}
#all{
	padding: 50px 0;
	}
#main{
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	}
	.block{
		margin: 0 0 40px 0;
		}

#page_title h2{
	font-size: 18px;
	margin: 20px 0;
	}

h3.title{
	font-size: 18px;
	}






/* index */

#index_kv{
	min-width: 100%;
	position: relative;
	top: 0;
	}
#index_kv .image {
  position: relative;
  width: 100%;
  height: 400px;
}

#index_kv .image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 4s ease-in-out;
}

#index_kv .text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	font-family: 'Noto Serif','游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
	font-weight: 100;
	font-size: 2.0vw;
	color: #000;
	line-height: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	}



#index_main{
	width: 100%;
	display: block;
	padding: 0 20px;
	}
#index_main #info{
	width: 100%;
	margin: 0 0 100px 0;
	}
#index_main #info ul li{
	padding: 15px 0;
	}
#index_main #other{
	width: 100%;
	}
#index_main #other .event{
	margin: 0 0 100px 0;
	}
#index_main #other .event ul li .image{
	width: 200px;
	}

#index_main #other .gallery{
	margin: 0 0 100px 0;
	}
#index_main #other .gallery img{
	width: 50%;
	}


#index_main .title{
	margin: 0 0 20px 0;
	}
#index_main .title h3{
	font-size: 24px;
	padding: 0 0 5px 0;
	}
#index_main .title h3 span{
	font-size: 14px;
	}
#index_main .title .btn a{
	padding: 3px 50px;
	font-size: 14px;
	}





/* 白楊だより一覧 */

ul.hakuyoudayori-list{
	gap: 2%;
	margin: 30px 0 0 0;
	}
ul.hakuyoudayori-list li{
	width : 49%;
	padding: 10px;
	margin: 0 0 2% 0;
	}


/* 白楊だより個別記事 */
	
.hakuyoudayori{
	margin: 0 0 100px 0;
	}
.hakuyoudayori .data{
	display: block;
	}
.hakuyoudayori .data .image{
	width: 70%;
	margin: 0 auto 50px;
	}
.hakuyoudayori .data .image img{
	width: 100%;
	}
.hakuyoudayori .data .image .pdf{
	background: url('https://kanchu.tokyo/wp-content/themes/hakuyo_theme/img/common/pdf.png') no-repeat left center;
	padding: 0 0 0 35px;
	margin: 10px 0 0 0;
	}
.hakuyoudayori .data .contents{
	width: 100%;
	}




/* W杯観戦記 */

.wcup_lead{
	font-size: 120%;
	}

.wcup_block{
	display: block;
	margin: 0 0 80px 0;
	}
.wcup_block .text{
	width: 100%;
	}
.wcup_block .image{
	width: 100%;
	}





/* お知らせ一覧 */

ul.information li .info-content img{
	max-width: 100% !important;
	}






/* bukkosha.html */
.bukkosha{
	display: block;
	margin: 0 0 40px 0;
	}
.bukkosha p{
	width: 100%;
	}




/* kouka.html */
.kouka{
	display: block;
	margin: 0 0 40px 0;
	}
.kouka div{
	width: 100%;
	margin: 0 0 100px 0;
	}
.kouka div img{
	width: 100px;
	}
	




/* link.html */

ul.sponsor li a .bnr{
	width: 100px;
	}




/* contact */


.contact_list{
	display: block;
	margin: 30px 0 0 0;
	}
.contact_list li{
	width: 100%;
	margin: 0 0 30px 0;
	}


.data_table{
	margin: 20px 0;
	}
.data_table th{
	display: block;
	width: 100%;
	border-bottom: none;
	padding-bottom: 0;
	}
.data_table td{
	display: block;
	width: 100%;
	border-top: none;
	padding-top: 0;
	}


table.data_table input[type=text],
table.data_table input[type=tel],
table.data_table input[type=email],
table.data_table textarea{
	width : 90%;
	}



	.kiyaku_box{
		overflow : auto;
		height : 200px;
		border : solid 1px #cdcdcd;
		margin : 0 0 30px 0;
		background : #fff;
	box-sizing: border-box;
		}
	.kiyaku_box .text{
		padding : 15px;
		}










































/********************************************************************************************************************************************************************************/
}
/********************************************************************************************************************************************************************************/

