@charset "UTF-8";

body {
    background-color: #fffafa;
    font-family: "Zen Maru Gothic", 筑紫A丸ゴシック, "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
    color: #333333;
}

.header {
    display: flex;
    justify-content: space-between;
    width: 95%;
    margin: 0 auto;
    height: 100px;
    align-items: center;
}

.rogo {
    height: 90px;
    width: auto;
}

.menu ul {
    display: flex;
    justify-content: space-between;
    width: 820px;
    align-items: center;
}

.menu ul a {
    text-decoration: none;
    color: #333333;
    transition: all .5s;
}

.menu ul a:hover {
    background-color: #ffff66;
}

h1 {
    font-weight: bold;
    font-size: 64px;
    color: #ffffff;
    text-shadow:
    2px 2px 0 rgba(0,0,0,0.08),
    4px 4px 10px rgba(0,0,0,0.2);
    letter-spacing: 0.04em;
    line-height: 1.2;
}

h2 {
    font-weight: bold;
    font-size: 32px;
    color: #ff0033;
    margin-top: 100px;
    padding-bottom: 60px;
}

h3 {
    font-weight: bold;
    font-size: 24px;
}

p {
    font-size: 16px;
}

main {
    text-align: center;
}

.section-title {
  text-align: center;
  font-size: 32px;
  color: #333333;
  position: relative;
  margin-bottom: 40px;
}

.section-title::after {
  content: "";
  display: block;
  width: 350px;
  height: 6px;
  background: radial-gradient(circle, #ff0033 40%, transparent 40%);
  background-size: 12px 6px;
  margin: 12px auto 0;
}

.mainvisual {
    background-image: url(images/mainvisual.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 650px;
    text-align: left;
}

.copy {
    padding-top: 350px;
}

p {
    line-height: 1.8;
}

.about p {
    margin-bottom: 60px;
}

.btn a {
    text-decoration: none;
    color: #000;
    background-color: #ffff66;
    padding: 20px 50px;
    border-radius: 30px;
    transition: all .5s;
}

.btn a:hover {
    background-color: #FFA822;
}

.corce {
    display: flex;
    justify-content: space-between;
    width: 959px;
    margin: 0 auto;
    text-align: left;
    margin-bottom: 60px;
}

.corce img {
    transition: all .5s;
}

.corce img:hover {
    transform: scale(1.1);
}

.corce h3 {
    padding: 20px 0;
}

.corce p {
    width: 260px;
    line-height: 1.3;
}

.corce span {
    font-size: 32px;
}



.news p {
    margin-bottom: 60px;
}

.btn2 {
    padding-bottom: 60px;
}

.btn2 a {
    text-decoration: none;
    color: #000;
    background-color: #ffff66;
    padding: 20px 30px;
    border-radius: 30px;
    transition: all .5s;
}

.btn2 a:hover {
    background-color: #FFA822;
}

.btn3 {
    padding-top: 60px;
    padding-bottom: 100px;
    display: flex;
    justify-content: space-between;
    width: 600px;
    margin: 0 auto;
}

.btn3 a {
    transition: all .5s;
}

.btn3 a:hover {
    transform: scale(1.1);
}

.fmenu ul {
    display: flex;
    justify-content: space-between;
    width: 820px;
    margin-left: auto;
    margin-right: 2.5%;
    height: 100px;
    align-items: center;
}

.fmenu ul a {
    text-decoration: none;
    color: #333333;
    transition: all .5s;
}

.fmenu ul a:hover {
    background-color: #ffff66;
}

footer p {
    height: 100px;
    align-items: center;
    text-align: center;
}


/* PC,タブレットではハンバーガーメニューを表示しない */
@media (min-width: 560px){
	.hamburger-demo-menubox{
		display: none;
	}
}


@media screen and (max-width: 559px) {

.header {
    height: 60px;
}

.rogo {
    height: 50px;
    width: auto;
}

.menu {
    display: none;
}

/* 全体調整CSS */
.hamburger-demo-menubox *{
	font-size: 16px;
}
.hamburger-demo-menubox li{
	font-size: 14px;
}
/* hamburgerここから */
	/* input非表示 */
.input-hidden{
	display: none;
}
	/* label */
.hamburger-demo-switch{
	cursor: pointer;
	position: absolute;
	right: 3%;
	top: 0;
	z-index: 9999;
	width: 4em;
	height: 4em;
}
/* メニュー展開時にハンバーガーアイコンを固定 */
#hamburger-demo4:checked ~ .hamburger-demo-switch{
	position: fixed;
}
/* 円を用いたハンバーガーデザイン */
	/* 外側の円 */
.hamburger-demo-switch4:before{
	content: "";
	position: absolute;
	width: 2em;
	height: 2em;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 2px solid #333; /* 外側の円（枠線）の色 */
	border-radius: 50%;
}
	/* 真ん中の円 */
.hamburger-switch-circle{
	height: 3px;
	width: 20px;
	background: #333; /* 真ん中の線（円）の色 */
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: .3s;
}
	/* 上下の線 */
.hamburger-switch-circle:before, .hamburger-switch-circle:after{
	content: "";
	position: absolute;
	width: 20px;
	top: 50%;
	left: 50%;
	transition: .3s;
}
.hamburger-switch-circle:before{
	border-top: 3px solid #333; /* ハンバーガーアイコン上側の線の色 */
	transform: translate(-50%, -300%);
}
.hamburger-switch-circle:after{
	border-bottom: 3px solid #333; /* ハンバーガーアイコン下側の線の色 */
	transform: translate(-50%, 200%);
}
/* アイコン･アニメーション */
#hamburger-demo4:checked ~ .hamburger-demo-switch .hamburger-switch-circle{
	height: 25px;
	border-radius: 50%;
}
#hamburger-demo4:checked ~ .hamburger-demo-switch .hamburger-switch-circle:before{
	width: 0;
}
#hamburger-demo4:checked ~ .hamburger-demo-switch .hamburger-switch-circle:after{
	width: 0;
}
	/* 真ん中の×印 */
