@charset "UTF-8";
/* CSS Document */
/*------------------共通------------------*/
:root {
  font-size: 2.5555vmin;
}

@media screen and (min-width: 767px) {
  :root {
    font-size: 10px;
  }
}

.site-body {
  width: 100%;
  margin: 0 auto;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic","Noto Sans JP","メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  color: #613F1B;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-weight: 500;
  letter-spacing: 0.075em;
}

@media screen and (min-width: 767px) {
  .site-body {
    min-width: 1280px;
  }
}

.site-body *, .site-body *:before, .site-body *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.site-body img {
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .site-body img {
    width: auto;
    height: auto;
  }
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
}

a:hover {
  opacity: 0.7;
}

a:focus {
  overflow: visible;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: block;
}

@media screen and (max-width: 767px) {
  .sp_none {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .pc_none {
    display: none !important;
  }
}

.inbox {
  width: 800px;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .inbox {
    width: auto;
    padding: 0 5%;
  }
}

.text-box {
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .text-box p br {
    display: none;
  }
}

.text-box p + p {
  padding-top: 1.5em;
}

.text-box em {
  color: #a1c81f;
  font-weight: 700;
}

.text-box ul {
  margin: 1.6rem 0;
  padding: 1.6rem 0;
  border-top: 2px dotted #a1c81f;
  border-bottom: 2px dotted #a1c81f;
}

.text-box ul li {
  text-indent: -1em;
  padding-left: 1em;
}

.left {
  float: left;
}

.right {
  float: right;
}

.text_c {
  text-align: center;
}

/*img thumb*/
.thumb {
  display: block;
  width: 100%;
  /*トリミング後の横幅*/
  padding-top: 100%;
  /*トリミング後の縦幅*/
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.thumb a {
  display: block;
}

.thumb a:hover img {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}

.thumb img {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  /*IE対策*/
  top: 50% !important;
  left: 50% !important;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.thumb.no-photo {
  background: #eee;
}

.thumb.no-photo img {
  -o-object-fit: contain;
  object-fit: contain;
  font-family: 'object-fit: contain;';
  /*IE対策*/
  width: auto;
  max-width: 90%;
  height: auto;
  max-height: 90%;
}

/*footer 固定 css*/
html, body {
  height: 100%;
}

#wrap {
  width: 100%;
  position: relative;
  height: auto !important;
  /*IE6対策*/
  height: 100%;
  /*IE6対策*/
  min-height: 100%;
  overflow-x: hidden;
}

/*flex*/
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.fle-bet {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.fle-aro {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.fle-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.fle-start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.fle-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.fle-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: auto;
}

.cmn-btn a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 144px;
  height: 48px;
  background: #a1c81f;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 40px 8px 36px;
  border-radius: 9999px;
}

.cmn-btn__text {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.cmn-btn__text:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  right: -16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.cmn-btn__text small {
  display: block;
}

.icon {
  display: inline-block;
  margin-right: 1rem;
  margin-left: -10px;
}

.icon--mail {
  width: 19px;
  height: 14px;
  background: url(../img/icon_mail.png);
}

.icon--line {
  width: 33px;
  height: 33px;
  background: url(../img/icon_line.png) no-repeat center/contain;
  margin-top: 8px;
  margin-right: 0;
}

/*======================================================
layout
========================================================*/
.cmn-sec + .cmn-sec {
  margin-top: 8rem;
}

.cmn-box {
  margin-top: 3.5rem;
}

.cmn-box + .cmn-box {
  margin-top: 4.8rem;
}

.post-content {
  padding-top: 6.4rem;
}

.cmn-img {
  margin-bottom: 16px;
}

/*header
---------------------------------------------*/
.header {
  background: #f7f7eb;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 80px;
  padding: 8px 40px;
}

.header-logo {
  width: 88px;
}

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

/*nav
---------------------------------------------*/
.nav-modal {
  position: fixed;
  right: 1%;
  top: 10px;
  z-index: 9999;
}

/*nav-modal*/
.nav-modal__trigger {
  position: relative;
  right: 1%;
  top: 0;
  z-index: 9999;
  width: 56px;
  max-width: 64px;
  height: 56px;
  cursor: pointer;
  padding: 8px 0;
}

.nav-modal__trigger .ham {
  width: 40px;
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.nav-modal__trigger .ham span {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  width: 40px;
  height: 2px;
  background: #246011;
  position: absolute;
  left: 0;
}

.nav-modal__trigger .ham .top {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

.nav-modal__trigger .ham .bottom {
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

.nav-modal__trigger > span {
  text-align: center;
  display: block;
  margin-top: 28px;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0;
  color: #246011;
}

.nav-modal__trigger.is-active .ham .middle {
  background: rgba(255, 255, 255, 0);
}

.nav-modal__trigger.is-active .ham .top {
  -webkit-transform: rotate(-45deg) translateY(0px);
  transform: rotate(-45deg) translateY(0px);
}

.nav-modal__trigger.is-active .ham .bottom {
  -webkit-transform: rotate(45deg) translateY(0px);
  transform: rotate(45deg) translateY(0px);
}

.nav-modal__target {
  display: none;
  position: relative;
}

.nav-modal__content {
  position: absolute;
  right: 0;
  top: 4px;
  background: rgba(247, 247, 235, 0.9);
  -webkit-box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
  box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
  width: 388px;
  max-width: 80vw;
  padding: 32px 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  max-height: calc(100vh - 12vmin);
  border-radius: 8px;
}

.nav-modal__content__nav {
  letter-spacing: 0.08em;
}

.nav-modal__content__item {
  font-size: 1.4rem;
  text-align: left;
  position: relative;
}

.nav-modal__content__item + .nav-modal__content__item {
  /*margin-top: 0.5rem;*/
}

.nav-modal__content__item a {
  display: block;
  position: relative;
  padding: 1em 0 1em 2rem;
  border-bottom: 1px dotted #246011;
  position: relative;
  z-index: 1;
}

.nav-modal__content__item a:before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #246011;
  border-right: 2px solid #246011;
  position: absolute;
  left: 0;
  top: 48%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.nav-modal__content__item a:hover {
  opacity: 1;
}

.nav-modal__content .cmn-btn {
  margin-top: 16px;
}

.nav-btns {
  margin-top: 16px;
}

.nav-btns .cmn-btn a {
  width: 100%;
}

/*---------main_visual------------*/
.mv {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.mv-ttl {
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 999;
  width: 100%;
  text-align: center;
}

.mv-slider div {
  text-align: center;
  height: 640px;
}

.mv-slider div:nth-child(1) {
  background: url(../img/mv_img01.jpg) no-repeat center/cover;
}

.mv-slider div:nth-child(2) {
  background: url(../img/mv_img02.jpg) no-repeat center/cover;
}

.mv-slider div:nth-child(3) {
  background: url(../img/mv_img03.jpg) no-repeat center/cover;
}

.mv-slider div:nth-child(4) {
  background: url(../img/mv_img04.jpg) no-repeat center/cover;
}

/* bxslider
---------------------------------------------------- */
.bx-wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.bx-wrapper .bx-viewport {
  margin: auto;
  text-align: center;
}

.bx-wrapper .bx-pager {
  display: none;
}

/*======================================================
title
========================================================*/
.title01 {
  border-left: 0.5rem solid #a1c81f;
  font-weight: 700;
  padding: 0.1em 0 0.1em 1.6rem;
  line-height: 1.3;
  font-size: 3.6rem;
  margin-bottom: 4rem;
  position: relative;
  letter-spacing: 0.06em;
  color: #246011;
  font-family: "Noto Sans JP","游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic","メイリオ", Meiryo, sans-serif;
}

.title01:before, .title01:after {
  content: '';
  width: calc(100% + 0.5rem);
  background: #d8d5d5;
  position: absolute;
  left: -0.5rem;
}

.title01:before {
  height: 0.3rem;
  bottom: -0.8rem;
}

.title01:after {
  height: 1px;
  bottom: -1.2rem;
}

.title01 small {
  color: #a1c81f;
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5em;
  letter-spacing: 0.06em;
}

.cmn-ttl {
  background: rgba(161, 200, 31, 0.9);
  padding: 1.2rem 3.2rem;
  position: relative;
  z-index: 1;
  font-size: 2.8rem;
  letter-spacing: 0.06em;
  border-radius: 8px;
  font-weight: 700;
  margin-bottom: 4rem;
  color: #fff;
  font-family: "Noto Sans JP","游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic","メイリオ", Meiryo, sans-serif;
}

.cmn-ttl:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 0 15px;
  border-color: #a1c81f transparent transparent transparent;
  position: absolute;
  left: 48px;
  bottom: 1px;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: -1;
}

.cmn-box__ttl {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-bottom: 3px solid #f7f7eb;
  position: relative;
  z-index: 1;
  padding-bottom: 8px;
  margin-bottom: 16px;
  font-family: "Noto Sans JP","游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic","メイリオ", Meiryo, sans-serif;
}

.cmn-box__ttl:before {
  content: "";
  width: 8rem;
  height: 3px;
  background: #a1c81f;
  position: absolute;
  left: 0;
  bottom: -3px;
}

.check-list {
  border-top: 3px dotted #a1c81f;
  border-bottom: 3px dotted #a1c81f;
  padding: 2rem 0;
  margin-top: 2rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.check-list li {
  padding-left: 3.2rem;
  position: relative;
  z-index: 1;
  line-height: 1.5;
}

.check-list li:before {
  content: '';
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid #a1c81f;
  position: absolute;
  left: 0;
  top: 0.25em;
}

.check-list li + li {
  margin-top: 1em;
}

/*======================================================
table-of-contents
========================================================*/
.table-of-contents-wrap {
  background: #f7f7eb;
  padding: 0 0 32px;
  margin-top: 8rem;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.table-of-contents-box {
  padding: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.table-of-contents-box:after {
  content: "";
  display: block;
  width: 100%;
  height: 16px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../img/dot_bg.png) repeat left top #a1c81f;
}

.table-of-contents-ttl {
  background: url(../img/dot_bg.png) repeat left top #a1c81f;
  padding: 1.5rem 2rem;
  font-weight: 700;
  line-height: 1;
  font-size: 1.8rem;
  margin-bottom: 1em;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 4rem;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}

.table-of-contents__child {
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
  width: 100%;
  line-height: 1;
  text-align: left;
}

.table-of-contents__child + .table-of-contents__child {
  margin-top: 2.4rem;
}

.table-of-contents__child > a {
  display: block;
  color: #246011;
  font-weight: 700;
  font-size: 1.8rem;
  position: relative;
  z-index: 1;
  padding-left: 1em;
}

.table-of-contents__child > a:before {
  content: "";
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #a1c81f;
  border-right: 2px solid #a1c81f;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.table-of-contents__child__child {
  margin-top: 1.5rem;
}

.table-of-contents__child__child > a {
  display: block;
  font-size: 1.5rem;
  /*padding-left: 2rem;*/
  position: relative;
  z-index: 1;
  color: #613F1B;
  /*&:before{
					content: "";
					width: 0;
					height: 0;
					border-style: solid;
					border-width: 4.5px 0 4.5px 5px;
					border-color: transparent transparent transparent $text_color;
					position: absolute;
					left: 0.5rem;
					top: 50%;
					transform: translateY(-50%);
					}*/
}

/*sec-end
-----------------------------------------------------*/
/*sec-about
-----------------------------------------------------*/
.sec-about {
  background: url(../img/greeting_bg.jpg) no-repeat center top #f7f7eb;
  padding: 6rem 0;
}

.sec-about__table {
  margin-top: 4.8rem;
}

.sec-about .map {
  margin-top: 4rem;
  width: 1080px;
  margin-left: -140px;
}

.low-ttl {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 32px;
  font-family: "Noto Sans JP","游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic","メイリオ", Meiryo, sans-serif;
}

.low-ttl span {
  display: inline-block;
  padding-bottom: 8px;
  background: url(../img/greeting_ttl_bd.png) repeat-x left bottom;
  position: relative;
  z-index: 1;
  margin-left: 32px;
}

.low-ttl span:before {
  content: "";
  width: 25px;
  height: 42px;
  background: url(../img/ttl_deco.png) no-repeat center/contain;
  position: absolute;
  left: -32px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.low-ttl .small {
  font-size: 20px;
}

.greeting__lead .text-box {
  width: 382px;
  padding-top: 8px;
}

.about-data {
  margin-top: 4rem;
}

.about-data > div {
  width: 370px;
}

.about-data .low-ttl span {
  display: block;
}

.about-lead {
  text-align: center;
  background: url(../img/ptn_txt_bg.png) repeat left top #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-top: 2rem;
  border-radius: 2rem;
  padding: 1em;
}

.cmn-table table {
  width: 100%;
  background: #FFF;
  border-radius: 2rem;
  overflow: hidden;
}

.cmn-table table th {
  background: #a1c81f;
  font-weight: 700;
  text-align: center;
  color: #fff;
}

.cmn-table table td {
  background: #FFF;
}

@media screen and (max-width: 767px) {
  .cmn-table table tr {
    display: block;
    padding: 2rem 0;
  }
  .cmn-table table tr + tr {
    border-top: 1px solid #f7f7eb;
  }
  .cmn-table table tr th, .cmn-table table tr td {
    display: block;
  }
  .cmn-table table tr th {
    font-weight: 700;
    padding-bottom: 5px;
  }
}

@media print, screen and (min-width: 768px) {
  .cmn-table table tr th, .cmn-table table tr td {
    padding: 2rem 0;
  }
  .cmn-table table tr th {
    width: 184px;
    text-align: center;
  }
  .cmn-table table tr td {
    padding-left: 32px;
  }
  .cmn-table table tr + tr th {
    border-top: 1px solid #f7f7eb;
  }
  .cmn-table table tr + tr td {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
}

.cont-table {
  margin-top: 6rem;
  background: #fff;
  border-radius: 1.6rem;
}

.cont-table table tr th {
  background: none;
  text-align: left;
  color: #613F1B;
  width: 280px;
}

.cont-table table tr + tr th, .cont-table table tr + tr td {
  border-top: 1px solid rgba(97, 63, 27, 0.1);
}

/*sec-contact
-----------------------------------------------------*/
.sec-contact {
  padding-bottom: 8rem;
}

.sec-contact__ttl {
  text-align: center;
  background: url(../img/contact_ttl_bg.png) repeat left top #a1c81f;
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  height: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
}

.sec-contact .tel a {
  font-size: 4rem;
}

.contact-area {
  margin-top: 4rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact-area .tel-wrap {
  width: 390px;
}

.contact-area .line-btn a {
  background: #246011;
  width: 300px;
  height: 70px;
  font-size: 18px;
}

.comp-dl div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.comp-dl div + div {
  margin-top: 4px;
}

.comp-dl dt {
  font-size: 12px;
  padding: 2px 4px;
  border: 1px solid #613F1B;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 16px;
  min-width: 64px;
  text-align: center;
  letter-spacing: 0;
  font-weight: 700;
}

.comp-dl dd {
  letter-spacing: 0;
}

/*footer
-----------------------------------------------------*/
#pageTop {
  position: fixed;
  bottom: 4%;
  right: 3%;
  z-index: 9999;
}

.footer {
  background: url(../img/footer_bg.jpg) no-repeat center/cover;
  text-align: center;
  text-align: center;
}

.footer__in {
  text-align: left;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 3.6rem  0 5.6rem;
}

.footer__logo {
  margin-bottom: 16px;
}

.footer .comp-dl {
  margin-top: 1rem;
}

.footer__btns {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 3rem;
}

.footer-nav {
  text-align: center;
  margin-bottom: 20px;
}

.footer-nav li a {
  display: block;
  font-size: 12px;
  padding: 3px 5px;
  color: #fff;
}

#copyright {
  font-size: 10px;
  text-align: center;
  height: 4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: #246011;
  color: #fff;
  text-align: center;
  letter-spacing: 0;
}

#copyright a {
  color: #fff;
}

/*下層
-------------------------------------------------*/
.sv {
  background: url(../img/sv_bg.jpg) no-repeat center;
  background-size: cover;
  text-align: center;
  height: 320px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

#bread {
  padding: 16px 0;
  width: 100%;
  max-width: 800px;
}

#bread ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#bread li {
  font-size: 12px;
  margin-right: 2px;
  padding-right: 14px;
  position: relative;
}

#bread li:after {
  content: "|";
  position: absolute;
  right: 3px;
  top: 1px;
}

#bread li:last-child:after {
  display: none;
}

#bread li {
  opacity: 0.7;
}

#bread li:last-child {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  #bread {
    padding: 8px 5%;
  }
  #bread ul {
    width: auto;
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    white-space: nowrap;
  }
  #bread li {
    display: inline;
    padding-right: 20px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 40%;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
  }
}

