@charset "UTF-8";
/*
Project Name: Gomi Calendar
Author:       Nishimoto
Version:      1.0
*/
/**
* Table of Contents
*
* 1.0 - Palette    配色
* 2.0 - Grid       レスポンシブレイアウトのためのグリッド
* 3.0 - Typography テキストの装飾
* 4.0 - Elements   各パーツの装飾
* 5.0 - Forms      フォームの装飾
* 6.0 - Navigation ナビゲーションの装飾
* 7.0 - Content    コンテンツの装飾 
*/
/**
* 1.0 - Palette
*/
/**
* 2.0 - Grid
*/
/*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/
/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Grid
- Utilities
- Clearing
*/
/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0;
  padding: 0 20px;
  box-sizing: border-box;
}

.column,
.columns,
.column_zero,
.columns_zero {
  width: 100%;
  float: left;
  box-sizing: border-box;
}

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 100%;
    padding: 0;
  }
}
/* For devices larger than 840px */
@media (min-width: 840px) {
  .container {
    width: 100%;
  }

  .column,
  .columns {
    margin-left: 4%;
  }

  .column_zero,
  .columns_zero {
    margin-left: 0;
  }

  .column:first-child,
  .columns:first-child {
    margin-left: 0;
  }

  .one.column,
  .one.columns {
    width: 4.66666666667%;
  }

  .two.columns {
    width: 13.3333333333%;
  }

  .three.columns {
    width: 22%;
  }

  .four.columns {
    width: 30.6666666667%;
  }

  .five.columns {
    width: 39.3333333333%;
  }

  .six.columns {
    width: 48%;
  }

  .seven.columns {
    width: 56.6666666667%;
  }

  .eight.columns {
    width: 65.3333333333%;
  }

  .nine.columns {
    width: 74.0%;
  }

  .ten.columns {
    width: 82.6666666667%;
  }

  .eleven.columns {
    width: 91.3333333333%;
  }

  .twelve.columns {
    width: 100%;
    margin-left: 0;
  }

  .one-third.column {
    width: 30.6666666667%;
  }

  .two-thirds.column {
    width: 65.3333333333%;
  }

  .one-half.column {
    width: 48%;
  }

  .one.column_zero,
  .one.columns_zero {
    width: 4.66666666667%;
  }

  .two.columns_zero {
    width: 13.3333333333%;
  }

  .three.columns_zero {
    width: 24%;
  }

  .four.columns_zero {
    width: 30.6666666667%;
  }

  .five.columns_zero {
    width: 39.3333333333%;
  }

  .six.columns_zero {
    width: 48%;
  }

  .seven.columns_zero {
    width: 56.6666666667%;
  }

  .eight.columns_zero {
    width: 65.3333333333%;
  }

  .nine.columns_zero {
    width: 76.0%;
  }

  .ten.columns_zero {
    width: 82.6666666667%;
  }

  .eleven.columns_zero {
    width: 91.3333333333%;
  }

  .twelve.columns_zero {
    width: 100%;
    margin-left: 0;
  }

  .one-third.column_zero {
    width: 30.6666666667%;
  }

  .two-thirds.column_zero {
    width: 65.3333333333%;
  }

  .one-half.column_zero {
    width: 48%;
  }

  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns {
    margin-left: 8.66666666667%;
  }

  .offset-by-two.column,
  .offset-by-two.columns {
    margin-left: 17.3333333333%;
  }

  .offset-by-three.column,
  .offset-by-three.columns {
    margin-left: 26%;
  }

  .offset-by-four.column,
  .offset-by-four.columns {
    margin-left: 34.6666666667%;
  }

  .offset-by-five.column,
  .offset-by-five.columns {
    margin-left: 43.3333333333%;
  }

  .offset-by-six.column,
  .offset-by-six.columns {
    margin-left: 52%;
  }

  .offset-by-seven.column,
  .offset-by-seven.columns {
    margin-left: 60.6666666667%;
  }

  .offset-by-eight.column,
  .offset-by-eight.columns {
    margin-left: 69.3333333333%;
  }

  .offset-by-nine.column,
  .offset-by-nine.columns {
    margin-left: 78.0%;
  }

  .offset-by-ten.column,
  .offset-by-ten.columns {
    margin-left: 86.6666666667%;
  }

  .offset-by-eleven.column,
  .offset-by-eleven.columns {
    margin-left: 95.3333333333%;
  }

  .offset-by-one-third.column,
  .offset-by-one-third.columns {
    margin-left: 34.6666666667%;
  }

  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns {
    margin-left: 69.3333333333%;
  }

  .offset-by-one-half.column,
  .offset-by-one-half.columns {
    margin-left: 52%;
  }
}
/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box;
}

.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box;
}

.u-pull-right {
  float: right;
}

.u-pull-left {
  float: left;
}

/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both;
}

/**
* 3.0 - Typography
*/
html {
  font-size: 62.5%;
}

body,
button,
input,
select,
textarea {
  color: #383825;
  font-family: "Avenir Next", Verdana, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  font-weight: 600;
  margin: 0;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  opacity: .65;
}

h1 {
  font-size: 26px;
  font-size: 2.6rem;
}

h2 {
  font-size: 24px;
  font-size: 2.4rem;
}

h3 {
  font-size: 22px;
  font-size: 2.2rem;
}

h4 {
  font-size: 20px;
  font-size: 2rem;
}

h5 {
  font-size: 18px;
  font-size: 1.8rem;
}

