@charset "utf-8";

/* Main visuals: show the site green immediately while images are loading. */
#lower_midashi,
.about_hero {
  background-color: #075b53;
}

#lower_midashi::before,
.about_hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: #075b53;
  content: "";
  pointer-events: none;
  transition: opacity 1.4s ease-in-out;
}

#lower_midashi.is-main-visual-ready::before,
.about_hero.is-main-visual-ready::before {
  opacity: 0;
}

#lower_midashi > *,
.about_hero > * {
  position: relative;
  z-index: 2;
}

.sustainability_hero {
  background-color: #075b53;
}

.sustainability_hero > img {
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}

.sustainability_hero.is-main-visual-ready > img {
  opacity: 1;
}

/* Recruit page */
.recruit_page {
  box-sizing: border-box;
  padding: 160px 0 180px;
  color: #4b4744;
}

.recruit_page *,
.recruit_page *::before,
.recruit_page *::after {
  box-sizing: border-box;
}

.recruit_page .recruit_lead {
  margin: 0 0 75px;
  font-size: 16px;
  line-height: 2;
  text-align: center;
}

.recruit_page .recruit_type_nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: min(715px, calc(100% - 40px));
  margin: 0 auto;
  scroll-margin-top: 100px;
}

.recruit_page .recruit_type_nav a {
  display: grid;
  place-items: center;
  height: 68px;
  border-radius: 5px 5px 0 0;
  background: #f5f2ed;
  color: #8a837f;
  font-size: 15px;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.recruit_page .recruit_type_nav a:hover,
.recruit_page .recruit_type_nav a.is-current {
  background: #075b53;
  color: #fff;
}

.recruit_page .recruit_department_nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 110px;
  width: min(1360px, calc(100% - 80px));
  margin: 0 auto;
  padding: 80px 40px 0;
  border-top: 1px solid #dedad6;
}

.recruit_page .recruit_department_nav a {
  position: relative;
  color: #221815;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
}

.recruit_page .recruit_department_nav a::after {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 0 5px 12px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.recruit_page .recruit_jobs {
  width: min(1200px, calc(100% - 80px));
  margin: 160px auto 0;
}

.recruit_page .recruit_job {
  scroll-margin-top: 130px;
}

.recruit_page .recruit_job + .recruit_job {
  margin-top: 170px;
}

.recruit_page .recruit_job_kicker {
  margin: 0 0 55px;
  font-size: 15px;
  text-align: center;
}

.recruit_page .recruit_job h2 {
  position: relative;
  margin: 0 0 24px;
  padding-left: 24px;
  color: #075b53;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
}

.recruit_page .recruit_job h2::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(to bottom, #075b53, #55c4c2);
  content: "";
}

.recruit_page .recruit_table_wrap {
  width: 100%;
}

.recruit_page table {
  width: 1200px;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.recruit_page th,
.recruit_page td {
  border: 1px solid #d9d5d1;
  padding: 28px 30px;
  vertical-align: top;
  text-align: left;
  color: #221815;
}

.recruit_page th {
  width: 180px;
  background: #f7f4ef;
  font-weight: 400;
}

.recruit_page td {
  background: #fff;
}

.recruit_page td a {
  color: #9b938c;
  text-decoration: underline;
}

.recruit_page .recruit_job h2.recruit_closed_heading {
  margin-top: 100px;
}

.recruit_page .recruit_closed {
  margin: 28px 0 0;
  font-size: 14px;
}

.recruit_page .recruit_apply_button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 229px;
  height: 67px;
  margin: 50px auto 0;
  border: 1px solid #075b53;
  border-radius: 5px;
  background-color: #075b53;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.recruit_page .recruit_apply_button:hover {
  background-color: #fff;
  color: #075b53;
}

/* Recruit: part-time page */
.recruit_parttime_page .recruit_department_nav:not(.parttime_department_nav),
.recruit_parttime_page > .recruit_jobs:not(.parttime_jobs) {
  display: none;
}

.recruit_parttime_page .recruit_type_nav {
  position: relative;
}

.recruit_parttime_page .recruit_type_nav::after {
  position: absolute;
  right: 50%;
  bottom: 0;
  width: min(1360px, calc(100vw - 80px));
  height: 1px;
  background-color: #dedad6;
  content: "";
  transform: translateX(50%);
}

.recruit_parttime_page .parttime_jobs {
  margin-top: 165px;
  margin-bottom: 150px;
}

.recruit_parttime_page .parttime_jobs .recruit_job_kicker {
  margin-bottom: 90px;
}

.recruit_parttime_page .parttime_jobs strong {
  font-weight: 500;
}

#lower_midashi {
  position: relative;
  background-image: url(/img/header_bg.jpg);
  background-size: cover;
  height: 490px;
}

/* Services page */

.sd_contents_break_sp {
  display: none;
}

.service_page {
  padding-top: 40px;
  margin-bottom: 100px;
}

.about_hero.service {
  position: relative;
  min-height: 580px;
  background: url("/img/service_mainvisual.jpg") center 46% / cover no-repeat;
}
.about_hero.green-solution {
  position: relative;
  min-height: 580px;
  background: url("/img/gs_mainvisual.jpg") center 46% / cover no-repeat;
}
.about_hero.maintenance {
  position: relative;
  min-height: 580px;
  background: url("/img/gs_mainenance.jpg") center 46% / cover no-repeat;
}
.about_hero.space_deco {
  position: relative;
  min-height: 580px;
  background: url("/img/space_deco_mainvisual.jpg") center 46% / cover no-repeat;
}
.about_hero.exterior {
  position: relative;
  min-height: 580px;
  background: url("/img/exterior_mainvisual.jpg") center 46% / cover no-repeat;
}
.about_hero.public_space {
  position: relative;
  min-height: 580px;
  background: url("/img/public_space_mainvisual.jpg") center 46% / cover no-repeat;
}
.about_hero.life {
  position: relative;
  min-height: 580px;
  background: url("/img/life_mainvisual.jpg") center 46% / cover no-repeat;
}
.about_hero.maintenance h1 {
  position: relative;
  left: 90%;
  color: #075b53;
  text-align: left;
  text-shadow: none;
}
.about_hero.maintenance p {
  position: relative;
  left: 90%;
  color: #075b53;
  text-shadow: none;
  text-align: left;
}
.ourservices {
  padding-top: 0;
  margin-top: -50px;
}

.ourservices .shop_list_heading p {
  position: relative;
  color: #075b53;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  width: 150px;
  margin: 0 auto 32px;
  padding-left: 15px;
  white-space: nowrap;
}

.service_page .service_card_heading_row {
  color: #075b53;
}

.service_page .service_card {
  border-bottom: 1px solid #075b53;
}

.service_page .service_card a {
  position: absolute;
  right: 24px;
  bottom: 34px;
  width: 66px;
  height: 35px;
  overflow: hidden;
  border-radius: 999px;
  background: #075b53;
  color: #fff;
  font-size: 0;
  text-decoration: none;
}
.service_page .service_card a::before,
.service_page .service_card a::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  content: "→";
  font:
    400 24px/1 lato,
    sans-serif;
  transition: transform 0.35s ease;
}
.service_page .service_card a::after {
  transform: translateX(-100%);
}
.service_page .service_card a:hover::before,
.service_page .service_card a:focus-visible::before {
  transform: translateX(100%);
}
.service_page .service_card a:hover::after,
.service_page .service_card a:focus-visible::after {
  transform: translateX(0);
}

.service_page_services_btn_sp {
  display: none;
}

.ourservices .shop_list_heading p {
  position: relative;
  color: #075b53;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  width: 150px;
  margin: 0 auto 32px;
  padding-left: 15px;
  white-space: nowrap;
}

.solutions {
  padding-top: 0;
}

.solutions .shop_list_heading p {
  position: relative;
  color: #075b53;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  width: 150px;
  margin: 0 auto 32px;
  padding-left: 15px;
  white-space: nowrap;
}

.solutions_section {
  padding: 240px 0 100px;
  background: linear-gradient(135deg, #f7f2e9 0%, #eef7f1 100%);
  margin-top: -120px;
}

.solutions_chart {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
  gap: 20px 1.55%;
}
.solutions_chart a {
  width: 32.3%;
}
.solutions_chart a img {
  width: 100%;
}
.solutions_chart a img:hover {
  opacity: 0.6;
}
.service_page .gs_chart {
  max-width: 860px;
  width: 100%;
  margin: 65px 0 0 0;
}

/* Flower shop page */

.shop_page {
  --shop-green: #187b70;
  --shop-ink: #463f3b;
  color: var(--shop-ink);
  padding-top: 38px;
}
.shop_page * {
  box-sizing: border-box;
}
.shop_page a {
  color: inherit;
  text-decoration: none;
}
.shop_page img {
  display: block;
  max-width: 100%;
}
.shop_inner.bv {
  width: min(1620px, calc(100% - 64px));
  margin-inline: auto;
}
.shop_inner {
  width: min(1360px, calc(100% - 64px));
  margin-inline: auto;
}

.shop_intro {
  padding: 55px 0 93px;
  text-align: center;
}
.shop_intro_lead {
  margin: 0 0 63px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.12em;
}
.shop_intro > p:last-child {
  margin: 0;
  font-size: 16px;
  line-height: 2.375;
  letter-spacing: 0.08em;
}
.shop_contents {
  padding: 32px 20px 38px;
  background: #f6f4f0;
  text-align: center;
  height: 150px;
}
.shop_contents > span {
  display: block;
  margin-bottom: 20px;
  color: #075b53;
  font:
    400 18px lato,
    sans-serif;
  letter-spacing: 0.04em;
}
.shop_contents div {
  display: flex;
  justify-content: center;
}
.shop_contents a {
  padding: 0 32px;
  border-right: 1px solid #cfc9c1;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #5f5a56;
}
.shop_contents a:hover,
.shop_contents a.active {
  border-bottom: 2px solid #075b53;
  color: #075b53;
}
.shop_contents a:first-child {
  border-left: 1px solid #cfc9c1;
}
.shop_brand {
  padding-top: 120px;
}
.shop_brand_visual {
  width: 100%;
  height: 570px;
  object-fit: cover;
}
.shop_brand_about {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 120px;
}
.shop_brand_about > div:first-child {
  max-width: 500px;
}
.shop_brand_about h2 {
  margin: 0;
  color: #075b53;
  font:
    300 68px/1.14 lato,
    sans-serif;
  letter-spacing: 0.02em;
}

.shop_kicker {
  display: block;
  position: relative;
  margin-top: 9px;
  color: #075b53;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.22em;
  padding-left: 20px;
  margin: 18px 0 25px;
  letter-spacing: 0.01em;
}

.shop_kicker::before {
  position: absolute;
  left: 0;
  top: 45%;
  content: "";
  width: 10px;
  height: 60px;
  background-image: url(/img/daen_point.png);
  background-size: contain;
}
.shop_brand_about p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  color: #111;
}
.shop_page .shop_brand_about a.insta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  font-size: 14px;
}
.shop_page .shop_brand_about a.insta img {
  flex: 0 0 31px;
  width: 31px;
  height: 31px;
  object-fit: contain;
}
.shop_brand_logos {
  position: relative;
  right: -50px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 150px;
  gap: 20px;
}
.shop_brand_logos b {
  position: relative;
  border: 1px solid #d8d2ce;
  color: #221815;
  font:
    400 23px/1.05 zen,
    sans-serif;
  width: 380px;
}
.shop_brand_logos.recconnel b {
  position: relative;
  border: 1px solid #d8d2ce;
  color: #221815;
  font:
    400 23px/1.05 zen,
    sans-serif;
  width: 480px;
}
.shop_brand_logos b span {
  position: absolute;
  top: 30%;
  right: 10%;
  text-align: center;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.01em;
}
.shop_brand_logos b img {
  height: 150px;
}
.shop_brand_logos p {
  max-width: 250px;
  padding: 25px;
}
.shop_list_heading {
  position: relative;
  z-index: 1;
  width: 840px;
  max-width: calc(100% - 40px);
  margin: 0 auto -83px;
  padding: 108px 20px 60px;
  background: #fff;
  text-align: center;
}
.shop_list_heading h3 {
  margin: 0;
  color: #075b53;
  font:
    300 48px lato,
    sans-serif;
  letter-spacing: 0.01em;
}
.shop_list_heading p {
  position: relative;
  color: #075b53;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  width: 100px;
  margin: 0 auto 32px;
}
.shop_list_heading p::before {
  position: absolute;
  left: 0;
  top: 45%;
  content: "";
  width: 10px;
  height: 60px;
  background-image: url(/img/daen_point.png);
  background-size: contain;
}
.shop_list_bg {
  background: linear-gradient(to bottom, transparent 0%, transparent 90%, #fff 80%, #fff 100%), linear-gradient(90deg, #f7f3ea 0%, #eef6f0 100%);
  padding: 105px 0 140px;
}
.reconnel_list {
  display: block;
  background: linear-gradient(90deg, #f7f3ea 0%, #eef6f0 100%);
  padding: 105px 0 20px;
}
.shop_area_map {
  position: relative;
  height: auto;
  margin: 38px auto 80px;
  max-width: 1360px;
}
.shop_area_map .area_map_illust {
  position: absolute;
  top: 21%;
  right: -5%;
  width: 12%;
}
.shop_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 20px;
}
.shop_grid article {
  position: relative;
  min-width: 0;
  border-bottom: 1px solid #8a837f;
}
.shop_grid img {
  width: 100%;
  height: 272px;
  object-fit: cover;
}
.shop_grid h4 {
  margin: 20px 0 6px 5px;
  padding-right: 90px;
  font-size: 24px;
  font-weight: 500;
}
.shop_grid a {
  position: absolute;
  top: 319px;
  right: 4px;
  margin-top: -25px;
  color: #075b53;
  font-size: 14px;
  font-weight: 500;
}
.shop_grid a::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-left: 6px;
  margin-bottom: 5px;
  border-radius: 50%;
  background: #075b53;
  vertical-align: middle;

  /* 白い三角矢印 */
  clip-path: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M3.5 2.5 7 5 3.5 7.5Z' fill='%23fff'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px;
}
.shop_grid small {
  display: block;
  color: #8a837f;
  font:
    14px zen-kaku-gothic-new,
    sans-serif;
  margin: 32px 0 10px 5px;
}
.shop_reconnel {
  padding-top: 130px;
}
.shop_reconnel .shop_brand_about {
  padding-bottom: 100px;
}
.shop_reconnel .shop_brand_logos {
  padding: 20px 35px;
  gap: 30px;
}
.reconnel_list {
  padding-top: 220px;
}
.reconnel_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 37px;
  max-width: 916px;
  margin-bottom: 95px;
}
.reconnel_grid article {
  min-width: 0;
}
.reconnel_grid img,
.reconnel_grid iframe {
  display: block;
  width: 100%;
  height: 245px;
  border: 0;
  object-fit: cover;
}
.reconnel_grid h4 {
  margin: 20px 0 20px 5px;
  font-size: 24px;
  font-weight: 500;
}
.reconnel_grid p {
  margin: 0 0 14px 5px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #221815;
}
.reconnel_grid .tag {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 4px 0 20px;
  gap: 8px 12px;
}
.reconnel_grid .tag span {
  display: inline-block;
  background: #968983;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.01em;
  height: 24px;
  line-height: 24px;
  border-radius: 3px;
  padding: 0 10px;
}
.shop_service {
  padding: 0 0 240px;
}
.shop_service .shop_list_heading {
  margin-bottom: 10px;
  padding-bottom: 20px;
}
.shop_service .shop_list_heading p {
  width: 130px;
  padding-left: 15px;
  white-space: nowrap;
}
.shop_service_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 23px;
  max-width: 1126px;
  margin: auto;
}
.shop_service_grid img {
  width: 100%;
  height: 191px;
  object-fit: cover;
}
.shop_service_grid a img:hover {
  opacity: 0.6;
}

