@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@300;400;500;700&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");

html {
  height: 100%;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html.font-large {
  font-size: 118.75%;
}

body {
  position: relative;
  background-color: #fff;
  height: 100%;
  color: #222;
  font-size: 1rem;
  font-family: "ヒラギノ丸ゴ W3 JIS2004", "Hiragino Maru Gothic W3 JIS2004", "M PLUS Rounded 1c", sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

strong {
  font-family: "ヒラギノ丸ゴ W6 JIS2004", "Hiragino Maru Gothic W6 JIS2004", "M PLUS Rounded 1c";
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "ヒラギノ丸ゴ W6 JIS2004", "Hiragino Maru Gothic W6 JIS2004", "M PLUS Rounded 1c";
  font-weight: 500;
  line-height: 1.5;
}

a {
  color: #059d4f;
  transition: color 0.2s ease-in-out;
}

a:hover {
  color: #e37900;
}

.global-header {
  background-color: #fff;
}

@media (min-width: 992px) {
  .global-header {
    transition: top 300ms;
  }
}

@media (max-width: 991.98px) {
  .global-header {
    position: fixed;
    z-index: 98;
    width: 100%;
    height: 70px;
  }
}

@media (min-width: 992px) {
  .global-header.is-fixed {
    position: fixed;
    width: 100%;
    z-index: 99;
  }
}

.global-header__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 992px) {
  .global-header__inner {
    max-width: 1140px;
  }
}

@media (max-width: 991.98px) {
  .global-header__inner {
    height: 100%;
  }
}

.header-logo {
  margin: 0;
  width: 260px;
  height: 48px;
}

@media (min-width: 992px) {
  .is-fixed .header-logo {
    width: 160px;
  }
}

@media (max-width: 991.98px) {
  .header-logo {
    width: 217px;
    height: 40px;
  }
}

@media (max-width: 575.98px) {
  .header-logo {
    width: 195px;
    height: 36px;
  }
}

.header-logo__brand {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-image: url("../images/logo.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: 100%;
  white-space: nowrap;
  cursor: pointer;
}

@media (min-width: 992px) {
  .is-fixed .header-components {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  .header-components {
    position: fixed;
    top: 70px;
    left: 0;
    z-index: 99;
    background-color: #fff;
    width: 100%;
    height: calc(100vh - 70px);
    padding-bottom: 108px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .header-components::-webkit-scrollbar {
    display: none;
  }
}

.header-components .sub-links {
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}

@media (max-width: 991.98px) {
  .header-components .sub-links {
    display: none;
  }
}

.header-components .sub-links li {
  padding: 0.875rem;
}

.header-components .sub-links li:last-child {
  padding-right: 0;
}

.header-components .sub-links li a {
  display: inline-block;
  color: inherit;
  font-size: 0.9325rem;
}

.header-components .sub-links li a:hover {
  color: #e37900;
  text-decoration: none;
}

.header-components .sub-links li a::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 7px;
  border-color: transparent transparent transparent #059d4f;
  margin-right: 0.625rem;
}

.header-components .useful-items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 991.98px) {
  .header-components .useful-items {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
    padding: 1.25rem 1rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.header-components .useful-items .header-search {
  position: relative;
  -ms-flex-order: 2;
  order: 2;
  margin-left: 2rem;
  width: 240px;
  height: 40px;
}

@media (max-width: 991.98px) {
  .header-components .useful-items .header-search {
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    max-width: 480px;
    margin-bottom: 1.25rem;
    margin-left: 0;
  }
}

.header-components .useful-items .header-search__form {
  height: 100%;
}

.header-components .useful-items .header-search__input {
  display: block;
  background-color: #CCEDDD;
  border: 1px solid #CCEDDD;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  padding-right: calc(48px + 0.5em);
  padding-left: 0.5em;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: all 0.15s ease-in-out;
}

.header-components .useful-items .header-search__input::-webkit-input-placeholder {
  color: #838786;
  font-size: 15px;
}

.header-components .useful-items .header-search__input::-moz-placeholder {
  color: #838786;
  font-size: 15px;
}

.header-components .useful-items .header-search__input:-ms-input-placeholder {
  color: #838786;
  font-size: 15px;
}

.header-components .useful-items .header-search__input::-ms-input-placeholder {
  color: #838786;
  font-size: 15px;
}

.header-components .useful-items .header-search__input::placeholder {
  color: #838786;
  font-size: 15px;
}

.header-components .useful-items .header-search__input:focus {
  background-color: #fff;
  border-color: #059d4f;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(4, 158, 80, 0.25);
}

.header-components .useful-items .header-search__input:focus::-webkit-input-placeholder {
  color: transparent;
}

.header-components .useful-items .header-search__input:focus::-moz-placeholder {
  color: transparent;
}

.header-components .useful-items .header-search__input:focus:-ms-input-placeholder {
  color: transparent;
}

.header-components .useful-items .header-search__input:focus::-ms-input-placeholder {
  color: transparent;
}

.header-components .useful-items .header-search__input:focus::placeholder {
  color: transparent;
}

.header-components .useful-items .header-search__submit {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  border: 1px solid #059d4f;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  background-color: #059d4f;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16px 16px"><path fill="%23fff" d="M13.1 6.55c0 1.45-.47 2.78-1.26 3.86l3.99 3.99c.39.39.39 1.03 0 1.43-.39.39-1.03.39-1.43 0l-3.99-3.99A6.547 6.547 0 0 1 0 6.55C0 2.93 2.93 0 6.55 0s6.55 2.93 6.55 6.55Zm-6.55 4.54c2.5 0 4.54-2.03 4.54-4.54S9.06 2.01 6.55 2.01 2.02 4.05 2.02 6.55s2.03 4.54 4.54 4.54Z" /></svg>');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  width: 48px;
  height: 100%;
}

.header-components .useful-items .header-search__submit:hover {
  background-color: #fff;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16px 16px"><path fill="%23059d4f" d="M13.1 6.55c0 1.45-.47 2.78-1.26 3.86l3.99 3.99c.39.39.39 1.03 0 1.43-.39.39-1.03.39-1.43 0l-3.99-3.99A6.547 6.547 0 0 1 0 6.55C0 2.93 2.93 0 6.55 0s6.55 2.93 6.55 6.55Zm-6.55 4.54c2.5 0 4.54-2.03 4.54-4.54S9.06 2.01 6.55 2.01 2.02 4.05 2.02 6.55s2.03 4.54 4.54 4.54Z" /></svg>');
}

.header-components .useful-items .font-size {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-order: 1;
  order: 1;
}

@media (max-width: 991.98px) {
  .header-components .useful-items .font-size {
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.header-components .useful-items .font-size__title {
  padding-right: 0.3125rem;
  font-size: 0.9375rem;
}

.header-components .useful-items .font-size__buttons {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.header-components .useful-items .font-size__button {
  width: 60px;
  height: 40px;
}

.header-components .useful-items .font-size__button .btn-label {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #059d4f;
  margin: 0;
  width: 100%;
  height: 100%;
  transition: all 0.15s ease-in-out;
  font-size: 16px;
  cursor: pointer;
}

.header-components .useful-items .font-size__button .btn-label[for=fsLarge] {
  font-size: 19px;
}

.header-components .useful-items .font-size__button .check-btn {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.header-components .useful-items .font-size__button .check-btn:checked+.btn-label {
  color: #fff;
  background-color: #059d4f;
}

.header-components .useful-items .font-size__button:first-child .btn-label {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.header-components .useful-items .font-size__button:last-child .btn-label {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.global-nav-wrap-pc {
  width: 100%;
}

@media (min-width: 992px) {
  .is-fixed .global-nav-wrap-pc {
    width: calc(100% - 200px);
  }
}

@media (max-width: 991.98px) {
  .global-nav-wrap-pc {
    display: none;
  }
}

.global-nav {
  width: 100%;
}

.global-nav__items {
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 0 0;
  padding: 0;
}

@media (min-width: 992px) {
  .is-fixed .global-nav__items {
    margin-top: 10px;
  }
}

@media (max-width: 991.98px) {
  .global-nav__items {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-top: 1px solid #ccc;
    margin-top: 0;
  }
}

.global-nav__items>li {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 16.6666666667%;
}

@media (max-width: 991.98px) {
  .global-nav__items>li {
    position: relative;
    border-bottom: 1px solid #ccc;
    width: 100%;
  }
}

.global-nav__items>li>a {
  position: relative;
  display: block;
  background-position: left 50% top 10px;
  background-repeat: no-repeat;
  background-size: 60px;
  border-left: 1px solid #e9e9e9;
  width: 100%;
  margin-bottom: 20px;
  padding-top: 70px;
  color: inherit;
  text-align: center;
}

@media (min-width: 992px) {
  .is-fixed .global-nav__items>li>a {
    background-size: 40px;
    margin-bottom: 10px;
    padding-top: 50px;
    font-size: 0.75rem;
  }
}

@media (max-width: 991.98px) {
  .global-nav__items>li>a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    background-position: left 10px top 50%;
    background-size: 40px;
    border-left-style: none;
    width: calc(100% - 54px);
    min-height: 54px;
    margin-bottom: 0;
    padding-top: 0;
    padding-left: 70px;
    text-align: left;
  }
}

.global-nav__items>li>a:hover {
  text-decoration: none;
  color: #059d4f;
}

@media (max-width: 991.98px) {
  .global-nav__items>li>a:hover {
    color: #e37900;
  }
}

@media (min-width: 992px) {
  .global-nav__items>li>a::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block;
    width: 50%;
    height: 0;
    background-color: #059d4f;
    opacity: 0;
    transition: all 0.4s ease-in-out;
  }

  .is-fixed .global-nav__items>li>a::after {
    bottom: -10px;
  }
}

@media (min-width: 992px) {
  .global-nav__items>li:last-child>a {
    border-right: 1px solid #e9e9e9;
  }
}

@media (min-width: 992px) {
  .global-nav__items>li:hover>a::after {
    height: 3px;
    opacity: 1;
  }
}

.global-nav__items>li#gnav1>a {
  background-image: url(../images/icon_gnav_1.svg);
}

.global-nav__items>li#gnav2>a {
  background-image: url(../images/icon_gnav_2.svg);
}

.global-nav__items>li#gnav3>a {
  background-image: url(../images/icon_gnav_3.svg);
}

.global-nav__items>li#gnav4>a {
  background-image: url(../images/icon_gnav_4.svg);
}

.global-nav__items>li#gnav5>a {
  background-image: url(../images/icon_gnav_5.svg);
}

.global-nav__items>li#gnav6>a {
  background-image: url(../images/icon_gnav_6.svg);
}

@media (max-width: 991.98px) {
  .global-nav__items>li .opener {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    background-color: #059d4f;
    width: 54px;
    height: 54px;
    cursor: pointer;
  }

  .global-nav__items>li .opener::before,
  .global-nav__items>li .opener::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    background-color: #fff;
    width: 26px;
    height: 2px;
  }

  .global-nav__items>li .opener::before {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .global-nav__items>li .opener::after {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
  }
}

.global-nav__items>li .opener.open::after {
  opacity: 0;
}

.global-nav .footer-nav__items {
  margin: 0;
}

.global-nav .footer-nav__items li {
  width: 100%;
  border-bottom: 1px solid #ccc;
  min-height: 54px;
  margin: 0;
  padding: 0;
}

.global-nav .footer-nav__items li>a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
}

.global-nav .footer-nav__items li>a::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 7px;
  border-color: transparent transparent transparent #059d4f;
  margin-right: 0.5em;
}