h6 {
  font-size: 16px;
  font-size: 1.6rem;
}

.double-double {
  position: relative;
  padding: .5em 0;
  margin-bottom: .5em;
}
.double-double::before, .double-double::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 6px;
  box-sizing: border-box;
}
.double-double::before {
  top: 0;
  border-top: 2px solid #3D7930;
  border-bottom: 1px solid #FBEC9A;
}
.double-double::after {
  bottom: 0;
  border-top: 1px solid #FBEC9A;
  border-bottom: 2px solid #3D7930;
}

.underline-color-double {
  position: relative;
  padding-bottom: .25em;
  margin-bottom: .5em;
  border-bottom: 4px solid #FBEC9A;
}
.underline-color-double::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  z-index: 2;
  content: '';
  width: 10%;
  height: 4px;
  background-color: #3D7930;
}

.underline {
  padding-bottom: .15em;
  margin-bottom: .5em;
  border-bottom-style: solid;
  border-bottom-width: 2px;
}
.underline.dark {
  border-bottom-color: #3D7930;
}
.underline.light {
  border-bottom-color: #3D7930;
}
.underline.accent {
  border-bottom-color: #FBEC9A;
}
.underline.basic {
  border-bottom-color: #FBEC9A;
}

.underline-double {
  padding-bottom: .15em;
  margin-bottom: .5em;
  border-bottom-style: double;
  border-bottom-width: 3px;
}
.underline-double.dark {
  border-bottom-color: #3D7930;
}
.underline-double.light {
  border-bottom-color: #3D7930;
}
.underline-double.accent {
  border-bottom-color: #FBEC9A;
}
.underline-double.basic {
  border-bottom-color: #FBEC9A;
}

.underline-dotted {
  padding-bottom: .15em;
  margin-bottom: .5em;
  border-bottom-style: dotted;
  border-bottom-width: 1px;
}
.underline-dotted.dark {
  border-bottom-color: #3D7930;
}
.underline-dotted.light {
  border-bottom-color: #3D7930;
}
.underline-dotted.accent {
  border-bottom-color: #FBEC9A;
}
.underline-dotted.basic {
  border-bottom-color: #FBEC9A;
}

p {
  margin: 0 0 1.75em;
}

dfn,
cite,
em,
i {
  font-style: normal;
}

blockquote {
  border: 0 solid #FBEC9A;
  border-left-width: 4px;
  color: #FBEC9A;
  font-size: 19px;
  font-size: 1.9rem;
  font-style: normal;
  line-height: 1.4736842105;
  margin: 0 0 1.4736842105em;
  padding: 0 0 0 1.263157895em;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

blockquote p {
  margin-bottom: 1.4736842105em;
}

blockquote cite,
blockquote small {
  color: secondary-text-color;
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
}

blockquote cite:before,
blockquote small:before {
  content: "\2014\00a0";
}

blockquote em,
blockquote i,
blockquote cite {
  font-style: normal;
}

blockquote strong,
blockquote b {
  font-weight: 400;
}

blockquote > :last-child {
  margin-bottom: 0;
}

address {
  font-style: normal;
  margin: 0 0 1.75em;
}

code,
kbd,
tt,
var,
samp,
pre {
  font-family: Inconsolata, メイリオ, Meiryo, ヒラギノ角ゴ Pro W3, Hiragino Kaku Gothic Pro, monospace;
}

pre {
  border: 1px solid #FBEC9A;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.3125;
  margin: 0 0 1.75em;
  max-width: 100%;
  overflow: auto;
  padding: 1.75em;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

code {
  background-color: #FBEC9A;
  padding: 0.125em 0.25em;
}

abbr,
acronym {
  border-bottom: 1px dotted #FBEC9A;
  cursor: help;
}

mark,
ins {
  background: #FBEC9A;
  color: #fff;
  padding: 0.125em 0.25em;
  text-decoration: none;
}

big {
  font-size: 125%;
}

em {
  font-weight: 600;
  color: #a81818;
}

.tc-dark {
  color: #3D7930;
}

.ta-l {
  text-align: left;
}

.ta-c {
  text-align: center;
}

.ta-r {
  text-align: right;
}

.u-line {
  text-decoration: underline;
}

/**
* 4.0 - Elements
*/
html {
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #3D7930;
  height: 100%;
}

*,
*:before,
*:after {
  -ms-box-sizing: inherit;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  -o-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  background-color: #3D7930;
}

hr {
  background-color: #3D7930;
  border: 0;
  height: 1px;
  margin: 0 0 1.75em;
}

del {
  opacity: 0.8;
}

/* Image
–––––––––––––––––––––––––––––––––––––––––––––––––– */
img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

/* Icon
–––––––––––––––––––––––––––––––––––––––––––––––––– */
i.fa {
  padding-left: 5px;
  padding-right: 5px;
}

/* Box
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.box {
  margin-left: 1em;
  margin-bottom: 2em;
}

.box__line-dark {
  margin: 20px;
  padding: 20px;
  border: 1px solid #3D7930;
  border-radius: .3em;
}

.box__line-light {
  margin: 20px;
  padding: 20px;
  border: 1px solid #3D7930;
  border-radius: .3em;
}

.box__line-accent {
  margin: 20px;
  padding: 20px;
  border: 1px solid #FBEC9A;
  border-radius: .3em;
}

.box__line-basic {
  margin: 20px;
  padding: 20px;
  border: 1px solid #FBEC9A;
  border-radius: .3em;
}

.box__color-dark {
  color: #FFFFD7;
  margin: 20px;
  padding: 20px;
  background: #3D7930;
  border-radius: .3em;
}
.box__color-dark dt {
  color: #FFFFD7 !important;
}

.box__color-light {
  color: #FFFFD7;
  margin: 20px;
  padding: 20px;
  background: #3D7930;
  border-radius: .3em;
}
.box__color-light dt {
  color: #FFFFD7 !important;
}

.box__color-accent {
  margin: 20px;
  padding: 20px;
  background: #FBEC9A;
  border-radius: .3em;
}

.box__color-basic {
  margin: 20px;
  padding: 20px;
  background: #FBEC9A;
  border-radius: .3em;
}

/* List
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul,
ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

ul > li {
  margin-bottom: .5em;
}

ol {
  list-style: decimal;
  margin-left: 1.5em;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

dl {
  margin: 0;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 95%;
}

.list-dark > li {
  padding-left: 1em;
  text-indent: -1em;
}
.list-dark > li:before {
  content: "\f111  ";
  font-family: FontAwesome;
  color: #3D7930;
}

.list-light > li {
  padding-left: 1em;
  text-indent: -1em;
}
.list-light > li:before {
  content: "\f111  ";
  font-family: FontAwesome;
  color: #FFFFD7;
}

.list-inline > li {
  text-indent: 1em;
  display: inline-block;
  padding: .5em;
}

.list-description dt {
  color: #3D7930;
  font-weight: 600;
  margin-bottom: .25em;
}
.list-description dd {
  margin-left: 0;
  margin-bottom: 1em;
}

/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px;
}

pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre;
}

/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem;
}

input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem;
}

pre,
blockquote,
figure,
table,
form {
  margin-bottom: 1rem;
}

/* Clear
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.clear:after {
  clear: both;
}

/**
* 5.0 - Forms
*/
/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  padding: 0 30px;
  color: #54523D;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 300;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #FBEC9A;
  cursor: pointer;
  box-sizing: border-box;
}
.special {
  padding: 8px 15px;
}
.button:hover, .button:focus,
button:hover,
button:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="reset"]:hover,
input[type="reset"]:focus,
input[type="button"]:hover,
input[type="button"]:focus {
  color: #FBEC9A;
  border-color: #FBEC9A;
  outline: 0;
  text-decoration: none;
}
.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  color: #FFF;
  text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.3);
  background-color: #3D7930;
  border-color: #3D7930;
}
.button.button-primary:hover, .button.button-primary:focus,
button.button-primary:hover,
button.button-primary:focus,
input[type="submit"].button-primary:hover,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:hover,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:hover,
input[type="button"].button-primary:focus {
  color: #3D7930;
  text-shadow: none;
  font-weight: bold;
  background-color: transparent;
  border-color: #3D7930;
  text-decoration: none;
}

