@charset "UTF-8";
/*!
Theme Name: 
Version: 
*/
/*
sass/
├── foundation/
├── layout/
├── object/
└── style.scss  <<<
*/
/*
foundation/
├── _base.scss
├── _foundation.scss  <<<
├── _mixins.scss
├── _reset.scss
└── _variables.scss
*/
/* usage
.elements {
	@include mq {...}
	@include mq(lg) {...}
	@include mq(sm, max) {...}
	@include mq(lg, max, true) {...}

  @include mq(md) {
		@include mq(large, max, true) {...}
  }
	@media screen and (min-width: 768px) and (max-width: 1023px) {
  	.elements {...}
	}
}
*/
/* sass/foundation/reset */
html {
  font-size: 16px;
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* minireset.css v0.0.3 | MIT License | github.com/jgthms/minireset.css */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

img,
embed,
object,
audio,
video {
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
  max-width: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
  text-align: left;
}

/*
foundation/
├── _base.scss
├── _foundation.scss  <<<
├── _mixins.scss
├── _reset.scss
└── _variables.scss
*/
/* sass/foundation/base */
/*
 * Typography
 */
body,
button,
input,
select,
textarea,
pre,
code,
kbd,
tt,
var {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
button,
input,
select,
textarea,
pre,
code,
kbd,
tt,
var {
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "游ゴシック  Medium", meiryo, sans-serif;
}

/* IE10以上 */
@media all and (-ms-high-contrast: none) {
  html {
    font-family: Verdana, Meiryo, sans-serif;
  }
}
@media all and (-ms-high-contrast: active) {
  html {
    font-family: Verdana, Meiryo, sans-serif;
  }
}
/*
 * Elements
 */
body {
  background: #f5f5f5;
  color: #212121;
}

html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4em;
}

a {
  color: #444;
  text-decoration: none;
}
a:active, a:focus, a:hover {
  color: #555;
}
a:visited, a:hover, a:focus, a:active {
  outline: 0;
  text-decoration: none;
}

a {
  color: #44883d;
  text-decoration: none;
  transition: color 0.5s;
}

a img {
  opacity: 1;
  transition: opacity 0.5s;
}

a:hover {
  color: #ffa800;
  text-decoration: underline;
}

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

ul,
ol,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
layout/
├── _footer.scss
├── _header.scss
├── _layout.scss  <<<
├── _main-contents.scss
├── _top-contents.scss
├── _contents-info.scss
└── _sidebar.scss
*/
/* sass/layout/header */
#site-header {
  margin-top: 50px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #site-header {
    margin-top: 0;
    height: 50px;
    width: 100%;
  }
}
#site-header .header-img {
  background-color: rgba(255, 255, 255, 0.97);
  border-bottom: solid 3px #8BC34A;
  position: relative;
  width: 100%;
  /*
  &::after {
  	background-image: url('img/logo-mark.svg');
  	background-repeat: no-repeat;
  	background-position: center center;
  	background-size: 70%;
  	content: '';
  	height: 100%;
  	position: absolute;
  	top: 0;
  	left: 0;
  	bottom: 0;
  	width: 100%;
  	z-index: -1;
  	@include mq(sm, max, true) {
  		display: none;
  	}
  }
  */
}
@media screen and (max-width: 767px) {
  #site-header .header-img {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 500;
  }
}
#site-header .header-img #logo {
  margin: auto;
  padding: 30px 15px;
  position: relative;
  width: 360px;
  z-index: 510;
}
@media screen and (max-width: 767px) {
  #site-header .header-img #logo {
    padding: 7px 15px;
    width: 200px;
  }
}
#site-header .header-img #logo img {
  width: 100%;
}
#site-header .header-img .sns-icon {
  font-size: 26px;
  height: 40px;
  position: absolute;
  top: 15px;
  width: 40px;
}
@media screen and (max-width: 767px) {
  #site-header .header-img .sns-icon {
    font-size: 16px;
    height: 32px;
    position: absolute;
    top: 10px;
    width: 32px;
  }
}
#site-header .header-img .sns-icon a {
  border-radius: 100%;
  color: #fff;
  display: block;
  padding: 7px;
  text-align: center;
}
#site-header .header-img .sns-icon a:active, #site-header .header-img .sns-icon a:focus, #site-header .header-img .sns-icon a:hover {
  color: #fff;
}
@media screen and (max-width: 767px) {
  #site-header .header-img .sns-icon a {
    padding: 6px;
  }
}
#site-header .header-img .sns-icon.sns-icon-fb {
  right: 15px;
}
@media screen and (max-width: 767px) {
  #site-header .header-img .sns-icon.sns-icon-fb {
    right: 5px;
  }
}
#site-header .header-img .sns-icon.sns-icon-fb a {
  background-color: #5890ff;
}
#site-header .header-img .sns-icon.sns-icon-ig {
  right: 65px;
}
@media screen and (max-width: 767px) {
  #site-header .header-img .sns-icon.sns-icon-ig {
    right: 40px;
  }
}
#site-header .header-img .sns-icon.sns-icon-ig a {
  background-color: #ff0069;
}
#site-header .header-img .sns-icon.sns-icon-yt {
  right: 115px;
}
@media screen and (max-width: 767px) {
  #site-header .header-img .sns-icon.sns-icon-yt {
    right: 75px;
  }
}
#site-header .header-img .sns-icon.sns-icon-yt a {
  background-color: #da1725;
}
#site-header .header-img .modal-container {
  display: none;
}
@media screen and (max-width: 767px) {
  #site-header .header-img .modal-container {
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
  }
}
#site-header .header-img .modal-container .main-modal-btn {
  cursor: pointer;
  padding: 8px 15px;
}
#site-header .header-img .modal-container .main-modal-btn .fa {
  font-size: 26px;
  margin: 3px;
}
@media screen and (max-width: 767px) {
  #site-header .header-img .modal-container .main-modal-btn .fa {
    color: #424242;
  }
}