.global-subnav {
  position: absolute;
  left: 0;
  z-index: 99;
  background-color: #CCEDDD;
  width: 100%;
}

@media (max-width: 991.98px) {
  .global-subnav {
    position: static;
  }
}

.global-subnav__inner {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  padding: 2.5rem 1rem;
}

@media (min-width: 992px) {
  .global-subnav__inner {
    max-width: 1140px;
  }
}

@media (max-width: 991.98px) {
  .global-subnav__inner {
    padding: 0;
  }
}

.global-subnav__inner>ul {
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 80%;
  padding: 0;
}

@media (max-width: 991.98px) {
  .global-subnav__inner>ul {
    width: 100%;
  }
}

.global-subnav__inner>ul>li {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 33.3333333333%;
  min-height: 60px;
  margin-bottom: 0.5rem;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

@media (max-width: 991.98px) {
  .global-subnav__inner>ul>li {
    border-top: 1px dotted #ccc;
    width: 100%;
    min-height: 48px;
    margin-bottom: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .global-subnav__inner>ul>li:last-child {
    border-top-style: solid;
  }
}

.global-subnav__inner>ul>li>a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border-radius: 4px;
  height: 100%;
  padding: 0.5rem 1rem;
  color: inherit;
  font-family: "ヒラギノ丸ゴ W6 JIS2004", "Hiragino Maru Gothic W6 JIS2004", "M PLUS Rounded 1c";
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
}

@media (max-width: 991.98px) {
  .global-subnav__inner>ul>li>a {
    background-color: #CCEDDD;
    border-radius: 0;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .global-subnav__inner>ul>li>a::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 7px;
    border-color: transparent transparent transparent #059d4f;
    margin-right: 0.5em;
  }
}

.global-subnav__inner>ul>li>a:hover {
  color: #059d4f;
}

.global-subnav__title {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 20%;
  margin-top: 0.5rem;
  color: #036633;
  font-family: "ヒラギノ丸ゴ W6 JIS2004", "Hiragino Maru Gothic W6 JIS2004", "M PLUS Rounded 1c";
  font-size: 1.5rem;
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .global-subnav__title {
    display: none;
  }
}

.gnav-toggle {
  position: absolute;
  top: 10px;
  right: 1rem;
  width: 50px;
  height: 50px;
  text-indent: 100%;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
}

@media (min-width: 992px) {
  .gnav-toggle {
    display: none;
  }
}

.gnav-toggle__btn {
  position: absolute;
  top: 25px;
  display: block;
  background-color: #222;
  width: 50px;
  height: 2px;
  transition: background-color 0.15s linear;
}

.global-nav-open .gnav-toggle__btn {
  background-color: transparent;
}

.gnav-toggle__btn::before,
.gnav-toggle__btn::after {
  content: "";
  position: absolute;
  display: block;
  background-color: #222;
  width: 50px;
  height: 2px;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  transition: all 0.15s linear;
}

.gnav-toggle__btn::before {
  top: -13px;
}

.global-nav-open .gnav-toggle__btn::before {
  top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.gnav-toggle__btn::after {
  top: 13px;
}

.global-nav-open .gnav-toggle__btn::after {
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.global-nav-open {
  overflow: hidden;
  height: 100%;
}

.main {
  background-image: url("../images/background_pattern.png");
  background-repeat: repeat;
  background-size: 250px 250px;
}

@media (max-width: 991.98px) {
  .main {
    padding-top: 70px;
  }
}

.main-visual {
  position: relative;
  background-image: url("../images/mv_03.jpg");
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
}

.main-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: linear-gradient(90deg, rgb(255, 255, 255), rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0));
  width: 100%;
  height: 100%;
}

@media (max-width: 767.98px) {
  .main-visual::before {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.2));
  }
}

.main-visual__inner {
  position: relative;
  height: 260px;
}

@media (max-width: 767.98px) {
  .main-visual__inner {
    height: 160px;
  }
}

.main-visual__title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0;
  height: 100%;
  color: #000;
  font-family: "ヒラギノ丸ゴ W6 JIS2004", "Hiragino Maru Gothic W6 JIS2004", "M PLUS Rounded 1c";
  font-size: 2.125rem;
  font-weight: 700;
  text-shadow: 1px 1px 2px #fff, -1px -1px 2px #fff, 1px -1px 2px #fff, -1px 1px 2px #fff, 2px 2px 4px #fff, -2px -2px 4px #fff, 2px -2px 4px #fff, -2px 2px 4px #fff, 4px 4px 8px #fff, -4px -4px 8px #fff, 4px -4px 8px #fff, -4px 4px 8px #fff;
}

@media (max-width: 767.98px) {
  .main-visual__title {
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.75rem;
  }
}

.contents {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 30px;
  padding-bottom: 80px;
}

@media (min-width: 992px) {
  .contents {
    max-width: 1140px;
  }
}

.contents__box {
  background-color: #fff;
  border-radius: 6px;
  padding: 40px 50px;
}

@media (max-width: 767.98px) {
  .contents__box {
    padding: 15px;
  }
}

.contents__body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.contents__main {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: calc(100% - 286px);
}

