@charset "utf-8";


/* ---------------------------------------------------------
 * common
** --------------------------------------------------------- */
body { 
  position: relative;
  width: 100%;
  padding-top: 88px;
  margin: 0;
  color: #333;
  font-size: 16px;
  line-height: 1.5;
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
/*  font-optical-sizing: auto;*/
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1px;
}
@media (max-width: 959px) {
}
@media (max-width: 519px) {
  body {
    padding-top: 71px;
  }
}

:root {
  --pri-color: #326D3F;
  --bg-color: #EBF5ED;
}


/* --------------- .wrapper --------------- */
.wrapper {
  max-width: 1220px;
  width: 100%;
  padding: 0 10px;
  margin: 0 auto;
}
.wrapper.n {
  max-width: 1020px;
}
@media (max-width: 959px) {
}
@media (max-width: 519px) {
}


/* --------------- .h2 --------------- */
.h2 {
}
@media (max-width: 959px) {
  .h2 {
  }
}
@media (max-width: 519px) {
  .h2 {
  }
}


/* --------------- .loader --------------- */
.loader_wrapper {
  position: fixed;
  overflow: hidden;
  z-index: 10000;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #ddd;
}
.loader {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
  border-radius: 50%;
  background:
    linear-gradient(0deg ,rgb(0 0 0/50%) 30%,#0000 0 70%,rgb(0 0 0/100%) 0) 50%/8% 100%,
    linear-gradient(90deg,rgb(0 0 0/25%) 30%,#0000 0 70%,rgb(0 0 0/75% ) 0) 50%/100% 8%;
  background-repeat: no-repeat;
  animation: l23 1s infinite steps(12);
}
.loader::before,
.loader::after {
  content: "";
  grid-area: 1/1;
  border-radius: 50%;
  background: inherit;
  opacity: 0.915;
  transform: rotate(30deg);
}
.loader::after {
  opacity: 0.83;
  transform: rotate(60deg);
}
@keyframes l23 {
  100% {transform: rotate(1turn)}
}


/* --------------- .btn --------------- */
.btn {
  position: relative;
  display: inline-block;
  padding: 20px 35px;
  background-color: #326D3F;
  border-radius: 100px;
  color: #fff;
  font-size: 15px;
  line-height: 1;
  transition: all ease 0.3s;
}
.btn.prev::before,
.btn::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  margin-left: 15px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  vertical-align: middle;
  transform: rotate(45deg);
}
.btn:not(.disabled):hover {
  opacity: 0.8;
}
.btn.prev::after {
  display: none;
}
.btn.prev::before {
  margin-left: 0;
  margin-right: 15px;
  border-top: none;
  border-right: none;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.btn.disabled {
  background-color: #ddd;
  color: #999;
}
.btn.disabled.prev::before,
.btn.disabled::after {
  border-color: #999;
}
@media (max-width: 959px) {
}
@media (max-width: 519px) {
}


/* --------------- .tbl --------------- */
.tbl {
  width: 100%;
}
.tbl th,
.tbl td {
  padding: 20px 10px;
  border-bottom: 1px solid #ddd;
}
.tbl th {
  padding-left: 20px;
  vertical-align: middle;
}
.tbl td {
  padding-right: 20px;
}
@media (max-width: 519px) {
  .tbl th,
  .tbl td {
    display: block;
    padding: 20px 0;
  }
  .tbl th {
    padding-bottom: 0;
    margin-bottom: 5px;
    border-bottom: none;
  }
  .tbl td {
    padding-top: 0;
  }
}


/* --------------- .ul .ol --------------- */
.ol,
.ul {
  color: #015290;
}
.ol {
  list-style-type: decimal;
}
.ul {
  list-style-type: disc;
}
.ul li,
.ol li {
  margin-left: 15px;
  line-height: 2;
}
.ul li span,
.ol li span {
  color: #000;
}


/* --------------- dl,dt,dd --------------- */
dl {
}
dt {
}
dd {
}
@media (max-width: 959px) {
}
@media (max-width: 519px) {
}




/* ---------------------------------------------------------
 * header
** --------------------------------------------------------- */
#header {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
  height: 88px;
  background-color: #fff;
  padding-left: 10px;
  padding-right: 30px;
}
@media (max-width: 519px) {
  #header {
    gap: 0;
    height: 71px;
    padding-left: 0;
    padding-right: 10px;
  }
}

/* .h_left */
#header .h_left {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 112px;
  padding: 15px 20px;
  background-color: #fff;
  border-radius: 0 0 35px 0;
  box-shadow: 0px 0px 16px 0px #C1E5CB99;
}
#header .logo {
}
#header .logo img {
}
#header .h1 {
  font-size: 13px;
}
#header .sitename {
  display: block;
  margin-top: 6px;
  color: #326D3F;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 519px) {
  #header .h_left {
    height: fit-content;
  }
  #header .logo img {
    width: 42px;
  }
  #header .sitename {
    margin-top: 0;
    font-size: 18px;
  }
}