/* sass/layout/main-contents */
#main-contents #main-center {
  margin-bottom: 15px;
}
#main-contents #article {
  background: #fff;
  padding: 25px;
  border: 1px solid #ccc;
  overflow: hidden;
  margin-bottom: 25px;
}
#main-contents #article .article-ttl {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ccc;
}
#main-contents #article .article-ttl .article-label {
  display: inline-block;
  padding: 0 10px;
  color: #fff;
  font-size: 0.85rem;
  line-height: 1.8;
  background-color: #ffa800;
}
#main-contents #article .article-ttl h1 {
  font-size: 1.5rem;
  font-weight: bold;
}
#main-contents #article .article-ttl span {
  color: #44883d;
}
#main-contents #article .article-ttl p {
  font-size: 16px;
  line-height: 1.6;
}

/* sass/layout/sidebar */
.side {
  background-color: #fff;
  margin-left: -10px;
  margin-right: -10px;
}
@media screen and (max-width: 767px) {
  .side {
    margin-left: 0;
    margin-right: 0;
  }
}

/* sass/layout/top-contents */
#top-contents {
  margin: 15px auto;
}
#top-contents .description {
  margin: 0 15px 15px;
}
#top-contents .description .description-logo {
  float: left;
}
@media screen and (max-width: 767px) {
  #top-contents .description .description-logo {
    display: none;
  }
}
#top-contents .description .description-logo img {
  height: 26px;
  margin-right: 5px;
  width: auto;
}
#top-contents .description h1 {
  color: #212121;
  font-size: 12.8px;
  font-size: 0.8rem;
  position: relative;
  top: 5px;
}
#top-contents .description h1 a {
  color: #212121;
}
#top-contents .description h1 a:active, #top-contents .description h1 a:focus, #top-contents .description h1 a:hover {
  color: #212121;
}
#top-contents .description h1 a .fa {
  margin: 0 5px;
}
@media screen and (max-width: 767px) {
  #top-contents .description h1 {
    font-size: 11.2px;
    font-size: 0.7rem;
    top: 0;
  }
}
#top-contents #slider {
  display: none;
}
#top-contents #slider.slick-initialized {
  display: block;
}
#top-contents #slider .slider-content {
  position: relative;
}
#top-contents #slider .slider-content img {
  height: auto;
  width: 100%;
}
#top-contents #slider .slider-content .slider-caption {
  background-color: rgba(255, 255, 255, 0.75);
  padding: 10px;
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #top-contents #slider .slider-content .slider-caption {
    padding: 5px;
  }
}
#top-contents #slider .slider-content .slider-caption h2.entry-title {
  font-size: 17.6px;
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0;
  padding: 0;
}
#top-contents #slider .slider-content .slider-caption h2.entry-title a {
  color: #212121;
  text-shadow: 1px 1px 0 rgb(255, 255, 255);
}
#top-contents #slider .slider-content .slider-caption h2.entry-title a:active, #top-contents #slider .slider-content .slider-caption h2.entry-title a:focus, #top-contents #slider .slider-content .slider-caption h2.entry-title a:hover {
  color: #212121;
}
@media screen and (max-width: 767px) {
  #top-contents #slider .slider-content .slider-caption h2.entry-title {
    font-size: 14.4px;
    font-size: 0.9rem;
  }
}
#top-contents #slider .slider-content .slider-caption p {
  margin-top: 10px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  #top-contents #slider .slider-content .slider-caption p {
    margin-top: 5px;
    font-size: 12.8px;
    font-size: 0.8rem;
  }
}
#top-contents #slider .slider-content .slider-tag {
  background-color: #F44336;
  border: solid 1px #fff;
  color: #fff;
  font-size: 12.8px;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 10px;
  position: absolute;
  top: 10px;
  left: 10px;
}
#top-contents #event {
  background-color: #fff;
  padding-bottom: 1px;
}
#top-contents #event .news-title {
  background-color: #8BC34A;
}
#top-contents #event .news-title h2 {
  color: #fff;
  font-weight: bold;
}
#top-contents #event .content-news-wrap .content-news .entry-title a {
  color: #0d47a1;
}
#top-contents #event .content-news-wrap .content-news .entry-title a:active, #top-contents #event .content-news-wrap .content-news .entry-title a:focus, #top-contents #event .content-news-wrap .content-news .entry-title a:hover {
  color: #0d47a1;
}
#top-contents #event .contents-search {
  margin: 15px;
}
#top-contents .information-news {
  background-color: #fff;
  border: solid 1px #F44336;
  margin: 35px 15px;
  padding: 10px 15px;
  position: relative;
}
#top-contents .information-news .information-icon {
  background-color: #F44336;
  color: #fff;
  font-size: 12.8px;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 3px 10px;
  position: absolute;
  top: -25px;
  left: -1px;
}
#top-contents .information-news li {
  margin: 5px 0;
}

/* sass/layout/contents-info */
#contents-info {
  width: 100%;
}
#contents-info #section-name {
  line-height: 2.5;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  background-color: #86af49;
}
#contents-info #section-name .inner {
  min-width: 1000px;
  padding-left: 15px;
}
#contents-info #section-name.green {
  background-color: #44883d;
}
#contents-info #section-name.bluegreen {
  background-color: #00939a;
}
#contents-info #section-name.blue {
  background-color: #0062a3;
}