.btt-content {
  padding: 40px 0 100px;
}

.btt-content .title01 {
  font-size: 2.8rem;
}

.inbox.btt-content {
  padding: 40px 0 120px;
}

.title02 {
  font-size: 24px;
  font-weight: 700;
  border-left: 5px solid #a1c81f;
  position: relative;
  z-index: 1;
  padding-left: 15px;
}

.title02:before {
  content: "";
  width: calc(100% + 5px);
  height: 1px;
  background: #a1c81f;
  position: absolute;
  left: -5px;
  bottom: -10px;
}

.title02 + * {
  margin-top: 30px;
}

/*.cmn-ol.ol-reset*/
.cmn-ol ol {
  list-style: none;
  /* olがはき出す数字を消す */
  counter-reset: li;
  position: relative;
}

.cmn-ol ol.cmn-ol-list li:before {
  counter-increment: li;
  /*リストの数字を1つ進める。IE7以下、未対応*/
  content: counter(li) ".";
  /*リストを連番にする*/
}

.e404-content a {
  text-decoration: underline;
  color: #246011;
}

.tel a {
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .tel a {
    pointer-events: auto;
  }
}

.tel a {
  font-family: "Noto Sans JP","游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic","メイリオ", Meiryo, sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #a1c81f;
  padding-left: 40px;
  display: inline-block;
  background: url(../img/icon_tel.png) no-repeat left center;
}

