@charset "UTF-8";
/* CSS Document */
::selection {
background-color: #ffff00;
}

body {
	margin: 0px;
	padding: 0px;
	color: #333333;
	background: #ffffff;
	font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif, "ＭＳ Ｐゴシック", "ms p gothic";
	font-weight:600;
	font-feature-settings : "palt";
}

/*フェードイン*/
.fadein {
    animation-name: fadein;
    animation-duration: 0.8s;
}
@keyframes fadein {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.fade {
    animation-name: fade;
    animation-duration: 0.4s;
}
@keyframes fade {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* 画面外にいる状態 */
.fade-in {
    opacity : 0;
    transform : translate(0, 40px);
    transition : all 800ms;
}

/* 画面内に入った状態 */
.fade-in.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

a:link{
	text-decoration:none;
	color: #3fabd3;
    transition-property: all;
    transition-duration: 0.3s;
}
a:hover{
    transition-property: all;
    transition-duration: 0.3s;
}
a:link img{
    transition-property: all;
    transition-duration: 0.3s;
}
a:hover img{
	opacity: 0.5;
    transition-property: all;
    transition-duration: 0.3s;
}
a:visited{
	color: #3fabd3;
}

* {
margin: 0px;
padding: 0px;
}

img {
	border-width:0px;
	border-style:none;
	vertical-align: bottom;
}

section {
	overflow:hidden;
}


/* フォント関係 */
.white {
	color:#FFFFFF;
}


.oswald { font-family: 'Oswald', sans-serif; }
.oswald.w200 { font-weight: 200; }
.oswald.w300 { font-weight: 300; }
.oswald.w400 { font-weight: 400; }
.oswald.w500 { font-weight: 500; }

.josefin { font-family: 'Josefin Sans', sans-serif; }
.josefin.lighter { font-weight: 300;}

.color_red{
	color: #f03e35!important;
}
.color_pink{
	color: #E15959!important;
}
.color_gray{
	color: #666666!important;
}
.color_green{
	color: #69cdcb!important;
}
.color_cream {
	color: #edcf88!important;
}



/* スマートフォン用CSS */
@media screen and (max-width: 630px) {

.pc{
	display: none;
}

header {
	width:100%;
	height:auto;
	margin:0px auto;
	padding:0px;
	background-color: #FFFFFF;
	display: flex;
}
header h1 {
	width:250px;
	height: auto;
	margin:5px 0 15px 5px;
	padding: 0;
}
header h1 img {
	width:250px;
}
header h2 {
	font-size: 10px;
	margin: 5px 0 0 5px;
	text-align: left;
	color:#43362D;
}

header nav {
	display:none;
}

/* スマートフォン用ハンバーガーメニュー */
header .hamburger .drawer-hamburger {
	top: 0;
    padding: 10px 14px 10px 14px;
    right: 0;
    background-color: #0D396F;
    border-radius: 0;
}
header .hamburger .logo img {
	width: 250px;
	padding: 10px 15px;
}
header .hamburger .drawer-hamburger p {
	margin-top: 15px;
	color:#ffffff;
	font-family: 'Oswald', sans-serif;
	font-size: 12px;
    letter-spacing: 2px;
    line-height: 130%;
    font-weight: 200;
}
header .hamburger .drawer-nav{
	display:inline;
	background-color: #0D396F;
}
header .hamburger .drawer-menu-item {
    font-size: 0.9rem;
    display: block;
    padding: 0.65rem;
    text-decoration: none;
}
header .hamburger .drawer-nav ul {
	background-color: #0D396F;
	letter-spacing: 1px;
	font-size: 1em;
}
header .hamburger .drawer-menu li {
	border-bottom:1px solid #3e6088;
}

header .hamburger .drawer-menu li a {
	color: #ffffff;
	padding: 10px 15px;
    display: block;
}
/*アコーディオン*/
header .hamburger .drawer-menu .accordion{
	position: relative;
}
header .hamburger .drawer-menu .accordion .panel-head{
	padding: 10px 15px;
    display: block;
	color: #ffffff;
}
/*下矢印↓*/
header .hamburger .drawer-menu .accordion .panel-head:after {
	content: "";
	position: absolute;
	border-right: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	width: 10px;
	top:1em;
	right: 1em;
	height: 10px;
	transform: rotate(45deg);
}
/*上矢印↑*/
header .hamburger .drawer-menu .accordion .panel-head.ac:after {
	content: "";
	position: absolute;
	border-left: 1px solid #ffffff;
	border-top: 1px solid #ffffff;
	border-right: 0;
	border-bottom: 0;
	width: 10px;
	top:1em;
	right: 1em;
	height: 10px;
	transform: rotate(45deg);
}

header .hamburger .drawer-nav .displaynone {
    display: none;
}
header .hamburger .drawer-nav ul.list {
	background-color:#ffffff;
	margin: 0;
	padding: 3%;
	font-size: 0.8em;
	display: flex;
	flex-wrap: wrap;
	list-style-type: none;
}
header .hamburger .drawer-menu ul.list li {
	width: 98%;
	margin: 1%;
	border: none;
	padding: 0 0 0 ;
}
header .hamburger .drawer-menu ul.list li a {
	padding: 0.75em 0 0.75em 1em;
	background-color: #eeeeee;
	color: #0D396F;
}



header .hamburger h1 {
	width: auto;
	text-align:left; 
	font-size: 14px;
	font-weight: 500;
	margin: 15px 10px 0;
	padding: 0;
	line-height: 160%;
}
header .hamburger h1 a {
	color: #f5a6a6;
}
header .hamburger .info {
	font-size: 11px;
	margin: 0 10px 10px;
	padding: 0;
	line-height: 200%;
}

/* sns */
header .hamburger ul.sns {
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
    align-items: center;
	background-color: #ffffff;
	color: #333333;
	border: none;
	font-size: 10px;
	letter-spacing: 0;
}
header .hamburger ul.sns .icon_button {
	width: auto;
	font-size: 12px;
	margin: 0 0 0 10px;
}
header .hamburger ul.sns img {
	width: 32px;
	display: block;
	margin: 0 auto 3px;
}
header .hamburger ul.sns li {
	border-right: none;
	border-bottom: none;
}
header .hamburger ul.sns li:first-child {
	border-left: none;
}
header .hamburger ul.sns li a {
	color: #333333;
	padding: 7px 7px;
	display: block;
}


article{
	overflow: hidden;
}
section{
	overflow: visible;
}

/* パンくずリスト */
.bread_crumbs {
	display:none;
}

/* コンテンツ */
.contents{
	width: 90%;
	height: auto;
	margin: 5% auto;
	padding: 0px;
	font-size: 13px;
	line-height: 180%;
}

.flex {
	display: flex;
	flex-wrap: wrap;
}
.box_one .child {
	width: 100%;
	margin: 0 0 4%;
}
.box_one .child:first-child {
	margin: 4% 0 4%;
}

.box_two .child {
	width: 100%;
	margin: 0 0 4% 0 ;
}
.box_two .child:last-child {
	margin: 0 0 0 0;
}

.box_three .child {
	justify-content: space-between;
	width: 48%;
	margin: 0 4% 4% 0 ;
}
.box_three .child:nth-child(2n) {
	margin: 0 0 4% 0;
}

.box_four .child {
	justify-content: space-between;
	width: 48%;
	margin: 0 4% 4% 0 ;
}
.box_four .child:nth-child(2n) {
	margin: 0 0 4% 0;
}

.box_five .child {
	justify-content: space-between;
	width: 48%;
	margin: 0 4% 4% 0 ;
}
.box_five .child:nth-child(2n) {
	margin: 0 0 4% 0;
}

/* margin */
.m-top20{
	margin-top:20px!important;
}
.m-top30{
	margin-top:30px!important;
}
.m-top40{
	margin-top:40px!important;
}
.m-bottom20{
	margin-bottom:20px!important;
}
.m-bottom30{
	margin-bottom:30px!important;
}
.m-bottom40{
	margin-bottom:40px!important;
}


#news {
	width:90%;
	height:auto;
	margin:0% auto 5%;
    line-height: 170%;
	font-size:14px;
}
#news h1 {
	line-height: 100%;
}
#news dl {
    width: 100%;
    height: auto;
    margin: 0%;
    padding: 3% 0%;
    line-height: 190%;
    overflow: hidden;
    position: relative;
    zoom: 1;
    border-bottom: dotted 1px #cccccc;
}
#news dt {
	width: auto;
    height: auto;
    float: left;
    margin: 0%;
}
#news dd {
    width: 100%;
    height: auto;
    margin: 0%;
    float: left;
}
#news dd a {
    color: #3fabd3;
	text-decoration:underline;
}
#news dl p {
	width: 60px;
    height: auto;
    margin: 0.5% 0% 0% 3%;
    padding: 1px 10px;
    background-color: #ffffff;
    border: 1px solid #0C396D;
    color: #0C396D;
    float: left;
    font-size: 11px;
    line-height: 160%;
    text-align: center;
}
#news dl .news {
    border: 1px solid #0C396D;
    color: #0C396D;
}
#news dl .important {
    border: 1px solid #D01A19;
    color: #D01A19;
}
#news dl .entrance-exam {
    border: 1px solid #928C15;
    color: #928C15;
}
#news dl .student {
    border: 1px solid #3AAC62;
    color: #3AAC62;
}
#news dl .parent {
    border: 1px solid #1BA6A4;
    color: #1BA6A4;
}
#news dl dd p {
    text-align: left;
	font-size: 14px;
    width: auto;
    height: auto;
	margin: 0;
	padding: 0;
    background-color: white;
	color: #695f5d;
}


