@charset "UTF-8";
/********************************************/
/* SP only parts — hidden on PC */
/********************************************/
.sp_menu_trigger,
.sp_nav {
  display: none;
}

/********************************************/
/* header */
/********************************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 9.1rem;
  background-color: #FFF;
  z-index: 100;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}
.header.is-hidden {
  transform: translateY(-100%);
}
.header .header_inner {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 100%;
  max-width: 108rem;
  width: calc(100% - 8rem);
  margin: 0 auto;
}
.header {
  /* ---- logo ---- */
}
.header .header_logo {
  position: relative;
  flex-shrink: 0;
  height: 100%;
}
.header .header_logo::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 0.3rem;
  background-color: #FFDE52;
  z-index: 1;
}
.header .header_logo a {
  display: block;
  height: 100%;
}
.header .header_logo img {
  display: block;
  width: auto;
  height: 100%;
}
@media (max-width: 768px) {
  .header .header_logo img {
    padding-bottom: 0.5rem;
  }
}
.header {
  /* ---- 右側（PC） ---- */
}
.header .header_right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 0.5rem;
  padding-top: 1rem;
  padding-bottom: 1.4rem;
}
@media (max-width: 768px) {
  .header .header_right {
    display: none;
  }
}

/********************************************/
/* header utility nav（上段リンク） */
/********************************************/
.header .header_utility {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.5rem;
}
.header .header_utility .utility_link {
  position: relative;
  padding-left: 1.4rem;
  font-size: 1.3rem;
  color: #333333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .header_utility .utility_link::before {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  width: 0.4rem;
  height: 0.6rem;
  background: url(../img/ico/ico-arrow-r-green.svg) no-repeat center/contain;
  transform: translateY(-50%);
}
.header .header_utility .utility_link:hover {
  color: #78BD36;
}

/********************************************/
/* header main nav（下段ナビ） */
/********************************************/
.header .header_nav .nav_list {
  display: flex;
  align-items: center;
  gap: 3.4rem;
  padding-bottom: 1.1rem;
}
.header .header_nav .nav_item {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.header .header_nav .nav_link {
  display: block;
  color: #333333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .header_nav .nav_link:hover {
  color: #78BD36;
}
.header .header_nav .nav_item_contact {
  margin-left: 0.6rem;
}
.header .header_nav .nav_link_contact {
  display: inline-block;
  padding: 0.8rem 2.4rem;
  color: #FFF;
  background-color: #78BD36;
  border-radius: 2rem;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .header_nav .nav_link_contact:hover {
  background-color: rgb(99.8518518519, 157.2666666667, 44.9333333333);
}
.header .header_nav {
  /* ---- ドロップダウン ---- */
}
.header .header_nav .nav_item_has_child {
  position: relative;
}
.header .header_nav .nav_item_has_child:hover .nav_dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.header .header_nav .nav_item_has_child.nav_item_contact:hover .nav_dropdown_right {
  transform: translateY(0);
}
.header .header_nav .nav_dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 21rem;
  padding: 1.6rem;
  background-color: #78BD36;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(0.8rem);
  transition: all 0.3s;
  z-index: 10;
}
.header .header_nav .nav_dropdown::before {
  position: absolute;
  bottom: 100%;
  left: 0;
  content: "";
  width: 100%;
  height: 1.2rem;
}
.header .header_nav .nav_dropdown_right {
  left: auto;
  right: 0;
  transform: translateY(0.8rem);
}
.header .header_nav .nav_dropdown_list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.header .header_nav .nav_dropdown_link {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
  white-space: nowrap;
  color: #FFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .header_nav .nav_dropdown_link::before {
  content: "";
  flex-shrink: 0;
  width: 0.8rem;
  height: 0.8rem;
  line-height: 1;
  background: url(../img/ico/ico-arrow-r-white.svg) no-repeat center/contain;
}
.header .header_nav .nav_dropdown_link:hover {
  opacity: 0.75;
}

/********************************************/
/* SP buttons（contact / hamburger） */
/********************************************/
.header .header_sp_btns {
  display: none;
}
@media (max-width: 768px) {
  .header .header_sp_btns {
    display: flex;
    flex-shrink: 0;
    height: 100%;
  }
}

.header .header_contact_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7rem;
  height: 100%;
  background-color: #FFF;
}
.header .header_contact_btn::before {
  content: "";
  width: 3.2rem;
  height: 2.6rem;
  background: url(../img/ico/ico-mail-green.svg) no-repeat center/contain;
}

