/*--------------------------------------------------------------
Foundation
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, b, em, i, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, figure, figcaption,
button, input, textarea, select, i {
  border: 0;
  font-style: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
  letter-spacing: .05em;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 10px;
}

@media screen and (min-width: 768px) and (max-width: 1500px) {
  html {
    font-size: calc(100vw * 10 / 1500);
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: calc(100vw * 10 / 480);
  }
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 1.6rem;
  line-height: 1.5;
  background: #fff;
  color: #333;
  overflow-x: hidden;
  overflow-y: scroll;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul, li {
  list-style: none;
}

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

a:hover,
a:active,
a:focus {
  outline: 0;
}

a {
  backface-visibility: hidden;
  transition: .2s ease-in;
  transition-property: opacity, color, border, background, transform, box-shadow;
  opacity: 1;
  line-height: inherit;
}

img {
  vertical-align: middle;
}

img,
input[type="image"] {
  border: 0;
  height: auto;
  max-width: 100%;
}

input[type="submit"], input[type="button"], button {
  cursor: pointer;
  -webkit-appearance: none;
  border-radius: 0;
  font-size: inherit;
  letter-spacing: inherit;
  background: none;
}

strong {
  font-weight: bold;
}

a {
  text-decoration: none;
}

a:hover,
input[type="image"]:hover {
  opacity: 0.7;
}

main {
  overflow: hidden;
}

.ft_e {
  font-family: "Saira Condensed", sans-serif;
  font-weight: bold;
}

.ft_j {
  font-family: "Jost", sans-serif;
}

/*--------------------------------------------------------------
Component
--------------------------------------------------------------*/
.evt {
  visibility: hidden;
}

.evt.done {
  visibility: visible;
}

.c_anchor {
  position: absolute;
  width: 100%;
  left: 0;
  margin-top: -10rem;
}

@media screen and (max-width: 767px) {
  .c_anchor {
    margin-top: -5rem;
  }
}

.c_ttl {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  position: relative;
  padding-top: 3rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .c_ttl {
    font-size: 2rem;
    padding-top: 2.6rem;
  }
}

.c_ttl:before {
  content: '';
  position: absolute;
  left: 50%;
  translate: -50% 0;
  height: .3rem;
  background: #87c222;
  width: 7.5rem;
  top: 0;
}

@media screen and (max-width: 767px) {
  .c_ttl:before {
    width: 6.25rem;
  }
}

.c_ttl.w {
  color: #fff;
}

.c_ttl.w:before {
  background: #fff;
}

.c_ttl i {
  display: block;
  font-size: 7.2rem;
  margin-bottom: .3em;
}

@media screen and (max-width: 767px) {
  .c_ttl i {
    font-size: 6rem;
  }
}

.c_btn {
  text-align: center;
}

.c_btn a {
  display: inline-block;
  background: linear-gradient(90deg, #e3221a 0%, #fb4f28 13.48%, #ea6840 49.11%, #ed552e 65.07%, #f1421d 85.62%, #f23b17 100%);
  line-height: 5rem;
  width: 22rem;
  text-align: center;
  color: #fff;
  font-weight: 500;
}

.mask {
  overflow: hidden;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.mask.evt {
  visibility: visible;
}

.mask:before {
  content: '';
  background: linear-gradient(90deg, #71c256 0%, #a5d97f 100%);
  position: absolute;
  inset: 0 -1rem;
  z-index: 1;
  transition: 1s;
  transform: scaleX(1);
  transform-origin: 100% 50%;
}

.mask.show:before {
  transform: scaleX(0);
}

.mask.show img {
  transform: none;
  opacity: 1;
}

.mask img {
  transition: 1s;
  transition-delay: .2s;
  transform: scale(1.5);
  opacity: 0;
}

/*--------------------------------------------------------------
Utility
--------------------------------------------------------------*/
.u_wrap {
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .u_inner {
    width: 150rem;
    max-width: calc(100% - 4rem);
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .u_inner {
    margin: 0 2.5rem;
  }
}

.u_switch_img {
  opacity: 1;
}

.u_relative {
  position: relative;
}

@media screen and (min-width: 768px) {
  .is_sp {
    display: none;
  }
  .is_tel {
    pointer-events: none;
    cursor: default;
  }
  .is_tel:hover {
    opacity: 1;
  }
}

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

/*--------------------------------------------------------------
Layout/PageBase
--------------------------------------------------------------*/
#header {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 66;
}

@media screen and (max-width: 767px) {
  #header {
    height: 5rem;
    position: fixed;
    transition: background .5s;
  }
  body.fixed #header {
    background: rgba(0, 0, 0, 0.2);
  }
}

@media screen and (min-width: 768px) {
  #header .h_logo {
    position: absolute;
    top: 3rem;
    left: 4.3rem;
  }
}