.map-wrap {
  width: 100%;
}

.map {
  position: relative;
  width: 100%;
  padding-top: 400px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .map {
    /*
		padding-top: 50%;
		*/
  }
}

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

.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .video {
    /*
		padding-top: 50%;
		*/
  }
}

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

/*タブ切替*/
.tab-btns__item {
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.tab-btns__item.is-active {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.tab-content {
  display: none;
  margin-top: 72px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.tab-content.is-active {
  display: block;
  -webkit-animation: tabFade 0.3s ease;
  animation: tabFade 0.3s ease;
}

@-webkit-keyframes tabFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

/*▲タブ切替*/
/*site_map
------------------------------------------*/
.site_map-li > li {
  border-bottom: 1px dotted #613F1B;
}

.site_map-li > li span {
  display: block;
  color: #613F1B;
  padding: 14px 0 11px;
  font-size: 18px;
}

.site_map-li > li a {
  display: block;
  color: #613F1B;
  padding: 14px 40px 11px;
  font-size: 18px;
  position: relative;
}

.site_map-li > li a:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent #a1c81f;
  position: absolute;
  left: 15px;
  top: 19px;
}

.site_map-li > li ul {
  margin: -10px 0 10px;
}

.site_map-li > li ul li a {
  font-size: 16px;
  margin-left: 40px;
  padding: 9px 40px 6px;
  border-bottom: 0;
}

.site_map-li > li ul li a:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #a1c81f;
  position: absolute;
  left: 15px;
  top: 15px;
  border-width: 0;
}

/*privacy
----------------------------------*/
.privacy_box {
  margin-bottom: 45px;
}

.privacy_text {
  font-size: 16px;
}

.pri-ttl {
  margin-top: 32px;
  text-align: center;
  font-size: 24px;
  margin-bottom: 8px;
  color: #613F1B;
  font-weight: bold;
}

.privacy .pri_bg {
  background-color: #fff;
  width: 100%;
  height: 225px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  display: inline-block;
}

.privacy iframe {
  width: 100%;
  height: 225px;
  display: block;
}

.inline-privacy .privacy_box {
  padding: 15px;
}

.inline-privacy h1 {
  font-size: 16px;
  font-weight: 700;
  border-left: 4px solid #6d764e;
  color: #6d764e;
  position: relative;
  z-index: 1;
  padding-left: 12px;
}

.inline-privacy h1:before {
  content: "";
  width: calc(100% + 4px);
  height: 1px;
  background: #6d764e;
  position: absolute;
  left: -5px;
  bottom: -10px;
}

.inline-privacy h1 + * {
  margin-top: 20px;
}

.privacy_text {
  font-size: 14px;
}

/*news
-----------------------------------*/
.news-list li {
  padding: 16px 0;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid rgba(97, 63, 27, 0.1);
}

.news-list .thumb {
  z-index: 0;
}

.news-btn {
  text-align: right;
  margin-top: 16px;
}

.news-btn a {
  color: #a1c81f;
  display: inline-block;
  padding-left: 24px;
  position: relative;
  z-index: 1;
}

.news-btn a:before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #a1c81f;
  border-right: 2px solid #a1c81f;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.news-list-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  /*width: 100%;*/
}