/* sass/layout/footer */
#site-footer {
  background-color: #689F38;
  color: #fff;
  margin-top: 30px;
  padding-top: 30px;
}
#site-footer a {
  color: #fff;
  transition: all 0.4s;
}
#site-footer a:active, #site-footer a:focus, #site-footer a:hover {
  color: #212121;
}
#site-footer #footer-site-detail {
  margin-bottom: 30px;
}
#site-footer #footer-site-detail #footer-site-name {
  padding: 0 15px;
}
#site-footer #footer-site-detail #footer-site-name h3 {
  font-size: 17.6px;
  font-size: 1.1rem;
  font-weight: bold;
}
#site-footer #footer-navigation .footer-nav .footer-nav-title {
  border-top: solid 1px #fff;
}
#site-footer #footer-navigation .footer-nav p {
  font-weight: bold;
  margin-bottom: 10px;
  padding-top: 15px;
}
#site-footer #footer-navigation .footer-nav ul.list-footer li {
  display: inline-block;
  margin: 7px;
}
#site-footer #copyright {
  background-color: #33691E;
  margin-top: 30px;
  padding: 30px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #site-footer #copyright {
    padding-bottom: 100px;
  }
}

/*
object/
├── component/
│     ├── _button.scss
│     └── _search-form.scss
├── project/
│     ├── _accordion.scss
│     ├── _breadcrumb.scss
│     ├── _content-card.scss
│     ├── _content-news.scss
│     ├── _japanmap.scss
│     ├── _main-center.scss
│     ├── _merumaga.scss
│     ├── _mobile-bottom-menu.scss
│     ├── _navigation.scss
│     ├── _news-title.scss
│     ├── _page-top.scss
│     ├── _side-left.scss
│     ├── _side-right.scss
│     └── _sns.scss
└── utility/
│     └── _clearfix.scss
└── _object.scss  <<<
*/
/* sass/object/button */
.gsc-btn-wrap {
  padding: 10px;
}
.gsc-btn-wrap a.gsc-btn {
  background-color: #FFCDD2;
  border-top: solid 3px transparent;
  border-bottom: solid 3px transparent;
  color: #F44336;
  display: block;
  padding: 12px 15px;
  text-align: center;
  transition: all 0.4s;
}
.gsc-btn-wrap a.gsc-btn:hover {
  background-color: #FFEBEE;
  border-bottom-color: #F44336;
}

/* sass/object/searchform */
.menu-searchform {
  font-size: 16px;
}
.menu-searchform input {
  outline: none;
  /* placeholder */
}
.menu-searchform input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  font-family: inherit;
  font-size: 100%;
}
.menu-searchform input::-webkit-search-decoration, .menu-searchform input::-webkit-search-cancel-button {
  display: none;
}
.menu-searchform input[type=search] {
  background-color: #eee;
  background-image: url(../img/search-icon.png);
  background-repeat: no-repeat;
  background-position: 4px center;
  background-size: 21px;
  border: solid 1px #9e9e9e;
  cursor: pointer;
  padding: 5px 9px 5px 9px;
  width: 12px;
  border-radius: 16px;
  transition: all 0.5s;
  min-height: inherit;
}
.menu-searchform input[type=search]:hover {
  background-color: #fff;
}
.menu-searchform input[type=search]:focus {
  background-color: #fff;
  border-color: #AED581;
  box-shadow: 0 0 5px #AED581;
  color: #424242;
  cursor: auto;
  padding-left: 30px;
  width: 160px;
}
.menu-searchform input[type=search]:-moz-placeholder {
  color: transparent;
}
.menu-searchform input[type=search]::-webkit-input-placeholder {
  color: transparent;
}
.menu-searchform input[type=search]:-moz-placeholder {
  color: transparent;
}
.menu-searchform input[type=search]:placeholder-shown {
  color: transparent;
}
.menu-searchform input[type=search]:focus:-moz-placeholder {
  color: #ddd;
}
.menu-searchform input[type=search]:focus::-webkit-input-placeholder {
  color: #ddd;
}
.menu-searchform input[type=search]:focus:-moz-placeholder {
  color: #ddd;
}
.menu-searchform input[type=search]:focus:placeholder-shown {
  color: #ddd;
}

/* sass/object/project/accordion */
.accordion label,
.accordion input {
  display: none;
}
@media screen and (max-width: 767px) {
  .accordion {
    position: relative;
    margin-bottom: 30px;
  }
  .accordion label {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    cursor: pointer;
    display: inline;
    font-size: 12px;
    height: 140px;
    position: absolute;
    bottom: -10px;
    text-align: center;
    width: 100%;
    z-index: 497;
  }
  .accordion input:checked + label {
    height: 60px;
    background: inherit;
  }
  .accordion label:after {
    background-color: #F44336;
    border-radius: 20px;
    color: #fff;
    content: "続きをよむ";
    position: absolute;
    bottom: 20px;
    left: 50%;
    line-height: 2.5rem;
    transform: translate(-50%, 0);
    width: 50%;
    z-index: 498;
  }
  .accordion label:before {
    background-color: #fff;
    border-radius: 100%;
    color: #F44336;
    content: "\f078";
    font-family: "FontAwesome";
    font-weight: 700;
    height: 20px;
    line-height: 20px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-70px, 0);
    width: 20px;
    z-index: 499;
  }
  .accordion input {
    display: none;
  }
  .accordion .accordion-container {
    overflow: hidden;
    height: 240px;
    transition: all 0.4s;
  }
  .accordion input:checked + label {
    /* display: none ; 閉じるボタンは要らないとき */
  }
  .accordion input:checked + label:after {
    content: "閉じる";
  }
  .accordion input:checked + label:before {
    content: "\f077";
  }
  .accordion input:checked ~ .accordion-container {
    height: auto;
    padding-bottom: 60px;
    transition: all 0.4s;
  }
}

