@charset "UTF-8";

body{
	background: #FFF;
	font-family:　"Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	margin: 0;
	padding: 0;
	width: 375px;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  position: relative;
  top:-2px;
}

.logo {
  font-size: 24px;
	width: 90px;
	margin-right:auto;
	margin-top: 5px;
}

.nav{
	position: absolute;
	right: 10px;
	position: fixed;
	z-index: 100;
}

/* ここから下がハンバーガーメニューに関するCSS */
  
/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 20px;
  z-index: 100;/* 重なり順を一番上にする */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #333;
  transition: 0.5s;
  position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0%;
  left: 100%; /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: rgb(110, 110, 110, 0.7);
  transition: .5s;
  text-align: center;
  padding-top: 20px;
}

/* メニュー黒ポチを消す */
.nav_list {
  list-style: none;
  position: relative;
  top: 0px;
  left: -20px;
  font-size: 25px;
}

.nav_item a {
  color: #fff;
  text-decoration: none;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  left: 0;
}

.text1{
	font-size: 20px;
}

img.top_1{
	width: 330px;
	position: relative;
	top: 30px;
	left: 20px;
}

img.top_2{
	width: 440px;
	position: relative;
	top: -50px;
	left: -93px;
}

div.top_p{
	text-align: center;
	position: relative;
	top: 90px;
	font-size: 20px;
	color: #000000;
}

.tokucho{
	text-align: center;
}

.tokucho_p{
	position: relative;
	left: 20px;
	max-width: 320px;
}

div.mokuji{
	text-align: center;
	position: relative;
	top: 180px;
}

img.mokuji{
	width: 110px;
	margin: auto;
}

div.mokuji_suji{
	text-align: left;
	position: relative;
	top:auto;
	left: 40px;
	font-size: 50px;
}

.mokuji01{
	color:#F0B4B4;
}

.mokuji02{
	color:#89BCE2;
}

.mokuji03{
	color:#F5DD8C;
}

div.mokuji_p{
	text-align: right;
	position: relative;
	top:-320px;
	left: 125px;
	font-size: 30px;
	width: 200px;
}

