@charset "utf-8";

/* =========================================================
   Home page
   All selectors are scoped to .home to avoid other pages.
========================================================= */
body:has(> main.home) #lower_midashi {
  display: none;
}
a {
  text-decoration: none;
}
:where(main).home {
  position: relative;
  --green: #075b53;
  --deep: #006158;
  --ink: #4b4242;
  --cream: #f6f3eb;
  background: #fff;
}
:where(main).home * {
  box-sizing: border-box;
}
:where(main).home a {
  color: inherit;
  text-decoration: none;
}
:where(main).home img {
  width: 100%;
  object-fit: cover;
}
.home_inner {
  width: min(1360px, calc(100% - 120px));
  margin: 0 auto;
}
.home_section {
  padding: 122px 0 140px;
}
.home_heading_block h2 {
  margin: 0;
  color: #075b53;
  font-family: lato, sans-serif;
  font-size: 68px;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.01em;
}
.home_heading_block > p {
  position: relative;
  margin: 12px 0 0;
  color: #075b53;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  padding-left: 20px;
}
.home_heading_block > p::before {
  position: absolute;
  left: 0;
  top: 45%;
  content: "";
  width: 10px;
  height: 60px;
  background-image: url(/img/daen_point.png);
  background-size: contain;
}
.home_heading_block > p.white::before {
  position: absolute;
  left: 0;
  top: 45%;
  content: "";
  width: 10px;
  height: 60px;
  background-image: url(/img/daen_point_white.png);
  background-size: contain;
}

.home_heading_block > span {
  display: block;
  margin-top: 31px;
  font-size: 16px;
  line-height: 2.375;
  width: 306px;
}
.home_btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 229px;
  height: 67px;
  margin-top: 48px;
  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;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}
.home_btn span {
  position: relative;
  display: grid;
  place-items: center;
  width: 68px;
  height: 100%;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  color: transparent;
  font-size: 26px;
  font-family: lato, sans-serif;
}
.home_btn span::after {
  content: "→";
  position: absolute;
  color: #fff;
}
.home_btn:hover span::after {
  animation: homeButtonArrowSlide 0.55s ease;
  color: #006158 !important;
}
.home_btn:hover {
  background: #fff;
  border-color: #075b53;
  color: #006158 !important;
}
.home_btn:hover span {
  border-left-color: #075b53;
}

