@charset "UTF-8";
/* color */
/* thickness */
* {
  margin: 0;
  padding: 0;
  letter-spacing: 0.09em;
}

html,
body {
  /*scroll-padding-top: 100px;*/
  scroll-behavior: smooth;
  scroll-behavior: auto;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #1e1e1e;
  position: relative;
}
html::after,
body::after {
  content: "";
  z-index: -10;
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
@media screen and (max-width: 1280px) {
  html,
  body {
    font-size: 15px;
  }
}

/*
[id] {
    scroll-margin-top: 80px;
}*/
*,
*:before,
*:after {
  box-sizing: border-box;
  position: relative;
  background-repeat: no-repeat;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

h1,
h2 {
  font-weight: 700;
}

img {
  max-width: 100%;
  vertical-align: middle;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-drag: none;
}

input {
  margin: 0;
  padding: 0;
}

textarea {
  padding: 0;
  font: inherit;
  color: inherit;
}

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

th,
td {
  border: none;
}

button {
  font: inherit;
  padding: 0;
  background-color: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
}

ul,
li {
  list-style: none;
}

.green-title {
  color: #265039;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
}

.sp-ib {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp-ib {
    display: inline-block !important;
    margin: 0 !important;
  }
}

@media screen and (max-width: 768px) {
  .display-ib {
    display: inline-block !important;
  }
}

.display-ibal {
  display: inline-block !important;
}

.display-ibpc {
  display: inline-block !important;
}
@media screen and (max-width: 768px) {
  .display-ibpc {
    display: none !important;
  }
}

.border-r-20 {
  border-radius: 20px;
}

.border-r-10 {
  border-radius: 10px;
}

.font-w-600 {
  font-weight: 600;
}

.more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 150px;
  margin: 50px 0 0 auto;
  transition: all 0.4s;
}
.more span {
  position: relative;
  width: 25px;
  height: 25px;
  border-radius: 50px;
  background-color: #43d1c6;
  margin-left: 5px;
  transition: all 0.4s;
}
.more span::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  top: 8px;
  left: 5px;
  transform: rotate(45deg);
}
.more:hover {
  color: #43d1c6;
}
.more:hover span {
  transform: translateX(5px);
}

/* お問い合わせボタン */
.more-contactbox {
  display: flex;
  align-items: center;
  gap: 2%;
}
@media screen and (max-width: 768px) {
  .more-contactbox {
    flex-direction: column;
    align-items: flex-start;
  }
}
.more-contactbox .more-tel {
  color: #569c4c;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 210px;
  gap: 2%;
}
.more-contactbox .more-tel::before {
  content: "";
  background-image: url("../images/icon-tel_green02.png");
  width: 19px;
  height: 27px;
}
@media screen and (max-width: 768px) {
  .more-contactbox .more-tel {
    margin: 10px 0;
  }
}
.more-contactbox .more-mail {
  background-color: #ff5e74;
  transition: all 0.4s;
  color: white;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 270px;
  gap: 3%;
}
.more-contactbox .more-mail::before {
  content: "";
  background-image: url("../images/icon-mail_white.png");
  width: 32px;
  height: 21px;
}
.more-contactbox .more-mail span {
  position: relative;
  width: 25px;
  height: 25px;
  border-radius: 50px;
  background-color: white;
  transition: all 0.4s;
  display: block;
}
.more-contactbox .more-mail span::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 2px solid #ff5e74;
  border-right: 2px solid #ff5e74;
  top: 8px;
  left: 5px;
  transform: rotate(45deg);
}
.more-contactbox .more-mail:hover {
  background-color: #df455a;
}
.more-contactbox .more-mail:hover span {
  transform: translateX(5px);
}

p, li, td, th, h1, h2, h3 {
  line-height: 1.8em !important;
}

