@charset "utf-8";
* {margin:0; padding:0; box-sizing:border-box;}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
	}
h1, h2, h3, h4, h5, h6, p, address,
ol, dl, dt, dd,
caption, img, form {
		margin: 0;
		padding: 0;
		border: none;
		font-style: normal;
		font-weight: normal;
		text-align: left;
		font-family: "BIZ UDPGothic", sans-serif !important;
	}
caption, th{
    	text-align:left;
	}
h1,h2,h3,h4,h5,h6 {
		font-size:100%;
		font-weight:normal;
	}
textarea { font-size: 100%; }
img {width: 100%; height: auto; vertical-align: bottom;border:0px;}
table{border-collapse:collapse;border-spacing:0;}
a{
	text-decoration: none;
	color: #000;
}
a:hover{
	color: #000;
}
button{
	border: 0;
	background-color: #fdd9ad00;
	transition: .5s;
}
button:hover{
	background-color: #b99e6e;
}
body{
	position: relative;
	background-color: #ffffff;
    background-image: url(../img/bg_img.png);
    background-repeat: repeat-x;
    background-position: center bottom;
    background-size: contain;
    background-attachment: fixed;
}

/* 共通項目 */

h1{
	font-size: 30px;
	font-weight: 700;
	width: 90%;
	margin: 0 auto;
	margin-bottom: 30px;
}
h1::after{
	content: url(../img/kabosu.png);
	margin-left: 5px;
}

h2{
	font-size: 17px;
	font-weight: 700;
	background-color: #d6f1a9;
	width: 90%;
	padding: 10px;
	margin: 0 auto;
	margin-bottom: 20px;
	color: #363636;
	font-family: "BIZ UDPGothic", sans-serif;
}
h2::before{
	content: "　";
	border-right: 3px solid #8b8df1;
	margin-right: 5px;
}
.top_right{
	min-width: 375px;
	width: 100%;
	height: fit-content;
	min-height: 250px;
	background-color: #fff8ec;
	background: linear-gradient(180deg,#fff8ec 0%, #faefde 97%, #fff7e2 100%);
}

.pc-disp{
	display: none;
}
.sp-disp{
	display: block;
}
/*CLEARFIX*/
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
	}
 
.clearfix:after {
    clear: both;
}
 