#lower_midashi h2 {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  font-family: lato, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 64px;
  letter-spacing: 0.03em;
  color: #075b53;
  text-align: center;
  white-space: nowrap;
}
#lower_midashi.maina h2 {
  line-height: 1.15;
}

#lower_midashi h2 div {
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  letter-spacing: 3px;
  margin: 40px 0 0 0;
}

/*************** News Page ***************/
.news_page {
  padding-top: 40px;
}

.lower_breadcrumb {
  width: calc(100% - 80px);
  max-width: 1300px;
  margin: 0 auto;
}
.lower_breadcrumb_sp {
  display: none;
}
.lower_breadcrumb ol a {
  color: #8a837f;
}
.lower_breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #8a837f;
  font-size: 12px;
  font-family: lato, zen-kaku-gothic-new, sans-serif;
  font-weight: 400;
}
.lower_breadcrumb ol:first-child {
  font-size: 14px;
  font-family: lato, zen-kaku-gothic-new, sans-serif;
  font-weight: 400;
}

.lower_breadcrumb li + li::before {
  content: "-";
  color: #8a837f;
  margin-right: 8px;
}

.lower_breadcrumb a {
  color: #4b4242;
  text-decoration: none;
}

.news_archive {
  width: calc(100% - 80px);
  max-width: 960px;
  margin: 130px auto 0 auto;
}

.news_category {
  text-align: center;
  margin-bottom: 103px;
  letter-spacing: 0.04em;
}

.news_category h3 {
  font-family: lato, sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #075b53;
  margin-bottom: 40px;
}

.news_category_list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.news_category_list li {
  position: relative;
  border-left: 1px solid #d8d2ce;
  padding: 0 34px;
}
.news_category_list li:last-child {
  border-left: 1px solid #d8d2ce;
  border-right: 1px solid #d8d2ce;
}
.news_category_list li::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #075b53;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}
.news_category_list a {
  color: #4b4242;
  text-decoration: none;
  padding: 0 0 10px;
  display: inline-block;
  transition: color 0.2s ease;
  font-size: 16px;
  font-weight: 500;
  line-height: 1em;
}

.news_category_list a.active,
.news_category_list a:hover {
  color: #075b53;
}

.news_category_list li:hover::after,
.news_category_list li:has(a.active)::after {
  transform: scaleX(1);
}

.news_list {
  border-top: 1px solid #e7e3df;
  padding-top: 5px;
}

.news_item {
  border-bottom: 1px solid #e7e3df;
  padding: 34px 0;
}

.news_item:first-child {
  padding-top: 28px;
}

.news_item a {
  display: grid;
  grid-template-columns: 100px 82px minmax(0, 1fr) 28px;
  align-items: center;
  column-gap: 18px;
  text-decoration: none;
  color: inherit;
}

.news_item time {
  font-size: 13px;
  color: #8a837f;
  white-space: nowrap;
}

.news_label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  background: #f5f1e8;
  color: #8a837f;
  font-size: 12px;
  border-radius: 2px;
  white-space: nowrap;
  min-width: 73px;
  height: 24px;
  line-height: 24px;
}

.news_item h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #4b4242;
  transition: color 0.2s ease;
}

.news_more {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: #075b53;
  color: #fff;
  font-size: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.news_item:hover h3 {
  color: #075b53;
}

.news_item:hover .news_more {
  transform: scale(1.05);
  background: #05473f;
}

.news_pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 110px;
  margin-bottom: 180px;
}

.news_pagination a {
  color: #221815;
  text-decoration: none;
  font-size: 16px;
  padding: 4px 20px;
  position: relative;
  font-family: lato, sans-serif;
}
.news_pagination a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  margin: 0 auto;
  width: 42px;
  height: 2px;
  background: #f7f5f1;
  border-radius: 1px;
}
.news_pagination a:hover::after {
  background: #221815;
}
.news_pagination a.current {
  color: #221815;
  font-family: lato, sans-serif;
}

.news_pagination a.current::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  margin: 0 auto;
  width: 42px;
  height: 2px;
  background: #a19490;
  border-radius: 1px;
}
.news_pagination a.prev img,
.news_pagination a.next img {
  position: relative;
  top: -10px;
  width: 7px;
}
/*Contact バナー*/
#contact_bnr {
  container-type: inline-size;
  position: relative;
  max-width: 1485px;
  margin: 0 auto 80px;
}
#contact_bnr img.bg {
  width: 100%;
}
#contact_bnr a {
  box-sizing: border-box;
  position: absolute;
  top: 53%;
  right: 15%;
  width: 32%;
  height: 24.5%;
  border: 1px solid transparent;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease;
  border-radius: 7px;
  background-color: #075b53;
  color: #fff;
  text-decoration: none;
  font-size: 1.9cqw;
  font-weight: 500;
  line-height: 1.5;
}
#contact_bnr a .btn {
  width: 100%;
}
#contact_bnr a:hover {
  border-color: #075b53;
  background-color: #fff;
  color: #075b53;
}
#contact_bnr a p {
  position: absolute;
  top: 35%;
  left: 36px;
}
.arw_box {
  position: absolute;
  top: 50%;
  right: 8%;
  width: 60px;
  height: 30px;
  overflow: hidden;
  border-radius: 50px;
  background-color: #fff;
  transform: translateY(-50%);
  transition: background-color 0.35s ease;
}

.arw_box img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32%;
  transform: translate(-50%, -50%);
  transition: none;
}

#contact_bnr a:hover .arw_box {
  background-color: #075b53;
}

#contact_bnr a:hover .arw_box img {
  animation: contactArrowSlide 0.55s ease forwards;
  filter: brightness(0) invert(1);
}
#contact_bnr .contact_bnr_sp_link {
  display: none;
}

@keyframes contactArrowSlide {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  35% {
    opacity: 0;
    transform: translate(40%, -50%);
  }

  36% {
    opacity: 0;
    transform: translate(-140%, -50%);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/*************** Works Page ***************/
.works_page {
  position: relative;
  padding-top: 40px;
}

.works_breadcrumb {
  position: relative;
  z-index: 1;
  margin: 50px auto -50px;
}

.works_archive {
  width: calc(100% - 80px);
  max-width: 1290px;
  margin: 130px auto 0;
}

.works_category {
  margin-bottom: 150px;
  text-align: center;
  letter-spacing: 0.04em;
}

.works_category_title {
  margin: 0 0 48px;
  color: #075b53;
  font-family: lato, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.works_category_list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  row-gap: 26px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.works_category_list li {
  position: relative;
  border-left: 1px solid #d8d2ce;
  padding: 0 32px;
}

.works_category_list li:last-child {
  border-right: 1px solid #d8d2ce;
}

.works_category_list a {
  position: relative;
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0 0 8px;
  color: #4b4242;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: color 0.2s ease;
}

.works_category_list li::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #075b53;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.works_category_list a.active,
.works_category_list a:hover {
  color: #075b53;
}

.works_category_list li:hover::after,
.works_category_list li:has(> a.active)::after {
  transform: scaleX(1);
}

.works_section_title {
  position: relative;
  margin-bottom: 67px;
  padding-left: 34px;
}

.works_section_title::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 7px;
  background: linear-gradient(to bottom, #075b53 0%, #4db7b9 100%);
}

.works_section_title h2 {
  margin: 5px 0 0;
  color: #075b53;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
}

.works_section_title span {
  color: #075b53;
  font-family: lato, sans-serif;
  font-size: 12px;
  line-height: 1;
}

.works_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 40px;
  row-gap: 64px;
}

.works_card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid #075b53;
}

.works_card_image {
  display: block;
  overflow: hidden;
  aspect-ratio: 417 / 533;
  margin-bottom: 16px;
}

.works_card_image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
}

.works_card_image:hover img.is-loaded {
  transform: translateY(0) scale(1.05);
}

.works_card_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.works_card_tags span {
  padding: 7px 12px;
  background: #f5f1e8;
  color: #8a837f;
  font-size: 12px;
  line-height: 1;
}

.works_card h3 {
  margin: 0 0 13px;
  color: #221815;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.45;
}

.works_card p {
  margin: 0 0 22px;
  color: #4b4242;
  font-size: 14px;
  line-height: 1.8;
}

.works_card_more {
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  gap: 7px;
  margin-top: auto;
  color: #075b53;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.works_card_arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #075b53;
  color: #fff;
  font-family: sans-serif;
  font-size: 5px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.works_card_more:hover .works_card_arrow {
  transform: translateX(3px);
}

.works_category_content {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  column-gap: 60px;
  align-items: start;
}

.works_filter {
  min-width: 0;
}

.works_filter_title {
  margin: 0 0 24px;
  color: #075b53;
  font-family: lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.works_filter_list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.works_filter_list li {
  margin: 0;
}

.works_filter_list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 4px 18px;
  box-sizing: border-box;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  background: #fff;
  letter-spacing: 0.06em;
  color: #8a837f;
  font-size: 15px;
  line-height: 1.3;
  text-decoration: none;
  transition: 0.2s;
}

.works_filter_list a.active,
.works_filter_list a:hover {
  background: #8a837f;
  border-color: #8a837f;
  color: #fff;
}

.works_category_main {
  min-width: 0;
}

.works_category_main .works_grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* News detail page styles */
.news_detail {
  width: calc(100% - 80px);
  max-width: 857px;
  margin: 138px auto 0;
}

.news_detail_header {
  margin-bottom: 48px;
}

.news_detail_label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 73px;
  height: 24px;
  padding: 0 10px;
  margin-bottom: 28px;
  margin-right: 8px;
  border-radius: 2px;
  background: #f5f1e8;
  color: #8a837f;
  font-size: 12px;
  line-height: 24px;
}

.works_detail_page .work_detail_labels {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 8px;
  margin-bottom: 28px;
}

.works_detail_page .work_detail_labels .news_detail_label {
  margin: 0;
}

.news_detail_header h1 {
  margin: 0 0 24px;
  color: #221815;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.news_detail_header time {
  display: block;
  color: #8a837f;
  font-family: lato, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.news_detail_body {
  color: #4b4242;
  font-size: 15px;
  line-height: 2.2;
}

.news_detail_body p {
  margin: 0 0 28px;
}

.news_detail_body a {
  color: #4b4242;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.news_detail_body a:hover {
  color: #075b53;
}

.news_detail_body ul {
  margin: -10px 0 28px;
  padding: 0;
  list-style: none;
}

.news_detail_body li {
  margin: 0;
}
.news_detail_body img {
  max-width: 100%;
  margin-bottom: 20px;
}

.news_detail_body h3 {
  font-size: 20px;
  font-weight: 500;
  border-left: 6px solid #d8d2ce;
  padding: 0 0 0 20px;
  letter-spacing: 0.04em;
  margin: 90px 0 35px 0;
  line-height: 1.7;
}

.news_detail_nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-top: 90px;
  margin-bottom: 240px;
  padding-top: 28px;
  border-top: 1px solid #e7e3df;
}

.news_detail_nav a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #4b4242;
  font-family: lato, zen-kaku-gothic-new, sans-serif;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.news_detail_nav a:hover {
  color: #075b53;
}

.news_detail_prev {
  justify-self: start;
}

.news_detail_back {
  justify-self: center;
  font-size: 15px;
}

.news_detail_next {
  justify-self: end;
}
.news_detail_prev img,
.news_detail_next img {
  position: relative;
  top: -4px;
  width: 7px;
  margin: 0 10px;
}
.news_detail_prev span,
.news_detail_next span {
  font-family: lato, sans-serif;
  font-size: 15px;
  letter-spacing: 0.06em;
}
.news_detail_prev span:first-child,
.news_detail_next span:last-child {
  color: #075b53;
  font-size: 15px;
  line-height: 1;
}

.news_detail + #contact_bnr {
  margin-top: 210px;
}

/*************** Work detail related contents ***************/
.work_detail_related {
  margin-top: 0;
}

.work_detail_taxonomy {
  padding: 78px 40px 90px;
  background: #f8f6f1;
  text-align: center;
}

.work_detail_category_block {
  margin-bottom: 34px;
}

.work_detail_taxonomy_title {
  margin: 0 0 42px;
  color: #075b53;
  font-family: lato, sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.work_detail_category_list,
.work_detail_filter_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.work_detail_category_list li {
  position: relative;
  padding: 0 30px;
  border-left: 1px solid #d8d2ce;
}

.work_detail_category_list li:last-child {
  border-right: 1px solid #d8d2ce;
}

.work_detail_category_list a {
  display: inline-block;
  padding-bottom: 8px;
  color: #4b4242;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1;
}

.work_detail_category_list a.active,
.work_detail_category_list a:hover {
  color: #075b53;
}

.work_detail_filter_list {
  gap: 12px 20px;
  max-width: 950px;
  margin: 0 auto;
}

.work_detail_filter_list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 4px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  background: #fff;
  color: #8a837f;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.work_detail_filter_list a.active,
.work_detail_filter_list a:hover {
  border-color: #8a837f;
  background: #8a837f;
  color: #fff;
}

.work_detail_related_inner {
  width: calc(100% - 80px);
  max-width: 1290px;
  margin: 0 auto;
  padding: 110px 0 150px;
}

.work_detail_related_title {
  margin: 0 0 85px;
  color: #075b53;
  font-size: 30px;
  font-weight: 500;
}

.work_detail_related_slider {
  width: calc(100% + ((100vw - 100%) / 2));
  overflow: hidden;
}

.work_detail_related_slider .swiper-slide {
  width: calc((min(1290px, calc(100vw - 80px)) - 80px) / 3);
  height: auto;
}

.work_detail_related_slider .works_card {
  position: relative;
  padding-bottom: 54px;
}

.work_detail_related_slider .works_card_more {
  position: absolute;
  right: 0;
  bottom: 7px;
  margin-top: 0;
  margin-right: 10px;
}

.work_detail_related_controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 27px;
  margin-top: 85px;
}

