@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');


:root {
  --font16: clamp(0.875rem, 1.82vw, 1rem);
  --font18: clamp(1.0625rem, 2.21vw, 1.125rem);
  --font20: clamp(1.125rem, 2.08vw, 1.25rem);
  --font22: clamp(1.25rem, 2.6vw, 1.375rem);
  --font24: clamp(1rem, 2.08vw, 1.5rem);
  --font28: clamp(1.375rem, 2.86vw, 1.75rem);
  --font32: clamp(1.5rem, 3.12vw, 2rem);
  --font40: clamp(1.75rem, 3.65vw, 2.5rem);
  --font48: clamp(2rem, 4.17vw, 3rem);
  --font64: clamp(3rem, 6.25vw, 4rem);
  --font72: clamp(4rem, 8.34vw, 4.5rem);
  --font96: clamp(4.5rem, 9.38vw, 6rem);
  --space16: clamp(0.5rem, 1.04vw, 1rem);
  --space24: clamp(0.75rem, 1.56vw, 1.5rem);
  --space32: clamp(1rem, 2.08vw, 2rem);
  --space48: clamp(1.5rem, 3.12vw, 3rem);
  --space64: clamp(2rem, 4.17vw, 4rem);
  --space96: clamp(3rem, 6.25vw, 6rem);
  --space128: clamp(4rem, 8.34vw, 8rem);
  --space192: clamp(6rem, 12.51vw, 12rem);
  --green: #6BAE37;
  --serif: "Shippori Mincho", serif;
}



* {
  margin: 0px;
  padding: 0px;
  vertical-align: top;
  box-sizing: border-box;
  table-layout: fixed;
  scroll-behavior: smooth;
}

body {
  font-size: 17px;
  line-height: 1.8rem;
  font-family: 'Noto Sans JP', sans-serif;
  background: rgba(244, 244, 244, 1);
  color: #333;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  display: block;
  background-repeat: repeat-x;
  margin: 0px;
  padding: 0px;
}

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

a,
a:link,
a:visited {
  text-decoration: none;
  color: #666;
}


strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

blockquote {
  display: block;
  -webkit-margin-before: 1em;
  -webkit-margin-after: 1em;
  -webkit-margin-start: 40px;
  -webkit-margin-end: 40px;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  padding-top: 30px;
  padding-bottom: 70px;
  min-height: 900px;
}

@media screen and (max-width: 800px) {
  .container {
    padding: 10px;
  }
}



/*---------------------
header
-----------------------*/

header {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: white;
  overflow: hidden;
}

@media (max-width: 767px) {
  header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }
}


.header_inner {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
  align-items: center;
  gap: var(--space24);
  width: 100%;
}

@media (max-width: 767px) {
  .header_inner {
    justify-content: center;
    gap: 0;
  }
}