.external-more {
  color: #ff811b;
  transition: all 0.6s;
  font-weight: 600;
}
.external-more:hover {
  color: #13bd62;
}
.external-more::before {
  content: "";
  background-image: url(../images/external-more.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 15px;
  height: 15px;
  margin-right: 10px;
  display: inline-block;
}

/* クリック判定なし */
.pointer-events {
  pointer-events: none;
}

/* 中間線 */
.line-through {
  text-decoration: line-through;
}

/* 点線 */
.b-dashed {
  background-size: 12px 2px;
  background-image: linear-gradient(to right, #91d06f 3px, transparent 3px);
  background-repeat: repeat-x;
  background-position: left bottom;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

/* 最大横幅サイズ */
.max-w {
  max-width: 1500px;
  width: 90%;
  margin: auto;
}

.max-w2 { /* 下層ページ用 */
  max-width: 1490px;
  width: 89%;
  margin: auto;
}

.max-w3 { /* 下層ページ用 */
  max-width: 1000px !important;
  width: 89%;
  margin: auto;
}

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

.text-right {
  text-align: right;
}

.f-green {
  color: #1c8658;
}

.f-red {
  color: #ff0b44;
}

.f-lightgreen {
  color: #7daf10;
}

.f-orange {
  color: #ff6041;
}

.f-white {
  color: white;
}

.current {
  color: #f75070;
}

.span-p {
  background-color: #fff2c0;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .span-p {
    display: block;
  }
}

.span-p2 {
  background-color: #fffc9d;
  padding: 10px;
}

.biko,
.biko02 {
  background-color: #fffdc0;
  padding: 10px;
}

.marker {
  background: #fffc9d;
}

.mt-10 {
  margin-top: 10px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.ml-20 {
  margin-left: 20px;
}

p, li, a, th, td {
  /*font-size: clamp(0.938rem, 0.826rem + 0.23vw, 1rem);*/ /* 16 > 15 */
  font-size: 16px;
}

.f-80 {
  font-size: clamp(1.5rem, -4.722rem + 12.96vw, 5rem); /* 80 > 24 */
}

.f-50 {
  font-size: clamp(1.563rem, -1.215rem + 5.79vw, 3.125rem); /* 50 > 25 */
}

.f-40 {
  font-size: clamp(1.563rem, -0.104rem + 3.47vw, 2.5rem); /* 40 > 25 */
}

.f-35 {
  font-size: clamp(1.25rem, -0.417rem + 3.47vw, 2.188rem); /* 35 > 20 */
}

.f-30 {
  font-size: clamp(1.25rem, 0.139rem + 2.31vw, 1.875rem); /* 30 > 20 */
}

.f-24 {
  font-size: clamp(1.25rem, 0.806rem + 0.93vw, 1.5rem); /* 24 > 20 */
}

.f-20 {
  font-size: clamp(1.125rem, 0.903rem + 0.46vw, 1.25rem); /* 20 > 18 */
}

.f-18 {
  font-size: clamp(1rem, 0.778rem + 0.46vw, 1.125rem); /* 18 > 16 */
}

.f-16 {
  font-size: clamp(0.875rem, 0.653rem + 0.46vw, 1rem);
}

.f-14 {
  font-size: 14px;
}

.l-header {
  display: block;
  background-color: #ffffff;
  color: #265039;
  z-index: 1000;
  transition: all 0.6s;
  width: 100%;
}
.l-header::before {
  content: "";
  background-image: url(../images/header_left_tree.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 140px;
  height: 170px;
  position: absolute;
  z-index: 2;
  left: 0;
  top: -70px;
  transition: all 0.6s;
}
@media screen and (max-width: 1110px) {
  .l-header::before {
    width: 131px;
    height: 154px;
  }
}
@media screen and (max-width: 768px) {
  .l-header::before {
    width: 100px;
    height: 138px;
    top: -70px;
    z-index: -1;
  }
}
.l-header::after {
  content: "";
  background-image: url(../images/header_right_tree.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 140px;
  height: 170px;
  position: absolute;
  z-index: 2;
  right: 0;
  top: -70px;
  transition: all 0.6s;
}
@media screen and (max-width: 1110px) {
  .l-header::after {
    width: 120px;
    height: 140px;
  }
}
@media screen and (max-width: 768px) {
  .l-header::after {
    display: none;
    width: 20%;
  }
}

.content .l-header::before,
.content .l-header::after {
  display: none;
}

.header-bus {
  position: relative;
  overflow: clip;
  z-index: 1;
  height: 85px;
}
@media screen and (max-width: 768px) {
  .header-bus {
    height: 80px;
  }
}

.red_bus {
  position: absolute;
  width: 110px;
  z-index: 1;
  bottom: 0;
  left: 0;
  animation: left-right-bus 20s linear infinite;
}
@media screen and (max-width: 768px) {
  .red_bus {
    width: 100px;
  }
}
.red_bus img {
  width: 100%;
  animation: gatagoto-bus 2s linear infinite;
}

.l-header-logo {
  font-weight: 700;
  font-size: 28px;
  text-align: center;
  padding: 10px;
  background-image: url("../images/common_back_img01.jpg");
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-header-logo {
    font-size: 22px;
  }
  .l-header-logo.active-none {
    display: none;
  }
}
.l-header-logo img {
  width: 100%;
  max-width: 315px;
}
.l-header-logo a {
  transition: all 0.6s;
}
.l-header-logo a:hover {
  opacity: 0.7;
}

.content .l-header-logo {
  padding: 2px 0 6px;
}
@media screen and (max-width: 768px) {
  .content .l-header-logo {
    padding: 4% 21% 3% 5%;
  }
}
.content .l-header-logo img {
  max-width: 255px;
}

@media screen and (max-width: 768px) {
  .toppage .l-header-logo {
    padding: 4% 17% 3% 17%;
  }
}

.l-header-nav {
  display: flex;
  justify-content: center;
  gap: 2%;
  font-weight: 900;
  font-size: 20px;
  z-index: 998;
  padding: 8px 0;
}
@media screen and (max-width: 800px) {
  .l-header-nav {
    gap: 1%;
  }
}
@media screen and (max-width: 768px) {
  .l-header-nav {
    opacity: 0;
    flex-direction: column;
    position: fixed;
    justify-content: flex-start;
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 0.6s;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    margin-right: 0;
    pointer-events: none;
    padding: 60px 16px 80px;
    overflow-y: auto;
  }
}

.l-header-nav--open {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (max-width: 768px) {
  .l-header-list,
  .l-header-list_noac {
    background-color: #5e7d60;
    border-radius: 8px;
    margin-top: 5px !important;
    overflow: clip;
  }
}
@media screen and (max-width: 768px) {
  .l-header-list.active,
  .l-header-list_noac.active {
    display: block !important;
    height: auto !important;
  }
  .l-header-list.active a.l-header-more,
  .l-header-list_noac.active a.l-header-more { /* 子要素あり　矢印 */ }
  .l-header-list.active a.l-header-more span::before,
  .l-header-list_noac.active a.l-header-more span::before {
    transform: rotate(-45deg);
    top: 10px;
    left: 7px;
  }
}
.l-header-list a,
.l-header-list_noac a {
  display: block;
  transition: all 0.6s;
  overflow: hidden;
  line-height: 1.5;
  padding: 5px 10px;
}
@media screen and (max-width: 985px) {
  .l-header-list a,
  .l-header-list_noac a {
    padding: 10px 0;
  }
}
@media screen and (max-width: 768px) {
  .l-header-list a,
  .l-header-list_noac a {
    color: white;
    padding: 10px;
  }
}
.l-header-list a::before,
.l-header-list_noac a::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: -100%;
  background-color: #ffffff;
  transition: all 0.6s;
}
@media screen and (max-width: 768px) {
  .l-header-list a::before,
  .l-header-list_noac a::before {
    display: none;
  }
}
.l-header-list a:hover,
.l-header-list_noac a:hover {
  color: #f75070;
}
@media screen and (max-width: 768px) {
  .l-header-list a:hover,
  .l-header-list_noac a:hover {
    color: white;
  }
}
.l-header-list a:hover::before,
.l-header-list_noac a:hover::before {
  left: 0;
}
@media screen and (max-width: 768px) {
  .l-header-list a:hover,
  .l-header-list_noac a:hover {
    opacity: 1;
  }
}
.l-header-list a.l-header-more,
.l-header-list_noac a.l-header-more { /* 子要素あり　矢印 */
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .l-header-list a.l-header-more span,
  .l-header-list_noac a.l-header-more span {
    position: relative;
    width: 25px;
    height: 25px;
    border-radius: 50px;
    background-color: white;
    margin-left: 5px;
    transition: all 0.4s;
  }
  .l-header-list a.l-header-more span::before,
  .l-header-list_noac a.l-header-more span::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-top: 2px solid #265039;
    border-right: 2px solid #265039;
    transform: rotate(135deg);
    display: block;
    top: 6px;
    left: 7px;
    z-index: 5;
    transition: all 0.6s;
  }
}
.l-header-list .l-header-detail,
.l-header-list_noac .l-header-detail {
  position: absolute;
  left: 0;
  top: 100%;
  width: 250px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s;
  background-color: rgba(38, 80, 57, 0.9019607843);
  border-radius: 8px;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .l-header-list .l-header-detail,
  .l-header-list_noac .l-header-detail {
    transition: all 0.4s;
    background-color: #425e44;
    box-sizing: border-box;
    border-radius: 0 0 8px;
    padding-bottom: 0;
    opacity: 1;
    display: none;
    visibility: visible;
    position: relative;
  }
}
.l-header-list .l-header-detail li,
.l-header-list_noac .l-header-detail li {
  font-size: 16px;
  width: 100%;
  font-weight: 400;
  color: #ffffff;
  padding: 20px 20px 0;
}
@media screen and (max-width: 768px) {
  .l-header-list .l-header-detail li,
  .l-header-list_noac .l-header-detail li {
    padding: 10px 20px 0;
  }
}
.l-header-list .l-header-detail li a,
.l-header-list_noac .l-header-detail li a {
  padding: 0 0 10px;
}
.l-header-list .l-header-detail li a:hover,
.l-header-list_noac .l-header-detail li a:hover {
  color: white !important;
}
@media screen and (max-width: 768px) {
  .l-header-list .l-header-detail,
  .l-header-list_noac .l-header-detail {
    position: relative;
    top: 0;
    width: 100%;
  }
}
.l-header-list.l-header-list_about .l-header-detail,
.l-header-list_noac.l-header-list_about .l-header-detail {
  width: 150px;
}
@media screen and (max-width: 768px) {
  .l-header-list.l-header-list_about .l-header-detail,
  .l-header-list_noac.l-header-list_about .l-header-detail {
    width: 100%;
  }
}
.l-header-list.l-header-list_life .l-header-detail,
.l-header-list_noac.l-header-list_life .l-header-detail {
  width: 230px;
}
@media screen and (max-width: 768px) {
  .l-header-list.l-header-list_life .l-header-detail,
  .l-header-list_noac.l-header-list_life .l-header-detail {
    width: 100%;
  }
}
.l-header-list.l-header-list_keyakids .l-header-detail,
.l-header-list_noac.l-header-list_keyakids .l-header-detail {
  width: 280px;
}
@media screen and (max-width: 768px) {
  .l-header-list.l-header-list_keyakids .l-header-detail,
  .l-header-list_noac.l-header-list_keyakids .l-header-detail {
    width: 100%;
  }
}
.l-header-list:hover .l-header-detail,
.l-header-list_noac:hover .l-header-detail {
  /*display: block;
  height: auto;*/
  opacity: 1;
  visibility: visible;
}

.l-header-nav--open::after {
  content: "";
  width: 100%;
  background-color: #5e7d60;
}

.l-header-btn {
  display: none;
  width: 25px;
  height: 25px;
  padding: 25px;
  z-index: 999;
  background-color: #5e7d60;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .l-header-btn {
    display: block;
    position: fixed;
    right: 2%;
    top: 1%;
  }
}
.l-header-btn span {
  display: block;
  width: 25px;
  height: 2px;
  left: 13px;
  background-color: #ffffff;
  position: absolute;
  transition: all 0.6s;
}
.l-header-btn span:nth-child(1) {
  top: 12px;
}
.l-header-btn span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.l-header-btn span:nth-child(3) {
  bottom: 12px;
}

.l-header-btn--open span:nth-child(1) {
  transform: rotate(45deg);
  top: 48%;
}
.l-header-btn--open span:nth-child(2) {
  opacity: 0;
}
.l-header-btn--open span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 48%;
}

/* header固定 */
header { /* for Safari */
  position: sticky;
  container-type: scroll-state;
  top: 0;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  header {
    position: static;
  }
}
@container scroll-state(stuck: top) {
  header .l-header-logo,
  header .red_bus,
  header .red_bus img,
  header .l-header::before,
  header .l-header::after {
    display: none;
  }
  header .l-header-logo {
    margin-top: 0;
  }
  header .l-header-nav {
    position: fixed;
    width: 100%;
    background-color: white;
    z-index: 10;
    top: 0;
  }
}

.main {
  padding-top: 20px;
}

.f-illust {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 768px) {
  .f-illust {
    padding-top: 100px;
  }
}
.f-illust .yellow_bus {
  position: absolute;
  width: 180px;
  z-index: -1;
  bottom: 5px;
  left: 0;
  animation: right-left-bus 20s linear infinite;
}
@media screen and (max-width: 768px) {
  .f-illust .yellow_bus {
    width: 120px;
  }
}
.f-illust .yellow_bus img {
  width: 100%;
  animation: gatagoto-bus 2s linear infinite;
}
.f-illust::after { /* 山背景 */
  content: "";
  background-image: url("../images/footer-back_mountain.jpg");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100%;
  height: 500px;
  position: absolute;
  z-index: -5;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .f-illust::after {
    background-size: 180%;
  }
}
.f-illust::before { /* 気球 */
  content: "";
  background-image: url("../images/footer-back_balloon.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 104px;
  height: 118px;
  position: absolute;
  z-index: -2;
  top: 3%;
  left: 40%;
  animation: huwahuwa 4s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .f-illust::before {
    width: 50px;
    top: 0;
    left: 20%;
  }
}
.f-illust .f-illust_tree {
  width: 15%;
}
@media screen and (max-width: 768px) {
  .f-illust .f-illust_tree {
    width: 20%;
  }
}

/* フッター　メニューと電話 */
footer {
  margin-top: 100px;
  padding-top: 150px;
  overflow: clip;
}
@media screen and (max-width: 768px) {
  footer {
    margin-top: 0;
    padding-top: 60px;
  }
}
footer .l-footer {
  margin-top: -5px;
  background-image: url("../images/common_back_img01.jpg");
}
@media screen and (max-width: 768px) {
  footer .l-footer {
    padding: 10px 0;
    background-size: cover;
  }
}
footer .l-footer-copy {
  background-image: url("../images/common_back_img01.jpg");
}
footer .l-footer_box {
  display: flex;
  align-items: flex-start;
  padding: 60px 0 50px;
  gap: 2%;
}
@media screen and (max-width: 768px) {
  footer .l-footer_box {
    display: block;
    padding: 20px 0 20px;
  }
}
footer .l-footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  width: 80%;
}
footer .l-footer-menu li {
  line-height: 1.3em !important;
}
footer .l-footer-menu > li {
  width: 18%;
  font-weight: 700;
  margin-bottom: 10px;
}
footer .l-footer-menu > li > a {
  background-size: 12px 1px;
  background-image: linear-gradient(to right, #393939 7px, transparent 7px);
  background-repeat: repeat-x;
  background-position: left bottom;
  padding-bottom: 5px;
  width: 100%;
  display: block;
  transition: all 0.6s;
}
footer .l-footer-menu > li > a:hover {
  color: #2aa197;
  background-image: linear-gradient(to right, #2aa197 7px, transparent 7px);
}
@media screen and (max-width: 768px) {
  footer .l-footer-menu {
    width: 100%;
  }
  footer .l-footer-menu > li {
    width: 50%;
    padding: 16px;
    font-size: 18px;
    font-weight: 700;
  }
}
@media screen and (max-width: 768px) {
  footer .l-footer-menu > li {
    width: 100%;
    padding: 8px 0px;
  }
}
footer .l-footer-list {
  margin: 10px 0 0;
}
footer .l-footer-list > li {
  font-weight: 400;
  margin: 0 0 8px;
}
@media screen and (max-width: 768px) {
  footer .l-footer-list > li {
    margin: 0 0 3px;
    line-height: 1.3em !important;
  }
}
footer .l-footer-list > li > a {
  font-weight: 600;
  letter-spacing: 0;
  display: block;
  position: relative;
  padding-left: 15px;
  transition: all 0.6s;
}
@media screen and (max-width: 768px) {
  footer .l-footer-list > li > a {
    padding-bottom: 3px;
  }
}
footer .l-footer-list > li > a::before {
  transition: all 0.6s;
  content: "";
  position: absolute;
  display: block;
  height: 2px;
  width: 10px;
  top: 50%;
  left: 0;
  z-index: 1;
  background-color: #1e1e1e;
  transition: all 0.6s;
}
@media screen and (max-width: 768px) {
  footer .l-footer-list > li > a::before {
    top: 42%;
  }
}
footer .l-footer-list > li > a::after {
  transition: all 0.6s;
  content: "";
  position: absolute;
  display: block;
  height: 2px;
  width: 0;
  bottom: 0;
  left: 5px;
  z-index: 1;
  background-color: #2aa197;
  transition: all 0.6s;
}
footer .l-footer-list > li:hover > a {
  color: #2aa197;
}
footer .l-footer-list > li:hover > a::before {
  height: 100%;
  width: 2px;
  top: 0;
  left: 5px;
  background-color: #2aa197;
}
footer .l-footer-list > li:hover > a::after {
  width: calc(100% - 5px);
}
footer .l-footer-logo {
  width: 18%;
  text-align: center;
  max-width: 270px;
}
@media screen and (max-width: 768px) {
  footer .l-footer-logo {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    max-width: 170px;
    margin: auto;
  }
}
footer .l-footer-logo .l-footer-tel {
  color: #5e7d60;
  font-weight: 600;
  margin: 30px 0 40px;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 1357px) {
  footer .l-footer-logo .l-footer-tel {
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  footer .l-footer-logo .l-footer-tel {
    margin: 10px 0;
  }
}
footer .l-footer-logo .l-footer-tel::before {
  content: "";
  background-image: url("../images/icon-tel_green.png");
  background-repeat: none;
  background-size: 100%;
  width: 19px;
  height: 29px;
  display: block;
  margin-right: 3px;
}
@media screen and (max-width: 1357px) {
  footer .l-footer-logo .l-footer-tel::before {
    width: 13px;
    height: 23px;
    margin-top: 6px;
  }
}
@media screen and (max-width: 940px) {
  footer .l-footer-logo .l-footer-tel::before {
    width: 10px;
    height: 22px;
  }
}
@media screen and (max-width: 768px) {
  footer .l-footer-logo .l-footer-tel::before {
    width: 17px;
    height: 30px;
  }
}
footer .l-footer-logo .l-footer-tel a {
  font-size: clamp(1.5rem, 0.5rem + 2.08vw, 2.063rem); /* 33 > 24 */
  transform: translateY(-3px);
}
@media screen and (max-width: 1550px) {
  footer .l-footer-logo .l-footer-tel a {
    font-size: clamp(1.125rem, 0.458rem + 1.39vw, 1.5rem); /* 24 > 18 */
  }
}
@media screen and (max-width: 940px) {
  footer .l-footer-logo .l-footer-tel a {
    font-size: 18px;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 768px) {
  footer .l-footer-logo .l-footer-tel a {
    font-size: 19px;
    letter-spacing: 0.09em;
  }
}
footer .l-footer-logo .l-footer-sns {
  padding: 20px;
  background-color: white;
  max-width: 75px;
  margin: auto;
}
footer .l-footer-logo .l-footer-sns img {
  width: 35px;
}
footer .l-footer-copy {
  text-align: center;
}

.page-top {
  margin: 50px 0 0 auto;
  display: block;
  position: fixed;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background-color: #43d1c6;
  transition: all 0.4s;
  bottom: 3%;
  right: 2%;
  z-index: 20;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .page-top {
    width: 40px;
    height: 40px;
    right: 4%;
  }
}
.page-top::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  top: 20px;
  left: 18px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .page-top::after {
    width: 12px;
    height: 12px;
    top: 17px;
    left: 15px;
  }
}
.page-top:hover {
  background-color: #29a69b;
  transform: translateY(-5px);
}/*# sourceMappingURL=common.css.map */