.work_detail_related_prev,
.work_detail_related_next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  cursor: pointer;
}
.work_detail_related_prev img,
.work_detail_related_next img {
  width: 13px;
}
.work_detail_related_prev.swiper-button-disabled,
.work_detail_related_next.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}

.work_detail_related_separator {
  color: #075b53;
  font-family: lato, sans-serif;
  font-size: 14px;
  line-height: 1;
}

/* About page */
.about_page {
  --green: #075b53;
  --deep: #006158;
  --ink: #4b4242;
  --cream: #f6f3eb;
  color: var(--ink);
  margin-bottom: 120px;
}
.about_page a {
  color: inherit;
  text-decoration: none;
}
.about_page .service_card a {
  color: #fff;
}
.about_page .about_source_archive {
  display: none;
}
.about_hero {
  position: relative;
  min-height: 580px;
  background: url("/img/about_mainvisual.jpg") center 46% / cover no-repeat;
}

.about_hero.shop {
  position: relative;
  min-height: 580px;
  background: url("/img/shop_mainvisual.jpg") center 46% / cover no-repeat;
}
.about_hero_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  text-align: center;
  transform: translate(-50%, -50%);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
.about_hero h1 {
  font:
    300 clamp(38px, 4.2vw, 64px) lato,
    sans-serif;
  letter-spacing: 0.035em;
}
.about_hero p {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.25em;
}
.about_page > .lower_breadcrumb {
  padding-top: 40px;
}
.about_inner {
  width: calc(100% - 120px);
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
}
.about_message {
  margin-top: 90px;
  padding: 105px 0 120px;
}
.about_lead {
  position: relative;
  margin-bottom: 72px;
  text-align: center;
  background: none;
  width: 60%;
}
.about_lead img {
  width: 70%;
  margin: -20px 0 0 0;
}
.about_message_grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 1.25fr;
  grid-template-rows: 240px 260px;
  gap: 28px;
}
.about_message_grid > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about_message_grid > img[src="/img/about_01.jpg"] {
  height: auto;
  aspect-ratio: 380 / 508;
  align-self: start;
}
.about_message_grid > img[src="/img/about_02.jpg"] {
  height: auto;
  aspect-ratio: 552 / 332;
  align-self: start;
  padding-right: 40px;
}
.about_message_grid > img[src="/img/about_03.jpg"] {
  height: auto;
  aspect-ratio: 683 / 464;
  align-self: start;
}
.about_message_grid > img:first-child {
  grid-row: 1 / 3;
}
.about_message_grid > img:nth-of-type(2) {
  grid-column: 3;
  grid-row: 1;
}
.about_message_grid > img:nth-of-type(3) {
  grid-column: 2;
  grid-row: 2;
}
.about_message_text {
  display: flex;
  grid-column: 2;
  flex-direction: column;
  justify-content: flex-start;
  font-size: 18px;
  font-weight: 500;
  line-height: 2.66;
  white-space: nowrap;
}
.about_message_text p + p {
  margin-top: 15px;
}
.about_message_text_bottom {
  grid-column: 3;
  grid-row: 2;
}
.about_movie {
  position: relative;
  height: clamp(330px, 42vw, 490px);
  overflow: hidden;
}
.about_movie > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about_movie button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  transform: translate(-50%, -50%);
}
.about_vision {
  padding: 180px 0;
  background: linear-gradient(to bottom, transparent 0 60%, #fff 60% 100%), linear-gradient(135deg, #f7f2e9 0%, #eef7f1 100%);
}
.about_vision_intro,
.about_core_intro {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 0;
  align-items: start;
}
.about_core_intro.about_inner {
  max-width: 1360px;
}
.about_section_heading h2 {
  color: var(--green);
  font:
    300 clamp(36px, 4vw, 68px) lato,
    sans-serif;
  letter-spacing: 0.035em;
}
.about_section_heading p {
  position: relative;
  margin-top: 9px;
  color: var(--green);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.22em;
  padding-left: 20px;
}
.about_section_heading p::before {
  position: absolute;
  left: 0;
  top: 45%;
  content: "";
  width: 10px;
  height: 60px;
  background-image: url(/img/daen_point.png);
  background-size: contain;
}

.about_vision_intro h3 {
  margin-top: 32px;
  margin-bottom: 65px;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.about_vision_intro > div:last-child > p,
.about_core_intro > p {
  font-size: 16px;
  line-height: 2.375;
  color: #221815;
}
.about_core_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 104px;
  gap: 10px;
}
.about_core_cards.about_inner {
  max-width: 1430px;
}
.about_core_cards article {
  position: relative;
  aspect-ratio: 470 / 650;
  overflow: hidden;
}
.about_core_cards img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82);
}
.about_core_cards span {
  position: absolute;
  bottom: 28px;
  left: 24px;
  color: #fff;
  font:
    300 48px lato,
    sans-serif;
  line-height: 1.14583333;
}
.about_core_cards span small {
  display: block;
  margin-top: 18px;
  font:
    500 18px zen-kaku-gothic-new,
    sans-serif;
}
.about_core_intro {
  margin-top: 58px;
}
.about_strengths {
  padding: 100px 0;
  background: url("/img/our_strengths_bg.jpg") center / cover no-repeat;
}
.about_strengths_inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  align-items: center;
}
.about_strengths_inner.about_inner {
  max-width: 1360px;
}

@media screen and (min-width: 1025px) {
  .about_strengths {
    position: relative;
  }

  .about_strengths_inner {
    position: static;
  }

  .about_strengths_inner > .about_section_heading_light {
    position: absolute;
    top: 164px;
    left: max(60px, calc((100% - 1360px) / 2));
    width: min(632px, calc(46.5% - 55.8px));
    margin: 0;
  }

  .about_strengths_inner > ol {
    grid-column: 2;
  }
}

.about_section_heading_light h2,
.about_section_heading_light p,
.about_section_heading_light span {
  color: #fff;
}
.about_section_heading_light h2 {
  font-size: 68px;
}
.about_section_heading_light span {
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-top: 40px;
  line-height: 2.375;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.about_section_heading_light p::before {
  position: absolute;
  left: 0;
  top: 45%;
  content: "";
  width: 10px;
  height: 60px;
  background-image: url(/img/daen_point_white.png);
  background-size: contain;
}
.about_strengths ol {
  position: relative;
  right: -100px;
  padding: 63px 90px 75px 83px;
  background: rgba(255, 255, 255, 0.96);
  list-style: none;
  border-radius: 5px;
}
@media (min-width: 901px) {
  .about_strengths ol {
    width: 780px;
    max-width: 780px;
  }
}

/* Green solutions page */
.gs_intro_break_sp {
  display: none;
}

.gs_more_break_sp {
  display: none;
}

.service_page:has(.gs_services) {
  --gs-green: #187d72;
  --gs-dark-green: #075b53;
  --gs-text: #4d4945;
  color: var(--gs-text);
}
.service_page:has(.gs_services) * {
  box-sizing: border-box;
}
.gs_inner {
  width: min(1360px, calc(100% - 64px));
  margin-inline: auto;
}
.gs_contents {
  height: 150px;
  padding: 30px 20px 34px;
  background: #f6f4f0;
  text-align: center;
}
.gs_contents > span {
  display: block;
  margin-bottom: 22px;
  color: var(--gs-green);
  font:
    400 16px lato,
    sans-serif;
  letter-spacing: 0.08em;
}
.gs_contents_inner {
  display: flex;
  justify-content: center;
}
.gs_contents a {
  min-width: 138px;
  padding: 0 28px 0;
  border-right: 1px solid #d5d0ca;
  color: #5e5955;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition:
    color 0.2s,
    border-bottom-color 0.2s;
}
.gs_contents a:first-child {
  border-left: 1px solid #d5d0ca;
}
.gs_contents a:hover,
.gs_contents a:focus-visible {
  border-bottom: 2px solid var(--gs-green);
  color: var(--gs-green);
}
.gs_services img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.gs_service {
  scroll-margin-top: 90px;
}
.gs_service h2 {
  position: relative;
  margin: 0 0 38px;
  padding-left: 38px;
  color: var(--gs-dark-green);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.06em;
  padding-bottom: 2px;
}
.gs_service h2::before {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 7px;
  background: linear-gradient(to bottom, #075b53 0%, #4db7b9 100%);
  content: "";
}
.gs_service h2 small {
  display: block;
  margin-top: 8px;
  margin-bottom: 8px;
  font:
    400 14px lato,
    sans-serif;
  letter-spacing: 1px;
}
.gs_service p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.01em;
}
.gs_service_indoor {
  display: grid;
  grid-template-columns: 33% 1fr;
  gap: 95px;
  align-items: center;
  padding-top: 160px;
  padding-bottom: 170px;
}
.gs_service_indoor .gs_service_copy {
  align-self: start;
}
.sd_deco.gs_service_indoor {
  display: block;
  padding-top: 160px;
  padding-bottom: 170px;
}
.sd_deco_intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: start;
  margin-bottom: 118px;
}
.sd_deco_intro h2 {
  margin-bottom: 0;
}
.sd_deco_text h3,
.sd_deco_examples h3 {
  margin: 0 0 22px;
  color: #075b53;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.sd_deco_text h3 small,
.sd_deco_examples h3 small {
  display: block;
  margin: 15px 0 35px;
  color: #075b53;
  font-family: lato, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
}
.sd_deco_text {
  padding: 37px 0 0 46px;
}
.sd_deco_text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color: #221815;
}
.sd_deco_live {
  display: grid;
  grid-template-columns: 39.5% 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}
.sd_deco_live > img {
  height: 452px;
}
.sd_deco_artificial {
  display: grid;
  grid-template-columns: 52.5% 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 85px;
  margin-right: 40px;
  margin-left: 40px;
}
.sd_deco_artificial_main {
  height: 695px;
}
.sd_deco_artificial_side {
  display: flex;
  flex-direction: column;
  gap: 38px;
}
.sd_deco_artificial_side > img {
  height: 360px;
}
.sd_deco_examples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 140px;
}
.sd_deco_examples article > img {
  height: 266px;
  margin-bottom: 25px;
}

.sd_deco_examples p {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color: #221815;
}

