@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,500,700");
/*@import 'foundation/_normalize.scss';*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/*$font-family: 'Noto Sans JP', sans-serif;*/
/*$font-family: 'Noto Sans Japanese', sans-serif !default;*/
/*$font-family: 'Yu Gothic Medium', '游ゴシック Medium', YuGothic, '游ゴシック体', 'ヒラギノ角ゴ Pro W3', 'メイリオ', sans-serif !default;*/
/*$font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", 'ヒラギノ角ゴ Pro W3', 'メイリオ', sans-serif;*/
/* base */
* {
  min-width: 0;
  min-height: 0;
}

a {
  color: #333;
  text-decoration: none;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

a:focus {
  outline: none;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.5;
  }
}

ul {
  list-style: none outside;
}

ul li a {
  color: #333;
}

img[src$=".svg"] {
  width: 100%;
}

hr {
  border-top: 1px solid #E2E2E2;
}

body, html {
  overflow-x: auto;
}

html {
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

body {
  color: #333;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.4rem;
  /*font-weight: 200;*/
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
  margin: 0;
  /*letter-spacing: 0.1em;*/
  /*-webkit-text-stroke-width: .4px !important;*/
}

@media screen and (min-width: 1024px) {
  body {
    min-width: 1100px;
  }
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

/* grid */
[class*='l-grid'] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
}

[class*='l-grid'][class*='left'] {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

[class*='l-grid'][class*='center'] {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

[class*='l-grid'][class*='right'] {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

[class*='l-grid'][class*='spaceBetween'] {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

[class*='l-grid'][class*='spaceAround'] {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

[class*='l-grid'][class*='stretch'] {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

[class*='l-grid'][class*='top'] {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

[class*='l-grid'][class*='middle'] {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

[class*='l-grid'][class*='bottom'] {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

[class*='l-grid'][class*='baseline'] {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

[class*='l-grid'][class*='line'] > [class*='l-column'] + [class*='l-column'] {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 30px;
}

[class*='l-grid'][class*='xsGutter'] {
  margin: 0 -2px;
}

[class*='l-grid'][class*='xsGutter'] > [class*='l-column'] {
  padding: 2px;
}

[class*='l-grid'][class*='smGutter'] {
  margin: 0 -5px;
}

[class*='l-grid'][class*='smGutter'] > [class*='l-column'] {
  padding: 5px;
}

[class*='l-grid'][class*='mdGutter'] {
  margin: 0 -6.625px;
}

[class*='l-grid'][class*='mdGutter'] > [class*='l-column'] {
  padding: 6.625px;
}

@media screen and (min-width: 768px) {
  [class*='l-grid'][class*='mdGutter'] {
    margin: 0 -13.25px;
  }
  [class*='l-grid'][class*='mdGutter'] > [class*='l-column'] {
    padding: 13.25px;
  }
}

[class*='l-grid'][class*='lgGutter'] {
  margin: 0 -17px;
}

[class*='l-grid'][class*='lgGutter'] > [class*='l-column'] {
  padding: 17px;
}

@media screen and (min-width: 768px) {
  [class*='l-grid'][class*='lgGutter'] {
    margin: 0 -34px;
  }
  [class*='l-grid'][class*='lgGutter'] > [class*='l-column'] {
    padding: 34px;
  }
}

@media screen and (min-width: 0px) {
  [class*='l-grid'][class*='xs1'] > [class*='l-column'] {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  [class*='l-grid'] > [class*='xs1'] {
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
  [class*='l-grid'][class*='xs2'] > [class*='l-column'] {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  [class*='l-grid'] > [class*='xs2'] {
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
  [class*='l-grid'][class*='xs3'] > [class*='l-column'] {
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
  [class*='l-grid'] > [class*='xs3'] {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  [class*='l-grid'][class*='xs4'] > [class*='l-column'] {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  [class*='l-grid'] > [class*='xs4'] {
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
  [class*='l-grid'][class*='xs5'] > [class*='l-column'] {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
  }
  [class*='l-grid'] > [class*='xs5'] {
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%;
  }
  [class*='l-grid'][class*='xs6'] > [class*='l-column'] {
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
  [class*='l-grid'] > [class*='xs6'] {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  [class*='l-grid'][class*='xs7'] > [class*='l-column'] {
    -ms-flex-preferred-size: 14.28571%;
    flex-basis: 14.28571%;
    max-width: 14.28571%;
  }
  [class*='l-grid'] > [class*='xs7'] {
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%;
  }
  [class*='l-grid'][class*='xs8'] > [class*='l-column'] {
    -ms-flex-preferred-size: 12.5%;
    flex-basis: 12.5%;
    max-width: 12.5%;
  }
  [class*='l-grid'] > [class*='xs8'] {
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
  }
  [class*='l-grid'][class*='xs9'] > [class*='l-column'] {
    -ms-flex-preferred-size: 11.11111%;
    flex-basis: 11.11111%;
    max-width: 11.11111%;
  }
  [class*='l-grid'] > [class*='xs9'] {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  [class*='l-grid'][class*='xs10'] > [class*='l-column'] {
    -ms-flex-preferred-size: 10%;
    flex-basis: 10%;
    max-width: 10%;
  }
  [class*='l-grid'] > [class*='xs10'] {
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%;
  }
  [class*='l-grid'][class*='xs11'] > [class*='l-column'] {
    -ms-flex-preferred-size: 9.09091%;
    flex-basis: 9.09091%;
    max-width: 9.09091%;
  }
  [class*='l-grid'] > [class*='xs11'] {
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%;
  }
  [class*='l-grid'][class*='xs12'] > [class*='l-column'] {
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
  [class*='l-grid'] > [class*='xs12'] {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media screen and (min-width: 375px) {
  [class*='l-grid'][class*='sm1'] > [class*='l-column'] {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  [class*='l-grid'] > [class*='sm1'] {
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
  [class*='l-grid'][class*='sm2'] > [class*='l-column'] {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  [class*='l-grid'] > [class*='sm2'] {
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
  [class*='l-grid'][class*='sm3'] > [class*='l-column'] {
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
  [class*='l-grid'] > [class*='sm3'] {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  [class*='l-grid'][class*='sm4'] > [class*='l-column'] {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  [class*='l-grid'] > [class*='sm4'] {
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
  [class*='l-grid'][class*='sm5'] > [class*='l-column'] {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
  }
  [class*='l-grid'] > [class*='sm5'] {
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%;
  }
  [class*='l-grid'][class*='sm6'] > [class*='l-column'] {
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
  [class*='l-grid'] > [class*='sm6'] {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  [class*='l-grid'][class*='sm7'] > [class*='l-column'] {
    -ms-flex-preferred-size: 14.28571%;
    flex-basis: 14.28571%;
    max-width: 14.28571%;
  }
  [class*='l-grid'] > [class*='sm7'] {
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%;
  }
  [class*='l-grid'][class*='sm8'] > [class*='l-column'] {
    -ms-flex-preferred-size: 12.5%;
    flex-basis: 12.5%;
    max-width: 12.5%;
  }
  [class*='l-grid'] > [class*='sm8'] {
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
  }
  [class*='l-grid'][class*='sm9'] > [class*='l-column'] {
    -ms-flex-preferred-size: 11.11111%;
    flex-basis: 11.11111%;
    max-width: 11.11111%;
  }
  [class*='l-grid'] > [class*='sm9'] {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  [class*='l-grid'][class*='sm10'] > [class*='l-column'] {
    -ms-flex-preferred-size: 10%;
    flex-basis: 10%;
    max-width: 10%;
  }
  [class*='l-grid'] > [class*='sm10'] {
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%;
  }
  [class*='l-grid'][class*='sm11'] > [class*='l-column'] {
    -ms-flex-preferred-size: 9.09091%;
    flex-basis: 9.09091%;
    max-width: 9.09091%;
  }
  [class*='l-grid'] > [class*='sm11'] {
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%;
  }
  [class*='l-grid'][class*='sm12'] > [class*='l-column'] {
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
  [class*='l-grid'] > [class*='sm12'] {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media screen and (min-width: 768px) {
  [class*='l-grid'][class*='md1'] > [class*='l-column'] {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  [class*='l-grid'] > [class*='md1'] {
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
  [class*='l-grid'][class*='md2'] > [class*='l-column'] {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  [class*='l-grid'] > [class*='md2'] {
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
  [class*='l-grid'][class*='md3'] > [class*='l-column'] {
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
  [class*='l-grid'] > [class*='md3'] {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  [class*='l-grid'][class*='md4'] > [class*='l-column'] {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  [class*='l-grid'] > [class*='md4'] {
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
  [class*='l-grid'][class*='md5'] > [class*='l-column'] {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
  }
  [class*='l-grid'] > [class*='md5'] {
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%;
  }
  [class*='l-grid'][class*='md6'] > [class*='l-column'] {
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
  [class*='l-grid'] > [class*='md6'] {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  [class*='l-grid'][class*='md7'] > [class*='l-column'] {
    -ms-flex-preferred-size: 14.28571%;
    flex-basis: 14.28571%;
    max-width: 14.28571%;
  }
  [class*='l-grid'] > [class*='md7'] {
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%;
  }
  [class*='l-grid'][class*='md8'] > [class*='l-column'] {
    -ms-flex-preferred-size: 12.5%;
    flex-basis: 12.5%;
    max-width: 12.5%;
  }
  [class*='l-grid'] > [class*='md8'] {
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
  }
  [class*='l-grid'][class*='md9'] > [class*='l-column'] {
    -ms-flex-preferred-size: 11.11111%;
    flex-basis: 11.11111%;
    max-width: 11.11111%;
  }
  [class*='l-grid'] > [class*='md9'] {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  [class*='l-grid'][class*='md10'] > [class*='l-column'] {
    -ms-flex-preferred-size: 10%;
    flex-basis: 10%;
    max-width: 10%;
  }
  [class*='l-grid'] > [class*='md10'] {
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%;
  }
  [class*='l-grid'][class*='md11'] > [class*='l-column'] {
    -ms-flex-preferred-size: 9.09091%;
    flex-basis: 9.09091%;
    max-width: 9.09091%;
  }
  [class*='l-grid'] > [class*='md11'] {
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%;
  }
  [class*='l-grid'][class*='md12'] > [class*='l-column'] {
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
  [class*='l-grid'] > [class*='md12'] {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media screen and (min-width: 1024px) {
  [class*='l-grid'][class*='lg1'] > [class*='l-column'] {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  [class*='l-grid'] > [class*='lg1'] {
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
  [class*='l-grid'][class*='lg2'] > [class*='l-column'] {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  [class*='l-grid'] > [class*='lg2'] {
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
  [class*='l-grid'][class*='lg3'] > [class*='l-column'] {
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
  [class*='l-grid'] > [class*='lg3'] {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  [class*='l-grid'][class*='lg4'] > [class*='l-column'] {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  [class*='l-grid'] > [class*='lg4'] {
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
  [class*='l-grid'][class*='lg5'] > [class*='l-column'] {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
  }
  [class*='l-grid'] > [class*='lg5'] {
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%;
  }
  [class*='l-grid'][class*='lg6'] > [class*='l-column'] {
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
  [class*='l-grid'] > [class*='lg6'] {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  [class*='l-grid'][class*='lg7'] > [class*='l-column'] {
    -ms-flex-preferred-size: 14.28571%;
    flex-basis: 14.28571%;
    max-width: 14.28571%;
  }
  [class*='l-grid'] > [class*='lg7'] {
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%;
  }
  [class*='l-grid'][class*='lg8'] > [class*='l-column'] {
    -ms-flex-preferred-size: 12.5%;
    flex-basis: 12.5%;
    max-width: 12.5%;
  }
  [class*='l-grid'] > [class*='lg8'] {
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
  }
  [class*='l-grid'][class*='lg9'] > [class*='l-column'] {
    -ms-flex-preferred-size: 11.11111%;
    flex-basis: 11.11111%;
    max-width: 11.11111%;
  }
  [class*='l-grid'] > [class*='lg9'] {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  [class*='l-grid'][class*='lg10'] > [class*='l-column'] {
    -ms-flex-preferred-size: 10%;
    flex-basis: 10%;
    max-width: 10%;
  }
  [class*='l-grid'] > [class*='lg10'] {
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%;
  }
  [class*='l-grid'][class*='lg11'] > [class*='l-column'] {
    -ms-flex-preferred-size: 9.09091%;
    flex-basis: 9.09091%;
    max-width: 9.09091%;
  }
  [class*='l-grid'] > [class*='lg11'] {
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%;
  }
  [class*='l-grid'][class*='lg12'] > [class*='l-column'] {
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
  [class*='l-grid'] > [class*='lg12'] {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

@media screen and (min-width: 1200px) {
  [class*='l-grid'][class*='xl1'] > [class*='l-column'] {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  [class*='l-grid'] > [class*='xl1'] {
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
  [class*='l-grid'][class*='xl2'] > [class*='l-column'] {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  [class*='l-grid'] > [class*='xl2'] {
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
  [class*='l-grid'][class*='xl3'] > [class*='l-column'] {
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
  [class*='l-grid'] > [class*='xl3'] {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  [class*='l-grid'][class*='xl4'] > [class*='l-column'] {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  [class*='l-grid'] > [class*='xl4'] {
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
  [class*='l-grid'][class*='xl5'] > [class*='l-column'] {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
  }
  [class*='l-grid'] > [class*='xl5'] {
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%;
  }
  [class*='l-grid'][class*='xl6'] > [class*='l-column'] {
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
  [class*='l-grid'] > [class*='xl6'] {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  [class*='l-grid'][class*='xl7'] > [class*='l-column'] {
    -ms-flex-preferred-size: 14.28571%;
    flex-basis: 14.28571%;
    max-width: 14.28571%;
  }
  [class*='l-grid'] > [class*='xl7'] {
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%;
  }
  [class*='l-grid'][class*='xl8'] > [class*='l-column'] {
    -ms-flex-preferred-size: 12.5%;
    flex-basis: 12.5%;
    max-width: 12.5%;
  }
  [class*='l-grid'] > [class*='xl8'] {
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
  }
  [class*='l-grid'][class*='xl9'] > [class*='l-column'] {
    -ms-flex-preferred-size: 11.11111%;
    flex-basis: 11.11111%;
    max-width: 11.11111%;
  }
  [class*='l-grid'] > [class*='xl9'] {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  [class*='l-grid'][class*='xl10'] > [class*='l-column'] {
    -ms-flex-preferred-size: 10%;
    flex-basis: 10%;
    max-width: 10%;
  }
  [class*='l-grid'] > [class*='xl10'] {
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%;
  }
  [class*='l-grid'][class*='xl11'] > [class*='l-column'] {
    -ms-flex-preferred-size: 9.09091%;
    flex-basis: 9.09091%;
    max-width: 9.09091%;
  }
  [class*='l-grid'] > [class*='xl11'] {
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%;
  }
  [class*='l-grid'][class*='xl12'] > [class*='l-column'] {
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
  [class*='l-grid'] > [class*='xl12'] {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

/* column */
[class*='l-column'] {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.skipLink {
  position: absolute;
  top: 0;
  left: calc(50% - (1200px / 2));
  z-index: 999;
  display: block;
  border: dotted 1px;
  padding: 10px 20px;
  -webkit-transition: .2s, -webkit-transform;
  transition: .2s, -webkit-transform;
  transition: transform, .2s;
  transition: transform, .2s, -webkit-transform;
  background-color: #fff;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.l-wrapper {
  height: 100%;
  margin: 0 auto;
  padding-top: 56px;
}

@media screen and (min-width: 1024px) {
  .l-wrapper {
    /*padding-top: 94px;*/
    padding-top: 0;
  }
}

.l-header {
  width: 100%;
  height: 56px;
  background-color: #fff;
  position: fixed;
  top: 0;
  z-index: 3;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 1024px) {
  .l-header {
    width: auto;
    height: 150px;
    position: static;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .home .l-header {
    height: 94px;
  }
}

@media screen and (min-width: 1200px) {
  .l-header {
    width: 100%;
  }
}

.l-header_inner {
  width: 100%;
  height: 100%;
  padding: 16px 14px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .l-header_inner {
    padding: 16px 20px;
  }
}

@media screen and (min-width: 1024px) {
  .l-header_inner {
    width: 1100px;
    padding: 0 50px;
    height: 70px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.l-header_catch {
  background-color: #F5F5F5;
  height: 24px;
}

.l-header_catch p {
  width: 1100px;
  margin: 0 auto;
  padding: 0 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #666666;
  font-size: 1.1rem;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.l-header_logo {
  width: 84%;
  max-width: 400px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.l-header_logo img {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .l-header_logo {
    padding-right: 0;
    position: relative;
    z-index: 3;
  }
}

.l-header_logo a {
  display: block;
  position: relative;
}

.l-header_menu {
  margin: auto;
  overflow: hidden;
  position: absolute;
  z-index: 4;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  right: 0;
  display: block;
  background-color: #248920;
}

@media screen and (min-width: 1024px) {
  .l-header_menu {
    display: none;
  }
}

.l-header_menu_link {
  display: block;
  height: 100%;
}

.l-header_menu_inner {
  display: block;
  position: relative;
  padding: 20.5px 15px;
  font-size: 0%;
}

.l-header_menu_line {
  background-color: #fff;
  display: block;
  width: 26px;
  height: 1px;
  text-indent: -9999px;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  margin: 0 auto;
}

.l-header_menu_line + .l-header_menu_line {
  margin-top: 6px;
}

.l-header.is-active .l-header_menu_line:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(-45deg);
  transform: translateY(7px) rotate(-45deg);
}

.l-header.is-active .l-header_menu_line:nth-child(2) {
  -webkit-transform: translateX(50px);
  transform: translateX(50px);
}

.l-header.is-active .l-header_menu_line:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(45deg);
  transform: translateY(-7px) rotate(45deg);
}

.l-header.is-active .l-header_nav {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.l-header_nav {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 56px 0 30px;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  display: block;
  z-index: 2;
  background-color: #248920;
}

@media screen and (min-width: 1024px) {
  .l-header_nav {
    /*position: static;*/
    position: relative;
    height: auto;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    padding: 0;
    overflow: visible;
    background-color: #248920;
  }
  body.home .l-header_nav {
    background-color: rgba(36, 137, 32, 0.8);
  }
}

@media screen and (min-width: 1024px) {
  .l-header_nav .inner {
    width: 1100px;
    padding: 0 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto;
    position: relative;
  }
}

.l-header_nav .nav-01, .l-header_nav .nav-02 {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  overflow: hidden;
}

@media screen and (min-width: 1024px) {
  .l-header_nav .nav-01, .l-header_nav .nav-02 {
    border: 0;
  }
}

.l-header_nav .nav-01 li, .l-header_nav .nav-02 li {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

@media screen and (min-width: 1024px) {
  .l-header_nav .nav-01 li, .l-header_nav .nav-02 li {
    border: 0;
  }
}

.l-header_nav .nav-01 li a, .l-header_nav .nav-02 li a {
  display: block;
  padding: 15.5px 20px;
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
}

@media screen and (min-width: 1024px) {
  .l-header_nav .nav-01 li a, .l-header_nav .nav-02 li a {
    font-size: 1.6rem;
  }
}

.l-header_nav .nav-01 li img {
  display: none;
}

@media screen and (min-width: 1024px) {
  .l-header_nav .nav-01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .l-header_nav .nav-01 li {
    position: relative;
    flex-grow: 1;
    /* -ms-flex-preferred-size: calc(calc(100% - 60px) / 5);
    flex-basis: calc(calc(100% - 60px) / 5); */
  }
  .l-header_nav .nav-01 li:nth-child(1) {
    -ms-flex-preferred-size: 60px;
    flex-basis: 60px;
    flex-grow: 0;
  }
  .l-header_nav .nav-01 li img {
    width: 25px;
    display: block;
  }
  .l-header_nav .nav-01 li:not(:nth-child(1)) img {
    margin-right: 8px;
  }
  /* .l-header_nav .nav-01 li:nth-child(2) {
    -ms-flex-preferred-size: 178px;
    flex-basis: 178px;
  }
  .l-header_nav .nav-01 li:nth-child(3) {
    -ms-flex-preferred-size: 228px;
    flex-basis: 228px;
  }
  .l-header_nav .nav-01 li:nth-child(4) {
    -ms-flex-preferred-size: 178px;
    flex-basis: 178px;
  }
  .l-header_nav .nav-01 li:nth-child(5) {
    -ms-flex-preferred-size: 178px;
    flex-basis: 178px;
  }
  .l-header_nav .nav-01 li:nth-child(6) {
    -ms-flex-preferred-size: 178px;
    flex-basis: 178px;
  } */
  .l-header_nav .nav-01 li::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    width: 1px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.5);
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .l-header_nav .nav-01 li:nth-child(1)::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 1px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.5);
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .l-header_nav .nav-01 li a {
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 15px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.l-header_nav .nav-02 {
  border-top: 0;
  margin: 0 0 30px;
}

@media screen and (min-width: 1024px) {
  .l-header_nav .nav-02 {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.l-header_nav .nav-02 li {
  width: 50%;
  float: left;
}

@media screen and (min-width: 1024px) {
  .l-header_nav .nav-02 li {
    width: auto;
    float: none;
    margin-right: 20px;
  }
}

.l-header_nav .nav-02 li:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}

@media screen and (min-width: 1024px) {
  .l-header_nav .nav-02 li:nth-child(odd) {
    border-right: none;
  }
}

@media screen and (min-width: 1024px) {
  .l-header_nav .nav-02 li a {
    padding: 0;
    color: inherit;
    font-size: 1.4rem;
    font-family: inherit;
    font-weight: normal;
    position: relative;
    padding-left: 10px;
  }
  .l-header_nav .nav-02 li a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    vertical-align: middle;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    top: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4.5px 0 4.5px 6px;
    border-color: transparent transparent transparent #248920;
  }
}

.l-header_nav .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (min-width: 1024px) {
  .l-header_nav .sns {
    margin-left: 10px;
  }
}

.l-header_nav .sns li {
  margin: 0 3px;
}

.l-header_nav .sns li a {
  display: block;
}

.l-header_nav .sns li a img {
  width: 26px;
}

@media screen and (min-width: 1024px) {
  .l-header_nav .right {
    position: absolute;
    top: -52px;
    right: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.l-footer {
  background-color: #816437;
  padding: 24px 20px;
}

@media screen and (min-width: 1024px) {
  .l-footer {
    padding: 30px 0;
  }
}

.l-footer_inner {
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (min-width: 1024px) {
  .l-footer_inner {
    width: 1100px;
    padding: 0 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* -webkit-box-pack: flex-between;
    -ms-flex-pack: flex-between;
    justify-content: flex-between; */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.l-footer nav {
  text-align: center;
  width: 280px;
}

@media screen and (min-width: 1024px) {
  .l-footer nav {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0;
  }
}

.l-footer nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -8px;
}

.l-footer nav ul li {
  position: relative;
  font-size: 1.1rem;
}

.l-footer nav ul li::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  width: 1px;
  height: 1em;
  background-color: #fff;
  top: 0;
  bottom: 0;
  margin: auto;
}

.l-footer nav ul li:last-child::after {
  content: none;
}

.l-footer nav ul li a {
  display: block;
  color: #fff;
  padding: 0 8px;
  font-size: 1.1rem;
}

.l-footer_copyright {
  color: #fff;
  font-size: 1.0rem;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 16px 0 0;
}

@media screen and (min-width: 1024px) {
  .l-footer_copyright {
    font-size: 1.2rem;
    margin: 0;
  }
}

.l-footer_copyright span {
  font-family: Verdana;
}

.l-sidebar_item + .l-sidebar_item {
  margin-top: 24px;
}

.l-sidebar_item.framed {
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.l-sidebar_item h3 {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 24px;
  border-left: 4px solid #248920;
  padding-left: .8em;
}

@media screen and (min-width: 1024px) {
  .l-sidebar_item h3 {
    font-size: 1.8rem;
  }
}

.l-sidebar_item ul li a {
  font-size: 1.5rem;
  display: inline-block;
  padding: 5px 0;
}

.l-sidebar .about strong {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: .5em;
}

@media screen and (min-width: 1024px) {
  .l-sidebar .about strong {
    font-size: 2.0rem;
  }
}

.l-sidebar .about p {
  margin-bottom: 1em;
}

.l-sidebar .about p .colred {
  color: #248920;
}

.l-sidebar .about p .lined {
  text-decoration: underline;
}

.l-sidebar .about p a {
  text-decoration: underline;
}

.l-sidebar .about dl {
  overflow: hidden;
  margin-top: 20px;
}

.l-sidebar .about dl dt {
  float: left;
  font-weight: bold;
}

.l-sidebar .about .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.l-sidebar .about .buttons .c-button-02 {
  padding: 10px 0;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

.l-sidebar .about .buttons .c-button-02:nth-child(odd) {
  margin-right: 11px;
}

.l-sidebar .about .buttons .c-button-02:nth-child(even) {
  margin-left: 11px;
}

.l-mainVisual {
  margin: 0 !important;
}

.l-mainVisual_item {
  position: relative;
}

@media screen and (min-width: 375px) {
  .l-mainVisual_item {
    max-width: 550px;
  }
}

@media screen and (min-width: 1024px) {
  .l-mainVisual_item {
    max-width: 750px;
  }
}

.l-mainVisual_item img {
  width: 100%;
}

.l-mainVisual_item p {
  position: absolute;
  left: 20px;
  bottom: 30px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 3px 6px;
  color: #fff;
  font-size: 1.0rem;
}

@media screen and (min-width: 1024px) {
  .l-mainVisual_item p {
    font-size: 1.3rem;
    /*left: calc(calc(100% - 1000px) / 2 + 20px);*/
    left: 30px;
    bottom: 40px;
  }
}

.l-mainVisual .slick-dots {
  bottom: 14px;
}

.l-mainVisual .slick-dots li button {
  background-color: #fff;
  border: 1px solid #707070;
  opacity: .5;
}

.l-mainVisual .slick-dots li.slick-active button {
  opacity: 1;
}

.l-mainVisual .slick-prev, .l-mainVisual .slick-next {
  width: 30px;
  height: 30px;
}

@media screen and (min-width: 768px) {
  .l-mainVisual .slick-prev, .l-mainVisual .slick-next {
    width: 53px;
    height: 53px;
  }
}

.l-mainVisual .slick-prev {
  left: 20px;
}

@media screen and (min-width: 1024px) {
  .l-mainVisual .slick-prev {
    left: calc(calc(100% - 1000px) / 2 + 20px);
  }
}

.l-mainVisual .slick-next {
  right: 20px;
}

@media screen and (min-width: 1024px) {
  .l-mainVisual .slick-next {
    right: calc(calc(100% - 1000px) / 2 + 20px);
  }
}

.l-mainVisual .slick-prev::before, .l-mainVisual .slick-next::before {
  width: 30px;
  height: 30px;
}

@media screen and (min-width: 768px) {
  .l-mainVisual .slick-prev::before, .l-mainVisual .slick-next::before {
    width: 53px;
    height: 53px;
  }
}

.l-mainVisual .slick-prev:after, .l-mainVisual .slick-next:after {
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

@media screen and (min-width: 768px) {
  .l-mainVisual .slick-prev:after, .l-mainVisual .slick-next:after {
    width: 12px;
    height: 12px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
  }
}

.l-mainVisual .slick-prev:after {
  left: 10px;
}

@media screen and (min-width: 768px) {
  .l-mainVisual .slick-prev:after {
    left: 13px;
  }
}

.l-mainVisual .slick-next:after {
  left: 10px;
}

@media screen and (min-width: 768px) {
  .l-mainVisual .slick-next:after {
    left: 18px;
  }
}

.l-page-title {
  margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .l-page-title .inner {
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

@keyframes show{
  from{
      opacity: 0;
  }
  to{
      opacity: 1;
  }
}

.to-top {
  position: fixed;
  bottom: 50px;
  right: 10px;
  /* -webkit-transition: all 0.3s;
  transition: all 0.3s; */
  opacity: 0;
  /* pointer-events: none; */
  display: none;
  background-color: #248920;
  text-indent: -9999px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-tap-highlight-color: transparent;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .to-top {
    width: 53px;
    height: 53px;
    bottom: 146px;
    right: 20px;
  }
}

.to-top::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 3.5px 4px 3.5px;
  border-color: transparent transparent #ffffff transparent;
}

@media screen and (min-width: 768px) {
  .to-top::after {
    border-width: 0 5px 7px 5px;
  }
}

.to-top.is-active {
  opacity: 1;
  animation: show 1s linear 0s;
  /* pointer-events: auto; */
  display: block;
}

.l-container, .l-container-col2 {
  margin: 0 auto;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.l-container-col1 {
  padding: 24px 0 50px;
}

@media screen and (min-width: 1024px) {
  .l-container-col1 {
    padding: 38px 0 60px;
  }
}

.l-container-col1 .l-contents-main {
  display: block;
  /* IE対策に追加 */
}

@media screen and (min-width: 1024px) {
  .l-container-col1 .l-contents-main {
    width: 1100px;
    padding: 0 50px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.l-container-col2 {
  padding: 24px 20px 40px;
}

@media screen and (min-width: 1024px) {
  .l-container-col2 {
    width: 1200px;
    padding: 38px 100px 60px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.l-container-col2 .l-contents {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.l-container-col2 .l-contents-main {
  margin-bottom: 40px;
}

@media screen and (min-width: 1024px) {
  .l-container-col2 .l-contents-main {
    /*flex-basis: 876px;*/
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1024px) {
  .l-container-col2 .l-contents-sub {
    display: block;
    -ms-flex-preferred-size: 280px;
    flex-basis: 280px;
    padding-left: 60px;
  }
}

.l-contents {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.l-contents-section + .l-contents-section {
  margin-top: 40px;
}

@media screen and (min-width: 1024px) {
  .l-contents-section + .l-contents-section {
    margin-top: 80px;
  }
}

@media screen and (min-width: 1024px) {
  .l-contents-section-top {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.l-contents-section-top:last-child {
  margin: 0;
}

.l-contents-section-top .inner {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 20px;
}

@media screen and (min-width: 1024px) {
  .l-contents-section-top .inner {
    margin: 0 auto;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.home #news .list-news article {
  border-bottom: 1px solid #DDDDDD;
  padding: 14px 0;
}

@media screen and (min-width: 1024px) {
  .home #news .list-news article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.home #news .list-news article:first-child {
  border-top: 1px solid #DDDDDD;
}

.home #news .list-news article .meta {
  margin-bottom: 10px;
}

@media screen and (min-width: 1024px) {
  .home #news .list-news article .meta {
    margin-bottom: 0;
    -ms-flex-preferred-size: 246px;
    flex-basis: 246px;
  }
}

.home #news .list-news article .meta time {
  font-size: 1.3rem;
}

@media screen and (min-width: 1024px) {
  .home #news .list-news article .meta time {
    font-size: 1.5rem;
  }
}

.home #news .list-news article .meta .cat {
  font-size: 1.1rem;
  display: inline-block;
  background-color: #F5F5F5;
  line-height: 1;
  text-align: center;
  padding: 3px 20px;
  margin-left: 30px;
}

@media screen and (min-width: 1024px) {
  .home #news .list-news article .meta .cat {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 1024px) {
  .home #news .list-news article .title {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 1.6rem;
  }
}

.home #news .list-news article .title a {
  color: #248920;
}

.home #tiles {
  padding: 0 20px;
  margin-top: 40px;
}

@media screen and (min-width: 1024px) {
  .home #tiles {
    padding: 0;
    margin-top: 50px;
  }
}

.home #tiles ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -5px;
}

.home #tiles ul li {
  -ms-flex-preferred-size: 33.3333%;
  flex-basis: 33.3333%;
  max-width: 33.3333%;
  padding: 0 5px;
  margin-bottom: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (min-width: 1024px) {
  .home #tiles ul li {
    -ms-flex-preferred-size: 16.6666%;
    flex-basis: 16.6666%;
    max-width: 16.6666%;
  }
}

.home #tiles ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #F9FAE0;
  border: 2px solid #DDD;
  border-radius: 6px;
  padding: 16px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}

@media screen and (min-width: 1024px) {
  .home #tiles ul li a {
    padding: 21px 0;
  }
}

.home #tiles ul li a img {
  width: 28px;
}

@media screen and (min-width: 1024px) {
  .home #tiles ul li a img {
    width: 40px;
  }
}

.home #tiles ul li a p {
  font-size: 1.2rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 2px;
}

@media screen and (min-width: 1024px) {
  .home #tiles ul li a p {
    font-size: 1.8rem;
  }
}

.home #about {
  padding: 0 20px;
  margin-top: 40px;
}

@media screen and (min-width: 1024px) {
  .home #about {
    padding: 0;
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.home #about .left, .home #about .right {
  border: 1px solid #CCC;
  border-radius: 6px;
  padding: 23px 20px;
}

@media screen and (min-width: 1024px) {
  .home #about .left, .home #about .right {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    padding: 20px 30px;
  }
}

.home #about .left {
  margin-bottom: 22px;
}

@media screen and (min-width: 1024px) {
  .home #about .left {
    margin-bottom: 0;
    margin-right: 20px;
  }
}

.fb-wrap {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  .fb-wrap {
    width: 418px;
  }
}

.home #basic {
  margin-top: 40px;
  padding: 0 20px;
}

@media screen and (min-width: 1024px) {
  .home #basic {
    margin-top: 50px;
    padding: 0;
  }
}

.home #basic strong {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: .5em;
}

@media screen and (min-width: 1024px) {
  .home #basic strong {
    font-size: 2.4rem;
  }
}

.home #basic p {
  font-size: 1.5rem;
  margin-bottom: 1em;
}

.home #basic p .colred {
  color: #248920;
}

.home #basic p a {
  text-decoration: underline;
}

.home #basic dl {
  overflow: hidden;
  font-size: 1.5rem;
  margin-top: 20px;
}

.home #basic dl dt {
  float: left;
  font-weight: bold;
}

.home #basic .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.home #basic .buttons .c-button-02 {
  padding: 10px 0;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

@media screen and (min-width: 1024px) {
  .home #basic .buttons .c-button-02 {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
  }
}

.home #basic .buttons .c-button-02:nth-child(odd) {
  margin-right: 11px;
}

.home #basic .buttons .c-button-02:nth-child(even) {
  margin-left: 11px;
}

@media screen and (min-width: 1024px) {
  .home #about .right {
    margin-left: 20px;
  }
}

.center {
  text-align: center;
}

/* display */
[class*='u-db-'] {
  display: none;
}

[class*='u-di-'] {
  display: none;
}

[class*='u-df-'] {
  display: none;
}

@media screen and (min-width: 0px) {
  .u-db-xs {
    display: block !important;
  }
  br.u-db-xs, em.u-db-xs {
    display: inline !important;
  }
  .u-di-xs {
    display: inline-block !important;
  }
  .u-df-xs {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .u-dn-xs {
    display: none !important;
  }
}

[class*='u-db-'] {
  display: none;
}

[class*='u-di-'] {
  display: none;
}

[class*='u-df-'] {
  display: none;
}

@media screen and (min-width: 375px) {
  .u-db-sm {
    display: block !important;
  }
  br.u-db-sm, em.u-db-sm {
    display: inline !important;
  }
  .u-di-sm {
    display: inline-block !important;
  }
  .u-df-sm {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .u-dn-sm {
    display: none !important;
  }
}

[class*='u-db-'] {
  display: none;
}

[class*='u-di-'] {
  display: none;
}

[class*='u-df-'] {
  display: none;
}

@media screen and (min-width: 768px) {
  .u-db-md {
    display: block !important;
  }
  br.u-db-md, em.u-db-md {
    display: inline !important;
  }
  .u-di-md {
    display: inline-block !important;
  }
  .u-df-md {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .u-dn-md {
    display: none !important;
  }
}

[class*='u-db-'] {
  display: none;
}

[class*='u-di-'] {
  display: none;
}

[class*='u-df-'] {
  display: none;
}

@media screen and (min-width: 1024px) {
  .u-db-lg {
    display: block !important;
  }
  br.u-db-lg, em.u-db-lg {
    display: inline !important;
  }
  .u-di-lg {
    display: inline-block !important;
  }
  .u-df-lg {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .u-dn-lg {
    display: none !important;
  }
}

[class*='u-db-'] {
  display: none;
}

[class*='u-di-'] {
  display: none;
}

[class*='u-df-'] {
  display: none;
}

@media screen and (min-width: 1200px) {
  .u-db-xl {
    display: block !important;
  }
  br.u-db-xl, em.u-db-xl {
    display: inline !important;
  }
  .u-di-xl {
    display: inline-block !important;
  }
  .u-df-xl {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .u-dn-xl {
    display: none !important;
  }
}

/* component */
legend {
  display: none;
}
.search-box {
  position: relative;
  width: 270px;
  margin: 0 auto 30px;
}

@media screen and (min-width: 1024px) {
  .search-box {
    margin: 0;
    width: 180px;
  }
}

.search-box input[type="search"] {
  width: 100%;
  background-color: #fff;
  border: 0;
  border-radius: 42.5px;
  padding: 12px 40px 12px 20px;
  -webkit-appearance: none;
  outline: none;
}

@media screen and (min-width: 1024px) {
  .search-box input[type="search"] {
    background-color: #F5F5F5;
    border: 1px solid #DFE1E5;
    padding: 8px 40px 8px 20px;
    font-size: 1.6rem;
  }
}

.search-box input[type="submit"] {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 0;
  width: 40px;
  background-color: transparent;
  background-image: url("../images//icon/search.png");
  background-position: center;
  background-size: 20px;
  background-repeat: no-repeat;
  -webkit-appearance: none;
}

.c-title-page {
  font-size: 2.1rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  border-left: 4px solid #248920;
  padding-left: .8em;
}

@media screen and (min-width: 1024px) {
  .c-title-page {
    font-size: 2.6rem;
  }
}

.c-title-top {
  font-size: 2.1rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  margin-bottom: 24px;
}

@media screen and (min-width: 1024px) {
  .c-title-top {
    font-size: 2.6rem;
    margin-bottom: 32px;
  }
}

.c-title-top::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  background-color: #248920;
  margin: 12px auto 0;
}

@media screen and (min-width: 1024px) {
  .c-title-top::after {
    width: 50px;
    height: 4px;
    margin: 18px auto 0;
  }
}

.c-title-archive {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 1em;
}

@media screen and (min-width: 1024px) {
  .c-title-archive {
    font-size: 1.8rem;
  }
}

.c-button-01 {
  background-color: #248920;
  border-radius: 6px;
  padding: 10px 60px;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  position: relative;
  display: inline-block;
  margin-top: 20px;
}

@media screen and (min-width: 1024px) {
  .c-button-01 {
    padding: 12px 90px;
    font-size: 1.4rem;
    margin-top: 24px;
  }
}

.c-button-01::after {
  right: 12px;
  top: 0px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  display: block;
}

.c-button-02 {
  background-color: #248920;
  border-radius: 6px;
  padding: 10px 60px;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  position: relative;
  display: inline-block;
  margin-top: 20px;
}

@media screen and (min-width: 1024px) {
  .c-button-02 {
    padding: 12px 90px;
    font-size: 1.4rem;
    margin-top: 24px;
  }
}

.c-button-02::after {
  right: 12px;
  top: 0px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  display: block;
}

.c-button-03 {
  background-color: #248920;
  border-radius: 6px;
  padding: 8px 26px;
  color: #fff;
  text-align: center;
  text-decoration: none !important;
  font-size: 1.2rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  position: relative;
  display: inline-block;
  margin-top: 20px;
}

.c-button-03::after {
  right: 12px;
  top: 0px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  display: block;
}

.c-button-04 {
  border: 1px solid #CCC;
  border-radius: 6px;
  padding: 10px 30px;
  margin-top: 40px;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (min-width: 1024px) {
  .c-button-04 {
    padding: 10px 45px;
    margin-top: 60px;
    font-size: 1.6rem;
  }
}

.c-list-01 {
  margin: 0 0 40px !important;
  list-style: none outside !important;
}

.c-list-01 li {
  padding: 0 0 35px;
  border-bottom: 1px solid #DDD;
}

.c-list-01 li + li {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .c-list-01 li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-flow: row-reverse;
    flex-flow: row-reverse;
  }
}

@media screen and (min-width: 768px) {
  .c-list-01 li .thumb {
    -ms-flex-preferred-size: 45%;
    flex-basis: 45%;
    max-width: 45%;
  }
}

.c-list-01 li .text {
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .c-list-01 li .text {
    -ms-flex-preferred-size: 55%;
    flex-basis: 55%;
    max-width: 55%;
    margin-top: 0;
    padding-right: 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.c-list-01 li .text h2 {
  font-size: 1.5rem;
  margin: 0 0 .8em;
}

@media screen and (min-width: 768px) {
  .c-list-01 li .text h2 {
    font-size: 1.8rem;
  }
}

.c-list-02 li {
  border-bottom: 1px solid #ddd;
}

.c-list-02 li:first-child {
  border-top: 1px solid #ddd;
}

.c-list-02 li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding: 18px 20px 18px 6px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.c-list-02 li a .icon {
  margin-right: 20px;
  -ms-flex-preferred-size: 30px;
  flex-basis: 30px;
  max-width: 30px;
}

@media screen and (min-width: 1024px) {
  .c-list-02 li a .icon {
    margin-right: 36px;
    -ms-flex-preferred-size: 45px;
    flex-basis: 45px;
    max-width: 45px;
  }
}

.c-list-02 li a .text h3 {
  font-size: 1.6rem;
}

@media screen and (min-width: 1024px) {
  .c-list-02 li a .text h3 {
    font-size: 1.8rem;
  }
}

.c-list-02 li a::after {
  right: 0;
  top: 0px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  display: block;
}

.c-list-info article {
  border-bottom: 1px solid #DDDDDD;
  padding: 14px 0;
}

@media screen and (min-width: 1024px) {
  .c-list-info article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.c-list-info article:first-child {
  border-top: 1px solid #DDDDDD;
}

.c-list-info article .meta {
  margin-bottom: 10px;
}

@media screen and (min-width: 1024px) {
  .c-list-info article .meta {
    margin-bottom: 0;
    /*flex-basis: 246px;
          .info & {
            flex-basis: 150px;
          }*/
    margin-right: 20px;
  }
}

.c-list-info article .meta time {
  font-size: 1.3rem;
}

@media screen and (min-width: 1024px) {
  .c-list-info article .meta time {
    font-size: 1.5rem;
  }
}

.c-list-info article .meta .cat {
  font-size: 1.1rem;
  display: inline-block;
  background-color: #F5F5F5;
  line-height: 1;
  text-align: center;
  padding: 3px 20px;
  margin-left: 30px;
}

@media screen and (min-width: 1024px) {
  .c-list-info article .meta .cat {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-list-info article .title {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 1.6rem;
  }
}

.c-list-info article .title a {
  color: #248920;
}

.c-table-info {
  display: block;
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .c-table-info {
    display: table;
  }
}

.c-table-info dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid #DDDDDD;
  padding: 14px 0;
}

.c-table-info dl:first-child {
  border-top: 1px solid #DDDDDD;
}

/* @media screen and (min-width: 1024px) {
  .c-table-info dl {
    display: table-row;
  }
} */

.c-table-info dl dt {
  overflow: hidden;
}

.c-table-info dl dt, .c-table-info dl dd {
  display: block;
}

@media screen and (min-width: 1024px) {
  .c-table-info dl dt .date {
    width: 130px;
  }
  .c-table-info dl dt .cat-box {
    width: 100px;
    display: inline-block;
  }
  .c-table-info dl dt .cat {
    width: 100px;
  }
}
.c-table-info dl dt .date {
  float: left;
}

.c-table-info dl dt .cat-box {
  display: block;
  float: left;
}

.c-table-info dl dt .cat {
  font-size: 1.1rem;
  display: inline-block;
  background-color: #F5F5F5;
  line-height: 1;
  text-align: center;
  padding: 3px 20px;
  margin-left: 20px;
}

@media screen and (min-width: 1024px) {
  .c-table-info dl dt .cat {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 1.2rem;
    padding: 3px 0;
    margin-left: 0;
  }
}

.c-table-info dl dd.ttl {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  margin-top: 10px;
}

@media screen and (min-width: 1024px) {
  .c-table-info dl dd.ttl {
    -ms-flex-preferred-size: calc(100% - 250px);
    flex-basis: calc(100% - 250px);
    padding-left: 20px;
    margin-top: 0;
  }
}

.c-table-info dl dd.ttl a {
  color: #248920;
  font-size: 1.5rem;
}

.c-nav-local {
  margin: 30px 0 0;
}

.c-nav-local ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px !important;
  padding: 0 !important;
  list-style: none outside !important;
}

.c-nav-local ul li {
  position: relative;
}

.c-nav-local ul li::after {
  content: "";
  display: block;
  width: 1px;
  height: 13px;
  background-color: #333;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.c-nav-local ul li:last-child::after {
  content: none;
}

.c-nav-local ul li a {
  font-size: 1.3rem;
  text-decoration: underline;
  padding: 0 10px;
}

.c-box-thumb-text {
  overflow: hidden;
  margin-top: -4px;
  margin-bottom: 20px;
}

.c-box-thumb-text img {
  margin-bottom: 20px !important;
}

@media screen and (min-width: 1024px) {
  .c-box-thumb-text img {
    float: left;
    margin-bottom: 0 !important;
    margin-right: 30px !important;
  }
}

.c-box-thumb-text p {
  font-size: 1.4rem !important;
  margin: 0 0 1.5em !important;
}

.c-box-thumb-text p span.color-red {
  color: #E60012;
}

.c-section {
  border-bottom: 1px solid #ddd;
  padding: 30px 0;
}

.c-section:last-child {
  border: 0;
}

.c-section h2 {
  margin-top: 0 !important;
}

.rcrumbs {
  margin: 10px 0 0;
  padding: 0 20px;
  line-height: 1.4;
}

@media screen and (min-width: 1024px) {
  .rcrumbs {
    margin: 20px 0 0;
    padding: 0;
  }
}

@media screen and (min-width: 1024px) {
  .rcrumbs ul {
    width: 1200px;
    padding: 0 100px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.rcrumbs ul li {
  /*display: inline;*/
  color: #666;
  font-size: 1.2rem;
}

.rcrumbs ul li a {
  color: inherit;
  text-decoration: underline;
}

.rcrumbs .divider {
  color: #666;
  padding: 0 6px;
}

.c-content__list {
  list-style: none outside !important;
  margin: 0 !important;
  padding: 0 !important;
}

.c-content__list li {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.c-content__list li:first-child {
  border-top: 1px solid #ddd;
}

.c-content__list li a {
  display: block;
  text-decoration: none;
}

.c-content__list li h3 {
  color: #248920;
  font-size: 1.6rem;
  font-weight: normal;
}

.c-content__list li .c-summarySearchResult__date {
  font-size: 1.4rem;
  margin-bottom: .5em;
}

.c-content__list li .c-summarySearchResult__txt {
  font-size: 1.4rem;
  margin-top: .5em;
}

/* animation
================================================*/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes Flash1 {
  100% {
    opacity: 0;
  }
}

@keyframes Flash1 {
  100% {
    opacity: 0;
  }
}

/*--------------------------------------------------------------
2.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 1.4rem;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/*--------------------------------------------------------------
4.0 Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.entry-footer:before,
.entry-footer: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,
.nav-links:before,
.nav-links:after,
.pagination:before,
.pagination:after,
.comment-author:before,
.comment-author:after,
.widget-area:before,
.widget-area:after,
.widget:before,
.widget:after,
.comment-meta:before,
.comment-meta:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.entry-footer:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after,
.nav-links:after,
.pagination:after,
.comment-author:after,
.widget-area:after,
.widget:after,
.comment-meta:after {
  clear: both;
}

.entry-header {
  padding: 0 0 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #DDD;
}

.entry-header h3 {
  font-size: 2.0rem;
  font-weight: normal;
  line-height: 1.4;
  margin-bottom: .5em;
}

@media screen and (min-width: 1024px) {
  .entry-header h3 {
    font-size: 2.4rem;
  }
}

.entry-header time {
  font-size: 1.4rem;
}

@media screen and (min-width: 1024px) {
  .entry-header time {
    font-size: 1.3rem;
  }
}

.entry-header .cat {
  display: inline-block;
  background-color: #F5F5F5;
  line-height: 1;
  text-align: center;
  padding: 3px 20px;
  margin-left: 14px;
  font-size: 1.2rem;
}

@media screen and (min-width: 1024px) {
  .entry-header .cat {
    font-size: 1.2rem;
  }
}

.entry-content {
  /*--------------------------------------------------------------
	3.0 Alignments
	--------------------------------------------------------------*/
  /*--------------------------------------------------------------
	4.0 Clearings
	--------------------------------------------------------------*/
  /*--------------------------------------------------------------
	5.0 Typography
	--------------------------------------------------------------*/
  /* youtube */
  /*--------------------------------------------------------------
	6.0 Forms
	--------------------------------------------------------------*/
  /* Placeholder text color -- selectors need to be separate to work. */
  /*--------------------------------------------------------------
	7.0 Formatting
	--------------------------------------------------------------*/
  /*--------------------------------------------------------------
	8.0 Lists
	--------------------------------------------------------------*/
  /*--------------------------------------------------------------
	9.0 Tables
	--------------------------------------------------------------*/
  /*th:first-child,
	td:first-child {
		padding-left: 0;
	}

	th:last-child,
	td:last-child {
		padding-right: 0;
	}*/
  /*--------------------------------------------------------------
	10.0 Links
	--------------------------------------------------------------*/
  /*a:focus {
		outline: thin dotted;
	}*/
  /*a:hover,
	a:active {
		color: #000;
		outline: 0;
	}*/
}

.entry-content .alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.entry-content .alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.entry-content .aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.entry-content .clear:before,
.entry-content .clear:after,
.entry-content .entry-content:before,
.entry-content .entry-content:after,
.entry-content .entry-footer:before,
.entry-content .entry-footer:after,
.entry-content .comment-content:before,
.entry-content .comment-content:after,
.entry-content .site-header:before,
.entry-content .site-header:after,
.entry-content .site-content:before,
.entry-content .site-content:after,
.entry-content .site-footer:before,
.entry-content .site-footer:after,
.entry-content .nav-links:before,
.entry-content .nav-links:after,
.entry-content .pagination:before,
.entry-content .pagination:after,
.entry-content .comment-author:before,
.entry-content .comment-author:after,
.entry-content .widget-area:before,
.entry-content .widget-area:after,
.entry-content .widget:before,
.entry-content .widget:after,
.entry-content .comment-meta:before,
.entry-content .comment-meta:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.entry-content .clear:after,
.entry-content .entry-content:after,
.entry-content .entry-footer:after,
.entry-content .comment-content:after,
.entry-content .site-header:after,
.entry-content .site-content:after,
.entry-content .site-footer:after,
.entry-content .nav-links:after,
.entry-content .pagination:after,
.entry-content .comment-author:after,
.entry-content .widget-area:after,
.entry-content .widget:after,
.entry-content .comment-meta:after {
  clear: both;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  clear: both;
  line-height: 1.4;
}

.entry-content h1:first-child,
.entry-content h2:first-child,
.entry-content h3:first-child,
.entry-content h4:first-child,
.entry-content h5:first-child,
.entry-content h6:first-child {
  padding-top: 0;
}

.entry-content h1 {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 1.0em 0 1.0em;
}

@media screen and (min-width: 768px) {
  .entry-content h1 {
    font-size: 2.0rem;
  }
}

.entry-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 1.0em 0 1.0em;
}

@media screen and (min-width: 768px) {
  .entry-content h3 {
    font-size: 1.8rem;
  }
}

.entry-content h4 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 1.0em 0 1.0em;
}

@media screen and (min-width: 768px) {
  .entry-content h4 {
    font-size: 1.6rem;
  }
}

.entry-content strong {
  font-weight: bold;
}

.entry-content p, .entry-content ul, .entry-content ol {
  font-size: 1.5rem;
  margin: 0 0 2.0em;
  padding: 0;
  word-break: break-word;
}

.entry-content p:last-child, .entry-content ul:last-child, .entry-content ol:last-child {
  margin-bottom: 0;
}

.entry-content dfn,
.entry-content cite,
.entry-content em,
.entry-content i {
  font-style: italic;
}

.entry-content blockquote {
  color: #666;
  font-size: 1.8rem;
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.7;
  margin: 0;
  overflow: hidden;
  padding: 0;
}

.entry-content blockquote cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  margin-top: 0.5em;
}

.entry-content address {
  margin: 0 0 1.5em;
}

.entry-content pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

.entry-content code,
.entry-content kbd,
.entry-content tt,
.entry-content var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 1.5rem;
  font-size: 0.9375rem;
}

.entry-content abbr,
.entry-content acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

.entry-content mark,
.entry-content ins {
  background: #eee;
  text-decoration: none;
}

.entry-content big {
  font-size: 125%;
}

.entry-content blockquote {
  quotes: "" "";
}

.entry-content q {
  quotes: "“" "”" "‘" "’";
}

.entry-content blockquote:before,
.entry-content blockquote:after {
  content: "";
}

.entry-content :focus {
  outline: none;
}

.entry-content img {
  margin-bottom: 1.5em;
  margin-left: auto;
  margin-right: auto;
}

.entry-content figcaption,
.entry-content figure,
.entry-content main {
  display: block;
  font-size: 1.2rem;
}

.entry-content figure {
  max-width: 100%;
}

.entry-content figure img {
  margin-bottom: .5em;
}

.entry-content .hide {
  display: none;
}

.entry-content .youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: .8em;
}

.entry-content .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.entry-content .gmap {
  position: relative;
  padding-bottom: 63%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin-bottom: 20px;
}

.entry-content .gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.entry-content label {
  color: #333;
  display: block;
  font-weight: 800;
  margin-bottom: 0.5em;
}

.entry-content fieldset {
  margin-bottom: 1em;
}

.entry-content input[type="text"],
.entry-content input[type="email"],
.entry-content input[type="url"],
.entry-content input[type="password"],
.entry-content input[type="search"],
.entry-content input[type="number"],
.entry-content input[type="tel"],
.entry-content input[type="range"],
.entry-content input[type="date"],
.entry-content input[type="month"],
.entry-content input[type="week"],
.entry-content input[type="time"],
.entry-content input[type="datetime"],
.entry-content input[type="datetime-local"],
.entry-content input[type="color"],
.entry-content textarea {
  color: #666;
  background: #fff;
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
  border: 1px solid #bbb;
  border-radius: 3px;
  display: block;
  padding: 0.7em;
  width: 100%;
}

.entry-content input[type="text"]:focus,
.entry-content input[type="email"]:focus,
.entry-content input[type="url"]:focus,
.entry-content input[type="password"]:focus,
.entry-content input[type="search"]:focus,
.entry-content input[type="number"]:focus,
.entry-content input[type="tel"]:focus,
.entry-content input[type="range"]:focus,
.entry-content input[type="date"]:focus,
.entry-content input[type="month"]:focus,
.entry-content input[type="week"]:focus,
.entry-content input[type="time"]:focus,
.entry-content input[type="datetime"]:focus,
.entry-content input[type="datetime-local"]:focus,
.entry-content input[type="color"]:focus,
.entry-content textarea:focus {
  color: #222;
  border-color: #333;
}

.entry-content select {
  border: 1px solid #bbb;
  border-radius: 3px;
  height: 3em;
  max-width: 100%;
}

.entry-content input[type="radio"],
.entry-content input[type="checkbox"] {
  margin-right: 0.5em;
}

.entry-content input[type="radio"] + label,
.entry-content input[type="checkbox"] + label {
  font-weight: 400;
}

.entry-content button,
.entry-content input[type="button"],
.entry-content input[type="submit"] {
  background-color: #222;
  border: 0;
  border-radius: 2px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.4rem;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1;
  padding: 1em 2em;
  text-shadow: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.entry-content input + button,
.entry-content input + input[type="button"],
.entry-content input + input[type="submit"] {
  padding: 0.75em 2em;
}

.entry-content button.secondary,
.entry-content input[type="reset"],
.entry-content input[type="button"].secondary,
.entry-content input[type="reset"].secondary,
.entry-content input[type="submit"].secondary {
  background-color: #ddd;
  color: #222;
}

.entry-content button:hover,
.entry-content button:focus,
.entry-content input[type="button"]:hover,
.entry-content input[type="button"]:focus,
.entry-content input[type="submit"]:hover,
.entry-content input[type="submit"]:focus {
  background: #767676;
}

.entry-content button.secondary:hover,
.entry-content button.secondary:focus,
.entry-content input[type="reset"]:hover,
.entry-content input[type="reset"]:focus,
.entry-content input[type="button"].secondary:hover,
.entry-content input[type="button"].secondary:focus,
.entry-content input[type="reset"].secondary:hover,
.entry-content input[type="reset"].secondary:focus,
.entry-content input[type="submit"].secondary:hover,
.entry-content input[type="submit"].secondary:focus {
  background: #bbb;
}

.entry-content ::-webkit-input-placeholder {
  color: #333;
  font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif;
}

.entry-content :-moz-placeholder {
  color: #333;
  font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif;
}

.entry-content ::-moz-placeholder {
  color: #333;
  font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif;
  opacity: 1;
  /* Since FF19 lowers the opacity of the placeholder by default */
}

.entry-content :-ms-input-placeholder {
  color: #333;
  font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif;
}

.entry-content hr {
  background-color: #bbb;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

.entry-content ul,
.entry-content ol {
  margin: 0 0 1.5em 1.5em;
  padding: 0;
}

.entry-content ul {
  list-style: disc;
}

.entry-content ol {
  list-style: decimal;
}

.entry-content li > ul,
.entry-content li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

.entry-content dt {
  font-weight: 700;
}

.entry-content dd {
  margin: 0 1.5em 1.5em;
}

.entry-content table {
  border-collapse: collapse;
  margin: 0 0 10px;
  width: 100%;
  border: 1px solid #b4b4b4;
  table-layout: fixed;
}

.entry-content th {
  padding: 6px;
  background-color: #f7f7f7;
  border-right: 1px solid #b4b4b4;
  font-weight: bold;
}

.entry-content tr {
  border-bottom: 1px solid #b4b4b4;
}

.entry-content td {
  padding: 6px;
  font-size: 1.2rem;
  border-right: 1px solid #b4b4b4;
}

@media screen and (min-width: 768px) {
  .entry-content td {
    font-size: 1.4rem;
  }
}

.entry-content a {
  text-decoration: underline;
}

.entry-content a.pdfIcon::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url(../images/icon/icon_pdf.png) no-repeat;
  vertical-align: middle;
  margin-left: 4px;
}

.entry-content a.pdfIcon.c-button-03::after {
  border: none;
  -webkit-transform: none;
  transform: none;
}

.introduction {
  margin: 20px 0 40px;
}

.introduction p {
  font-size: 1.2rem;
  line-height: 1.7;
}

@media screen and (min-width: 768px) {
  .introduction p {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 768px) {
  .img-set {
    overflow: hidden;
    margin-top: -30px;
  }
}

.img-set figure {
  margin: 30px 0 0;
}

@media screen and (min-width: 768px) {
  .img-set figure {
    float: left;
    width: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .img-set figure:nth-child(odd) {
    padding: 0 27px 0 0;
  }
  .img-set figure:nth-child(even) {
    padding: 0 0 0 27px;
  }
}

.img-set figcaption {
  text-align: center;
  font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
  .img-set figcaption {
    font-size: 1.6rem;
  }
}

.block-parallel {
  margin-bottom: 40px;
}

.block-parallel:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .block-parallel:last-child {
    margin-bottom: -20px;
  }
}

@media screen and (min-width: 768px) {
  .block-parallel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.block-parallel .image {
  margin: 0 0 10px;
}

@media screen and (min-width: 768px) {
  .block-parallel .image {
    width: 360px;
    margin: 0 20px 20px 0;
  }
}

.block-parallel .image img {
  margin-bottom: 0;
}

.block-parallel .text {
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .block-parallel .text {
    width: 268px;
  }
  .block-parallel .text::after {
    content: "";
    clear: both;
  }
}

@media screen and (min-width: 1024px) {
  .block-parallel .text {
    width: 435px;
  }
}

.block-parallel .text h2 {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 1em;
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .block-parallel .text h2 {
    font-size: 1.8rem;
  }
}

.scroll {
  overflow: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.scroll::-webkit-scrollbar {
  height: 8px;
}

.scroll::-webkit-scrollbar-track {
  background: #fff;
}

.scroll::-webkit-scrollbar-thumb {
  background: #dadada;
  border-radius: 12px;
}

.wp-pagenavi {
  text-align: center;
  margin: 40px 0;
}

@media screen and (min-width: 768px) {
  .wp-pagenavi {
    margin: 60px 0;
  }
}

.wp-pagenavi a {
  display: inline-block;
  width: 30px;
  padding: 10px 0;
  margin: 0 6px;
  font-size: 1.1rem;
  line-height: 1;
  text-decoration: none;
  background: #fff;
  color: #010101;
  text-align: center;
  letter-spacing: 0;
  vertical-align: top;
  border: 1px solid #b4b4b4;
}

@media screen and (min-width: 768px) {
  .wp-pagenavi a {
    width: 43px;
    padding: 12px 0;
    margin: 0 8px;
    font-size: 1.6rem;
  }
}

.wp-pagenavi .current {
  display: inline-block;
  width: 30px;
  padding: 10px 0;
  margin: 0 6px;
  font-size: 1.1rem;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0;
  color: #010101;
  vertical-align: top;
  border: 1px solid #248920;
}

@media screen and (min-width: 768px) {
  .wp-pagenavi .current {
    width: 43px;
    padding: 12px 0;
    margin: 0 8px;
    font-size: 1.6rem;
  }
}

.wp-block-media-text {
  padding: 0 0 35px;
  border-bottom: 1px solid #DDD;
}

.wp-block-media-text + .wp-block-media-text {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .wp-block-media-text {
    grid-template-columns: 55% 1fr !important;
  }
}

.wp-block-media-text .wp-block-media-text__content {
  grid-row: 2 !important;
  padding: 0 !important;
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .wp-block-media-text .wp-block-media-text__content {
    grid-row: 1 !important;
    margin-top: 0;
    padding-right: 30px !important;
  }
}

.wp-block-media-text .wp-block-media-text__content h3 {
  font-size: 1.5rem;
  margin: 0 0 .8em;
}

@media screen and (min-width: 768px) {
  .wp-block-media-text .wp-block-media-text__content h3 {
    font-size: 1.8rem;
  }
}

.wp-block-media-text .wp-block-media-text__media {
  grid-row: 1 !important;
  -ms-grid-row-align: start !important;
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.wp-block-media-text .wp-block-media-text__media > img {
  margin-bottom: 0 !important;
}

.entry-content .cols {
  display: flex;
  flex-wrap: wrap;
}

.entry-content .col {
  margin-right: 2rem;
  margin-bottom: 2.5rem;
  width: calc(50% - 2rem);
}

@media screen and (min-width: 768px) {
  .entry-content .col {
  width: calc(25% - 2rem);
}
}

.entry-content .wp-block-media-text + .entry-col,
.entry-content .entry-col + .entry-col {
  margin-top: 40px;
}
.entry-content .entry-col {
  padding: 0 0 35px;
  border-bottom: 1px solid #DDD;
}