/* .h_right */
#header .h_right {
  align-self: center;
}
#header .inner {
  display: flex;
  align-items: center;
  gap: 35px;
}
#header nav {
}
#header ul {
  display: flex;
  gap: 40px;
}
#header li {
}
#header li a {
  position: relative;
  display: block;
  padding: 10px 0;
}
#header li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #326D3F;
  opacity: 0;
  transition: all ease 0.3s;
}
#header li a:hover::after,
#header li a.current::after {
  opacity: 1;
}
#header .line {
  display: flex;
  gap: 15px;
}
#header .txt {
  text-align: center;
  line-height: 1;
}
#header .txt .bg {
  width: fit-content;
  margin-inline: auto;
  padding: 5px 22px;
  background-color: #326D3F;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
}
#header .txt .ttl {
  margin-top: 4px;
  margin-bottom: 4px;
  color: #326D3F;
  font-size: 28px;
  letter-spacing: -2px;
}
#header .txt span {
  font-size: 12px;
}
#header .icon {
}
#header .icon a {
}
#header .icon a img {
}
@media (max-width: 1439px) {
  #header ul {
    gap: 20px;
  }
  #header .txt {
    display: none;
  }
}
@media (max-width: 519px) {
  #header nav {
    position: absolute;
    top: 91px;
    right: -100%;
    width: fit-content;
    transition: all ease 0.3s;
  }
  #header nav.active {
    right: 0;
  }
  #header ul {
    gap: 5px;
    flex-direction: column;
    background-color: #EBF5ED;
    padding: 20px 40px;
    border-radius: 20px 0 0 20px;
  }
  #header li a::after {
    bottom: 5px;
  }
}


/* gnavi_btn */
.gnavi_btn {
  align-items: center;
  align-self: center;
  padding: 20px;
  transition: all 0.4s ease;
  cursor: pointer;
}
.gnavi_btn.open {
  background: rgba(0, 0, 0, 0);
}
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.menu-trigger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 34px;
  height: 24px;
}
.menu-trigger span {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: #000;
}
.gnavi_btn .menu-trigger span:nth-of-type(1) {
  top: 0%;
}
.gnavi_btn .menu-trigger span:nth-of-type(3) {
  bottom: 0%;
  width: 70%;
}
.gnavi_btn.open .menu-trigger span:nth-of-type(1) {
  top: 50%;
  transform-origin: center;
  transform: translateY(-50%) rotate(-45deg);
}
.gnavi_btn.open .menu-trigger span:nth-of-type(2) {
  opacity: 0;
}
.gnavi_btn.open .menu-trigger span:nth-of-type(3) {
  bottom: 50%;
  width: 100%;
  transform-origin: center;
  transform: translateY(50%) rotate(45deg);
}
@media (max-width: 959px) {
}
@media (max-width: 519px) {
  .gnavi_btn {
    padding: 15px;
  }
  .menu-trigger {
    width: 24px;
    height: 20px;
  }
}




/* ---------------------------------------------------------
 * Common contents parts
** --------------------------------------------------------- */
/* --------------- .lower_fv --------------- */
.lower_fv {
  background-image: url("../img/lower_fv_bg.png");
  background-size: cover;
  background-position: center;
  color: #fff;
}
.lower_fv .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 320px;
}
.lower_fv h1,
.lower_fv .page_ttl {
  color: #326D3F;
  font-size: 52px;
  letter-spacing: 15px;
}
@media (max-width: 519px) {
  .lower_fv .wrapper {
    height: 200px;
  }
  .lower_fv .cate {
    font-size: 16px;
  }
  .lower_fv h1,
  .lower_fv .page_ttl {
    font-size: 28px;
    letter-spacing: 5px;
  }
}