/*シーズン装飾*/
.sd_seasonal {
  background: linear-gradient(to bottom right, #f7f2e9 40%, #eff6f0 100%);
}
.gs_seasonal_inner {
  display: grid;
  grid-template-columns: 39% 1fr;
  gap: 100px;
  align-items: center;
  padding-top: 85px;
  padding-bottom: 95px;
}
.gs_seasonal_inner > img {
  height: 450px;
}
.gs_seasonal_inner h3 {
  font-size: 32px;
  font-weight: 500;
  color: #075b53;
}
.gs_seasonal_inner h3 small {
  display: block;
  font-family: lato, sans-serif;
  font-size: 12px;
  font-weight: 400;
  margin-top: 4px;
}
.gs_seasonal_inner p {
  font-size: 16px;
  font-weight: 400;
  margin-top: 4px;
  line-height: 2;
  color: #221815;
  margin-top: 25px;
}

/*イルミネーション*/
.sd_illumination {
  margin: 155px auto 0;
}
.sd_illumination h2 {
  position: relative;
  margin: 0 0 38px;
  padding-left: 38px;
  color: var(--gs-dark-green);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.06em;
  padding-bottom: 2px;
}
.sd_illumination h2::before {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 7px;
  background: linear-gradient(to bottom, #075b53 0%, #4db7b9 100%);
  content: "";
}
.sd_illumination h2 small {
  display: block;
  margin-top: 8px;
  margin-bottom: 8px;
  font:
    400 14px lato,
    sans-serif;
  letter-spacing: 1px;
}
.illumination_copy {
  position: relative;
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 95px;
  align-items: top;
  margin-bottom: 155px;
}
.illumination_copy p {
  color: #221815;
  font-size: 16px;
  line-height: 2;
}
.illumination_main_visual {
  display: block;
}
.illumination_main_visual img {
  display: block;
  width: 100%;
  height: auto;
}
.tree_illumi {
  position: absolute;
  bottom: 0;
  left: 24%;
  width: 65%;
}
.tree_illumi h3 {
  margin: 0 0 22px;
  color: #075b53;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.tree_illumi h3 small {
  display: block;
  margin: 15px 0 35px;
  color: #075b53;
  font-family: lato, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
}
.mitif_illumi {
  position: relative;
  width: 100%;
  height: 485px;
  background-image: url(/img/motif_illumi.jpg);
  background-size: cover;
  margin: 120px 0 0 0;
}
.mitif_illumi_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}
.mitif_illumi_inner h3 {
  font-size: 32px;
  font-weight: 500;
}
.mitif_illumi_inner h3 small {
  display: block;
  font-family: lato, sans-serif;
  font-size: 12px;
  font-weight: 500;
  margin-top: 4px;
}
.mitif_illumi_inner p {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  margin-top: 22px;
}
.sd_service_mist {
  background: linear-gradient(to bottom right, #f7f2e9 0%, #eff6f0 100%);
  margin: 65px 0 0;
}
.sd_service_mist > img {
  height: 390px;
}
.sd_service_mist .gs_more {
  width: 325px;
}

/* 体験コンテンツ */
.sd_service_experience {
  padding: 150px 0 165px;
}
.sd_experience_intro {
  display: grid;
  grid-template-columns: 43% 1fr;
  gap: 105px;
  align-items: start;
}
.sd_experience_intro > img {
  height: 710px;
}
.sd_experience_intro .note {
  margin-top: 10px;
}
.sd_experience_intro_body > p {
  color: #221815;
}
.sd_experience_interactive {
  margin-top: 320px;
}
.sd_service_experience h3 {
  margin: 0 0 28px;
  color: #075b53;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.sd_service_experience h3 small {
  display: block;
  margin-top: 10px;
  font:
    400 12px lato,
    sans-serif;
  letter-spacing: 0.08em;
}

.sd_service_experience p {
  max-width: 430px;
}
.sd_experience_ar {
  position: relative;
  display: grid;
  grid-template-columns: 60.3% 1fr;
  gap: 85px;
  min-height: 660px;
  margin-top: 150px;
}
.sd_experience_ar_visual {
  grid-column: 2;
  margin: 0;
}
.sd_experience_ar_visual img {
  height: 535px;
  padding-right: 75px;
}
.sd_experience_ar_visual figcaption {
  position: absolute;
  left: 150px;
  bottom: 60px;
  color: #221815;
  font-size: 16px;
  line-height: 1.9;
}
.sd_experience_people {
  position: absolute;
  right: 36.5%;
  bottom: 60px;
  width: 436px !important;
  height: 266px;
}
.sd_experience_sound {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 119px;
  align-items: end;
  margin-top: 58px;
}
.sd_experience_copy p {
  max-width: 700px;
}
.sd_experience_sound > img {
  height: 430px;
}

/*ワークショップ*/
.work_shop {
  position: relative;
  width: 100%;
  height: 427px;
  background-image: url(/img/work_shop.jpg);
  background-size: cover;
  margin: -47px 0 0 0;
  padding: 45px 0;
}
.work_shop_inner {
  display: grid;
  grid-template-columns: 35% 1fr;
  gap: 119px;
  align-items: center;
  color: #fff;
  width: 1360px;
  margin: 0 auto;
}
.work_shop_inner h3 {
  font-size: 32px;
  font-weight: 500;
}
.work_shop_inner h3 small {
  display: block;
  font-family: lato, sans-serif;
  font-size: 12px;
  font-weight: 500;
  margin-top: 4px;
}
.work_shop_inner p {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  margin-top: 22px;
}

/*セールスプロモーション*/
.sales {
  position: relative;
  width: 100%;
  height: 670px;
  background-image: url(/img/sales.jpg);
  background-size: cover;
  margin: -47px 0 40px 0;
  padding: 45px 0;
}
.sales_inner {
  width: 1425px;
  margin: 0 auto;
}
.sales_inner .sales_midashi {
  display: grid;
  grid-template-columns: 64% 1fr;
  width: 1360px;
  align-items: center;
  margin: 0 auto;
}
.sales_inner h3 {
  font-size: 32px;
  font-weight: 500;
  color: #075b53;
  line-height: 1.34;
}
.sales_inner h3 small {
  display: block;
  font-family: lato, sans-serif;
  font-size: 12px;
  font-weight: 400;
  margin-top: 7px;
  letter-spacing: 1px;
}
.sales_inner p {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  margin-top: 22px;
  color: #221815;
}
.sales_inner .sales_chart {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  align-items: center;
  margin: 60px 0 0 0;
}

/* プロモーション支援 */
.sd_service_promotion {
  padding: 150px 0 165px;
}
.sd_promotion_intro,
.sd_promotion_works_intro {
  display: grid;
  grid-template-columns: 53% 1fr;
  gap: 119px;
}
.sd_promotion_intro > p,
.sd_promotion_works_intro > p {
  margin: 0;
  font-size: 16px;
  color: #221815;
  line-height: 2;
}
.sd_promotion_intro h2::before {
  height: 82px;
}
.sd_promotion_works_intro {
  align-items: end;
  margin: 130px 50px 0;
}
.sd_promotion_works_intro h3 {
  margin: 0;
  color: #075b53;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
.sd_promotion_works_intro h3 small {
  display: block;
  margin-top: 10px;
  font:
    400 12px lato,
    sans-serif;
  letter-spacing: 0.08em;
}
.sd_promotion_gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 29px;
  margin: 58px 50px 0;
}
.sd_promotion_gallery figure {
  margin: 0;
}
.sd_promotion_gallery img {
  display: block;
  width: 100%;
  height: auto;
}
.sd_promotion_gallery figcaption {
  margin-top: 15px;
  color: #111;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/*indoor_gallery*/
.gs_indoor_gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 230px 230px;
  gap: 10px;
}
.gs_indoor_gallery img {
  height: 100%;
}
.gs_service_landscape,
.gs_service_maintenance {
  background: linear-gradient(to bottom right, #f7f2e9 0%, #eff6f0 100%);
}
.gs_landscape_inner {
  display: grid;
  grid-template-columns: 51.2% 1fr;
  gap: 100px;
  align-items: center;
  padding-top: 95px;
  padding-bottom: 95px;
}
.gs_landscape_inner > img {
  height: 440px;
}
.gs_more {
  box-sizing: border-box;
  display: inline-flex;
  width: 229px;
  height: 67px;
  margin-top: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 24px;
  background: #075b53;
  border: 1px solid transparent;
  color: #fff !important;
  font-size: 15px;
  font-weight: 500;
  border-radius: 5px;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}
.gs_more.large {
  display: inline-flex;
  width: 327px;
  height: 67px;
  margin-top: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 24px;
  background: #075b53;
  color: #fff !important;
  font-size: 15px;
  font-weight: 500;
  border-radius: 5px;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}
.gs_more span {
  position: relative;
  display: grid;
  width: 68px;
  height: 100%;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  color: transparent;
  place-items: center;
  font-size: 26px;
  font-family: lato, sans-serif;
}
.gs_more span::after {
  position: absolute;
  color: #fff;
  content: "→";
}
.gs_more:hover span::after {
  animation: homeButtonArrowSlide 0.55s ease;
  color: #006158 !important;
}
.gs_more:hover {
  background: #fff;
  border-color: #075b53;
  color: #006158 !important;
}
.gs_more:hover span {
  border-left-color: #075b53;
}
.gs_service_rooftop {
  padding-top: 166px;
  padding-bottom: 110px;
  border-bottom: 1px solid #ece9e4;
}

.gs_service_wall {
  padding-top: 93px;
  padding-bottom: 110px;
  border-bottom: 1px solid #ece9e4;
}
.gs_service_heading_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
  margin-bottom: 30px;
}
.gs_wide_image {
  height: 560px;
}
.gs_two_images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.gs_two_images img {
  height: 400px;
}
.gs_service_rental {
  position: relative;
  display: block;
  grid-template-columns: 40% 1fr;
  gap: 80px;
  padding-top: 100px;
  padding-bottom: 140px;
  min-height: 990px;
}
.gs_service_rental .gs_service_copy {
  width: 32%;
}
.gs_rental_images {
  position: absolute;
  top: 100px;
  right: 50px;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 26px;
  align-items: end;
  width: 80%;
}
.gs_rental_images img:first-child {
  height: 392px;
  aspect-ratio: 635 / 392;
}
.gs_rental_images img:last-child {
  height: 570px;
  aspect-ratio: 390 / 570;
  align-self: start;
  margin-bottom: 44%;
}

.gs_maintenance_inner {
  display: grid;
  grid-template-columns: 35% 1fr;
  gap: 95px;
  align-items: top;
  padding-top: 90px;
  padding-bottom: 90px;
}
.service_page .maintenance_chart {
  max-width: 1132px;
  width: 100%;
  margin: 65px 0 0 0;
}
.gs_maintenance_inner img {
  position: relative;
  left: 60px;
}

/*外構・住宅・リノベーション*/

.townscape.gs_service_indoor {
  display: block;
  padding-top: 160px;
  padding-bottom: 170px;
}
.townscape_intro {
  display: block;
  margin-bottom: 0;
}
.townscape_intro h2 {
  margin-bottom: 30px;
}
.townscape_text h3 {
  margin: 0 0 22px;
  color: #075b53;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.townscape_text h3 small {
  display: block;
  margin: 15px 0 35px;
  color: #075b53;
  font-family: lato, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
}
.townscape_text {
  padding: 37px 0 0 46px;
}
.townscape_text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color: #221815;
}
.townscape_content {
  position: relative;
  left: 200px;
  display: grid;
  grid-template-columns: 39.5% 1fr;
  gap: 40px;
  align-items: end;
  max-width: 1400px;
  margin: 50px auto 125px;
}
.townscape_content > img.townscape01 {
  height: 380px;
}
.townscape_content > img.townscape02 {
  position: relative;
  top: -170px;
  height: 460px;
}
.townscape_content2 {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 85px;
  margin-right: 40px;
}
.townscape_content2 p {
  font-size: 20px;
  font-weight: 500;
  color: #221815;
  margin: 26px 0 0 0;
}
.townscape03 {
  height: 410px;
}
.townscape04 {
  height: 410px;
}

/* Landscape modal */
body.gs_modal_open {
  overflow: hidden;
}
.gs_modal[hidden] {
  display: none;
}
.gs_modal {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: flex;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  padding: 70px 5vw;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0s linear 0.4s;
}
.gs_modal.is-active {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.4s ease,
    visibility 0s linear 0s;
}
.gs_modal_backdrop {
  position: fixed;
  inset: 0;
  background: rgba(214, 214, 214, 0.9);
}
.gs_modal_panel {
  position: relative;
  width: 100%;
  max-width: 1345px;
  height: calc(100vh - 140px);
  height: calc(100dvh - 140px);
  margin: 0 auto;
  padding: 105px 0 130px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #fff;
  color: #4d4945;
  outline: none;
  opacity: 0;
  transform: translateY(15px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.gs_modal.is-active .gs_modal_panel {
  opacity: 1;
  transform: translateY(0);
}
.gs_modal_close {
  position: absolute;
  z-index: 1;
  top: 28px;
  right: 30px;
  display: grid;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #075b53;
  cursor: pointer;
  font:
    300 44px/1 Arial,
    sans-serif;
  place-items: center;
}
.gs_modal_content {
  max-width: 1200px;
  margin: 0 auto;
}
.gs_modal_intro {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 80px;
  align-items: start;
  width: 1050px;
  margin: 0 auto;
}
.gs_modal_intro h2 {
  position: relative;
  margin: 0;
  padding-left: 38px;
  color: #075b53;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.06em;
}
.gs_modal_intro h2::before {
  position: absolute;
  inset: 2px auto 2px 0;
  width: 7px;
  background: linear-gradient(to bottom, #075b53, #4db7b9);
  content: "";
}
.gs_modal_intro h2 small {
  display: block;
  margin-top: 8px;
  font:
    400 14px lato,
    sans-serif;
  letter-spacing: 1px;
}
.gs_modal_intro p,
.gs_modal_example_text p,
.gs_modal_lead {
  margin: 0;
  font-size: 16px;
  line-height: 2;
}
.gs_modal_benefits {
  display: grid;
  grid-template-columns: 247px 1fr;
  align-items: center;
  margin-top: 70px;
  padding: 34px 55px 34px 150px;
  background: linear-gradient(110deg, #f7f2e9, #eff6f0);
  min-height: 210px;
}
.gs_modal_benefits_sp {
  display: none;
}
.gs_modal_benefits h3 {
  margin: 0;
  color: #075b53;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.08em;
}
.gs_modal_benefits ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.gs_modal_benefits li {
  display: grid;
  width: 132px;
  aspect-ratio: 1;
  margin-left: -1px;
  border: 1px solid #187d72;
  border-radius: 50%;
  color: #187d72;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  place-items: center;
}
.gs_modal_benefits li:nth-child(2) {
  position: relative;
  right: 5px;
}
.gs_modal_benefits li:nth-child(3) {
  position: relative;
  right: 10px;
}
.gs_modal_benefits li:nth-child(4) {
  position: relative;
  right: 15px;
}
.gs_modal_benefits li:nth-child(5) {
  position: relative;
  right: 20px;
}

.gs_modal_examples {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 23px;
  margin-top: 95px;
  max-width: 1134px;
  margin: 95px auto 0;
}
.gs_modal_lead {
  align-self: top;
  padding: 65px 0 0 35px;
  width: 80%;
}
.gs_modal_example {
  margin: 0 0;
}
.gs_photo_credit {
  display: block;
  font-size: 13px;
}
.gs_modal_example img {
  display: block;
  width: 100%;
  height: 310px;
  object-fit: cover;
}
.gs_modal_example figcaption {
  margin-top: 18px;
  color: #000;
  font-size: 20px;
  font-weight: 500;
}
.gs_modal_example_right {
  grid-column: 2;
}
.gs_modal_example_left {
  position: relative;
  top: -200px;
  grid-column: 1;
  grid-row: 2;
}
.gs_modal_example_text {
  grid-column: 1;
  align-self: end;
  padding: 0 35px 40px 120px;
}
.gs_modal_example_text h3 {
  margin: 0 0 20px;
  color: #222;
  font-size: 18px;
}
.gs_modal_example_tall {
  grid-row: 3;
  margin-top: -200px;
  margin-bottom: 50px;
}
.gs_modal_example_tall img {
  height: 597px;
  max-width: 468px;
}

.gs_modal_examples_landscape {
  row-gap: 23px;
}
.gs_modal_examples_landscape .gs_modal_lead {
  grid-column: 1 / -1;
  grid-row: 1;
  width: 100%;
  padding: 65px 0 50px 35px;
}
.gs_modal_examples_landscape .gs_modal_example_right:not(.gs_modal_example_tall) {
  grid-column: 1;
  grid-row: 2;
}
.gs_modal_examples_landscape .gs_modal_example_left {
  position: static;
  grid-column: 2;
  grid-row: 2;
}
.gs_modal_examples_landscape .gs_modal_example:not(.gs_modal_example_tall) img {
  height: auto;
  aspect-ratio: 1.62 / 1;
}
.gs_modal_examples_landscape .gs_modal_example_image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.62 / 1;
  object-fit: cover;
}
.gs_modal_examples_landscape .gs_modal_example_image_04 {
  grid-column: 1;
  grid-row: 3;
}
.gs_modal_examples_landscape .gs_modal_example_image_05 {
  grid-column: 2;
  grid-row: 3;
}
.gs_modal_examples_landscape .gs_modal_example_text {
  grid-column: 1;
  grid-row: 4;
  align-self: end;
  margin-top: 110px;
}
.gs_modal_examples_landscape .gs_modal_example_tall {
  grid-column: 2;
  grid-row: 4;
  justify-self: start;
  width: 85%;
  margin: 110px 0 50px;
}
.gs_modal_examples_landscape .gs_modal_example_tall img {
  width: 100%;
}

/*育庭について*/
.huguniwa {
  background-image: url(/img/huguniwa.jpg);
  background-size: cover;
  height: 635px;
}
.huguniwa_inner {
  display: grid;
  grid-template-columns: 53% 1fr;
  gap: 100px;
  align-items: center;
}
.huguniwa_inner > img {
  height: auto;
}
.huguniwa_inner h3 {
  position: relative;
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  padding-left: 37px;
}
.huguniwa_inner h3::before {
  position: absolute;
  left: 0;
  top: -10px;
  content: "";
  width: 7px;
  height: 83px;
  background-color: #fff;
}
.huguniwa_inner h3 small {
  display: block;
  font-family: lato, sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin-top: 9px;
}
.huguniwa_inner p {
  font-size: 16px;
  font-weight: 500;
  margin-top: 4px;
  line-height: 2;
  color: #fff;
  margin-top: 35px;
}

/*リノベーション*/
.sd_renovation {
  margin: 10px auto 0;
}
.sd_renovation h2 {
  position: relative;
  margin: 0 0 38px;
  padding-left: 38px;
  color: var(--gs-dark-green);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.06em;
  padding-bottom: 2px;
}
.sd_renovation h2::before {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 7px;
  height: 82px;
  background: linear-gradient(to bottom, #075b53 0%, #4db7b9 100%);
  content: "";
}
.sd_renovation h2 small {
  display: block;
  margin-top: 8px;
  margin-bottom: 8px;
  font:
    400 14px lato,
    sans-serif;
  letter-spacing: 1px;
}
.renovation_copy {
  position: relative;
  display: grid;
  grid-template-columns: 55.5% 1fr;
  gap: 95px;
  align-items: top;
  margin-bottom: 85px;
}
.renovation_copy p {
  color: #221815;
  font-size: 16px;
  line-height: 2;
}
.renovation_copy2 {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: top;
  margin-bottom: 140px;
}

.one_stop {
  background: linear-gradient(to bottom right, #f7f2e9 0%, #eff6f0 100%);
  margin: 65px 0 0;
  padding: 30px 0 0 0;
}
.one_stop > img {
  height: 390px;
}
.one_stop .gs_more {
  width: 325px;
}
.one_stop_inner {
  display: block;
  padding-top: 90px;
  padding-bottom: 110px;
}
.one_stop_inner h2 {
  font-size: 32px;
}
.one_stop_inner h2::before {
  height: 56px;
  top: -5px;
}
.one_stop_inner .one_stop_copy {
  display: grid;
  grid-template-columns: 68.5% 1fr;
  gap: 0;
  align-self: start;
  margin-bottom: 80px;
}
.one_stop_inner img {
  max-width: 1440px;
  margin: 0 auto;
}

/* 設計提案 */
.design_proposal {
  padding: 150px 0 82px;
}
.design_proposa_intro_intro {
  display: grid;
  grid-template-columns: 56.5% 1fr;
  margin-bottom: 20px;
}
.design_proposa_intro_intro > p {
  margin: 0;
  font-size: 16px;
  color: #221815;
  line-height: 2;
}
.design_proposa_intro_intro h2::before {
  height: 82px;
}
.design_proposal_img {
  width: 100%;
  height: 571px;
  background-image: url(/img/design_proposal.jpg);
  background-size: cover;
}
.design_proposal_produce {
  position: relative;
  top: -133px;
  width: 1326px;
  height: 688px;
  margin: 0 auto;
}
.produce_inner {
  position: absolute;
  top: 50px;
  display: grid;
  grid-template-columns: 41% 1fr;
  gap: 70px;
  padding: 42px 100px 0 110px;
}
.produce_inner h4 {
  font-size: 24px;
  margin-bottom: 26px;
  line-height: 1.75;
}
/*公共空間・都市開発*/
.public_inner {
  width: min(1550px, calc(100% - 64px));
  margin-inline: auto;
}
.public.gs_service_indoor {
  display: block;
  padding-top: 160px;
  padding-bottom: 80px;
}
.public_intro {
  display: grid;
  grid-template-columns: 58% 1fr;
}
.public_intro h2 {
  margin-bottom: 30px;
}
.public_content {
  display: grid;
  grid-template-columns: 26fr 37fr 37fr;
  gap: 16px;
  align-items: center;
  margin: 104px 40px 40px;
}
.public_content img {
  height: 339px;
}
.public_content h3 {
  margin: 0 0 22px;
  color: #075b53;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.public_content h3 small {
  display: block;
  margin: 15px 0 35px;
  color: #075b53;
  font-family: lato, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
}
.public_content p {
  font-size: 16px;
  font-weight: 400;
  color: #221815;
  line-height: 2;
  margin: 26px 0 0 0;
  max-width: 330px;
}
.public_content p.note {
  font-size: 20px;
  font-weight: 500;
  color: #221815;
  line-height: 2;
  margin: 13px 0 0 0;
  max-width: none;
}

.public_content2 {
  position: relative;
  right: 58px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
  margin: 104px auto 85px;
  width: min(1112px, calc(100% - 64px));
}
.public_content2 img {
  height: 339px;
}
.public_content2 h3 {
  margin: 0 0 22px;
  color: #075b53;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.public_content2 h3 small {
  display: block;
  margin: 15px 0 35px;
  color: #075b53;
  font-family: lato, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
}
.public_content2 p {
  font-size: 16px;
  font-weight: 400;
  color: #221815;
  line-height: 2;
  margin: 26px 0 0 0;
  max-width: 330px;
}
.public_content2 p.note {
  font-size: 20px;
  font-weight: 500;
  color: #221815;
  line-height: 2;
  margin: 13px 0 0 0;
  max-width: none;
}

.public_content3 {
  position: relative;
  right: 57px;
  display: grid;
  grid-template-columns: 37fr 37fr 26fr;
  gap: 16px;
  align-items: center;
  margin: 104px 40px 40px;
}
.public_content3 img {
  height: 339px;
}
.public_content3 h3 {
  margin: 0 0 22px 45px;
  color: #075b53;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.public_content3 h3 small {
  display: block;
  margin: 15px 0 35px;
  color: #075b53;
  font-family: lato, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
}
.public_content3 p {
  font-size: 16px;
  font-weight: 400;
  color: #221815;
  line-height: 2;
  margin: 26px 0 0 45px;
  max-width: 330px;
}
.public_content3 p.note {
  font-size: 20px;
  font-weight: 500;
  color: #221815;
  line-height: 2;
  margin: 13px 0 0 0;
  max-width: none;
}

/* 暮らし・体験サービス：フラワーショップ */
.flower_shop {
  padding: 225px 0 100px;
  background: #fff;
  color: #221815;
}

.flower_shop > .home_section,
.flower_shop > div:nth-of-type(2) {
  width: min(1360px, calc(100% - 120px));
  margin-inline: auto;
}

.flower_shop > .home_section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.92fr);
  gap: clamp(60px, 8vw, 150px);
  align-items: start;
  padding: 0 0 118px;
}

.flower_shop .home_heading_block h2 {
  margin: 0;
  color: #075b53;
  font-family: zen-kaku-gothic-new, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.34;
  letter-spacing: 0.08em;
}

.flower_shop .home_heading_block h2 small {
  display: block;
  margin-top: 10px;
  font-family: lato, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.flower_shop > .home_section > div:last-child > p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  color: #221815;
  letter-spacing: 0.02em;
}

.flower_shop .home_btn {
  display: inline-flex;
  width: 262px;
  height: 67px;
  margin-top: 32px;
  padding-left: 24px;
  background: #075b53;
  color: #fff;
}
.flower_shop .home_btn:hover {
  background: #f6f3eb;
  color: #006158 !important;
}

.flower_shop .home_btn span {
  width: 66px;
}

.flower_shop_btn_sp {
  display: none;
}

.flower_shop > div:nth-of-type(2) {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(24px, 2.4vw, 37px);
  row-gap: 55px;
  width: min(1160px, calc(100% - 120px));
}

.flower_shop > div:nth-of-type(2) > div {
  min-width: 0;
}

.flower_shop > div:nth-of-type(2) > div > img:first-child {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 843 / 522;
  object-fit: cover;
}

.flower_shop > div:nth-of-type(2) > div > .flowershop_logo,
.flower_shop > div:nth-of-type(2) > div > .flowershop_logo img {
  display: block;
  width: 100%;
  height: auto;
}

.flower_shop > div:nth-of-type(2) > div > .flowershop_logo {
  margin: 16px 0 16px;
}

.flower_shop > div:nth-of-type(2) > div > .flowershop_logo img {
  object-fit: contain;
  object-position: left center;
}

.flower_shop > div:nth-of-type(2) > div > p {
  margin: 0;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.02em;
}

/* 暮らし・体験サービス：ファーム・カルチャー */
.farm_culture {
  padding: 180px 0 0;
  background: #fff;
  color: #221815;
}

.farm_culture > .home_section,
.farm_culture > .farm_culture_content {
  width: min(1360px, calc(100% - 120px));
  margin-inline: auto;
}

.farm_culture > .home_section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.92fr);
  gap: clamp(60px, 8vw, 150px);
  align-items: start;
  padding: 0 0 48px;
}

.farm_culture .home_heading_block h2 {
  position: relative;
  margin: 0 0 38px;
  padding-left: 38px;
  color: #075b53;
  font-size: 40px;
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.06em;
  padding-bottom: 2px;
}

.farm_culture .home_heading_block h2::before {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 7px;
  height: 82px;
  background: linear-gradient(to bottom, #075b53 0%, #4db7b9 100%);
  content: "";
}

.farm_culture .home_heading_block h2 small {
  display: block;
  margin-top: 10px;
  font-family: lato, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.farm_culture > .home_section > div:last-child > p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  color: #221815;
  letter-spacing: 0.04em;
}

.farm_culture .farm_culture_content {
  width: min(1360px, calc(100% - 120px));
  margin-inline: auto;
}

.farm_culture .farm_culture_about {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(420px, 0.9fr);
  gap: clamp(70px, 9vw, 155px);
  align-items: center;
  min-height: 310px;
  padding: 35px 135px 90px 32px;
}

.farm_culture .farm_culture_logo {
  display: block;
  width: min(100%, 384px);
  height: auto;
  margin-inline: auto;
}

.farm_culture .farm_culture_about p {
  margin: 0;
  color: #221815;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
}

.farm_culture .farm_culture_about .home_btn {
  margin-top: 32px;
  width: 260px;
}

.farm_culture .farm_culture_cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  border-bottom: 1px solid #d8d2ce;
  padding: 0 0 130px;
}

.farm_culture .farm_culture_cards article {
  min-width: 0;
}

.farm_culture .farm_culture_cards img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 443 / 274;
  object-fit: cover;
}

.farm_culture .farm_culture_cards h3 {
  margin: 25px 5px 18px;
  color: #221815;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.farm_culture .farm_culture_cards p {
  margin: 0 5px;
  color: #221815;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.01em;
}

.farm_culture_mainvisual {
  width: 100%;
  max-width: none;
  margin: 0;
  height: 460px;
  background-image: url(/img/farm_culture_main.jpg);
  background-size: cover;
  background-position: center;
}

/* 暮らし・体験サービス：地域連携・産学連携 */
.regional {
  padding: 110px 0 190px;
  background: #fff;
  color: #221815;
}

.regional .regional_inner {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px 28px;
  width: min(1360px, calc(100% - 80px));
  margin-inline: auto;
}

.regional .regional_intro {
  grid-column: 1 / 6;
  grid-row: 1;
  padding-top: 0;
}

.regional .regional_intro h2 {
  position: relative;
  top: -1px;
  margin: 0;
  padding: 4px 0 5px 38px;
  color: #075b53;
  font-family: zen-kaku-gothic-new, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.06em;
}

.regional .regional_intro h2::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(to bottom, #075b53 0%, #4db7b9 100%);
  content: "";
}

.regional .regional_intro h2 small {
  display: block;
  margin-top: 10px;
  font-family: lato, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.regional .regional_copy {
  margin-top: 52px;
  margin-right: 20px;
}

.regional .regional_copy p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.01em;
}

.regional .regional_copy p + p {
  margin-top: 30px;
}

.regional .regional_image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.617 / 1;
  object-fit: cover;
}