@media screen and (max-width: 767px) {
  #ac-whats-new .accordion-container,
  #ac-news .accordion-container {
    height: 660px;
  }
  #ac-whats-new input:checked ~ .accordion-container,
  #ac-news input:checked ~ .accordion-container {
    height: auto;
  }
}

/* sass/object/project/content-card */
.content-card {
  background-color: #fff;
  border: solid 1px #e0e0e0;
  margin: 15px -10px;
  padding: 10px;
}
.content-card .card-thumbnail {
  position: relative;
}
.content-card .card-thumbnail a {
  display: block;
}
.content-card .card-thumbnail a img {
  height: auto;
  width: 100%;
}
.content-card .card-thumbnail .icon-category {
  background-color: #F44336;
  border-radius: 4px;
  color: #fff;
  font-size: 11.2px;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 3px 6px;
  position: absolute;
  top: -5px;
  left: -5px;
  text-align: center;
}
.content-card .card-thumbnail .icon-theme {
  position: absolute;
  bottom: 5px;
  right: 5px;
  height: 40px;
  width: 40px;
}
.content-card .entry-title-wrap {
  height: 56px;
  margin: 10px 0 10px;
  overflow-y: hidden;
}
.content-card .entry-title-wrap h3.entry-title {
  line-height: 1.4em;
  margin: 0;
  padding: 0;
}
.content-card .meta {
  text-align: right;
}
.content-card .meta .date {
  color: #9e9e9e;
  margin: 0;
  padding: 0;
}

/* sass/object/project/content-news */
.content-news {
  border-bottom: solid 1px #e0e0e0;
  margin: 15px;
  padding-bottom: 15px;
}
.content-news.last-content-news {
  border: none;
}
.content-news h3.entry-title {
  margin: 0;
  padding: 0;
}

/* sass/object/project/japanmap */
#japanmap {
  background-color: #fff;
  margin: 15px 0;
  padding: 10px;
}
#japanmap .japanmap-area {
  margin-bottom: 10px;
  position: relative;
  width: 100%;
}
#japanmap .japanmap-area .btn-allarea {
  position: absolute;
  top: 10px;
  left: 0;
  z-index: 10;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  #japanmap .japanmap-area .btn-allarea {
    position: static;
    width: 99%;
    margin-bottom: 5px;
  }
}
#japanmap .japanmap-area .btn-allarea a {
  padding: 10px 30px;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  background-color: #8BC34A;
}
@media screen and (max-width: 767px) {
  #japanmap .japanmap-area .btn-allarea a {
    display: block;
    margin-bottom: 3px;
    text-align: center;
  }
}
#japanmap .japanmap-area .btn-allarea a:hover {
  text-decoration: none;
  background-color: #FFC107;
}
#japanmap .japanmap-area .btn-allarea a span {
  padding: 10px 30px;
  border-radius: 4px;
  color: #9e9e9e;
  font-size: 14px;
  background-color: #eee;
}
@media screen and (max-width: 767px) {
  #japanmap .japanmap-area .btn-allarea a span {
    display: block;
    margin-bottom: 3px;
    text-align: center;
  }
}
#japanmap #japan-map-top {
  position: relative;
  width: 100%;
  height: 300px;
}
@media screen and (max-width: 767px) {
  #japanmap #japan-map-top {
    height: 600px;
  }
}
#japanmap #japan-map-top li {
  position: absolute;
  width: 8%;
  height: 30px;
  color: #9e9e9e;
  font-size: 12px;
  text-align: center;
  background-color: #eee;
  border: 1px solid #fff;
  box-sizing: border-box;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  #japanmap #japan-map-top li {
    position: static;
    height: 30px !important;
    width: 33% !important;
    float: left;
    top: auto;
    right: auto;
  }
}
#japanmap #japan-map-top li a {
  display: block;
  height: 100%;
  width: 100%;
  padding: 5px 0;
  color: #fff;
  background-color: #8BC34A;
  border-radius: 4px;
}
#japanmap #japan-map-top li a:hover {
  text-decoration: none;
  background-color: #FFC107;
}
#japanmap #japan-map-top li span {
  display: block;
  height: 100%;
  width: 100%;
  padding: 5px 0;
}
#japanmap #japan-map-top li#hokkaido {
  top: 0;
  right: 0;
  width: 16%;
  height: 60px;
}
#japanmap #japan-map-top li#aomori {
  top: 60px;
  right: 0;
  width: 16%;
}
#japanmap #japan-map-top li#akita {
  top: 90px;
  right: 8%;
}
#japanmap #japan-map-top li#iwate {
  top: 90px;
  right: 0;
}
#japanmap #japan-map-top li#yamagata {
  top: 120px;
  right: 8%;
}
#japanmap #japan-map-top li#miyagi {
  top: 120px;
  right: 0;
}
#japanmap #japan-map-top li#fukushima {
  top: 150px;
  right: 0;
  margin-bottom: 5px;
}
#japanmap #japan-map-top li#ibaraki {
  top: 180px;
  right: 0;
  clear: both;
}
#japanmap #japan-map-top li#tochigi {
  top: 150px;
  right: 8%;
}
#japanmap #japan-map-top li#gunma {
  top: 180px;
  right: 16%;
}
#japanmap #japan-map-top li#saitama {
  top: 180px;
  right: 8%;
}
#japanmap #japan-map-top li#chiba {
  top: 210px;
  right: 0;
}
#japanmap #japan-map-top li#tokyo {
  top: 210px;
  right: 8%;
}
#japanmap #japan-map-top li#kanagawa {
  top: 210px;
  right: 16%;
  margin-bottom: 5px;
}
#japanmap #japan-map-top li#niigata {
  top: 120px;
  right: 16%;
  clear: both;
}
#japanmap #japan-map-top li#nagano {
  top: 150px;
  right: 16%;
  width: 16%;
}
#japanmap #japan-map-top li#toyama {
  top: 120px;
  right: 24%;
}
#japanmap #japan-map-top li#ishikawa {
  top: 120px;
  right: 32%;
}
#japanmap #japan-map-top li#gifu {
  top: 150px;
  right: 32%;
}
#japanmap #japan-map-top li#fukui {
  top: 120px;
  right: 40%;
}
#japanmap #japan-map-top li#yamanashi {
  top: 180px;
  right: 24%;
}
#japanmap #japan-map-top li#shizuoka {
  top: 210px;
  right: 24%;
}
#japanmap #japan-map-top li#aichi {
  top: 180px;
  right: 32%;
  margin-bottom: 5px;
}
#japanmap #japan-map-top li#shiga {
  top: 150px;
  right: 40%;
  clear: both;
}
#japanmap #japan-map-top li#nara {
  top: 180px;
  right: 40%;
}
#japanmap #japan-map-top li#kyoto {
  top: 120px;
  right: 48%;
}
#japanmap #japan-map-top li#mie {
  top: 210px;
  right: 40%;
}
#japanmap #japan-map-top li#osaka {
  top: 180px;
  right: 48%;
}
#japanmap #japan-map-top li#wakayama {
  top: 210px;
  right: 48%;
}
#japanmap #japan-map-top li#hyogo {
  top: 150px;
  right: 48%;
  margin-bottom: 5px;
}
#japanmap #japan-map-top li#tottori {
  top: 120px;
  right: 56%;
  clear: both;
}
#japanmap #japan-map-top li#shimane {
  top: 120px;
  right: 64%;
}
#japanmap #japan-map-top li#okayama {
  top: 150px;
  right: 56%;
}
#japanmap #japan-map-top li#hiroshima {
  top: 150px;
  right: 64%;
}
#japanmap #japan-map-top li#yamaguchi {
  top: 120px;
  right: 72%;
  margin-bottom: 5px;
}
#japanmap #japan-map-top li#ehime {
  top: 210px;
  right: 64%;
  clear: both;
}
#japanmap #japan-map-top li#kagawa {
  top: 210px;
  right: 56%;
}
#japanmap #japan-map-top li#kochi {
  top: 240px;
  right: 64%;
}
#japanmap #japan-map-top li#tokushima {
  top: 240px;
  right: 56%;
  margin-bottom: 5px;
}
#japanmap #japan-map-top li#fukuoka {
  top: 120px;
  right: 80%;
  clear: both;
}
#japanmap #japan-map-top li#oita {
  top: 150px;
  right: 80%;
}
#japanmap #japan-map-top li#miyazaki {
  top: 180px;
  right: 80%;
}
#japanmap #japan-map-top li#saga {
  top: 120px;
  right: 88%;
}
#japanmap #japan-map-top li#nagasaki {
  top: 150px;
  right: 88%;
}
#japanmap #japan-map-top li#kumamoto {
  top: 180px;
  right: 88%;
}
#japanmap #japan-map-top li#kagoshima {
  top: 210px;
  right: 88%;
}
#japanmap #japan-map-top li#okinawa {
  top: 240px;
  right: 88%;
}

