@charset "utf-8";
/* CSS Document */
/* 共通設定 */
/*----------------------------------------
	クリアフィックス設定
----------------------------------------*/
.clearfix {
	display: inline-block;
}
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
}
/* -----背景設定----- */
body {
	margin-top: 0px;
	margin-bottom: 0px;
	overflow-y: scroll;
}
div#cont {
	width: 800px;
	text-align: left;
	margin-top: 0;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 0px;
}
/* -----ヘッダー----- */
div#header {
	height: 150px;
	width: 800px;
	text-align: center;
	clear: both;
}
/* -----メニュー----- */
div#menu {
	width: 200px;
	float: left;
	margin-top: 15px;
	margin-bottom: 15px;
}
div#menu .mainmenu{
	margin-right: 10px;
	margin-left: 10px;
	line-height: 0px;
}
div#menu .get{
	margin-top: 20px;
	margin-right: 20px;
	margin-left: 20px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #000000;
	padding-top: 20px;
	font-size: 12px;
}

.vertical-menu {
  width: 180px;
  padding: 0;
  	margin-right: 10px;
	margin-left: 10px;
	margin-top: 0px;
}


div#menu {
	width: 200px;
	float: left;
	margin-top: 15px;
	margin-bottom: 15px;
}
.vertical-menu li {
  list-style: none;
  height: 68px;
  border: 2px solid #498933; /* 枠線 */
  background: linear-gradient(
    to right,
    #b6ce30,  /* 濃い目の黄緑 */
    #fffcd3   /* 薄い黄 */
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 22px;
  font-weight: 500;

  line-height: 1.2;
  box-sizing: border-box;
}

/* 上だけ角丸 */
.vertical-menu li:first-child {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

/* 下だけ角丸 */
.vertical-menu li:last-child {
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}

/* 枠線の二重防止 */
.vertical-menu li + li {
  border-top: none;
}

/* リンク */
.vertical-menu li a {
  width: 100%;
  padding: 0 8px;
  text-decoration: none;
  color: #000;
text-shadow:
       2px  2px 1px #ffffff,
      -2px  2px 1px #ffffff,
       2px -2px 1px #ffffff,
      -2px -2px 1px #ffffff,
       2px  0px 1px #ffffff,
       0px  2px 1px #ffffff,
      -2px  0px 1px #ffffff,
       0px -2px 1px #ffffff;  
}

/* hover */
.vertical-menu li:hover {
  background: linear-gradient(
    to right,
    #a8c428,
    #f7f3c0
  );
}


h1 {
  width: 550px;
  height: 40px;

  /* 親要素の中央に配置 */
  margin: 0 auto;

  /* 枠 */
  border: 2px solid #e56aa6;

  /* 背景（中央白／padding薄ピンク） */
  background:
    linear-gradient(#fff, #fff) content-box,
    #fde3ee;

  padding: 6px 20px;
  box-sizing: border-box;

  /* 両端丸 */
  border-radius: 20px;

  /* テキスト左寄せ */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-indent: 5px;

  /* フォント */
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 21px;
  font-weight: 500;
  color: #333;
}