.news-ymd {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  margin-right: 40px;
  display: inline-block;
  padding: 8px 12px;
  line-height: 1;
  z-index: 2;
  opacity: 0.6;
}

.tag {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 4px 8px 4px 0;
  display: block;
  min-width: 100px;
  letter-spacing: 0.08em;
  position: relative;
}

.tag a {
  position: relative;
  z-index: 9;
  display: block;
  text-align: center;
  padding: 2px 10px;
  background: #a1c81f;
  color: #fff;
  border-radius: 4px;
}

.news-ttl {
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-ttl a:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}

/*news-sg
-----------------------------------*/
.category-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
  -ms-flex-pack: start;
  justify-content: start;
}

.category__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /*white-space: nowrap;*/
  margin: 0 -12px 0;
  /*overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		overflow-scrolling: touch;*/
}

.category__item {
  margin: 12px;
}

.category__item a {
  padding: 4px 12px 4px;
  color: #a1c81f;
  border-radius: 8px;
  border: 1px solid #a1c81f;
  display: block;
}

.category__item a:hover {
  opacity: 1;
  background: #a1c81f;
  color: #fff;
}

.category__item.is-active a {
  background: #a1c81f;
  color: #fff;
}

.sg_day {
  font-size: 16px;
  color: #a1c81f;
  text-align: right;
  padding: 24px 0 0;
  font-weight: 700;
}