.mokuji1{
	background:linear-gradient(transparent 70%, #F0B4B4 0%);
	position: relative;
	top: 0px;
	text-align: center;
}

.mokuji2{
	background:linear-gradient(transparent 70%, #89BCE2 0%);
	position: relative;
	top: 36px;
	left: 0px;
}

.mokuji3{
	background:linear-gradient(transparent 70%, #F5DD8C 0%);
	position: relative;
	top: 70px;
	text-align: center;
}

section.hajimeni{
	width: 100%;
	background-color: #F1F1F1;
	padding-top: 10px;
	padding-bottom: 20px;
}

div.hajimeni{
	text-align: center;
	position: relative;
	top: 0px;
}

img.hajimeni{
	width: 170px;
	margin: auto;
}

.hajimeni_p{
	position: relative;
	left: 30px;
	max-width: 320px;
}



.container1{
	position: relative;
	top: 100px;
}

div.item1{
	text-align: center;
	margin-bottom: 100px;
}

div.item2{
	text-align: center;
	margin-bottom: 100px;
}

div.item3{
	text-align: center;
	margin-bottom: 100px;
}





.item1 a {
    position: relative;
    display: flex;
	flex-flow: column;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    background: #F0B4B4;
    filter: drop-shadow(0px 2px 4px #ccc);
    border-radius: 10px;
	box-shadow: 0 15px 30px -5px rgb(0 0 0 / 25%);
}
.item1 a:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 35px 0px rgb(0 0 0 / 25%), 0 0 5px rgb(0 0 0 / 25%);
}


.item2 a {
    position: relative;
    display: flex;
	flex-flow: column;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    background: #89BCE2;
    filter: drop-shadow(0px 2px 4px #ccc);
    border-radius: 10px;
	box-shadow: 0 15px 30px -5px rgb(0 0 0 / 25%);
}
.item2 a:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 35px 0px rgb(0 0 0 / 25%), 0 0 5px rgb(0 0 0 / 25%);
}


.item3 a {
    position: relative;
    display: flex;
	flex-flow: column;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    background: #F5DD8C;
    filter: drop-shadow(0px 2px 4px #ccc);
    border-radius: 10px;
	box-shadow: 0 15px 30px -5px rgb(0 0 0 / 25%);
}
.item3 a:hover {
    transform: translateY(-2px);
   box-shadow: 0 20px 35px 0px rgb(0 0 0 / 25%), 0 0 5px rgb(0 0 0 / 25%);
}



.bango_1{
	font-size: 70px;
}

.bango_2{
	font-size: 70px;
}

.bango_3{
	font-size: 70px;
}



img.QandA{
	width: 170px;
	margin: auto;
	position: relative;
	top: 18px;
}

img.QandA_picture{
	width: 200px;
	margin: auto;
}


img.schedule{
	width: 250px;
	margin: auto;
	position: relative;
	top: 21px;
	left: -10px;
}

img.schedule_picture{
	width: 200px;
	margin: auto;
}


img.jugyoshokai{
	width: 200px;
	margin: auto;
	position: relative;
	top: 16px;
	left: -5px;
}

img.jugyoshokai_picture{
	width: 200px;
	margin: auto;
}


.QandA_p{
	font-size: 14px;
}

.schedule_p{
	font-size: 14px;
}

.jugyoshokai_p{
	font-size: 14px;
}




 
.bango_1 a::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}


section.owarini{
	width: 100%;
	background-color: #F1F1F1;
	padding-top: 20px;
	padding-bottom: 20px;
}

div.owarini{
	text-align: center;
	position: relative;
	top: 100px;
}

img.owarini{
	width: 170px;
	margin: auto;
}

.owarini_p{
	position: relative;
	left: 30px;
	max-width: 320px;
}



.sns{
	position: relative;
	top: 180px;
}

div.pleaseshare{
	text-align: center;
}

img.pleaseshare{
	width: 230px;
	margin: auto;
}

.snsmark{
	text-align: center;
	position: relative;
	top: 20px;
}

.facebook{
	width: 55px;
	position: relative;
	left: -20px;
}

.twitter{
	width:  60px;
	
}

.youtube{
	width:  55px;
	position: relative;
	top: -10px;
	left: 20px;
}



.container2{
	display: flex;
	flex-wrap: wrap;
	flex-diretion: row;
	position: relative;
	top: 300px;
}

.button{
	text-align: center;
	width: 44%;
	margin: 10px;
}


.button_1 a{
    background: #eee;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 220px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.button_1 a::before {
  content: '';
  position: absolute;
  bottom: -7px;
  right: -7px;
  width: 100%;
  height: 2px;
  background-color: #bbbbbb;
  transition: 0.2s ease 0s;
}

.button_1 a::after {
  content: '';
  position: absolute;
  top: 7px;
  right: -7px;
  width: 2px;
  height: 100%;
  background-color: #bbbbbb;
  transition: 0.2s ease 0.2s;
}

.button_1 a:hover::before {
  width: 0%;
}

.button_1 a:hover::after {
  height: 0%;
}

.button_1 a:hover {
  text-decoration: none;
  background-color: #ccc;
}


.button_2 a{
    background: #eee;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 220px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.button_2 a::before {
  content: '';
  position: absolute;
  bottom: -7px;
  right: -7px;
  width: 100%;
  height: 2px;
  background-color: #bbbbbb;
  transition: 0.2s ease 0s;
}

.button_2 a::after {
  content: '';
  position: absolute;
  top: 7px;
  right: -7px;
  width: 2px;
  height: 100%;
  background-color: #bbbbbb;
  transition: 0.2s ease 0.2s;
}

.button_2 a:hover::before {
  width: 0%;
}

.button_2 a:hover::after {
  height: 0%;
}

.button_2 a:hover {
  text-decoration: none;
  background-color: #ccc;
}

.button_3 a{
    background: #eee;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 220px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.button_3 a::before {
  content: '';
  position: absolute;
  bottom: -7px;
  right: -7px;
  width: 100%;
  height: 2px;
  background-color: #bbbbbb;
  transition: 0.2s ease 0s;
}

.button_3 a::after {
  content: '';
  position: absolute;
  top: 7px;
  right: -7px;
  width: 2px;
  height: 100%;
  background-color: #bbbbbb;
  transition: 0.2s ease 0.2s;
}

.button_3 a:hover::before {
  width: 0%;
}

.button_3 a:hover::after {
  height: 0%;
}

.button_3 a:hover {
  text-decoration: none;
  background-color: #ccc;
}


.button_4 a{
    background: #eee;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 220px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.button_4 a::before {
  content: '';
  position: absolute;
  bottom: -7px;
  right: -7px;
  width: 100%;
  height: 2px;
  background-color: #bbbbbb;
  transition: 0.2s ease 0s;
}

.button_4 a::after {
  content: '';
  position: absolute;
  top: 7px;
  right: -7px;
  width: 2px;
  height: 100%;
  background-color: #bbbbbb;
  transition: 0.2s ease 0.2s;
}

.button_4 a:hover::before {
  width: 0%;
}

.button_4 a:hover::after {
  height: 0%;
}

.button_4 a:hover {
  text-decoration: none;
  background-color: #ccc;
}





.nid{
	position: relative;
	top: 330px;
	left: 175px;
	width: 130px;
	margin: -50px;
}

.last{
	text-align: center;
	position: relative;
	top: 500px;
	left: 5px;
	margin: -100px;
}