@media screen and (max-width: 767px) {
  .h_logo {
    position: absolute;
    width: 21rem;
    line-height: 5rem;
    background: #fff;
    z-index: 1;
    text-align: center;
  }
}

.h_logo img {
  width: 34.1rem;
}

@media screen and (max-width: 767px) {
  .h_logo img {
    width: 17.6rem;
  }
}

.fixed_header {
  position: fixed;
  z-index: 66;
  width: 100%;
  top: 0;
  background: #fff;
  left: 0;
  padding: 0;
  opacity: 0;
  transition: opacity .2s;
  display: flex;
  padding: 0 3rem;
  align-items: center;
  justify-content: space-between;
  height: 10rem;
}

@media screen and (min-width: 1800px) {
  .fixed_header {
    padding: 0 5.8rem 0 4.3rem;
  }
}

.fixed_header .inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4rem;
}

@media screen and (min-width: 1800px) {
  .fixed_header .inner {
    gap: 10rem;
  }
}

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

body.fixed .fixed_header {
  opacity: 1;
}

.h_mail {
  text-align: center;
}

.h_mail a {
  background: linear-gradient(90deg, #e3221a 0%, #fb4f28 13.48%, #ea6840 49.11%, #ed552e 65.07%, #f1421d 85.62%, #f23b17 100%);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  width: 19rem;
  line-height: 4.1rem;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .h_mail a {
    width: 20rem;
    line-height: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .h_nav {
    display: flex;
    justify-content: space-between;
    gap: 2em;
  }
}

@media screen and (min-width: 768px) and (min-width: 1800px) {
  .h_nav {
    gap: 5em;
  }
}

@media screen and (min-width: 768px) {
  .h_nav a {
    display: block;
    font-weight: 500;
  }
  #header .h_nav {
    padding-top: 9.5rem;
    padding-right: 5.8rem;
    gap: 5em;
    justify-content: flex-end;
  }
  #header .h_nav a {
    color: #fff;
  }
}

@media screen and (max-width: 767px) {
  .h_nav {
    border-top: solid .28px #333;
    margin-bottom: 5.3rem;
  }
  .h_nav a {
    background: url(../img/nav_arrow.svg) no-repeat center right/1.3rem;
    font-size: 1.7rem;
    display: block;
    letter-spacing: .3em;
    line-height: 7.2rem;
  }
  .h_nav li {
    border-bottom: solid .28px #333;
  }
}

@media screen and (min-width: 768px) {
  .h_nav2 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3rem;
  }
}

@media screen and (min-width: 768px) and (min-width: 1800px) {
  .h_nav2 {
    gap: 5.4rem;
  }
}

@media screen and (min-width: 768px) {
  #header .h_nav2 {
    gap: 5.4rem;
    position: absolute;
    top: 3rem;
    right: 5.8rem;
  }
}

.fixed_footer {
  position: fixed;
  z-index: 65;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

.fixed_footer ul {
  display: flex;
}

.fixed_footer li {
  width: 33.33%;
}

.fixed_footer a {
  line-height: 4rem;
  color: #fff;
  font-size: 1.4rem;
  display: block;
}

.fixed_footer img {
  width: 2rem;
  margin-right: .5em;
  vertical-align: -.28em;
}

.fixed_footer .tel {
  background: #87c222;
}

.fixed_footer .mail {
  background: linear-gradient(90deg, #e3221a 0%, #fb4f28 13.48%, #ea6840 49.11%, #ed552e 65.07%, #f1421d 85.62%, #f23b17 100%);
}

.fixed_footer .insta {
  color: #333;
  background: #fff;
}

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

@media screen and (min-width: 768px) {
  .h_tel {
    font-size: 2.8rem;
    background: url(../img/h_tel.svg) no-repeat left center/2.3rem;
    padding-left: 1.2em;
    font-weight: 500;
  }
  #header .h_tel {
    color: #fff;
    background-image: url(../img/h_tel_w.svg);
  }
  .h_insta img {
    display: block;
    width: 2.2rem;
  }
  .h_insta a {
    display: block;
  }
  #header .h_insta a {
    background: url(../img/h_insta_w.svg) no-repeat center top/contain;
  }
  #header .h_insta img {
    opacity: 0;
  }
}