.page_btn {
  padding-top: 24px;
  margin-top: 40px;
  border-top: 1px solid #a1c81f;
  position: relative;
  font-weight: 700;
}

.page_btn a {
  font-size: 16px;
  color: #a1c81f;
}

.page_btn a:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.page_btn .left {
  position: absolute;
  left: 0;
  top: 24px;
}

.page_btn .left a {
  padding: 0 0 2px 16px;
  position: relative;
}

.page_btn .left a:before {
  border-width: 4px 6px 4px 0;
  border-color: transparent #a1c81f transparent transparent;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.page_btn .right {
  position: absolute;
  right: 0;
  top: 24px;
}

.page_btn .right a {
  padding: 0 16px 2px 0;
  position: relative;
}

.page_btn .right a:before {
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #a1c81f;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.page_btn .text_c a::before {
  display: none;
}

.pagenation {
  text-align: center;
  margin-top: 32px;
}

.pagenation li {
  display: inline-block;
  border: 1px solid #a1c81f;
  color: #a1c81f;
  margin: 0 8px;
}

.pagenation li a {
  display: block;
  padding: 8px 16px;
}

.pagenation li.current {
  background-color: #a1c81f;
  color: #fff;
  padding: 8px 16px;
}

.sns-sharerbtn-list {
  margin-top: 40px;
}

.sns-sharerbtn-list li + li {
  margin-left: 20px;
}

.sb_style h1,
.sb_style h2 {
  border-color: #a1c81f;
}

.sb_style h4:before {
  background-color: #a1c81f;
}

.sb_style ul li:before {
  background-color: #a1c81f;
}
