@charset "UTF-8";
/*------------------------------------------------------------
	Default
------------------------------------------------------------*/
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, button,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 1em;
}

html {
  font-size: 62.5%;
}

body, table,
input, textarea, select, option, button,
h1, h2, h3, h4, h5, h6 {
  line-height: 1.1;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", HelveticaNeue, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Sogoe UI", Verdana, "メイリオ", Meiryo, sans-serif;
}

b, strong, .bold {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", HelveticaNeue, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Sogoe UI", Verdana, "メイリオ", Meiryo, sans-serif;
}

/* IE11だけに適応 */
_:lang(x)::-ms-backdrop, .selector {
  font-family: "Segoe UI", "メイリオ", Meiryo, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

table,
input, textarea, select, option {
  line-height: 1.1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: middle;
}

a {
  text-decoration: none;
  color: #4B4B4B;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*------------------------------------------------------------
	Text Format
------------------------------------------------------------*/
/* text position */
.taLeft {
  text-align: left !important;
}

.taCenter {
  text-align: center !important;
}

.taRight {
  text-align: right !important;
}

.vTop {
  vertical-align: top !important;
}

.vMiddle {
  vertical-align: middle !important;
}

/* font weight */
.fwNormal {
  font-weight: normal !important;
}

.fwBold {
  font-weight: bold !important;
}

/*------------------------------------------------------------
	adjustment class ※ no use frequently
------------------------------------------------------------*/
.mt0 {
  margin-top: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

/*------------------------------------------------------------
	clearfix（float解除）
------------------------------------------------------------*/
.clearfix {
  *zoom: 1;
}

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

/*------------------------------------------------------------
	for tracking tag
------------------------------------------------------------*/
.trackTags {
  display: none;
}

/*------------------------------------------------------------
	Top page
------------------------------------------------------------*/
/*------------------------------------------------------------
	Layout
------------------------------------------------------------*/
.wrapper {
  margin: 0 auto;
  width: 100%;
}
.wrapper.fixed{
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.container {
  margin: 0 auto;
  width: 100%;
  max-width: 920px;
  padding: 0 20px;
}

main {
  display: block;
}

@media screen and (max-width: 599px) {
  main{
    margin-top: 75px!important;
  }
}

.header {
  position: fixed;
  background-color: #fff;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999997;
  -webkit-transition: .5s;
  transition: .5s;
}

.header.hide {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.header__inline {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 20px;
  position: relative;
}

@media screen and (max-width: 599px) {
  .header__inline {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 12px 20px;
    border-bottom: 3px solid #D1E09C;
  }
}

.header__logo {
  width: 206px;
}

@media (min-width: 600px) and (max-width: 896px) {
  .header__logo {
    width: 165px;
  }
}

@media screen and (max-width: 599px) {
  .header__logo {
    width: 124px;
  }
}

.header__logo a {
  display: block;
}

.header__logo a:hover {
  opacity: 0.7;
}

.header__logo a img {
  max-width: 100%;
}

/* @media screen and (max-width: 599px) {
  .header__logo a img {
    width: 100%;
  }
} */

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% - 206px);
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 600px) and (max-width: 896px) {
  .header__right {
    width: calc(100% - 165px);
  }
}

@media screen and (max-width: 599px) {
  .header__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
  }
}

.header__text {
  font-size: 1.6rem;
  font-weight: bold;
  color: #4B4B4B;
  line-height: 21px;
  text-align: right;
  margin-right: 30px;
}

@media (min-width: 897px) and (max-width: 1040px) {
  .header__text {
    margin-right: 20px;
  }
}

@media (min-width: 600px) and (max-width: 896px) {
  .header__text {
    margin-right: 2%;
    font-size: 1.8vw;
  }
}

@media screen and (max-width: 599px) {
  .header__text {
    text-align: left;
    margin-bottom: 10px;
    font-size: 1.4rem;
    margin-right: 0;
  }
}

.header__text span {
  font-size: 1.4rem;
  font-weight: normal;
}

@media (min-width: 600px) and (max-width: 896px) {
  .header__text span {
    font-size: 1.6vw;
  }
}

.header__tel {
  display: block;
  max-width: 217px;
  width: 100%;
  line-height: 60px;
  background-color: #E8BE40;
  text-align: center;
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  border-radius: 3px;
}

@media (min-width: 600px) and (max-width: 896px) {
  .header__tel {
    max-width: 150px;
    font-size: 2vw;
    line-height: 50px;
  }
}

@media (max-width: 650px) and (min-width: 600px) {
  .header__tel {
    max-width: 120px;
  }
}

@media screen and (max-width: 599px) {
  .header__tel {
    max-width: 100%;
    position: relative;
    letter-spacing: 0.05rem;
  }
}

.header__tel:hover {
  opacity: 0.7;
}

.header__tel img {
  margin-right: 10px;
}

@media (min-width: 600px) and (max-width: 896px) {
  .header__tel img {
    width: 18px;
  }
}

@media screen and (max-width: 599px) {
  .header__tel img {
    position: absolute;
    top: 50%;
    left: 20px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin-right: 0;
  }
}

.header__btn-menu {
  display: none;
  cursor: pointer;
  z-index: 3;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 599px) {
  .header__btn-menu {
    display: block;
  }
}

.header__btn-menu .bar1,
.header__btn-menu .bar2,
.header__btn-menu .bar3 {
  width: 29px;
  border-radius: 1px;
  height: 3px;
  background-color: #A2C362;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.header__btn-menu .bar1 {
  margin: 0;
}

.header__btn-menu .bar2 {
  margin: 6px 0;
}

.header .is-open .bar1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 5px);
          transform: rotate(-45deg) translate(-6px, 5px);
}

.header .is-open .bar2 {
  opacity: 0;
}

.header .is-open .bar3 {
  -webkit-transform: rotate(45deg) translate(-7px, -8px);
          transform: rotate(45deg) translate(-7px, -8px);
}

@media screen and (max-width: 599px) {
  .header .is-open .bar3 {
    -webkit-transform: rotate(45deg) translate(-7px, -8px);
            transform: rotate(45deg) translate(-7px, -8px);
  }
}

.navigation {
  background-color: #FAF8F2;
  border-top: 3px solid #D1E09C;
}

@media screen and (max-width: 599px) {
  .navigation {
    display: none;
    border-top: 0;
    width: 100%;
    position: fixed;
    top: 75px;
    left: 0;
    background-color: rgba(255, 255, 255, 0.93);
    padding: 0 20px 100px;
    height: 100vh;
    z-index: 999998999998;
    overflow-y: auto;
  }
}

.navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
}

@media screen and (max-width: 599px) {
  .navigation ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 22px;
  }
}

.navigation ul li {
  position: relative;
}

.navigation ul li:before {
  content: '';
  width: 1px;
  height: 40px;
  background-color: #B7A571;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 599px) {
  .navigation ul li:before {
    display: none;
  }
}

.navigation ul li:last-child:before {
  display: none;
}

