@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(https://example.com/MaterialIcons-Regular.eot);
  /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(https://example.com/MaterialIcons-Regular.woff2) format('woff2'),
    url(https://example.com/MaterialIcons-Regular.woff) format('woff'),
    url(https://example.com/MaterialIcons-Regular.ttf) format('truetype');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  display: inline-flex;
  vertical-align: middle;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}

/* Rules for sizing the icon. */

.material-icons.md-36 {
  font-size: 36px;
}

.table > :not(caption) > * > * {
  vertical-align: middle;
}

/* フローティングメニュー */

.floating-nav {
  position: fixed;
  width: 50px;
  right: 0;
  top: 10%;
  cursor: pointer;
}

.floating-nav a {
  color: white;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-decoration: none;
}

/*三色背景*/
.my-parts {
	width: 100%;
	height: 200px;
	background: linear-gradient(#008000 10%, #fcf16e 0, #fcf16e 90%, #008000 0);
}
p.top {
	font-size:2rem;
  padding: 1rem 1rem;
  background-color:#fcf16e;
  border-top: 12px solid #008000;
  border-bottom: 12px solid #008000;
}

h2.top {
	font-size:1.6rem;
  padding: 1rem 1rem;
  background-color:#fcf16e;
  border-top: 12px solid #008000;
  border-bottom: 12px solid #008000;
}

h2:before {
  content: url('images/catch_ico.png');
}
/*リスト*/
.nonestyle {
    list-style: none;
	margin-left:-1rem;
}

/*テキストカラー*/
.blue {
	color:#03F;
}

/*新着情報*/
#news ul {
	width: 100%;
}
#news li {
  display: flex;
  padding:15px;
  border-bottom:1px solid #000;
}

#news .day {
  
}
#news .label {
  background-color:blue;
  border-radius:3px;
  color:#fff;
  padding:2px 5px;
  margin:0 20px;
}
#news .label2 {
  background-color:red;
  border-radius:3px;
  color:#fff;
  padding:2px 5px;
  margin:0 20px;
}
#news .text {
  
}
/*インラインフレーム*/
.iframe-wrapper {
  position: relative;
  /*padding-bottom: 56.25%;*/
  height: 400px;
  overflow: hidden;
}

.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
}

/*レスポンシブテーブル*/
/* table01 */
#table01 {
	width:100%;
}
#table01 tr {
  border-bottom: 1px solid #b5b1b1;
}

#table01 th,
#table01 td {
  padding: 24px 0;
  border: none;
}

#table01 th {
	width: 20%;
}

@media only screen and (max-width: 480px) {
  #table01 th,
  #table01 td {
    width: 100%;
    display: block;
  }

  #table01 th {
    width: 100%;
  }

  #table01 td {
    padding-top: 0;
  }
}

/* table02 */
#table02 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 16px;
}
#table02 th {
  width: 20%;
  background: #fff27d;
  border: 1px solid #ccc;
  box-sizing: border-box;
  padding: 15px;
  vertical-align: middle;
  font-weight: bold;
  text-align: left;
}
#table02 td {
  background: #fff;
  border: 1px solid #ccc;
  box-sizing: border-box;
  padding: 15px;
  vertical-align: top;
  text-align: left;
}
@media all and (max-width: 480px) {
  #table02 th, #table02 td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  #table02 tr:last-child td:last-child {
    border-bottom: 1px solid #ccc;
  }
}

/* TOTOPアイコン */
.totop {
  position: absolute;
  top: -60px;
  right: 40px;
}

/* Facebook */
.facebook_wrap{
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}
 
.fb-page,
.fb-page span,
.facebook_wrap iframe{
  width: 100% !important;
  height: 260px !important;
}

/* デバイス切替 */
.pc {
	display:block;
}
.sp {display:none;
}
@media (max-width: 576px) {
	.pc {
		display:none;
	}
	.sp {
		display:block;
	}
