@charset "UTF-8";

/* fonts
----------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&&display=swap');

/* reset
----------------------------------------------------*/
/* 
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;
}

ul,ol {
  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;
}

* {
  box-sizing:border-box;
}

/* layout
----------------------------------------------------*/
html,body{
	height: 100%;
}

html {
  scroll-behavior: smooth;
 	font-size: 62.5%; 
}

body{
  color: #333;
  line-height: 1.7;
  font-family: Arial, Helvetica, "sans-serif";
  font-size: 1.6rem;
  position: relative;
  -webkit-text-size-adjust: 100%;
}

#container{
  width:100%;
  min-height: 100vh;
  height: auto !important;
  height: 100%;
  position: relative;
  margin: 0 auto;
  padding: 0 auto;
  -webkit-overflow-scrolling: touch;
}

#wrapper {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 200px;
}
  
footer {
  width: 100%;
  position: absolute;
  bottom: 0;
  overflow: hidden;
  min-height: 200px;
}
  
.inner {
  width: 90%;
  max-width: 1000px; 
  margin: 0 auto;
}
  
.sp {display:none;}
.pc {display:block;}

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

/* clearfix */
.cf {
	zoom: 1;
}
.cf:before, .cf:after {
	content: "";
	display: table;
}
.cf:after {
	clear: both;
}

/* link */
a {
  color: #1CAF3E;
  transition: all .2s linear;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
  
}

a:hover img {
  opacity: .8;
}

main a.external_link::after {
  display: inline-block;
  content: "\f08e";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  margin-left: 0.2em;
  margin-right: 0.2em;
  color: #1CAF3E;
}


@media only screen and (max-width: 768px) {    
  .sp { display:block; }
  .pc { display:none; }
  
  #wrapper {
    padding-bottom: 0;
  }
  
  footer {
    width: 100%;
    position: static;
    min-height: 90px;
  }
  
}

/* header
----------------------------------------------------*/
header {
  z-index: 5;
  height: 120px;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  position: fixed;
}

/********** header .inner **********/

/********** logo **********/
header .logo {
  height: 60px;
}

header .logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #157F4B;
  height: 60px;
}

header .logo img {
  width: 120px;
  height: auto;
  border-right: 1px solid #157F4B;
  padding-right: 10px;
}

header .logo span {
  padding-left: 10px;
  font-family: 'Oswald', sans-serif;
  font-weight: bold;
  font-size: 2.8rem;
}

header .logo a:hover {
  opacity: .8;
}
  
/********** menu_btn **********/
header .menu_btn { 
  display: none;
}

/********** gnavi **********/
header .gnavi {
  font-family: 'Oswald', sans-serif;
  background: #157F4B;
}
 
header .gnavi ul {
  display: flex;
  justify-content: space-between
}

header .gnavi ul li {
  position: relative;
  margin: 0 10px; 
  text-align: center;
}

header .gnavi ul li a {
  display: block;
  color: #fff;
  text-decoration: none;
  transition: all .3s linear;
  position: relative;
  box-sizing: border-box;
  height: 60px;
  line-height: 60px;
}

header .gnavi ul li::after {
  position: absolute;
  transition: .3s;
  content: '';
  width: 40px;
  bottom: 0;
  left: 50%;
  height: 4px;
  background: #1CAF3E;
  transform: scale(0,1) translateX(-50%);
  transform-origin: left;
}

header .gnavi ul li:hover::after {
  transform: scale(1,1) translateX(-50%);
}

header .gnavi ul li.current-menu-item a::after {
  position: absolute;
  transition: .3s;
  content: '';
  width: 40px;
  height: 4px;
  left: 50%;
  bottom: 0;
  background: #1CAF3E;
  transform: translateX(-50%);
}

header .gnavi .logo {
  display: none;
}