#page-title {
	margin: 30px auto;
}
#page-title h1 {
	color: #69cdcb;
	line-height: 140%;
}
#icon{
	width: 70px;
	margin: 0 auto 5px;
}


/* VIEW ALL ボタン */
.view_all a, .view_all a:link {
	width:auto;
	height:auto;
	margin:5% auto;
	padding:10px 20px 10px;
	font-size:16px;
	text-align:center;
	letter-spacing:1.5px;
	background-color: #0A396D;
	border: 1px solid #0A396D;
	color: #ffffff;
	display:table;
}

.view_all a:hover {
	background-color: #ffffff;
	border: 1px solid #0A396D;
	color: #0A396D;
}

/* ボタン */
.button {
	width:auto;
	height:auto;
	margin:3% auto 5%;
	padding:0px;
	text-align:center;
	display:flex;
}

.button a, .button a:link {
	width:auto;
	height:auto;
	margin:0px auto;
	padding:10px 20px;
	font-size:13px;
	text-align:center;
	background-color:#0A396D;
	color:#ffffff;
}
.button_white {
	width:auto;
	height:auto;
	margin:3% auto 5%;
	padding:0px;
	text-align:center;
	display:flex;
}
.button_white a, .button_white a:link {
	width:auto;
	height:auto;
	margin:0px auto;
	padding:10px 20px;
	font-size:13px;
	text-align:center;
	border:1px solid #0A396D;
	background-color:#ffffff;
	color:#0A396D;
}
.button_white a:hover {
	background-color:#0A396D;
	color:#ffffff;
	opacity: 1;
}


