@charset "UTF-8";
@media (max-width: 767px) {
  .sp_none {
    display: none;
  }
}

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

/* ----------------------------------------------
common
------------------------------------------------- */
body {
  color: #000000;
  font-size: 16px;
  line-height: 2;
  font-family: "source-han-sans-jp-variable", sans-serif;
  font-variation-settings: "wght" 400;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

a {
  color: #39b04a;
  font-weight: bold;
  text-decoration: underline;
  transition: all 0.5s ease-out;
}
a:hover {
  opacity: 0.6;
}

strong {
  font-weight: bold;
}

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

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

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

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

.bold {
  font-weight: bold;
}

.red {
  color: #f00;
}

.opacity a {
  transition: all 0.5s ease-out;
}

.opacity a:hover {
  opacity: 0.6;
}

.big {
  font-size: 18px;
  line-height: 1.8;
}

/* ----------------------------------------------
information
------------------------------------------------- */
.info-category {
  margin-bottom: 65px;
}
.info-category ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
}
.info-category ul li {
  font-family: "source-han-sans-jp-variable", sans-serif;
  font-variation-settings: "wght" 500;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.2em;
  color: #fff;
  text-align: center;
  min-width: 197px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  cursor: pointer;
}
.info-category ul li:not(:has(a)),
.info-category ul li a {
  padding: 13px 10px;
  align-content: center;
}
.info-category ul li a {
  text-decoration: none;
  transition: all 0.5s ease-out;
}
.info-category ul li a:hover {
  opacity: 0.6;
}
.info-category ul li a {
  display: block;
  width: 100%;
  height: 100%;
  font-weight: 500;
  color: #fff;
}
.info-category ul li.news {
  background-color: #8eaf23;
}
.info-category ul li.blog {
  background-color: #9d8a85;
}
@media (max-width: 999px) {
  .info-category {
    margin-bottom: 50px;
  }
  .info-category ul li {
    min-width: unset;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .info-category {
    margin-bottom: 40px;
  }
  .info-category ul li {
    font-size: 14px;
    border-radius: 10px;
  }
}

#information .contents article {
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
#information .contents article a {
  text-decoration: none;
  transition: all 0.5s ease-out;
}
#information .contents article a:hover {
  opacity: 0.6;
}
#information .contents article time {
  display: inline-block;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
  padding: 0 18px;
  margin-bottom: 7px;
}
#information .contents article .title {
  font-family: "source-han-sans-jp-variable", sans-serif;
  font-variation-settings: "wght" 400;
  font-weight: 100;
  font-size: 18px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 15px;
}
#information .contents article .text {
  font-family: "source-han-sans-jp-variable", sans-serif;
  font-variation-settings: "wght" 400;
  font-weight: 100;
  font-size: 16px;
  line-height: 1.6875;
  color: #000;
}
#information .contents article.news time {
  background-color: #8eaf23;
}
#information .contents article.blog time {
  background-color: #9d8a85;
}
#information .contents article:not(:last-child) {
  margin-bottom: 35px;
}
@media (max-width: 999px) {
  #information .contents article {
    padding-bottom: 15px;
  }
  #information .contents article time {
    padding: 0 10px;
  }
  #information .contents article .title {
    margin-bottom: 10px;
  }
  #information .contents article:not(:last-child) {
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  #information .contents article {
    padding-bottom: 10px;
  }
  #information .contents article time {
    font-size: 12px;
  }
  #information .contents article .title {
    font-size: 16px;
    margin-bottom: 0;
  }
  #information .contents article .text {
    font-size: 14px;
  }
}