@media screen and (max-width: 767px) {
  .h_info {
    margin-top: 4.8rem;
  }
  .h_menu {
    position: absolute;
    right: 1.6rem;
    top: 1.2rem;
    cursor: pointer;
  }
  .h_menu img {
    width: 3rem;
  }
  .h_close {
    top: 1.6rem;
  }
  .h_close img {
    width: 3.1rem;
  }
  #toggle_menu {
    display: none;
    position: fixed;
    overflow-y: auto;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 13.3rem 5.5rem 9.5rem;
  }
  body.open {
    overflow-y: hidden;
  }
  body.open #toggle_menu {
    display: block;
    animation: itemFadeIn 1s;
  }
  body.close #toggle_menu {
    display: none;
    animation: itemFadeOut .8s;
  }
}

#gototop {
  position: absolute;
  bottom: 6.8rem;
  right: 2.4rem;
}

@media screen and (max-width: 767px) {
  #gototop {
    bottom: 6.2rem;
    right: 1.3rem;
  }
}

#gototop a {
  display: block;
}

#gototop img {
  width: 6rem;
}

@keyframes itemFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes itemFadeOut {
  from {
    opacity: 1;
    display: block;
  }
  to {
    opacity: 0;
  }
}

#footer {
  position: relative;
  background: #f0f0f0;
  text-align: center;
  padding: 5.6rem 0 0;
}

@media screen and (max-width: 767px) {
  #footer {
    padding: 8.2rem 0 0;
    margin-bottom: 4rem;
  }
}

.f_logo {
  margin-bottom: 3rem;
}

@media screen and (max-width: 767px) {
  .f_logo {
    margin: 6.3rem 0 1.5rem;
  }
}

.f_logo img {
  width: 25.9rem;
}

@media screen and (max-width: 767px) {
  .f_nav {
    padding: 0 5.5rem;
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .f_info {
    text-align: center;
    line-height: 1.625;
  }
}

.f_copy {
  background: #009333;
  font-weight: 500;
  letter-spacing: .2em;
  font-size: 1.2rem;
  line-height: 5rem;
  color: #fff;
  margin-top: 9rem;
}

@media screen and (max-width: 767px) {
  .f_copy {
    margin-top: 3.8rem;
  }
}

/*--------------------------------------------------------------
Project
--------------------------------------------------------------*/
.top_main {
  position: relative;
  padding-bottom: 5.9rem;
  padding-left: 44rem;
}

@media screen and (max-width: 767px) {
  .top_main {
    padding-left: 5.4rem;
  }
}

.top_main:before, .top_main:after {
  content: '';
  background: #009333;
  height: 63%;
  width: calc(100% - 21rem);
  left: 0;
  bottom: 0;
  position: absolute;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .top_main:before, .top_main:after {
    width: 42.6rem;
    height: 35rem;
  }
}

.top_main:after {
  height: 15rem;
  bottom: -15rem;
}

.top_main p {
  position: absolute;
  font-size: 4.5rem;
  color: #fff;
  border-bottom: solid 1px #f2f2f2;
  bottom: 31%;
  z-index: 1;
  line-height: 1.44;
  font-weight: bold;
  left: 5rem;
  padding-bottom: .4em;
}

@media screen and (max-width: 767px) {
  .top_main p {
    font-size: 2.4rem;
    left: 2.5rem;
  }
}

.top_main .swiper {
  position: relative;
}

.top_main .swiper:before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 3;
}

.top_main .swiper-slide {
  overflow: hidden;
}