/* --------------- .other_pages --------------- */
.other_pages {
  padding-top: 100px;
  padding-bottom: 100px;
}
.other_pages ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.other_pages li {
  width: calc(50% - 15px);
}
.other_pages a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  aspect-ratio: 585 / 260;
  color: #fff;
  font-size: 50px;
  line-height: 1;
  letter-spacing: 3px;
  transition: all ease 0.3s;
}
.other_pages a:hover {
  opacity: 0.8;
}
.other_pages .works {
  background-image: url("../img/bnr_link_bg_works.png");
}
.other_pages .company {
  background-image: url("../img/bnr_link_bg_company.png");
}
.other_pages .reason {
  background-image: url("../img/bnr_link_bg_reason.png");
}
.other_pages .blog {
  background-image: url("../img/bnr_link_bg_blog.png");
}
.other_pages a span {
  display: block;
  margin-top: 10px;
  font-size: 26px;
}
.other_pages a span::after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-top: -5px;
  margin-left: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  vertical-align: middle;
  transform: rotate(45deg);
}
@media (max-width: 959px) {
}
@media (max-width: 519px) {
  .other_pages {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .other_pages ul {
    gap: 20px;
  }
  .other_pages li {
    width: 100%;
  }
  .other_pages a {
    font-size: 26px;
  }
  .other_pages a span {
    font-size: 18px;
  }
}


/* --------------- .scroll --------------- */
.scroll {
  position: relative;
  overflow: auto;
  white-space: nowrap;
}
.scroll::before {
  content: "左右にスクロールできます";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 40px;
  margin: auto;
  padding: 5px 10px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  opacity: 1;
  transition: all 0.3s ease;
  pointer-events: none;
}
.scroll.scrolled::before {
  opacity: 0;
}


/* --------------- .pagination --------------- */
.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}
.pagination > * {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  background-color: #EBF5ED;
  border-radius: 55px;
}
.pagination a {
  font: 30px;
  outline: none;
  transition: all ease 0.3s;
}
.pagination a:hover,
.pagination .active {
  background-color: #326D3F;
  color: #fff;
}
.pagination .prev,
.pagination .next {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination .prev::before,
.pagination .next::before {
  content: "";
  position: relative;
  display: block;
  width: 9px;
  height: 9px;
  transform: rotate(45deg);
}
.pagination .prev::before {
  left: 2px;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
}
.pagination .next::before {
  right: 2px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}
.pagination .prev:not(.disabled):hover::before,
.pagination .next:not(.disabled):hover::before {
  border-color: #fff;
}
.pagination .disabled {
  background-color: #ddd;
}
.pagination .disabled::before,
.pagination .disabled::before {
  border-color: #999;
}
@media (max-width: 959px) {
}
@media (max-width: 519px) {
  .pagination > * {
    width: 40px;
    height: 40px;
  }
}


/* --------------- .not_found --------------- */
/* 記事やイベントが見つからなかった時の表示 */
.not_found {
  padding: 50px 0;
  text-align: center;
  font-size: 20px;
}
@media (max-width: 959px) {
}
@media (max-width: 519px) {
}




/* ---------------------------------------------------------
 * #footer
** --------------------------------------------------------- */
/* --------------- #contact --------------- */
#contact {
  padding-top: 80px;
  padding-bottom: 120px;
  background-image: url("../img/contact_bg.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}
#contact .header {
  text-align: center;
}
#contact h2 {
  font-size: 20px;
}
#contact h2 img {
  display: block;
  margin-top: 20px;
  margin-inline: auto;
  margin-bottom: 10px;
}
#contact .lead {
  margin-top: 10px;
  font-size: 36px;
  letter-spacing: 10px;
}
#contact .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 20px;
  margin-top: 40px;
}
#contact a {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 40px;
  background-color: #326D3F;
  border-radius: 20px;
  transition: all ease 0.3s;
}
#contact a:hover {
  opacity: 0.8;
}
#contact .email {
  justify-content: center;
  grid-column: 1 / 3;
  grid-row: 2 / 3;
  background-color: transparent;
  border: 1px solid;
  font-size: 24px;
}
#contact .email:hover {
  background-color: #326D3F;
}
#contact .email::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(45deg);
}
#contact .img {
}
#contact .img img {
}
#contact .txt {
  font-size: 18px;
}
#contact .txt span {
  display: block;
  font-size: 32px;
  letter-spacing: 0;
}
#contact .tel .txt span {
  font-size: 39px;
}
@media (max-width: 519px) {
  #contact h2 {
    font-size: 16px;
  }
  #contact .lead {
    font-size: 24px;
    letter-spacing: 5px;
  }
  #contact .content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  #contact a {
    gap: 15px;
    padding: 20px;
  }
  #contact .email {
    grid-column: initial;
    grid-row: initial;
    font-size: 18px;
  }
  #contact .img {
    flex-shrink: 0;
  }
  #contact .img img,
  #contact .email img {
    width: 40px;
    flex-shrink: 0;
  }
  #contact .txt {
    font-size: 16px;
  }
  #contact .txt span {
    font-size: 22px;
  }
  #contact .tel .txt span {
    font-size: 26px;
  }
}


/* --------------- #footer --------------- */
#footer {
  padding-top: 50px;
  padding-bottom: 20px;
  background-color: #326D3F;
  color: #fff;
  font-size: 15px;
}
#footer .wrapper {
}
#footer nav {
}
#footer ul {
  display: flex;
  justify-content: center;
  gap: 40px;
}
#footer li {
}
#footer li a {
}
#footer li a:hover {
  text-decoration: underline;
}
#footer p {
  margin-top: 40px;
  line-height: 1.8;
}
#footer p a {
  display: inline-block;
  text-decoration: underline;
}
#footer p a:hover {
  text-decoration: none;
}
#footer p a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
#footer .copy {
  margin-top: 60px;
  font-size: 13px;
  opacity: 0.4;
}
@media (max-width: 519px) {
  #footer ul {
    flex-direction: column;
    gap: 10px;
  }
}

#sp_footer_menu {
  position: fixed;
  z-index: 9999;
  left: 0;
  bottom: 0;
  width: 100%;
}
#sp_footer_menu ul {
  display: flex;
  border-top: 1px solid #fff;
}
#sp_footer_menu li {
  width: 100%;
}
#sp_footer_menu li:not(:first-child) {
  border-left: 1px solid #fff;
}
#sp_footer_menu a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 10px 0;
  background-color: #EBF5ED;
  font-size: 10px;
  line-height: 1;
}
#sp_footer_menu img {
  height: 30px;
  margin-bottom: 3px;
}