.header_inner .logo {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.header_inner .logo>* {
  padding: 6px 20px;
  overflow: hidden;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .header_inner .logo>* {
    padding: 0;
    display: grid;
    place-content: center;
  }
}

.header_inner .logo img {
  max-width: 440px;
  height: auto;
  width: 100%;
  margin: auto;
}

@media (max-width: 767px) {
  .header_inner .logo img {
    width: 92%;
    margin: auto;
  }
}

.header_inner .info {
  text-align: right;
  flex: 1;
  background-color: rgba(255, 255, 255, 1.00);

}


@media (max-width: 767px) {
  .header_inner .info {
    display: none;
  }
}

.header_inner .info p:nth-child(1) {
  letter-spacing: 5px;
  white-space: nowrap;
  text-align: right;
  font-size: 0.9rem;
  color: #5cae1d;
}

.header_inner .info p:nth-child(2) {
  letter-spacing: 2px;
  white-space: nowrap;
  text-align: right;
  font-size: 1.8rem;
  color: #008200;
}

.header_inner .info p:nth-child(3) {
  letter-spacing: 0px;
  white-space: nowrap;
  text-align: right;
  font-size: 0.85rem;
  color: #5cae1d;
}

@media (max-width: 767px) {
  .header_inner .info {
    padding-bottom: 24px;
  }
}

.top_menu {
  display: block;
  width: 100%;
  background: rgba(90, 179, 23, 1);
}

@media (max-width: 767px) {
  .top_menu {
    overflow: auto;
    width: 100%;
    display: block;
    position: sticky;
    top: 0;
    left: 0;
  }
}

.top_menu .menu {
  display: flex;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  align-items: center;
  justify-content: center;
  gap: 32px;
}


@media (max-width: 767px) {
  .top_menu {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    padding: 0 32px;
  }

  .top_menu .menu {
    display: inline-flex;
    width: auto !important;
    max-width: none !important;
    min-width: 780px;
  }

  .top_menu .menu li {
    flex: none;
  }
}


.top_menu .menu>* {
  padding: 24px 8px;
}

.top_menu .menu>*:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.top_menu .menu a,
.top_menu .menu a:visited {
  color: #fff;
  width: 100%;
  height: 100%;
  display: block;
  white-space: nowrap;
  font-weight: 600;
}


.bottom_menu>ul {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: auto;
  justify-content: center;
  align-items: center;
  margin-bottom: 96px;
}

@media (max-width: 767px) {
  .bottom_menu>ul {
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .bottom_menu>ul>li {
    flex: 1 1 calc((100% - (32px * 1)) / 2);
    text-align: left;
  }
}

@media (max-width: 480px) {
  .bottom_menu>ul>li {
    flex: 1 1 100%;
    text-align: center;
  }
}

a.telnum {
  color: #008200;
  font-family: "FOT-セザンヌ ProN B", CezanneProN-B;
  letter-spacing: 0.8px;
  font-weight: 600;
}


/*---------------------
  footer
-----------------------*/
footer {
  display: block;
  width: 100%;
  background-color: rgba(255, 255, 255, 1.00);
  padding: 25px;
  text-align: center;
}

@media (max-width: 767px) {
  footer {
    padding-bottom: 96px;
  }
}

footer .share-buttons {
  font-size: 20px;
  display: table;
  width: auto;
  list-style: none;
  table-layout: fixed;
  margin-left: auto;
  margin-right: auto;
}

footer .share-buttons>* {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  padding: 15px;
}

.page-top {
  position: fixed;
  bottom: 30px;
  right: 0;
  width: 50px;
  height: 50px;
  background: #333;

  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  z-index: 1000;
  transition: opacity 0.3s;
  opacity: 0.7;
}

@media (max-width: 767px) {
  .page-top {
    position: fixed;
    bottom: 30px;
    right: 0;
    width: 50px;
    height: 50px;
    background: #333;

    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 1000;
    transition: opacity 0.3s;
    opacity: 0.7;
  }
}

/* 矢印（CSS描画） */
.page-top::before {

  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-left: 3px solid #fff;
  border-top: 3px solid #fff;
  transform: rotate(45deg);
  /* ↖ を上矢印に見せる */
  margin-bottom: -4px;
  /* ちょっと下に寄せて矢印感を強調 */
}

.page-top:hover {
  opacity: 1;
}

.call {
  display: none;
}

@media (max-width: 767px) {

  .call {
    background-color: var(--green);
    color: white;
    font-weight: 600;
    border-radius: 999px;
    padding: 12px 32px;
    font-size: 24px;
    text-align: center;
    display: grid;
    place-content: center;
    position: fixed;
    bottom: 30px;
    width: 80%;
    max-width: 240px;
    margin: auto;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  }
}

/*---------------------
 Section / Card
-----------------------*/

.card {
  background-color: #fff;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  padding: clamp(16px, 4.26vw, 96px);
}



.card h2 {
  color: #70c600;
  font-weight: normal;
  font-size: 1.5rem;
  margin-top: 32px;
  margin-bottom: 16px;
  font-family: "フォーク R", Folk Regular;
  letter-spacing: 0.1rem;
}

.card h3 {

  font-weight: normal;
  font-size: 1.2rem;
  margin-bottom: 16px;
  font-family: "フォーク R", Folk Regular;
  letter-spacing: 0.1rem;
}




/*---------------------
 Layout
-----------------------*/
.main {
  width: 65%;
  padding-right: 20px;
  padding-left: 20px;

}

@media (max-width: 767px) {
  .main {
    flex: 1;
  }
}

.side {
  width: 35%;
  padding-right: 30px;
  padding-left: 15px;
}

@media (max-width: 767px) {
  .side {
    flex: 1;
  }
}

.side a {
  display: block;
}

.side h3 {
  color: #4C3B2D;
  margin-top: 20px;
  font-size: 18px;
  border-bottom: 3px solid #CDBAAB;
  padding: 0;
}

.side ul {
  list-style: none;
}

.side li {
  list-style: none;
  border-bottom-width: 1px;
  border-bottom-color: #eee;
  border-bottom-style: dashed;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
}

.side li:hover,
.side li.selected:hover {
  background-color: #E1EE00;
}

.side li.selected {
  background-color: #E4E1D9;
}

.side .date {
  font-size: 12px;
  line-height: 14px;
}

.side .title {
  font-size: 16px;
}


/*---------------------
 見出し
-----------------------*/
.pagetitle {
  font-weight: normal;
  font-size: var(--font32);
  line-height: 30px;
  margin-bottom: 32px;
  text-align: center;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  padding: 32px;
  display: block;
  font-weight: 600;
}

.pagedesc {
  font-size: var(--font18);
  line-height: 160%;
  font-weight: 400;
  text-align: center;
  max-width: 1000px;
  margin: auto;
}

.pagesubtitle,
h3.pagesubtitle {
  font-size: var(--font28);
  line-height: 160%;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  color: #333;
  margin: 64px auto 48px auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.pagesubtitle:before,
h3.pagesubtitle:before {
  content: '';
  border-bottom: 4px solid #70c600;
  height: 1px;
  width: 120px;
  margin-right: 32px;
  margin-top: -4px;
  vertical-align: middle;
}

.pagesubtitle:after,
h3.pagesubtitle:after {
  content: '';
  border-bottom: 4px solid #70c600;
  height: 1px;
  width: 120px;
  display: inline-block;
  margin-left: 32px;
  margin-top: -4px;
  vertical-align: middle;
}

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

  .pagesubtitle:before,
  h3.pagesubtitle:before {
    content: '';
    border-bottom: 4px solid #70c600;
    height: 1px;
    width: 60px;
    margin-right: 16px;
    margin-top: -4px;
    vertical-align: middle;
  }

  .pagesubtitle:after,
  h3.pagesubtitle:after {
    content: '';
    border-bottom: 4px solid #70c600;
    height: 1px;
    width: 60px;
    display: inline-block;
    margin-left: 16px;
    margin-top: -4px;
    vertical-align: middle;
  }
}

.pagesubtitle span {
  font-size: var(--font20);
  line-height: 140%;
}

/*---------------------
 Utility
-----------------------*/
.flex {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 800px) {
  .flex {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
}

.marker {
  background-color: rgba(228, 240, 0, 0.3);
}

.table {
  display: table;
  width: 100%;
}

.table>* {
  display: table-cell;
}

@media (max-width: 767px) {
  .table {
    display: block;
    width: 100% !important;
  }

  .table>* {
    display: block;
    width: 100% !important;
  }
}

.wbr {
  display: inline-block;
}

.inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-bold {
  font-weight: 600;
}

.mt-24px {
  margin-top: 24px;
}

.mb-24px {
  margin-bottom: 24px;
}

img[class*="wp-image-"],
img[class*="attachment-"] {
  height: auto;
  max-width: 100%;
}

.clearfix {
  overflow: hidden;
  zoom: 1;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}



@media (min-width: 768px) {
  .sp {
    display: none;
  }
}

@media (max-width:767px) {
  .pc {
    display: none;
  }
}
@charset "UTF-8";
/* CSS Document */
.blog .autoscroll{
  height:800px;
  width:100%;
  overflow: auto;
}

.blog h3 {
   font-size: 18px;
   font-weight:bold;
  color:#1B9F32;
  padding: 0;

  margin:24px 0;
  font-family:'フォーク R', san-serif;;

}
.blog h4 {
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
}
.entry {
  padding-top: 12px;
}