/*トップへ戻るボタン*/
#pagetop{
	display:none;
}


/* footer */
footer {
	width:auto;
	height:auto;
	margin:10% auto 0;
	padding:5% 0;
	background-image: url("../img/all/back_footer.jpg");
	background-size: cover;
	background-position: center;
	color: #ffffff;
	text-align: center;
}
footer a:link, footer a:visited {
	color: #ffffff;
}
footer section {
	width:100%;
	margin: 0 auto;
}

footer section .logo_footer {
	width: 70px;
	margin: 0 auto 5%;
}
footer p {
	line-height:170%;
	font-size: 12px;
	letter-spacing: 0.05em;
}

.copy {
	font-family: 'Oswald', sans-serif;
	letter-spacing: 0.2em;
	margin:3% auto 7%;
	font-size:10px;
}



/* サブページ セクション用背景画像 */
.back01 {
	margin:0 0;
	padding:5% 0px;
	background-image:url("../img/all/back_01.jpg");
	background-size: cover;
	background-position:center;
}
.back02 {
	margin:0 0;
	padding:5% 0px;
	background-image:url("../img/all/back_02.jpg");
	background-size: cover;
	background-position:center;
}
.back03 {
	margin:0 0;
	padding:5% 0px;
	background-image:url("../img/all/back_03.jpg");
	background-size: cover;
	background-position:center;
}
.back04 {
	margin:0 0;
	padding:5% 0px;
	background-image:url("../img/all/back_04.jpg");
	background-size: cover;
	background-position:center;
}
.back05 {
	margin:0 0;
	padding:5% 0px;
	background-image:url("../img/all/back_05.jpg");
	background-size: cover;
	background-position:center;
}
.back06 {
	margin:0 0;
	padding:5% 0px;
	background-image:url("../img/all/back_06.jpg");
	background-size: cover;
	background-position:center;
}
.back_stripe {
	margin:0 0;
	padding:5% 0%;
	background-color: #fbfae1;
	background-image:url("../img/all/back_whitestripe.png");
	background-repeat:repeat;
	background-position:center;
}
.back_taiboshiki {
	margin:0px 0px;
	padding: 30px 0px 50px;
	background-image:url("../img/all/back_taiboshiki.jpg");
	background-size: cover;
	background-position: center;
}
.back_club {
	margin:0px 0px;
	padding:5% 0%;
	background-image:url("../img/all/back_club.jpg");
	background-size: cover;
	background-position: center;
}
.back_sns {
	margin:0px 0px;
	padding:5% 0%;
	background-image:url("../img/all/back_sns.jpg");
	background-repeat: repeat;
	background-position: center;
}
/*
.back_fixed{
	background-attachment: fixed;
}
*/