.navigation ul li.active a span.name, .navigation ul li:hover a span.name {
  color: #689F00;
}

.navigation ul a {
  text-align: center;
  padding: 20px 40px;
  display: block;
}

@media (min-width: 600px) and (max-width: 896px) {
  .navigation ul a {
    padding: 20px;
  }
}

@media screen and (max-width: 599px) {
  .navigation ul a {
    padding: 20px 10px;
    text-align: left;
    border-bottom: 1px solid #D5D5D5;
  }
  .navigation ul a:after {
    content: '';
    width: 8px;
    height: 14px;
    background: url("../img/common/icon_navsp.svg") center no-repeat;
    background-size: contain;
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.navigation ul a .name {
  font-size: 1.6rem;
  font-weight: bold;
  color: #4B4B4B;
  line-height: 21px;
  display: block;
}

@media (min-width: 600px) and (max-width: 896px) {
  .navigation ul a .name {
    font-size: 2vw;
    line-height: 1;
  }
}

@media screen and (max-width: 599px) {
  .navigation ul a .name {
    font-size: 1.8rem;
  }
}

.navigation ul a .sub {
  color: #B7A571;
  font-size: 1.2rem;
  font-weight: 500;
  display: block;
  line-height: 1;
  padding-top: 5px;
}

@media (min-width: 600px) and (max-width: 896px) {
  .navigation ul a .sub {
    font-size: 1.8vw;
  }
}

@media screen and (max-width: 599px) {
  .navigation ul a .sub {
    font-size: 1.2rem;
  }
}

.fixed {
  overflow: hidden;
}

.footer {
  padding-top: 40px;
  background-color: #fff;
  border-top: 3px solid #D1E09C;
}

@media screen and (max-width: 599px) {
  .footer {
    padding-top: 25px;
  }
}

.footer .header__inline {
  padding-bottom: 40px;
}

@media screen and (max-width: 599px) {
  .footer .header__inline {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 20px;
    border-bottom: 0;
  }
}

.footer__logo {
  width: 286px;
}

@media (min-width: 897px) and (max-width: 1040px) {
  .footer__logo {
    width: 206px;
  }
}

@media (min-width: 600px) and (max-width: 896px) {
  .footer__logo {
    width: 165px;
  }
}

@media screen and (max-width: 599px) {
  .footer__logo {
    width: 154px;
  }
}

.footer__logo a {
  display: block;
}

.footer__logo a:hover {
  opacity: 0.7;
}

.footer__logo a img {
  max-width: 100%;
}

@media screen and (max-width: 599px) {
  .footer__logo a img {
    width: 100%;
  }
}

.footer__right {
  width: calc(100% - 286px);
}

@media (min-width: 897px) and (max-width: 1040px) {
  .footer__right {
    width: calc(100% - 206px);
  }
}

@media (min-width: 600px) and (max-width: 896px) {
  .footer__right {
    width: calc(100% - 165px);
  }
}

@media screen and (max-width: 599px) {
  .footer__right {
    width: 100%;
  }
}

.footer__right__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 25px;
}

@media screen and (max-width: 599px) {
  .footer__right__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 25px;
    margin-bottom: 40px;
  }
}

.footer__right .header__text {
  margin-right: 30px;
}

@media (min-width: 600px) and (max-width: 896px) {
  .footer__right .header__text {
    margin-right: 2%;
  }
}

@media screen and (max-width: 599px) {
  .footer__right .header__text {
    margin-right: 0;
  }
}

.footer__text {
  font-size: 1.4rem;
  color: #fff;
  background-color: #689F00;
  padding: 15px;
  text-align: center;
  letter-spacing: 0.05rem;
}

@media screen and (max-width: 599px) {
  .footer__text {
    font-size: 1.2rem;
    padding: 15px 0px;
  }
}

@media screen and (max-width: 599px) {
  .footer .header__tel {
    margin: 0 auto;
    max-width: 160px;
    font-size: 1.6rem;
    line-height: 40px;
    padding-left: 10px;
  }
  .footer .header__tel img {
    max-width: 13px;
    left: 7px;
  }
}