@media only screen and (max-width: 768px) { 
  header {
    height: 60px;
  }
  
  header .inner {
    width: 96%;
  }
  /********** logo **********/
  header .logo img {
    width: 70px;
    height: auto;
  }
  
  header .logo span {
    font-size: 1.5rem;
  }
  
  /********** header .inner **********/
  header .inner {
    margin: 0 auto;
    height: 60px;
  }
  
  /********** menu_btn **********/
  header .menu_btn { 
    display: block;
    z-index: 30;
    position: fixed;
    cursor: pointer;
    width: 40px;
    height: 40px;
    margin: 0;
    top: 5px;
    right: 10px;
    text-align: center;
  }

  header .menu_btn .label {
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
  }

  header .menu_btn span {
    content: "";
    display: block;
    position: absolute;
    background: #157F4B;
    width: 40px;
    height: 2px;
    margin: 0;
    right: 2px;
    transition: all .3s ease-in-out;
  }
  
  header .menu_btn span:nth-of-type(1) { 
    top: 10px;
  }

  header .menu_btn span:nth-of-type(2) {
    top: 25px;
  }
  
  header .menu_btn span:nth-of-type(3) {
    top: 40px;
  }

  /***** menu_btn open ****/
  header .menu_btn.open span {
    background: #fff;
  }

  header .menu_btn.open span:nth-of-type(1) {
    -webkit-transform: rotate(-225deg);
    transform: rotate(-225deg);
    top: 25px;
  }

  header .menu_btn.open span:nth-of-type(2) {
    display: none;
  }
  
  header .menu_btn.open span:nth-of-type(3) {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    top: 25px;
  }

  /********** navi_open **********/
  header .navi_open {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    height: 100vh;
    background: #157F4B;
    z-index: 20;
    display: block;
  }

  header .navi_open.close { 
    display: none;
  }

  /********** gnavi **********/
  header .gnavi ul {
    display: block;
  }

  header .gnavi ul li {
    position: relative;
    margin: 0;
    width: 100%;
    text-align: left;
  }
  
  header .gnavi {
    margin-top: 60px; 
    display: block;
  }
  
  header .gnavi ul li a {
    padding: 10px 20px;
    color: #fff;
  }

  header .gnavi .logo {
    display: block;
    margin-bottom: 10px;
  }

  header .gnavi .logo a {
    height: 100px;
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    background: none;
    border-radius: 100%;
  }

  header .gnavi .logo img {
    width: 120px;
    height: auto;
    top: 0;
    left: 0;
  }  
  
  header .gnavi ul li::after,
  header .gnavi ul li.current-menu-item a::after{
    content: none;
  }
  
  header .gnavi .menu.inner {
    width: 100%;
  }

  /********** overlay **********/
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background:rgba(0,0,0,0.5);
    display: block;
    z-index: 10;
  }

  .overlay.invisible {
    display: none;
  }
}

/* footer
----------------------------------------------------*/


/* sec_footer_navi_area */
footer .sec_footer_navi_area {
  background: #1CAF3E;
  min-height: 200px;
  color: #fff;
  padding: 20px 0;
}

footer .sec_footer_navi_area h5 {
  font-family: 'Oswald', sans-serif;
  margin-bottom: 0.5em;
}

footer .sec_footer_navi_area .footer_navi_wrap {
  display: flex;
  width: 50%;
}

footer .sec_footer_navi_area ul.footer_navi {
  margin: 0;
  width: 33%;
  text-align: left;
  font-size: 1.4rem;
}

footer .sec_footer_navi_area ul.footer_navi li a {
  color: #fff;
}

footer .sec_footer_navi_area ul.footer_navi li a:hover {
  text-decoration: none;
}

footer .sec_footer_navi_area .footer_site_info {
  width: 48%;
  margin: 0 0 0 auto;
  text-align: right;
  font-size: 1.2rem;
}

/********** pagetop **********/
footer .pagetop a {
  display: block;
  width: 50px;
  height: 50px;
  background: #fff;
  text-indent: -9999px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  border: 1px solid #1CAF3E;
  border-radius: 25px;
}
    
footer .pagetop a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%; 
  width: 6px;
  height: 6px;
  border-top: 2px solid #1CAF3E;
  border-right: 2px solid #1CAF3E;
  -webkit-transform: rotate(-45deg) translateY(-50%);
  transform: rotate(-45deg) translateY(-50%);
}

@media only screen and (max-width: 768px) { 
  

  /* sec_footer_navi_area */
  footer .sec_footer_navi_area .footer_navi_wrap {
    width: 100%;
    margin-bottom: 1em;
  }

  footer .sec_footer_navi_area .footer_site_info {
    width: 100%;
    margin: 0;
    text-align: center;
  }

  /********** pagetop **********/
  footer .pagetop a {
    bottom: 90px;
  }
}

/* main
----------------------------------------------------*/
main {
  margin-top: 120px;
  background: #fff;
}

main .anchor {
  margin-top: -80px;
  padding-top: 80px;
}

main * + .btn,
main * + .btn_back {
  margin-top: 30px;
}

