@charset "UTF-8";
/*@mixin break-point($point) {
	@if $point == pc {
		@media print, screen and (min-width: $break-point-width) {
			@content;
		}
	} @else if $point == sp {
		@media screen and (max-width: $break-point-width - 1) {
			@content;
		}
	}
}*/
html {
  scrollbar-gutter: stable;
}

body {
  position: relative;
  color: #000;
  min-width: 1120px;
}
@media screen and (max-width: 767px) {
  body {
    min-width: auto;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

ul,
ol {
  padding: 0;
  margin: 0;
}
ul li,
ol li {
  list-style: none;
}

.br_pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .br_pc {
    display: inline;
  }
}

.br_sp {
  display: inline;
}
@media screen and (max-width: 767px) {
  .br_sp {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .pc_only {
    display: none;
  }
}

@media print, screen and (min-width: 768px) {
  .sp_only {
    display: none;
  }
}

:root {
  --c-white: #ffffff;
  --c--main2026: #00612C;
  --c--sub2026: #00EA3B;
  --font-dm: "DM Sans";
}

body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Osaka, Arial, sans-serif;
  line-height: 1.7;
}
body * {
  box-sizing: border-box;
}
body *::before, body *::after {
  box-sizing: border-box;
}

body#main {
  box-sizing: border-box;
}
body#main::before, body#main::after {
  box-sizing: border-box;
}