/* sass/object/project/main-center */
#main-center .news-title {
  background-color: #00BCD4;
}
#main-center .news-title h2 {
  color: #fff;
  font-weight: bold;
}
#main-center .japanmap-title {
  background-color: #DCEDC8;
  position: relative;
}
@media screen and (max-width: 767px) {
  #main-center .japanmap-title {
    text-align: center;
  }
}
#main-center .japanmap-title h2 {
  color: #33691E;
  float: left;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #main-center .japanmap-title h2 {
    float: none;
    font-size: 17.6px;
    font-size: 1.1rem;
    margin-top: 5px;
  }
}
#main-center .japanmap-title .meta {
  color: #F44336;
  float: right;
  font-size: 12.8px;
  font-size: 0.8rem;
  font-weight: bold;
  margin-top: 6px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  #main-center .japanmap-title .meta {
    float: none;
    text-align: center;
    width: 100%;
  }
}
#main-center .japanmap-title .info-btn {
  display: none;
}
@media screen and (max-width: 767px) {
  #main-center .japanmap-title .info-btn {
    background-color: #33691E;
    border-radius: 4px;
    display: block;
    padding: 3px;
    position: absolute;
    top: -15px;
    right: -5px;
  }
}
#main-center .japanmap-title .info-btn a {
  color: #fff;
  font-size: 12.8px;
  font-size: 0.8rem;
  font-weight: bold;
}
#main-center .content-card-wrap {
  margin-bottom: 30px;
}

/* sass/object/project/merumaga */
#merumaga {
  height: 120px;
  position: fixed;
  left: -250px;
  bottom: 15px;
  transition: all 0.4s;
  width: 200px;
  z-index: 89999;
}
@media screen and (max-width: 767px) {
  #merumaga {
    display: none;
  }
}
#merumaga.active {
  left: 5px;
}
#merumaga img {
  height: 120px;
  width: 200px;
}
#merumaga #merumaga-message {
  font-size: 12.8px;
  font-size: 0.8rem;
  font-weight: bold;
  height: auto;
  position: absolute;
  top: 25px;
  left: 27px;
  text-align: center;
  width: 163px;
}
#merumaga #merumaga-message #merumaga-btn {
  width: 100%;
}
#merumaga #merumaga-message #merumaga-btn a {
  background-color: #2196F3;
  border-radius: 4px;
  color: #fff;
  display: block;
  margin: 5px auto 0;
  padding: 10px;
  text-align: center;
  transition: all 0.4s;
}
#merumaga #merumaga-message #merumaga-btn a:hover {
  background-color: #1976D2;
}
#merumaga #merumaga-close-btn {
  color: #F44336;
  cursor: pointer;
  height: auto;
  position: absolute;
  top: 5px;
  right: 7px;
}