.nav_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 599px) {
  .nav_footer {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media screen and (max-width: 599px) {
  .nav_footer li {
    width: 33.3%;
    margin-bottom: 10px;
  }
}

.nav_footer li:first-child a {
  border-left: 0;
}

@media screen and (max-width: 599px) {
  .nav_footer li:first-child a {
    padding-left: 0;
    text-align: left;
  }
}

@media screen and (max-width: 599px) {
  .nav_footer li:nth-child(4) a {
    padding-left: 0;
    border-left: 0;
    text-align: left;
  }
}

@media screen and (max-width: 599px) {
  .nav_footer li:nth-child(3) a {
    font-size: 2.8vw;
    padding-left: 10px;
  }
}

.nav_footer li a {
  color: #689F00;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 0 20px;
  border-left: 1px solid #B7A571;
}

@media (min-width: 600px) and (max-width: 896px) {
  .nav_footer li a {
    font-size: 1.5vw;
    padding: 0 10px;
  }
}

@media screen and (max-width: 599px) {
  .nav_footer li a {
    text-align: center;
    display: block;
    padding: 0;
  }
}

.nav_footer li a:hover {
  opacity: 0.7;
}

.page_top {
  font-size: 1.3rem;
  display: none;
  width: 68px;
  text-align: center;
  color: #689F00;
  padding-top: 75px;
  background: url("../img/common/page_top.svg") no-repeat;
  position: fixed;
  bottom: 50px;
  right: 20px;
  cursor: pointer;
  background-size: contain;
  z-index: 88;
}

@media screen and (max-width: 599px) {
  .page_top {
    width: 60px;
    font-size: 1.2rem;
    padding-top: 65px;
    right: 10px;
    bottom: 20px;
  }
}

.page_top.show {
  position: absolute;
  bottom: -46px;
}

.pa_top {
  position: relative;
}

.c-title01 {
  margin: 0 auto;
  display: table;
}

.c-title01__sub {
  font-size: 1.2rem;
  color: #A2C362;
  display: inline-block;
  text-align: left;
  font-weight: normal;
}

@media (min-width: 600px) and (max-width: 896px) {
  .c-title01__sub {
    font-size: 1rem;
  }
}

@media screen and (max-width: 599px) {
  .c-title01__sub {
    font-size: 1.2rem;
  }
}

.c-title01__name {
  font-size: 2.2rem;
  font-weight: bold;
  color: #4B4B4B;
  display: inline-block;
  padding: 8px 0;
  border-bottom: 3px solid #A2C362;
}

@media screen and (max-width: 599px) {
  .c-title01__name {
    font-size: 1.8rem;
  }
}

.c-title02 {
  font-size: 2.4rem;
  font-weight: bold;
  color: #B7A571;
  line-height: 31px;
}

@media screen and (max-width: 599px) {
  .c-title02 {
    font-size: 2.1rem;
    line-height: 30px;
  }
}

.c-title02:before {
  content: '';
  width: 16px;
  height: 16px;
  background-color: #B7A571;
  display: inline-block;
  margin-right: 8px;
}

.c-title03 {
  font-size: 2.0rem;
  color: #689F00;
  line-height: 40px;
}

@media screen and (max-width: 599px) {
  .c-title03 {
    font-size: 1.8rem;
    line-height: 30px;
  }
}

.c-text01 {
  font-size: 1.6rem;
  color: #4B4B4B;
  line-height: 24px;
  text-align: center;
}

@media screen and (max-width: 599px) {
  .c-text01 {
    font-size: 1.4rem;
    line-height: 22px;
    text-align: left;
  }
}

.c-btn01 {
  display: block;
  max-width: 314px;
  width: 100%;
  color: #fff;
  background-color: #E8BE40;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  border-radius: 5px;
  line-height: 64px;
  position: relative;
  margin: 0 auto;
  margin-top: 40px;
}

@media screen and (max-width: 599px) {
  .c-btn01 {
    max-width: 100%;
    line-height: 60px;
  }
}

.c-btn01:hover {
  opacity: 0.7;
}

.c-btn01:after {
  content: '';
  width: 7px;
  height: 14px;
  background: url("../img/common/icon_btn.svg") center no-repeat;
  background-size: contain;
  position: absolute;
  right: 28px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-btn02 {
  display: block;
  max-width: 270px;
  width: 100%;
  color: #689F00;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 58px;
  position: relative;
  margin: 0 auto;
  margin-top: 40px;
  border: 1px solid #689F00;
}

@media screen and (max-width: 599px) {
  .c-btn02 {
    max-width: 100%;
  }
}

.c-btn02:hover {
  opacity: 0.7;
}

.c-btn02 img {
  margin-right: 10px;
}

.fadeInUp {
  opacity: 0;
  -webkit-transform: translate(0, 40px);
          transform: translate(0, 40px);
  -webkit-transition: .8s;
  transition: .8s;
}

.animate {
  opacity: 1.0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.mainvisual {
  width: 100%;
  height: 160px;
  background-color: #EFF5DA;
  padding-top: 52px;
  margin-bottom: 20px;
}

@media screen and (max-width: 599px) {
  .mainvisual {
    height: 116px;
    padding-top: 32px;
  }
}

.c_dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 35px;
}

@media screen and (max-width: 599px) {
  .c_dl {
    padding: 0;
    margin-top: 25px;
  }
}

.c_dl dt {
  font-size: 1.6rem;
  color: #4B4B4B;
  line-height: 24px;
  width: 75px;
}

@media screen and (max-width: 599px) {
  .c_dl dt {
    font-size: 1.4rem;
    width: 63px;
  }
}

.c_dl dd {
  font-size: 1.6rem;
  color: #4B4B4B;
  line-height: 24px;
  width: calc(100% - 75px);
}

@media screen and (max-width: 599px) {
  .c_dl dd {
    font-size: 1.4rem;
  }
}

.c_dl dd span {
  font-weight: bold;
  margin-right: 10px;
}

@media screen and (max-width: 599px) {
  .c_dl dd span.mr15 {
    margin-right: 15px;
  }
}

.breadcrumb {
  margin-bottom: 40px;
}

.breadcrumb li {
  display: inline;
  font-size: 1.4rem;
  color: #4B4B4B;
}

@media screen and (max-width: 599px) {
  .breadcrumb li {
    font-size: 1.2rem;
    line-height: 18px;
  }
}

.breadcrumb li a {
  font-size: 1.4rem;
  color: #4B4B4B;
  text-decoration: underline;
}

@media screen and (max-width: 599px) {
  .breadcrumb li a {
    font-size: 1.2rem;
    line-height: 18px;
  }
}

.breadcrumb li a:hover {
  text-decoration: none;
}

.breadcrumb li + li:before {
  padding: 4px;
  color: #4B4B4B;
  content: ">";
}

.c-nav01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-nav01 li {
  margin-right: 20px;
  margin-bottom: 15px;
  width: 160px;
}

@media (min-width: 897px) and (max-width: 1040px) {
  .c-nav01 li {
    width: 19%;
    margin-right: 1.25%;
  }
}

@media (min-width: 600px) and (max-width: 896px) {
  .c-nav01 li {
    width: 19%;
    margin-right: 1.25%;
  }
}

.c-nav01 li:nth-child(5n) {
  margin-right: 0;
}

@media screen and (max-width: 599px) {
  .c-nav01 li {
    width: 49%;
    margin-right: 2%;
  }
  .c-nav01 li:nth-child(2n) {
    margin-right: 0;
  }
  .c-nav01 li:nth-child(5) {
    margin-right: 2%;
  }
}

.c-nav01 li a {
  display: block;
  width: 100%;
  height: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #689F00;
  border-radius: 3px;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 20px;
  text-align: center;
  position: relative;
  padding-right: 15px;
}

@media (min-width: 600px) and (max-width: 896px) {
  .c-nav01 li a {
    font-size: 1.8vw;
    height: 90px;
  }
}

@media screen and (max-width: 599px) {
  .c-nav01 li a {
    height: 60px;
  }
}

.c-nav01 li a:hover {
  opacity: 0.7;
}

.c-nav01 li a:after {
  content: '';
  width: 16px;
  height: 16px;
  background: url("../img/common/play_circle_filled.svg") center no-repeat;
  background-size: contain;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (min-width: 600px) and (max-width: 896px) {
  .c-nav01 li a:after {
    width: 14px;
    height: 14px;
    right: 10px;
  }
}

.c-nav02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-nav02 dt {
  width: calc(100% - 340px);
  padding-right: 20px;
  margin-bottom: 40px;
}

@media (min-width: 600px) and (max-width: 896px) {
  .c-nav02 dt {
    width: calc(100% - 300px);
  }
}

@media screen and (max-width: 599px) {
  .c-nav02 dt {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
}

.c-nav02 dd {
  width: 340px;
  margin-bottom: 40px;
  margin-top: 40px;
}

@media (min-width: 600px) and (max-width: 896px) {
  .c-nav02 dd {
    width: 300px;

  }
}

@media screen and (max-width: 599px) {
  .c-nav02 dd {
    width: 100%;
    margin-bottom: 20px;
    height: 200px;
    overflow: hidden;
    margin-top: 0px;
  }
}

.c-nav02 dd img {
  max-width: 100%;
}

@media screen and (max-width: 599px) {
  .c-nav02 dd img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.c-nav03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.c-nav03 li {
  width: 275px;
  margin-bottom: 20px;
}

@media (min-width: 600px) and (max-width: 896px) {
  .c-nav03 li {
    width: 32%;
  }
}

@media screen and (max-width: 599px) {
  .c-nav03 li {
    width: 49%;
    margin-bottom: 25px;
  }
}

.c-nav03__img {
  width: 100%;
}

.c-nav03__img img {
  max-width: 100%;
}

.c-nav03__tt {
  font-size: 1.8rem;
  color: #4B4B4B;
  font-weight: bold;
  line-height: 25px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 15px;
}

@media screen and (max-width: 599px) {
  .c-nav03__tt {
    margin-top: 15px;
    margin-bottom: 10px;
  }
}

.c-nav03__text {
  font-size: 1.6rem;
  line-height: 29px;
  color: #4B4B4B;
}

.nav_mem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 599px) {
  .nav_mem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.nav_mem li:first-child {
  width: 267px;
}

@media screen and (max-width: 599px) {
  .nav_mem li:first-child {
    width: 100%;
    text-align: center;
  }
}

.nav_mem li:first-child img {
  max-width: 100%;
}

.nav_mem li:last-child {
  width: calc(100% - 267px);
  padding-left: 20px;
}

@media screen and (max-width: 599px) {
  .nav_mem li:last-child {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
}

.nav_mem--st01 li:first-child {
  width: calc(100% - 357px);
  padding-right: 40px;
}

@media (min-width: 600px) and (max-width: 896px) {
  .nav_mem--st01 li:first-child {
    padding-right: 20px;
    width: calc(100% - 300px);
  }
}

@media screen and (max-width: 599px) {
  .nav_mem--st01 li:first-child {
    width: 100%;
    padding-right: 0;
  }
}

.nav_mem--st01 li:last-child {
  width: 357px;
  padding-left: 0;
}

@media (min-width: 600px) and (max-width: 896px) {
  .nav_mem--st01 li:last-child {
    width: 300px;
  }
}

@media screen and (max-width: 599px) {
  .nav_mem--st01 li:last-child {
    width: 100%;
    text-align: center;
  }
}

.nav_mem--st01 li:last-child img {
  max-width: 100%;
}

.nav_mem_02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 599px) {
  .nav_mem_02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.nav_mem_02 li {
  width: 49%;
  background-color: #FAF8F2;
  padding: 30px 20px;
}

@media screen and (max-width: 599px) {
  .nav_mem_02 li {
    width: 100%;
    padding: 20px 10px;
    margin-bottom: 15px;
  }
}

.nav_mem_02 li h5 {
  color: #E8BE40;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 25px;
  margin-bottom: 20px;
}

@media screen and (max-width: 599px) {
  .nav_mem_02 li h5 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    line-height: 20px;
  }
}

.nav_mem_02 li p {
  font-size: 1.4rem;
  color: #4B4B4B;
  line-height: 29px;
}

.nav_mem_02 dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 599px) {
  .nav_mem_02 dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.nav_mem_02 dl dt {
  font-size: 1.4rem;
  color: #4B4B4B;
  line-height: 29px;
  width: 35%;
}

@media screen and (max-width: 599px) {
  .nav_mem_02 dl dt {
    width: 100%;
    line-height: 25px;
  }
}

.nav_mem_02 dl dd {
  font-size: 1.4rem;
  color: #4B4B4B;
  line-height: 29px;
  width: 65%;
}

@media (min-width: 600px) and (max-width: 896px) {
  .nav_mem_02 dl dd {
    padding-left: 10px;
  }
}

@media screen and (max-width: 599px) {
  .nav_mem_02 dl dd {
    width: 100%;
    line-height: 25px;
  }
}

.nav_acc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 599px) {
  .nav_acc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.nav_acc > li:first-child {
  width: calc(100% - 306px);
  padding-right: 25px;
}

@media screen and (max-width: 599px) {
  .nav_acc > li:first-child {
    width: 100%;
    padding-right: 0;
  }
}

.nav_acc > li:last-child {
  width: 306px;
}

@media screen and (max-width: 599px) {
  .nav_acc > li:last-child {
    width: 100%;
    margin-top: 20px;
    overflow: hidden;
    height: 200px;
  }
}

.nav_acc > li:last-child img {
  max-width: 100%;
}

@media screen and (max-width: 599px) {
  .nav_acc > li:last-child img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media screen and (max-width: 359px) {
  .c-table1 {
    overflow-x: auto;
  }
}

.c-table1 table {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #689F00;
  background-color: #fff;
}

.c-table1 th,
.c-table1 td {
  border-collapse: collapse;
  border: 1px solid #DBDBDB;
  text-align: center;
}

.c-table1 th {
  background-color: #689F00;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  padding: 17px 0;
}

@media screen and (max-width: 599px) {
  .c-table1 th {
    font-size: 1.2rem;
    padding: 14px 10px;
  }
}

.c-table1 td:first-child {
  width: 127px;
  color: #4B4B4B;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: left;
  padding: 15px 20px;
  line-height: 1.5;
}

@media (min-width: 600px) and (max-width: 896px) {
  .c-table1 td:first-child {
    padding: 15px 10px;
    width: 110px;
    font-size: 2vw;
  }
}

@media screen and (max-width: 599px) {
  .c-table1 td:first-child {
    padding: 15px 10px;
    width: 110px;
  }
}

.c-table1 td:first-child span {
  font-size: 1.4rem;
}

@media (min-width: 600px) and (max-width: 896px) {
  .c-table1 td:first-child span {
    font-size: 1.8vw;
  }
}

.c-table1 td {
  padding: 15px 0;
}

@media (min-width: 600px) and (max-width: 896px) {
  .c-table1 td {
    padding: 10px;
  }
  .c-table1 td img {
    max-width: 17px;
  }
}

@media screen and (max-width: 599px) {
  .c-table1 td img {
    max-width: 15px;
  }
}

.lst_news {
  padding: 40px 30px;
  background-color: #fff;
  border: 1px solid #689F00;
}

@media screen and (max-width: 599px) {
  .lst_news {
    padding: 20px 10px;
  }
}

.lst_news li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 10px;
  border-bottom: 1px dashed #689F00;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

@media screen and (max-width: 599px) {
  .lst_news li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}

.lst_news li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.lst_news__top {
  width: 280px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 599px) {
  .lst_news__top {
    width: 100%;
  }
}

.lst_news__date {
  font-weight: bold;
  font-size: 1.6rem;
  color: #4B4B4B;
  line-height: 24px;
}

@media screen and (max-width: 599px) {
  .lst_news__date {
    font-size: 1.4rem;
    margin-right: 15px;
  }
}

.lst_news__cate {
  color: #fff;
  background-color: #689F00;
  font-size: 1.6rem;
  text-align: center;
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid #689F00;
  line-height: 1;
  margin-left: 10px;
}

@media screen and (max-width: 599px) {
  .lst_news__cate {
    font-size: 1.2rem;
    margin-left: 0;
  }
}

.lst_news__cate:hover {
  background-color: #fff;
  color: #689F00;
}

.lst_news__tt {
  font-size: 1.6rem;
  color: #4B4B4B;
  line-height: 24px;
  font-weight: 500;
  width: calc(100% - 280px);
}

@media screen and (max-width: 599px) {
  .lst_news__tt {
    width: 100%;
    margin-top: 10px;
  }
}

.lst_news__tt a {
  text-decoration: underline;
}

.lst_news__tt a:hover {
  text-decoration: none;
}

.lst_dec {
  padding-left: 18px;
  list-style: decimal;
}

.lst_dec li {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 28px;
  color: #4B4B4B;
}

.lst_news01 li {
  border: 1px solid #B7A571;
  padding: 20px 25px;
  margin-bottom: 20px;
}

@media screen and (max-width: 599px) {
  .lst_news01 li {
    padding: 15px 10px;
  }
}

.lst_news01 li:last-child {
  margin-bottom: 0;
}

.lst_news01 li span {
  font-size: 1.6rem;
  color: #4B4B4B;
  font-size: 500;
  line-height: 26px;
}

@media screen and (max-width: 599px) {
  .lst_news01 li span {
    font-size: 1.4rem;
  }
}

.lst_news01__text01 {
  font-size: 1.6rem;
  color: #4B4B4B;
  font-size: 500;
  line-height: 26px;
}

@media screen and (max-width: 599px) {
  .lst_news01__text01 {
    font-size: 1.4rem;
  }
}

.lst_news01__date {
  margin-right: 20px;
  font-size: 1.6rem;
  color: #4B4B4B;
  font-size: 500;
  line-height: 26px;
}

@media screen and (max-width: 599px) {
  .lst_news01__date {
    display: block;
    font-size: 1.6rem !important;
  }
}

.lst_news01__cate {
  text-decoration: underline;
  font-size: 1.6rem;
  color: #4B4B4B;
  font-size: 500;
  line-height: 26px;
}

@media screen and (max-width: 599px) {
  .lst_news01__cate {
    font-size: 1.4rem;
  }
}

.lst_news01__cate:hover {
  text-decoration: none;
}

.lst_news01__tt {
  font-size: 2.4rem;
  color: #689F00;
  line-height: 28px;
  margin-top: 15px;
  margin-bottom: 10px;
}

@media screen and (max-width: 599px) {
  .lst_news01__tt {
    font-size: 1.8rem;
    margin-top: 10px;
    line-height: 24px;
  }
}

.lst_news01__text {
  font-size: 1.6rem;
  color: #4B4B4B;
  font-weight: 500;
  line-height: 26px;
}

@media screen and (max-width: 599px) {
  .lst_news01__text {
    font-size: 1.4rem;
    line-height: 20px;
  }
}

.lst_news01__link {
  display: block;
  width: 148px;
  line-height: 36px;
  color: #fff;
  text-align: center;
  background-color: #E8BE40;
  font-size: 1.4rem;
  font-weight: bold;
  margin-left: auto;
  border-radius: 26px;
  margin-top: 15px;
}

@media screen and (max-width: 599px) {
  .lst_news01__link {
    margin: 0 auto;
    margin-top: 20px;
  }
}

.lst_news01__link:hover {
  opacity: 0.8;
}

.lst_news01__link img {
  margin-left: 10px;
}

.lst_news_sort {
  margin-bottom: 50px;
  position: relative;
}

@media screen and (max-width: 599px) {
  .lst_news_sort {
    margin-bottom: 20px;

  }
}

.lst_news_sort dt {
  font-size: 2.4rem;
  font-weight: bold;
  color: #689F00;
  margin-bottom: 20px;
}

@media screen and (max-width: 599px) {
  .lst_news_sort dt {
    font-size: 1.6rem;
    background-color: #689F00;
    color: #fff;
    line-height: 1;
    padding: 12px 20px;
    position: relative;
    margin-bottom: 0;
    position: inherit;
  }
  .lst_news_sort dt:before {
    content: '';
    width: 10px;
    height: 6px;
    background: url("../img/common/icon_bottom.svg") no-repeat;
    background-size: contain;
    position: absolute;
    right: 20px;
    top: 18px;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  .lst_news_sort dt.is-open:before {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

@media screen and (max-width: 599px) {
  .lst_news_sort dd {
    display: none;
    background-color: #FAF8F2;
    padding: 15px 20px;
    border: 1px solid #689F00;
    position: absolute;
    width: 100%;
    top: 40px;
    left: 0;
    z-index: 999;
  }
}

.lst_news_sort ul li {
  margin-bottom: 20px;
  padding-left: 10px;
}

@media screen and (max-width: 599px) {
  .lst_news_sort ul li {
    padding-left: 0;
  }
}

.lst_news_sort ul li a {
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: underline;
  color: #4B4B4B;
}

.lst_news_sort ul li a:hover {
  text-decoration: none;
}

@media (min-width: 600px) {
  .sort_sp {
    display: none;
  }
}

.lst_desc li {
  font-size: 1.6rem;
  line-height: 29px;
  color: #4B4B4B;
  padding-left: 10px;
  position: relative;
}

@media screen and (max-width: 599px) {
  .lst_desc li {
    font-size: 1.4rem;
    line-height: 20px;
  }
}

.lst_desc li:before {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #4B4B4B;
  position: absolute;
  top: 14px;
  left: 0;
}

@media screen and (max-width: 599px) {
  .lst_desc li:before {
    top: 8px;
  }
}

.top .sec01 {
  background-color: #FAF8F2;
  position: relative;
  padding-bottom: 60px;
  overflow: hidden;
}

@media screen and (max-width: 599px) {
  .top .sec01 {
    padding-top: 20px;
  }
}

.top .sec01:before {
  content: '';
  width: 100%;
  height: 490px;
  background-color: #EFF5DA;
  position: absolute;
  top: 15px;
  left: 0;
}

@media (min-width: 600px) and (max-width: 896px) {
  .top .sec01:before {
    height: 270px;
  }
}

@media screen and (max-width: 599px) {
  .top .sec01:before {
    top: 35px;
    height: 283px;
  }
}

.top .sec01__inline {
  margin: 0 auto;
  width: 100%;
  max-width: 1040px;
  padding: 0 20px;
}

@media (min-width: 600px) and (max-width: 896px) {
  .top .sec01__inline {
    max-width: 694px;
  }
}

.top .sec01__bg {
  width: 100%;
  height: 525px;
  background: url("../img/top/bg_01@2x.png") no-repeat center;
  background-size: cover;
  position: relative;
  margin-bottom: 55px;
}

@media (min-width: 600px) and (max-width: 896px) {
  .top .sec01__bg {
    height: 300px;
    margin-bottom: 35px;
  }
}

@media screen and (max-width: 599px) {
  .top .sec01__bg {
    height: 318px;
    margin-bottom: 0;
  }
}

.top .sec01__title {
  font-size: 2.4rem;
  color: #689F00;
  text-align: center;
  line-height: 40px;
}

@media screen and (max-width: 599px) {
  .top .sec01__title {
    font-size: 1.8rem;
    line-height: 27px;
  }
}

.top .sec01__text {
  font-size: 1.8rem;
  line-height: 31px;
  color: #4B4B4B;
  text-align: center;
  margin-top: 25px;
  margin-bottom: 20px;
}

@media screen and (max-width: 599px) {
  .top .sec01__text {
    font-size: 1.4rem;
    text-align: left;
    line-height: 22px;
    margin-top: 20px;
    margin-bottom: 15px;
  }
}

.top .sec02 {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media screen and (max-width: 599px) {
  .top .sec02 {
    padding-top: 35px;
    padding-bottom: 40px;
  }
}

.top .sec02 .c-nav01 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.top .sec03 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #FAF8F2;
}

@media screen and (max-width: 599px) {
  .top .sec03 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.top .sec03 .lst_news {
  margin-top: 40px;
}

@media screen and (max-width: 599px) {
  .top .sec03 .container {
    padding: 0 10px;
  }
}

@media screen and (max-width: 599px) {
  .top .sec03 .c-btn01 {
    width: 95%;
    margin-top: 30px;
  }
}

.top .sec04 .c-text01 {
  margin-top: 40px;
}

@media screen and (max-width: 599px) {
  .top .sec04 .c-text01 {
    font-weight: bold;
  }
}

.top .sec04 .c_dl {
  padding: 0 100px;
}

@media screen and (max-width: 599px) {
  .top .sec04 .c_dl {
    padding: 0;
  }
}

.access {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #FAF8F2;
}

@media screen and (max-width: 599px) {
  .access {
    padding-top: 35px;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 599px) {
  .access .container {
    padding: 0 20px !important;
  }
}

.access__rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 37px;
}

@media screen and (max-width: 599px) {
  .access__rows {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.access__rows__text {
  font-size: 1.6rem;
  color: #E15F40;
  font-weight: bold;
  letter-spacing: 0.1rem;
  margin-top: 15px;
  line-height: 22px;
}

@media screen and (max-width: 599px) {
  .access__rows__text {
    margin-top: 12px;
    font-size: 1.4rem;
  }
}

.access__rows__left {
  width: 455px;
}

@media screen and (max-width: 599px) {
  .access__rows__left {
    width: 100%;
  }
}

.access__rows__right {
  width: 385px;
  margin-left: 40px;
}

@media (min-width: 600px) and (max-width: 896px) {
  .access__rows__right {
    margin-left: 2%;
  }
}

@media screen and (max-width: 599px) {
  .access__rows__right {
    width: 100%;
    margin-left: 0;
    margin-top: 35px;
  }
}

.access__rows__right__map {
  width: 100%;
  height: 288px;
  margin-bottom: 15px;
}

@media (max-width: 767px) and (min-width: 600px) {
  .access__rows__right__map {
    height: 252px;
  }
}

@media screen and (max-width: 599px) {
  .access__rows__right__map {
    height: 200px;
  }
}

.access__rows__right__map iframe {
  width: 100%;
  height: 100%;
}

.access__rows__right .c-text01 {
  text-align: left;
  margin-bottom: 5px;
}

.access__rows__right__dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.access__rows__right__dl dt {
  font-size: 1.8rem;
  font-weight: bold;
  color: #4B4B4B;
  margin-right: 10px;
  line-height: 30px;
}

@media screen and (max-width: 599px) {
  .access__rows__right__dl dt {
    font-size: 1.6rem;
  }
}

.access__rows__right__dl dt span {
  margin-left: 10px;
}

.access__rows__right__dl dd {
  font-size: 2.2rem;
  font-weight: bold;
  color: #4B4B4B;
}

@media screen and (max-width: 599px) {
  .access__rows__right__dl dd {
    font-size: 1.6rem;
  }
}

.access__rows__right .mt15 {
  margin-top: 15px;
}

.access .c_dl {
  margin-top: 15px;
}

.access .c_dl dd {
  margin-bottom: 5px;
}

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

.about .sec01 .c-title03 {
  margin-top: 22px;
 /* margin-bottom: 10px;*/
}

@media screen and (max-width: 599px) {
  .about .sec01 .c-title03 {
    margin-top: 10px;
  }
}

@media screen and (max-width: 599px) {
  .about .sec01 .c-nav02 .lst_dec {
    padding: 0 10px 0 28px;
  }
}

.about .sec02 {
  padding-top: 20px;
  padding-bottom: 40px;
}

@media screen and (max-width: 599px) {
  .about .sec02 {
    padding-bottom: 25px;
    padding-top: 10px;
  }
}

.about .sec02 .c-nav03 {
  margin-top: 35px;
}

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

.doc_sta .c-text01 {
  text-align: left;
}

.doc_sta .c-title02 {
  margin-bottom: 20px;
}

@media screen and (max-width: 599px) {
  .doc_sta .c-title02 {
    font-size: 1.8rem;
    line-height: 28px;
    margin-bottom: 15px;
  }
}

.doc_sta .c-title02:before {
  display: none;
}

.doc_sta .sec01 {
  margin-bottom: 70px;
}

.doc_sta .sec01 .c-title01 {
  margin-bottom: 60px;
}

.doc_sta .sec01 .nav_mem {
  margin-bottom: 30px;
  margin-top: 30px;
}

@media screen and (max-width: 599px) {
  .doc_sta .sec01 .nav_mem {
    margin-top: 25px;
    margin-bottom: 0px;
  }
}

.doc_sta .sec01 .c-text01 {
  margin-bottom: 20px;
}

.doc_sta .sec01 .nav_mem_02 {
  margin-top: 40px;
}

@media screen and (max-width: 599px) {
  .doc_sta .sec01 .nav_mem_02 {
    margin-top: 20px;
  }
}

.doc_sta .sec02 {
  margin-bottom: 60px;
}

.doc_sta .sec02 .c-title01 {
  margin-bottom: 60px;
}

.doc_sta .sec02 .nav_mem {
  margin-bottom: 60px;
  margin-top: 30px;
}

@media screen and (max-width: 599px) {
  .doc_sta .sec02 .nav_mem {
    margin-top: 25px;
    margin-bottom: 20px;
  }
}

.news .container {
  padding-bottom: 60px;
}

@media screen and (max-width: 599px) {
  .news .container {
    padding: 0 10px;
    padding-bottom: 40px;
  }
}

.news_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 599px) {
  .news_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.news_content__left {
  width: calc(100% - 260px);
  padding-right: 35px;
}

@media (min-width: 600px) and (max-width: 896px) {
  .news_content__left {
    width: calc(100% - 230px);
    padding-right: 20px;
  }
}

@media screen and (max-width: 599px) {
  .news_content__left {
    width: 100%;
    padding-right: 0;
  }
}

.news_content__right {
  width: 260px;
  padding: 40px 35px;
  background-color: #FAF8F2;
}

@media (min-width: 600px) and (max-width: 896px) {
  .news_content__right {
    width: 230px;
  }
}

@media screen and (max-width: 599px) {
  .news_content__right {
    width: 100%;
    display: none;
  }
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* margin-top: 60px; */
}

@media screen and (max-width: 599px) {
  .pagination {
    margin-top: 40px;
    /* margin-bottom: 40px; */
  }
}

.pagination a {
  color: #4B4B4B;
  font-size: 1.6rem;
  padding: 16px 20px;
  text-decoration: underline;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
  border: 1px solid #DEDEDE;
  margin: 0 4px;
  line-height: 1;
}

@media screen and (max-width: 599px) {
  .pagination a {
    font-size: 1.4rem;
    padding: 13px 17px;
  }
}

.pagination a.active {
  background-color: #A2C362;
  color: white;
  border: 1px solid #A2C362;
  text-decoration: none;
}

.pagination a.pagination__prev, .pagination a.pagination__next {
  text-decoration: none;
}

.news_details {
  padding: 25px;
  border: 1px solid #B7A571;
}

@media screen and (max-width: 599px) {
  .news_details {
    padding: 20px 10px 40px;
    margin-bottom: 20px;
  }
}

.news_details .lst_news01__tt {
  margin-bottom: 20px;
}

.news_details__main p {
  font-size: 1.6rem;
  color: #4B4B4B;
  line-height: 28px;
  margin-bottom: 10px;
}

@media screen and (max-width: 599px) {
  .news_details__main p {
    font-size: 1.4rem;
    line-height: 25px;
  }
}

.news_details__main .wp-block-image {
  max-width: 100%;
  margin-bottom: 20px;
  margin-top: 20px;
}

@media screen and (max-width: 599px) {
  .news_details__main p img {
    width: 100%;
  }
}

.news_details .lst_news01__link {
  margin: 0 auto;
  margin-top: 40px;
  line-height: 46px;
  width: 212px;
}

.news_details .lst_news01__link img {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  margin-right: 10px;
}

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

.page_access__text01 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 31px;
  color: #4B4B4B;
  margin-top: 30px;
}

@media screen and (max-width: 599px) {
  .page_access__text01 {
    margin-top: 20px;
  }
}

.page_access .nav_acc {
  margin-top: 60px;
}

@media screen and (max-width: 599px) {
  .page_access .nav_acc {
    margin-top: 0;
  }
}

.page_access__map {
  margin-top: 60px;
}

@media screen and (max-width: 599px) {
  .page_access__map {
    margin-top: 20px;
  }
}

.page_access__map iframe {
  width: 100%;
  height: 370px;
}

@media screen and (max-width: 599px) {
  .page_access__map iframe {
    height: 250px;
  }
}

.page_access__map a {
  font-size: 1.8rem;
  color: #707070;
  line-height: 20px;
  text-decoration: underline;
  display: inline-block;
  margin-top: 20px;
}

.page_access__map a:hover {
  text-decoration: none;
}

.page_access .sec01 {
  margin-bottom: 20px;
}

@media screen and (max-width: 599px) {
  .page_access .sec01 {
    margin-bottom: 40px;
  }
}

.page_access .sec01 .c-text01 {
  text-align: left;
  margin-bottom: 10px;
}

@media screen and (max-width: 599px) {
  .page_access .sec01 .c-text01 {
    font-size: 1.6rem;
  }
}

.page_access .sec01 .c-title01 {
  margin-bottom: 40px;
}

.page_access .sec02 {
  margin-bottom: 60px;
}

.page_access .sec02 .c-table1 {
  margin: 0 auto;
  margin-top: 45px;
  max-width: 800px;
}

.page_access .sec02 .c-table1 td:first-child {
  width: 260px;
}

@media screen and (max-width: 599px) {
  .page_access .sec02 .c-table1 td:first-child {
    width: 110px;
  }
}

.page_access .sec02 .c-table1 td:first-child span {
  display: block;
  font-size: 2.2rem;
}

@media screen and (max-width: 599px) {
  .page_access .sec02 .c-table1 td:first-child span {
    font-size: 1.3rem;
  }
}

.page_access .sec02 .c-table1 th {
  font-size: 2rem;
}

@media screen and (max-width: 599px) {
  .page_access .sec02 .c-table1 th {
    font-size: 1.4rem;
  }
}

.page_access .sec02 .c-table1 td {
  font-size: 2.2rem;
}

@media screen and (max-width: 599px) {
  .page_access .sec02 .c-table1 td {
    font-size: 1.6rem;
  }
}

.page_access .sec02 .page_access__text01 {
  max-width: 770px;
  margin: 0 auto;
  margin-top: 25px;
}

@media screen and (max-width: 599px) {
  .page_access .sec02 .page_access__text01 {
    font-size: 1.4rem;
    line-height: 26px;
    margin-top: 15px;
  }
}

.page_access .sec03 {
  margin-bottom: 60px;
}

.page_access .sec03 .c-title01 {
  margin-bottom: 40px;
}

.page_access .sec03 .c_dl {
  padding: 0 100px;
}

@media screen and (max-width: 599px) {
  .page_access .sec03 .c_dl {
    padding: 0;
  }
}

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

.medical .sec01 {
  margin-bottom: 40px;
}

.medical .sec01 .page_access__text01 {
  text-align: center;
  letter-spacing: -0.1rem;
  margin-bottom: 40px;
}

@media screen and (max-width: 599px) {
  .medical .sec01 .page_access__text01 {
    font-size: 1.4rem;
    line-height: 22px;
    text-align: left;
    margin-bottom: 20px;
    margin-top: 0;
  }
}

.medical .sec01 .c-nav01 li a {
  padding-right: 0;
}

@media screen and (max-width: 767px) and (min-width: 600px) {
  .medical .sec01 .c-nav01 li a {
    padding-bottom: 10px;
  }
}

.medical .sec01 .c-nav01 li a:after {
  background-image: url("../img/common/icon_r_y.svg");
  right: auto;
  left: 50%;
  bottom: 10px;
  top: auto;
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
  width: 12px;
  height: 12px;
}

@media screen and (max-width: 599px) {
  .medical .nav_acc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.medical .nav_acc > li:last-child {
  width: 320px;
}

@media screen and (max-width: 767px) and (min-width: 600px) {
  .medical .nav_acc > li:last-child {
    width: 40%;
  }
}

@media screen and (max-width: 599px) {
  .medical .nav_acc > li:last-child {
    width: 100%;
  }
}

.medical .nav_acc > li:first-child {
  width: calc(100% - 320px);
  padding-right: 35px;
}

@media screen and (max-width: 767px) and (min-width: 600px) {
  .medical .nav_acc > li:first-child {
    width: 60%;
    padding-right: 20px;
  }
}

@media screen and (max-width: 599px) {
  .medical .nav_acc > li:first-child {
    width: 100%;
    padding-right: 0;
  }
}

.medical__lst {
  margin-bottom: 60px;
  position: relative;
}

@media screen and (max-width: 599px) {
  .medical__lst {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 599px) {
  .medical__lst#a {
    z-index: -1;
  }
}

.medical__lst dt {
  margin-bottom: 30px;
}

@media screen and (max-width: 599px) {
  .medical__lst dt {
    margin-bottom: 10px;
  }
}

.medical__lst dd .c-title03 {
  margin-bottom: 10px;
}

.medical__lst dd .box {
  padding: 30px;
  background-color: #FAF8F2;
  margin: 0 25px;
  margin-top: 35px;
}

@media screen and (max-width: 767px) and (min-width: 600px) {
  .medical__lst dd .box {
    margin-left: 0;
    margin-right: 0;
  }
}

@media screen and (max-width: 599px) {
  .medical__lst dd .box {
    margin: 20px 0;
    padding: 20px 10px;
  }
}

.medical__lst dd .box h4 {
  font-size: 1.6rem;
  color: #E8BE40;
  margin-bottom: 20px;
}

@media screen and (max-width: 599px) {
  .medical__lst dd .box h4 {
    margin-bottom: 10px;
  }
}

.medical__lst dd .box p {
  font-size: 1.6rem;
  line-height: 29px;
  color: #4B4B4B;
}

@media screen and (max-width: 599px) {
  .medical__lst dd .box p {
    font-size: 1.4rem;
    line-height: 20px;
  }
}

.medical__lst dd .nav_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5px;
}

@media screen and (max-width: 767px) {
  .medical__lst dd .nav_link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .medical__lst dd .nav_link li {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 599px) {
  .medical__lst dd .nav_link li {
    margin-bottom: 5px;
  }
}

.medical__lst dd .nav_link li a {
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: underline;
  padding: 0 2px;
}

@media screen and (max-width: 599px) {
  .medical__lst dd .nav_link li a {
    font-size: 1.4rem;
  }
}

.medical__lst dd .nav_link li a:hover {
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .medical__lst dd .nav_link li:first-child:before {
    content: '・';
    font-size: 1.6rem;
  }
}

.medical__lst dd .nav_link li + li:before {
  content: '・';
  font-size: 1.6rem;
}

@media screen and (max-width: 599px) {
  .medical__lst dd .page_access__text01 {
    font-size: 1.4rem;
    line-height: 22px;
    text-align: left;
    margin-bottom: 10px;
  }
}

.medical__lst .c-text01 {
  text-align: left;
}

.medical_nav {
  display: none;
}

@media screen and (max-width: 599px) {
  .medical_nav {
    display: block;
    position: relative;
  }
}

.medical_nav dt {
  width: 100%;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1;
  position: relative;
  background-color: #689F00;
  color: #fff;
  padding: 14px 20px;
}

.medical_nav dt:after {
  content: '';
  width: 12px;
  height: 12px;
  background: url(../img/common/icon_r_y.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.medical_nav dd {
  padding: 20px;
  border: 1px solid #689F00;
  position: absolute;
  width: 100%;
  left: 0;
  top: 44px;
  z-index: 999;
  background-color: #fff;
}

.medical_nav dd ul li a {
  font-size: 1.6rem;
  color: #4B4B4B;
  line-height: 29px;
  text-decoration: underline;
}

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

@media screen and (max-width: 599px) {
  .pc-only {
    display: none;
  }
  .pc_tab {
    display: none;
  }
}

@media (min-width: 600px) and (max-width: 896px) {
  .tab-only {
    display: none;
  }
}
.not_found .sec01{
  text-align: center;
  padding-bottom: 60px;
}

@media screen and (max-width: 599px) {
  .not_found .sec01{
    text-align: left;
  }
}

.not_found .sec01 .c-title03{
    margin-bottom: 30px;
}

.mb10{
  margin-bottom: 10px;
}

.mb20{
  margin-bottom: 20px;
}

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

.news_details iframe{
  max-width: 100%;
}

.news_details__main a {
    text-decoration: underline;
}

@media screen and (max-width: 599px) {
.nav_acc > li:last-child img.imgfull {
    width: 60%;
    height: 100%;
    object-fit: unset;
    display: block;
    margin: 0 auto;
}
}

.header__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 279px;
}
@media (min-width: 600px) and (max-width: 940px) {
  .header__block {
    width: 22vw;
  }
}
@media screen and (max-width: 599px) {
  .header__block {
    width: 100%;
  }
}

.header__block .header__tel {
  line-height: 40px;
  background-color: #E15F40;
  max-width: 100%;
  margin-bottom: 10px;
}

@media screen and (max-width: 599px) {
  .header__tel.st01{
    background-color: #E15F40;
  }
}

.header__block__btn {
  width: 135px;
  line-height: 31px;
  background-color: #689F00;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  border-radius: 3px;
}
@media (min-width: 600px) and (max-width: 940px) {
  .header__block__btn {
    width: 10.5vw;
    font-size: 1.3vw;
  }
}
@media screen and (max-width: 599px) {
  .header__block__btn {
    width: 48.5%;
    line-height: 50px;
    font-size: 1.8rem;
    margin-top: 15px;
  }
}
.header__block__btn:hover {
  opacity: 0.7;
}

.header__block__btn.st01 {
  background-color: #E8BE40;
  margin-left: 9px;
}
@media (min-width: 600px) and (max-width: 940px) {
  .header__block__btn.st01 {
    margin-left: 5px;
  }
}
@media screen and (max-width: 599px) {
  .header__block__btn.st01 {
    margin-left: 3%;
  }
}

.list_news {
  background-color: #689F00;
  padding: 10px 20px;
  position: absolute;
  right: 0;
  bottom: 20px;
  width: 100%;
  max-width: 615px;
}
@media screen and (max-width: 599px) {
  .list_news {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% + 40px);
    left: -20px;
  }
}

.list_news::before {
  content: "";
  width: 1200%;
  height: 100%;
  background-color: #689F00;
  position: absolute;
  left: 100%;
  bottom: 0;
}

.list_news li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.list_news li:last-child {
  margin-top: 9px;
}
.list_news__date {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
}
@media screen and (max-width: 599px) {
  .list_news__date {
    margin-right: 10px;
    font-size: 1.2rem;
  }
}
.list_news__cate {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 22px;
  color: #689F00;
  padding: 0px 10px;
  background-color: #fff;
  display: block;
  margin-right: 20px;
  margin-left: 20px;
  min-width: 94px;
}
.list_news__cate:hover {
  opacity: 0.85;
}
@media screen and (max-width: 599px) {
  .list_news__cate {
    display: none;
  }
}
.list_news__title a {
  font-size: 1.4rem;
  color: #fff;
  text-decoration: underline;
  line-height: 25px;
}
.list_news__title a:hover {
  text-decoration: none;
}

.top .sec01__group {
  position: relative;
}
@media screen and (max-width: 599px) {
  .top .sec01__group {
    margin-bottom: 20px;
  }
}

.btn_01 {
  display: block;
  max-width: 315px;
  width: 100%;
  text-align: center;
  line-height: 50px;
  font-size: 1.8rem;
  border-radius: 3px;
  font-weight: bold;
  color: #fff;
  margin: 0 auto;
  background-color: #E8BE40;
  padding-right: 10px;
  margin-top: 40px;
}
.btn_01:hover {
  opacity: 0.7;
}
.btn_01 img {
  margin-right: 10px;
}
.btn_01.st01 {
  background-color: #689F00;
  margin-top: 30px;
}