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

  --primary-color: #2ba738;
  --primary-color-rgb: 255,255,255;
  --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, picture, 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, picture {
  margin: 0;
  line-height: 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;
  overflow: hidden;
}
main::before,
main::after {
  content: "";
  display: block;
  clear: both;
}
footer{
  width: 100%;
  position: absolute;
  bottom: 0;
}
/*=====================
* module
=======================*/
/*------
* loading
-------*/
.loading{
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
.loading img{
  width: 100px;
}
/*------
* Section
-------*/
section {
  margin-bottom: 120px;
  padding: 1.4em 0;
}
/*------
* layout
-------*/
.inner {
  max-width: 1240px;
  margin: 0 auto;
}
.element {
  position: relative;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
/*--- col ---*/
[class^="col"]{
  display: flex;
  justify-content: center;
  margin-bottom: 4em;
}
[class^="col"] > .item {
  margin: 0 0.8em;
}
.col2 > .item {
  width: calc(50% - 1.6em);
}
.col2.reverse {
  flex-direction: row-reverse;
}
.col2.horizon > .item {
  width: calc(50% - 1.6em);
  flex-direction: row;
  padding: 0;
}
.col2.horizon > .item > * {
  width: calc(50% - 1.6em);
  margin: 0 0.8em;
  padding: 0;
}
.col3 > .item {
  width: calc(33% - 1.6em);
}
.col4 > .item {
  width: calc(25% - 1.6em);
}
.col5 > .item {
  width: calc(20% - 1.6em);
}
.col-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width:960px) {
  [class^="col"]{
    flex-wrap: wrap;
  }
  .col2 > .item {
    width: calc(100% - 1.6em);
  }
  .col2.horizon > .item {
    flex-direction: column;
  }
  .col4 > .item {
    width: calc(50% - 1.6em);
  }
}
@media screen and (max-width:520px) {
  section {
    margin-bottom: 60px;
  }
  .col2.horizon > .item,
  .col4 > .item {
    width: calc(100% - 1.6em);
  }
}
/*--- 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);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/*------
* 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;
  margin-bottom: 1.8em;
  width: calc(100% - 1.6em);
}
.hdg_lv3 {
  font-size: 1.2rem;
}
.hdg_lv4 {
  font-size: 1em;
}
/*------
* text
-------*/
.lead {
  width: 80%;
  margin: 0 auto 2em;
}
.ta-r {
  text-align: right;
}
.ta-c {
  text-align: center;
}
.pc-hidden {
  display: none;
}
.sp-hidden {
  display: block;
}
@media screen and (max-width:960px) {
  .lead {
    width: 100%;
  }
  .pc-hidden {
    display: block;
  }
  .sp-hidden {
    display: none;
  }
}
 @media screen and (max-width:520px) {
 }
/*-----
* 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: 1px 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;
   justify-content:flex-end;
 }
 ul.buttons li {
   margin: 0 0.5em;
 }
 @media screen and (max-width:960px) {
}
 @media screen and (max-width:520px) {
   ul.buttons{
     display: block;
   }
   ul.buttons > li {
     text-align: right;
     margin: 1em 0;
   }
 }
/*-----
* select
------*/
.menu{
  display: 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;
  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: 3em;
}
.news-items > .news-item{
  border-bottom: 1px dotted #cccccc;
  padding: 0.8em 0;
}
.news-items > .news-item > a{
  display: 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:960px) {
}
@media screen and (max-width:520px) {
  .news-items > .news-item > a {
    display: block;
    text-align: left;
  }
}
/*--- news-items box ---*/
.news-items.boxs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.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;
  min-height: 150px;
}
.news-items.boxs > .item .discription > .inner {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}
.news-items.boxs > .item .categoly,
.news-items.boxs > .item .tags {
  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 .tags > li {
  font-size: 0.6em;
  margin: 0 0.4em;
}
.news-items.boxs > .item .tags > li::before {
  content: '#';
}
@media screen and (max-width:960px) {
  .news-items.boxs > .item .categoly > li,
  .news-items.boxs > .item .tags > li {
    font-size: 0.8em;
  }
  .news-items.boxs > .item {
    margin: 0 auto 2.4em;
  }
}
@media screen and (max-width:520px) {
  .news-items.boxs {
   display: block; 
  }
}
/*--- 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;
  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;
  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;
}
.info > .item > dd > .mapicon > img {
  width: 24px;
  height: 24px;
  line-height: 0;
  padding: 0 0.4em;
}

/*=====================
* single & archive
=======================*/
/*------
* header
--------*/
#single header,
 #archive header{
  display: block;
  opacity: 1;
}

/*------
* main-section
--------*/
#single #main-section .inner {
  max-width: 860px;
}
@media screen and (max-width:960px) {
  #single #main-section .inner {
    max-width: 100%;
  }
  #single #main-section .inner .inner_head,
  #single #main-section .inner .content_inner {
    margin: 0 1.4em;
  }
}
@media screen and (max-width:520px) {
  .news-items.boxs {
   display: block; 
  }
}
#single #main-section .inner .main-visual figure img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}