@media (max-width: 991.98px) {
  .contents__main {
    width: 100%;
  }
}

.contents__side {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 286px;
  padding-left: 60px;
}

@media (max-width: 991.98px) {
  .contents__side {
    width: 100%;
    padding-left: 0;
  }
}

.main-breadcrumb {
  padding-bottom: 2rem;
}

.main-article {
  padding-bottom: 3rem;
}

.main-article h1 a:hover,
.main-article h2 a:hover,
.main-article h3 a:hover {
  text-decoration: none;
}

.main-article h1 {
  background-color: #f1f1f1;
  border-left: 7px solid #059d4f;
  padding: 0.5rem 1.25rem;
  font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {
  .main-article h1 {
    font-size: 1.75rem;
  }
}

@media (max-width: 767.98px) {
  .main-article h1 {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}

.main-article h2 {
  position: relative;
  border-bottom: 3px solid #c1c1c1;
  margin-top: 3.125rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: calc(1.2875rem + 0.45vw);
}

@media (min-width: 1200px) {
  .main-article h2 {
    font-size: 1.625rem;
  }
}

.main-article h2::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  display: block;
  background-color: #059d4f;
  width: 10%;
  height: 3px;
}

@media (max-width: 767.98px) {
  .main-article h2::after {
    width: 20%;
  }
}

.main-article h3 {
  margin-top: 2.59375rem;
  border-left: 6px solid #059d4f;
  padding-left: 0.875rem;
  font-size: 1.3125rem;
}

@media (max-width: 767.98px) {
  .main-article h3 {
    padding-left: 0.75rem;
  }
}

.main-article h4 {
  margin-top: 2.0625rem;
  color: #059d4f;
  font-size: 1.25rem;
}

.main-article h5 {
  margin-top: 1.53125rem;
  font-size: 1.125rem;
}

.main-article h6 {
  margin-top: 1rem;
  font-size: 1rem;
}

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

.main-article hr {
  border-top-color: #b1b1b1;
}

.main-article .archive-link {
  padding-top: 3rem;
  text-align: center;
}

.content-header {
  margin-bottom: 1.75rem;
}

.content-header .news-labels {
  margin-top: 1rem;
}

.main-content>*:first-child {
  margin-top: 0;
}

.main-content a {
  text-decoration: underline;
}

.main-content blockquote p {
  background-color: #ededed;
  margin-bottom: 0;
  padding: 1.75rem;
}

.main-content blockquote cite {
  position: relative;
  display: inline-block;
  margin-top: 0.5rem;
  padding-left: 3.5em;
  font-style: normal;
}

.main-content blockquote cite::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  background-color: #222;
  width: 2.5em;
  height: 1px;
}

.main-content>ul>li {
  margin-bottom: 0.25rem;
}

.main-content>ul>li::marker {
  color: #059d4f;
}

.main-content>table {
  margin-bottom: 1rem;
}

.main-content table.style> :not(caption)>* {
  border-top: 1px solid #b1b1b1;
  border-bottom: 1px solid #b1b1b1;
}

.main-content table.style> :not(caption)>*>th {
  background-color: #b9edd2;
  font-family: "ヒラギノ丸ゴ W6 JIS2004", "Hiragino Maru Gothic W6 JIS2004", "M PLUS Rounded 1c";
  font-weight: 700;
}

.main-content table.style> :not(caption)>*>* {
  border-right: 1px solid #b1b1b1;
  border-left: 1px solid #b1b1b1;
  padding: 0.5rem;
  line-height: 1.5;
}

.content-section+.content-section {
  margin-top: 4rem;
}

.content-section h2 {
  margin-top: 0;
}

.subpage-lists {
  list-style: none;
  margin-bottom: 0;
  padding: 0;
}

.subpage-lists>li {
  position: relative;
  width: 100%;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1.0625rem;
  line-height: 1.5;
}

.subpage-lists>li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  border-bottom: 1px dotted #000;
  width: 100%;
}

.subpage-lists>li a {
  display: inline-block;
  margin-left: 2em;
  color: inherit;
  text-indent: -1.125em;
  text-decoration: none;
}

.subpage-lists>li a:hover {
  color: #e37900;
  text-decoration: none;
}

.subpage-lists>li a::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 7px;
  border-color: transparent transparent transparent #059d4f;
  margin-right: 0.75rem;
}