:focus-visible {
  outline: 2px solid var(--c--main2026);
  outline-offset: 0px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--c--main2026);
  outline-offset: 1px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .header {
    position: absolute;
  }
}
.header .header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  height: 100px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .header .header_inner {
    height: 70px;
    padding: 0 15px;
  }
}
@media screen and (max-width: 1024px) {
  .header .header_logo {
    width: 140px;
  }
}
@media screen and (max-width: 767px) {
  .header .header_logo {
    width: 100px;
  }
}
.header .header_logo a {
  display: block;
  mask-image: url(../media/images/2026/common/company_logo.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: var(--c--main2026);
}
.header .header_logo img {
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .header .header_logo img {
    display: block;
    width: 100%;
    height: auto;
  }
}
.header .header_nav {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .header .header_nav {
    height: 0;
    display: block;
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    transition: 0.3s;
    background: var(--c--main2026);
  }
}
.header .header_nav ul.depth1.header_menu_list {
  display: flex;
  align-items: center;
  gap: 38px;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .header .header_nav ul.depth1.header_menu_list {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .header .header_nav ul.depth1.header_menu_list {
    display: block;
  }
}
.header .header_nav ul.depth1.header_menu_list > li.depth1 {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header .header_nav ul.depth1.header_menu_list > li.depth1 {
    display: block;
    height: auto;
    padding: 0 15px;
  }
}
.header .header_nav ul.depth1.header_menu_list > li.depth1:first-child {
  display: none;
}
@media screen and (max-width: 767px) {
  .header .header_nav ul.depth1.header_menu_list > li.depth1:first-child {
    display: block;
  }
}
@media print, screen and (min-width: 768px) {
  .header .header_nav ul.depth1.header_menu_list > li.depth1:hover ul.submenu {
    visibility: visible;
    opacity: 1;
  }
}
.header .header_nav ul.depth1.header_menu_list > li.depth1 > a {
  position: relative;
  display: block;
  font-family: "DM Sans", "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--c-white);
  text-decoration: none;
  text-transform: uppercase;
  color: #000;
}
@media (min-width: 1025px) and (hover: hover) and (pointer: fine) {
  .header .header_nav ul.depth1.header_menu_list > li.depth1 > a:hover {
    color: var(--c--main2026);
  }
}
@media screen and (max-width: 767px) {
  .header .header_nav ul.depth1.header_menu_list > li.depth1 > a {
    display: block;
    padding: 23px 0;
    font-size: 16px;
    line-height: 1;
    border-bottom: 1px solid #FFFFFF4D;
    color: #fff;
  }
}
@media (min-width: 1025px) and (hover: hover) and (pointer: fine) {
  .header .header_nav ul.depth1.header_menu_list > li.depth1 > a:hover::after {
    left: 0;
    width: 100%;
  }
}
@media print, screen and (min-width: 768px) {
  .header .header_nav ul.depth1.header_menu_list > li.depth1 > a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--c-white);
    transition: width 0.25s ease;
  }
}
@media screen and (max-width: 767px) {
  .header .header_nav ul.depth1.header_menu_list > li.depth1 > a::before, .header .header_nav ul.depth1.header_menu_list > li.depth1 > a::after {
    content: "";
    position: absolute;
    border-top: 1px solid #fff;
    top: 50%;
    right: 0;
    width: 7px;
  }
  .header .header_nav ul.depth1.header_menu_list > li.depth1 > a::before {
    transform: rotate(45deg) translate(-39%, -37%);
  }
  .header .header_nav ul.depth1.header_menu_list > li.depth1 > a::after {
    transform: rotate(-45deg) translate(-39%, 23%);
  }
}
@media screen and (max-width: 767px) {
  .header .header_nav ul.depth1.header_menu_list > li.depth1.has_children > a::before, .header .header_nav ul.depth1.header_menu_list > li.depth1.has_children > a::after {
    content: "";
    position: absolute;
    border-top: 1px solid #fff;
    top: 50%;
    right: 0;
    width: 10px;
    transform: none;
  }
  .header .header_nav ul.depth1.header_menu_list > li.depth1.has_children > a::after {
    transform: rotate(90deg);
  }
  .header .header_nav ul.depth1.header_menu_list > li.depth1.has_children.open > a::after {
    opacity: 0;
  }
}
.header .header_nav ul.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  padding: 0;
  margin: 0;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.18);
  min-width: 190px;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .header .header_nav ul.submenu {
    display: none;
    position: static;
    transform: none;
    visibility: visible;
    opacity: 1;
    background-color: transparent;
    box-shadow: none;
    transition: none;
    min-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .header .header_nav ul.submenu > li {
    border-bottom: 1px solid #FFFFFF4D;
  }
}
.header .header_nav ul.submenu > li a {
  position: relative;
  display: block;
  padding: 10px 15px;
  font-weight: 400;
  font-size: 14px;
  color: var(--c--main2026);
  text-decoration: none;
}
@media (min-width: 1025px) and (hover: hover) and (pointer: fine) {
  .header .header_nav ul.submenu > li a:hover {
    background-color: var(--c--main2026);
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .header .header_nav ul.submenu > li a {
    padding: 15px;
    font-size: 16px;
    color: #fff;
  }
  .header .header_nav ul.submenu > li a::before, .header .header_nav ul.submenu > li a::after {
    content: "";
    position: absolute;
    border-top: 1px solid #fff;
    top: 50%;
    right: 0;
    width: 7px;
  }
  .header .header_nav ul.submenu > li a::before {
    transform: rotate(45deg) translate(-39%, -37%);
  }
  .header .header_nav ul.submenu > li a::after {
    transform: rotate(-45deg) translate(-39%, 23%);
  }
}
.header .header_nav .header_contact {
  margin-left: 31px;
}
@media screen and (max-width: 1024px) {
  .header .header_nav .header_contact {
    width: 140px;
  }
}
@media screen and (max-width: 767px) {
  .header .header_nav .header_contact {
    display: none;
    margin: 20px auto;
    padding-bottom: 30px;
    width: 200px;
  }
}
.header .header_nav .header_contact a {
  display: block;
  padding: 8px;
  background-color: #fff;
  font-family: "DM Sans", "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #000;
  text-align: center;
  min-width: 150px;
  border: 1px solid #000;
  text-transform: uppercase;
  border-radius: 40px;
  text-decoration: none;
}
.header .header_menu_button {
  display: none;
}
@media screen and (max-width: 767px) {
  .header .header_menu_button {
    display: block;
    position: absolute;
    right: 15px;
    top: 24px;
    width: 30px;
    height: 22px;
    padding: 0;
    border: 0;
    background: transparent;
  }
}
.header .header_menu_button::before, .header .header_menu_button::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: transform 0.25s ease, top 0.25s ease;
}
.header .header_menu_button::before {
  top: 0;
  box-shadow: 0 10px 0 #000;
}
.header .header_menu_button::after {
  bottom: 0;
}
.header .header_menu_button.open::before {
  top: 10px;
  box-shadow: none;
  transform: rotate(45deg);
}
.header .header_menu_button.open::after {
  bottom: 10px;
  transform: rotate(-45deg);
}
.header .header_menu_button.open + .header_nav {
  height: auto;
}
.header .spmenu {
  display: none;
}
.header .sp_header_menu {
  display: none;
}
@media screen and (max-width: 767px) {
  .header .sp_header_menu {
    display: block;
    padding-bottom: 20px;
  }
}
.header .sp_header_menu .contact_item {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 20px 8px;
  margin-top: 62px;
  margin-top: 31px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .header .sp_header_menu .contact_item {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .header .sp_header_menu .contact_item {
    margin-top: 42px;
  }
}
.header .sp_header_menu .contact_item > li {
  flex: 0 0 370px;
}
@media screen and (max-width: 767px) {
  .header .sp_header_menu .contact_item > li {
    width: 300px;
    margin: 0 auto;
  }
  .header .sp_header_menu .contact_item > li + li {
    margin-top: 3px;
  }
}
.header .sp_header_menu .contact_item > li.contact_tel {
  flex: 0 0 400px;
}
.header .sp_header_menu .contact_item > li a {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  justify-content: center;
  padding: 30px;
  background-color: #00A756;
  min-height: 130px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  text-decoration: none;
  color: #fff;
}
@media (min-width: 1025px) and (hover: hover) and (pointer: fine) {
  .header .sp_header_menu .contact_item > li a:hover {
    filter: brightness(1.08);
  }
}
@media screen and (max-width: 767px) {
  .header .sp_header_menu .contact_item > li a {
    padding: 10px 15px;
    min-height: 70px;
    font-size: 15px;
  }
}
.header .sp_header_menu .contact_item > li a[href^="tel:"] .item_inner {
  font-size: 35px;
}
@media screen and (max-width: 767px) {
  .header .sp_header_menu .contact_item > li a[href^="tel:"] .item_inner {
    font-size: 25px;
  }
}
.header .sp_header_menu .contact_item > li a[href^="tel:"] .item_inner::before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  width: 24px;
  height: 24px;
  background: url(../media/images/2026/common/icon_tel.svg) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .header .sp_header_menu .contact_item > li a[href^="tel:"] .item_inner::before {
    width: 20px;
    height: 20px;
  }
}
.header .sp_header_menu .contact_item > li a[href^="mailto:"] .item_inner::before {
  content: "";
  display: inline-block;
  margin-right: 12px;
  width: 23px;
  height: 16px;
  background: url(../media/images/2026/common/icon_mail.svg) no-repeat center/cover;
}
.header .sp_header_menu .contact_item > li a .sub_text {
  display: block;
  margin-top: 10px;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  transform: translateY(3px);
}
@media screen and (max-width: 767px) {
  .header .sp_header_menu .contact_item > li a .sub_text {
    margin-top: 5px;
    font-size: 11px;
  }
}
.header .sp_header_menu .contact_item li {
  width: 310px;
}
.header .sp_header_menu .contact_item li a {
  color: #20753A;
  background-color: #fff;
  min-height: 75px;
}
.header .sp_header_menu .contact_item li a .item_inner::before {
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 100%;
  background: var(--c--main2026);
}
.header .sp_header_menu .contact_item li a[href^="tel:"] .item_inner {
  font-size: 22px;
}
.header .sp_header_menu .contact_item li a[href^="tel:"] .item_inner::before {
  width: 20px;
  height: 20px;
  mask-image: url(../media/images/2026/common/icon_tel.svg);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 100%;
  background: var(--c--main2026);
  margin-right: 21px;
  transform: translate(10px, 3px);
}
.header .sp_header_menu .contact_item li a[href^="mailto:"] .item_inner {
  font-size: 15px;
}
.header .sp_header_menu .contact_item li a[href^="mailto:"] .item_inner::before {
  width: 17px;
  height: 12px;
  mask-image: url(../media/images/2026/common/icon_mail.svg);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 100%;
  background: var(--c--main2026);
}
.header .sp_header_menu .copy {
  font-size: 11px;
  text-align: center;
  color: #fff;
}