.regional .regional_image_main {
  grid-column: 7 / 13;
  grid-row: 1;
  max-width: 637px;
  justify-self: end;
}

.regional .regional_subimages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 485px));
  grid-column: 4 / 13;
  grid-row: 2;
  gap: 15px;
  justify-content: end;
}

.regional .regional_image_sub01,
.regional .regional_image_sub02 {
  width: min(485px, 100%);
  max-width: 485px;
}

/* 暮らし・体験サービス：ハナノヒ */
.hananohi {
  width: 100%;
  padding: 78px 0;
  background: #075b53;
  color: #fff;
}

.hananohi .hananohi_inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(60px, 7vw, 70px);
  align-items: center;
  width: min(1270px, calc(100% - 80px));
  margin-inline: auto;
}

.hananohi .hananohi_visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 698 / 447;
  object-fit: cover;
}

.hananohi .hananohi_content h2 {
  margin: 0 0 24px;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.hananohi .hananohi_content p {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.04em;
}

.hananohi .home_btn {
  width: 260px;
  height: 67px;
  margin-top: 38px;
  background: #fff;
  color: #075b53 !important;
}

.hananohi .home_btn span {
  width: 66px;
  border-left-color: rgba(7, 91, 83, 0.35);
}

.hananohi_btn_sp {
  display: none;
}

.hananohi .home_btn span::after {
  color: #075b53;
}

.hananohi .home_btn:hover {
  background: #003f39;
  color: #fff !important;
}

.hananohi .home_btn:hover span {
  border-left-color: rgba(255, 255, 255, 0.3);
}

.hananohi .home_btn:hover span::after {
  color: #fff !important;
}

/* 暮らし・体験サービス：お庭の床屋さん */
.tokoya {
  width: 100%;
  padding: 145px 0 130px;
  background: linear-gradient(to bottom, transparent 0 34%, rgba(255, 255, 255, 0) 34%), linear-gradient(to bottom, #fff 0 34%, transparent 34%), linear-gradient(to bottom right, #f7f2e9, #eff6f0);
  color: #221815;
}

.tokoya .tokoya_inner {
  width: min(1250px, calc(100% - 80px));
  margin-inline: auto;
}

.tokoya .tokoya_intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 80px;
  align-items: center;
  padding: 0 55px 75px;
}

.tokoya .tokoya_intro_text h2 {
  margin: 0;
  color: #075b53;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.tokoya .tokoya_intro_text h2 small {
  display: block;
  margin-top: 8px;
  font-family: lato, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.tokoya .tokoya_intro_text > p {
  margin: 36px 0 0;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.02em;
}

.tokoya .tokoya_logo {
  display: block;
  width: min(100%, 308px);
  height: auto;
  margin-inline: auto;
}

.tokoya .tokoya_gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1125px;
  margin: 0 auto;
}

.tokoya .tokoya_gallery figure {
  margin: 0;
}

.tokoya .tokoya_gallery img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 824 / 509;
  object-fit: cover;
}

.tokoya .tokoya_gallery figcaption {
  margin-top: 14px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.tokoya .tokoya_order {
  margin-top: 80px;
  padding: 72px 100px 62px;
  border-radius: 4px;
  background: #fff;
}

.tokoya .tokoya_order_heading {
  color: #075b53;
  text-align: center;
}

.tokoya .tokoya_order_heading h3 {
  margin: 0;
  font-family: lato, sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.04em;
}

.tokoya .tokoya_order_heading p {
  position: relative;
  width: fit-content;
  margin: 15px auto 0;
  padding-left: 22px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.tokoya .tokoya_order_heading p::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 5px;
  border-radius: 50%;
  background: #075b53;
  content: "";
  transform: translateY(-50%);
}

.tokoya .tokoya_chart {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 42px;
}

.tokoya .tokoya_order_bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
  gap: 70px;
  align-items: center;
  margin-top: 38px;
}

.tokoya .tokoya_order_bottom > p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
}

.tokoya .tokoya_tel {
  display: block;
  width: 100%;
  height: auto;
}

