@charset "UTF-8";
/*
---
name: fontsize
category: -mixin
---

font-size:引数px; font-size:引数/10rem;
に設定
```scss
  @include fontsize(引数);
```
 */
/*
---
name: 別窓付きリンク
category: -mixin
---
```pug
  a(href="//www.google.com" target="_blank") テキストリンク
  |　target="_blank"が喜寿されている要素に付与される
```
*/
/*
---
name: ブレイクポイントで表示切り替え
category: -helper
---

```pug
._showSp SPで表示
._showPc PCで表示
```
*/
@media screen and (min-width: 760px) {
  ._showSp {
    display: none !important;
  }
}

@media screen and (max-width: 759px) {
  ._showPc {
    display: none !important;
  }
}

h2.story-title {
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: bold;
  color: #814400;
  margin: 80px 0 30px;
}

h2.story-title:first-child {
  margin-top: 0;
}

@media screen and (max-width: 759px) {
  h2.story-title {
    font-size: 16px;
    font-size: 1.6rem;
    margin: 40px 0 15px;
    text-align: center;
  }
}

.footerlinks {
  background: #00953f;
  padding: 10px 15px 15px;
}

.footerlinks .footerlinks-container::after {
  content: "";
  display: block;
  clear: both;
}

@media screen and (min-width: 760px) {
  .footerlinks .footerlinks-container {
    max-width: 1246px;
    margin: auto;
    padding: 0 60px 0 40px;
    box-sizing: border-box;
  }
}

@media screen and (min-width: 760px) {
  .footerlinks .footerlinks-container .footerlink {
    padding-left: 20px;
    width: 50%;
  }
}

@media screen and (max-width: 759px) {
  .footerlinks .footerlinks-container .footerlink:first-child .footerlink-label {
    margin-top: 0;
  }
}

.footerlinks .footerlinks-container .footerlink .footerlink-label {
  color: white;
  text-align: center;
  line-height: 1em;
  margin: 15px 0 10px;
  font-weight: bold;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (min-width: 760px) {
  .footerlinks .footerlinks-container .footerlink .footerlink-label {
    font-size: 20px;
    font-size: 2rem;
    margin: 37px 0 20px;
  }
}

.footerlinks .footerlinks-container .footerlink .footerlink-a {
  display: block;
  background: white;
  text-decoration: none;
  padding: 20px 15px;
  line-height: 1em;
  margin-top: 1px;
  color: black;
}

.footerlinks .footerlinks-container .footerlink .footerlink-a:first-child {
  border-radius: 5px 5px 0 0;
  margin-top: 0;
}

.footerlinks .footerlinks-container .footerlink .footerlink-a:last-child {
  border-radius: 0 0 5px 5px;
}

@media screen and (min-width: 760px) {
  .footerlinks .footerlinks-container .footerlink .footerlink-a {
    font-size: 16px;
    font-size: 1.6rem;
    margin-top: 2px;
    padding: 29px 30px;
    line-height: 1em;
  }
}

.footerlinks .footerlinks-container .footerlink .footerlink-a:hover, .footerlinks .footerlinks-container .footerlink .footerlink-a.is-active {
  background: #a1e69f;
}

@media screen and (min-width: 760px) {
  .footerlinks .footerlinks-container .footerlink {
    float: left;
  }
}

/*# sourceMappingURL=style.css.map */