/********************************************/
/* SP (max-width: 768px) */
/********************************************/
@media (max-width: 768px) {
  body.fixed {
    position: fixed;
    width: 100%;
  }
  .header {
    height: 7.4rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  }
  .header::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 0.4rem;
    background-color: #FFDE52;
    z-index: 2;
  }
  .header .header_inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-top: 0.4rem;
    background-color: #78BD36;
  }
  .header .header_logo::before {
    display: none;
  }
  /* hamburger btn */
  .sp_menu_trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 7rem;
    height: 100%;
    background-color: #78BD36;
    border: none;
    cursor: pointer;
    z-index: 110;
  }
  .sp_menu_trigger span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2.6rem;
    height: 2px;
    background-color: #FFF;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .sp_menu_trigger span:nth-of-type(1) {
    transform: translate(-50%, -50%) translateY(-0.7rem);
  }
  .sp_menu_trigger span:nth-of-type(2) {
    transform: translate(-50%, -50%);
  }
  .sp_menu_trigger span:nth-of-type(3) {
    transform: translate(-50%, -50%) translateY(0.7rem);
  }
  .sp_menu_trigger.active span:nth-of-type(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .sp_menu_trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .sp_menu_trigger.active span:nth-of-type(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  /* ==================================== */
  /* SP nav overlay（グリーンメニュー） */
  /* ==================================== */
  .sp_nav {
    display: block;
    position: fixed;
    top: 7.4rem;
    left: 0;
    width: 100%;
    height: calc(100vh - 7.4rem);
    background-color: #78BD36;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1rem);
    transition: all 0.3s;
  }
  .sp_nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  /* ---- アコーディオン ---- */
  .sp_nav .nav_acc {
    border-bottom: 1px solid #9acd68;
  }
  .sp_nav .nav_acc:first-child {
    border-top: 1px solid #9acd68;
  }
  .sp_nav .nav_ttl {
    position: relative;
    padding: 1.9rem 5rem 1.9rem 2rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFF;
    cursor: pointer;
  }
  .sp_nav .nav_ttl::before, .sp_nav .nav_ttl::after {
    position: absolute;
    right: 2rem;
    top: 50%;
    content: "";
    width: 1.4rem;
    height: 2px;
    background-color: #FFF;
  }
  .sp_nav .nav_ttl::after {
    transform: rotate(90deg);
    transition: opacity 0.3s;
  }
  .sp_nav .nav_ttl.active::after {
    opacity: 0;
  }
  .sp_nav .nav_sub {
    display: none;
    background-color: #FFF;
  }
  .sp_nav .nav_sub .nav_sub_link {
    position: relative;
    display: block;
    padding: 1.5rem 4rem 1.5rem 2rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #78BD36;
  }
  .sp_nav .nav_sub .nav_sub_link::after {
    position: absolute;
    right: 2rem;
    top: 50%;
    content: "";
    width: 0.6rem;
    height: 1rem;
    background: url(../img/ico/ico-arrow-r-green.svg) no-repeat center/contain;
    transform: translateY(-50%);
  }
  .sp_nav .nav_sub li + li .nav_sub_link {
    border-top: 1px solid #78BD36;
  }
  /* ---- 2カラム シンプルリンク ---- */
  .sp_nav .sp_links {
    display: flex;
    flex-wrap: wrap;
  }
  .sp_nav .sp_links > li {
    width: 50%;
    box-sizing: border-box;
    border-bottom: 1px solid #9acd68;
  }
  .sp_nav .sp_links > li:nth-child(odd) {
    border-right: 1px solid #9acd68;
  }
  .sp_nav .sp_link {
    position: relative;
    display: block;
    padding: 1.9rem 4rem 1.9rem 2rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFF;
  }
  .sp_nav .sp_link::after {
    position: absolute;
    right: 1.6rem;
    top: 50%;
    content: "";
    width: 0.6rem;
    height: 1.2rem;
    background: url(../img/ico/ico-arrow-r-white.svg) no-repeat center/contain;
    transform: translateY(-50%);
  }
  /* ---- 店舗情報 ---- */
  .sp_nav .sp_shop {
    padding: 3rem 2rem 4rem;
  }
  .sp_nav .sp_shop_ttl {
    position: relative;
    margin-bottom: 1.6rem;
    padding-right: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFF;
    white-space: nowrap;
  }
  .sp_nav .sp_shop_ttl::after {
    position: absolute;
    left: 10rem;
    top: 50%;
    content: "";
    width: calc(100% - 10rem);
    height: 1px;
    background-color: #FFF;
  }
  .sp_nav .sp_shop_cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .sp_nav .sp_shop_card a {
    display: block;
  }
  .sp_nav .sp_shop_img img {
    display: block;
    width: 100%;
    height: auto;
  }
  .sp_nav .sp_shop_label {
    display: block;
    margin-top: 1rem;
    text-align: center;
    font-size: 1.4rem;
    color: #FFF;
  }
  .sp_nav .sp_shop_label_ext::after {
    content: "";
    display: inline-block;
    width: 1.2rem;
    height: 1.1rem;
    margin-left: 0.6rem;
    background: url(../img/ico/ico-newtab.svg) no-repeat center/contain;
  }
  /* ---- footer links ---- */
  .sp_nav .sp_foot_links {
    display: flex;
    border-bottom: 1px solid #9acd68;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .sp_nav .sp_foot_links {
    margin: 0 2rem 4rem;
  }
}
@media (max-width: 768px) {
  .sp_nav .sp_foot_links li {
    position: relative;
    flex: 1;
    text-align: center;
  }
  .sp_nav .sp_foot_links li:first-child:not(:last-child):after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    display: block;
    margin: auto;
    background-color: #9acd68;
    width: 1px;
    height: 80%;
  }
  .sp_nav .sp_foot_links a {
    display: block;
    padding: 2rem 1rem;
    font-size: 1.2rem;
    color: #FFF;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .sp_nav .sp_foot_links a {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  /* ---- SNS ---- */
  .sp_nav .sp_sns {
    display: flex;
    justify-content: center;
    gap: 2.4rem;
    padding: 1rem 2rem 6rem;
  }
  .sp_nav .sp_sns img {
    display: block;
    width: 2.8rem;
    height: 2.8rem;
  }
}
/********************************************/
/* footer */
/********************************************/
.footer {
  background-color: #78BD36;
  color: #FFF;
}

.footer .footer_inner {
  max-width: 108rem;
  width: calc(100% - 8rem);
  margin: 0 auto;
  padding: 0 0 8rem;
}

/* ---- logo + 区切り線 ---- */
.footer .footer_head {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer .footer_logo {
  flex-shrink: 0;
  display: block;
}
.footer .footer_logo img {
  display: block;
  width: 28rem;
  height: auto;
}

.footer .footer_line {
  flex: 1;
  height: 1px;
  background-color: #FFF;
}

/* ---- ナビ ---- */
.footer .footer_nav {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}

.footer .footer_group_left {
  display: flex;
  width: 40%;
  gap: 3rem;
}
@media (max-width: 768px) {
  .footer .footer_group_left {
    width: 100%;
  }
}

.footer .footer_group_right {
  width: 60%;
}
@media (max-width: 768px) {
  .footer .footer_group_right {
    width: 100%;
  }
}

.footer .footer_group_left .footer_col {
  width: 50%;
}
@media (max-width: 768px) {
  .footer .footer_group_left .footer_col {
    width: 100%;
  }
}

.footer .footer_cols {
  display: flex;
  gap: 4rem;
}

.footer .footer_ttl,
.footer .footer_link {
  position: relative;
  display: inline-block;
  padding-left: 1.4rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer .footer_ttl::before,
.footer .footer_link::before {
  position: absolute;
  left: 0;
  top: 0.57em;
  content: "";
  width: 1rem;
  height: 1.1rem;
  background: url(../img/ico/ico-arrow-r-yellow.svg) no-repeat center/contain;
}
.footer .footer_ttl:hover,
.footer .footer_link:hover {
  opacity: 0.75;
}

.footer .footer_ttl {
  margin-bottom: 1.6rem;
}

.footer .footer_sub {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 1.6rem;
}
.footer .footer_sub li {
  position: relative;
  padding-left: 1.8rem;
  font-size: 1.3rem;
}
.footer .footer_sub li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "・";
  color: #FFDE52;
}
.footer .footer_sub a {
  color: #FFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer .footer_sub a:hover {
  opacity: 0.75;
}

.footer .footer_links {
  column-count: 2;
  column-gap: 6rem;
}
.footer .footer_links li {
  break-inside: avoid;
  margin-bottom: 1.6rem;
}

/* ---- 店舗情報 ---- */
.footer .footer_shop {
  margin-top: 4rem;
  margin-left: auto;
  max-width: 62rem;
}

.footer .footer_shop_ttl {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.6rem;
  font-size: 1.6rem;
  font-weight: 700;
  white-space: nowrap;
}
.footer .footer_shop_ttl::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #FFF;
}

.footer .footer_shop_cards {
  display: flex;
  gap: 2rem;
}

.footer .footer_shop_card {
  flex: 1;
}

.footer .footer_shop_card a {
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer .footer_shop_card a:hover {
  opacity: 0.85;
}

.footer .footer_shop_img img {
  display: block;
  width: 100%;
  height: auto;
}

.footer .footer_shop_label {
  display: block;
  margin-top: 0.8rem;
  text-align: center;
  font-size: 1.1rem;
  color: #FFF;
}
@media (max-width: 768px) {
  .footer .footer_shop_label {
    font-size: 1.3rem;
  }
}

.footer .footer_shop_label_ext::after {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 1.1rem;
  margin-left: 0.6rem;
  background: url(../img/ico/ico-newtab.svg) no-repeat center/contain;
}

/* ---- 下部 ---- */
.footer .footer_bottom {
  margin-top: 4rem;
  padding-top: 2.5rem;
}

/* SNS ＋ コピーライト（横並び・下段） */
.footer .footer_bottom_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer .footer_sns {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.footer .footer_sns img {
  display: block;
  width: 2.8rem;
  height: 2.8rem;
}

/* 個人情報保護方針・サイトマップ（上段） */
footer .inner_border {
  position: relative;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  footer .inner_border {
    margin: 0 2rem;
  }
}
footer .inner_border:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  margin: auto;
  width: 100%;
  height: 1px;
  background-color: #FFF;
  z-index: 1;
}
@media (max-width: 768px) {
  footer .inner_border:before {
    content: none;
  }
}

.footer .footer_links2 {
  position: relative;
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 2.4rem;
  padding-left: 4rem;
  margin-left: auto;
  width: fit-content;
  background-color: #78BD36;
  z-index: 2;
}
@media (max-width: 768px) {
  .footer .footer_links2 {
    width: 100%;
    padding-left: 0;
  }
}
.footer .footer_links2 a {
  position: relative;
  display: inline-block;
  padding-left: 1.2rem;
  font-size: 1.3rem;
  color: #FFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer .footer_links2 a::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  margin: auto 0;
  background: url(../img/ico/ico-arrow-r-yellow.svg) no-repeat center/contain;
}
@media (max-width: 768px) {
  .footer .footer_links2 a::before {
    content: none;
  }
}
.footer .footer_links2 a:hover {
  opacity: 0.75;
}

.footer .footer_copy {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.04em;
}

/********************************************/
/* footer SP (max-width: 768px) */
/********************************************/
@media (max-width: 768px) {
  .footer .footer_inner {
    width: 100%;
    max-width: none;
    padding: 0;
  }
  /* logo 中央 */
  .footer .footer_head {
    justify-content: center;
    margin-bottom: 0;
    padding: 0 2rem;
  }
  .footer .footer_line {
    display: none;
  }
  /* nav → アコーディオン（全て1カラム） */
  .footer .footer_nav {
    display: block;
  }
  .footer .footer_group_left,
  .footer .footer_cols {
    display: block;
    gap: 0;
  }
  .footer .footer_col {
    border-bottom: 1px solid #9acd68;
  }
  .footer .footer_col:first-child {
    border-top: 1px solid #9acd68;
  }
  .footer .footer_ttl {
    display: block;
    position: relative;
    margin: 0;
    padding: 1.9rem 5rem 1.9rem 2rem;
    font-size: 1.6rem;
    /* PCの黄矢印は非表示 */
  }
  .footer .footer_ttl::before {
    content: none;
  }
  /* +/- アイコン */
  .footer .footer_acc_ttl::after {
    position: absolute;
    right: 2rem;
    top: 50%;
    content: "";
    width: 1.2rem;
    height: 1.2rem;
    transform: translateY(-50%);
    background: url(../img/ico/ico-plus.svg) no-repeat center/contain;
  }
  .footer .footer_acc_ttl.active::after {
    background-image: url(../img/ico/ico-minus.svg);
  }
  .footer .footer_sub {
    display: none;
    gap: 0;
    background-color: #FFF;
    padding-left: 0;
  }
  .footer .footer_sub li {
    padding-left: 0;
    font-size: inherit;
  }
  .footer .footer_sub li::before {
    content: none;
  }
  .footer .footer_sub li + li a {
    border-top: 1px solid #78BD36;
  }
  .footer .footer_sub a {
    position: relative;
    display: block;
    padding: 1.5rem 4rem 1.5rem 2rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #78BD36;
  }
  .footer .footer_sub a::after {
    position: absolute;
    right: 2rem;
    top: 50%;
    content: "";
    width: 0.6rem;
    height: 1rem;
    background: url(../img/ico/ico-arrow-r-green.svg) no-repeat center/contain;
    transform: translateY(-50%);
  }
  /* 2カラム シンプルリンク */
  .footer .footer_col_links {
    border-bottom: none;
  }
  .footer .footer_links {
    column-count: auto;
    column-gap: 0;
    display: flex;
    flex-wrap: wrap;
  }
  .footer .footer_links > li {
    width: 50%;
    margin: 0;
    box-sizing: border-box;
    border-bottom: 1px solid #9acd68;
  }
  .footer .footer_links > li:nth-child(odd) {
    border-right: 1px solid #9acd68;
  }
  .footer .footer_link {
    display: block;
    padding: 1.9rem 4rem 1.9rem 2rem;
    font-size: 1.6rem;
  }
  .footer .footer_link::before {
    content: none;
  }
  .footer .footer_link::after {
    position: absolute;
    right: 1.6rem;
    top: 50%;
    content: "";
    width: 0.6rem;
    height: 1.2rem;
    background: url(../img/ico/ico-arrow-r-white.svg) no-repeat center/contain;
    transform: translateY(-50%);
  }
  /* 店舗情報 */
  .footer .footer_shop {
    margin: 0;
    max-width: none;
    padding: 3rem 2rem;
  }
  .footer .footer_shop_cards {
    flex-direction: column;
    gap: 2rem;
  }
  /* 下部 */
  .footer .footer_bottom {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
  .footer .footer_bottom_row {
    flex-direction: column;
    align-items: stretch;
  }
  .footer .footer_links2 {
    gap: 0;
    margin-bottom: 0;
    border-bottom: 1px solid #9acd68;
  }
  .footer .footer_links2 li {
    position: relative;
    flex: 1;
    text-align: center;
  }
  .footer .footer_links2 li:first-child:not(:last-child):after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    display: block;
    margin: auto;
    background-color: #9acd68;
    width: 1px;
    height: 80%;
  }
  .footer .footer_links2 a {
    display: block;
    padding: 2rem 1rem;
  }
  .footer .footer_sns {
    justify-content: center;
    padding: 4rem 2rem 5.5rem;
  }
  .footer .footer_copy {
    padding: 0 2rem 3rem;
    text-align: center;
  }
}
/********************************************/
/* CTA（お問い合わせ） */
/********************************************/
/* 背景は白→下20%をメインカラーにしたグラデーション。
   白カードが下のグリーン帯（＝フッターに連続）へ被さって見える。 */
.cta {
  background: linear-gradient(to bottom, #FFF 0%, #FFF 73%, #78BD36 73%, #78BD36 100%);
  padding-top: 7rem;
}
@media (max-width: 768px) {
  .cta {
    padding-top: 5rem;
  }
}

.cta_inner {
  max-width: 108rem;
  width: calc(100% - 8rem);
  margin: 0 auto;
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .cta_inner {
    width: calc(100% - 4rem);
    padding-bottom: 0;
  }
}

.cta_card {
  padding: 4rem 5rem 4.5rem;
  background-color: #FFF;
  border-radius: 3rem;
}
@media (max-width: 768px) {
  .cta_card {
    padding: 3rem 1.6rem;
    border-radius: 2rem;
  }
}

.cta_ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  font-size: 3.6rem;
  letter-spacing: 0.05em;
  color: #333333;
}
@media (max-width: 768px) {
  .cta_ttl {
    margin-bottom: 3.4rem;
    font-size: 3.2rem;
  }
}

.cta_cols {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 5rem;
}
@media (max-width: 768px) {
  .cta_cols {
    flex-direction: column;
    gap: 4rem;
  }
}

.cta_col {
  width: 44%;
}
@media (max-width: 768px) {
  .cta_col {
    width: 100%;
  }
}

.cta_subttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  position: relative;
  margin-bottom: 1.6rem;
  padding-left: 4rem;
  font-size: 2.4rem;
  letter-spacing: 0.03em;
  color: #333333;
}
@media (max-width: 768px) {
  .cta_subttl {
    text-align: center;
    padding-left: 0;
    font-size: 1.8rem;
  }
}
.cta_subttl::before {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  transform: translateY(-50%);
  background: no-repeat center/contain;
}
@media (max-width: 768px) {
  .cta_subttl::before {
    position: relative;
    top: initial;
    left: initial;
    transform: initial;
    display: block;
    margin: 0 auto 1rem;
  }
}

.cta_subttl_mail::before {
  width: 3.2rem;
  height: 2.6rem;
  background-image: url(../img/ico/ico-mail.svg);
}

.cta_subttl_tel::before {
  width: 2.4rem;
  height: 3.4rem;
  background-image: url(../img/ico/ico-phone.svg);
}

/* メールボタン */
.cta_btns {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.cta_btn {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 3.6rem 1rem 6.5rem;
  font-size: 1.8rem;
  color: #FFF;
  background-color: #78BD36;
  border-radius: 10rem;
  box-shadow: 0px 3.99885px 3.99885px rgba(0, 0, 0, 0.0784314);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .cta_btn {
    font-size: 1.5rem;
    padding: 1.8rem 3.6rem 1.8rem 5rem;
  }
}
.cta_btn:before {
  content: "";
  position: absolute;
  left: 4rem;
  top: 0;
  bottom: 0;
  display: block;
  margin: auto;
  width: 2.1rem;
  height: 2.1rem;
}
@media (max-width: 768px) {
  .cta_btn:before {
    left: 2.3rem;
  }
}
.cta_btn::after {
  position: absolute;
  right: 2rem;
  top: 50%;
  content: "";
  width: 0.6rem;
  height: 1.2rem;
  background: url(../img/ico/ico-arrow-r-yellow.svg) no-repeat center/contain;
  transform: translateY(-50%);
}
.cta_btn:hover {
  background-color: rgb(99.8518518519, 157.2666666667, 44.9333333333);
}

.cta_btns li:nth-child(1) a:before {
  background: url(../img/ico/ico-contact-btn01.svg) no-repeat center/contain;
}
.cta_btns li:nth-child(2) a:before {
  background: url(../img/ico/ico-contact-btn02.svg) no-repeat center/contain;
}
.cta_btns li:nth-child(3) a:before {
  background: url(../img/ico/ico-contact-btn03.svg) no-repeat center/contain;
}

/* 電話ボックス */
.cta_tel_box {
  padding: 0 3.2rem 2.4rem;
  background-color: #f6f6f6;
  border-radius: 2.4rem;
}
@media (max-width: 768px) {
  .cta_tel_box {
    padding: 0 2.2rem 2.2rem;
  }
}

.cta_tel_tag {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4rem 1.6rem 0.3rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFF;
  background-color: #9ACD68;
  border-radius: 0 0 0.8rem 0.8rem;
}
@media (max-width: 768px) {
  .cta_tel_tag {
    padding: 0.2rem 2rem 0;
  }
}

.cta_tel {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  margin-bottom: 1.2rem;
  font-size: 4.8rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #231815;
}
.cta_tel a {
  color: #231815;
}
@media (max-width: 768px) {
  .cta_tel {
    font-size: 3.6rem;
  }
}

.cta_tel_info {
  font-size: 1.3rem;
  color: #333333;
}

.cta_tel_row {
  display: flex;
  align-items: baseline;
  background-color: #FFF;
  padding: 0.3rem 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 768px) {
  .cta_tel_row {
    padding: 0.3rem 1.2rem;
  }
}
.cta_tel_row + .cta_tel_row {
  margin-top: 0.4rem;
}
.cta_tel_row dt {
  position: relative;
  flex-shrink: 0;
  width: 6em;
  color: #78BD36;
}
@media (max-width: 768px) {
  .cta_tel_row dt {
    width: 5.5em;
  }
}
.cta_tel_row dt::after {
  content: "：";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: block;
  margin: auto;
}
.cta_tel_row dd {
  padding-left: 1em;
  flex: 1;
}
@media (max-width: 768px) {
  .cta_tel_row dd {
    padding-left: 0.5em;
  }
}
@media (max-width: 768px) {
  .cta_tel_row {
    font-size: 1.2rem;
  }
}

/********************************************/
/* ページトップへ戻るボタン */
/********************************************/
.pagetop {
  position: fixed;
  right: 3rem;
  bottom: 3rem;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.6rem;
  height: 5.6rem;
  background-color: #FFF;
  border: 1px solid rgba(120, 189, 54, 0.4);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  transition: all 0.3s;
  cursor: pointer;
}
@media (max-width: 768px) {
  .pagetop {
    right: 1.6rem;
    bottom: 1.6rem;
    width: 4.8rem;
    height: 4.8rem;
  }
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.pagetop::before {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.4rem;
  border-top: 2px solid #78BD36;
  border-right: 2px solid #78BD36;
  transform: rotate(-45deg);
  transition: border-color 0.3s;
}
@media (max-width: 768px) {
  .pagetop::before {
    width: 1rem;
    height: 1rem;
  }
}
.pagetop:hover {
  background-color: #78BD36;
}
.pagetop:hover::before {
  border-color: #FFF;
}/*# sourceMappingURL=navigation.css.map */