.designated_management {
  background: linear-gradient(to bottom, transparent 0 45%, #fff 45% 100%), linear-gradient(to bottom right, #f7f2e9 0%, #eff6f0 100%);
  margin: 65px 0 0;
  padding: 30px 0 0 0;
}
.designated_management > img {
  height: 390px;
}
.designated_management .gs_more {
  width: 325px;
}
.designated_management_inner {
  display: block;
  padding-top: 90px;
  padding-bottom: 110px;
}
.designated_management_inner h2 {
  font-size: 40px;
}
.designated_management_inner h2::before {
  height: 82px;
  top: 0;
}
.designated_management_inner .one_stop_copy {
  display: grid;
  grid-template-columns: 56.5% 1fr;
  gap: 0;
  align-self: start;
  margin-bottom: 80px;
}
.designated_management_inner img {
  max-width: 1440px;
  margin: 0 auto;
}

.designated_management_inner h3 {
  width: min(1290px, calc(100% - 64px));
  margin: 0 auto;
  font-size: 32px;
  color: #075b53;
  font-weight: 500;
}
.designated_management_inner h3 span {
  display: block;
  margin-top: 8px;
  font:
    400 12px lato,
    sans-serif;
  letter-spacing: 1px;
}

/* 指定管理事業・施設運営管理：事例一覧 */
.designated_management_case {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 2.4vw, 28px);
  width: min(1315px, calc(100% - 64px));
  margin: 30px auto 30px;
}

.designated_management_case > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.designated_management_case > div > picture,
.designated_management_case > div > picture img,
.designated_management_case > div > img {
  display: block;
  width: 100%;
  max-width: none;
}

.designated_management_case > div > picture img,
.designated_management_case > div > img {
  height: auto;
  aspect-ratio: 627 / 800;
  object-fit: cover;
}

.designated_management_case h4 {
  margin: 20px 0 20px;
  color: #221815;
  font-size: clamp(24px, 1.5vw, 30px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.designated_management_case > div > p {
  margin: 0 0 17px;
  color: #221815;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.02em;
}

.designated_management_case > div > .designated_management_meta {
  display: flex;
  margin-top: auto;
  color: #221815;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.02em;
  flex-direction: column;
}

.designated_management_location {
  min-height: 90px;
  margin: 0;
}

.designated_management_case ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: auto 0 0;
  padding: 0 10px 8px 0;
  border-bottom: 1px solid #b8b1ad;
  list-style: none;
}

.designated_management_case li {
  color: #8a837f;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.designated_management_case a {
  color: #075b53;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
}

.designated_management_case a::after {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 8px;
  content: "";
  vertical-align: -1px;
  background-image: url(/img/external-link.png);
  background-size: cover;
}
.designated_management_case a.insta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 22px 0 28px;
  color: #8a837f;
  font-size: 14px;
}
.designated_management_case a.insta::after {
  display: none;
}
.designated_management_case a.insta img {
  flex: 0 0 31px;
  width: 31px;
  height: 31px;
  object-fit: contain;
}
.dm_photo {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}
.dm_photo.bottom {
  margin-bottom: 270px;
}
/*施設運営管理*/

.facility_management {
  width: min(1315px, calc(100% - 64px));
  margin: 230px auto 130px;
}
.facility_management h3 {
  font-size: 32px;
  color: #075b53;
  font-weight: 500;
  margin-left: 30px;
}
.facility_management h3 span {
  display: block;
  margin-top: 16px;
  font:
    400 12px lato,
    sans-serif;
  letter-spacing: 1px;
}

.facility_management .facility_management_inner {
  display: grid;
  grid-template-columns: 65% 1fr;
  gap: 50px;
  margin: 22px auto 0;
}
.facility_management .facility_management_inner h4 {
  font-size: 24px;
  font-weight: 500;
  margin-top: 10px;
}
.facility_management .facility_management_inner p {
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  margin-top: 30px;
  color: #221815;
}
.facility_management .facility_management_inner p.add {
  display: grid;
  grid-template-columns: 77px 1fr;
  gap: 20px;
  align-self: end;
}
.botanen_logo {
  width: 77px !important;
}
.facility_management .facility_management_inner a.insta {
  display: grid;
  grid-template-columns: 31px auto;
  gap: 10px;
  width: fit-content;
  margin: 0 15px 0 auto;
  color: #8a837f;
}
.facility_management .facility_management_inner a.insta img {
  width: 31px;
  aspect-ratio: 1;
}

.facility_management_inner ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 30px 0 0;
  padding: 0 10px 8px 0;
  border-bottom: 1px solid #b8b1ad;
  list-style: none;
}

.facility_management_inner li {
  color: #8a837f;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}
.facility_management_inner li a {
  color: #075b53;
}

.facility_management_inner li a::after {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 8px;
  content: "";
  vertical-align: -1px;
  background-image: url(/img/external-link.png);
  background-size: cover;
}

/* HUGNIWA modal */
.huguniwa_modal_content {
  max-width: 1134px;
}
.huguniwa_modal_heading h2 {
  position: relative;
  margin: 0;
  padding-left: 38px;
  color: #075b53;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.06em;
}
.huguniwa_modal_heading h2::before {
  position: absolute;
  inset: 2px auto 2px 0;
  width: 7px;
  background: linear-gradient(to bottom, #075b53, #4db7b9);
  content: "";
}
.huguniwa_modal_heading h2 small {
  display: block;
  margin-top: 8px;
  font:
    400 14px lato,
    sans-serif;
  letter-spacing: 1px;
}
.huguniwa_modal_about {
  display: grid;
  grid-template-columns: 33% 1fr;
  gap: 50px;
  align-items: start;
  margin-top: 42px;
}
.huguniwa_modal_about p,
.huguniwa_modal_brand p,
.huguniwa_modal_examples p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  color: #221815;
}
.huguniwa_modal_about img {
  width: 100%;
  height: 405px;
  object-fit: cover;
}
.huguniwa_modal_brand {
  position: relative;
  margin: 125px -97px 282px;
  padding: 55px 108px 120px;
  background: linear-gradient(110deg, #f7f2e9, #eff6f0);
  height: 727px;
}
.huguniwa_modal_brand_intro {
  display: grid;
  grid-template-columns: 43% 1fr;
  gap: 70px;
  align-items: center;
  padding-left: 20px;
}
.huguniwa_modal_brand_intro h3 {
  margin: 0 0 28px;
  color: #075b53;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.huguniwa_modal_brand_intro img {
  width: min(100%, 540px);
  height: auto;
  justify-self: center;
}
.huguniwa_modal_points {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 1127px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -140px;
}
.huguniwa_modal_points article {
  min-height: 270px;
  padding: 46px 52px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(34, 24, 21, 0.06);
}
.huguniwa_modal_points span {
  display: inline-block;
  background: linear-gradient(180deg, #075b53 0%, #4db7b9 100%);
  color: transparent;
  font:
    400 18px lato,
    sans-serif;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.huguniwa_modal_points span b {
  font-size: 27px;
  font-weight: 400;
}
.huguniwa_modal_points h4 {
  margin: 18px 0 16px;
  color: #221815;
  font-size: 24px;
  font-weight: 500;
}
.huguniwa_modal_points p {
  font-size: 16px;
  font-weight: 400;
}
.huguniwa_modal_examples_heading {
  margin: 0 -97px 0;
  padding: 20px 20px;
  background: #f7f5f2;
  color: #221815;
  font-size: 32px;
  font-weight: 500;
  text-align: center;
}
.huguniwa_modal_examples {
  display: grid;
  gap: 95px;
  padding: 105px 30px 95px 0;
}
.huguniwa_modal_example {
  display: grid;
  grid-template-columns: 48% 1fr;
  gap: 0;
  align-items: end;
}
.huguniwa_modal_example > img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}
.huguniwa_modal_example img.exa_logo {
  width: 44%;
  margin: 0 28% 65px;
}
.huguniwa_modal_example h4 {
  margin: 0 40px 22px 50px;
  color: #221815;
  font-size: 24px;
  font-weight: 500;
}
.huguniwa_modal_example p {
  font-size: 16px;
  padding-left: 50px;
  padding-right: 40px;
}
.huguniwa_modal_example_reverse > img {
  grid-column: 1;
  grid-row: 1;
}
.huguniwa_modal_example_reverse {
  grid-template-columns: 52% 48%;
}
.huguniwa_modal_example_reverse > div {
  grid-column: 2;
  grid-row: 1;
}
/* Seasonal decoration modal */
.sd_seasonal_modal_content {
  max-width: 1134px;
}
.sd_seasonal_modal_intro {
  width: 100%;
  grid-template-columns: 48% 1fr;
  gap: 80px;
}
.sd_seasonal_modal_heading {
  margin: 105px 0 80px;
  color: #222;
  font-size: 28px;
  font-weight: 500;
  text-align: center;
}
.sd_seasonal_modal_list {
  display: grid;
  gap: 90px;
}
.sd_seasonal_modal_season {
  margin: 0;
}
.sd_seasonal_modal_images {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.sd_seasonal_modal_placeholder {
  aspect-ratio: 1.63 / 1;
  background-color: #f5f5f5;
  background-size: cover;
}
.sd_seasonal_modal_placeholder.image01 {
  background-image: url(/img/seasonal_modal01.jpg);
}
.sd_seasonal_modal_placeholder.image02 {
  background-image: url(/img/seasonal_modal02.jpg);
}
.sd_seasonal_modal_placeholder.image03 {
  background-image: url(/img/seasonal_modal03.jpg);
}
.sd_seasonal_modal_placeholder.image04 {
  background-image: url(/img/seasonal_modal04.jpg);
}
.sd_seasonal_modal_placeholder.image05 {
  background-image: url(/img/seasonal_modal05.jpg);
}
.sd_seasonal_modal_placeholder.image06 {
  background-image: url(/img/seasonal_modal06.jpg);
}
.sd_seasonal_modal_placeholder.image07 {
  background-image: url(/img/seasonal_modal07.jpg);
}
.sd_seasonal_modal_placeholder.image08 {
  background-image: url(/img/seasonal_modal08.jpg);
}
.sd_seasonal_modal_images h4 {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 218px;
  aspect-ratio: 1;
  margin: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbf6ec, #eef7f0);
  color: #075b53;
  font-size: 50px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  transform: translate(-50%, -50%);
  place-content: center;
}
.sd_seasonal_modal_images h4 span {
  display: block;
  margin-bottom: 14px;
  font:
    400 22px lato,
    sans-serif;
  letter-spacing: 0.08em;
}
.sd_seasonal_modal_captions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
  color: #111;
  font-size: 18px;
  font-weight: 500;
}
.sd_seasonal_modal_captions span small {
  display: block;
  font-size: 15px;
  color: #221815;
  letter-spacing: 0.02em;
  font-weight: 400;
}

/* Plant maintenance page */
.pm_page {
  --pm-green: #08786f;
  --pm-pale: #f2f6ee;
  color: #454945;
}
.pm_contents {
  margin-bottom: 38px;
}
.pm_page *,
.pm_contents * {
  box-sizing: border-box;
}
.pm_inner {
  width: min(1360px, calc(100% - 64px));
  margin-inline: auto;
}

.pm_contents .gs_contents_inner {
  max-width: 920px;
  margin-inline: auto;
  margin-top: 30px;
}
.pm_contents .gs_contents_inner a {
  flex: 0 0 auto;
  min-width: 0;
  padding-right: 30px;
  padding-left: 30px;
}
.pm_contents span {
  font-size: 18px;
  color: #075b53;
}

.pm_contents .gs_contents_inner a:hover,
.pm_contents .gs_contents_inner a:focus-visible {
  border-bottom: 2px solid #187d72;
  color: #187d72;
}
.pm_section {
  padding-top: 105px;
  padding-bottom: 100px;
  scroll-margin-top: 90px;
  background-image: linear-gradient(135deg, #f7f2e9 0%, #eef7f1 100%);
  background-position: left bottom;
  background-size: 100% 265px;
  background-repeat: no-repeat;
}
.pm_section.pm_services,
.pm_section.pm_treecare {
  background: none;
}
.pm_heading {
  position: relative;
  padding-left: 36px;
}
.pm_heading::before {
  position: absolute;
  top: 3px;
  bottom: 2px;
  left: 0;
  width: 7px;
  background: linear-gradient(#08786f, #61bfc0);
  content: "";
}
.pm_heading span,
.pm_service_card small,
.pm_steps > article > span {
  display: block;
  margin-bottom: 7px;
  color: var(--pm-green);
  font:
    500 11px lato,
    sans-serif;
  letter-spacing: 0.12em;
}
.pm_heading h2 {
  margin: 0;
  color: #075b53;
  font-size: 32px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.01em;
}
.pm_intro {
  max-width: 680px;
  margin: 30px 0 50px;
  font-size: 16px;
  line-height: 2;
  color: #221815;
}
.pm_service_grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 23px;
  max-width: 1305px;
  margin: 90px auto 0;
}
.pm_service_card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
}
.pm_service_card > img {
  grid-column: 1;
  grid-row: 1;
  display: block;
  width: 100%;
  height: 285px;
  object-fit: cover;
}
.pm_service_card > .pm_service_image {
  grid-column: 1;
  grid-row: 1;
  display: block;
}
.pm_service_card > .pm_service_image img {
  display: block;
  width: 100%;
  height: 285px;
  object-fit: cover;
}
.pm_service_card > div {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  padding: 32px 32px 3px;
  color: #fff;
}
.pm_service_card h3 {
  margin: 0;
  font-size: 32px;
  font-weight: 500;
}
.pm_service_card h3 span {
  display: block;
  color: #fff;
  font-size: 12px;
  line-height: 1.83;
  margin-top: 20px;
}
.pm_service_card > p {
  grid-column: 1;
  grid-row: 2;
  width: 100%;
  margin: 0;
  padding-top: 16px;
  padding: 15px 10px;
  color: #454945;
  font-size: 14px;
  line-height: 1.71;
}

.pm_cycle {
  background: linear-gradient(110deg, #f8f4eb, #eef6ef);
}
.pm_title_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: start;
  margin-top: 34px;
  margin-bottom: 55px;
}
.pm_title_row > p {
  position: relative;
  top: -18px;
  margin: 0;
  font-size: 16px;
  line-height: 2;
  color: #221815;
}
.pm_cycle_list {
  display: block;
  position: relative;
  max-width: 1265px;
  margin: 115px auto 30px;
  list-style: none;
}
.pm_cycle_list li {
  position: relative;
}
.pm_cycle_list img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 14px;
}
.pm_cycle_list img.stage_nom {
  position: absolute;
  top: -55px;
  left: calc(50% - 52.5px);
  width: 105px;
  height: 105px;
}
.pm_cycle_list li > b {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--pm-green);
  color: #fff;
  font:
    500 17px lato,
    sans-serif;
  transform: translate(-50%, -50%);
  place-items: center;
}
.pm_cycle_list li > div {
  align-self: center;
  padding: 35px 65px;
}
.pm_cycle_list small {
  font:
    500 11px lato,
    sans-serif;
  letter-spacing: 0.12em;
}
.pm_cycle_list h3 {
  margin: 7px 0 14px;
  font-size: 22px;
}
.pm_cycle_list p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
}

.pm_treecare {
  margin-top: 12px;
  margin-bottom: 0;
}

