@charset "UTF-8";
/*
* this css file is base
*
*
*/
/*=====================
* root
=====================*/
:root {
  --def-white: #ffffff;
  --def-black: #333333;
  --def-gray-dark: #999;
  --def-gray-dark-rgb: 153, 153, 153;
  --def-gray-light: #ccc;
  --def-gray-hightlight: #dedede;
  --text-link-color: #1686D1;

  --primary-color: #0A5A0A;
  --primary-color-rgb: 10,90,10;
  --primary-color-comp: #ffffff;
  --primary-color-comp-rgb: 255,255,255;
  --primary-color-impact: #8dff98;

  --secondary-color: #F2F0E9;
  --tertiary-color: #FF2700;
  --quaternary-color: #BEDBC1;

  --shdow-color-rgb: 0,0,0;
}

/*=====================
* common
=======================*/
/* アニメーション設定 */
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, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
}
html, body{
  margin: 0;
  padding: 0;
  line-height: 0;
  font-size: 16px;
}
body {
    font-family: 'Questrial', Verdana, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    min-height: 100vh;
    position: relative;
    padding-bottom: 642px;
    box-sizing: border-box;
}
figure {
  margin: 0;
}
img{
  width: 100%;
}
a{
  text-decoration: none;
  border: 0;
  color: var(--def-black);
}
ul,li{
  margin: 0;
  padding: 0;
  list-style: none;
}
main {
  zoom: 1;
  line-height: 1.5rem;
  position: relative;
  z-index: 1;
}
main::before,
main::after {
  content: "";
  display: block;
  clear: both;
}
footer{
  width: 100%;
  position: absolute;
  bottom: 0;
}


/*=====================
* module
=======================*/
/*------
* Section
-------*/
section {
  margin-bottom: 120px;
  padding: 1.4em 0;
}
/*------
* layout
-------*/
.inner {
  max-width: 1240px;
  margin: 0 auto; 
}
/*--- col ---*/
[class^="col"]{
  display: flex;
  margin-bottom: 4em;
  flex-wrap: wrap;
}
.col2 > .item {
  width: calc(50% - 1.6em);
}
.col2.reverse {
  flex-direction: row-reverse;
}
.col3 > .item {
  width: calc(33% - 1.6em);
}
.col4 > .item {
  width: calc(25% - 1.6em);
}
.col5 > .item {
  width: calc(20% - 1.6em);
}
.col6 > .item {
  width: calc(18% - 1.6em);
}
.col7 > .item {
  width: calc(14% - 1.6em);
}
@media screen and (max-width:768px) {
}
/*--- box ---*/
.boxs > .item {
  background-color: var(--primary-color-comp);
  margin: 0.2em;
  border-radius: 0.2em;
  overflow: hidden;
  box-shadow: 3px 3px 6px rgba(var(--shdow-color-rgb), 0.2);
}

/*------
* title
-------*/
.hdg_lv1{
  margin-top: 1em;
  line-height: 1.3;
}
.hdg_lv1 span{
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.5em;
}
.hdg_lv2 {
  font-weight: bold;
  padding-left: 0.8em;
  margin-bottom: 1.8em;
}
.hdg_lv3 {
  font-size: 1rem;
}
/*-----
* toggle
-------*/
.toggle{
  position: relative;
}
.toggle .trigger{
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  border-radius: 0.2em;
  background: var(--text-link-color);
  text-indent:100%;
  white-space:nowrap;
  overflow:hidden;
}
.toggle.active .trigger{
  background: #cccccc;
}
.toggle .trigger::before,
.toggle .trigger::after{
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translateY(0) translateX(-50%);
  transform: translateY(0) translateX(-50%);
  width: 20px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}
.toggle .trigger::after{
  left: 15%;
  transform: rotate(90deg);
}
.toggle.active .trigger::after{
  transform: rotate(0deg);
}