.clearfix {
    zoom: 1; /* for IE 6/7 only */
	overflow:hidden;/* for DreamWeaver */
}
.wrapper{
	/* min:iphoneSEサイズ */
	min-width: 375px;
	background-color: #fff8ec;
}
/* header領域 */
.header {
	width: 100%;
	height: 13vh;
	/* background-image: url(../img/header_img.png); */
	background-size: contain;
	background-position: center;
	background-color: #fdd9ad;
	background-repeat: no-repeat;
	padding: 20px;
	/* background-color: #bbd06c; */
	background: linear-gradient(-180deg,#f5e3b8 0%, #faefde 80%, #fff8ec 100%);
}
.header p{
	font-family: "BIZ UDPGothic", sans-serif;
	line-height: 0px;
}
.hd-title-logo{
	font-weight: 700;
	text-align: center;
	letter-spacing: 2px;
	line-height: 15px;
	font-size: 22px;
	font-weight: 700;
	color: #bc5768;
	-webkit-text-stroke: 2px #ffffff;
	paint-order: stroke;
	z-index: 100;
}
.hd-title-logo-jp{
	line-height: 23px;
}
.hd-title-logo-en{
	line-height: 10px;
	font-size: 9px;
	color: #ff9faf;
}
/* .hd-title-logo-bg{
	position: absolute;
	font-size: 22px;
	color: #fff;
	font-weight: 700;
	text-shadow: 2px 2px 30px #feffb3 ,
			-2px 2px 30px #feffb3 ,
			2px -2px 30px #feffb3 ,
			-2px -2px 30px #feffb3;
} */

header img{
	width: 30px;
	height: auto;
}
.header a{
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

body{
	background-color: #ffffff;
}
.g-nav-menu{
	text-align: end;
	position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}
.g-nav-menu ul{
	height: 0;
	position:absolute;
    overflow: hidden;
    transition: .3s;
    list-style:none;
	background-color:#f7dab3;
	width: 100%;
	/* right: 86%; */
}

.g-nav-menu li{
	margin: 30px auto;
	display: flex;
	justify-content: center;
	font-size: 20px;
}
.g-nav-menu li div{
	text-align: center;
}
.g-nav-menu li div h3{
	text-align: center;
}
.g-nav-menu li p{
	font-size: 13px; 
	color:#ef080c;
	margin-top: 10px;
	font-weight: normal;
	text-align: center;
	line-height: 20px;
}

/* hamburger start */
.hbgBtn {
    position: fixed;
    top: 32px;
    right:32px;
    cursor: pointer;
    width: 32px;
    height: 24px;
    z-index: 99999;
}
.hbgBtn span {
    /*3本の線を作る*/
    transition: all .3s;
    position: absolute;
    height: 2px;
    background-color: #333;
    width:100%;
    z-index: 99999;
	left: 0;
}
.hbgBtn .open{
	background-color:#f7dab3;
}
.hbgBtn span:nth-of-type(1) {
    /*上の線の位置*/
    top: 4px;
}
.hbgBtn span:nth-of-type(2) {
    /*真ん中の線の位置*/
    top: 12px;
}
.hbgBtn span:nth-of-type(3) {
    /*下の線の位置*/
    top: 20px;
}
.hbgBtn.open span:nth-of-type(1) {
    /*openのとき、上の線を右斜めにする*/
    top: 10px;
    transform: translateY(6px) rotate(-33deg);
}
.hbgBtn.open span:nth-of-type(2) {
    /*真ん中の線を消す*/
    opacity: 0;
}
.hbgBtn.open span:nth-of-type(3) {
    /*下の線を左斜めにする*/
    top: 22px;
    transform: translateY(-6px) rotate(33deg);
}
/* hamburger end */

.go-top{
	position: fixed;
    bottom: 10px;
	right: 2px;
    width: 50px;
	height: 50px;
    text-align: center;
    background: #f18c0e;
	opacity: 0.6;
	z-index: 999;
}
/* main領域 */
main{
	max-width: 1200px;
	margin: 0 auto;
	background-color: #fff;
}
.top-left{
	display: none;
}
.top-news{
	margin-bottom: 20px;
}
.top-news h3{
	text-align: center;
	margin: 0 auto;
	font-size: 23px;
}
.news_sec{
	width: 89%;
	height: 40vh;
	margin: 0 auto;
	overflow: auto;
	text-align: left;
	padding: 20px;
	border-radius: 10px;
	background-color: #fffbf5;
}
.news_date{
	color: #3d3d3d;
	font-family: "Sawarabi Gothic", sans-serif;	
	font-size: 12px;
}
.news_text{
	color: #3d3d3d;
	font-family: "Sawarabi Gothic", sans-serif;	
	font-size: 14px;
}
.news_text div:after{
	border-bottom: 1px solid #000;

}
.top_mainimg{
	margin: 0 auto 20px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
.top_mainimg img{
	width: 77%;	
}

.sub_head_under1_smart{
	min-width: 269px;
	width: fit-content;
	margin: 0px auto;
	background-color: #ffffffcc;
	padding: 20px 30px;
	border-radius: 15px;
}
.sub_head_under1_smart h4 a{
	color: #9d8943;
}

.title-s{
	font-size: 15px;
}

.sut{
	color: #095694;
}
.sun{
	color: #940909;
}
.footer{
	font-family: "Zen Maru Gothic", sans-serif;
	/* background-image: url(../img/roukan_31_footer_sp.png); */
	background-image: url(../img/footer_img.png);
	background-position: center;
	background-size: inherit;
	background-repeat: no-repeat;
	background-color: #fff7e2;
	min-width: 375px;
	overflow: hidden;
	height: 440px;
	padding: 30px;
}
.footer h4{
	font-size: 14px;
}
.footer p{
	font-size: 11px;
	line-height: 16px;
}
.foot_end{
	font-size: 5px;
	display: flex;
	justify-content: end;
	margin-top: 10px;
}
.parts{
	margin-bottom: 20px;
}
.top_right .parts:last-child{
	margin-bottom: 0;
}
/* 挨拶 */
.aisatsu dt,dd{
	padding: 0 50px;
	line-height: 27px;
}
.aisatsu dd{
	text-align: end;
}
.gakkai_list{
	font-family: "BIZ UDPGothic", sans-serif;
	margin: 0 auto;
	width: 80%;
    min-width: 375px;
}
.gakkai_list th{
	padding: 15px;
}
.gakkai_list td{
	padding: 15px;
	border: none;
}
.gakkai_list tr{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.reg-sikaku{
	padding: 0 50px;
}
.reg-sikaku li{
	margin-bottom: 10px;
}
.reg-sikaku img{
	width: 50%;
	margin: 0;
	height: auto;
}
.reg-happyou{
	margin: 0 auto;
	width: 90%;
}
.reg-happyou th,td{
	border: 1px solid #000;
	border-collapse: collapse;
	border-bottom: #fff;
	padding: 10px;
	line-height: 20px;
}
.reg-happyou tr:last-child td{
	border-bottom: 1px solid #000;
}
.reg-happyou tr{
	display: flex;
	flex-direction: column;
}
.reg-happyou th{
	background-color: #f5e3b8;
}
.reg-happyou td ul{
	margin-left: 20px;
}
.reg-bunka{
	margin-left: 50px;
}
.reg-bunka ul{
	list-style-type: none;
	margin-bottom: 30px;
}
.reg-bunka li{
	margin-bottom: 5px;
}
.reg-chuui{
	margin-left: 10px;
	padding: 0 30px;
}
.reg-chuui h3{
	font-weight: bold;
	color: #ff5e00;
	margin-bottom: 5px;	
	font-size: 16px;
}
.reg-chuui h4{
	font-weight: bold;
	font-size: 16px;
	margin: 20px 0 5px 0;
}
.reg-chuui-kinsoku{
	padding: 10px 20px;
	background-color: #f0cfbb;
}
.reg-chuui-kinsoku ul li{
	margin: 0 0 5px 10px;
	line-height: 16px;
}
.reg-chuui-kinsoku ul ul{
	list-style-type: disc;
	border: 1px solid #000;
	list-style-position: inside;
	padding: 5px;
}
.reg-chuui-kinsoku ul ul li{
	margin: 0 0 5px 10px;
	line-height: 18px;
}
.reg-chuui-kinsoku span{
	color: #e04a36;
	margin-left: 1.5rem;
}
.reg-chuui-kinsoku ul ul li sup{
	font-size: 10px;
}
.reg-chuui-kinsoku ul ul li sub{
	font-size: 10px;
}
.reg-chuui-kinsoku-moji li{
	list-style-type: none;
}
.reg-annai{
	margin: 0 auto;
	width: 90%;
}
.reg-annai th,td{
	border: 1px solid #000;
	border-collapse: collapse;
	border-bottom: #fff;
	padding: 10px;
	line-height: 20px;
}
.reg-annai tr:last-child td{
	border-bottom: 1px solid #000;
}
.reg-annai tr{
	display: flex;
	flex-direction: column;
}
.reg-annai th{
	background-color: #f5e3b8;
}
.reg-annai td ul{
	margin-left: 20px;
}
.reg-annai td p:nth-of-type(2){
	margin-top: 20px;
}
.reg-annai td a{
	text-align:center;
}
.reg-annai p,.reg-annai li{
	font-size: 13px;
}
.reg-annai-kousei{
	display: block;
	margin-left: 15px;
}
.reg-annai img{
	width: 300px;
	height: auto;
}
.let-s{
	font-size: 13px;
}

@media only screen and (min-width: 850px){
	.wrapper{
		max-width: 1100px;
		background-color: #fff;
		margin: 0 auto;
		box-shadow: 0px 1px 6px 1px rgba(0, 0, 0, 0.45);
	}
	h2{
		font-size: 22px;
	}
	/* .pc-disp{
		display: none;
	} */
	.pc-disp{
		display: block;
	}
	.sp-disp{
		display: none;
	}
	#g-nav{
		display: none;
	}
	.header{
		height: 15vh;
		padding-left: 6%;
		margin: 0 auto;
	}
	.header p{
		letter-spacing: 2px;
		line-height: 15px;
		-webkit-text-stroke: 4px #ffffff;
		paint-order: stroke;
		text-align: center;
	}
	.hd-title-logo{
		color: #bc5768;
		font-size: clamp(10px, 2.8vw, 40px);
		font-weight: 700;
		-webkit-text-stroke: 3px #ffffff;
		paint-order: stroke;
	}
	/* .hd-title-logo-bg{
		position: absolute;
		color: #ffffff00;
		font-size: 37px;
		line-height: 39px;
		font-weight: 700;
		text-shadow: 2px 2px 30px #feffb3 ,
			-2px 2px 30px #feffb3 ,
			2px -2px 30px #feffb3 ,
			-2px -2px 30px #feffb3;
	} */
	.hd-title-logo-en{
		font-size: 9px;
		color: #ff9faf;
	}
	header img{
		width: 47px;
		height: auto;
	}
	.title-s{
		font-size: 20px;
	}
	main{
		display: flex;
		justify-content: center;
	}
	.top-left{
		display: block;
		/* position: absolute; */
		background: #ffdcae;
		width: 25%;
		/* height: fit-content; */
		left: auto;
		/* right:78%; */
		font-size: clamp(10px, 2.0vw, 17px);

	}
	.top-left a{
		/* padding: 15px; */
		height: 50px;
		border-bottom: 2px solid #9d8943;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.top-left a:hover{
		background: #f5e3b8;
		color: #fff;
	}
	.top-left a div{
		line-height: 13px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.top-left h3{
		text-align: center;
		padding-right: 15px;
		transition: .5s;
	}
	.top-left-menu img{
		display: none;
	}
	.top-left-menu p{
		font-size: 13px;
		color:#ef080c;
		font-weight: normal;
		text-align: left;
	}
	.top_right{
		min-width: 750px;
		width: 75%;
		/* margin-left: 22%; */
	}
	/* @media screen and(hover:hover) {
		.top-left-menu img{
			display: block;
		}
	} */
	.news_sec{
		width: 94%;
		height: 40vh;
		margin: 0 auto;
		overflow: auto;
		text-align: left;
		padding: 20px;
		border-radius: 10px;
		background-color: #fffbf5;
	}
	.footer{
		/* background-image: url(../img/roukan_31_footer_pc.png); */
		background-image: url(../img/footer_img.png);
	}
	.footer h4{
		margin-bottom: 5px;
	}
	.footer p{
		font-size: 15px;
		line-height: 22px;
	}
	.sub_head_under1_smart{
		min-width: 269px;
		width: fit-content;
		margin: 0 auto;
	}
	.gakkai_list tr{
		display: flex;
		flex-direction: row;
		align-items: center;
	}
	.gakkai_list th{
		width: 20%;
	}
	.reg-sikaku img{
		width: 30%;
		margin: 10px;
		height: auto;
	}
}

@media only screen and (min-width: 1300px){
	.top-left{
		/* display: block; */
		/* position: absolute; */
		width: 25%;
		/* height: fit-content; */
		left: auto;
		/* right: 72%; */
		font-size: clamp(10px, 1.8vw, 23px);
	}
	/* .top-left a{
		padding: 15px;
	} */
	.gakkai_list tr{
		display: flex;
		flex-direction: row;
		align-items: center;
	}
	
}

/* 準備中 文字装飾 */
.junbichu{
	font-size: 20px;
	width: 100%;
	text-align: center;
}