/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 38px;
  padding: 6px 10px;
  /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box;
}

/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -ms-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
}

textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #33C3F0;
  outline: 0;
}

label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600;
}

fieldset {
  padding: 0;
  border-width: 0;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline;
}

label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal;
}

/* Placeholder text color -- selectors need to be separate to work. */
::-webkit-input-placeholder {
  color: #54523D;
  font-family: inherit;
}

:-moz-placeholder {
  color: #54523D;
  font-family: inherit;
}

::-moz-placeholder {
  color: #54523D;
  font-family: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #54523D;
  font-family: inherit;
}

/**
* 7.0 - Navigation
*/
/**
* 4.1 - Links
*/
a {
  color: #3D7930;
  text-decoration: none;
  transition: all .3s ease;
}
a:visited {
  color: #54523D;
}
a:hover, a:focus, a:active {
  color: #3D7930;
  text-decoration: underline;
}
a:hover, a:active {
  outline: 0;
}
a:focus {
  outline: thin dotted;
}

a.site-title__link {
  color: #FFFFD7;
  text-decoration: none;
}
a.site-title__link:visited {
  color: #FFFFD7;
}
a.site-title__link:hover, a.site-title__link:focus, a.site-title__link:active {
  color: #FFFFD7;
  text-decoration: none;
}
a.site-title__link:hover, a.site-title__link:active {
  outline: 0;
}
a.site-title__link:focus {
  outline: thin dotted;
}

/**
* 4.2 - Menus
*/
.menu-pc a,
.menu-sp a {
  color: #FBEC9A;
  text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.3);
}
.menu-pc a:visited,
.menu-sp a:visited {
  color: #FBEC9A;
}
.menu-pc a:hover, .menu-pc a:active, .menu-pc a:focus,
.menu-sp a:hover,
.menu-sp a:active,
.menu-sp a:focus {
  color: #FFFFD7;
  text-decoration: none;
}

.menu-pc {
  display: none;
}

.menu-sp {
  display: block;
  min-width: 300px;
  margin: 0 auto 10px;
  padding: 10px;
}

.menu-sp__content {
  margin: 0 10px;
}

.menu-sp input {
  display: none;
}

.menu-sp label {
  display: block;
  cursor: pointer;
  padding: 10px;
}

.menu-sp__cont {
  /*transition: all .3s ease;*/
  height: 0;
  overflow: hidden;
  padding: 0 10px;
}

.menu-sp input:checked + .menu-sp__cont {
  height: auto;
  padding: 0;
}