/* ----------------------------------------------
header
------------------------------------------------- */
@keyframes m_fixed {
  0% {
    max-height: 0;
  }
  90% {
    overflow: unset;
  }
  100% {
    max-height: 500px;
    overflow: unset;
  }
}
@keyframes remove {
  0% {
    max-height: 0;
  }
  90% {
    overflow: unset;
  }
  100% {
    max-height: 500px;
    overflow: unset;
  }
}
#header a {
  text-decoration: none;
  transition: all 0.5s ease-out;
}
#header a:hover {
  opacity: 0.6;
}
#header .top {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding: 0 0 0 2.5%;
  background-color: #fff;
}
#header .top.m_fixed {
  width: 100%;
  z-index: 2;
  position: fixed;
  animation: m_fixed 2s forwards;
}
#header .logo {
  max-width: 360px;
  margin-top: 24px;
  padding-bottom: 10px;
}
#header .right {
  margin-left: auto;
  padding-bottom: 15px;
  position: relative;
}
#header .right .head {
  display: flex;
  justify-content: end;
  margin-bottom: 12px;
}
#header .right .head .tel {
  padding-top: 5px;
  align-content: center;
}
#header .right .head .tel a {
  display: flex;
  align-items: center;
  -moz-column-gap: 9px;
       column-gap: 9px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 34px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #22b073;
}
#header .right .head .time {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: #000;
  align-content: center;
  padding-top: 8px;
  margin-left: 16px;
}
#header .right .head .contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 9px;
       column-gap: 9px;
  width: 204px;
  height: 60px;
  border-bottom-left-radius: 10px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  line-height: 1.6;
  color: #fff;
  background-color: #22b073;
}
#header .right .bottom {
  display: flex;
  justify-content: end;
  padding-right: 2px;
  -moz-column-gap: 18px;
       column-gap: 18px;
}
#header .right .bottom .suport a {
  display: flex;
  align-items: center;
  width: 202px;
  height: 26px;
  border-radius: 13px/50%;
  background-color: #acc931;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  padding-left: 12px;
}
#header #gnav {
  overflow-x: clip;
  margin-top: -2px;
}
#header #gnav > ul {
  margin-right: -20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
  justify-content: end;
}
#header #gnav > ul > li {
  position: relative;
  align-items: center;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 1.6;
  color: #754c24;
}
#header #gnav > ul > li::after {
  content: "|";
  margin: 0 11px;
}
#header #gnav > ul > li a {
  color: #754c24;
}
#header #gnav > ul > li:last-child::after {
  display: none;
}
#header #gnav > ul > li.parent:hover > ul {
  visibility: visible;
  opacity: 1;
}
#header #gnav > ul > li.parent {
  z-index: 5;
}
#header #gnav > ul > li.parent > ul {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-out;
  display: flex !important;
  flex-wrap: wrap;
  flex-direction: column;
  left: 0;
  position: absolute;
  z-index: 6;
  min-width: 100%;
  background-color: #acc931;
  padding: 10px 10px;
}
#header #gnav > ul > li.parent > ul > li {
  display: flex;
  align-items: center;
}
#header #gnav > ul > li.parent > ul > li a {
  white-space: nowrap;
  display: flex;
  align-items: center;
  transition: all 0.5s ease-out;
}
#header #gnav > ul > li.parent > ul > li a:hover {
  opacity: 0.6;
}
#header #gnav > ul > li.parent > ul > li a {
  color: #fff;
  font-size: 16px;
}
#header #gnav > ul > li.parent > ul > li:last-child a::after {
  display: none;
}
#header #gnav > ul > li.parent > ul > li:not(:last-child) {
  margin-bottom: 2px;
}
@media (max-width: 1200px) {
  #header .top {
    padding-left: 10px;
  }
  #header .logo {
    max-width: 300px;
  }
  #header .right .head .tel a {
    font-size: 28px;
  }
  #header .right .head .time {
    font-size: 12px;
    margin-left: 10px;
  }
  #header .right .head .contact a {
    width: 160px;
    font-size: 18px;
  }
}
@media (max-width: 999px) {
  #header .logo {
    max-width: 255px;
    margin-top: 10px;
    margin-right: 20px;
  }
  #header .right .head .tel {
    padding-top: 0;
  }
  #header .right .head .tel a {
    font-size: 20px;
  }
  #header .right .head .tel a img {
    max-width: 20px;
  }
  #header .right .head .time {
    font-size: 8px;
    margin-left: 5px;
    padding-top: 0;
  }
  #header .right .head .contact a {
    width: 130px;
    font-size: 16px;
    -moz-column-gap: 3px;
         column-gap: 3px;
  }
  #header .right .head .contact a img {
    max-width: 20px;
  }
  #header .right .bottom {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  #header .right .bottom .suport a {
    width: 160px;
    font-size: 16px;
  }
  #header #gnav > ul {
    margin-right: -6px;
  }
  #header #gnav > ul > li {
    font-size: 16px;
  }
  #header #gnav > ul > li::after {
    margin: 0 0px;
  }
  #header #gnav > ul > li.parent > ul {
    margin-top: 10px;
  }
  #header #gnav > ul > li.parent > ul > li {
    margin-bottom: 0;
    /* padding-left: 20px;
    padding-right: 5px; */
    text-align: left;
    border-top: none;
    width: initial;
    height: initial;
  }
  #header #gnav > ul > li.parent > ul > li a {
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: flex-start;
    font-size: 16px;
    line-height: 1.5;
    background-color: initial;
  }
}
@media (min-width: 768px) {
  #header #gnav > ul > li.sp-in {
    display: none;
  }
}
@media (max-width: 767px) {
  #header .top {
    padding-right: 80px;
  }
  #header .logo {
    margin-top: 24px;
    margin-right: 0;
  }
  #header .right .head {
    display: none;
  }
  #header .right .bottom .suport {
    display: none;
  }
  #header #gnav > ul {
    margin-right: 0;
  }
  #header #gnav > ul > li {
    color: #fff;
  }
  #header #gnav > ul > li a {
    color: #fff;
  }
  #header #gnav > ul > li::after {
    display: none;
  }
  #header #gnav > ul > li.parent > ul {
    display: block !important;
    margin-top: 10px;
  }
  #header #gnav > ul > li.parent > ul > li {
    margin-bottom: 0;
    padding-left: 20px;
    padding-right: 5px;
    text-align: left;
    border-top: none;
    width: initial;
    height: initial;
  }
  #header #gnav > ul > li.parent > ul > li a {
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: flex-start;
    font-size: 16px;
    line-height: 1.5;
  }
  #header #gnav > ul > li a .btn {
    width: 30px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 1px solid #fff;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
  }
  #header #gnav > ul > li a .btn::before, #header #gnav > ul > li a .btn::after {
    content: "";
    position: absolute;
    width: calc(100% - 10px);
    height: 1px;
    background-color: #fff;
  }
  #header #gnav > ul > li a .btn::before {
    transform: rotate(90deg);
    transition: all 0.5s ease-out;
  }
  #header #gnav > ul > li ul {
    display: none;
  }
  #header #gnav > ul > li {
    /* ul{
      clip-path: polygon(0 0 , 100% 0, 100% 0, 0 0);
      height: 0;
      @include transition();
    } */
  }
  #header #gnav > ul > li.open a .btn::before {
    transform: unset;
  }
  #header #gnav > ul > li.open {
    /* ul{
      height: auto;
      clip-path: polygon(0 0 , 100% 0, 100% 100%, 0 100%);
    } */
  }
}