.subpage-lists-column {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.subpage-lists-column>li {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (max-width: 767.98px) {
  .subpage-lists-column>li {
    width: 100%;
  }
}

.subpage-lists-column>li::after {
  left: 15px;
  width: calc(100% - 30px);
}

.list-page-news {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 1.5rem;
  border: 1px solid #059d4f;
  border-radius: 6px;
}

@media (max-width: 767.98px) {
  .list-page-news {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.news-lists {
  list-style: none;
  margin: 0;
  padding: 0;
  min-height: 100px;
  max-height: 300px;
  overflow-y: auto;
}

.news-lists__list {
  border-bottom: 1px dotted #000;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  padding: 0 0.25em 0.75rem;
}

.news-lists__list__link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: start;
  align-items: flex-start;
  color: inherit;
}

.news-lists__list__link:hover {
  text-decoration: none;
}

.news-lists__list__link:hover .news-lists__list__date {
  color: #059d4f;
}

.news-lists__list__date {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 7rem;
  color: #059d4f;
}

.news-lists__list__title {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: calc(100% - 7rem);
}

@media (max-width: 575.98px) {
  .news-lists__list__title {
    width: 100%;
  }
}

.news-labels__date {
  color: #757575;
  font-size: 17px;
}

.news-labels__cat {
  display: inline-block;
  color: #fff;
  font-size: 13px;
  background-color: #999;
  border-radius: 0.8125rem;
  width: 150px;
  height: 26px;
  margin-left: 16px;
  padding: 2px 0.5em;
  text-align: center;
}

.news-labels__cat.notice {
  background-color: #E87474;
}

.news-labels__cat.bank {
  background-color: #DE9240;
}

.news-labels__cat.kyosai {
  background-color: #A6A000;
}

.news-labels__cat.farmer {
  background-color: #825E51;
}

.news-labels__cat.spa {
  background-color: #56C73A;
}

.news-labels__cat.welfare {
  background-color: #BD6AD1;
}

.news-labels__cat.event {
  background-color: #25ccd6;
}

.news-labels__cat.pr {
  background-color: #516BB5;
}

.news-items {
  list-style: none;
  margin-bottom: 2.25rem;
  padding: 0;
}

.news-items__item {
  border-bottom: 1px dotted #000;
}

.news-items__item a {
  color: inherit;
}

.news-items__item a:hover {
  color: #e37900;
  text-decoration: none;
}

.news-items__item__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0.75rem 0;
}

.news-items__item__labels {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 264px;
}

.label-none .news-items__item__labels {
  width: 120px;
}

.news-items__item__title {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
  margin-top: 0.5rem;
  font-size: 1.0625rem;
}

@media (min-width: 768px) {
  .news-items__item__title {
    margin-top: 0;
    width: calc(100% - 264px);
    padding-left: 20px;
  }

  .label-none .news-items__item__title {
    width: calc(100% - 120px);
  }
}

@media (min-width: 992px) {
  .news-items__item__title {
    margin-top: 0.5rem;
    width: 100%;
    padding-left: 0;
  }

  .label-none .news-items__item__title {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .news-items__item__title {
    margin-top: 0;
    width: calc(100% - 264px);
    padding-left: 20px;
  }

  .label-none .news-items__item__title {
    width: calc(100% - 120px);
  }
}

.thumb-content-lists {
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
  padding: 0;
}

.thumb-content-lists__item {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 33.3333333333%;
  margin-bottom: 40px;
  padding-right: 10px;
  padding-left: 10px;
}

@media (max-width: 991.98px) {
  .thumb-content-lists__item {
    width: 50%;
  }
}

@media (max-width: 575.98px) {
  .thumb-content-lists__item {
    width: 100%;
    margin-bottom: 16px;
  }
}

.thumb-content-lists__item__link {
  display: block;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  overflow: hidden;
  height: 100%;
  color: inherit;
}

.thumb-content-lists__item__link:hover {
  text-decoration: none;
}

@media (max-width: 575.98px) {
  .thumb-content-lists__item__link {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.thumb-content-lists__item__img {
  position: relative;
  top: 0;
  height: 0;
  width: 100%;
  padding-top: 75%;
  overflow: hidden;
}

@media (max-width: 575.98px) {
  .thumb-content-lists__item__img {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    min-width: 96px;
    width: auto;
    height: auto;
    min-height: 96px;
    padding-top: 0;
    left: 0;
  }
}

.thumb-content-lists__item__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  -o-object-fit: cover;
  object-fit: cover;
  transition: opacity 0.2s ease-in-out;
}

a:hover .thumb-content-lists__item__img img {
  opacity: 0.85;
}

@media (max-width: 575.98px) {
  .thumb-content-lists__item__img img {
    right: 50%;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    width: auto;
    max-width: none;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

.thumb-content-lists__item__text {
  padding: 8px 16px;
  line-height: 1.5;
}

@media (max-width: 575.98px) {
  .thumb-content-lists__item__text {
    width: calc(100% - 96px);
  }
}

.thumb-content-lists__item__title {
  font-family: "ヒラギノ丸ゴ W6 JIS2004", "Hiragino Maru Gothic W6 JIS2004", "M PLUS Rounded 1c";
  font-size: 1.125rem;
  font-weight: 700;
}

@media (max-width: 575.98px) {
  .thumb-content-lists__item__title {
    font-size: 0.875rem;
  }
}

.thumb-content-lists__item__date {
  margin-top: 1rem;
  font-size: 0.75rem;
  text-align: right;
}

.footer {
  background-color: #fff;
}

.footer__inner {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

@media (min-width: 992px) {
  .footer__inner {
    max-width: 1140px;
  }
}

@media (max-width: 991.98px) {
  .footer__inner {
    padding-top: 2rem;
  }
}

.footer-contents {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 991.98px) {
  .footer-contents {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: center;
  }
}

.footer-contents>* {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

@media (max-width: 991.98px) {
  .footer-contents>* {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .footer-contents__left {
    width: 320px;
  }

  .footer-contents__right {
    width: auto;
    max-width: 680px;
  }
}

.footer-logo {
  max-width: 210px;
  margin-bottom: 1rem;
}

@media (max-width: 991.98px) {
  .footer-logo {
    margin-right: auto;
    margin-left: auto;
  }
}

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

.footer-address {
  margin: 0;
}

@media (max-width: 991.98px) {
  .footer-address {
    margin-bottom: 1.5rem;
  }
}

.footer-address__name {
  margin-bottom: 1rem;
  font-family: "ヒラギノ丸ゴ W6 JIS2004", "Hiragino Maru Gothic W6 JIS2004", "M PLUS Rounded 1c";
  font-size: 1.0625rem;
  font-weight: 700;
}

.footer-address__address {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.2;
}

@media (max-width: 991.98px) {
  .footer-address__address {
    line-height: 1.5;
  }
}

.footer-address__number {
  font-size: 0.875rem;
  line-height: 1.2;
}

@media (max-width: 991.98px) {
  .footer-address__number {
    text-decoration: none;
    line-height: 1.5;
  }
}

.footer-nav {
  padding: 0.5rem 0;
}

@media (max-width: 991.98px) {
  .footer-nav {
    display: none;
  }
}

.footer-nav__items {
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-bottom: 0;
  margin-left: -1rem;
  padding: 0;
}

.footer-nav__items li {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  margin-bottom: 0.25rem;
  padding-right: 1rem;
  padding-left: 1rem;
  font-size: 16px;
}

.footer-nav__items li a {
  color: inherit;
}

.footer-nav__items li a:hover {
  color: #e37900;
  text-decoration: none;
}

.copyright {
  color: #757575;
  font-family: "Times New Roman", Times, serif;
  text-align: right;
}

@media (max-width: 991.98px) {
  .copyright {
    font-size: 0.75rem;
    text-align: center;
  }
}

.side-menu__title {
  border-bottom: 3px solid #059d4f;
  padding-top: 0.625rem;
  padding-bottom: 0.5rem;
  font-family: "ヒラギノ丸ゴ W6 JIS2004", "Hiragino Maru Gothic W6 JIS2004", "M PLUS Rounded 1c";
  font-size: 1.185rem;
  font-weight: 700;
}

.side-menu__nav__items {
  list-style: none;
  padding: 0;
}

.side-menu__nav__items>li {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  line-height: 1.5;
  border-bottom: 1px dotted #000;
}

.side-menu__nav__items>li a {
  position: relative;
  display: block;
  padding-left: 24px;
  color: inherit;
  text-decoration: none;
}

.side-menu__nav__items>li a:hover {
  color: #e37900;
  text-decoration: none;
}

.side-menu__nav__items>li a::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 7px;
  border-color: transparent transparent transparent #059d4f;
  position: absolute;
  top: calc(0.5em - 2px);
  left: 8px;
}

.breadcrumb__list {
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.breadcrumb__list li+li {
  padding-left: 0.5rem;
}

.breadcrumb__list li+li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M2.5 0L1 1.5 3.5 4 1 6.5 2.5 8l4-4-4-4z' fill='%23b1b1b1'/%3E%3C/svg%3E");
  float: left;
  padding-right: 0.5rem;
}

.pager__lists {
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
}

.pager__list {
  width: 2.5rem;
  height: 2.25rem;
  margin-right: -1px;
  margin-left: -1px;
  font-size: 1rem;
}

.pager__list--prev,
.pager__list--next {
  width: 5rem;
}

.pager__list--prev .pager__link::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 7px;
  border-color: transparent transparent transparent #059d4f;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  margin-right: 0.5625rem;
}

.pager__list--next .pager__link::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 7px;
  border-color: transparent transparent transparent #059d4f;
  margin-left: 0.5625rem;
}

.pager__link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #059d4f;
  width: 100%;
  height: 100%;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

a.pager__link:hover {
  position: relative;
  z-index: 1;
  border-color: #e37900;
  text-decoration: none;
}

a.pager__link:hover::before,
a.pager__link:hover::after {
  border-left-color: #e37900;
}

.pager__link--disable {
  border-color: #b1b1b1;
  color: #b1b1b1;
}

.pager__link--disable::before,
.pager__link--disable::after {
  border-left-color: #b1b1b1 !important;
}

.pager__link--active {
  background-color: #059d4f;
  color: #fff;
}

.swiper-button-next,
.swiper-button-prev {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 100%;
  color: #fff;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 28px;
}

.swiper-button-next::after {
  -webkit-transform: translateX(2px);
  transform: translateX(2px);
}

.swiper-button-prev::after {
  -webkit-transform: translateX(-2px);
  transform: translateX(-2px);
}

.swiper-pagination-bullet-active {
  background: #059d4f;
}

.hero-carousel {
  width: 100%;
  height: auto;
  max-height: 600px;
  background-color: #fff;
  overflow: hidden;
}

.hero-carousel__slider {
  width: 100%;
  max-width: 1110px;
  height: auto;
  overflow: visible;
}

.hero-carousel__slider .swiper-slide {
  height: auto;
}

.hero-carousel__slider .swiper-slide .hero-carousel__banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity 0.2s ease-in-out;
}

.hero-carousel__slider .swiper-slide-active .hero-carousel__banner::after {
  opacity: 0;
}

@media (max-width: 767.98px) {

  .hero-carousel__slider .swiper-button-next,
  .hero-carousel__slider .swiper-button-prev {
    display: none;
  }
}

.hero-carousel__banner {
  position: relative;
  padding-top: 54.0540540541%;
  overflow: hidden;
}

.hero-carousel__banner__inner {
  position: absolute;
  top: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  background: #efefef;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero-carousel__banner__inner img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.home-areanews__slider .swiper-button-next,
.home-areanews__slider .swiper-button-prev {
  opacity: 1;
  transition: opacity 0.3s linear;
}

.home-areanews__slider .swiper-button-next {
  -webkit-transform: scale(0.8) translateX(16px);
  transform: scale(0.8) translateX(16px);
}

.home-areanews__slider .swiper-button-prev {
  -webkit-transform: scale(0.8) translateX(-16px);
  transform: scale(0.8) translateX(-16px);
}

.home-areanews__slider .swiper-button-disabled {
  opacity: 0;
}

.home-banners__container {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 3rem;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 992px) {
  .home-banners__container {
    max-width: 1140px;
  }
}

@media (max-width: 767.98px) {
  .home-banners__container {
    padding-right: 0;
    padding-left: 0;
  }
}

.home-banners__slider {
  background-color: #fff;
  border-radius: 6px;
  width: 100%;
  padding: 20px;
}

@media (max-width: 767.98px) {
  .home-banners__slider {
    border-radius: 0;
  }
}

.home-banners__slider .swiper-wrapper {
  width: auto;
  height: 65px;
}

.home-banners__slider .swiper-wrapper .swiper-slide {
  width: auto;
}

.home-banners__slider .swiper-wrapper .swiper-slide img {
  display: block;
  width: auto;
  height: 100%;
}

.home-banners .swiper-button-next,
.home-banners .swiper-button-prev {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.home-banners .swiper-button-next {
  -webkit-transform: scale(0.8) translate(30px, -8px);
  transform: scale(0.8) translate(30px, -8px);
}

@media (max-width: 1199.98px) {
  .home-banners .swiper-button-next {
    right: 40px;
  }
}

@media (max-width: 767.98px) {
  .home-banners .swiper-button-next {
    right: 33px;
  }
}

@media (max-width: 575.98px) {
  .home-banners .swiper-button-next {
    display: none;
  }
}

.home-banners .swiper-button-prev {
  -webkit-transform: scale(0.8) translate(-30px, -8px);
  transform: scale(0.8) translate(-30px, -8px);
}

@media (max-width: 1199.98px) {
  .home-banners .swiper-button-prev {
    left: 40px;
  }
}

@media (max-width: 767.98px) {
  .home-banners .swiper-button-prev {
    left: 33px;
  }
}

@media (max-width: 575.98px) {
  .home-banners .swiper-button-prev {
    display: none;
  }
}

.required {
  display: inline-block;
  background-color: #de3a3a;
  border-radius: 4px;
  margin-right: 1px;
  margin-left: 1px;
  padding: 0 0.3125rem;
  color: #fff;
  font-size: 0.875rem;
}

label .required {
  margin-left: 0.5rem;
  font-family: "ヒラギノ丸ゴ W3 JIS2004", "Hiragino Maru Gothic W3 JIS2004", "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
}

.contact-form {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.contact-form__wrap {
  max-width: 840px;
  margin-right: auto;
  margin-left: auto;
}

.contact-form__group {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  margin-right: -15px;
  margin-left: -15px;
  padding-bottom: 1rem;
}

.contact-form__group::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15px;
  display: block;
  border-bottom: 1px dotted #000;
  width: calc(100% - 30px);
}

@media (max-width: 767.98px) {
  .contact-form__group::after {
    content: none;
  }
}

.contact-form__group>* {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.contact-form__group .label-area {
  width: 14rem;
}

@media (max-width: 767.98px) {
  .contact-form__group .label-area {
    width: 100%;
  }
}

.contact-form__group .input-area {
  width: calc(100% - 14rem);
}

@media (max-width: 767.98px) {
  .contact-form__group .input-area {
    width: 100%;
  }
}

.contact-form .form-control {
  border-color: #b1b1b1;
  padding: 0.625rem 1.25rem;
  height: calc(1.5em + 1.25rem + 2px);
  border-radius: 0.35em;
  font-size: 1.25rem;
  line-height: 1.5;
}

.contact-form .form-control:focus {
  border-color: #059d4f;
  box-shadow: 0 0 0 0.25rem rgba(4, 158, 80, 0.25);
}

.contact-form textarea.form-control {
  height: auto;
}

.contact-form .col-form-label {
  font-family: "ヒラギノ丸ゴ W6 JIS2004", "Hiragino Maru Gothic W6 JIS2004", "M PLUS Rounded 1c";
  font-weight: 700;
}

.contact-form__agree {
  padding-top: 1rem;
  text-align: center;
}

.contact-form__agree .agree-check {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  width: 7.5rem;
  margin-right: auto;
  margin-left: auto;
  cursor: pointer;
}

.contact-form__agree .agree-check-Input {
  margin: 0;
  width: 0;
  opacity: 0;
}

.contact-form__agree .agree-check-Input:checked+.agree-check-DummyInput {
  border: solid 1px #059d4f;
  background: #059d4f;
}

.contact-form__agree .agree-check-Input:checked+.agree-check-DummyInput::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xml%3Aspace%3D%22preserve%22%20style%3D%22enable-background%3Anew%200%200%2024%2024%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M20%206%209%2017l-5-5%22%20style%3D%22fill%3Anone%3Bstroke%3A%23fff%3Bstroke-width%3A2%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%22%2F%3E%3C%2Fsvg%3E") no-repeat center;
  background-size: contain;
}

.contact-form__agree .agree-check-DummyInput {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 28px;
  height: 28px;
  border: solid 1px #b1b1b1;
  background: #FFFFFF;
  border-radius: 4px;
}

.contact-form__agree .agree-check-LabelText {
  margin-left: 12px;
  display: block;
  font-size: 1.0625rem;
}

.contact-form__submit {
  padding-top: 2rem;
  text-align: center;
}

.contact-form__submit .submit-btn {
  position: relative;
  display: inline-block;
  background: #059d4f;
  border: 2px solid #059d4f;
  border-radius: 4px;
  max-width: 100%;
  min-width: 260px;
  padding: 0.625rem 1rem 0.625rem 0.75rem;
  color: #fff;
  font-size: 1.0625rem;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.contact-form__submit .submit-btn::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 7px;
  border-color: transparent transparent transparent #fff;
  transition: all 0.2s ease-in-out;
}

.contact-form__submit .submit-btn.back::after {
  left: 1rem;
  border-width: 6px 7px 6px 0; /* 左向きの三角形にするために変更 */
  border-color: transparent #fff transparent transparent; /* 左向きの三角形にするために変更 */
}

.contact-form__submit .submit-btn:hover {
  background-color: #fff;
  color: #059d4f;
  text-decoration: none;
}

.contact-form__submit .submit-btn:hover::after {
  border-left-color: #059d4f;
}

.contact-form__submit .submit-btn:disabled {
  position: relative;
  display: inline-block;
  background: #999;
  border: 2px solid #999;
  border-radius: 4px;
  max-width: 100%;
  min-width: 260px;
  padding: 0.625rem 1rem 0.625rem 0.75rem;
  color: #fff;
  font-size: 1.0625rem;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  transition: all 0s ease;
  pointer-events: none;
}

.contact-form__submit .submit-btn:disabled::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 7px;
  border-color: transparent transparent transparent #fff;
  transition: all 0.2s ease-in-out;
}

.contact-form__submit .submit-btn:disabled:hover {
  background-color: #fff;
  color: #999;
  text-decoration: none;
}

.contact-form__submit .submit-btn:disabled:hover::after {
  border-left-color: #999;
}

.order-form__wrap {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 2rem;
}

.order-form .product-select {
  width: 100%;
  max-width: 600px;
}

.order-form .product-select th {
  border-bottom: 1px solid #b1b1b1;
  padding: 0.5rem;
  font-size: 0.875rem;
}

.order-form .product-select td {
  border-bottom: 1px dotted #b1b1b1;
  padding: 0.5rem;
}

.order-form .product-select__number {
  width: 100px;
}

.order-form .product-select__number input {
  width: 60px;
}

.order-form .product-select__number .unit {
  display: inline-block;
  margin-left: 0.5em;
}

.home-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (max-width: 767.98px) {
  .home-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.warning-information {
  background-color: #F0414D;
  border-radius: 6px;
  padding: 5px;
}

.warning-information__title {
  padding: 0.5em 0.5em;
  color: #fff;
  font-family: "ヒラギノ丸ゴ W6 JIS2004", "Hiragino Maru Gothic W6 JIS2004", "M PLUS Rounded 1c";
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 767.98px) {
  .warning-information__title {
    padding-top: 0.25em;
    padding-bottom: 0.25em;
    font-size: 1.125rem;
  }
}

.warning-information__title::before {
  content: "";
  display: inline-block;
  background-image: url("../images/icon_warning.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 42px;
  height: 42px;
  margin-right: 0.5em;
  vertical-align: middle;
}

@media (max-width: 767.98px) {
  .warning-information__title::before {
    width: 26px;
    height: 26px;
    vertical-align: bottom;
  }
}

.warning-information__items {
  background-color: #fff;
  margin: 0;
  padding: 2rem;
}

@media (max-width: 767.98px) {
  .warning-information__items {
    padding: 1rem;
  }
}

.warning-information__news-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px dotted #000;
  margin-bottom: 1.125rem;
  padding-bottom: 1.125rem;
}

@media (max-width: 767.98px) {
  .warning-information__news-item {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
  }
}

.warning-information__news-item__date {
  width: 8rem;
  font-size: 1.125rem;
  line-height: 1.5;
}

@media (max-width: 767.98px) {
  .warning-information__news-item__date {
    width: 100%;
    font-size: 1rem;
  }
}

.warning-information__news-item__title {
  width: calc(100% - 8rem);
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.5;
}

@media (max-width: 767.98px) {
  .warning-information__news-item__title {
    width: 100%;
    font-size: 1rem;
  }
}

.warning-information__news-item__title a {
  color: #F0414D;
}

.warning-information__news-item__title a:hover {
  color: #059d4f;
}

.warning-information__link {
  margin: 0;
  padding-top: 0.875rem;
  text-align: center;
}

@media (max-width: 767.98px) {
  .warning-information__link {
    padding-top: 0.25rem;
  }
}

.warning-information__link a {
  position: relative;
  display: inline-block;
  background: #fff;
  border: 2px solid #F0414D;
  border-radius: 4px;
  max-width: 100%;
  min-width: 260px;
  padding: 0.625rem 1rem 0.625rem 0.75rem;
  color: inherit;
  font-size: 1.0625rem;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.warning-information__link a::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 7px;
  border-color: transparent transparent transparent #F0414D;
  transition: all 0.2s ease-in-out;
}

.warning-information__link a:hover {
  background-color: #F0414D;
  color: #fff;
  text-decoration: none;
}

.warning-information__link a:hover::after {
  border-left-color: #fff;
}

.section-purpose {
  background-color: #F2E8C1;
  background-image: url("../images/background_pattern.png");
  background-repeat: repeat;
  background-size: 250px 250px;
  background-blend-mode: multiply;
}

.section-purpose__outer {
  width: 100%;
  overflow: hidden;
}

.section-purpose__outer::after {
  content: url("../images/bg_home_purpose_bottom.svg");
  display: block;
  mix-blend-mode: multiply;
  width: calc(100% + 20px);
  min-width: 480px;
  margin: 0 auto;
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
}

.section-purpose__inner {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 992px) {
  .section-purpose__inner {
    max-width: 1140px;
  }
}

.purpose-nav__items {
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  margin-right: -15px;
  margin-left: -15px;
  padding: 0;
}

@media (max-width: 991.98px) {
  .purpose-nav__items {
    margin-right: -10px;
    margin-left: -10px;
  }
}

@media (max-width: 575.98px) {
  .purpose-nav__items {
    margin-right: 0;
    margin-left: 0;
  }
}

.purpose-nav__category {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50%;
  margin-bottom: 30px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (max-width: 991.98px) {
  .purpose-nav__category {
    width: 25%;
    margin-bottom: 20px;
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media (max-width: 767.98px) {
  .purpose-nav__category {
    width: 33.3333333333%;
  }
}

@media (max-width: 575.98px) {
  .purpose-nav__category {
    width: 50%;
    padding-right: 15px;
    padding-left: 15px;
  }
}

.purpose-nav__category__box {
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  border-radius: 6px;
  height: 100%;
  min-height: 110px;
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .purpose-nav__category__box::before {
    content: "";
    padding-top: 100%;
    display: block;
    height: auto;
    min-height: none;
  }
}

.purpose-nav__category__icon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #333;
  width: 110px;
}

@media (max-width: 991.98px) {
  .purpose-nav__category__icon {
    width: 100%;
    cursor: pointer;
  }

  .purpose-nav__category__icon:active {
    opacity: 0.8;
  }
}

.purpose-nav__category__icon img {
  display: block;
  width: 75%;
}

@media (max-width: 991.98px) {
  .purpose-nav__category__icon img {
    width: 60%;
  }
}

#purpose01 .purpose-nav__category__icon {
  background-color: #008FB2;
}

#purpose02 .purpose-nav__category__icon {
  background-color: #00B90F;
}

#purpose03 .purpose-nav__category__icon {
  background-color: #9FB92B;
}

#purpose04 .purpose-nav__category__icon {
  background-color: #AC7100;
}

#purpose05 .purpose-nav__category__icon {
  background-color: #E26868;
}

#purpose06 .purpose-nav__category__icon {
  background-color: #2A73B4;
}

#purpose07 .purpose-nav__category__icon {
  background-color: #35B3CC;
}

#purpose08 .purpose-nav__category__icon {
  background-color: #A75ECC;
}

.purpose-nav__category__icon .icon-text {
  display: none;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
  color: #fff;
  font-family: "ヒラギノ丸ゴ W6 JIS2004", "Hiragino Maru Gothic W6 JIS2004", "M PLUS Rounded 1c";
  font-weight: 500;
  text-align: center;
}

@media (max-width: 991.98px) {
  .purpose-nav__category__icon .icon-text {
    display: block;
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {
  .purpose-nav__category__icon .icon-text {
    display: block;
    font-size: 15px;
  }
}

@media (max-width: 575.98px) {
  .purpose-nav__category__icon .icon-text {
    display: block;
    font-size: 13px;
  }
}

.purpose-nav__category__text {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: calc(100% - 110px);
  padding: 1rem;
}

@media (max-width: 991.98px) {
  .purpose-nav__category__text {
    display: none;
    padding: 0;
  }

  .text-open .purpose-nav__category__text {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 9999;
    overflow: hidden;
    background-color: #fff;
    border-radius: 6px;
    width: 90vw;
    max-width: 640px;
    height: 80vh;
  }

  .text-open .purpose-nav__category__text .close-text {
    position: absolute;
    left: 50%;
    bottom: 16px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    cursor: pointer;
  }

  .text-open .purpose-nav__category__text .close-text svg {
    width: 100%;
    height: 100%;
  }
}

.purpose-nav__category__title {
  margin-bottom: 0.25rem;
  font-family: "ヒラギノ丸ゴ W6 JIS2004", "Hiragino Maru Gothic W6 JIS2004", "M PLUS Rounded 1c";
  font-size: 1.0625rem;
}

@media (max-width: 991.98px) {
  .purpose-nav__category__title {
    margin-bottom: 0;
    padding: 1rem;
    font-size: 1.25rem;
    text-align: center;
  }
}

.purpose-nav__category__links {
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
}

@media (max-width: 991.98px) {
  .purpose-nav__category__links {
    border-top: 1px solid #e8e8ed;
    border-bottom: 1px solid #e8e8ed;
    position: absolute;
    display: block;
    width: 100%;
    height: calc(100% - 8.5rem);
    overflow-y: auto;
    padding: 1rem;
  }
}

.purpose-nav__category__links li {
  margin-bottom: 0.25rem;
  margin-left: 1em;
  font-size: 0.9375rem;
  text-indent: -1em;
  line-height: 1.5;
}

@media (max-width: 991.98px) {
  .purpose-nav__category__links li {
    margin-bottom: 1em;
  }
}

.purpose-nav__category__links li::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 7px;
  border-color: transparent transparent transparent #059d4f;
  margin-right: 0.5em;
}

.purpose-nav__category__links li a {
  margin-right: 1.5em;
  color: inherit;
}

@media (max-width: 991.98px) {
  .purpose-nav__category__links li a {
    margin-right: 0;
  }
}

.purpose-nav__category__links li a:hover {
  color: #e37900;
  text-decoration: none;
}

.purpose-nav__category .text-open-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100vw;
  height: 100vh;
}

.purpose-nav-open {
  overflow: hidden;
  height: 100%;
}

.notice-sections-wrap {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 992px) {
  .notice-sections-wrap {
    max-width: 1140px;
  }
}

@media (min-width: 992px) {
  .notice-sections-wrap {
    padding-right: 25px;
    padding-left: 25px;
  }
}

.notice-sections {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -25px;
  margin-left: -25px;
}

@media (max-width: 991.98px) {
  .notice-sections {
    margin-right: 0;
    margin-left: 0;
  }
}

.notice-sections>* {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50%;
  padding-right: 25px;
  padding-left: 25px;
}

@media (max-width: 991.98px) {
  .notice-sections>* {
    width: 100%;
    max-width: 640px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
  }
}

.home-news__inner {
  background-color: #fff;
  border-radius: 6px;
  padding: 2rem;
}

@media (max-width: 991.98px) {
  .home-news__inner {
    padding: 1rem;
  }
}

/* @media (min-width: 992px) {
  .home-news__inner {
    height: 480px;
  }
}

@media (min-width: 992px) {
  .home-news__items {
    height: 350px;
    overflow-y: auto;
  }
} */

.home-news__inner {
  height: 480px;
}

.home-news__items {
  height: 350px;
  overflow-y: auto;
}

.home-news__item {
  border-bottom: 1px dotted #000;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

@media (max-width: 991.98px) {
  .home-news__item {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
  }
}

.home-news__item:last-child {
  margin-bottom: 0;
}

.home-news__item__labels {
  height: 1.75rem;
}

.home-news__item__date {
  font-size: 0.875rem;
  color: #555;
}

.home-news__item__cat {
  display: inline-block;
  background-color: #999;
  border-radius: 4px;
  width: 8.25rem;
  margin-left: 0.5rem;
  padding: 0.0625rem 0.5em;
  color: #fff;
  font-size: 0.8125rem;
  text-align: center;
}

.home-news__item__cat.notice {
  background-color: #E87474;
}

.home-news__item__cat.bank {
  background-color: #DE9240;
}

.home-news__item__cat.kyosai {
  background-color: #A6A000;
}

.home-news__item__cat.farmer {
  background-color: #825E51;
}

.home-news__item__cat.spa {
  background-color: #56C73A;
}

.home-news__item__cat.welfare {
  background-color: #BD6AD1;
}

.home-news__item__cat.event {
  background-color: #25ccd6;
}

.home-news__item__cat.pr {
  background-color: #516BB5;
}

.home-news__item__title {
  margin-top: 0.25rem;
  margin-bottom: 0;
  font-family: "ヒラギノ丸ゴ W3 JIS2004", "Hiragino Maru Gothic W3 JIS2004", "M PLUS Rounded 1c", sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
}

.home-news__item__title a {
  color: inherit;
}

.home-news__item__title a:hover {
  color: #e37900;
  text-decoration: none;
}

.home-news__link {
  margin: 0;
  padding-top: 1.25rem;
  text-align: center;
}

@media (max-width: 767.98px) {
  .home-news__link {
    padding-top: 1rem;
  }
}

.home-news__link a {
  position: relative;
  display: inline-block;
  background: #fff;
  border: 2px solid #059d4f;
  border-radius: 4px;
  max-width: 100%;
  min-width: 260px;
  padding: 0.625rem 1rem 0.625rem 0.75rem;
  color: inherit;
  font-size: 1.0625rem;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.home-news__link a::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 7px;
  border-color: transparent transparent transparent #059d4f;
  transition: all 0.2s ease-in-out;
}

.home-news__link a:hover {
  background-color: #059d4f;
  color: #fff;
  text-decoration: none;
}

.home-news__link a:hover::after {
  border-left-color: #fff;
}

.home-important__title {
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  font-family: "ヒラギノ丸ゴ W6 JIS2004", "Hiragino Maru Gothic W6 JIS2004", "M PLUS Rounded 1c";
  font-size: 1.875rem;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 767.98px) {
  .home-important__title {
    font-size: 1.5rem;
  }
}

.home-important__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  background-color: #FF6969;
  width: 70px;
  height: 2px;
}

.home-important__inner {
  background-color: #FFEAEA;
  border: 2px solid #FF6969;
  border-radius: 6px;
  padding: 2rem;
}

@media (max-width: 991.98px) {
  .home-important__inner {
    padding: 1rem;
  }
}

/* @media (min-width: 992px) {
  .home-important__inner {
    height: 480px;
  }
}

@media (min-width: 992px) {
  .home-important__items {
    height: 350px;
    overflow-y: auto;
  }
} */

.home-important__inner {
  height: 480px;
}

.home-important__items {
  height: 350px;
  overflow-y: auto;
}

.home-important__item {
  border-bottom: 1px dotted #000;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

@media (max-width: 991.98px) {
  .home-important__item {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
  }
}

.home-important__item:last-child {
  margin-bottom: 0;
}

.home-important__item__date {
  height: 1.75rem;
  font-size: 0.875rem;
  color: #555;
}

.home-important__item__cat {
  display: inline-block;
  background-color: #999;
  border-radius: 4px;
  margin-left: 0.5rem;
  padding: 0.0625rem 0.5em;
  color: #fff;
  font-size: 0.8125rem;
}

.home-important__item__title {
  margin-top: 0.25rem;
  margin-bottom: 0;
  font-family: "ヒラギノ丸ゴ W3 JIS2004", "Hiragino Maru Gothic W3 JIS2004", "M PLUS Rounded 1c", sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
}

.home-important__item__title a {
  color: inherit;
}

.home-important__item__title a:hover {
  color: #059d4f;
  text-decoration: none;
}

.home-important__link {
  margin: 0;
  padding-top: 1.25rem;
  text-align: center;
}

@media (max-width: 767.98px) {
  .home-important__link {
    padding-top: 1rem;
  }
}

.home-important__link a {
  position: relative;
  display: inline-block;
  background: #fff;
  border: 2px solid #FF6969;
  border-radius: 4px;
  max-width: 100%;
  min-width: 260px;
  padding: 0.625rem 1rem 0.625rem 0.75rem;
  color: inherit;
  font-size: 1.0625rem;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.home-important__link a::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 7px;
  border-color: transparent transparent transparent #FF6969;
  transition: all 0.2s ease-in-out;
}

.home-important__link a:hover {
  background-color: #FF6969;
  color: #fff;
  text-decoration: none;
}

.home-important__link a:hover::after {
  border-left-color: #fff;
}

.pr-sections-wrap {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 992px) {
  .pr-sections-wrap {
    max-width: 1140px;
  }
}

@media (min-width: 992px) {
  .pr-sections-wrap {
    padding-right: 25px;
    padding-left: 25px;
  }
}

@media (max-width: 575.98px) {
  .pr-sections-wrap {
    padding-right: 0;
    padding-left: 0;
  }
}

.pr-sections {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -25px;
  margin-left: -25px;
}

@media (max-width: 991.98px) {
  .pr-sections {
    margin-right: 0;
    margin-left: 0;
  }
}

.pr-sections>* {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-right: 25px;
  padding-left: 25px;
}

@media (max-width: 991.98px) {
  .pr-sections>* {
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
  }
}

.section-areanews {
  width: 74%;
}

@media (max-width: 991.98px) {
  .section-areanews {
    width: 100%;
  }
}

.section-booklet {
  width: 26%;
}

@media (max-width: 991.98px) {
  .section-booklet {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .section-booklet {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.home-areanews__item {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.07);
  border-radius: 6px;
  height: auto;
  min-height: 288px;
  padding: 15px;
}

.home-areanews__item a {
  color: inherit;
  display: block;
}

.home-areanews__item a:hover {
  color: inherit;
  text-decoration: none;
}

.home-areanews__item__thumb {
  position: relative;
  width: 100%;
  padding-top: 75%;
}

.home-areanews__item__thumb img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}

a:hover .home-areanews__item__thumb img {
  opacity: 0.85;
}

.home-areanews__item__date {
  margin-top: 0.75rem;
  color: #555;
  font-size: 0.875rem;
}

.home-areanews__item__title {
  margin-top: 0.125rem;
  margin-bottom: 0;
  font-family: "ヒラギノ丸ゴ W3 JIS2004", "Hiragino Maru Gothic W3 JIS2004", "M PLUS Rounded 1c", sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
}

a:hover .home-areanews__item__title {
  color: #e37900;
}

.home-areanews__link {
  margin: 0;
  padding-top: 2rem;
  text-align: center;
}

.home-areanews__link a {
  position: relative;
  display: inline-block;
  background: #fff;
  border: 2px solid #059d4f;
  border-radius: 4px;
  max-width: 100%;
  min-width: 260px;
  padding: 0.625rem 1rem 0.625rem 0.75rem;
  color: inherit;
  font-size: 1.0625rem;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.home-areanews__link a::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 7px;
  border-color: transparent transparent transparent #059d4f;
  transition: all 0.2s ease-in-out;
}

.home-areanews__link a:hover {
  background-color: #059d4f;
  color: #fff;
  text-decoration: none;
}

.home-areanews__link a:hover::after {
  border-left-color: #fff;
}

.home-booklet__item {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.07);
  border-radius: 6px;
  padding: 20px;
}

@media (max-width: 991.98px) {
  .home-booklet__item {
    width: 90%;
    max-width: 360px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
}

.home-booklet__item__thumb {
  margin-bottom: 0.5rem;
}

.home-booklet__item__thumb img {
  max-width: 100%;
  height: auto;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}

.home-booklet__item__thumb a:hover img {
  opacity: 0.85;
}

.home-booklet__item__thumb figcaption {
  margin-top: 0.5rem;
  font-family: "ヒラギノ丸ゴ W6 JIS2004", "Hiragino Maru Gothic W6 JIS2004", "M PLUS Rounded 1c";
  font-size: 1.0625rem;
  font-weight: 500;
}

.home-booklet__item__thumb figcaption small {
  font-size: 0.875rem;
}

.home-booklet__item__link {
  margin-bottom: 0;
  font-size: 1.0625rem;
}

.home-booklet__item__link a {
  display: inline-block;
  color: inherit;
  text-indent: -0.5em;
  padding-left: 0.75em;
}

.home-booklet__item__link a:hover {
  color: #e37900;
  text-decoration: none;
}

.home-booklet__item__link a::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 7px;
  border-color: transparent transparent transparent #059d4f;
  margin-right: 0.25em;
}

.home-pickup {
  padding-right: 5px;
  padding-left: 5px;
}

@media (max-width: 575.98px) {
  .home-pickup {
    padding-right: 0;
    padding-left: 0;
  }
}

.home-pickup__lists {
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  margin-right: -10px;
  margin-left: -10px;
  padding: 0;
}

@media (max-width: 575.98px) {
  .home-pickup__lists {
    margin-right: -5px;
    margin-left: -5px;
  }
}

.home-pickup__lists li {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 25%;
  margin-bottom: 20px;
  padding-right: 10px;
  padding-left: 10px;
  text-align: center;
}

@media (max-width: 991.98px) {
  .home-pickup__lists li {
    width: 33.3333333333%;
  }
}

@media (max-width: 767.98px) {
  .home-pickup__lists li {
    width: 50%;
  }
}

@media (max-width: 575.98px) {
  .home-pickup__lists li {
    margin-bottom: 10px;
    padding-right: 5px;
    padding-left: 5px;
  }
}

.home-pickup__lists li img {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.07);
  max-width: 100%;
  height: auto;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}

.home-pickup__lists li a:hover img {
  opacity: 0.85;
}

.latest-issue {
  padding: 1rem 0;
}

.latest-issue__link a {
  color: inherit;
}

@media (max-width: 767.98px) {
  .latest-issue__link figure {
    width: 80%;
    max-width: 240px;
    margin-right: auto;
    margin-left: auto;
  }
}

.latest-issue__link figure img {
  opacity: 1;
  transition: all 0.2s ease-in-out;
}

.latest-issue__link figure figcaption {
  font-size: 0.875rem;
  text-align: center;
}

.latest-issue__link figure figcaption i {
  color: #b30a00;
  font-size: 1.25rem;
  vertical-align: baseline;
}

.latest-issue__link:hover {
  text-decoration: none;
}

.latest-issue__link:hover img {
  opacity: 0.85;
}

.magazine-lists {
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 1rem;
  margin-right: -15px;
  margin-left: -15px;
  padding: 0;
}

.magazine-lists__item {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 16.6666666667%;
  margin-bottom: 40px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (max-width: 1199.98px) {
  .magazine-lists__item {
    width: 20%;
  }
}

@media (max-width: 991.98px) {
  .magazine-lists__item {
    width: 25%;
  }
}

@media (max-width: 767.98px) {
  .magazine-lists__item {
    width: 33.3333333333%;
  }
}

@media (max-width: 575.98px) {
  .magazine-lists__item {
    width: 50%;
  }
}

.magazine-lists__item figure {
  position: relative;
  margin: 0;
}

.magazine-lists__item figure span {
  line-height: 1.5;
}

.magazine-lists__item figure .title {
  display: block;
  font-family: "ヒラギノ丸ゴ W6 JIS2004", "Hiragino Maru Gothic W6 JIS2004", "M PLUS Rounded 1c";
  font-weight: 700;
}

.magazine-lists__item figure .read {
  display: none;
}

.magazine-lists__item figure figcaption {
  text-align: center;
}

@media (min-width: 992px) {
  .magazine-lists__item figure figcaption {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: all 0.2s ease-in-out;
  }

  .magazine-lists__item figure figcaption span {
    width: 100%;
    color: #fff;
    font-family: "ヒラギノ丸ゴ W6 JIS2004", "Hiragino Maru Gothic W6 JIS2004", "M PLUS Rounded 1c";
    font-weight: 700;
  }

  .magazine-lists__item figure figcaption span.title {
    font-size: 1.0625rem;
  }

  .magazine-lists__item figure figcaption span.read {
    display: block;
    border: 1px solid #fff;
    border-radius: 4px;
    width: 8em;
    margin: 1em auto 0;
    font-size: 0.875rem;
  }
}

.magazine-lists__item a {
  color: inherit;
}

.magazine-lists__item a:hover {
  text-decoration: none;
}

@media (min-width: 992px) {
  .magazine-lists__item a:hover figcaption {
    opacity: 1;
  }
}

.justifyleft {
  text-align: left;
}

.justifyright {
  text-align: right;
}

@media (min-width: 768px) {

  img.justifyleft,
  img.justifyright {
    max-width: calc(50% - 1.5rem);
  }

  img.justifyleft {
    float: left;
    margin-right: 3rem;
    margin-bottom: 1rem;
  }

  img.justifyright {
    float: right;
    margin-left: 3rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 767.98px) {

  img.justifyleft,
  img.justifyright {
    display: block;
    margin: 0.5rem auto;
  }
}

@media (min-width: 768px) {
  .float-img::after {
    display: block;
    clear: both;
    content: "";
  }
}

.underline-title {
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  font-family: "ヒラギノ丸ゴ W6 JIS2004", "Hiragino Maru Gothic W6 JIS2004", "M PLUS Rounded 1c";
  font-size: 1.875rem;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 767.98px) {
  .underline-title {
    font-size: 1.5rem;
  }
}

.underline-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  background-color: #059d4f;
  width: 70px;
  height: 2px;
}

.btn-outline {
  position: relative;
  display: inline-block;
  background: #fff;
  border: 2px solid #059d4f;
  border-radius: 4px;
  max-width: 100%;
  min-width: 260px;
  padding: 0.625rem 1rem 0.625rem 0.75rem;
  color: inherit;
  font-size: 1.0625rem;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.btn-outline::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 7px;
  border-color: transparent transparent transparent #059d4f;
  transition: all 0.2s ease-in-out;
}

.btn-outline:hover {
  background-color: #059d4f;
  color: #fff;
  text-decoration: none;
}

.btn-outline:hover::after {
  border-left-color: #fff;
}

@media print {
  #loarder {
    display: none;
  }

  .global-header {
    display: none;
  }

  .main {
    padding-top: 0;
  }

  .footer {
    display: none;
  }

  .purpose-nav__category {
    width: 50%;
    margin-bottom: 30px;
    padding-right: 15px;
    padding-left: 15px;
  }

  .purpose-nav__category__box::before {
    content: none;
  }

  .purpose-nav__category__icon {
    width: 110px;
  }

  .purpose-nav__category__icon img {
    width: 75%;
  }

  .purpose-nav__category__icon .icon-text {
    display: none;
  }

  .purpose-nav__category__text {
    display: block;
    padding: 1rem;
  }

  .purpose-nav__category__title {
    margin-bottom: 0.25rem;
    padding: 0;
    font-size: 1.0625rem;
    text-align: left;
  }

  .purpose-nav__category__links {
    border-top: none;
    border-bottom: none;
    position: static;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: auto;
    height: auto;
    overflow-y: visible;
    padding: 0;
  }

  .purpose-nav__category__links li {
    margin-bottom: 0.25rem;
  }

  .purpose-nav__category__links li a {
    margin-right: 1.5em;
  }

  .pr-sections>* {
    padding-right: 25px;
    padding-left: 25px;
  }

  .section-areanews {
    width: 74%;
  }

  .section-booklet {
    width: 26%;
  }

  .home-pickup__lists li {
    width: 25%;
  }

}