.top_main .pager {
  position: absolute;
  left: 2rem;
  bottom: 4rem;
  z-index: 10;
  display: flex;
  gap: .5rem;
}

@media screen and (max-width: 767px) {
  .top_main .pager {
    bottom: 2.8rem;
    left: 2.5rem;
  }
}

.top_main .swiper-pagination-bullet {
  height: .3rem;
  width: 4rem;
  background: #cccccc;
  transition: .5s;
}

.top_main .swiper-pagination-bullet-active {
  width: 6rem;
  background: #fff;
}

.top_greeting {
  margin-top: 5.5rem;
  padding: 9.5rem 0 13rem;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .top_greeting {
    padding: 5rem 0 8rem;
    margin: 0;
  }
}

.top_greeting:before {
  content: '';
  position: absolute;
  width: calc(50% + 79rem);
  height: 30rem;
  right: 0;
  background: #fff;
  top: 0;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .top_greeting:before {
    width: calc(100% - 2.5rem);
  }
}

.top_greeting figure {
  margin: 5rem 0 8.5rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .top_greeting figure {
    margin: 6rem 0;
  }
}

.top_greeting figure:before {
  content: '';
  position: absolute;
  left: 50%;
  translate: -50% 0;
  width: 100vw;
  height: 48rem;
  right: 0;
  background: linear-gradient(135deg, #71c256 0%, #a5d97f 100%);
  bottom: -5rem;
  opacity: .5;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .top_greeting figure:before {
    height: 18.5rem;
    bottom: -3rem;
  }
}

.top_greeting p {
  text-align: center;
  line-height: 1.9375;
  margin-bottom: 5rem;
}

.top_biz p {
  line-height: 1.9375;
}

.top_biz .bg {
  left: 0;
  height: 300%;
  z-index: -1;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}

.top_biz .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}

@media screen and (min-width: 1200px) {
  .top_biz .bg {
    height: 200%;
  }
}

.top_biz .head {
  padding: 8.5rem 0;
  color: #fff;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 767px) {
  .top_biz .head {
    padding: 6rem 0;
  }
}

.top_biz .head p {
  max-width: 101.5rem;
  margin: 1rem auto 4rem;
}

@media screen and (max-width: 767px) {
  .top_biz .head p {
    margin: 3rem auto 4.5rem;
  }
}

.top_biz .c_btn a {
  background: #fff;
  color: #333;
}

.top_biz .ttl {
  font-weight: 500;
  margin-bottom: 4rem;
  font-size: 3.2rem;
}

@media screen and (max-width: 767px) {
  .top_biz .ttl {
    margin-bottom: 2rem;
    font-size: 2.8rem;
  }
}

.top_biz .ttl i {
  display: block;
  text-transform: uppercase;
  font-size: 1.4rem;
  color: #87c222;
  margin-top: .3em;
}