/* sass/object/project/mobile-bottom-menu */
#mobile-bottom-menu {
  display: none;
}
@media screen and (max-width: 767px) {
  #mobile-bottom-menu {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9998;
  }
  #mobile-bottom-menu .mobile-menu-item {
    display: none;
    float: left;
    width: 17%;
    max-width: 80px;
  }
  #mobile-bottom-menu .mobile-menu-item a {
    display: block;
    margin: 0;
    padding: 0;
  }
  #mobile-bottom-menu .mobile-menu-item a img {
    height: auto;
    width: 100%;
  }
}

/* sass/object/project/navigation */
#nav-menu-wrap {
  background-color: #fff;
  border-bottom: solid 1px #e0e0e0;
  height: 50px;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  #nav-menu-wrap {
    display: none;
  }
}
#nav-menu-wrap #main-menu-container {
  float: right;
  padding: 0 15px;
}
#nav-menu-wrap #main-menu-container #main-menu-wrap {
  margin-top: 7px;
}
@media screen and (max-width: 767px) {
  #nav-menu-wrap #main-menu-container #main-menu-wrap {
    display: none;
  }
}
#nav-menu-wrap #main-menu-container #main-menu-wrap li {
  display: inline-block;
  line-height: 1em;
}
#nav-menu-wrap #main-menu-container #main-menu-wrap li a {
  display: block;
  color: #1976D2;
  font-weight: bold;
  margin: 0 15px;
}
#nav-menu-wrap #main-menu-container #main-menu-wrap li a:active, #nav-menu-wrap #main-menu-container #main-menu-wrap li a:focus, #nav-menu-wrap #main-menu-container #main-menu-wrap li a:hover {
  color: #1976D2;
}
#nav-menu-wrap #main-menu-container #main-menu-wrap li.donation a {
  background-color: #F44336;
  border-radius: 4px;
  color: #fff;
  padding: 10px 15px;
}
#nav-menu-wrap #main-menu-container #main-menu-wrap li.donation a:active, #nav-menu-wrap #main-menu-container #main-menu-wrap li.donation a:focus, #nav-menu-wrap #main-menu-container #main-menu-wrap li.donation a:hover {
  color: #fff;
}
#nav-menu-wrap #main-menu-container #main-menu-wrap li.donation a:hover {
  background-color: #B71C1C;
}
#nav-menu-wrap .donation-btn {
  float: left;
  margin: 7px 0px;
}
@media screen and (max-width: 767px) {
  #nav-menu-wrap .donation-btn {
    display: none;
  }
}
#nav-menu-wrap .donation-btn a {
  background-color: #F44336;
  border-radius: 4px;
  color: #fff;
  display: block;
  font-weight: bold;
  line-height: 1em;
  padding: 10px 15px;
}
#nav-menu-wrap .donation-btn a:active, #nav-menu-wrap .donation-btn a:focus, #nav-menu-wrap .donation-btn a:hover {
  color: #fff;
}
#nav-menu-wrap .donation-btn a:hover {
  background-color: #B71C1C;
}
#nav-menu-wrap #toggle-btn {
  display: block;
  float: left;
}
#nav-menu-wrap #toggle-btn #toggle-menu-btn {
  cursor: pointer;
  padding: 8px 15px;
}
#nav-menu-wrap #toggle-btn #toggle-menu-btn .fa-bars {
  display: block;
}
#nav-menu-wrap #toggle-btn #toggle-menu-btn .fa-times {
  display: none;
}
#nav-menu-wrap #toggle-btn #toggle-menu-btn.active .fa-bars {
  display: none;
}
#nav-menu-wrap #toggle-btn #toggle-menu-btn.active .fa-times {
  display: block;
}
#nav-menu-wrap #toggle-btn #toggle-menu-btn .fa {
  color: #212121;
  font-size: 26px;
  margin: 3px;
}
@media screen and (max-width: 767px) {
  #nav-menu-wrap #toggle-btn {
    display: none;
  }
}
#nav-menu-wrap #toggle-menu {
  background-color: rgba(255, 255, 255, 0.85);
  display: none;
}
#nav-menu-wrap #toggle-menu #menu-top {
  padding: 5px;
}
#nav-menu-wrap #toggle-menu #menu-top ul li.menu-top-btn {
  color: #424242;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  padding: 10px;
  position: relative;
}
#nav-menu-wrap #toggle-menu #menu-top ul li.menu-top-btn a {
  color: #33691E;
}
#nav-menu-wrap #toggle-menu #menu-top ul li.menu-top-btn a:active, #nav-menu-wrap #toggle-menu #menu-top ul li.menu-top-btn a:focus, #nav-menu-wrap #toggle-menu #menu-top ul li.menu-top-btn a:hover {
  color: #689F38;
}
#nav-menu-wrap #toggle-menu #menu-top ul li.menu-top-btn .caret-down {
  color: #9e9e9e;
  position: absolute;
  bottom: -5px;
  left: 50%;
}
#nav-menu-wrap #toggle-menu .menu-sub {
  background-color: rgba(255, 255, 255, 0.75);
  width: 100%;
}
#nav-menu-wrap #toggle-menu .menu-sub ul li {
  display: inline-block;
  font-weight: bold;
  padding: 10px;
}
#nav-menu-wrap #toggle-menu .menu-sub ul li a {
  color: #33691E;
}
#nav-menu-wrap #toggle-menu .menu-sub ul li a:active, #nav-menu-wrap #toggle-menu .menu-sub ul li a:focus, #nav-menu-wrap #toggle-menu .menu-sub ul li a:hover {
  color: #689F38;
}