/*------
* button
-------*/
.btn_lv1{
  text-align: center;
}
.btn_lv1 > a {
  background: var(--text-link-color);
  padding: 0.5em 2em;
  border-radius: 0.2em;
  font-size: 1rem;
  color: #ffffff;
}
.btn_lv2 > a{
  padding: 0.3em 2em;
  border: 2px solid var(--text-link-color);
  border-radius: 1em;
  font-size: 1rem;
  text-align: right;
  color: var(--text-link-color);
}
.btn_lv3 > a{
  display: block;
  background: var(--text-link-color);
  padding: 0.3em;
  border-radius: 0.4em;
  font-size: 0.9em;
  color: #ffffff;
}
 ul.buttons{
   display: flex;
   display: -webkit-flex;
   justify-content:flex-end;
 }
 ul.buttons li{
   margin: 0 0.5em;
 }
 @media screen and (max-width:768px) {
   ul.buttons{
     display: block;
   }
   ul.buttons > li{
     text-align: right;
     margin: 1em 0;
   }
 }
/*-----
* select
------*/
.menu{
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 3em;
}
.menu li .select-wrap select{
    outline:none;
    background: none transparent;
    vertical-align: middle;
    font-size: inherit;
    color: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    border-radius: 0.2em;
    text-align: right;
    width: 100%;
    background-color: #F2F2F2;
    padding: 0.2em;
}
.menu li {
  width: calc(25%-1em);
  margin: 0.5em;
  border:1px solid #cccccc;
  border-radius: 0.2em;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  padding: 0.3em;
  position: relative;
}
.menu li .select-wrap{
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.menu li .control-label{
  margin-right: 0.5em;
  white-space: nowrap;
}
.menu li::after{
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  border-bottom: 2px solid #1686D1;
  border-right: 2px solid #1686D1;
  transform: rotate(45deg);
  position: absolute;
  right: 12px;
}

/*-----
* list
-----*/
/*--- news-items list ---*/
.news-items {
  margin-bottom: 2em;
}
.news-items > .news-item{
  border-bottom: 1px dotted #cccccc;
  padding: 0.8em 0;
}
.news-items > .news-item > a{
  display: flex;
  display: -webkit-flex;
  justify-content: flex-start;
  align-items: center;
}
.news-items > .news-item > a > time{
  white-space: nowrap;
  flex-grow: 1;
  margin-right: 0.8em;
}
.news-items > .news-item > a > .hdg-title{
  font-weight: normal;
  font-size: 1rem;
  text-align: left;
  flex-grow: 2;
  margin: 0;
}
@media screen and (max-width:768px) {
  .news-items > .news-item > a {
    display: block;
    text-align: left;
  }
}
/*--- news-items box ---*/
.news-items.boxs {
  display: flex;
}
.news-items.boxs > .item {
  padding-bottom: 0.8em;
}
.news-items.boxs > .item .img {
  width: 100%;
  aspect-ratio: 1 / 1;
}
.news-items.boxs > .item .img > img {
  height: 100%;
  object-fit: cover;
}
.news-items.boxs > .item .discription {
  padding: 0 0.8em;
}
.news-items.boxs > .item .categoly,
.news-items.boxs > .item .tag {
  display: flex;
  padding: 0 0.8em;
}
.news-items.boxs > .item .categoly > li {
  font-size: 0.6em;
  border: 1px solid var(--def-gray-hightlight);
  border-radius: 0.2em;
  padding: 0 0.4em;
  margin: 0 0.4em;
}
.news-items.boxs > .item .tag > li {
  font-size: 0.6em;
  margin: 0 0.4em;
}
.news-items.boxs > .item .tag > li::before {
  content: '#';
}

/*--- ol list number ---*/
ol.number,
ul.disc {
  padding-left: 1.5em;
}
ol.number > li {
  list-style: decimal;
}
ul.disc > li{
  list-style: disc;
}
/*-----
* pager
------*/
.pager{
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.pager > li{
  margin: 0.5em;
}
.pager > li > a {
  background-color: #1686D1;
  padding: 0.4em 0.5em;
  border:1px solid #1686D1;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
}
.pager > li > a {
  background-color: #fff;
  padding: 0.3em 0.5em;
  border:1px solid #1686D1;
  border-radius: 50%;
  color: #1686D1;
  font-weight: bold;
}
.pager > li.current > a{
  background-color: #1686D1;
  color: #fff;
}

/*------
* information
--------*/
.info > .item {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0.3em 0;
}
.info > .item > dt {
  white-space: nowrap;
  min-width: 5em;
}
.info > .item > dd{
  margin-left: 0;
  line-height: 1.5;
}
.info > .item > dd::before{
  content: ":";
  padding-right:0.3em;
  margin-left: -1em;
}
