/* -HEADER
--------------------------------------------------------------------------------------------- */
/* ========================================================
   Base
======================================================== */
.site-inner {
  width: 92.3%;
  margin: 0 auto;
}
body.is-fixed {
  width: 100%;
  position: fixed;
  left: 0;
  overflow: hidden;
}
/* ========================================================
   Header
======================================================== */
.hdr {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.hdr.is-scrolled, .hdr.is-open, .hdr:has(.has-dropdown:hover) {
  background-color: #ffffff;
}
.hdr__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.hdr__logo-wrap {
  width: 65%;
  position: relative;
  z-index: 1002;
  max-width: 240px;
}
.hdr__logo-wrap h1 {
  margin-bottom: 0;
}
.hdr__logo a {
  display: block;
  width: 100%;
}
.hdr__logo img {
  width: 100%;
  height: auto;
  display: block;
}
.hdr__right {
  width: 25%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hdr__nav-wrap {
  display: none;
}
/* ========================================================
   Hamburger Trigger
======================================================== */
.hdr-hamburger {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  z-index: 1002;
}
.hdr-hamburger span {
  position: absolute;
  right: 0;
  height: 1px;
  background-color: #000;
  transition: 0.3s ease-in-out;
}
.hdr-hamburger span:nth-child(1) {
  top: 0.8rem;
  width: 100%;
}
.hdr-hamburger span:nth-child(2) {
  bottom: 0.8rem;
  width: 70%;
}
.hdr-hamburger.is-active span:nth-child(1) {
  top: 50%;
  width: 100%;
  transform: translateY(-50%) rotate(25deg); /* 角度を浅くして横長に */
}
.hdr-hamburger.is-active span:nth-child(2) {
  top: 50%;
  width: 100%;
  transform: translateY(-50%) rotate(-25deg); /* 角度を浅くして横長に */
}
/* ========================================================
   Toggle Menu
======================================================== */
.tgl-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}
.tgl-menu.is-active {
  opacity: 1;
  visibility: visible;
}
.tgl-menu__block {
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  margin-left: auto;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
  padding-top: 5rem;
}
.tgl-menu.is-active .tgl-menu__block {
  transform: translateX(0);
}
.tgl-nav {
  width: 100%;
}
.tgl-nav a {
  transition: .3s;
}
.tgl-nav a:hover {
  opacity: 0.7;
  transition: .3s;
}
.tgl-nav__block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.56rem 0 1.2rem;
  border-bottom: 0.05rem solid #e5e5e5;
}
.tgl-menu__inner {
  width: 85%;
  margin: 0 auto;
}
.tgl-left {
  width: 38%;
}
.tgl-left a {
  color: #000;
  display: block;
  text-decoration: none;
}
.tgl-right {
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.tgl-right a {
  color: #4d4d4d;
  margin-right: 1rem;
  margin-bottom: 0.3rem;
  display: block;
  text-decoration: none;
  font-size: 0.928rem;
}
.icon-external {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin-left: 0.3rem;
  background: url(../images/icon_external.svg) no-repeat center center / contain;
  position: relative;
  top: 1px;
}
.tgl-banners {
  margin-top: 3.57rem;
  width: 100%;
}
.tgl-banner {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
  overflow: hidden;
}
.tgl-banner img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}
.tgl-banner span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.14rem;
  letter-spacing: 0.05em;
  color: #ffffff;
  z-index: 2;
}
.tgl-banner:hover img {
  transform: scale(1.05);
}
.tgl-copyright {
  text-align: left;
  font-size: 0.85rem;
  margin-top: 7.14rem;
  color: #666666;
  margin-bottom: 2.5rem;
}
.no-link{
	cursor:pointer;
}
@media screen and (min-width: 768px) {
  .tgl-menu__block {
    width: 65%;
    padding-top: 6.8rem;
  }
  .tgl-banners {
    display: flex;
    justify-content: space-between;
  }
  .tgl-banner {
    width: 49%;
    margin-bottom: 0;
  }
  .hdr__logo-wrap {
    max-width: 320px;
    z-index: 999;
  }
}
@media screen and (min-width: 1200px) {
  .hdr {
    height: 5.5rem;
  }
  .hdr__logo-wrap {
    width: 22%;
    max-width: 380px;
    position: relative;
    top: -3px;
  }
    .hdr__right {
        width: 75%;
        justify-content: space-between;
        gap: 1rem;
    }
  .hdr__nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 0.875rem;
  }
  .hdr__nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
  }
  .hdr__btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 0.9375rem;
    max-width: 370px;
  }
  .hdr__btns a.vm {
    width: 100%;
  }
  .hdr-link {
    font-size: 1rem;
    color: #000;
    text-decoration: none;
    transition: opacity 0.3s;
    margin-right: 1.2rem;
    transition: .3s;
  }
  .hdr-link:hover {
    opacity: 0.8;
    text-decoration: none;
    transition: .3s;
    color: #000;
  }
  .icon-chevron {
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    margin-left: 0.4rem;
    border-right: 2px solid #004da0;
    border-bottom: 2px solid #004da0;
    transform: rotate(45deg);
    position: relative;
    top: -0.15rem;
    transition: .3s;
  }
  .hdr-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48%;
    height: 3.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffffff !important;
    text-decoration: none;
    transition: opacity 0.3s;
  }
  .hdr-btn:hover {
    opacity: 0.8;
  }
  .tgl-menu__block {
    width: 45%;
    padding-top: 5.8rem;
  }
  .tgl-menu__inner {
    width: 72.8%;
  }
  .tgl-left a {
    font-size: 1.125rem;
  }
  .tgl-right a {
    font-size: 0.937rem;
  }
  /* ドロップダウンのベース設定 */
  .hdr-item {
    position: static;
  }
  .hdr-dropdown {
    position: absolute;
    top: 5.5rem;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 3.5rem 0 4.5rem;
    z-index: 999;
  }
  /* ホバー時の表示処理 */
  .has-dropdown:hover .hdr-dropdown {
    opacity: 1;
    visibility: visible;
  }
  .has-dropdown:hover .icon-chevron {
    transform: rotate(-135deg);
    top: 0.1rem;
    transition: .3s;
  }
  /* ドロップダウン内部レイアウト */
  .hdr-dropdown__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .hdr-dropdown__title {
    width: 20%;
    display: flex;
    flex-direction: column;
  }
  .hdr-dropdown__title .f-eng {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 0.6rem;
  }
  .hdr-dropdown__title span:last-child {
    font-size: 1.125rem;
    letter-spacing: 0.05rem;
  }
  .hdr-dropdown__items {
    width: 75%;
    display: flex;
            justify-content: flex-start;
	  margin: 0 -0.8rem;
  }
    .hdr-dropdown__item {
        width: 25%;
        text-decoration: none;
        display: block;
        color: #000;
        padding: 0 0.8rem;
    }
  .hdr-dropdown__item .img-wrap {
    width: 100%;
    margin-bottom: 1rem;
    overflow: hidden;
  }
  .hdr-dropdown__item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
  }
  .hdr-dropdown__item:hover {
    text-decoration: none;
    color: #000;
  }
  .hdr-dropdown__item:hover img {
    transform: scale(1.05);
  }
  .hdr-dropdown__item p {
    text-align: center;
    font-size: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.12rem;
    margin-bottom: 0;
  }
  .hdr-dropdown__item img.icon-ext-img {
    width: 19px;
    height: 15px;
    margin-left: 0.5rem;
    display: inline-block;
    object-fit: contain;
    position: relative;
    top: 0px;
  }
  .tgl-right {
    position: relative;
    top: 2px;
  }
  .tgl-banners {
    margin-top: 3.75rem;
  }
  .tgl-nav__block {
    padding: 1.7rem 0 1.3rem;
  }
  .tgl-copyright {
    font-size: 0.8125rem;
    margin-top: 6.875rem;
    margin-bottom: 4.3rem;
  }
  .site-inner {
    width: 94.44%;
  }
  .hdr-hamburger span {
    height: 2px;
  }
}
@media screen and (min-width: 1600px) {
  .hdr__logo-wrap {
    width: 20%;
  }
  .hdr__right {
    width: 75%;
  }
  .tgl-menu__block {
    width: 38.88%;
  }
  .tgl-right a {
    margin-right: 1.2rem;
    margin-bottom: 0.4rem;
  }
  .hdr-link {
    font-size: 1.125rem;
    margin-right: 2.05rem;
  }
  .hdr__btns {
    max-width: 400px;
  }
	  .hdr-dropdown__items {
	  margin: 0 -1rem;
  }
    .hdr-dropdown__item {
        padding: 0 1rem;
    }
}
/*SNS*/
.hdr-sns {
    width: 20px;
    margin-right: 1.5rem;
	transition: .3s;
	z-index: 1002;
	    filter: invert(100%);
}
.home .hdr-sns,.is-open .hdr-sns,.is-fixed .hdr-sns{
	filter: invert(0%);
}
.hdr-sns:hover{
	opacity: 0.8;
	transition: .3s;
}
@media screen and (min-width: 1200px) {
	.hdr-sns {
    width: 26px;
    margin-right: 0.7rem;
    margin-left: 1rem;
}
}
/* ========================================================
   FV Section
======================================================== */
.fv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.fv__slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.fv__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.5s ease-in-out;
}
.fv__slide.is-active {
  opacity: 1;
  z-index: 2;
}
.fv__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  transition: transform 6.5s linear;
}
.fv.is-loaded .fv__slide.is-active img, .fv.is-loaded .fv__slide.is-prev img {
  transform: scale(1);
}
.fv__inner {
  position: relative;
  height: 100%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 20%;
  mix-blend-mode: overlay;
  width: 85%;
  margin: 0 auto;
}
.fv__title {
  width: 84.33%;
  margin-bottom: 0;
}
.fv__title img {
  width: 100%;
  height: auto;
  display: block;
}
.fv__scroll {
  position: absolute;
  bottom: 2.2rem;
  right: 5%;
  width: 5rem;
  height: 5rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: transparent;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  gap: 0.2rem;
}
.fv__scroll:focus {
  outline: none;
}
.fv__scroll-text {
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #ffffff;
}
.fv__scroll-icon {
  width: 0.8rem;
  height: auto;
  margin-top: 0.4rem;
  transform: rotate(90deg);
}
@media screen and (min-width: 768px) {
  .fv__inner {
    flex-direction: row;
    justify-content: flex-end;
    padding-top: 9rem;
    width: 86.66%;
  }
  .fv__scroll {
    bottom: 3.3rem;
    right: 4.1%;
    width: 140px;
    height: 140px;
    transition: background-color 0.3s;
    gap: 0.5rem;
  }
  .fv__scroll:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  .fv__scroll-text {
    font-size: 0.8rem;
  }
}
@media screen and (min-width: 992px) {
  .fv__title {
    width: 41.28%;
  }
}
@media screen and (max-width: 576px) {
  .fv {
    height: calc(100vh - 45px);
  }
}
/**************************
ページヘッダー
**************************/
.page_head {
  padding: 9rem 0 0;
}
.head_title {
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 1.8rem;
  text-align: center;
}
.head_title .f-eng {
  font-size: 1rem;
  display: block;
  color: #808080;
  margin-bottom: 0.4rem;
}
.page_head p {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .page_head {
    padding: 11rem 0 3rem;
  }
  .page_head .container-1600 {
    display: flex;
    justify-content: flex-start;
    max-width: unset;
  }
  .head_title {
    margin-bottom: 0;
    font-size: 2rem;
  }
  .page_head .mb-0 {
    position: relative;
    top: 25px;
    margin-left: 3rem;
  }
  .head_title .f-eng {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }
  .page_head.contact-reserve .container-1600 {
    display: unset;
    text-align: center;
  }
  .page_head.contact-reserve .mb-0 {
    top: 0;
    margin-left: 0;
    margin-top: 2.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .page_head {
    padding: 12.375rem 0 4.5rem;
  }
  .page_head .mb-0 {
    top: 35px;
    margin-left: 6.25rem;
    font-size: 1.125rem;
    line-height: 2;
  }
  .head_title {
    font-size: 3.125rem;
  }
  .head_title .f-eng {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
  .page_head.contact-reserve .mb-0 {
    top: 0;
    margin-left: 0;
    margin-top: 4.125rem;
  }
}
@media screen and (max-width: 767px) {
  .head_title.reno_title {
    font-size: 1.8rem;
    margin-bottom: 0;
    line-height: 1.4;
  }
  .page-id-621 .head_title {
    font-size: 1.8rem;
  }
}
/* ========================================================
   下層ページ共通メインビジュアル (.page-header)
======================================================== */
.page-header {
  position: relative;
  width: 100%;
  height: 350px; /* スマホ時の高さ */
  overflow: hidden;
  display: flex;
  align-items: flex-end; /* コンテンツを下揃え */
}
.page-header__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.page-header__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-header__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #000;
  width: 100%;
  height: 100%;
  opacity: 0.15;
}
.page-header__inner {
  position: relative;
  z-index: 3;
  width: 85%;
  margin: 0 auto 2.5rem;
}
.page-header__title {
  margin-bottom: 0.3rem;
}
.page-header__title img {
  width: 140px;
  height: auto;
}
.svg-white {
  filter: brightness(0) invert(1);
}
.page-header__subtitle {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .page-header {
    height: 480px;
  }
  .page-header__inner {
    margin: 0 auto 3.5rem;
  }
  .page-header__title img {
    width: 220px;
  }
  .page-header__subtitle {
    font-size: 1.56rem;
  }
}
@media screen and (min-width: 1400px) {
  .page-header {
    height: 800px;
  }
  .page-header__title img {
    width: 340px;
  }
  .page-header__inner {
    margin: 0 auto 7.5rem;
    width: 88.88%;
  }
}
/*協力会社様へ*/
.page-id-1790 .page-header__title img {
  width: 17rem;
}
@media screen and (min-width: 768px) {
  .page-id-1790 .page-header__title img {
    width: 26rem;
  }
}
@media screen and (min-width: 1400px) {
  .page-id-1790 .page-header__title img {
    width: 41rem;
  }
}
/*会社概要*/
.page-id-1795 .page-header__title img {
  width: 14rem;
}
@media screen and (min-width: 768px) {
  .page-id-1795 .page-header__title img {
    width: 20rem;
  }
}
@media screen and (min-width: 1400px) {
  .page-id-1795 .page-header__title img {
    width: 29.18rem;
  }
}
/*お問い合わせ*/
.page-id-1792 .page-header__title img {
  width: 13rem;
}
@media screen and (min-width: 768px) {
  .page-id-1792 .page-header__title img {
    width: 18rem;
  }
}
@media screen and (min-width: 1400px) {
  .page-id-1792 .page-header__title img {
    width: 24.375rem;
  }
}
/*サステナビリティ*/
.page-id-1797 .page-header__title img {
  width: 18rem;
  margin-bottom: -0.5rem;
}
@media screen and (min-width: 768px) {
  .page-id-1797 .page-header__title img {
    width: 26rem;
    margin-bottom: -1rem;
  }
}
@media screen and (min-width: 1400px) {
  .page-id-1797 .page-header__title img {
    width: 41rem;
  }
}
/*事業内容*/
.page-id-1799 .page-header__title img {
  width: 14rem;
}
@media screen and (min-width: 768px) {
  .page-id-1799 .page-header__title img {
    width: 18rem;
  }
}
@media screen and (min-width: 1400px) {
  .page-id-1799 .page-header__title img {
    width: 28.43rem;
  }
}
/*プライバシーポリシー*/
.page-id-1820 .page-header__title img {
  width: 18rem;
  margin-bottom: -0.3rem;
}
@media screen and (min-width: 768px) {
  .page-id-1820 .page-header__title img {
    width: 27rem;
  }
}
@media screen and (min-width: 1400px) {
  .page-id-1820 .page-header__title img {
    width: 41rem;
  }
}
/* ========================================================
   下層用ヘッダー 反転
======================================================== */
.hdr--transparent {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent !important;
  box-shadow: none !important;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 100;
}
.hdr--transparent .logo-black {
  display: none;
}
.hdr--transparent .logo-white {
  display: block;
}
.hdr--transparent .hdr-link {
  color: #ffffff !important;
}
.hdr--transparent .hdr-link .icon-chevron {
  border-color: #ffffff !important;
  filter: brightness(0) invert(1);
}
.hdr--transparent .hdr-hamburger span {
  background-color: #ffffff;
}
.hdr--transparent.is-fixed, 
.hdr--transparent.is-dropdown-open, 
.hdr--transparent.is-open {
  background-color: #ffffff !important;
}
.hdr--transparent.is-fixed .logo-black, 
.hdr--transparent.is-dropdown-open .logo-black, 
.hdr--transparent.is-open .logo-black {
  display: block;
}
.hdr--transparent.is-fixed .logo-white, 
.hdr--transparent.is-dropdown-open .logo-white, 
.hdr--transparent.is-open .logo-white {
  display: none;
}
.hdr--transparent.is-fixed .hdr-link, 
.hdr--transparent.is-dropdown-open .hdr-link, 
.hdr--transparent.is-open .hdr-link {
  color: #000 !important;
}
.hdr--transparent.is-fixed .hdr-link .icon-chevron, 
.hdr--transparent.is-dropdown-open .hdr-link .icon-chevron, 
.hdr--transparent.is-open .hdr-link .icon-chevron {
  border-color: #004da0 !important;
  filter: none;
}
.hdr--transparent.is-fixed .hdr-hamburger span, 
.hdr--transparent.is-dropdown-open .hdr-hamburger span, 
.hdr--transparent.is-open .hdr-hamburger span {
  background-color: #000;
}

.js-hamburger.is-active span {
  background-color: #000 !important;
}
.hdr-item.has-dropdown:hover .hdr-dropdown {
  display: block;
  opacity: 1;
  visibility: visible;
}
.hdr-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  background-color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.hdr-item.has-dropdown:hover {
  background-color: transparent;
}
.hdr--border, .error404 .hdr {
  border-bottom: 1px solid #ddd;
}