@media screen and (max-width: 767px) {
  .remodal {
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
    padding: 30px 0 0 0;
  }
  #modal-menu-wrap {
    text-align: left;
  }
  #modal-menu-wrap li {
    border-bottom: solid 1px #9e9e9e;
  }
  #modal-menu-wrap li:last-child {
    border: none;
  }
  #modal-menu-wrap li.searchform {
    text-align: center;
    padding: 10px;
  }
  #modal-menu-wrap li a {
    display: block;
    padding: 15px;
  }
}
/* sass/object/project/news-title */
.news-title {
  font-size: 19.2px;
  font-size: 1.2rem;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Hiragino Sans", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  padding: 12px;
}
.news-title a {
  color: #fff;
}
.news-title a:active, .news-title a:focus, .news-title a:hover {
  color: #fff;
}

/* sass/object/project/pagetop */
.pagetop {
  bottom: 15px;
  display: none;
  position: fixed;
  right: 15px;
  text-align: center;
  z-index: 9999;
}
.pagetop a {
  background-color: #689F38;
  border-radius: 4px;
  color: #fff;
  display: block;
  font-size: 30px;
  height: 40px;
  line-height: 1em;
  padding-top: 2px;
  padding-left: 1px;
  text-decoration: none;
  transition: all 0.4s;
  width: 40px;
}
.pagetop a:active, .pagetop a:focus, .pagetop a:hover {
  color: #fff;
}
.pagetop a:hover {
  background-color: #33691E;
}
@media screen and (max-width: 991px) {
  .pagetop a {
    transition: none;
  }
}
@media screen and (max-width: 767px) {
  .pagetop {
    bottom: 10px;
    right: 10px;
  }
}

/* sass/object/project/side-left */
#side-left {
  padding-bottom: 1px;
  background: #f5f5f5;
}
#side-left .slqm-bnr-wrap {
  margin-bottom: 15px;
}
#side-left .movie {
  margin-bottom: 15px;
}
#side-left .side-title {
  margin-top: 15px;
  padding: 15px;
}
#side-left .side-title h2, #side-left .side-title h3 {
  font-size: 17.6px;
  font-size: 1.1rem;
  font-weight: bold;
}
#side-left .side-title a {
  color: #fff;
}
#side-left .about-movie-title {
  margin-top: 0;
  background-color: #8BC34A;
}
#side-left .about-movie-title h2 {
  color: #fff;
}
#side-left .gsc-themes-title {
  background-color: #1f88ad;
}
#side-left .gsc-themes-title h2 {
  color: #fff;
}
#side-left .gsc-themes-wrap {
  padding: 10px 15px;
  background-color: #fff;
}
#side-left .gsc-themes-wrap .gsc-theme-banner {
  margin-bottom: 15px;
}
#side-left .gsc-themes-wrap .gsc-theme-banner a:hover img {
  opacity: 0.6;
}
#side-left .list-arrow-green li {
  position: relative;
  display: block;
  padding: 0 0 5px 25px;
}
#side-left .list-arrow-green li::before {
  position: absolute;
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  top: 3px;
  left: 0;
  background: url(../images/arrow.png) 0 0 no-repeat;
}

/* sass/object/project/side-right */
#side-right {
  background-color: #f5f5f5;
}
#side-right .news-title {
  background-color: #8BC34A;
}
#side-right .news-title h2 {
  color: #fff;
  font-weight: bold;
}
#side-right .movie {
  margin: 0 0 15px 0;
}
#side-right .side-title {
  margin-top: 15px;
  padding: 15px;
}
#side-right .side-title h3 {
  font-size: 17.6px;
  font-size: 1.1rem;
  font-weight: bold;
}
#side-right .side-title a {
  color: #fff;
}
#side-right .list-arrow-green li {
  position: relative;
  display: block;
  padding: 0 0 5px 25px;
}
#side-right .list-arrow-green li::before {
  position: absolute;
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  top: 3px;
  left: 0;
  background: url(../images/arrow.png) 0 0 no-repeat;
}
#side-right .gsc-right-banner {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  #side-right .gsc-right-banner {
    margin: 0 -15px 10px;
  }
}
#side-right .gsc-right-banner a {
  display: block;
  margin: auto;
  transition: all 0.4s;
  width: 90%;
}
@media screen and (max-width: 767px) {
  #side-right .gsc-right-banner a {
    width: 100%;
  }
}
#side-right .gsc-right-banner a img {
  height: auto;
  width: 100%;
}
#side-right .gsc-themes {
  background-color: #e0e0e0;
}
#side-right .gsc-themes-wrap {
  padding: 10px 15px;
  background-color: #fff;
}
#side-right .gsc-themes-wrap .gsc-theme-banner {
  margin-bottom: 15px;
}
#side-right .gsc-themes-wrap .gsc-theme-banner a:hover img {
  opacity: 0.6;
}
#side-right .theme-1 {
  background-color: #8BC34A;
  color: #fff;
}
#side-right .gsc-theme-1-banner a {
  border-radius: 4px;
}
#side-right .gsc-theme-1-banner a:hover {
  background-color: #DCEDC8;
}
#side-right .theme-2 {
  background-color: #00BCD4;
  color: #fff;
}
#side-right .gsc-theme-2-banner a {
  border-radius: 4px;
}
#side-right .gsc-theme-2-banner a:hover {
  background-color: #B2EBF2;
}
#side-right .theme-3 {
  background-color: #2196F3;
  color: #fff;
}
#side-right .gsc-theme-3-banner a {
  border-radius: 4px;
}
#side-right .gsc-theme-3-banner a:hover {
  background-color: #bbdefb;
}
#side-right .theme-4 {
  background-color: #B71C1C;
  color: #fff;
}
#side-right .gsc-theme-4-banner a {
  border-radius: 4px;
}
#side-right .gsc-theme-4-banner a:hover {
  background-color: #FFCDD2;
}
#side-right .gsc-theme-4-banner a.donation {
  background-color: #F44336;
  border-radius: 8px;
}
#side-right .gsc-theme-4-banner a.donation:hover {
  background-color: #B71C1C;
}
#side-right .about-g {
  background-color: #8BC34A;
  color: #fff;
  margin-bottom: 1px;
}
#side-right .list-panel li {
  position: relative;
  width: 50%;
  height: 120px;
  float: left;
  text-align: center;
  background-color: #8BC34A;
  transition: all 0.4s;
}
#side-right .list-panel li:hover {
  background-color: #33691E;
}
#side-right .list-panel li::before {
  content: "";
  position: absolute;
  display: block;
  width: 75px;
  height: 75px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