/* btn */
main .btn a,
main .btn button[type="submit"], 
main .btn button[type="button"] {
  display: block;
  background: #157F4B;
  color: #fff !important;
  font-weight: bold;
  text-decoration: none !important;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  height: 60px;
  line-height: 60px;
  max-width: 320px;
  position: relative;
  border: none;
  font-size: 1.6rem;
  border-radius: 30px;
}

/* btn_pdf */
main .btn_pdf a {
  display: block;
  background: #157F4B;
  color: #fff !important;
  font-weight: bold;
  text-decoration: none !important;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  height: 60px;
  line-height: 60px;
  max-width: 320px;
  position: relative;
  border: none;
  font-size: 1.6rem;
  border-radius: 30px;
}

main .btn_pdf a::before {
  display: inline-block;
  content: "\f1c1";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 0.5em;
  margin-right: 0.5em;
  color: #fff;
}

/* btn_back */
main .btn_back a,
main .btn_back button[type="submit"], 
main .btn_back button[type="button"]{
  display: block;
  background: #157F4B;
  color: #fff !important;
  font-weight: bold;
  text-decoration: none !important;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  height: 60px;
  line-height: 60px;
  max-width: 320px;
  position: relative;
  border: none;
  font-size: 1.6rem;
  border-radius: 30px;
}

main .btn_back button[type="submit"], 
main .btn_back button[type="button"] {
  background: #999;
}

/* btn_contact */
main .btn_contact a {
  display: block;
  background: #157F4B;
  color: #fff !important;
  font-weight: bold;
  text-decoration: none !important;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  height: 60px;
  line-height: 60px;
  max-width: 320px;
  position: relative;
  border: none;
  font-size: 1.6rem;
  border-radius: 30px;
}

main .btn_contact a::before {
  display: inline-block;
  content: "\f0e0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 0.5em;
  margin-right: 0.5em;
  color: #fff;
}

main .btn a:hover,
main .btn button[type="submit"]:hover, 
main .btn button[type="button"]:hover,
main .btn_back a:hover,
main .btn_back button[type="submit"]:hover, 
main .btn_back button[type="button"]:hover,
main .btn_pdf a:hover,
main .btn_contact a:hover,
main .sns_btns li a:hover {
  opacity: .8;
  cursor: pointer;
}

main ul.btn_set {
  display: flex;
  max-width: 800px;
  margin: 40px auto;
}

main ul.btn_set li {
  flex-grow: 1;
}

main ul.btn_set .btn {
  margin-top: 0;
}

/* img */
main .img_right {
  float: right;
  margin: 0 0 30px 30px;
}

main .img_left {
  float: right;
  margin: 0 30px 30px 0;
}

main .img_center {
  margin: 0 auto 30px;
}

main .img_right img,
main .img_left img,
main .img_center img {
  display: inline;
  width: auto;
  max-width: inherit;
}

main .img_right img + img,
main .img_left img + img,
main .img_center img + img {
  margin: 0 10px;
}

main * + h2 {
  margin-top: 1em;
}

@media only screen and (max-width: 768px) {
  main {
    margin-top: 60px;
  }
  
  main .anchor {
    margin-top: -60px;
    padding-top: 60px;
  }
  
  main ul.btn_set {
    display: block;
  }
  
  main ul.btn_set li {
    margin-bottom: 1em;
  }
  
  /* img */
  main .img_right,
  main .img_left {
    float: none;
    margin: 0;
  }
  
  main .img_right img,
  main .img_left img {
    display: block;
    margin: 0 auto 30px;
  }

  main .img_right img + img,
  main .img_left img + img,
  main .img_center img + img {
    margin: 0 auto;
  }
}


/* page_title
----------------------------------------------------*/
.page_title {
  min-height: 100px;
  background: #D6F7DD;
  display: flex;
  align-items: center;
  padding: 20px 0;
  color: #157F4B;
}

.page_title h1 {
  font-size: 3rem;
  line-height: 1.3;
  text-align: center;
  color: #157F4B;
  width: 90%;
  margin: 0 auto;
  font-family: 'Oswald', sans-serif;
}

/* heading
----------------------------------------------------*/
main h2 {
  font-size: 3.2rem;
  line-height: 1.3;
  margin-bottom: 0.5em;
  font-weight: bold;
  font-family: 'Oswald', sans-serif;
  color: #007F4B;
  border-bottom: 1px solid #007F4B;
  padding-bottom:  10px;
}

main h3 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 30px;
  padding-bottom: 10px;
  position: relative; 
  font-family: 'Oswald', sans-serif;
  border-bottom: 1px solid #333;
}