.top_biz li:nth-child(odd) {
  background: linear-gradient(90deg, #71c256 0%, #a5d97f 100%);
}

.top_biz li:nth-child(odd) .ttl i {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .top_biz .desc {
    padding: 4rem 2.5rem 7rem;
  }
}

@media screen and (min-width: 768px) {
  .top_biz li {
    display: flex;
    gap: 7.8rem;
    align-items: center;
  }
  .top_biz li:nth-child(even) {
    flex-direction: row-reverse;
    position: relative;
  }
  .top_biz li:nth-child(even):before {
    content: '';
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    background: url(../img/logo_gray.svg) no-repeat 50%/contain;
    height: 100%;
    width: 58.3rem;
    left: calc(50% - 111.3rem);
    z-index: -1;
  }
  .top_biz figure {
    width: calc(50% + 11rem);
  }
  .top_biz .desc {
    max-width: 56.2rem;
  }
}

.top_bg {
  background: linear-gradient(0deg, rgba(113, 194, 86, 0.5) 0%, rgba(165, 217, 127, 0) 100%);
}

.top_works {
  position: relative;
  padding: 8.5rem 0 7.5rem;
}

@media screen and (min-width: 768px) {
  .top_works {
    padding: 22.5rem 0 12.5rem;
  }
  .top_works .swiper {
    margin-left: 46rem;
  }
  .top_works .left {
    position: absolute;
    width: 46rem;
    margin-top: 5.8rem;
  }
}

.top_works .swiper-slide {
  width: 37.3rem;
  margin-right: 1rem;
}

@media screen and (max-width: 767px) {
  .top_works .swiper-slide {
    width: 37.3rem;
    margin: 0 .5rem;
  }
}

.top_works .swiper-slide img {
  width: 100%;
  aspect-ratio: 747 / 561;
  object-fit: cover;
}

.top_works .swiper-slide small {
  display: block;
  letter-spacing: .025em;
}

.top_works .swiper-slide i {
  display: inline-block;
  background: #87c222;
  color: #fff;
  text-align: center;
  letter-spacing: .025em;
  text-align: center;
  width: 13.5rem;
  margin: .8em 0 1em;
}

.top_works .swiper-slide p {
  letter-spacing: .025em;
  line-height: 1.3125;
  padding: 1.2rem .8rem;
}

.top_works .c_btn {
  margin-top: 7rem;
}

@media screen and (max-width: 767px) {
  .top_works .c_btn {
    margin: 3.5rem 0 5.8rem;
  }
}

.top_com {
  position: relative;
  z-index: 0;
  padding: 12rem 0 6rem;
}

@media screen and (max-width: 767px) {
  .top_com {
    padding: 6rem 0 4.2rem;
  }
}

.top_com:before {
  content: '';
  position: absolute;
  background: #fff;
  width: calc(50% + 60.6rem);
  left: 0;
  top: 0;
  height: 100%;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .top_com:before {
    width: calc(100% - 2.5rem);
  }
}

.top_com dl {
  display: flex;
  flex-wrap: wrap;
  border-top: solid .7px #cacaca;
}

@media screen and (max-width: 767px) {
  .top_com dl {
    margin-right: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .top_com dl {
    width: 59.5rem;
    margin-top: 7.5rem;
  }
}

.top_com dt, .top_com dd {
  border-bottom: solid .7px #cacaca;
  padding: 1.1em 0;
}

.top_com dt {
  width: 9em;
  letter-spacing: .025em;
}

.top_com dd {
  width: calc(100% - 9em);
  letter-spacing: .1em;
}

.top_com figure {
  aspect-ratio: 877 / 681;
  position: relative;
}

@media screen and (max-width: 767px) {
  .top_com figure {
    margin: 4rem -2.5rem 3rem;
  }
}

@media screen and (min-width: 768px) {
  .top_com figure {
    width: 87.7rem;
    position: absolute;
    left: calc(50% - 6.7rem);
    top: 17rem;
  }
}

.top_com figure img {
  width: 57%;
}

.top_com figure .b {
  display: block;
  margin-left: auto;
}

.top_com figure .a {
  position: absolute;
  bottom: 0;
}

.top_map {
  height: 53rem;
}

@media screen and (max-width: 767px) {
  .top_map {
    height: 35rem;
  }
}

.top_map iframe {
  width: 100%;
  height: 100%;
}

.top_news {
  padding: 16rem 0 18rem;
}

@media screen and (max-width: 767px) {
  .top_news {
    padding: 9.3rem 0 12.5rem;
  }
}

.top_news li {
  border-bottom: solid .7px #cacaca;
  padding-bottom: 1.5rem;
}

.top_news li + li {
  margin-top: 1.5rem;
}

@media screen and (max-width: 767px) {
  .top_news li + li {
    margin-top: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .top_news li a {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .top_news li p {
    width: 46.6rem;
  }
}

.top_news li p {
  line-height: 1.3125;
  letter-spacing: .025em;
}

@media screen and (max-width: 767px) {
  .top_news li p {
    margin-top: 2rem;
  }
}

.top_news li small {
  letter-spacing: .025em;
  font-weight: 500;
}

.top_news li i {
  letter-spacing: .025em;
  font-weight: 500;
  color: #fff;
  background: #4d4d4d;
  width: 13.6rem;
  text-align: center;
  border-radius: .1m;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .top_news li i {
    margin-left: .8em;
  }
}

.top_news .c_btn {
  margin-top: 4.5rem;
}

@media screen and (max-width: 767px) {
  .top_news .c_btn {
    margin: 2.2rem 0 7.8rem;
  }
}

@media screen and (min-width: 768px) {
  .top_news .u_inner {
    width: 107.7rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .top_news ul {
    width: 73rem;
  }
}

.top_slide .swiper-wrapper {
  transition-timing-function: linear;
}

.top_slide .swiper-slide {
  width: auto;
}

.top_slide .swiper-slide img {
  height: 35rem;
}

@media screen and (max-width: 767px) {
  .top_slide .swiper-slide img {
    height: 17.5rem;
  }
}

.form {
  padding: 11rem 0 6rem;
  background: linear-gradient(90deg, #71c256 0%, #a5d97f 100%);
}

.form input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}

.form input[readonly], .form textarea[readonly], .form select[readonly] {
  border: none !important;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .form {
    padding: 7.5rem 0 7.2rem;
  }
}

@media screen and (min-width: 768px) {
  .form .u_inner {
    width: 121.1rem;
  }
}

.form.open {
  padding-bottom: 20.7rem;
}

@media screen and (max-width: 767px) {
  .form.open {
    padding-bottom: 9.5rem;
  }
}

.form.open .more {
  display: block;
}

.form .more {
  display: none;
}

.form .c_btn {
  margin-top: 4.5rem;
}

@media screen and (max-width: 767px) {
  .form .c_btn {
    margin-top: 3rem;
  }
}

.form .box {
  background: #fff;
  margin-top: 14.5rem;
  padding: 8.6rem 25.5rem;
}

@media screen and (max-width: 767px) {
  .form .box {
    margin-top: 7.2rem;
    padding: 5.6rem 2.5rem 4.5rem;
  }
}

.form .box + .box {
  margin-top: 10rem;
}

@media screen and (max-width: 767px) {
  .form .box + .box {
    margin-top: 4rem;
  }
}

.form .ttl {
  text-align: center;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: .1em;
}

@media screen and (max-width: 767px) {
  .form .ttl {
    font-size: 2.3rem;
    letter-spacing: .025em;
  }
}

.form .ttl img {
  display: block;
  margin: 0 auto 3rem;
  width: 5rem;
}

@media screen and (max-width: 767px) {
  .form .ttl img {
    margin: 0 auto 2.5rem;
    width: 4.4rem;
  }
}

.form .lead {
  font-size: 1.8rem;
  margin: 6rem 0 5rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .form .lead {
    margin: 3.5rem 0 2.5rem;
    font-size: 1.6rem;
    line-height: 1.625;
  }
}

.form .tel {
  text-align: center;
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 1em;
}

@media screen and (max-width: 767px) {
  .form .tel {
    flex-direction: column;
    font-size: 2.3rem;
    letter-spacing: .025em;
  }
}

.form .tel em {
  color: #fff;
  text-align: center;
  font-size: 2.4rem;
  background: #4d4d4d;
  font-weight: bold;
  border-radius: .1em;
  width: 5.3em;
  line-height: 5.3rem;
}

@media screen and (max-width: 767px) {
  .form .tel em {
    font-size: 1.8rem;
    width: 7.4rem;
    line-height: 2.7rem;
  }
}

.form .tel a {
  font-size: 7rem;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .form .tel a {
    font-size: 3.5rem;
  }
}

.form label.error {
  color: #FF1818;
  font-size: 1.6rem;
}

.form dl {
  margin: 4rem 0 6.6rem;
}

@media screen and (max-width: 767px) {
  .form dl {
    margin: 4.7rem 0 4rem;
  }
}

.form dt, .form dd {
  line-height: 1.325;
}

.form dt {
  margin-bottom: .3em;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .form dt {
    font-size: 1.4rem;
  }
}

.form dt em {
  background: #b70012;
  color: #fff;
  padding: 0 .6em;
  margin-left: .8em;
  position: relative;
  border-radius: .2em;
}

.form dt em.b {
  background: #666666;
}

.form dd {
  margin-bottom: 1em;
}

.form dd input[type="text"], .form dd input[type="email"], .form dd input[type="tel"], .form dd textarea, .form dd select {
  border: solid .5px #333;
  width: 100%;
  padding: .3em 1em;
  border-radius: .2em;
}

@media screen and (max-width: 767px) {
  .form dd input[type="text"], .form dd input[type="email"], .form dd input[type="tel"], .form dd textarea, .form dd select {
    font-size: 16px;
  }
}

.form dd textarea {
  height: 7em;
}

.form .scroll {
  border: solid .5px #333;
  border-radius: .2em;
  padding: 1.2em 1em;
  font-weight: 500;
  max-height: 29.4rem;
  overflow-x: auto;
}

.form .scroll p {
  line-height: 1.625;
}

.form .scroll p + p {
  margin-top: 1.625em;
}

.form .scroll b {
  display: block;
}

.form .doui {
  margin: .4em .8em 0;
  font-weight: 500;
}

.form .doui input {
  width: 1.2em;
  height: 1.2em;
  vertical-align: -.15em;
  margin-right: .6em;
}

.form .doui label {
  display: block;
}

.form .msg {
  text-align: center;
  font-weight: bold;
  margin-top: 3.5rem;
}

@media screen and (max-width: 767px) {
  .form .msg {
    font-size: 1.4rem;
  }
}

.form .btn {
  text-align: center;
}

.form .btn input {
  background: #87c222;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 4rem;
  color: #fff;
  width: 55rem;
}

@media screen and (max-width: 767px) {
  .form .btn input {
    width: 100%;
    line-height: 5.5rem;
  }
}

.low_header {
  padding-left: 44rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .low_header {
    padding-left: 5.4rem;
  }
}

.low_header figure {
  height: 54.5rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .low_header figure {
    height: 40rem;
  }
}

.low_header figure:before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.low_header figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.low_header .ttl {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  height: 23.8rem;
  width: 49rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  background: #009333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 8.3rem;
}

@media screen and (max-width: 767px) {
  .low_header .ttl {
    height: 16rem;
    width: 28.6rem;
    font-size: 1.4rem;
    padding-left: 2.5rem;
  }
}

.low_header .ttl i {
  display: block;
  font-size: 4.8rem;
}

@media screen and (max-width: 767px) {
  .low_header .ttl i {
    font-size: 3.5rem;
  }
}

.low_header .ttl small {
  font-size: 3.8rem;
}

@media screen and (max-width: 767px) {
  .low_header .ttl small {
    font-size: 2.5rem;
  }
}

.low_path {
  display: flex;
  flex-wrap: wrap;
  font-weight: 500;
  font-size: 1.2rem;
  margin: 0 0 6rem;
}

.low_path a {
  color: #87c222;
}

.low_path a:after {
  content: '>';
  margin: 0 1em;
}

.low_nav {
  display: flex;
  justify-content: center;
  margin-bottom: 8rem;
  gap: 4.5rem;
}

@media screen and (max-width: 767px) {
  .low_nav {
    flex-direction: column;
    align-items: center;
    gap: 4.1rem;
    margin-bottom: 6.5rem;
  }
}

.low_nav li {
  width: 30rem;
}

.low_nav a {
  display: block;
  line-height: 5.6rem;
  text-align: center;
  font-size: 1.7rem;
  letter-spacing: 0;
  background: #4d4d4d;
  color: #fff;
  border: solid 1px #4d4d4d;
}

.low_nav .active {
  background: #fff;
  color: #333;
}

.form_thanks {
  background: linear-gradient(0deg, rgba(113, 194, 86, 0.2) 0%, rgba(165, 217, 127, 0) 100%);
  padding: 1rem 0 13rem;
}

.form_thanks dl {
  text-align: center;
  margin-bottom: 7rem;
}

.form_thanks dt {
  font-weight: 500;
  margin-bottom: .5em;
  font-size: 2rem;
}

@media screen and (min-width: 768px) {
  .form_thanks .u_inner {
    width: 122rem;
  }
}

.archive_body {
  background: linear-gradient(0deg, rgba(113, 194, 86, 0.5) 0%, rgba(165, 217, 127, 0) 100%);
  padding: 1rem 0 13rem;
}

@media screen and (min-width: 768px) {
  .archive_body {
    padding: 1rem 0 14rem;
  }
  .archive_body .u_inner {
    width: 135.2rem;
  }
}

.archive_body .pager, .archive_body .nav-links {
  margin-top: 8.7rem;
  display: flex;
  justify-content: center;
  gap: 2em;
}

@media screen and (max-width: 767px) {
  .archive_body .pager, .archive_body .nav-links {
    margin-top: 6.5rem;
    font-size: 2.3rem;
  }
}

.archive_body .pager span, .archive_body .pager a, .archive_body .nav-links span, .archive_body .nav-links a {
  display: block;
  width: 1.5625em;
  line-height: 1.5625;
  text-align: center;
  font-weight: 500;
}

.archive_body .pager a, .archive_body .nav-links a {
  color: #87c222;
  background: #fff;
}

.archive_body .pager span, .archive_body .nav-links span {
  color: #fff;
  background: #87c222;
}

.news_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7.5rem;
}

@media screen and (max-width: 767px) {
  .news_list {
    grid-template-columns: repeat(1, 1fr);
    gap: 6.5rem;
    padding: 0 1.2rem;
  }
}

.news_list li {
  background: #fff;
  border-radius: .2rem;
  box-shadow: 0 0.3rem 1rem rgba(0, 147, 51, 0.3);
}

.news_list a {
  height: 100%;
  padding: 3rem;
  display: block;
}

.news_list img {
  width: 100%;
  aspect-ratio: 340 / 255;
  object-fit: cover;
}

.news_list .ttl {
  font-size: 1.7rem;
  line-height: 1.294;
  font-weight: 500;
  margin: .9em 0 .4em;
}

.news_list .meta {
  display: flex;
  justify-content: space-between;
  border-bottom: solid .75px #333;
  font-size: 1.7rem;
  font-weight: 500;
  padding-bottom: 1rem;
}

.news_list .meta i {
  background: #4d4d4d;
  color: #fff;
  font-size: 1.5rem;
  width: 16.1rem;
  text-align: center;
}

.news_list .txt {
  margin-top: .6em;
  line-height: 1.625;
}

.single_body {
  background: linear-gradient(0deg, rgba(113, 194, 86, 0.2) 0%, rgba(165, 217, 127, 0) 100%);
  padding: 1rem 0 10rem;
}

@media screen and (min-width: 768px) {
  .single_body {
    padding: 1rem 0 16rem;
  }
  .single_body .u_inner {
    width: 122rem;
  }
}

.single_body .pager {
  margin-top: 9rem;
  display: flex;
  justify-content: center;
  font-size: 2rem;
  font-weight: 500;
  gap: 12rem;
}

@media screen and (max-width: 767px) {
  .single_body .pager {
    gap: 6rem;
    margin-top: 6rem;
  }
}

.single_body .pager span, .single_body .pager a {
  display: block;
}

.news_body p {
  font-size: 1.8rem;
  line-height: 1.38;
  margin-bottom: 1.38em;
}

.news_body .ttl {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.125;
}

@media screen and (max-width: 767px) {
  .news_body .ttl {
    line-height: 1.5;
    font-size: 2.3rem;
  }
}

.news_body .head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4.5rem;
  flex-direction: column;
}

.news_body .head p {
  mragin: 0;
}

.news_body .head p i {
  background: #4d4d4d;
  color: #fff;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 3.84rem;
  display: inline-block;
  width: 26.6rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .news_body .head p i {
    font-size: 2rem;
    width: 18.6rem;
  }
}

@media screen and (min-width: 768px) {
  .news_body .head {
    flex-direction: row-reverse;
    margin-bottom: 7rem;
  }
  .news_body .head .ttl {
    width: calc(100% - 33.4rem);
  }
}

.news_body .row {
  display: flex;
  margin-bottom: 2.5rem;
  flex-direction: column;
  gap: 1.7rem;
}

.news_body .row img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .news_body .row {
    margin-bottom: 4.5rem;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
  }
  .news_body .row .large {
    width: 86.6rem;
  }
  .news_body .row .thumb {
    width: 33.4rem;
  }
}

.news_body .large {
  overflow: hidden;
}

.news_body .thumb {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.news_body .thumb img {
  aspect-ratio: 324 / 243;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .news_body .thumb {
    gap: 2rem 1rem;
  }
}

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