.hamburger-demo-switch4:after{
	content: "×";
	font-size: 0px;
	position: absolute;
	color: #fff; /* ハンバーガーの"×"マークの色 */
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	transition: .2s;
}


#hamburger-demo4:checked ~ .hamburger-demo-switch4:after{
	font-size: 25px;
}
/* メニューエリア */
.hamburger-demo-menuwrap{
	position: fixed;
	height: 100%;
	background: #fffafa; /* メニューエリアの背景色 */
	padding: 5em 3% 2em;
	z-index: 9998;
	transition: .3s;
	overflow-y: scroll; /* メニュー内容が多い場合に縦スクロール */
	top: 0;
	left: 100%;
	width: 70%;
}
/* メニューリスト */
.hamburger-demo-menulist{
	margin-right: 3%;
	padding-left: 5% !important; /* !important不要な場合あり */
	list-style: none;
}
.hamburger-demo-menulist li a{
	text-decoration: none;
	color: #333; /* メニューエリアの文字色 */
	display: block;
}
	/* 円を用いたメニューリスト */
.hamburger-menulist-circle li{
	border: 1px solid;
	margin-bottom: 5px;
	border-radius: 2em;
}
.hamburger-menulist-circle li a{
	padding: .5em 2.5em .5em 1em;
	position: relative;
}
.hamburger-menulist-circle a:before{
	content: "";
	position: absolute;
	width: 1.5em;
	height: 1.5em;
	background: #fffafa; /* メニューリスト矢印背景（円）の色 */
	border-radius: 50%;
	top: 50%;
	right: .5em;
	transform: translate(0, -50%);
}
.hamburger-menulist-circle a:after{
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	border: 2.5px solid;
	border-color: #333333 #333333 transparent transparent; /* メニューリスト矢印の色（#fffのみ変更） */
	top: 50%;
	right: .5em;
	transform: translate(-80%, -50%) rotate(45deg);
}
/* メニューエリア･アニメーション */
	/* 右から */
#hamburger-demo4:checked ~ .hamburger-demo-menuwrap{
	left: 30%;
}
	/* コンテンツカバー */
#hamburger-demo4:checked ~ .hamburger-demo-cover{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 9997;
	background: rgba(3,3,3,.5);
	display: block;
}

.hamburger-demo-menubox a:hover {
    background-color: #ffff66;
    border-radius: 30px;
}

h1 {
    font-weight: bold;
    font-size: 28px;
    color: #ffffff;
    line-height: 1;
}

h2 {
    font-weight: bold;
    font-size: 24px;
    color: #ff0033;
    margin-top: 50px;
    padding-bottom: 20px;
}

h3 {
    font-weight: bold;
    font-size: 18px;
}

p {
    font-size: 13px;
    width: 90%;
    margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 24px;
  color: #333333;
  position: relative;
  margin-bottom: 20px;
}

.section-title::after {
  content: "";
  display: block;
  width: 250px;
  height: 6px;
  background: radial-gradient(circle, #ff0033 40%, transparent 40%);
  background-size: 12px 6px;
  margin: 12px auto 0;
}

.fmenu ul {
    display: block;
    width: 200px;
    line-height: 1.5;
    margin: 0 auto;
    text-align: center;
}

footer p {
    margin-top: 130px;
    font-size: 11px;
    height: 60px;
}

p {
    line-height: 1.3;
}

.mainvisual {
    background-image: url(images/mainvisual.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 300px;
    text-align: left;
}


.copy {
    padding-top: 160px;
}

.about p {
    margin-bottom: 40px;
}

.btn a {
    text-decoration: none;
    color: #000;
    background-color: #ffff66;
    padding: 15px 30px;
    border-radius: 30px;
    transition: all .5s;
    font-size: 13px;
}

.btn a:hover {
    background-color: #FFA822;
}

.corce {
    display: block;
    width: 260px;
    margin: 0 auto;
}

.corce p {
    padding-bottom: 40px;
}

.schedule img {
    width: 375px;
    height: auto;
}

.news table {
    width: 602px;
    margin: 0 auto;
    text-align: left;
}

.news table tr {
    height: 40px;
}

.news p {
    margin-bottom: 60px;
}

.btn2 a {
    text-decoration: none;
    color: #000;
    background-color: #ffff66;
    padding: 15px 30px;
    border-radius: 30px;
    transition: all .5s;
    font-size: 13px;
}

.btn3 {
    display: block;
    padding-top: 30px;
    padding-bottom: 50px;
    width: 150px;
    margin: 0 auto;
}

.btn3 img {
    width: 150px;
    height: auto;
    padding-bottom: 40px;
}



}