main h4 {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 10px;
  padding-left: 10px;
  border-left: 4px solid #007F4B;;
  font-family: 'Oswald', sans-serif;
}

main h5 {
  font-size: 2rem;
  font-weight: bold;
	line-height: 1.3;
	margin-bottom: 10px;
  font-family: 'Oswald', sans-serif;
  color: #007F4B;
}

main h6 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 10px;
  font-family: 'Oswald', sans-serif;
}


@media only screen and (max-width: 768px) {
  
}


/* list
----------------------------------------------------*/
main section ul.list {
  padding-left: 0.5em;
}

main section ol.list {
  padding-left: 1.7em;
}

main section ul.list li {
  list-style: disc;
}

main section ol.list li {
  list-style: decimal;
}

main section ul.list li + li{
  margin-top: 0.5em;
}

main section ul.list li {
  list-style: none;
  position: relative;
  padding-left: 1em;
}

main section ul.list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #E7521E;
  border-radius: 50%;
  position: absolute;
  top: .8em;
  left: 0;
}

main section ul.ast {
  padding-left: 0;
}

main section ul.ast li {
  padding-left: 1em;
  text-indent: -1em;
}

main section ul.ast li::before {
  content: "※";
}

/* breadcrumb
----------------------------------------------------*/
.breadcrumb {
  font-size: 1.2rem;
  padding: 5px;
  overflow: hidden;
}

.breadcrumb .inner {
  display: flex;
}

.breadcrumb a {
  color: #666;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  display: block;
  margin: 0 2px;
  white-space: nowrap;
}

.breadcrumb span:last-of-type {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* table
----------------------------------------------------*/
main table {
  border-collapse: collapse;	
  width: 100%;
}

main table th {
  background: #D6F7DD;
  padding: 10px;
  border: 1px solid #ccc;
  line-height: 1.3;
}

main table td {
  padding: 10px;
  border: 1px solid #ccc;
  vertical-align: top;
}

/* post-categories
----------------------------------------------------*/
main ul.post-categories li {
  display: inline-block;
}

main ul.post-categories li + li {
  margin-left: 5px;
}

main ul.post-categories li a {
  display: block;
  background: #D6F7DD;
  color: #157F4B;
  text-decoration: none;
  padding: 0 3px;
  border-radius: 3px;
}

/* news-category
----------------------------------------------------*/
main .news_category {
  display: block;
  background: #D6F7DD;
  color: #157F4B;
  text-decoration: none;
  padding: 0 3px;
  border-radius: 3px;
  margin-left: 10px;
  font-weight: normal;
}


/* form
----------------------------------------------------*/
/* input */
main input[type="text"], 
main input[type="email"], 
main input[type="password"], 
main input[type="tel"] {
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px;
  box-sizing: border-box;
  font-size: 1.6rem;
  width: 100%;
  -webkit-appearance: none;
}

/* textarea */
main textarea {
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px;
  font-size: 1.6rem;
  width: 100%;
  height: 8em;
  -webkit-appearance: none;
}


/* radio */
main .mwform-radio-field input[type=radio] {
  display: none;
}

main .mwform-radio-field + .mwform-radio-field {
  margin-left: 20px;
}

main .mwform-radio-field input[type=radio] + span {
  padding-left: 30px;
  position: relative;
}

main .mwform-radio-field input[type=radio] + span::after,
main .mwform-radio-field input[type=radio] + span::before {
  border-radius: 50%;
  content: '';
  display: block;
  position: absolute;
}

main .mwform-radio-field input[type=radio] + span::before {
  border: 1px solid #ddd;
  left: 0;
  top: 0;
  height: 20px;
  width: 20px;
}

main .mwform-radio-field input[type=radio] + span::after{
  background: #EF8226;
  height: 14px;
  left: 4px;
  opacity: 0;
  top: 4px;
  width: 14px;
}

main .mwform-radio-field input[type=radio]:checked + span::after {
  opacity: 1;
}

/* radio / checkbox */
main input[type="checkbox"]{
 position: absolute;
 white-space: nowrap;
 border: 0;
 clip: rect(0 0 0 0);
 clip-path: inset(50%);
 overflow: hidden;
 height: 1px;
 width: 1px;
 margin: -1px;
 padding: 0;
}

/* checkbox */
main input[type="checkbox"] + label::before {
  background-color: #fff;
  border-radius: 0%;
  border: 1px solid #ddd;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  box-sizing: border-box;
}

main input[type="checkbox"] + label::after {
  border-bottom: 2px solid #999;
  border-left: 2px solid #999;
  opacity: 0;
  height: 5px;
  width: 10px;
  transform: rotate(-45deg);
  top: 5px;
  left: 5px;
}

main input:checked + label::after {
  opacity: 1;
}

/* selectbox */
main select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  cursor: pointer;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  margin: 0;
  background: none;
  font-size: 1.6rem;
  border: 1px solid #ddd;
  border-radius: 3px;
  position: relative;
  display: block;
  color: #333;
}

