@charset "utf-8";
.header.UpMove{
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
.header.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* headerの色を変える */
.header.change-color {
    background-color: #F8F1EA;
}

.header__left {
   display: flex;
    align-items: center;
    column-gap: clamp(1.25rem, -10.893rem + 18.97vw, 11.875rem);
}

/* header-right__telの文字色変更 */
.header-right__tel.change-tel {
    color: #000;
}
/* header-right__telの文字色変更 */
.header-right__tel a.change-tel {
    color: #000;
}
/* header-right__timeの文字色変更 */
.header-right__time.change-time {
    color: #000;
}

.header {
      position: fixed;
    z-index: 9999;
    width: 100%;
    height: clamp(4.5rem, 1.458rem + 6.34vw, 9.063rem);
  top: 0;
}
.header__inner {
      padding-left: clamp(0.625rem, -1.333rem + 4.08vw, 3.563rem);
    height: inherit;
}
.header__container {
      height: inherit;
    display: flex;
  column-gap: clamp(1.25rem, -6.321rem + 11.83vw, 7.875rem);
}
.header__logo  {
  display: none;
}
/* header__logoを表示 */
.header__logo.display-block {
    display: block;
  width: clamp(9rem, 0.583rem + 17.53vw, 21.625rem);
}
.header-left__items {
  display: none;
}
/* header-left__itemsを表示 */
.header-left__items.display-block {
    display: flex;
  align-items: center;
    height: 100%;
    column-gap: clamp(1rem, -2.429rem + 5.36vw, 4rem);
}
.header-left__items a {
      height: 100%;
    display: flex;
    align-items: center;
}
.header-left__item {
      height: 100%;
    display: flex;
    align-items: center;
    font-size: clamp(0.875rem, 0.589rem + 0.45vw, 1.125rem);
    font-weight: 800;
}
.header__right {
      display: flex;
    column-gap: clamp(1rem, 0.417rem + 1.22vw, 1.875rem);
    align-items: center;
    height: inherit;
    margin-left: auto;
}
.header-right__tel {
    font-size: clamp(1.125rem, 0.696rem + 0.67vw, 1.5rem);
    font-weight: 800;
    color: #fff;
}
.header-right__tel a {
  color: #fff;
  transition: all 0.5s;
}
.header-right__tel a:hover {
  opacity: 0.5;
}
.header-right__time {
      font-size: clamp(0.75rem, 0.667rem + 0.17vw, 0.875rem);
    font-weight: 800;
    color: #fff;
}
.header-contact {
  height: inherit;
}
.header-right__contact {
      background-color: #2C2C2C;
    width: clamp(5rem, 0.357rem + 7.25vw, 9.063rem);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: clamp(0.313rem, 0.104rem + 0.43vw, 0.625rem);
}
.header-right-contact__img {
  width: clamp(1.875rem, 0.625rem + 2.6vw, 3.75rem);
}
.header-right-contact__text {
      font-size: clamp(0.625rem, 0.375rem + 0.52vw, 1rem);
    font-weight: 800;
    color: #fff;
}
.t-fv__bottom {
  padding: clamp(1.25rem, -0.179rem + 2.23vw, 2.5rem);
}

.hamBtn {
  display: none;
}

.sp__menu {
  display: none;
}

@media (max-width: 1023px) {
  /* header-left__itemsを非表示 */
  .header-left__items.display-block {
    display: none;
  }

  /* header-right__telの文字色変更 */
  .header-right__tel.change-tel {
    display: none;
  }
  /* header-right__timeの文字色変更 */
  .header-right__time.change-time {
    display: none;
  }
  
  .header__inner {
    padding-right: 80px;
  }
  
  .hamBtn {
        position: absolute;
    right: 0;
    top: 0;
    width: 80px;
    cursor: pointer;
    z-index: 9999;
    transition: all .7s;
    color: #FAFBFF;
    background-color: #F8F1EA;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  .hamBar {
        position: relative;
    width: 48px;
    height: 27px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hamBar > div {
        position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #000;
    transition: .7s;
  }
  .hamBar>div:nth-child(1) {
    top: 0; 
  }
  .hamBar>div:nth-child(2) {
    top: 50%;
  }
  .hamBar>div:nth-child(3) {
    top: 100%;
  }
  .hamBar.active>div:nth-child(1) {
    top: 10px;
    transform: rotate(-45deg);
    border-radius: unset;
  }
  .hamBar.active>div:nth-child(2) {
    opacity: 0;
  }
  .hamBar.active>div:nth-child(3) {
    top: 10px;
    transform: rotate(45deg);
    border-radius: unset;
  }
  
  .header-right__content {
    display: none;
  }
  
  .sp__menu {
        background-color: #F8F1EA;
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 100%;
    height: 100svh;
    transition: .5s;
    z-index: 9990;
    display: flex;
    flex-direction: column;
    align-items: center;
    visibility: hidden;
    padding-top: 100px;
    overflow: scroll;
  }
  .sp-menu__inner {
        width: 100%;
        display: flex;
    justify-content: center;
    height: inherit;
  }
  .sp-menu__container {
        display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .sp__menu.active {
    transform: translateY(0%);
    visibility: visible;
    pointer-events: auto;
  }
  .sp-menu__items {
        display: flex;
    flex-direction: column;
    row-gap: 32px;
    width: 212px;
        margin-top: auto;
    margin-bottom: auto;
  }
  .sp-menu__item {
        font-size: 20px;
    font-weight: 700;
  }
  
.f-accordion-content {
  display: none;
  position: relative;
}
.f-accordion-header {
        transition: background .3s ease;
    cursor: pointer;
    position: relative;
}
.f-accordion-header__text{
      position: relative;
    padding-right: 30px;
    font-size: 18px;
    font-weight: 700;
  width: fit-content;
}
.f-accordion-header__text::after {
        content: '';
    width: 12px;
    height: 12px;
    border: 0;
    border-bottom: solid 3px #000;
    border-right: solid 3px #000;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: transform 0.5s;
}
.f-accordion-header.active .f-accordion-header__text::after{
  transform:rotate(225deg);
}
  .f-accordion-content__wrap {
        margin-top: 20px;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    padding-left: 20px;
  }
.f-accordion-content p{
  position: relative;
  font-size: 16px;
    font-weight: 700;
}
  
  .sp-menu__bottom {
        width: 100%;
    margin-top: 34px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    background-color: #000;
  }
  .sp-menu-bottom__tel {
        color: #fff;
    font-size: 30px;
    font-weight: 800;
  }
  .sp-menu-bottom__tel a {
        color: #fff;
    font-weight: 800;
    transition: all 0.5s;
  }
  .sp-menu-bottom__tel a:hover {
    opacity: 0.5;
  }
  .sp-menu-bottom__time {
        font-size: 14px;
    color: #fff;
    font-weight: 800;
  }
}

@media (max-width: 389px){
  .sp-menu-bottom__tel {
      font-size: 26px;
  }
}