@keyframes homeButtonArrowSlide {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  35% {
    opacity: 0;
    transform: translateX(16px);
  }
  36% {
    opacity: 0;
    transform: translateX(-16px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.home_hero {
  position: relative;
  height: 795px;
  overflow: hidden;
  background-color: #075b53;
  opacity: 1;
}
.home_hero::before {
  position: absolute;
  z-index: 3;
  inset: 0;
  background-color: #075b53;
  content: "";
  opacity: 1;
  pointer-events: none;
  transition: opacity 1.8s ease-in-out;
}
.home_hero.is-main-visual-ready::before {
  opacity: 0;
}
.home_hero_image {
  position: relative;
  width: 100%;
  height: 100%;
  background: #075b53;
  opacity: 0;
  transform: scale(1.025);
  transition:
    opacity 1.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 2.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.home_hero_slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  color: inherit;
  text-decoration: none;
  pointer-events: none;
  transition: opacity 2s ease-in-out;
}
.home_hero_slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.home_hero_slide > picture > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home_hero_caption {
  position: absolute;
  z-index: 1;
  bottom: 30px;
  left: 0;
  margin: 0;
  padding: 8px 28px 9px;
  background: rgba(255, 255, 255, 0.62);
  color: #221815;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.home_hero_caption span {
  white-space: nowrap;
}
.home_hero_nature_content {
  position: absolute;
  z-index: 1;
  top: 18%;
  left: 7%;
  width: auto;
  color: #fff;
}
.home_hero_nature_logo {
  display: block;
  width: 560px;
  max-width: 100%;
  height: auto;
  margin-bottom: 60px;
  object-fit: contain;
}
.home_hero_nature_content p {
  margin: 0 0 60px;
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}
.home_hero_nature_button {
  display: inline-grid;
  grid-template-columns: 150px 54px;
  min-height: 54px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  color: #075b53;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.home_hero_nature_button > span {
  box-sizing: border-box;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding-right: 0;
  border-left: 1px solid rgba(7, 91, 83, 0.35);
  font-family: lato, sans-serif;
  font-size: 22px;
  justify-self: stretch;
  align-self: stretch;
}
.home_hero_nature_button {
  align-items: center;
  justify-items: center;
}
.home_hero_copy {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 92px 30px 20px 4%;
  background: #fff;
  clip-path: polygon(calc(100% - 6vw) 0, 100% 0, 100% 100%, calc(100% - 6vw - 170px) 100%);
  writing-mode: vertical-rl;
  color: #31302d;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.8s ease;
}
.home_hero.is-main-visual-ready .home_hero_image {
  opacity: 1;
  transform: scale(1);
}
.home_hero.is-copy-panel-ready .home_hero_copy {
  opacity: 1;
}
.home_hero_title {
  position: absolute;
  z-index: 4;
  inset: 0;
  margin: 0;
  pointer-events: none;
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transform: translateY(64px);
  transition:
    clip-path 1.8s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1s ease,
    transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.home_hero.is-intro-started .home_hero_title {
  opacity: 1;
  clip-path: inset(0);
  transform: translateY(0);
}
.home_hero_title > span {
  position: absolute;
  inset: 0;
}
.home_hero_title img {
  position: absolute;
  top: clamp(42px, 4.5vw, 72px);
  right: calc(6vw + 37px);
  width: clamp(250px, 22.5vw, 360px);
  height: auto;
  width: 220px;
}

.home_hero_title_white {
  clip-path: none;
}

.home_hero_title_black {
  clip-path: polygon(calc(100% - 6vw) 0, 100% 0, 100% 100%, calc(100% - 6vw - 170px) 100%);
  opacity: 0;
  transition: opacity 1.8s ease;
}
.home_hero.is-copy-color-ready .home_hero_title_black {
  opacity: 1;
}

.float_contant_btn {
  position: fixed;
  bottom: 10%;
  right: 31px;
  z-index: 10;
  width: 185px;
  height: 185px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  animation: floatContactSway 3.8s ease-in-out infinite !important;
  transform-origin: 50% 55%;
  will-change: transform;
  transition:
    opacity 0.45s ease,
    visibility 0s linear 0.45s;
}
.float_contant_btn picture {
  display: block;
  width: 100%;
  height: 100%;
}
.float_contant_btn img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@keyframes floatContactSway {
  0%,
  100% {
    transform: translate3d(0, 2px, 0);
  }
  35% {
    transform: translate3d(0, -9px, 0);
  }
  68% {
    transform: translate3d(0, -4px, 0);
  }
}
.float_contant_btn.is-scroll-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 0.45s ease,
    visibility 0s linear 0s;
}
.float_contant_btn.is-hidden-before-footer {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.45s ease,
    visibility 0s linear 0.45s;
}

@media screen and (min-width: 1025px) {
  .float_contant_btn {
    z-index: 1000;
  }

  .float_contant_btn.is-hidden-before-footer {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.home_split_heading {
  display: grid;
  grid-template-columns: 28% 72%;
}

/*news_hone*/

.home_news_body {
  padding-top: 13px;
}
.home_news_btn_sp {
  display: none;
}
.home_news_tabs {
  display: flex;
  gap: 0;
  margin-bottom: 30px;
}
.home_news_tabs button {
  position: relative;
  padding: 0 40px 5px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  border-left: 1px solid #d8d2ce;
}
.home_news_tabs button:last-child {
  border-right: 1px solid #d8d2ce;
}
.home_news_tabs button.active {
  color: var(--green);
}
.home_news_tabs button.active:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #075b53;
}
.home_news_tabs button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}
.home_news_list li[hidden] {
  display: none;
}
.home_news_list {
  list-style: none;
  margin: 15px 0 0;
  padding: 0;
  border-top: 1px solid #e8e4df;
}
.home_news_list li {
  border-bottom: 1px solid #e8e4df;
}
.home_news_list a {
  display: grid;
  grid-template-columns: 100px 85px 1fr 24px;
  align-items: center;
  gap: 18px;
  min-height: 102px;
  font-size: 12px;
}
.home_news_list time {
  color: #9a928c;
  font:
    400 13px lato,
    sans-serif;
}
.home_news_list strong {
  font-weight: 400;
  font-size: 15px;
}
.home_tag {
  padding: 7px 4px;
  background: #f3efe8;
  text-align: center;
  color: #8a837f;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}
.home_news_list i {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #075b53;
  color: #fff;
  font-style: normal;
  font-size: 7px;
  line-height: 1;
}

.home_concept {
  position: relative;
  min-height: 700px;
  height: 770px;
  display: flex;
  align-items: center;
  background: url("/img/concept_bg.jpg") center/cover no-repeat;
  color: #fff;
}
.home_concept_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home_heading_light h2,
.home_heading_light > p {
  color: #fff;
}
.home_concept_text {
  width: 46%;
}
.home_concept-text > p,
.home_concept_text > p {
  margin: 50px 0 3px;
  font-size: 16px;
  line-height: 2.375;
  letter-spacing: 0.01em;
}
.home_btn_light {
  background: rgba(0, 91, 82, 0.9);
}
.home_concept_btn_sp {
  display: none;
}
.home_concept_diagram {
  position: relative;
  width: 619px;
  height: 569px;
}
.home_concept_diagram img {
  width: 100%;
  height: 100%;
}
.home_services {
  background-image: url("/img/services_bg.jpg");
  background-size: cover;
}
.home_services.home_section {
  padding-top: 160px;
}
.home_services > .home_inner {
  width: min(1410px, calc(100% - 120px));
}
.home_services_intro {
  display: grid;
  width: 100%;
  max-width: 1360px;
  margin-right: auto;
  margin-left: auto;
  grid-template-columns: 50% 50%;
  align-items: start;
  margin-bottom: 82px;
}
.home_services_intro > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media screen and (min-width: 1025px) {
  .home .home_services_intro > div:last-child > p {
    transform: translateX(130px);
  }
}

.home_services_intro > div:last-child p {
  width: 96%;
  margin: 0;
  font-size: 16px;
  line-height: 2.375;
}
.home_services_intro .home_btn {
  margin-top: 32px;
}
.home_services_btn_sp {
  display: none;
}
.home_service_grid {
  display: grid;
  width: 100%;
  max-width: 1410px;
  margin-right: auto;
  margin-left: auto;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 28px;
  row-gap: 58px;
}
.service_card {
  grid-column: span 2;
  background: #fff;
  border-bottom: 1px solid var(--green);
}
.service_card_wide {
  grid-column: span 3;
}
.service_card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 900 / 462;
}
.service_card_wide img {
  aspect-ratio: 1035 / 480;
}
.service_card > div {
  position: relative;
  min-height: 185px;
  padding: 23px 24px 34px;
}
.service_card_heading_row {
  display: grid;
  grid-template-columns: 57% 44%;
  align-items: start;
  margin-bottom: 40px;
}
.service_card .service_card_heading_row h3 {
  margin-bottom: 0;
}
.service_card_categories {
  color: var(--green);
  font-size: 11px;
  line-height: 2;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.service_card:not(.service_card_wide) > div {
  min-height: 240px;
  padding-top: 20px;
}
.service_card:not(.service_card_wide) .service_card_categories {
  height: 48px;
  margin-top: -10px;
  margin-bottom: 10px;
}
.service_card h3 {
  margin: 0 0 24px;
  color: var(--green);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.05em;
}
.service_card:not(.service_card_wide) h3 {
  font-size: 22px;
}
.service_card h3 span {
  display: block;
  font-family: lato, sans-serif;
  font-size: 10px;
  font-weight: 400;
}
.service_card p {
  margin: 0 100px 0 0;
  font-size: 14px;
  line-height: 2;
}
.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;
}
.service_card a::before,
.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_card a::after {
  transform: translateX(-100%);
}
.service_card a:hover::before,
.service_card a:focus-visible::before {
  transform: translateX(100%);
}
.service_card a:hover::after,
.service_card a:focus-visible::after {
  transform: translateX(0);
}

.home_lifestyle {
  padding: 135px 0;
  background-image: url("/img/services_bg2.jpg");
  background-size: cover;
}
.home_lifestyle .home_heading_block h2 {
  font-size: 56px;
  line-height: 1.28;
}
.home_lifestyle_inner {
  display: grid;
  grid-template-columns: 31.5% 68.5%;
  align-items: start;
  gap: 20px;
}
.home_lifestyle_inner .home_heading_block span {
  max-width: 357px;
  width: 100%;
}

.lifestyle_cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.lifestyle_card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 298px;
}
.lifestyle_card img {
  width: 100%;
  height: 298px;
  object-fit: cover;
}
.lifestyle_card:not(.lifestyle_reverse) img {
  order: 2;
}
.lifestyle_card > span {
  position: relative;
  padding: 45px 46px;
  background: #075b53;
  color: #fff;
}
.lifestyle_card b {
  display: block;
  font:
    300 40px/1.2 lato,
    sans-serif;
  letter-spacing: 0.03em;
}
.lifestyle_card small {
  display: block;
  margin-top: 30px;
  font-size: 14px;
  line-height: 2;
}
.lifestyle_card em {
  position: absolute;
  right: 46px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.lifestyle_card em i {
  position: relative;
  display: grid;
  place-items: center;
  width: 64px;
  height: 36px;
  overflow: hidden;
  border-radius: 999px;
  background: #fff;
  font-family: lato, sans-serif;
  color: var(--green);
  font-style: normal;
  font-size: 0;
}
.lifestyle_card em i::before,
.lifestyle_card em i::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  content: "→";
  font:
    400 25px/1 lato,
    sans-serif;
  transition: transform 0.35s ease;
}
.lifestyle_card em i::after {
  transform: translateX(-100%);
}
.lifestyle_card:hover em i::before,
.lifestyle_card:focus-visible em i::before {
  transform: translateX(100%);
}
.lifestyle_card:hover em i::after,
.lifestyle_card:focus-visible em i::after {
  transform: translateX(0);
}
.lifestyle_reverse img {
  order: 0;
}

.home_works {
  padding-bottom: 0;
  background: linear-gradient(to bottom, transparent 0 50%, #006158 50% 100%);
}
.home_works_btn_sp {
  display: none;
}
.home_works_intro {
  display: grid;
  grid-template-columns: 66% 34%;
  margin-bottom: 100px;
}
.home_works_intro > div:last-child {
  font-size: 13px;
}
.home_works_intro > div:last-child > p {
  font-size: 16px;
  line-height: 2.375;
  margin-bottom: -18px;
}
.home_works_strip {
  width: 100%;
  padding: 0 0 150px max(60px, calc((100vw - 1410px) / 2));
  overflow: hidden;
}
.home_works_strip .swiper-slide {
  height: auto;
  min-width: 0;
  color: #fff;
}
.home_works_strip img {
  width: 100%;
  height: auto;
  aspect-ratio: 417 / 533;
  object-fit: cover;
}

@media screen and (min-width: 1025px) {
  .home_works_strip .swiper-slide {
    width: 400px;
  }

  .home_works_strip img {
    width: 400px;
    height: 520px;
    aspect-ratio: auto;
  }
}
.home_works_strip .home_works_body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 149px;
  padding: 25px 0 0;
  box-sizing: border-box;
  border-bottom: 1px solid #d8d2ce;
}
.home_works_strip b {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.home_works_strip .home_works_meta {
  position: static;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.home_works_strip small {
  font:
    400 14px,
    sans-serif;
  letter-spacing: 0.1em;
}
.home_works_strip .home_works_meta em {
  position: relative;
  font-style: normal;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding-right: 20px;
}
.home_works_strip .home_works_meta em::after {
  position: absolute;
  top: 30%;
  right: 0;
  content: "";
  width: 13px;
  height: 13px;
  background-image: url(/img/detail_arw.png);
  background-size: cover;
}
.home_works_strip h3 {
  overflow: hidden;
  font-size: 26px;
  font-weight: 500;
  margin-top: 34px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home_works_controls {
  position: absolute;
  right: max(60px, calc((100vw - 1410px) / 2));
  bottom: 55px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 20px;
}

@media screen and (min-width: 1025px) {
  .home_works_controls {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

.home_works_controls button {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.home_works_controls button:hover {
  opacity: 0.65;
}

.home_works_controls button.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}

.home_works_controls button img {
  width: 15px;
  height: 12px;
  aspect-ratio: auto;
  object-fit: contain;
}

.home_works_controls > span {
  width: 1px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.45);
}

.home_column_inner {
  display: block;
  width: min(1360px, calc(100% - 120px));
  margin: 0 auto;
}

.home_column.home_section {
  padding: 165px 0 140px;
}

.home_column_heading {
  text-align: center;
}

.home_column_heading > p {
  display: inline-block;
}

.home_column_intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  align-items: center;
  gap: 0;
  margin: 88px auto 0;
  max-width: 1184px;
}

.home_column_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 390px;
}

.home_column_logo img {
  display: block;
  width: min(100%, 390px);
  height: auto;
}

.home_column_copy {
  padding-top: 15px;
}

.home_column_copy > p {
  max-width: 680px;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0;
}

.home_column_copy .home_btn {
  display: flex;
  width: 230px;
  margin-top: 46px;
  margin-left: auto;
}
.home_column_btn_sp {
  display: none;
}

.column_slider_wrap {
  min-width: 0;
  max-width: 1135px;
  margin: 75px auto -40px;
}
.column_cards {
  width: 100%;
  overflow: hidden;
  min-width: 0;
}
.column_cards article {
  height: auto;
  min-height: 370px;
  border-bottom: 1px solid #b9c5c1;
}
.column_cards article a {
  display: flex;
  height: 100%;
  flex-direction: column;
}
.column_cards img {
  width: 100%;
  height: auto;
  aspect-ratio: 260 / 171;
  object-fit: cover;
}
.column_cards time {
  display: block;
  margin-top: 16px;
  color: #8a837f;
  font:
    400 12px lato,
    sans-serif;
}
.column_cards h3 {
  margin: 8px 0 20px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.85;
}
.column_cards span {
  position: relative;
  display: block;
  margin-top: auto;
  margin-bottom: 18px;
  color: var(--green);
  text-align: right;
  font:
    500 14px zen-kaku-gothic-new,
    sans-serif;
  padding-right: 20px;
}
.column_cards span::after {
  position: absolute;
  top: 22%;
  right: 0;
  content: "";
  width: 13px;
  height: 13px;
  background-image: url(/img/detail_arw2.png);
  background-size: cover;
}
.column_slider_controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 52px;
  padding-right: 12px;
  color: var(--green);
}
.column_slider_controls button {
  padding: 8px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 13px;
  cursor: pointer;
}
.column_slider_controls button img {
  position: relative;
  top: -10px;
  width: 11px;
  padding: 0;
  margin: 0;
}
.column_slider_controls > span {
  width: 1px;
  height: 20px;
  background: #b9d0cc;
}

.home_instagram {
  background: linear-gradient(to bottom, transparent 0 50%, #ffffff 50% 100%), linear-gradient(to bottom right, #f7f2e9, #eef7f1);
  text-align: center;
}

.home_instagram .home_heading_block > a {
  display: inline-block;
  margin-top: 20px;
  color: #8a837f;
  font:
    400 14px lato,
    sans-serif;
}
.home_instagram .home_heading_block > a img {
  position: relative;
  top: 5px;
  width: 31px;
}
.home_instagram .home_heading_block p {
  width: 140px;
  margin: 20px auto;
  white-space: nowrap;
  text-align: center;
}
.instagram_grid {
  display: grid;
  grid-template-columns: repeat(3, 292px);
  gap: 25px;
  justify-content: center;
  margin-top: 85px;
  margin-bottom: 65px;
}

.instagram_grid img {
  height: 292px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.home_recruit {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-rows: 39fr 23fr 38fr;
  height: 780px;
  background: #075b53;
  gap: 0;
  margin-bottom: 120px;
}
.recruit_center {
  grid-column: 2;
  grid-row: 1/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 35px;
  background: #075b53;
  color: #fff;
  text-align: center;
}
.recruit_center > p {
  margin: 0;
  width: 530px;
}
.recruit_center > p img {
  width: 100%;
}
.recruit_center h2 {
  margin: 40px 0;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.61;
  letter-spacing: 0.15em;
}
.recruit_center span {
  font-size: 14px;
  font-weight: 500;
  line-height: 2.28;
}
.recruit_center > a {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  padding: 20px 45px;
  border-radius: 50px;
  background: linear-gradient(90deg, #f1ae00, #ed1771);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  width: 305px;
  height: 78px;
  text-align: left;
}
.recruit_center > a:hover {
  background: linear-gradient(90deg, rgba(241, 174, 0, 0.75), rgba(237, 23, 113, 0.75));
}
.recruit_center > a span {
  position: absolute;
  overflow: hidden;
  top: 32%;
  right: 14%;
  background-color: #fff;
  border-radius: 30px;
  width: 49px;
  height: 26px;
  color: #d91b69;
  text-align: center;
  font-family: lato, sans-serif;
  font-size: 0;
  line-height: 26px;
  pointer-events: none;
}
.recruit_center > a span::before {
  content: "→";
  display: block;
  font-size: 20px;
}
.recruit_center > a:hover span::before {
  animation: recruit_arrow_slide 0.65s ease-in-out;
}
@keyframes recruit_arrow_slide {
  0% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(55px);
  }
  46% {
    transform: translateX(-55px);
  }
  100% {
    transform: translateX(0);
  }
}
.recruit_tile {
  background-position: center;
  background-size: cover;
}
.home_recruit_image_sp {
  display: none;
}
.recruit_01 {
  background-image: url("/img/recruit_01.jpg");
  grid-row: 1;
  margin-bottom: 8px;
}
.recruit_02 {
  background-image: url("/img/recruit_02.jpg");
  grid-row: 2/4;
  margin-top: 8px;
}
.recruit_03 {
  background-image: url("/img/recruit_03.jpg");
  grid-column: 3;
  grid-row: 1/3;
  margin-bottom: 8px;
}
.recruit_04 {
  background-image: url("/img/recruit_04.jpg");
  grid-column: 3;
  grid-row: 3;
  margin-top: 8px;
}

body,
html {
  overflow-x: hidden;
}

body {
  background-color: #fff;
  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 2em;
  color: #4b4242;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
img {
  vertical-align: bottom;
  height: auto;
}
a img {
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -o-transition: 0.8s;
  -ms-transition: 0.8s;
  transition: 0.8s;
}
a img:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
}

/* ===========================
   Header
=========================== */

header {
  position: relative;
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  /*border-bottom: 1px solid #d8d2ce;*/
  z-index: 2;
  transform: translateY(0);
  opacity: 1;
}

header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

header.is-fixed.is-visible {
  pointer-events: auto;
  animation: headerSlideIn 0.7s ease forwards;
}

header.is-fixed.is-leaving {
  pointer-events: none;
  animation: headerSlideOut 0.7s ease forwards;
}

@keyframes headerSlideIn {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes headerSlideOut {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}

@keyframes mobileMenuFadeIn {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mobileMenuFadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-24px);
  }
}

/* ---------- Logo ---------- */

header > a:first-child img.logo {
  width: 320px; /* 固定 */
  max-width: none;
  height: auto;
  margin: 0 50px 0 43px;
  flex-shrink: 0;
}

header > a:first-child {
  flex: 0 0 auto;
}

/* ---------- Navigation ---------- */

.mobile_menu_button,
.mobile_header_contact {
  display: none;
}

.mobile_submenu_toggle {
  display: none;
}

header nav {
  flex: 1;
  height: 100%;
}

header nav > ul {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

header nav > ul > li {
  position: relative;
  flex: 0 0 auto;
}

header nav > ul > li:last-child {
  flex: 0 0 205px; /* お問い合わせボタン固定幅 */
  margin-left: 18px;
}

header nav > ul > li > a {
  position: relative;
  width: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 19px;
  white-space: nowrap;
  text-align: left;
  line-height: 1.1;
  text-decoration: none;
  color: #221815;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  font-family: lato, sans-serif;
  font-weight: 500;
  font-size: 16px;
}

header nav > ul > li > a::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 1px;
  background: #075b53;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
  pointer-events: none;
}

header nav > ul > li > a span {
  display: inline-block;
  margin-top: 5px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  text-align: left;
  font-family: zen-kaku-gothic-new, sans-serif;
}

.service_heading_sp {
  display: none;
}

header nav .submenu .mobile_service_archive_link {
  display: none;
}

header nav > ul > li:not(:last-child) > a:hover,
header nav > ul > li.active > a,
header nav > ul > li.has_submenu:hover > a,
header nav > ul > li.has_submenu:focus-within > a {
  color: #075b53;
}

header nav > ul > li:not(:last-child) > a:hover::after,
header nav > ul > li.active > a::after,
header nav > ul > li.has_submenu:hover > a::after,
header nav > ul > li.has_submenu:focus-within > a::after {
  transform: scaleX(1);
}

header nav > ul > li:last-child > a::after {
  display: none;
}

/* ---------- Contact ---------- */

header nav > ul > li:last-child a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
  width: 100%;
  height: 100%;
  background: #075b53;
  color: #fff;
  text-align: center;
}
header nav > ul > li:last-child a:hover {
  opacity: 0.75;
}
header nav > ul > li:last-child img {
  width: 26px;
  height: auto;
  margin: 5px 0 0;
}

header nav > ul > li:last-child span {
  line-height: 1.3;
  font-size: 15px;
  font-weight: 500;
}

header nav > ul > li.has_submenu .submenu {
  position: fixed;
  top: 90px;
  left: 0;
  z-index: 1;

  width: 100%;
  height: 96px;
  display: flex;
  justify-content: center;
  align-items: center;

  margin: 0;
  padding: 25px 30px;
  list-style: none;

  background: #fff;
  border-top: 1px solid #eee;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);

  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  pointer-events: none;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
}

header nav > ul > li.has_submenu:hover .submenu,
header nav > ul > li.has_submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

header nav > ul > li.has_submenu .submenu li {
  flex: 0 0 auto;
}

header nav > ul > li.has_submenu .submenu li + li {
  margin-left: 14px;
}

header nav > ul > li.has_submenu .submenu a {
  position: relative;
  display: block;

  width: auto;
  height: auto;
  padding: 8px 22px 12px;

  color: #221815;
  font-family: zen-kaku-gothic-new, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

header nav > ul > li.has_submenu .submenu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;

  height: 1px;
  background: #d8d2ce;
  transform: none;
}

header nav > ul > li.has_submenu .submenu a:hover {
  color: #075b53;
}

header nav > ul > li.has_submenu .submenu a:hover::after {
  background: #075b53;
}

header nav > ul > li.has_submenu .submenu li.active > a {
  color: #075b53;
  font-size: 16px;
}

header nav > ul > li.has_submenu .submenu li.active > a::after {
  display: none;
}

#content_wrapper {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}
#content_wrapper img {
  width: 100%;
  height: auto;
}
footer {
  width: 100%;
  min-height: 676px;
  padding: 107px 0 80px;
  background: linear-gradient(135deg, #f7f2e9 0%, #eef7f1 100%);
}

.footer_inner {
  width: calc(100% - 120px);
  max-width: 1380px;
  margin: 0 auto;
}

.footer_main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(198px, 1fr) repeat(3, minmax(150px, 200px));
  column-gap: clamp(70px, 7vw, 100px);
  align-items: start;
}

.footer_brand {
  width: 100%;
}

.footer_column h3 {
  margin: 0;
  color: #221815;
  font-family: lato, sans-serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.footer_accordion_toggle {
  display: block;
  width: 100%;
  padding: 0 0 18px;
  border: 0;
  background: transparent;
  color: #221815;
  font-family: lato, sans-serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-align: left;
  pointer-events: none;
}

.footer_accordion_toggle::-webkit-details-marker {
  display: none;
}

.footer_accordion_heading b {
  font-family: lato, sans-serif !important;
  display: block;
  font: inherit;
}

.footer_accordion_heading small {
  display: block;
  margin-top: 4px;
  color: #4b4242;
  font-family: zen-kaku-gothic-new, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
}

.sp_only {
  display: none;
}

.service_card h3 .sp_hide {
  display: inline;
  margin: 0;
  font: inherit;
  letter-spacing: inherit;
}

.footer_accordion_item:not([open]) > .footer_accordion_panel {
  display: block;
}

@media screen and (min-width: 1025px) {
  .footer_services_column a[href$="/service/life.html"] {
    white-space: nowrap;
  }

  .footer_main > .footer_brand {
    grid-column: 1;
    grid-row: 1;
  }

  .footer_main > .footer_accordion_item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .footer_main > .footer_services_column {
    grid-column: 3;
    grid-row: 1;
  }

  .footer_main > .footer_lifestyle {
    grid-column: 4;
    grid-row: 1;
  }

  .footer_accordion_item:not([open]) > .footer_accordion_panel,
  .footer_accordion_item:not([open]) > .footer_accordion_panel ul {
    display: block !important;
  }

  .footer_bottom > .footer_pagetop {
    position: absolute;
    top: -310px;
    right: 0;
    width: 72px;
    margin: 0;
  }
}

.footer_column_subtitle {
  margin: 4px 0 22px;
  color: #4b4242;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

.footer_column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer_column li + li {
  margin-top: 5px;
}

.footer_column li a {
  position: relative;
  display: inline-block;
  padding-left: 14px;
  padding-bottom: 2px;
  color: #4b4242;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer_column li a::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0;
}

.footer_column li a::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 0;
  width: calc(100% - 14px);
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.footer_column li a:hover {
  color: #075b53;
}

.footer_column li a:hover::after {
  transform: scaleX(1);
}

.footer_logo {
  display: inline-block;
}

.footer_logo img {
  width: 360px;
  height: auto;
}

.footer_contact {
  box-sizing: border-box;
  width: 296px;
  height: 78px;
  border: 1px solid transparent;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 46px;
  background: #075b53;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.footer_contact:hover {
  border-color: #075b53;
  background-color: #fff;
  color: #075b53;
}

.footer_contact img {
  display: none;
}

.footer_contact::before {
  content: "";
  flex: 0 0 28px;
  width: 28px;
  height: 22.6154px;
  background-color: currentColor;
  -webkit-mask: url("/img/mail_icon.png") center / contain no-repeat;
  mask: url("/img/mail_icon.png") center / contain no-repeat;
}

.footer_instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 45px;
  color: #8a837f;
  font-family: lato, sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.footer_instagram_icon {
  width: 31px;
  height: 31px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #075b53;
  color: #fff;
  font-size: 0;
}

.footer_instagram_icon img {
  width: 100%;
}

.footer_link_group + .footer_link_group {
  margin-top: 43px;
}

.footer_pagetop {
  width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 160px 0 0 auto;
  text-decoration: none;
}
.footer_pagetop img {
  width: 70px;
}
.footer_bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-top: 76px;
  padding-top: 20px;
  border-top: 1px solid #d8d2ce;
}

.footer_copyright {
  flex-shrink: 0;
  margin: 0;
  color: #77716d;
  font-family: lato, sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.footer_bottom_nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer_bottom_nav li {
  position: relative;
}

.footer_bottom_nav li + li {
  margin-left: 18px;
  padding-left: 18px;
}

.footer_bottom_nav li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 12px;
  background: rgba(75, 66, 66, 0.25);
  transform: translateY(-50%);
}

.footer_bottom_nav a {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
  color: #221815;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.footer_bottom_nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

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

.footer_bottom_nav a:hover::after {
  transform: scaleX(1);
}

/*___________スマホ用CSS_____________*/
/* Main image fade */
main img:not([data-no-lazy-fade]) {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.service_page > .shop_intro > p,
.sustainability_page > .sustainability_message > h2,
.sustainability_page > .sustainability_message > p,
.sustainability_page > .sustainability_message > strong {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

main img:not([data-no-lazy-fade]).is-loaded,
.service_page > .shop_intro > p.is-loaded,
.sustainability_page > .sustainability_message > h2.is-loaded,
.sustainability_page > .sustainability_message > p.is-loaded,
.sustainability_page > .sustainability_message > strong.is-loaded {
  opacity: 1;
  transform: translateY(0);
}

/* Pagination controls must remain visible and should not use content-image fades. */
.news_pagination img,
.works_pagination img,
.home_works_controls img {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
