@charset "UTF-8";
:root {
  /* color */
  --text-color: #333333;
  --main-color: #65B25A;
  --sub-color:  #f0f0f0; 
  --button02-color: #92cc79;
  --base-color: #F5F5F5;
  --white: #ffffff;
  --step-color01: #C6E0BC;
  --step-color02: #A7D393; 
  --step-color03: #88C66A; 
  --step-color04: #92cc79; 
  /* font */
  --ja: "Noto Sans JP", sans-serif;
  --en: "Oswald", sans-serif;
}

/*----------------------------------------
	reset
----------------------------------------*/
*,
::before,
::after {
  box-sizing: border-box;
}

* {
  font-size: inherit;
  line-height: inherit;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
main,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

header,
footer,
article,
section,
aside,
main,
nav,
menu,
figure,
figcaption {
  display: block;
}

span,
small,
strong,
em,
b,
i {
  color: inherit;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  font-family: var(--ja);
  letter-spacing: 0.07em;
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
}

ul,
ol {
  list-style: none;
}

a {
  color: var(--text-color);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: bottom;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th {
  text-align: left;
}

input,
select {
  vertical-align: middle;
}

input,
textarea {
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

q::before,
q::after {
  display: none;
}

.pc {
  display: none;
}

h1,h2,h3,h4,h5,h6 {
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
}
@media (min-width: 786px) {
  a.phone-link {
    pointer-events: none; /* クリックを無効化 */
    cursor: default; /* 通常のカーソルに変更 */
    text-decoration: none; /* 下線を削除（必要に応じて） */
  }
}
/* -----base----- */
/* 画面幅はみ出し設定用クラス */
.wv-justify {
  margin-inline: calc(50% - 50vw);
}

/* -----header----- */
header {
  width: 100%;
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: #ffffff;
  padding-left: 5%;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
}

.header-wrapper {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .header-logo {
  width: 130px;
  height: auto;
  flex-shrink: 0;
}

@media screen and (min-width: 768px) {
  header {
    height: 70px;
    font-family: var(--en);
  }
  .header-wrapper {
    margin-inline: auto;
  }
  header .header-logo {
    width: 200px;
    height: auto;
    padding-top: 0;
    margin-left: 0;
  }
  header .header-logo a {
    transition: 0.25s;
  }
}
@media screen and (min-width: 768px) and (any-hover: hover) {
  header .header-logo a:hover {
    opacity: 0.8;
  }
}
/* -----hamburger----- */
.hamburger {
  background-color: var(--c_main);
  width: 30px;
  height: 16px;
  border: none;
}

.hamburger__line {
  display: block;
  position: relative;
  width: 100%;
  height: 2px;
  background-color: var(--main-color);
  top: 0;
  left: 0;
  transition: 0.4s;
  padding: 0;
}

.hamburger__line::before,
.hamburger__line::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--main-color);
  transition: 0.4s;
}

.hamburger__line::before {
  top: 7px;
}

.hamburger__line::after {
  bottom: -14px;
}

/* クリック */
.open .hamburger__line {
  background-color: transparent;
}

.open .hamburger__line::before {
  top: 5px;
  transform: rotate(30deg);
}

.open .hamburger__line::after {
  bottom: -5px;
  transform: rotate(-30deg);
}

/* -----global-nav----- */
/* スマホ 768px*/
@media screen and (max-width: 1100px) {
  header{
    padding-right: 5%;
  }
  .gnav {
    position: absolute;
    width: 70%;
    background-color: #fff;
    top: 50px;
    left: 110vw;
    height: 100dvh;
    overflow-y: scroll;
    transition: 0.7s;
    padding-top: 50px;
  }
  .gnav ul {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-inline: auto;
    align-items: center;
  }
  .gnav ul li {
    width: 160px;
    border-bottom: 2px solid var(--main-color);
  }
  .gnav ul li a {
    display: block;
    width: 100%;
    color: var(--color-black, #333);
    padding: 10px 20px;
    font-weight: bold;
    font-family: var(--en);
    letter-spacing: 0.08em;
    text-align: center;
  }
  .gnav ul .contact-btn a {
    background-color: var(--main-color);
    color: var(--white);
    position: relative;
    padding-right: 30px;
  }
  .gnav ul .contact-btn a::before {
    content: "";
    display: block;
    width: 20px;
    height: 16px;
    -webkit-mask-image: url("../img/icon-mail.svg");
    -webkit-mask-size: cover;
    background-color: var(--white);
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    transition: 0.4s;
    -webkit-mask-image: url(../img/icon-mail.svg);
            mask-image: url(../img/icon-mail.svg);
  }
  .gnav ul .contact-btn {
    width: 200px;
    margin-top: 30px;
    border: none;
  }
  .mask {
    top: 50px;
    width: 100%;
    height: calc(100dvh - 50px);
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    left: -100vw;
    transition: 0.6s;
    opacity: 0;
  }
  .open.gnav {
    left: 30%;
  }
  .open.mask {
    left: 0;
    opacity: 1;
  }
}
/* パソコン 768px*/
@media screen and (min-width: 1100px) {
  .hamburger,
  .mask {
    display: none;
  }
  .gnav ul {
    height: 100%;
    display: flex;
    -moz-column-gap: 10px;
         column-gap: 10px;
    align-items: center;
  }
  .gnav ul li a {
    display: block;
    color: var(--color-black, #333);
    font-weight: 700;
    font-size: 16px;
    position: relative;
    padding: 10px;
    letter-spacing: 0.08em;
  }
  .gnav ul li a::after {
    position: absolute;
    left: 0;
    bottom: 5px;
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: var(--main-color);
    transition: 0.4s;
  }
  .gnav ul li a:hover::after {
    width: 100%;
  }
  .gnav ul .contact-btn a {
    display: block;
    background-color: var(--main-color);
    color: var(--white);
    height: 70px;
    font-size: 1rem;
    text-align: center;
    padding-left: clamp(1.25rem, -3.41rem + 9.71vw, 3.75rem);
    padding-right: clamp(1.25rem + 28px, -3.41rem + 9.71vw + 28px, 3.75rem + 28px);
    margin-left: clamp(0.938rem, -2.344rem + 6.84vw, 3.125rem);
    position: relative;
    transition: 0.4s;
    display: flex;
    align-items: center;
  }
  .gnav ul .contact-btn a::before {
    content: "";
    display: block;
    width: 20px;
    height: 16px;
    -webkit-mask-image: url("../img/icon-mail.svg");
    -webkit-mask-size: cover;
    background-color: var(--white);
    position: absolute;
    top: 50%;
    right: clamp(1.25rem, -3.41rem + 9.71vw, 3.75rem);
    transform: translateY(-50%);
    transition: 0.4s;
    -webkit-mask-image: url(../img/icon-mail.svg);
            mask-image: url(../img/icon-mail.svg);
  }
  .gnav ul .contact-btn a:after {
    display: none;
  }
  .gnav ul .contact-btn a:hover {
    background-color: #009043;
    /* color: var(--text-color); */
  }
  /* .gnav ul .contact-btn a:hover:before {
    background-color: var(--text-color);
  } */
}


/* -----container----- */
section {
  padding-block: 50px;
  max-width: calc(1180px + 2 * clamp(1.25rem, -0.539rem + 7.63vw, 3.125rem));
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  section {
    padding-block: 70px;
  }
}
/* -----footer----- */
footer {
  width: 100%;
  height: 100px;
  background-color: var(--main-color);
  padding-top: 40px;
}
footer p {
  text-align: center;
  font-size: clamp(0.75rem, 0.692rem + 0.25vw, 0.875rem);
  color: var(--white);
}

.go-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: pointer;
}
.go-top.show {
  opacity: 1;
  visibility: visible;
  cursor: pointer;
}
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
} 
.footer-bottom a img {
  width: 29px;
  height: 29px; 
}

/* パンクズリスト */

.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  border-radius: 0.25rem;
  font-size: clamp(0.75rem, 0.634rem + 0.5vw, 1rem);
  color: #888;
}
.breadcrumb ul li {
  display: flex;
  align-items: center;
  gap: 5px;
  a{
    text-decoration: underline;
    color: #888;
  }
}
.breadcrumb ul li::after {
  content: ">";
  display: inline-block;
  margin: 0 0.5rem;
}
.breadcrumb ul li:last-child::after {
  display: none;
}

/* -----共通見出し----- */
.common-heading-001 {
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.common-heading-001 h2 {
  font-size: clamp(1.75rem, 1.168rem + 2.48vw, 3rem);
  font-family: var(--en);
  color: var(--main-color);
  text-transform: uppercase;
}
.common-heading-001 p {
  font-size: clamp(0.75rem, 0.634rem + 0.5vw, 1rem);
}

@media screen and (min-width: 768px) {
  .common-heading-001 {
    margin-bottom: 30px;
  }
}
/* -----共通ボタン----- */
/* 共通ボタン01 */
.common-btn01 {
  text-align: center;
}
.common-btn01 a {
  line-height: 1;
  display: inline-block;
  border: 1px solid var(--main-color);
  padding: 15px 64px 15px 40px;
  text-align: center;
  background-color: var(--white);
  color: var(--main-color);
  position: relative;
  letter-spacing: 0.15em;
  font-weight: bold;
  font-size: 16px;
  margin-top: 30px;
}
.common-btn01 a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  width: 14px;
  height: 16px;
  -webkit-mask-image: url(../img/arrow.svg);
          mask-image: url(../img/arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--main-color);
}

@media screen and (min-width: 768px) {
  .common-btn01 a {
    margin-top: 40px;
    font-size: 20px;
  }
}
@media (any-hover: hover) {
  .common-btn01 a {
    transition: 0.4s;
  }
  .common-btn01 a:after {
    transition: 0.4s;
  }
  .common-btn01 a:hover {
    background-color: var(--main-color);
    color: var(--white);
  }
  .common-btn01 a:hover::after {
    background-color: var(--white);
    right: 30px;
  }
}
/* -----その他共通パーツ----- */
.lower-heading-001 {
  min-width: 100%;
  width: 100%;
  height: 130px;
  background: url(../img/heading02.jpg) no-repeat bottom center/cover;
  margin-top: 50px;
  position: relative;
}
.lower-heading-001 hgroup {
  text-align: center;
  letter-spacing: 0.07em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.lower-heading-001 hgroup .lower-heading-inner {
  font-size: clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
  font-weight: normal;
  position: relative;
  padding-bottom: 5px;
}
.lower-heading-001 hgroup .lower-heading-inner:after {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(100px, 20vw, 150px);
  height: 3px;
  background-color: var(--main-color);
  border-radius: 3px;
}
.lower-heading-001 hgroup p {
  font-size: clamp(0.75rem, 0.634rem + 0.5vw, 1rem);
  padding-top: 5px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .lower-heading-001 {
    background: url(../img/heading02.jpg) no-repeat bottom center/cover;
    height: 280px;
    margin-top: 70px;
  }
}
.common-heading-003 {
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: clamp(1.25rem, 1.017rem + 0.99vw, 1.75rem);
  font-weight: 500;
  color: var(--main-color);
}
.common-heading-003::before, .common-heading-003::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--main-color);
  border-radius: 3px;
  margin-top: 2px;
}/*# sourceMappingURL=common.css.map */


/* 動きの部分 */
/* フェードインスライドアップ */

.fade-slide-up {
  opacity: 0;
  transform: translateY(50px); /* 下に30pxずらす */
  transition: 0.8s
}

.fade-slide-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* フェードインスライドアップ・ステップ */
.fade-slide-up02 {
  opacity: 0;
  transform: translateY(30px);
}

.fade-slide-up02.is-visible {
  animation: fadeSlideUp02 0.7s forwards;
}

@keyframes fadeSlideUp02 {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* リキャプチャ非表示 */
.grecaptcha-badge { visibility: hidden; }