﻿@charset "UTF-8";

/*----------------------------------------
ヘッダーcss
-----------------------------------------*/
.skip {
  /* アクセシビリティ このページの本文へ移動用 */
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 99;
  filter: drop-shadow(1px 1px 30px rgba(0, 0, 0, 0.5));
  transform: translateZ(0);
  transition: 0.3s ease-in;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0, rgba(200, 180, 66, 0.035) 30%, rgba(202, 189, 112, 0.325) 100%);
}

.header:has(.-active),
.header.change-color:has(.-active) {
  background: #222;
}

.header .header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding-left: var(--inner-padding-LR);
  /* padding-right: var(--inner-padding-LR); */
}

.header .logo a {
  display: block;
  padding: 3.5% 5% 4% 0;
  transition: 0.3s ease-in 0s;
  max-width: 210px;
  width: 35vw;
  max-height: var(--header-height);
}

.header .logo a img {
  object-position: left;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header .header_pickup_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.header .logo_other a {
  display: block;
  max-width: 200px;
  width: 35vw;
  max-height: var(--header-height);
}

.header .logo_other a img {
  object-position: left;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hamburger {
  display: block;
  margin-left: auto;
  position: relative;
  width: 90px;
  height: 72px;
  border: none;
  padding: 10px;
  background-color: transparent;
}

.hamburger.-active .hamburger__line {
  background-color: transparent;
}

.hamburger.-active .hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger.-active .hamburger__line::after {
  top: 0;
  transform: rotate(-45deg);
}

.hamburger__line {
  display: block;
  height: 2px;
  width: 45%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* background-color: #494949; */
  transition: 0.4s;
}

.hamburger__line:before,
.hamburger__line:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  /* background-color: #494949; */
  background-color: #fff;
  transition: inherit;
}

.hamburger__line:before {
  top: -4.5px;
}

.hamburger__line:after {
  top: 4.5px;
}

.hamburger__text {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

/* .header.change-color {
  background: unset;
} */

.header__nav-area {
  position: absolute;
  top: var(--header-height);
  left: 0;
  display: none;
  width: 100%;
  height: auto;
  min-height: 300px;
  visibility: hidden;
  transition: 0.4s;
  overflow: hidden;
  animation: fadeout 0.5s ease-in-out forwards;
  transition: .35s ease-in-out;
  color: #fff;
  background: linear-gradient(-120deg, rgb(39, 39, 39) 0%, rgb(78, 78, 78) 50%, rgb(30, 30, 30) 100%);
  backdrop-filter: blur(12px);
}

.header__nav-area.-active {
  visibility: visible;
  display: block;
  animation: fadein 0.5s ease-in-out forwards;
  transition: .35s ease-in-out;
}

header:has(.-active) .change-logo a {
  opacity: 1;
  transition: 0.3s ease-in 0s;
}

.header__nav-area .inner {
  padding: 50px var(--inner-padding-LR) 80px;
}


.header__nav-area .main_navi .navi_tit {
  color: #888;
}



/* ナビゲーション */
.main_navi .navi_item {
  position: relative;
  display: flex;
  margin-bottom: 1.5rem;
}

.main_navi .navi_item:last-child {
  margin-bottom: 0;
}

.main_navi .navi_item:has(.titOnly) {
  align-items: center;
}

.main_navi .navi_item:has(.titOnly):after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #666;
  transform: translate(0, -50%);
}

.main_navi .navi_tit {
  width: 4.5em;
  font-size: 2rem;
  font-family: var(--font-family-en);
  color: #666666;
  line-height: 1;
  letter-spacing: 0.015em;
}

.main_navi .subNavi {
  width: calc(100% - 9em);
  margin: 0.75em auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
}

.main_navi .subNavi>* {
  margin-right: 3%;
  min-width: 30%;
}

.main_navi .subNavi.column3>* {
  margin-right: 3%;
  width: 30%;
}

.main_navi .subNavi.column2>* {
  margin-right: 7%;
  width: 46%;
}

.main_navi .subNavi.column2>*:last-child {
  margin-right: 0;
}



@keyframes fadein {
  0% {
    opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    visibility: visible;
  }

  100% {
    opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
    visibility: visible;
  }
}

@keyframes fadeout {
  0% {
    opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
    visibility: visible;
  }

  100% {
    opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    visibility: hidden;
  }
}


/* ページトップボタン */
.btnTotop {
  position: fixed;
  top: calc(100vh - 40px);
  right: 20px;
  /* bottom: 40px; */
  z-index: 20;
  width: 60px;
  transform: translate(0, -100%);
  transition: 3ms ease-in;
}

.btnTotop:hover,
.btnTotop:hover img {
  filter: brightness(1.15);
}

.btnTotop.change-position {
  position: absolute;
  top: -20px;
  bottom: unset;
  transform: translate(0, -100%);
  transition: 3ms ease-in;
}

/*----------------------------------------
フッターcss
-----------------------------------------*/
.footer {
  position: relative;
}

.footer_contents {
  background: linear-gradient(90deg, rgb(51, 51, 51) 0%, rgb(80, 80, 80) 50%, rgb(51, 51, 51) 100%);
  color: #fff;
}

.footer_contents>.flex.column2>* {
  width: 50%;
  padding: 50px var(--inner-padding-LR);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer_contents>.flex.column2 .copo_info_inner {
  max-width: calc(var(--innerWide-maxWidth) / 2);
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
}

.footer_contents .copo_info_wrap {
  font-weight: 500;
  color: var(--col-gray01);
  justify-content: stretch;
  background: #222;
  color: #fff;
}

.footer_contents .copo_info_wrap .sitetit {
  font-size: 4rem;
  letter-spacing: 0em;
  line-height: 1;
  text-align: center;
  margin: 0px auto 2.5rem;
}

.footer_contents .copo_info_wrap .sitetit a {
  display: block;
  margin: auto;
  /* max-width: 450px; */
}

.footer_contents .copo_info_wrap .sitetit span {
  display: block;
}

/* .footer_contents .copo_info_wrap .sitetit .main {
  letter-spacing: 0;
  line-height: 1.25;
  margin-bottom: 0.5em;
} */

.footer_contents .copo_info_wrap .sitetit .sub {
  font-size: 45%;
  letter-spacing: 0.07em;
  line-height: 1;
}

.footer_contents .copo_info_wrap .footer_copy_logo {
  font-size: 0.75rem;
  max-width: 420px;
  padding-bottom: 1em;
}

.footer_contents .copo_info_wrap .copo_info_txt>* {
  width: fit-content;
  margin: auto;
  text-align: center;
}



.footer_contents>.flex.column2 .sitemap {
  max-width: calc(var(--innerWide-maxWidth) / 2 + 1em);
  margin-right: auto;
  padding-left: var(--inner-padding-LR);
}

.footer_contents .sitemap_wrap {
  background: linear-gradient(90deg, rgb(43, 43, 43) 0%, rgb(37, 37, 37) 100%);
}

.footer_contents .sitemap_wrap .main_navi .subNavi {
  font-size: 0.95rem;
}

.footer_contents a:hover {
  opacity: 0.8;
}

.copyright_wrap {
  margin-top: 0;
  padding: 1em;
  color: #fff;
}

.footer_contents .copyright {
  font-size: 0.75em;
  line-height: 1.4;
  letter-spacing: 0.05em;
}



/* @media only screen and (max-width: 1630px) {
  .footer_contents .copo_name {
    font-size: 1.65em;
  }

  .footer_contents .copo_info_txt {
    margin-right: 1em;
    letter-spacing: 0.05em;
  }

} */

@media only screen and (max-width: 1350px) {
  .global-navigation ul>* a {
    font-size: 1vw;
  }

  .footer_contents>.flex.column2 .sitemap {
    padding-left: 0;
  }

  /* .main_navi .subNavi.column2>* {
    width: 100%;
  } */
}

@media only screen and (max-width: 1200px) {
  .global-navigation {
    width: 100%;
  }


  /* ナビゲーション */
  .main_navi .navi_item {
    flex-wrap: wrap;
  }

  .main_navi .subNavi {
    width: 100%;
  }

}



@media only screen and (max-width: 959px) {
  .header .logo_other a {
    width: 25vw;
  }

  .global-navigation ul>* a {
    font-size: 1.25vw;
  }

  .footer_contents .copo_info_wrap .sitetit {
    font-size: 3rem;
  }

  .footer_contents .main_navi .subNavi.column3>* {
    margin-right: 5%;
    width: 45%;
  }

}


/*==========================================================================================
ここからSP
==========================================================================================*/
@media only screen and (max-width: 767px) {

  /*----------------------------------------
  ヘッターcss
  -----------------------------------------*/
  .header {
    height: var(--header-height);
  }

  .header .header__inner {
    padding-left: var(--inner-padding-LR);
    padding-right: var(--inner-padding-LR);
  }

  .header__nav-area {
    height: calc(100vh - var(--header-height));
    overflow: scroll;
  }

  .hamburger {
    width: 8vw;
    height: 10vw;
    padding: 4vw;
  }

  .hamburger__line {
    width: 80%;
  }

  .header__subnav-area {
    flex-wrap: wrap;
    height: auto;
  }

  .header .logo {
    width: 75%;
  }

  .header .logo a {
    width: 55vw;
    max-width: unset;
    height: 100%;
    padding: 2vw 4vw 2vw 0;
  }

  .header .logo img {
    display: inline-block;
    width: 100%;
    height: 100%;
    object-position: left;
    object-fit: contain;
  }

  .header .logo_other a {
    /* width: 10vw;
    margin-right: 0.75em; */
    width: 90%;
    max-width: unset;
    margin: 15vw auto 4vw;
  }

  .header__nav-area::after {
    width: 100%;
  }

  .header__nav-area {
    background: linear-gradient(0deg, rgb(57, 57, 57) 0%, rgb(69, 69, 69) 100%);
  }

  .header .main_navi .subNavi.column3>* {
    margin-right: 2%;
    width: 48%;
  }

  /* ナビゲーション */
  .main_navi .navi_item .navi_tit {
    width: 100%;
    display: flex;
    align-items: center;
  }

  .main_navi .navi_item .navi_tit:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #666;
    transform: translate(0, -50%);
    margin: 0.2em 0 0 0.5em;
  }

  .main_navi .navi_item:has(.titOnly):after {
    content: none;
  }

  .main_navi .subNavi {
    width: 100%;
  }


  .btnTotop {
    top: calc(100vh - 8vw);
    right: 3vw;
    width: 14vw;
  }


  /*----------------------------------------
  フッターcss
  -----------------------------------------*/

  .footer_contents>.flex.column2>* {
    width: 100%;
    padding: 12vw var(--inner-padding-LR);
  }

  .footer_contents>.flex.column2 .copo_info_inner {
    max-width: unset;
  }

  .footer_contents>.flex.column2 .sitemap {
    padding-left: 0;
    max-width: unset;
  }

  .footer_content .main_navi .column3>li {
    width: 45%;
    margin-right: 5%;
  }

  .footer_contents .sitemap_wrap .main_navi .subNavi li {
    line-height: 1.425;
    margin-bottom: 5px;
  }


}