.menu-sp__menu > li {
  margin-bottom: 1px;
}

.menu-sp__menu > li > a {
  display: block;
  background: #3D7930;
  color: #FFFFD7;
  font-weight: 700;
  padding: 10px;
}
.menu-sp__menu > li > a:hover {
  background: #FBEC9A;
}

.menu-sp__menu > li:last-child a {
  border-radius: 0 0 .3em .3em;
}

@media (min-width: 750px) {
  .menu-pc {
    display: block;
    clear: both;
  }

  .menu-pc > li {
    display: inline-block;
    margin: 0 1em 1em;
    font-weight: 700;
  }

  .menu-sp {
    display: none;
  }
}
/**
* 7.0 - Content
*/
/**
* 7.1 - Wrapper
*/
#wrapper {
  position: relative;
  min-height: 100%;
}

/**
* 7.2 - Header
*/
.header {
  display: block;
  background-color: #3D7930;
  color: #FFFFD7;
}
.header a {
  color: #C0FFC0;
}
.header a:visited {
  color: #ECECEC;
}
.header .site-id {
  margin: 20px 10px;
  text-align: center;
}
.header .summary {
  padding: 0 10px;
}
.header .news-btn {
  display: none;
  padding: 0 10px 20px;
}
.header .town-list--sp,
.header .town-list--sp-conts {
  display: none;
}
.header .town-list--pc {
  display: block;
  padding: 0 10px 20px;
}
.header .town-list--pc .town-list__title {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 20px;
  border-bottom: 1px dotted #FFFFD7;
}
.header .town-list--pc .town-list__1st-list {
  margin-left: 1em;
}
.header .town-list--pc .town-list__1st-list li:first-letter {
  font-size: 24px;
  font-size: 2.4rem;
  padding: .25em;
  margin-right: .25em;
  background-color: #FFFFD7;
  color: #3D7930;
  border-radius: .8em;
}
.header .town-info {
  padding: 0 10px 20px;
}
.header .town-info .town-info__name {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.header .town-info .town-info__name span {
  font-size: 24px;
  font-size: 2.4rem;
}
.header .town-info .town-info__garbage dd {
  font-size: 24px;
  font-size: 2.4rem;
  margin-bottom: 1em;
  margin-left: 0;
  padding-left: 40px;
  font-weight: bold;
  color: #fff;
}
.header .garbage-info--pc {
  padding: 0 10px 20px;
}
.header .garbage-info--pc .garbage-info__name {
  font-size: 24px;
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.header .garbage-info--pc .garbage-info__garbage {
  margin-bottom: 20px;
}
.header .garbage-info--pc .select {
  position: relative;
}
.header .garbage-info--pc .select .icon_select {
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 839px) {
  .header {
    display: table;
  }
  .header .header__inner {
    display: table-cell;
  }
  .header .header__inner .site-id {
    text-align: left;
  }
  .header .town-list--pc {
    display: none;
  }
  .header .town-list--sp {
    display: table-cell;
    padding: 0 10px 20px;
    white-space: nowrap;
    vertical-align: top;
  }
  .header .town-list--sp .town-list__menu-btn {
    position: relative;
    width: 100px;
    text-align: center;
    vertical-align: middle;
    z-index: 50;
  }
  .header .town-list--sp .town-list__menu-btn a {
    display: block;
    width: 100px;
    height: 100px;
    background: transparent url(../img/sp_btn_town-select.png) no-repeat 0 0;
    background-size: 200px;
    position: absolute;
    left: 0;
    top: 25px;
    border: 1px solid #FFFFD7;
    border-radius: .3em;
    transition-duration: 0s !important;
  }
  .header .town-list--sp .town-list__menu-btn a.close {
    background-position: -100px 0;
  }
  .header .town-list--sp-conts {
    display: none;
    position: absolute;
    right: 0;
    top: 130px;
    width: 100%;
    z-index: 100;
    white-space: nowrap;
    background-color: #3D7930;
  }
  .header .town-list--sp-conts .town-list__1st-list {
    text-align: center;
  }
  .header .town-list--sp-conts .town-list__1st-list li a {
    display: block;
    padding: 20px 10px;
    border-bottom: 1px solid #FFFFD7;
  }
  .header .town-info .town-info__name {
    text-align: center;
  }
  .header .town-info .town-info__box {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .header .town-info .town-info__garbage {
    box-sizing: border-box;
    text-align: center;
  }
  .header .town-info .town-info__garbage dd {
    margin: 0 0 2em;
    padding-left: 0;
  }
  .header .garbage-info--pc {
    display: none;
  }
}
/**
* 7.3 - Main 
*/
.main {
  padding: 20px;
  position: relative;
  background-color: #FFFFD7;
}
.main .news-conts {
  margin: 20px 20px 20px;
}
.main .news-conts .news-conts__list {
  margin-left: 1em;
  margin-bottom: 20px;
}
.main .news-conts .news-conts__note--pc,
.main .news-conts .news-conts__note--sp {
  text-align: center;
  margin: 60px 0;
}
.main .news-conts .news-conts__note--pc i,
.main .news-conts .news-conts__note--sp i {
  margin-top: 30px;
}
.main .news-conts .news-conts__note--pc {
  display: block;
}
.main .news-conts .news-conts__note--sp {
  display: none;
}
.main .town-list-conts {
  display: none;
  margin: 20px 20px 20px;
}
.main .town-list-conts .town-list__2nd-list {
  margin-left: 1em;
  margin-bottom: 20px;
}
.main .garbage-calendar {
  position: relative;
  margin: 0px 10px 20px;
}
.main .garbage-calendar .prev {
  position: absolute;
  left: 0;
  top: 20px;
}
.main .garbage-calendar .next {
  position: absolute;
  right: 0;
  top: 20px;
}
.main .garbage-calendar .this-month,
.main .garbage-calendar .town-name {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: .5em;
  padding-left: 50px;
  padding-right: 50px;
}
.main .garbage-calendar .this-month span,
.main .garbage-calendar .town-name span {
  font-size: 28px;
  font-size: 2.8rem;
}
.main .garbage-calendar .town-name {
  border-bottom: 1px dotted #3D7930;
  padding-left: 100px;
  padding-right: 100px;
  margin-bottom: 1em;
}
.main .garbage-calendar .move-year .prev-year {
  position: absolute;
  left: 0;
  top: 0;
}
.main .garbage-calendar .move-year .prev-year a {
  padding: 5px 10px;
}
.main .garbage-calendar .move-year .next-year {
  position: absolute;
  right: 0;
  top: 0;
}
.main .garbage-calendar .move-year .next-year a {
  padding: 5px 10px;
}
.main .garbage-calendar .year-calendar__legend {
  width: 96%;
  margin-left: 2%;
  margin-right: 2%;
  text-align: center;
}
.main .garbage-calendar .year-calendar__legend li {
  display: inline-block;
  padding-right: 10px;
}
.main .garbage-calendar .year-calendar__legend li img {
  margin-right: 3px;
}
.main .garbage-calendar .caution {
  color: #a81818;
  font-weight: bold;
  margin-left: 0;
  margin-right: 0;
}
.main .garbage-calendar .calendar--sp {
  display: none;
}
.main .garbage-calendar .year-calendar__box .calendar--pc .calendar td .cell {
  padding: 5px;
  min-height: 128px;
}
.main .garbage-calendar .year-calendar__box .calendar--pc .calendar td .cell .item {
  margin-bottom: 5px;
}
.main .garbage-calendar .calendar--pc {
  display: block;
}
.main .garbage-calendar .calendar--pc .calendar {
  width: 100%;
  table-layout: fixed;
  border: 2px solid #3D7930;
}
.main .garbage-calendar .calendar--pc .calendar th span,
.main .garbage-calendar .calendar--pc .calendar td span {
  box-sizing: border-box;
  display: block;
  padding: 15px;
  min-height: 40px;
}
.main .garbage-calendar .calendar--pc .calendar th .cell,
.main .garbage-calendar .calendar--pc .calendar td .cell {
  box-sizing: border-box;
  padding: 10px;
  min-height: 80px;
}
.main .garbage-calendar .calendar--pc .calendar th .cell .date,
.main .garbage-calendar .calendar--pc .calendar td .cell .date {
  margin-bottom: .25em;
  font-size: 20px;
  font-size: 2rem;
}
.main .garbage-calendar .calendar--pc .calendar th .cell .item,
.main .garbage-calendar .calendar--pc .calendar td .cell .item {
  line-height: 1.5;
  margin-bottom: 10px;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: bold;
}
.main .garbage-calendar .calendar--pc .calendar th .cell .item.moyasu,
.main .garbage-calendar .calendar--pc .calendar td .cell .item.moyasu {
  background: url(../img/icon_moyasu_cal.png) left top no-repeat;
  background-size: 30px;
  min-height: 34px;
  padding-left: 35px;
}
.main .garbage-calendar .calendar--pc .calendar th .cell .item.bin,
.main .garbage-calendar .calendar--pc .calendar td .cell .item.bin {
  background: url(../img/icon_bin_cal.png) left top no-repeat;
  background-size: 30px;
  min-height: 34px;
  padding-left: 35px;
}
.main .garbage-calendar .calendar--pc .calendar th .cell .item.moyasanai,
.main .garbage-calendar .calendar--pc .calendar td .cell .item.moyasanai {
  background: url(../img/icon_moyasanai_cal.png) left top no-repeat;
  background-size: 30px;
  min-height: 34px;
  padding-left: 35px;
}
.main .garbage-calendar .calendar--pc .calendar th .cell .item.moyasanai2,
.main .garbage-calendar .calendar--pc .calendar td .cell .item.moyasanai2 {
  background: url(../img/icon_moyasanai2_cal.png) left top no-repeat;
  background-size: 30px;
  min-height: 34px;
  padding-left: 35px;
}
.main .garbage-calendar .calendar--pc .calendar th .cell .item.shigena,
.main .garbage-calendar .calendar--pc .calendar td .cell .item.shigena {
  background: url(../img/icon_shigena_cal.png) left top no-repeat;
  background-size: 30px;
  min-height: 34px;
  padding-left: 35px;
}
.main .garbage-calendar .calendar--pc .calendar th .cell .item.shigenb,
.main .garbage-calendar .calendar--pc .calendar td .cell .item.shigenb {
  background: url(../img/icon_shigenb_cal.png) left top no-repeat;
  background-size: 30px;
  min-height: 34px;
  padding-left: 35px;
}
.main .garbage-calendar .calendar--pc .calendar th .cell .item.sonota,
.main .garbage-calendar .calendar--pc .calendar td .cell .item.sonota {
  background: url(../img/icon_sonota_cal.png) left top no-repeat;
  background-size: 30px;
  min-height: 34px;
  padding-left: 35px;
}
.main .garbage-calendar .calendar--pc .calendar th .cell .item.bottle,
.main .garbage-calendar .calendar--pc .calendar td .cell .item.bottle {
  background: url(../img/icon_bottle_cal.png) left top no-repeat;
  background-size: 30px;
  min-height: 34px;
  padding-left: 35px;
}
.main .garbage-calendar .calendar--pc .calendar th .cell .item.kan,
.main .garbage-calendar .calendar--pc .calendar td .cell .item.kan {
  background: url(../img/icon_kanpet_cal.png) left top no-repeat;
  background-size: 30px;
  min-height: 34px;
  padding-left: 35px;
}
.main .garbage-calendar .calendar--pc .calendar th .cell .item-print,
.main .garbage-calendar .calendar--pc .calendar td .cell .item-print {
  line-height: 1.5;
  margin-bottom: 5px;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}
.main .garbage-calendar .calendar--pc .calendar th.sunday,
.main .garbage-calendar .calendar--pc .calendar td.sunday {
  background-color: rgba(168, 24, 24, 0.2);
}
.main .garbage-calendar .calendar--pc .calendar th.sunday .date,
.main .garbage-calendar .calendar--pc .calendar td.sunday .date {
  color: #a81818;
}
.main .garbage-calendar .calendar--pc .calendar th.saturday,
.main .garbage-calendar .calendar--pc .calendar td.saturday {
  background-color: rgba(58, 53, 130, 0.2);
}
.main .garbage-calendar .calendar--pc .calendar th.saturday .date,
.main .garbage-calendar .calendar--pc .calendar td.saturday .date {
  color: #3A3582;
}
.main .garbage-calendar .calendar--pc .calendar th {
  font-size: 28px;
  font-size: 2.8rem;
  text-align: center;
  border-left: 1px solid #3D7930;
  border-bottom: 3px double #3D7930;
}
.main .garbage-calendar .calendar--pc .calendar th:first-child {
  border-left: none;
}
.main .garbage-calendar .calendar--pc .calendar td {
  border: 1px solid #3D7930;
  vertical-align: top;
}
.main .garbage-notes {
  margin-left: 10px;
}
.main .garbage-notes .caution {
  font-size: 14px;
  font-size: 1.4rem;
  color: #a81818;
  padding-left: 0;
  padding-right: 300px;
  padding-bottom: 100px;
}
.main .garbage-notes .print {
  margin-bottom: .5em;
}
.main .garbage-notes .print a {
  display: inline-block;
  min-width: 160px;
  padding: 5px 10px;
}
.main .garbage-notes .print .sp_none {
  display: inline-block;
}
.main .garbage-notes .note {
  position: absolute;
  right: 10px;
  bottom: -10px;
}
.main .garbage-description {
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 200px;
}
.main .garbage-description .garbage-name {
  padding-bottom: .25em;
  border-bottom: 3px solid #3D7930;
  margin-bottom: 1em;
}
.main .garbage-description .garbage-name span {
  display: inline-block;
  vertical-align: text-bottom;
  margin-left: 1em;
  padding: 8px 10px;
  line-height: 1;
  border-radius: .3em;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: normal;
  color: #FFFFD7;
  background-color: #3D7930;
}
.main .garbage-description .garbage-summary {
  margin-bottom: 2em;
}
.main .garbage-description .garbage-item {
  padding-bottom: 2em;
}
.main .garbage-description .garbage-item .garbage-item__name {
  text-align: center;
}
.main .garbage-description .garbage-item .garbage-item__img {
  text-align: center;
}

@media (min-width: 840px) and (max-width: 860px) {
  .main,
  .header {
    min-height: 1100px;
  }
}
@media (min-width: 860px) and (max-width: 1269px) {
  .main,
  .header {
    min-height: 1050px;
  }
}
@media (min-width: 1270px) and (max-width: 1319px) {
  .main,
  .header {
    min-height: 950px;
  }
}
@media (min-width: 1320px) {
  .main,
  .header {
    min-height: 880px;
  }
}
@media (max-width: 839px) {
  .main .news-conts .news-conts__list li {
    padding-left: 0;
    text-indent: 0;
  }
  .main .news-conts .news-conts__list li:before {
    content: '';
  }
  .main .news-conts .news-conts__list li a {
    display: block;
    padding: 20px 0;
    border-bottom: 1px dotted #3D7930;
  }
  .main .news-conts .news-conts__note--pc {
    display: none;
  }
  .main .news-conts .news-conts__note--sp {
    display: block;
  }
  .main .town-list-conts .town-list__2nd-list {
    margin-left: 0;
    margin-bottom: 20px;
  }
  .main .town-list-conts .town-list__2nd-list li:before {
    content: '';
  }
  .main .town-list-conts .town-list__2nd-list li a {
    display: block;
    padding: 20px 10px;
    border-bottom: 1px dotted #3D7930;
  }
  .main .garbage-calendar {
    position: relative;
    margin: 20px 0;
  }
  .main .garbage-calendar .prev {
    position: absolute;
    left: 10px;
    top: 0;
  }
  .main .garbage-calendar .next {
    position: absolute;
    right: 10px;
    top: 0;
  }
  .main .garbage-calendar .this-month {
    font-size: 20px;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: .5em;
    padding-top: 50px;
  }
  .main .garbage-calendar .this-month span {
    font-size: 28px;
    font-size: 2.8rem;
  }
  .main .garbage-calendar .caution {
    color: #a81818;
    font-weight: bold;
    margin-left: 10px;
    margin-right: 10px;
  }
  .main .garbage-calendar .year-calendar__box {
    padding-top: 20px;
  }
  .main .garbage-calendar .calendar--sp {
    display: block;
  }
  .main .garbage-calendar .calendar--sp .calendar {
    width: 100%;
    border-top: 2px solid #3D7930;
    border-bottom: 2px solid #3D7930;
  }
  .main .garbage-calendar .calendar--sp .calendar span {
    box-sizing: border-box;
    display: block;
    padding: 15px;
    min-height: 40px;
  }
  .main .garbage-calendar .calendar--sp .calendar .item {
    margin-bottom: 5px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .main .garbage-calendar .calendar--sp .calendar dt {
    padding: 10px 10px 0;
  }
  .main .garbage-calendar .calendar--sp .calendar dt .date {
    margin-bottom: 0;
    padding-bottom: .25em;
    font-size: 20px;
    font-size: 2rem;
  }
  .main .garbage-calendar .calendar--sp .calendar dt.sunday {
    background-color: rgba(168, 24, 24, 0.2);
  }
  .main .garbage-calendar .calendar--sp .calendar dt.sunday .date {
    color: #a81818;
  }
  .main .garbage-calendar .calendar--sp .calendar dt.saturday {
    background-color: rgba(58, 53, 130, 0.2);
  }
  .main .garbage-calendar .calendar--sp .calendar dt.saturday .date {
    color: #3A3582;
  }
  .main .garbage-calendar .calendar--sp .calendar dd {
    margin-left: 0;
    padding: 10px;
    border-bottom: 1px dotted #3D7930;
  }
  .main .garbage-calendar .calendar--sp .calendar dd .item.moyasu {
    background: url(../img/icon_moyasu_cal.png) left top no-repeat;
    background-size: 30px;
    min-height: 34px;
    padding-left: 35px;
  }
  .main .garbage-calendar .calendar--sp .calendar dd .item.bin {
    background: url(../img/icon_bin_cal.png) left top no-repeat;
    background-size: 30px;
    min-height: 34px;
    padding-left: 35px;
  }
  .main .garbage-calendar .calendar--sp .calendar dd .item.moyasanai {
    background: url(../img/icon_moyasanai_cal.png) left top no-repeat;
    background-size: 30px;
    min-height: 34px;
    padding-left: 35px;
  }
  .main .garbage-calendar .calendar--sp .calendar dd .item.moyasanai2 {
    background: url(../img/icon_moyasanai2_cal.png) left top no-repeat;
    background-size: 30px;
    min-height: 34px;
    padding-left: 35px;
  }
  .main .garbage-calendar .calendar--sp .calendar dd .item.shigena {
    background: url(../img/icon_shigena_cal.png) left top no-repeat;
    background-size: 30px;
    min-height: 34px;
    padding-left: 35px;
  }
  .main .garbage-calendar .calendar--sp .calendar dd .item.shigenb {
    background: url(../img/icon_shigenb_cal.png) left top no-repeat;
    background-size: 30px;
    min-height: 34px;
    padding-left: 35px;
  }
  .main .garbage-calendar .calendar--sp .calendar dd .item.sonota {
    background: url(../img/icon_sonota_cal.png) left top no-repeat;
    background-size: 30px;
    min-height: 34px;
    padding-left: 35px;
  }
  .main .garbage-calendar .calendar--sp .calendar dd .item.bottle {
    background: url(../img/icon_bottle_cal.png) left top no-repeat;
    background-size: 30px;
    min-height: 34px;
    padding-left: 35px;
  }
  .main .garbage-calendar .calendar--sp .calendar dd .item.kan {
    background: url(../img/icon_kanpet_cal.png) left top no-repeat;
    background-size: 30px;
    min-height: 34px;
    padding-left: 35px;
  }
  .main .garbage-calendar .calendar--sp .calendar .sunday + dd {
    background-color: rgba(168, 24, 24, 0.2);
  }
  .main .garbage-calendar .calendar--sp .calendar .saturday + dd {
    background-color: rgba(58, 53, 130, 0.2);
  }
  .main .garbage-calendar .calendar--sp .calendar th {
    text-align: center;
    border-left: 1px solid #FFFFD7;
    background-color: #3D7930;
    color: #FFFFD7;
  }
  .main .garbage-calendar .calendar--sp .calendar th:first-child {
    border-left: none;
  }
  .main .garbage-calendar .calendar--sp .calendar td {
    border: 1px solid #3D7930;
    vertical-align: top;
  }
  .main .garbage-calendar .calendar--pc {
    display: none;
  }
  .main .garbage-notes .caution {
    font-size: 14px;
    font-size: 1.4rem;
    color: #a81818;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 0;
  }
  .main .garbage-notes .print .sp_none {
    display: none;
  }
  .main .garbage-notes .note {
    position: static;
    text-align: right;
  }
  .main .garbage-description {
    margin-bottom: 20px;
  }
}
/**
* 7.4 - Footer
*/
.footer,
.footer_print {
  background-image: url(../img/bg_car.png), url(../img/bg_garbage.png);
  background-position: left bottom, right bottom;
  background-repeat: no-repeat, no-repeat;
  background-size: 300px, 200px;
  background-color: #3D7930;
  color: #FFFFD7;
}
.footer a,
.footer_print a {
  color: #C0FFC0;
}
.footer a:visited,
.footer_print a:visited {
  color: #ECECEC;
}
.footer .sub-menu .sub-menu__list {
  margin: 20px;
}
.footer .sub-menu .sub-menu__list li {
  font-size: 14px;
  font-size: 1.4rem;
  padding: 0 .5em .5em;
  margin-bottom: 0;
}
.footer .footer__box {
  width: 840px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.footer .footer__box .mobile {
  float: left;
  width: 400px;
  display: table;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 20px;
}
.footer .footer__box .mobile img,
.footer .footer__box .mobile p {
  display: table-cell;
  vertical-align: middle;
  padding: 10px 10px 0;
}
.footer .footer__box .inq {
  float: left;
  width: 400px;
  display: table;
  margin: 0 10px 20px;
}
.footer .footer__box .inq .inq__title,
.footer .footer__box .inq address {
  display: table-cell;
  vertical-align: middle;
  padding: 10px 10px 0;
}
.footer .caution,
.footer_print .caution {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 5px;
}
.footer .copyright,
.footer_print .copyright {
  clear: both;
  margin: 0 20px 20px;
  text-align: center;
}

.footer_print .town-info {
  padding: 20px;
}
.footer_print .town-info table {
  text-align: center;
  width: 100%;
}
.footer_print .town-info table th,
.footer_print .town-info table td {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.25;
  padding: 5px;
}

@media (max-width: 839px) {
  .footer,
  .footer_print {
    background-position: -150px bottom, right bottom;
  }
  .footer .sub-menu .sub-menu__list {
    margin: 0 0 20px;
  }
  .footer .sub-menu .sub-menu__list li {
    display: block;
    font-size: 14px;
    font-size: 1.4rem;
    padding: 0;
    margin-bottom: 0;
  }
  .footer .sub-menu .sub-menu__list li:before {
    content: '';
  }
  .footer .sub-menu .sub-menu__list li a {
    display: block;
    padding: 20px 10px;
    border-bottom: 1px dotted #FFFFD7;
  }
  .footer .footer__box {
    width: 100%;
  }
  .footer .footer__box .moble,
  .footer .footer__box .inq {
    float: none;
  }
}
.garbage-info--sp {
  display: none;
}

@media (max-width: 839px) {
  .garbage-info--sp {
    clear: both;
    margin: 20px 10px;
    padding-top: 10px;
    display: block;
    background-color: #3D7930;
    color: #FFFFD7;
    border-radius: .3em;
  }
  .garbage-info--sp a {
    color: #C0FFC0;
  }
  .garbage-info--sp a:visited {
    color: #ECECEC;
  }
  .garbage-info--sp .garbage-info__name {
    text-align: center;
  }
  .garbage-info--sp .garbage-info__box {
    overflow: hidden;
  }
  .garbage-info--sp .garbage-info__garbage {
    float: left;
    width: 50%;
    box-sizing: border-box;
    text-align: center;
    padding-bottom: 15px;
  }
  .garbage-info--sp .select .icon_select {
    display: none;
  }
}
.overlay {
  z-index: 1;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.75);
}

.pagetop a {
  display: block;
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 10px 5px 5px 5px;
  background-color: #3D7930;
  border-radius: 50%;
  border: #FFFFD7 1px dashed;
  color: #FFFFD7;
}
.pagetop a:visited {
  color: #FFFFD7;
}

@media (max-width: 839px) {
  .pagetop a {
    display: block;
    position: static;
    padding: 20px 15px 15px 20px;
    background-color: #3D7930;
    border-radius: 0;
    border-top: #FFFFD7 1px dashed;
    border-left: none;
    border-right: none;
    border-bottom: none;
    text-align: center;
  }
  .pagetop a:visited {
    color: #FFFFD7;
  }
}
/* Print */
.print-text {
  text-align: center;
}
.print-text a {
  padding: 5px 10px;
}

/* Print Caution */
.print-caution .print-caution__img {
  text-align: center;
  margin-bottom: 1em;
}
.print-caution .print-caution__img img {
  border: 1px solid #3D7930;
}

/* Accordion */
.accordion {
  margin-bottom: 30px;<p></p>
}
.accordion summary {
    position: relative;
    padding-right: 2em;
    font-size: 2.2rem;
    font-weight: 600;
    cursor: pointer;
}
.accordion summary::-webkit-details-marker {
    display: none;
}
.accordion summary::after {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #3D7930;
    border-right: 3px solid #3D7930;
    content: '';
    transition: transform .3s;
    background-color: #FFFFD7;
}
.accordion[open] summary::after {
    transform: rotate(225deg);
}
.accordion[open] ul {
    transform: none;
    opacity: 1;
}
.accordion[open] ul.list-dark li {
  padding-left: 0;
  text-indent: 0;
}

/* カレンダー選択リスト */
.list-dark_c {
  margin-left: 1em;
}
.list-dark_c > li {
  padding-left: 1em;
  text-indent: -1em;
}
.list-dark_c > li:before {
  content: "\f111  ";
  font-family: FontAwesome;
  color: #3D7930;
}
.news-conts__title_c {
  margin-left: 1em;
  padding-left: .5em;
  border-left: 5px #3D7930 solid;
}
.news-conts__note_c {
  margin-left: 1.5em;
  margin-bottom: .5em;
}
.news-conts__box_c {
  margin-left: .5em;
}