/* font */

h1 {
	font-size:28px;
	text-align:center;
	font-weight:normal;
	margin:0px 0px;
	line-height: 140%;
}

h2 {
	font-size:26px;
	text-align:center;
	font-weight:normal;
	margin:0px 0px;
	line-height: 140%;
}

h3 {
	font-size:18px;
	line-height: 140%;
	font-weight: normal;
	margin:0px 0px 5px;
}
h5 {
	font-size: 14px;
	line-height: 140%;
	font-weight: 500;
	margin:0px 0px 5px;
}

.white {
	color:#FFFFFF;
}

}




















/* PCページ用CSS */
@media print, screen and (min-width: 631px) {
.sp {
	display: none;
}

header {
	width:100%;
	min-width: 1000px;
	height:auto;
	margin:0;
	padding:0;
	background-color: #ffffff;
	position: fixed;
	top: 0;
	z-index: 10;
}

header .box01 {
	width:1000px;
	height: auto;
	margin:15px auto 20px;
	display: flex;
	justify-content: space-between;
}
header .box01 .l {
	width:350px;
	margin:0px;
	padding:0px;
}
header .box01 .l h1 {
	margin:0px;
	padding:0px;
	line-height: 100%;
}

header .box01 .r {
	margin:5px 0px 0px 0px;
	padding:0px;
	text-align:center;
	display: flex;
	flex-wrap: wrap;
}
header .box01 .r ul {
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
    align-items: center;
}
header .box01 .r .sns {
}
header .box01 .r ul.sns li {
	margin: 0 5px;
}
header .box01 .r .icon_button {
	width: auto;
	font-size: 12px;
	margin: 0 0 0 10px;
}
header .box01 .r .icon_button img {
	display: block;
	margin: 0 auto 3px;
}
header .box01 .r .icon_button li {
	border-right: 1px solid #cccccc;
}
header .box01 .r .icon_button li:first-child {
	border-left: 1px solid #cccccc;
}
header .box01 .r .icon_button li a {
	color: #333333;
	padding: 5px 10px;
	display: block;
}

/*
header nav {
	width:auto;
	height:auto;
	margin:0px auto;
	padding:0px ;
	background-color: #0C396D;
	text-align: center;
	font-size:18px;
	font-weight: 500;
}

header nav ul {
	width: 1000px;
	height: auto;
	margin: 0px auto;
	padding: 20px 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
}
header nav ul li {
	margin: 0px;
	padding: 0px;
}
header nav ul li:last-child {
}
header nav a:link, header nav a:visited {
	color:#ffffff;
}
*/

.hamburger{
	display: none;
}

.space{
	margin-top: 154px!important;
}
	
article{
	min-width:1000px;
	overflow: hidden;
}

/* パンくずリスト */
.bread_crumbs {
    width: 1000px;
    margin: 20px auto 0px;
	font-size:12px;
}

/* コンテンツ */
.contents{
	width: 1000px;
	height: auto;
	margin: 70px auto;
	padding: 0px;
	font-size: 16px;
	line-height: 200%;
	overflow: visible;
}
.flex {
	display: flex;
	flex-wrap: wrap;
}
.box_one .child {
	width: 1000px;
	margin: 0 0 40px 0 ;
}
.box_one .child:first-child {
	margin: 40px 0 50px 0 ;
}

.box_two .child {
	width: 480px;
	margin: 0 40px 40px 0 ;
}
.box_two .child:nth-child(even) {
	margin: 0 0 40px 0;
}
.box_two .child:last-child {
	margin: 0 0 0 0;
}

.box_three .child {
	justify-content: space-between;
	width: 310px;
	margin: 0 35px 35px 0 ;
}
.box_three .child:nth-child(3n) {
	margin: 0 0 35px 0;
}
.box_three .child:last-child {
	margin: 0 0 35px 0;
}
.box_four .child {
	justify-content: space-between;
	width: 235px;
	margin: 0 20px 20px 0 ;
}
.box_four .child:nth-child(4n) {
	margin: 0 0 20px 0;
}
.box_four .child:last-child {
	margin: 0 0 20px 0;
}
.box_five .child {
	justify-content: space-between;
	width: 188px;
	margin: 0 15px 30px 0 ;
}
.box_five .child:nth-child(5n) {
	margin: 0 0 30px 0;
}
.box_five .child:last-child {
	margin: 0 0 30px 0;
}

/* margin */
.m-top20{
	margin-top:20px!important;
}
.m-top30{
	margin-top:30px!important;
}
.m-top40{
	margin-top:40px!important;
}
.m-bottom20{
	margin-bottom:20px!important;
}
.m-bottom30{
	margin-bottom:30px!important;
}
.m-bottom40{
	margin-bottom:40px!important;
}


/* お知らせ */
#news {
	margin:0px auto;
}
#news dl {
	width:960px;
	height:auto;
	margin:0px;
	padding: 15px 20px;
    line-height: 180%;
	display: flex;
	flex-wrap: wrap;
	border-bottom:dotted 1px #cccccc;
	align-items: center;
}
#news dt {
	width: 100px;
	height: auto;
	margin: 0px 10px 0px 0px;
	letter-spacing: 1px;
}
#news dd {
    width: 715px;
    height: auto;
    margin: 0px 0px 0px 15px;
}
#news dd a {
    color: #3fabd3;
	text-decoration:underline;
}
#news dl p {
    width: 120px;
    height: auto;
    margin: 0px 0px 0px 0px;
    padding: 0px 10px;
    border: 1px solid #cccccc;
    color: #cccccc;
    float: left;
    font-size: 14px;
    line-height: 170%;
    text-align: center;
	letter-spacing: 1px;
	box-sizing: border-box;
}
#news dl .news {
    border: 1px solid #0C396D;
    color: #0C396D;
}
#news dl .important {
    border: 1px solid #D01A19;
    color: #D01A19;
}
#news dl .entrance-exam {
    border: 1px solid #928C15;
    color: #928C15;
}
#news dl .student {
    border: 1px solid #3AAC62;
    color: #3AAC62;
}
#news dl .parent {
    border: 1px solid #1BA6A4;
    color: #1BA6A4;
}
#news dl dd p {
	font-size: 16px;
    width: auto;
    height: auto;
    background-color: white;
	color: #695f5d;
	text-align: left;
}