.pm_steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 20px;
}
.pm_steps img {
  display: block;
  width: 100%;
  height: 266px;
  margin: 13px 0 19px;
  object-fit: cover;
}
.pm_steps h3 {
  margin: 0 0 9px;
  color: #2b3330;
  font-size: 20px;
  font-weight: 500;
}
.pm_steps p,
.pm_flow p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
}
.pm_steps article span {
  font-family: lato, sans-serif;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0;
}
.pm_steps article span b {
  font-family: lato, sans-serif;
  font-size: 38px;
  font-weight: 400;
  margin-left: 4px;
}
.pm_feature {
  display: grid;
  grid-template-columns: 48% 1fr;
  margin-top: 90px;
  padding-left: 4%;
  background: #f7f5f1;
}
.pm_feature > div {
  align-self: center;
  padding: 60px 70px;
}
.pm_feature > div span {
  display: block;
  margin-bottom: 7px;
  color: var(--pm-green);
  font:
    400 14px lato,
    sans-serif;
  letter-spacing: 0;
}
.pm_feature > div h3 {
  margin: 0 0 9px;
  color: #075b53;
  font-size: 32px;
  font-weight: 500;
}
.pm_feature p {
  margin: 42px 0 0 0;
  font-size: 16px;
  line-height: 2;
}
.pm_feature > img {
  display: block;
  width: 100%;
  height: 476px;
  object-fit: cover;
}

.pm_special {
  margin-top: -37px;
}
.pm_special_main {
  display: grid;
  grid-template-columns: 37.5% 1fr;
  gap: 50px;
  align-items: start;
  width: 1324px;
  margin: 0 auto -27px;
}
.pm_special_main > img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}
.pm_special_main p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
}
.pm_special_main .pm_heading {
  margin: 23px 0 0 120px;
}
.pm_special_main .pm_heading h2 {
  margin: 0;
}
.pm_special_main > div > p {
  margin: 35px 0 83px 120px;
  width: 70%;
  color: #221815;
  font-size: 16px;
}
.pm_special_main > div > img {
  position: relative;
  width: 46%;
  height: 510px;
  object-fit: cover;
}

.pm_flow_title {
  margin: 70px 0 20px;
  color: #075b53;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.pm_flow {
  display: grid;
  grid-template-columns: 1fr 150px 1fr 150px 1fr;
  margin: 40px 0 0 0;
  padding: 0 75px;
  background: #fff;
  list-style: none;
  border: 1px solid #d8d2ce;
  border-radius: 5px;
  min-height: 310px;
}
.pm_flow li {
  position: relative;
  padding: 33px 0;
}
.pm_flow .pm_flow_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.pm_flow_arrow img {
  display: block;
  width: 21px;
  height: auto;
}
.pm_flow li:last-child {
  border-right: 0;
}
.pm_flow span {
  font:
    500 25px lato,
    sans-serif;
}
.pm_flow b {
  font:
    500 38px lato,
    sans-serif;
}
.pm_flow span,
.pm_flow b {
  color: #075b53;
  background: linear-gradient(to bottom, #075b53 0%, #4db7b9 50%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pm_flow h4 {
  margin: 14px 0 19px;
  color: #263a35;
  font-size: 20px;
  font-weight: 500;
}
/*FAQ*/
.pm_faq {
  max-width: 820px;
  background: none;
}
.pm_faq .faq_heading {
  width: max-content;
  margin: 78px auto 90px;
  text-align: center;
}
.pm_faq .faq_heading h2 {
  color: #075b53;
  font-size: 68px;
  font-weight: 300;
  font-family: lato, sans-serif;
}
.pm_faq .faq_heading span {
  position: relative;
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #075b53;
  margin: 35px 0 0 0;
  padding-left: 26px;
  letter-spacing: 0.06em;
}
.pm_faq .faq_heading span::before {
  position: absolute;
  top: 45%;
  left: 5%;
  content: "";
  width: 10px;
  height: 6px;
  background-image: url(/img/daen_point.png);
  background-size: cover;
}
.pm_faq details {
  margin-bottom: 73px;
  background: #fff;
}
.pm_faq summary {
  position: relative;
  padding: 30px 160px 30px 154px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
  color: #221815;
  list-style: none;
  border: 1px solid #d8d2ce;
  border-radius: 3px;
}
.pm_faq summary::before {
  position: absolute;
  top: 47%;
  left: 38px;
  color: #075b53;
  content: "Q";
  font:
    400 40px lato,
    sans-serif;
  transform: translateY(-50%);
  line-height: 1;
}
.pm_faq summary::after {
  position: absolute;
  top: 50%;
  right: 60px;
  display: grid;
  place-items: center;
  color: #fff;
  content: "+";
  font-size: 15px;
  line-height: 1;
  transform: translateY(-50%);
  background-color: #075b53;
  width: 30px;
  height: 30px;
  border-radius: 15px;
}
.pm_faq details[open] summary::after {
  content: "−";
}
.pm_faq details p {
  position: relative;
  margin: 15px 0 0 0;
  padding: 30px 60px 30px 132px;
  background: #f6f4ef;
  font-size: 15px;
  color: #221815;
  line-height: 2;
  border: 1px solid #e3e5e2;
  letter-spacing: 0.02em;
}
.pm_faq details p::before {
  position: absolute;
  top: 47px;
  left: 38px;
  color: #075b53;
  content: "A";
  font:
    400 40px lato,
    sans-serif;
  transform: translateY(-50%);
  line-height: 1;
}
.pm_faq .care_point {
  position: relative;
  background-color: #eef7f1;
  min-height: 125px;
  margin: 0 17px 93px;
  padding: 35px 0 0 53px;
  color: #221815;
}
.pm_faq .care_point h3 {
  font:
    400 14px lato,
    sans-serif;
  color: #075b53;
  margin-bottom: 5px;
}
.pm_faq .care_point img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 216px;
}
.about_strengths li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 20px 0 48px;
}
.about_strengths li:last-child {
  border-bottom: 0;
  padding: 20px 0 0;
}
.about_strengths li b {
  display: block;
  position: relative;
  height: 82px;
  width: 65px;
}
.about_strengths li b img {
  width: 40px;
}
.about_strengths li b::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  height: 82px;
  width: 7px;
  background: linear-gradient(135deg, #129083 0%, #6bdddf 100%);
}
.about_strengths li span {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.77;
  color: #221815;
  padding-left: 30px;
}
.about_strengths li strong {
  display: block;
  margin-bottom: 30px;
  color: #221815;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
}
.about_what_we_do {
  background-image: url("/img/services_bg.jpg");
}
.about_what_we_do .home_btn {
  position: relative;
  right: 290px;
}
.about_what_we_do p.left {
  position: relative;
  left: 130px;
}
.about_page .home_services,
.about_page .home_lifestyle,
.about_page .home_works {
  margin: 0;
}
.about_page .about_message.about_inner {
  width: 100%;
  max-width: none;
}

@media (min-width: 901px) {
  .about_page .about_message {
    position: relative;
    height: 62.5vw;
    padding: 0;
  }
  .about_page .about_lead {
    position: absolute;
    top: 2.976vw;
    left: 10.714vw;
    z-index: 2;
    margin: 0;
    text-align: left;
  }
  .about_page .about_message_grid {
    position: absolute;
    inset: 0;
    display: block;
  }
  .about_page .about_message_grid > img,
  .about_page .about_message_text {
    position: absolute;
  }
  .about_page .about_message_grid > img {
    max-width: none;
    height: auto;
  }
  .about_page .about_message_grid > img[src="/img/about_01.jpg"] {
    top: calc(19.048vw - 50px);
    left: 0;
    width: 22.619vw;
  }
  .about_page .about_message_grid > img[src="/img/about_02.jpg"] {
    top: calc(38.69vw - 50px);
    left: 24.107vw;
    width: 32.857vw;
  }
  .about_page .about_message_grid > img[src="/img/about_03.jpg"] {
    top: 0;
    right: 0;
    width: 40.655vw;
  }
  .about_page .about_message_text {
    top: 16.345vw;
    left: 28.274vw;
    display: block;
    width: 26.19vw;
  }
  .about_page .about_message_text_bottom {
    top: 33.69vw;
    left: 60.714vw;
    width: 27.976vw;
  }
}