/* ----------------------------------------------
footer
------------------------------------------------- */
#footer {
  padding-top: 45px;
}
#footer a {
  text-decoration: none;
  transition: all 0.5s ease-out;
}
#footer a:hover {
  opacity: 0.6;
}
#footer .logo {
  max-width: 548px;
  margin: 0 auto 10px;
  padding: 0 10px;
}
#footer .address {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  line-height: 1.7222222222;
  letter-spacing: 0.05em;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
#footer .tel {
  margin-bottom: -8px;
  padding: 0 10px;
}
#footer .tel a {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 45.24px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #22b073;
}
#footer .inner {
  background: url(../images/f-shapeall.png) no-repeat center bottom/cover;
  justify-items: center;
  padding: 123px 10px 21px;
}
#footer #fnav {
  overflow-x: clip;
  margin-bottom: 44px;
}
#footer #fnav > ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
}
#footer #fnav > ul > li {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 1.6;
  color: #754c24;
}
#footer #fnav > ul > li a {
  color: #754c24;
}
#footer #fnav > ul > li.suport {
  margin-left: 20px;
}
#footer #fnav > ul > li.suport a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 202px;
  height: 26px;
  border-radius: 13px;
  color: #fff;
  background-color: #006837;
}
#footer #fnav > ul > li:not(.suport, :first-child) {
  align-items: center;
}
#footer #fnav > ul > li:not(.suport, :first-child)::before {
  content: "|";
  margin: 0 10px;
}
#footer #fnav > ul > li > ul {
  margin-left: calc(1em + 20px);
}
#footer #fnav > ul > li > ul > li a {
  font-size: 16px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
#footer #fnav > ul > li > ul > li a::before {
  content: "-";
}
#footer .bnr {
  display: flex;
  justify-content: space-between;
  margin-bottom: 44px;
}
#footer .bnr .bnr-l {
  width: 48%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
#footer .bnr .bnr-l img {
  width: 48px;
  height: 48px;
}
#footer .bnr .bnr-r {
  gap: 16px;
  width: 48%;
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
}
#footer .copyright {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  text-align: center;
}
@media (max-width: 999px) {
  #footer {
    padding-top: 30px;
  }
  #footer .tel a {
    font-size: 30px;
  }
  #footer .address {
    font-size: 16px;
  }
  #footer .inner {
    padding: 80px 10px 20px;
  }
  #footer #fnav > ul > li {
    font-size: 16px;
  }
  #footer #fnav > ul > li:not(.suport, :first-child)::before {
    margin: 0 5px;
  }
  #footer #fnav > ul > li.suport {
    margin-left: 26px;
  }
  #footer #fnav > ul > li > ul {
    margin-left: calc(1em + 10px);
  }
  #footer #fnav > ul > li > ul > li a {
    font-size: 14px;
  }
  #footer .copyright {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  #footer {
    padding-top: 20px;
  }
  #footer .tel a {
    font-size: 24px;
  }
  #footer .tel a img {
    max-width: 25px;
  }
  #footer .address {
    margin-bottom: 10px;
    font-size: 14px;
  }
  #footer .inner {
    padding: 60px 10px 10px;
  }
  #footer #fnav {
    margin-bottom: 30px;
  }
  #footer #fnav > ul > li {
    font-size: 14px;
    width: 50%;
  }
  #footer #fnav > ul > li:not(.suport, :first-child)::before {
    margin: 0 0px;
    display: none;
  }
  #footer #fnav > ul > li.suport {
    margin-left: 14px;
    margin-left: 0;
  }
  #footer #fnav > ul > li.suport a {
    width: 140px;
  }
  #footer #fnav > ul > li ul {
    margin-left: 5px;
  }
  #footer .bnr {
    flex-direction: column;
    margin-bottom: 30px;
    row-gap: 20px;
  }
  #footer .bnr .bnr-l {
    width: 100%;
    justify-content: center;
  }
  #footer .bnr .bnr-l img {
    width: 36px;
    height: 36px;
  }
  #footer .bnr .bnr-r {
    width: 100%;
    justify-content: center;
  }
  #footer .copyright {
    font-size: 10px;
  }
}/*# sourceMappingURL=style.css.map */