@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  line-height: 1;
  background-color: #fff;
  color: #343434;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.font_min {
  font-family: "Hiragino Mincho ProN", "游明朝", YuMincho, serif;
  color: #000;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.08em;
}

ul,
ol {
  list-style: none;
}

img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
}

table {
  border-collapse: collapse;
  width: 100%;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: inherit;
  border: 0;
  outline: none;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    text-decoration: none;
  }
}
a img {
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  a img:hover {
    opacity: 0.7;
  }
}

.fade_in {
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  -webkit-transition: opacity 0.5s ease-out 0.2s, -webkit-transform 0.8s ease-out 0.2s;
  transition: opacity 0.5s ease-out 0.2s, -webkit-transform 0.8s ease-out 0.2s;
  transition: opacity 0.5s ease-out 0.2s, transform 0.8s ease-out 0.2s;
  transition: opacity 0.5s ease-out 0.2s, transform 0.8s ease-out 0.2s, -webkit-transform 0.8s ease-out 0.2s;
}
@media screen and (max-width: 768px) {
  .fade_in {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
}

.fade_in.show {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (max-width: 768px) {
  .fade_in.show {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.ib {
  display: inline-block;
}

header {
  text-align: center;
  background-color: #fff;
  border-bottom: solid 1px #ccc;
}
@media screen and (max-width: 768px) {
  header {
    position: sticky;
    top: 0;
    z-index: 100;
  }
}
header .page_title {
  padding: 60px 20px 30px;
}
@media screen and (max-width: 960px) {
  header .page_title {
    padding: 40px 20px 20px;
  }
}
@media screen and (max-width: 768px) {
  header .page_title {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
header .page_title .logo {
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  header .page_title .logo {
    padding: 5px 0 0 4vw;
    text-align: left;
  }
}
header .page_title .logo img {
  width: 685px;
  height: auto;
}
@media screen and (max-width: 960px) {
  header .page_title .logo img {
    width: 450px;
  }
}
@media screen and (max-width: 768px) {
  header .page_title .logo img {
    width: min(72vw, 350px);
  }
}
header .page_title .btn_sp_navi {
  display: none;
  height: 60px;
  width: 75px;
  position: relative;
  cursor: pointer;
  z-index: 10;
  background-color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  header .page_title .btn_sp_navi {
    display: block;
  }
}
header .page_title .btn_sp_navi .navi_item {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 30px;
  height: 20px;
  cursor: pointer;
}
header .page_title .btn_sp_navi .navi_item span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 4px;
  display: inline-block;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
header .page_title .btn_sp_navi .navi_item span:nth-of-type(1) {
  top: 0;
}
header .page_title .btn_sp_navi .navi_item span:nth-of-type(2) {
  top: 9px;
}
header .page_title .btn_sp_navi .navi_item span:nth-of-type(3) {
  bottom: 0;
}
header .page_title .btn_sp_navi .navi_item.active span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
          transform: translateY(9px) rotate(-45deg);
}
header .page_title .btn_sp_navi .navi_item.active span:nth-of-type(2) {
  opacity: 0;
}
header .page_title .btn_sp_navi .navi_item.active span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
          transform: translateY(-9px) rotate(45deg);
}
@-webkit-keyframes active-btn-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-btn-bar02 {
  100% {
    height: 0;
  }
}

.navi_bar {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .navi_bar {
    display: none;
  }
}
.navi_bar .h_navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}
.navi_bar .h_navi li.parent:hover ul.child {
  display: block;
}
.navi_bar .h_navi li.parent {
  position: relative;
  display: block;
}
.navi_bar .h_navi li.parent > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 960px) {
  .navi_bar .h_navi li.parent > a {
    padding: 0;
    font-size: 13px;
  }
}
.navi_bar .h_navi li.parent > a span {
  display: block;
  padding: 20px 15px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: #000;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .navi_bar .h_navi li.parent > a span {
    font-size: 13px;
    padding: 20px 10px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .navi_bar .h_navi li.parent > a span:hover {
    color: #fff;
    background-color: #000;
  }
}
.navi_bar .h_navi li.parent ul.child {
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  text-align: center;
  border: solid 1px #aaa;
}
@media screen and (max-width: 960px) {
  .navi_bar .h_navi li.parent ul.child {
    top: 40px;
  }
}
.navi_bar .h_navi li.parent ul.child a {
  display: block;
  color: #000;
  background-color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 0;
  width: 100%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 960px) {
  .navi_bar .h_navi li.parent ul.child a {
    font-size: 11px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .navi_bar .h_navi li.parent ul.child a:hover {
    color: #fff;
    background-color: #000;
  }
}

.gnavi {
  display: none;
  position: absolute;
  top: 60px;
  right: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  -webkit-box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2);
  z-index: 110;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
}
@media screen and (max-width: 768px) {
  .gnavi {
    display: block;
  }
}
.gnavi ul.parent {
  padding: 10px 20px 20px;
  background-color: #fff;
  border-top: solid 1px #ccc;
}
.gnavi ul.parent li {
  margin-top: 10px;
}
.gnavi ul.parent li a {
  padding: 10px 10px;
  font-size: 14px;
  font-weight: 700;
  display: block;
  color: #000;
  text-align: center;
  background-color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.gnavi ul.parent li ul.child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gnavi ul.parent li ul.child li {
  margin-top: 0px;
}
.gnavi ul.parent li ul.child a {
  font-size: 14px;
  padding: 5px 10px;
}
@media screen and (max-width: 768px) {
  .gnavi.is_open {
    max-height: 480px;
  }
}

main {
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  main {
    padding-bottom: 0px;
  }
}
main section {
  padding: 40px 40px 50px;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: solid 1px #ddd;
}
@media screen and (max-width: 768px) {
  main section {
    padding: 30px 15px;
  }
}
main .wrapper {
  max-width: 880px;
  margin: 0 auto;
}
main h2.heading {
  font-weight: 700;
  line-height: 1.5;
  font-size: 18px;
  color: #b79600;
}
@media screen and (max-width: 768px) {
  main h2.heading {
    font-size: 16px;
  }
}
main h2.heading2 {
  font-weight: 700;
  line-height: 1.5;
  font-size: 24px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main h2.heading2 {
    font-size: 20px;
  }
}
main h3.heading {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  padding-top: 40px;
  padding-bottom: 5px;
  border-bottom: solid 1px #ccc;
}
main p.catch {
  padding-top: 40px;
  font-size: 24px;
  line-height: 1.8;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  main p.catch {
    font-size: min(4.8vw, 23px);
    padding-top: 20px;
  }
}
main p.catch strong {
  font-weight: 700;
}
main p.catch span {
  display: inline-block;
}
main p.txt {
  font-size: 16px;
  line-height: 2;
  color: #343434;
}
@media screen and (max-width: 768px) {
  main p.txt {
    font-size: 15px;
  }
}
main p.txt_l {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 700;
  text-align: center;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  main p.txt_l {
    padding-top: 20px;
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  main p.txt_l.ta_l {
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  main p.txt_l br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  main p.txt_l br.keep {
    display: inline;
  }
}
main .ta_r {
  text-align: right;
}

.kv {
  text-align: center;
  margin: 35px 0;
}
@media screen and (max-width: 960px) {
  .kv {
    margin: 10px 0;
  }
}
@media screen and (max-width: 768px) {
  .kv {
    margin: 0;
  }
}

.photo_block {
  text-align: center;
  padding-top: 30px;
}

.jigyou_image {
  text-align: center;
  margin-top: 50px;
}

.okushiga_logo {
  text-align: center;
  border-top: solid 1px #ccc;
  padding: 50px 20px 0;
  margin-top: 50px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .okushiga_logo {
    margin-top: 20px;
    padding: 30px 20px 0;
  }
}

.catch.jigyou {
  padding-top: 10px;
  letter-spacing: 0.04em;
}
.catch.jigyou strong {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.box_daihyou {
  margin-top: 40px;
  border: solid 1px #aaa;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .box_daihyou {
    margin-top: 20px;
    padding: 25px 15px;
  }
}
.box_daihyou h3 {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .box_daihyou h3 {
    font-size: 16px;
  }
}
.box_daihyou p {
  font-size: 15px;
  line-height: 1.8;
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .box_daihyou p {
    font-size: 14px;
  }
}

.shisetsu_fb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 960px) {
  .shisetsu_fb {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 10px 40px;
  }
}
@media screen and (max-width: 768px) {
  .shisetsu_fb {
    display: block;
  }
}
.shisetsu_fb .shisetsu_item {
  padding-top: 15px;
}
.shisetsu_fb .shisetsu_item p {
  font-size: 14px;
  font-weight: 700;
}

ul.list {
  padding-top: 5px;
}
ul.list li {
  font-size: 13px;
  line-height: 1.5;
  padding-top: 3px;
}

.tbl {
  padding-top: 30px;
  text-align: center;
}
.tbl .tbl_inner {
  display: inline-block;
}
.tbl dl + dl {
  padding-top: 10px;
}
.tbl dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
}
.tbl dl dt {
  font-size: 15px;
  font-weight: 700;
  width: 7em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .tbl dl dt {
    width: 5em;
    font-size: 14px;
  }
}
.tbl dl dd {
  font-size: 15px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .tbl dl dd {
    font-size: 14px;
  }
}

.logos_fb {
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.link_hgp {
  padding-top: 20px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}
.link_hgp p {
  padding-top: 20px;
}

.link_bnr {
  padding-top: 20px;
  text-align: center;
}

.link_text {
  padding-top: 20px;
  text-align: center;
}
.link_text p {
  font-size: 15px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .link_text p {
    font-size: 14px;
  }
}

.link_mail {
  padding: 10px 0 30px;
  text-align: center;
}

a.link {
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  a.link:hover {
    color: #009955;
    text-decoration: underline;
  }
}

#scroll_top {
  opacity: 0;
  position: fixed;
  z-index: 20;
  right: 20px;
  bottom: -30px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  #scroll_top {
    right: 10px;
  }
}
#scroll_top span {
  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;
  width: 50px;
  height: 50px;
  color: #000;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  #scroll_top span {
    width: 40px;
    height: 40px;
  }
}
@media (hover: hover) and (pointer: fine) {
  #scroll_top span:hover {
    background-color: rgb(255, 255, 255);
  }
}
#scroll_top[data-js-scroll=true] {
  opacity: 1;
  bottom: 20px;
}
@media screen and (max-width: 640px) {
  #scroll_top[data-js-scroll=true] {
    bottom: 10px;
  }
}

footer {
  color: #fff;
  background-color: #000;
  text-align: center;
  padding: 25px;
}
footer .copyright {
  font-size: clamp(11px, 1.6vw, 16px);
}