main .selectbox {
  position: relative;
}

main .selectbox::after {
  content: "";
  width: 6px;
  height: 6px;
  display: block;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  position: absolute;
  top: 14px;
  right: 10px;
  transform: rotate(45deg);
  pointer-events: none;
  z-index: 1;
}

/* gmap
----------------------------------------------------*/
main .gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 80%;
  position: relative;
}

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

@media only screen and (max-width: 768px) {
  main .gmap {
    padding-bottom: 52.5%;
  }
}


/* page
----------------------------------------------------*/
/*
body:not(.home):not(.jp) main p {
  margin-bottom: 1em;
}

body:not(.home):not(.jp) main p:last-child {
  margin-bottom: 0;
}

body:not(.home):not(.jp) main * + h2 {
  margin-top: 3em;
}

body:not(.home):not(.jp) main * + h3 {
  margin-top: 2em;
}
*/

/* archive
----------------------------------------------------*/
.archive main section {
  padding: 60px 0;
}

.archive ul.list_archive {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.archive ul.list_archive li {
  width: 49%;
  margin-bottom: 30px;
}

.archive ul.list_archive li a:hover {
  opacity: .8;
  text-decoration: none;
}

.archive ul.list_archive li dl dt figure {
  position: relative;
  overflow: hidden;
  padding-top: 68.42%;
  margin-bottom: 10px;
}

.archive ul.list_archive li dl dt figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive ul.list_archive li dl dd h4 {
  font-size: 1.6rem;
  margin-bottom: 0;
}

.archive ul.list_archive li dl dd .date {
  color: #666;
  font-size: 1.4rem;
}

.archive main ul.list_category li {
  display: inline-block;
}

.archive main ul.list_category li a {
  background: #000;
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  padding: 2px 5px;
  border-radius: 2px;
}

.archive main ul.list_category li a:hover {
  opacity: .8;
}

.archive main ul.list_archive li ul.list_category li {
  width: auto;
  display: inline-block; 
}

.archive main ul.list_archive li ul.list_category li + li {
  margin-left: 0.5em;
}

.archive main ul.list_archive li ul.list_category li a {
  background: #000;
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  padding: 2px 5px;
  border-radius: 2px;
}


@media only screen and (max-width: 768px) {
  .archive ul.list_archive {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .archive ul.list_archive::after {
    content: "";
    display: block;
    width: 32%;
    height: 0;
  }
  
  .archive ul.list_archive li {
    width: 32%;
  }
}

/********** wp-pagenavi **********/
.wp-pagenavi {
  margin: 30px auto;
  text-align: center;
}

.wp-pagenavi span {
  display: inline-block;
  margin: 0 3px !important;
  padding: 0;
  text-decoration: none;
  width: 44px;
  height: 44px;
  line-height: 44px;
  font-size: 1.4rem;
}

.wp-pagenavi span.pages {
  width: auto;
  border: none;
  padding: 0 10px;
}

.wp-pagenavi a {
  display: inline-block;
  margin: 0 3px;
  padding: 0;
  text-decoration: none;
  width: 44px;
  height: 44px;
  line-height: 44px;
  color: #157F4B;
  background: #fff;
  border: 1px solid #157F4B !important;
  font-size: 1.4rem;
}

.wp-pagenavi a:hover{
  color: #fff;
  background: #1CAF3E;
  border: 1px solid #157F4B;
}

.wp-pagenavi span.current{
  color: #fff;
  background: #157F4B;
  border: 1px solid #157F4B !important;
}

.wp-pagenavi a.last,
.wp-pagenavi a.first {
  border: none;
  width: 30px;
}

.wp-pagenavi a.last:hover,
.wp-pagenavi a.first:hover{
  color: #1CAF3E;
  background: none;
  opacity: .8;
}

/* single
----------------------------------------------------*/
.single main section {
  padding: 60px 0;
}


/* no_post
----------------------------------------------------*/
main section .no_post {
  margin: 40px auto;
  text-align: center;
}