/* About page movie */
.about_page > section.about_movie > video.about_movie {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Plant maintenance: align service-card body text */
.pm_services .pm_service_card {
  grid-template-rows: 285px auto;
}

.pm_services .pm_service_card h3 span {
  min-height: calc(1.83em * 3);
}

/* Company page */
body.company {
  background-image: url(/img/company_bg.png);
  background-size: 100% 3868px;
  background-position: center 0;
  background-repeat: no-repeat;
}
.company_page,
.company_page * {
  box-sizing: border-box;
}

.company_page {
  color: #292522;
  margin-top: 100px;
}

.company_page .company_visions {
  padding: 150px 0 190px;
}

.company_page .company_philosophy,
.company_page .company_associate {
  position: relative;
  width: min(1360px, calc(100% - 80px));
  margin-right: auto;
  margin-left: auto;
}

.company_page .company_section_heading h2 {
  margin: 0;
  color: #60aaa7;
  font-family: "Lato", sans-serif;
  font-size: clamp(42px, 4.2vw, 64px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.035em;
}

.company_page .company_section_heading .company_heading_ja {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0;
  color: #4aa39f;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.company_page .company_section_heading .company_heading_ja::before {
  width: 9px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.company_page .company_philosophy {
  position: relative;
  min-height: 610px;
}

.company_page .company_philosophy .company_section_heading {
  position: absolute;
  top: -67px;
  left: 0;
  z-index: 3;
  width: 586px;
  padding: 60px 35px 70px;
  background: #fff;
}

.company_page .company_philosophy .company_copy {
  display: block;
  margin: 50px 0 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.company_page .company_philosophy > img {
  position: relative;
  z-index: 1;
  display: block;
  width: 72%;
  max-width: 900px;
  height: 550px;
  margin-left: auto;
  object-fit: cover;
}

.company_page .company_vision {
  width: 100%;
  margin-top: 200px;
}

.company_page .company_vision_header {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  align-items: end;
  gap: 70px;
  width: min(1040px, 100%);
  margin: 0 auto 30px;
}

.company_page .company_vision_header .company_copy {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.company_page .company_vision > img {
  display: block;
  width: calc(100vw - 56px);
  max-width: 1628px;
  height: 546px;
  margin-right: auto;
  margin-left: auto;
  object-fit: cover;
}

.company_page .company_associate {
  margin-top: 165px;
}

.company_page .company_associate_body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 100px;
  margin-top: 90px;
  padding: 0 80px;
}

.company_page .company_associate_body img {
  display: block;
  width: 100%;
  height: auto;
}

.company_page .company_associate_body .company_copy {
  margin: 0;
  font-size: 24px;
  line-height: 2.5;
  letter-spacing: 0.02em;
}
.company_page .company_associate_body p b {
  display: block;
  font-family: lato, sans-serif;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: -30px;
  line-height: 2;
  white-space: nowrap;
}
.company_page .company_tables {
  width: min(1200px, calc(100% - 80px));
  margin: 60px auto;
  padding: 0 0 190px;
}

.company_page .company_table_section + .company_table_section {
  margin-top: 150px;
}

.company_page .company_table_section h2 {
  margin: 0 0 28px;
  padding: 6px 0 6px 28px;
  border-left: 6px solid #62b7b3;
  color: #09665f;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.06em;
}

.company_page .company_table_wrap {
  width: 100%;
  overflow-x: auto;
}

.company_page .company_table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 14px;
  line-height: 1.75;
}

.company_page .company_table th,
.company_page .company_table td {
  padding: 27px 30px;
  border: 1px solid #d8d4cf;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

.company_page .company_table th {
  width: 180px;
  background: #f6f3ee;
  font-weight: 400;
  line-height: 1.5;
}

.company_page .company_table td {
  background: #fff;
  line-height: 1.5;
}

.company_page .company_table a {
  color: #9a928b;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Privacy policy page */
.privacypolicy_page,
.privacypolicy_page * {
  box-sizing: border-box;
}

.privacypolicy_page {
  color: #221815;
}

.privacypolicy_page .privacy_inner {
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
  padding: 170px 0 200px;
}

.privacypolicy_page .privacy_section + .privacy_section {
  margin-top: 105px;
}

.privacypolicy_page .privacy_section > h2 {
  position: relative;
  margin: 0 0 58px;
  padding: 7px 0 7px 35px;
  color: #07645d;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.privacypolicy_page .privacy_section > h2::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  height: 56px;
  background: linear-gradient(to bottom, #1c897f, #55c4c2);
  content: "";
}

.privacypolicy_page p,
.privacypolicy_page li {
  font-size: 15px;
  line-height: 1.86;
  letter-spacing: 0.035em;
}

.privacypolicy_page p {
  margin: 0;
}

.privacypolicy_page .privacy_signature {
  margin: 30px 0 42px;
  text-align: right;
}

.privacypolicy_page .privacy_policy_list {
  margin: 0;
  padding-left: 22px;
}
.privacypolicy_page .privacy_policy_list2 {
  margin: 0;
  padding-left: 22px;
  list-style-type: disc;
  margin-bottom: 80px;
}
.privacypolicy_page .privacy_policy_list3 {
  margin: 0;
  margin-bottom: 80px;
}
.privacypolicy_page .privacy_contact {
  margin-top: 32px;
  padding-left: 1.5em;
}

.privacypolicy_page .privacy_handling > p {
  margin-bottom: 44px;
}

.privacypolicy_page .privacy_article + .privacy_article {
  margin-top: 64px;
}

.privacypolicy_page .privacy_article h3 {
  margin: 0 0 28px;
  padding: 0 0 13px;
  border-bottom: 1px solid #167268;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

.privacypolicy_page .privacy_article h4 {
  margin: 30px 0 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
}

.privacypolicy_page .privacy_article ol,
.privacypolicy_page .privacy_article ul {
  margin: 8px 0 0;
  padding-left: 28px;
}

.privacypolicy_page .privacy_article p + p {
  margin-top: 18px;
}

.privacypolicy_page .privacy_article a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  overflow-wrap: anywhere;
}

.privacypolicy_page .privacy_note {
  margin-top: 24px;
}

.privacypolicy_page small {
  color: #918a84;
  font-size: 13px;
}

/* Contact page */
html:has(.contact_page) {
  scroll-padding-top: 110px;
}

.contact_page,
.contact_page * {
  box-sizing: border-box;
  margin-top: 22px;
  margin-bottom: 22px;
}

.contact_page {
  padding: 115px 0 180px;
  color: #332f2c;
}

.contact_page .contact_form_section,
.contact_page .contact_phone_section {
  width: min(950px, calc(100% - 80px));
  margin-right: auto;
  margin-left: auto;
}

.contact_page .contact_type_label {
  margin: 0 0 53px;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.05em;
}

/* Recruit page tab design reuse */
.contact_page .recruit_type_nav {
  scroll-margin-top: 160px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: min(715px, calc(100% - 40px));
  margin: 0 auto;
}

.contact_page .recruit_type_nav::after {
  position: absolute;
  right: 50%;
  bottom: 0;
  z-index: -1;
  width: min(1360px, calc(100vw - 80px));
  height: 1px;
  background: #dedad6;
  content: "";
  transform: translateX(50%);
}

.contact_page .recruit_type_nav button {
  display: grid;
  place-items: center;
  height: 68px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 5px 5px 0 0;
  background: #f5f2ed;
  color: #8a837f;
  font-family: inherit;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.contact_page .recruit_type_nav button:hover,
.contact_page .recruit_type_nav button.is-current {
  background: #075b53;
  color: #fff;
}

.contact_page .contact_steps {
  display: grid;
  grid-template-columns: repeat(3, 180px);
  justify-content: center;
  margin: 197px 0 100px;
  padding: 0;
  list-style: none;
}

.contact_confirm_page .contact_steps,
.contact_result_page .contact_steps {
  margin-top: -35px;
}

.contact_page .contact_steps li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 5px;
  color: #4d4743;
  font-size: 15px;
}

.contact_page .contact_steps li:not(:last-child)::after {
  position: absolute;
  top: 40px;
  left: calc(50% + 18px);
  width: calc(100% - 36px);
  height: 1px;
  background: #dedad6;
  content: "";
}

.contact_page .contact_steps span {
  position: relative;
  z-index: 1;
  width: 25px;
  height: 25px;
  border: 7px solid #fff;
  border-radius: 50%;
  background: #f1efeb;
  box-sizing: content-box;
}

.contact_page .contact_steps .is-current span {
  position: relative;
  z-index: 1;
  width: 25px;
  height: 25px;
  border: 7px solid #f7f5f1;
  border-radius: 50%;
  background: #087067;
  box-sizing: content-box;
}

.contact_page .contact_lead {
  margin: 0 0 80px;
  font-size: 15px;
  color: #000;
  line-height: 1.8;
  text-align: center;
}

.contact_page .contact_field + .contact_field {
  margin-top: 30px;
}

.contact_page .contact_field label,
.contact_page .contact_privacy legend {
  display: block;
  margin: 0 0 -9px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.contact_page .is-required,
.contact_page .is-optional {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 7px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
}

.contact_page .is-required {
  background: #07645d;
  color: #fff;
}

.contact_page .is-optional {
  background: #e7f2ef;
  color: #448b84;
}

.contact_page .contact_field small {
  margin-left: 8px;
  color: #a09994;
  font-size: 12px;
}

.contact_page .contact_field input,
.contact_page .contact_field select,
.contact_page .contact_field textarea {
  display: block;
  width: 100%;
  border: 1px solid #dedad6;
  border-radius: 2px;
  background: #fff;
  color: #332f2c;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.contact_page .contact_field input,
.contact_page .contact_field select {
  height: 70px;
  padding: 0 38px;
}

.contact_page .contact_field textarea {
  min-height: 250px;
  padding: 28px 38px;
  resize: vertical;
}

.contact_page .contact_field input:focus,
.contact_page .contact_field select:focus,
.contact_page .contact_field textarea:focus {
  border-color: #14766d;
}

.contact_page .contact_field ::placeholder {
  color: #aaa49f;
  opacity: 1;
}

.contact_page .contact_select_wrap {
  position: relative;
}

.contact_page .contact_select_wrap::after {
  position: absolute;
  top: 50%;
  right: 36px;
  width: 9px;
  height: 9px;
  border-right: 1px solid #8b8580;
  border-bottom: 1px solid #8b8580;
  content: "";
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
}

.contact_page .contact_field select {
  appearance: none;
}

.contact_page .contact_privacy {
  margin: 30px 0 0;
  padding: 0;
  border: 0;
}

.contact_page .contact_privacy label {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  margin: -4px 0 0 0;
}

.contact_page .contact_privacy input {
  width: 28px;
  height: 28px;
  accent-color: #087067;
}

.contact_page .contact_privacy > a {
  display: inline-block;
  margin: 5px 0 0;
  color: #8a837f;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.contact_page .contact_privacy > a::after {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 8px;
  content: "";
  vertical-align: -1px;
  background-image: url(/img/external-link_black.png);
  background-size: cover;
}
.contact_page .contact_submit {
  display: block;
  width: 230px;
  height: 68px;
  margin: 74px auto 0;
  border: 1px solid #07645d;
  border-radius: 4px;
  background: #07645d;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.contact_page .contact_submit:hover {
  background: #fff;
  color: #07645d;
}

.contact_honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact_result_page,
.contact_confirm_page {
  min-height: 650px;
}

#contact-confirm-start {
  scroll-margin-top: 150px;
}

.contact_result_heading {
  margin: 0 0 38px;
  color: #075b53;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
}

.contact_result_message {
  margin: 0 auto 55px;
  font-size: 16px;
  line-height: 2;
  text-align: center;
}

.contact_result_link {
  display: grid !important;
  place-items: center;
  padding: 0;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

.contact_error_list {
  width: min(760px, 100%);
  margin: -25px auto 45px;
  padding: 25px 35px 25px 55px;
  background: #f8f4ef;
  color: #b13b32;
  font-size: 15px;
  line-height: 1.8;
}

.contact_confirm_table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  table-layout: fixed;
  color: #221815;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.contact_confirm_table th,
.contact_confirm_table td {
  padding: 28px 30px;
  border: 1px solid #d9d5d1;
  text-align: left;
  vertical-align: top;
}

.contact_confirm_table th {
  width: 180px;
  background: #f7f4ef;
  font-weight: 400;
}

.contact_confirm_table td {
  background: #fff;
}

.contact_confirm_actions {
  display: grid;
  grid-template-columns: repeat(2, 230px);
  gap: 20px;
  width: max-content;
  margin: 60px auto 0;
}

.contact_confirm_actions form {
  width: 230px;
  margin: 0;
}

.contact_confirm_actions .contact_submit {
  width: 230px;
  margin-top: 0;
}

.contact_back_button {
  border: 1px solid #075b53;
  background: #fff;
  color: #075b53;
}

.contact_page .contact_phone_section {
  margin-top: 290px;
  margin-bottom: 37px;
}

.contact_page .contact_phone_section > h2 {
  position: relative;
  margin: 0 0 40px;
  padding: 13px 0 7px 33px;
  color: #075b53;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.contact_page .contact_phone_section > h2::before {
  position: absolute;
  inset: 2px auto 2px 0;
  width: 7px;
  height: 57px;
  background: linear-gradient(to bottom, #075b53, #4db7b9);
  opacity: 0.75;
  content: "";
}
.contact_page .contact_phone_section > p {
  margin: 0 0 95px;
  font-size: 14px;
}

.contact_page .contact_phone_list article + article {
  margin-top: 55px;
}

.contact_page .contact_phone_list h3 {
  margin: 0 0 28px;
  padding: 0 0 8px;
  border-bottom: 1px solid #dedad6;
  font-size: 15px;
  font-weight: 500;
  color: #221815;
}

.contact_page .contact_phone_list p {
  margin: 0 0 -5px 10px;
  font-size: 14px;
  line-height: 1.5;
}

.contact_page .contact_phone_list a {
  color: inherit;
  text-decoration: none;
}

.contact_page .contact_phone_list article > a {
  display: block;
  margin-left: 10px;
  margin-top: 10px;
  color: #8a837f;
  font-size: 14px;
  /*text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;*/
}

/* Sustainability page */
.sustainability_page,
.sustainability_page * {
  box-sizing: border-box;
}

.sustainability_page {
  color: #302b28;
}

.sustainability_hero {
  position: relative;
  height: min(650px, calc(100vh - 90px));
  min-height: 520px;
  color: #fff;
  overflow: hidden;
}

.sustainability_hero::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 44, 25, 0.16);
  content: "";
}

.sustainability_hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sustainability_hero_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: calc(100% - 40px);
  text-align: center;
  transform: translate(-50%, -45%);
}

.sustainability_hero_inner h1 {
  font:
    300 clamp(38px, 4.2vw, 64px) lato,
    sans-serif;
  letter-spacing: 0.035em;
}

.sustainability_hero_inner p {
  margin-top: 38px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.sustainability_page {
}
.sustainability_page > .lower_breadcrumb {
  width: min(1360px, calc(100% - 80px));
  margin: 0 auto;
  padding-top: 58px;
}

.sustainability_page .sustainability_message {
  padding: 125px 20px 200px;
  text-align: center;
}

.sustainability_page .sustainability_message h2 {
  margin: 0 0 80px;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.sustainability_page .sustainability_message p {
  margin: 0;
  font-size: 15px;
  line-height: 2.55;
  letter-spacing: 0.06em;
}

.sustainability_page .sustainability_message strong {
  display: block;
  margin-top: 70px;
  font-size: 21px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.09em;
}

.sustainability_page .sustainability_approach {
  position: relative;
  width: min(1420px, calc(100% - 80px));
  margin: 0 auto 136px;
  padding-top: 90px;
}

.sustainability_page .sustainability_heading_panel {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 560px;
  padding: 0 35px 38px 0;
  background: #fff;
}

.sustainability_page .sustainability_heading_panel h2 {
  margin: 0;
  color: #075b53;
  font-family: "Lato", sans-serif;
  font-size: clamp(44px, 4.5vw, 68px);
  font-weight: 300;
  line-height: 1.29;
  letter-spacing: 0;
}

.sustainability_page .sustainability_heading_panel p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 0;
  color: #087067;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.sustainability_page .sustainability_heading_panel p::before {
  width: 9px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.sustainability_page .sustainability_approach_visual,
.sustainability_page .sustainability_approach_visual img {
  display: block;
}

.sustainability_page .sustainability_approach_visual {
  width: calc(78% + (100vw - 100%) / 2);
  height: 560px;
  margin-left: 22%;
}

.sustainability_page .sustainability_approach_visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sustainability_page .sustainability_initiatives {
  width: min(1430px, calc(100% - 80px));
  margin: 0 auto;
}

.sustainability_page .sustainability_initiative {
  padding: 0 0 115px;
  border-bottom: 1px solid #dedad6;
}

.sustainability_page .sustainability_initiative + .sustainability_initiative {
  padding-top: 145px;
}

.sustainability_page .sustainability_initiative:last-child {
  border-bottom: 0;
}

.sustainability_page .sustainability_initiative_copy > span {
  display: block;
  margin-bottom: 18px;
}
.sustainability_page .sustainability_initiative_copy > span img {
  height: 30px;
}

.sustainability_page .sustainability_initiative_copy h2 {
  margin: 0 0 32px;
  color: #075b53;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.sustainability_page .sustainability_initiative_copy h2 small {
  display: block;
  margin-top: 5px;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
}

.sustainability_page .sustainability_initiative_copy p,
.sustainability_page .sustainability_case_grid p,
.sustainability_page .sustainability_greenbiz p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.02em;
}

.sustainability_page .sustainability_environment {
  display: grid;
  grid-template-columns: 43% 1fr;
  align-items: start;
  gap: 85px;
}

.sustainability_page .sustainability_environment_images {
  display: block;
}

.sustainability_page .sustainability_environment_images img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.sustainability_page .sustainability_nature {
  margin-top: -33px;
}

.sustainability_page .sustainability_nature .sustainability_initiative_copy {
  width: 610px;
  margin-bottom: 70px;
}

.sustainability_page .sustainability_case_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 0 60px;
}

.sustainability_page .sustainability_case_grid img {
  width: 100%;
  height: 370px;
  object-fit: cover;
}

.sustainability_page .sustainability_case_grid h3 {
  margin: 42px 0 22px;
  font-size: 20px;
  font-weight: 500;
}

.sustainability_society {
  margin-top: -30px;
  margin-bottom: 13px;
}
.sustainability_page .sustainability_society_grid {
  display: grid;
  grid-template-columns: 44% 1fr;
  align-items: center;
  gap: 80px;
  max-width: 1356px;
}

.sustainability_page .sustainability_society_visual,
.sustainability_page .sustainability_society_visual img {
  display: block;
  width: 100%;
}

.sustainability_page .sustainability_society_visual img {
  height: 454px;
  object-fit: cover;
}

.sustainability_page .sustainability_greenbiz {
  display: grid;
  grid-template-columns: 41% 1fr;
  align-items: center;
  gap: 115px;
  width: calc(100% - 90px);
  margin: 100px auto 0;
  padding: 75px 85px;
  border: 1px solid #d8d2ce;
  border-radius: 4px;
  max-width: 1266px;
}

.sustainability_page .sustainability_greenbiz_logo img {
  max-width: 100%;
  text-align: center;
}

.sustainability_page .sustainability_greenbiz_logo small {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  letter-spacing: 0.06em;
}

.sustainability_page .sustainability_greenbiz h3 {
  margin: 0 0 30px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.75;
  text-align: left;
}

.sustainability_page .sustainability_group_link {
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
  width: 1043px;
  height: 298px;
  margin: 0 auto 120px;
  background: none;
}

.sustainability_page .sustainability_group_visual,
.sustainability_page .sustainability_group_visual img {
  display: block;
  width: 100%;
  height: 100%;
}

.sustainability_page .sustainability_group_visual img {
  object-fit: cover;
}

.sustainability_page .sustainability_group_link div {
  display: block;
  position: absolute;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  bottom: 14%;
  right: 5%;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sustainability_page .sustainability_group_link div span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 66px;
  height: 35px;
  background-color: #fff;
  border-radius: 50px;
  color: #075b53;
  margin-right: 10px;
}
.sustainability_page .sustainability_group_link div span img {
  width: 20px;
}

.sustainability_page .sustainability_group_link:hover div span img {
  animation: sustainabilityArrowSlide 0.55s ease forwards;
}

@keyframes sustainabilityArrowSlide {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  35% {
    opacity: 0;
    transform: translateX(20px);
  }

  36% {
    opacity: 0;
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hide content inherited from the copied service page. */
.sustainability_page > .shop_intro,
.sustainability_page > .gs_contents,
.sustainability_page > .gs_services,
.sustainability_page > .home_works,
body:has(.sustainability_page) > .gs_modal {
  display: none;
}
/* Common primary button hover */
.home_btn:hover,
.gs_more:hover {
  background: #fff !important;
  border-color: #075b53 !important;
  color: #075b53 !important;
}

.home_btn:hover span,
.gs_more:hover span {
  border-left-color: #075b53 !important;
}

.home_btn:hover span::after,
.gs_more:hover span::after {
  color: #075b53 !important;
}

/* HANA NO HI starts white, so use the reverse hover treatment. */
.hananohi .home_btn:hover {
  border-color: #fff !important;
  background: #075b53 !important;
  color: #fff !important;
}

.hananohi .home_btn:hover span {
  border-left-color: rgba(255, 255, 255, 0.45) !important;
}

.hananohi .home_btn:hover span::after {
  color: #fff !important;
}