#page-title {
	margin: 0px auto 50px;
}
#page-title h1 {
	color: #69cdcb;
}
#icon{
	width: 102px;
	margin: 0 auto 10px;
}

	
/* VIEW ALL ボタン */
.view_all a, .view_all a:link {
	width:auto;
	height:auto;
	margin:20px auto 10px;
	padding:10px 30px 10px;
	font-size:20px;
	text-align:center;
	letter-spacing:1.5px;
	background-color: #0A396D;
	border: 1px solid #0A396D;
	display:table;
	color: #ffffff;
}

.view_all a:hover {
	background-color: #ffffff;
	border: 1px solid #0A396D;
	color: #0A396D;
}

/* ボタン */
.button {
	width:auto;
	height:auto;
	margin:10px auto 20px;
	padding:0px;
	text-align:center;
	display:flex;
}
.button a, .button a:link {
	width:auto;
	height:auto;
	margin:0px auto;
	padding:10px 40px;
	font-size:16px;
	text-align:center;
	background-color:#0A396D;
	color:#ffffff;
}

.button_white {
	width:auto;
	height:auto;
	margin:10px auto 20px;
	padding:0px;
	text-align:center;
	display:flex;
}
.button_white a, .button_white a:link {
	width:auto;
	height:auto;
	margin:0px auto;
	padding:10px 40px;
	font-size:16px;
	text-align:center;
	border:1px solid #0A396D;
	background-color:#ffffff;
	color:#0A396D;
}
.button_white a:hover {
	background-color:#0A396D;
	color:#ffffff;
	opacity: 1;
}