#side-right .list-panel li:nth-child(1)::before {
  background: url(../img/icon-2.png) 0 0 no-repeat;
  background-size: 70px;
}
#side-right .list-panel li:nth-child(2)::before {
  background: url(../img/icon-3.png) 0 0 no-repeat;
  background-size: 70px;
}
#side-right .list-panel li:nth-child(3)::before {
  background: url(../img/icon-4.png) 0 0 no-repeat;
  background-size: 70px;
}
#side-right .list-panel li:nth-child(4)::before {
  background: url(../img/icon-5.png) 0 0 no-repeat;
  background-size: 70px;
}
#side-right .list-panel li:nth-child(5)::before {
  background: url(../img/icon-6.png) 0 0 no-repeat;
  background-size: 70px;
}
#side-right .list-panel li:nth-child(6)::before {
  background: url(../img/icon-7.png) 0 0 no-repeat;
  background-size: 70px;
}
#side-right .list-panel li a {
  position: relative;
  z-index: 10;
  display: block;
  width: 100%;
  height: 120px;
  color: #fff;
}
#side-right .list-panel li a p {
  position: absolute;
  width: 100%;
  bottom: 5px;
  padding: 0;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
}
#side-right .list-panel li a p small {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
}
#side-right #about-g-btn {
  margin: 1px 0 15px;
}
#side-right #about-g-btn a {
  background-color: #8BC34A;
  color: #fff;
  display: block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  padding: 15px;
  text-align: center;
}
#side-right #about-g-btn a:hover {
  background-color: #33691E;
}

/* sass/object/project/sns */
.facebook {
  margin: 15px auto 0;
  padding-bottom: 15px;
  text-align: center;
  width: 100%;
}

.twitter {
  margin: 15px auto;
  text-align: center;
  width: 100%;
}

/* sass/object/project/breadcrumb */
#breadcrumb {
  padding: 15px 0;
  font-size: 0.85rem;
}
#breadcrumb li {
  display: inline-block;
  padding-left: 15px;
  padding-right: 30px;
}
#breadcrumb li a {
  position: relative;
}
#breadcrumb li a::after {
  content: "";
  position: absolute;
  display: block;
  content: "/";
  top: 0;
  right: -15px;
}

/*-- bottom line の寄付ボタン */
#footer-donation-hitosaji {
  position: fixed;
  z-index: 501;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 24px 0;
  background-color: rgba(121, 121, 121, 0.95);
}

.link-donation-inner {
  max-width: 480px;
  margin: auto;
}

#footer-donation-hitosaji a.btn-donation-hitosaji {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 480px;
  margin: 0 auto;
  padding: 8px;
  color: #ffaa07;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #ffaa07;
  transition: 0.5s;
  cursor: pointer;
}

#footer-donation-hitosaji .article-pay-info {
  max-width: 480px;
  margin: auto;
  text-align: right;
}

#footer-donation-hitosaji .article-pay-info span {
  color: #FFFFFF;
  font-size: 90%;
}

#footer-donation-hitosaji .article-pay-info a:link {
  color: #ffaa07;
}
#footer-donation-hitosaji .article-pay-info a:visited {
  color: #ffaa07;
}
#footer-donation-hitosaji .article-pay-info a:hover {
  color: #ffaa07;
}
#footer-donation-hitosaji .article-pay-info a:active {
  color: #ffaa07;
}

#footer-donation-hitosaji a i {
  width: 43px;
  height: 35px;
  margin-right: 16px;
  background: url(https://www.gsclub.jp/wp-content/themes/gsc/img/recipes/icon_hitosaji_orange.png) no-repeat center center;
  background-size: contain;
}

@media (max-width: 480px) {
  #footer-donation-hitosaji {
    display: block;
    padding: 8px 0;
  }
  #footer-donation-hitosaji a {
    max-width: 55%;
    margin: 0 0 0 16px;
    padding: 4px 0;
  }
  #footer-donation-hitosaji a i {
    width: 32px;
    height: 32px;
  }
  #footer-donation-hitosaji a.btn-donation-hitosaji {
    max-width: 348px;
  }
}
/* sass/object/utility/clearfix */
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}
/*# sourceMappingURL=style.css.map */