.footer {
  position: relative;
  margin-top: 120px;
  color: var(--c-white);
  background-color: #232323;
}
.footer .footer_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0 40px;
}
@media screen and (max-width: 1024px) {
  .footer .footer_inner {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer_inner {
    padding: 42px 15px;
  }
}
.footer .footer_top,
.footer .footer_bottom {
  display: flex;
  align-items: flex-start;
  flex-flow: row nowrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer .footer_top,
  .footer .footer_bottom {
    display: block;
  }
}
.footer .footer_logo {
  flex: 0 0 184px;
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .footer .footer_logo {
    display: table;
    margin: 0 auto 23px;
    text-align: center;
  }
  .footer .footer_logo img {
    width: 111px;
    display: block;
    margin: auto;
  }
}
.footer .footer_logo .logo_text {
  display: block;
  margin-top: 5px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .footer .footer_logo .logo_text {
    margin-top: 13px;
    font-size: 15px;
  }
}
.footer .footer_link_list {
  flex: 1 1 auto;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  gap: 40px;
  padding-top: 4px;
}
@media screen and (max-width: 767px) {
  .footer .footer_link_list {
    display: none;
  }
}
.footer .footer_link_list > li a {
  display: block;
  font-family: "DM Sans", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
}
@media (min-width: 1025px) and (hover: hover) and (pointer: fine) {
  .footer .footer_link_list > li a:hover {
    opacity: 0.8;
  }
}
.footer .footer_bottom .footer_address {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer .footer_bottom .footer_address {
    text-align: center;
  }
}
.footer .footer_bottom .address {
  margin-top: 8px;
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.45;
}
.footer .footer_bottom .address .zip {
  padding-right: 1em;
}
@media screen and (max-width: 767px) {
  .footer .footer_bottom .address .zip {
    padding-right: 0.5em;
  }
}
.footer .footer_bottom .address_contact {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  margin-top: 4px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .footer .footer_bottom .address_contact {
    display: block;
  }
}
.footer .footer_bottom .address_contact .address_contact_time {
  position: relative;
  padding-left: 10px;
  margin-left: 10px;
  font-size: 11px;
}
@media screen and (max-width: 767px) {
  .footer .footer_bottom .address_contact .address_contact_time {
    padding-left: 0;
    margin-left: 0;
    font-size: 13px;
  }
}
.footer .footer_bottom .address_contact .address_contact_time::before {
  content: "";
  position: absolute;
  top: 0.3em;
  bottom: 0.3em;
  left: 0;
  width: 1px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .footer .footer_bottom .address_contact .address_contact_time::before {
    display: none;
  }
}
.footer .footer_bottom_items {
  padding-top: 6px;
}
@media screen and (max-width: 767px) {
  .footer .footer_bottom_items {
    padding-top: 0;
    margin-top: 20px;
    text-align: center;
  }
}
.footer .footer_bottom_items .footer_bottom_item a {
  display: block;
  font-weight: 500;
  font-size: 12px;
  text-decoration: none;
  color: #fff;
  text-align: right;
}
@media (min-width: 1025px) and (hover: hover) and (pointer: fine) {
  .footer .footer_bottom_items .footer_bottom_item a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer_bottom_items .footer_bottom_item a {
    text-align: center;
  }
}
.footer .footer_copy {
  margin: 5px 0 0;
  font-size: 11px;
}
@media screen and (max-width: 767px) {
  .footer .footer_copy {
    margin-top: 2px;
  }
}

/*# sourceMappingURL=common_2026.css.map */