/*トップへ戻るボタン*/
#pagetop{
	display:block;
    position: fixed;
    bottom: 20px;
    right: 20px;
	width:50px;
    height:50px;
	font-size:16px;
	font-weight:400;
	line-height:120%;
    color:#FFFFFF;
	text-align:center;
	z-index:99999;
	font-family: 'Oswald', sans-serif;
}

#pagetop a {
	display:block;
    position: fixed;
    bottom: 40px;
    right: 40px;
	width:50px;
    height:50px;
    background-color:#FFFFFF;
    padding:20px 10px 0 10px;
	margin:20px auto 0 auto;
    color:#333333;
	border: 1px #333333 solid;
	text-decoration:none;
	font-family: 'Oswald', sans-serif;
}

#pagetop a:hover {
  	filter:alpha(opacity=50);
  	-moz-opacity: 0.5;
  	opacity: 0.5;
}


/* footer */
footer {
	width:auto;
	height:auto;
	margin:70px auto 0;
	padding:0;
	min-width:1000px;
	background-image: url("../img/all/back_footer.jpg");
	background-size: cover;
	background-position: center;
	color: #ffffff;
	text-align: center;
}
footer a:link, footer a:visited {
	color: #ffffff;
}
footer section {
	width:1000px;
	margin: 0 auto;
}

footer section .logo_footer {
	width: 70px;
	margin: 0 auto 20px;
}
footer p {
	line-height:170%;
	font-size: 14px;
	letter-spacing: 0.05em;
}

.copy {
	font-family: 'Oswald', sans-serif;
	letter-spacing: 0.2em;
	margin:30px auto 20px;
	font-size:11px;
}


/* 背景画像 */
.back01 {
	margin:0px 0px;
	padding: 30px 0px 50px;
	background-image:url("../img/all/back_01.jpg");
	background-size: cover;
	background-position: center;
}
.back02 {
	margin:0px 0px;
	padding: 30px 0px 50px;
	background-image:url("../img/all/back_02.jpg");
	background-size: cover;
	background-position: center;
}
.back03 {
	margin:0px 0px;
	padding: 30px 0px 50px;
	background-image:url("../img/all/back_03.jpg");
	background-size: cover;
	background-position: center;
}
.back04 {
	margin:0px 0px;
	padding: 30px 0px 50px;
	background-image:url("../img/all/back_04.jpg");
	background-size: cover;
	background-position: center;
}
.back05 {
	margin:0px 0px;
	padding: 30px 0px 50px;
	background-image:url("../img/all/back_05.jpg");
	background-size: cover;
	background-position: center;
}
.back06 {
	margin:0px 0px;
	padding: 30px 0px 50px;
	background-image:url("../img/all/back_06.jpg");
	background-size: cover;
	background-position: center;
}

.back_paper {
	margin:0px 0px;
	padding: 30px 0px 50px;
	background-image:url("../img/all/back_paper.jpg");
	background-repeat:repeat;
	background-position:center;
}
.back_taiboshiki {
	margin:0px 0px;
	padding: 30px 0px 50px;
	background-image:url("../img/all/back_taiboshiki.jpg");
	background-size: cover;
	background-position: center;
}
.back_stripe {
	margin:0px 0px;
	padding:20px 0px;
	background-color: #fbfae1;
	background-image:url("../img/all/back_whitestripe.png");
	background-repeat:repeat;
	background-position:center;
}
.back_club {
	margin:0px 0px;
	padding: 30px 0px 50px;
	background-image:url("../img/all/back_club.jpg");
	background-size: cover;
	background-position: center;
}
.back_sns {
	margin:0px 0px;
	padding: 30px 0px 50px;
	background-image:url("../img/all/back_sns.jpg");
	background-repeat: repeat;
	background-position: center;
}
.back_fixed{
	background-attachment: fixed;
}
	
/* font */


h1 {
	font-size:40px;
	font-weight: bold;
	text-align:center;
	margin: 0px;
	line-height: 140%;
}

h2 {
	font-size:38px;
	text-align:center;
	font-weight: normal;
	line-height: 140%;
	margin:0px 0px;
}

h3 {
	font-size:24px;
	line-height: 140%;
	font-weight: normal;
	margin:0px 0px 10px;
}

h5 {
	font-size: 18px;
	line-height: 140%;
	font-weight: 500;
	margin:0px 0px 0px;
}

a.anchor{
   display: block;
   margin-top:-50px;
   padding-top:50px;
}

}