@charset "UTF-8";
/*
common
================================================ */
:root {
  /* --main-font:'Roboto', 'Noto sans JP', sans-serif; */
  --main-font: 'Noto sans JP', sans-serif;
  --bg-color: #fff;
  --black: #000;
  --white: #ffffff;
  --gray: #EFEFEF;
  --gray100: #CCCCCC;
  --gray200: #808080;
  --gray300: #929292;
  --blue: #3493D3;
  --blue100: #3E3EAB;
  --blue200: #006CB4;
  --skyblue: #DBEAF5;
  --green: #29B940;
  --orange: #FF912C;
  --orange-100: #FFEED6;

  --whitea90: rgba(255, 255, 255, 0.9);
  --red100: #cd0000;
  --green200: #8cba3f;
  --orange200: #f7931e;
  --blue300: #53accf;
  --gray400: #ececec;
}


a {
  transition: opacity .4s;
}
@media (any-hover: hover) {
  a:hover {
      opacity: .6;
    }
}



.sp-br {
  display: none;
}

.tab-br {
  display: none;
}

.pc-br {
  display: inline;
}


/* メディアクエリは適宜変更 */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .pc-br {
    display: none;
  }

  .tab-br {
    display: inline;
  }
}

/* メディアクエリは適宜変更 */
@media screen and (max-width: 767px) {
  .pc-br {
    display: none;
  }

  .sp-br {
    display: inline;
  }
}

/*
header
================================================ */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  padding-block: 16px;
  transition: all .3s;

}

.header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0 40px 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;

}

.header .inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(180deg, rgba(51, 51, 51, 1) 0%, rgba(189, 189, 189, 0) 89%);
  mix-blend-mode: multiply;
  z-index: -1;

}

.hamburger_menu {
  display: none;
}

.header__logo img {
  width: 224px;
}

.header__list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  padding: 12px 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  transition: all .3s;
  text-align: center;
}

.header__nav {
  display: flex;
  gap: 1em;
}

.header__link.contact_nav {
  font-size: 20px;
  display: inline-block;
  background-color: var(--black);
  color: var(--white);
  padding: 10px 60px;
  height: auto;

}

@media (any-hover: hover) {
  .header__link:hover {
    opacity: .4;
  }
}

.header__link .header_pc {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.header__link._tel {
  background-color: var(--orange);
}

.header_sp {
  display: none;
}

@media(max-width:1250px) {

  .hamburger_menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    width: 30px;
    height: 20px;
    margin-left: auto;
    margin-right: 10px;

    cursor: pointer;
    position: relative;
  }

  .hamburger_menu span {
    width: 100%;
    height: 1px;
    background-color: #fff;
    transition: all 0.3s ease;
  }

  /* × 状態 */
  .hamburger_menu.class2 span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
  }

  .hamburger_menu.class2 span:nth-child(2) {
    opacity: 0;
  }

  .hamburger_menu.class2 span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
  }

  body.is-fixed {
    overflow: hidden;
  }

  .header.active2 {
    background-color: var(--black);
    height: 100vh;
    top: 0px;
    padding: 0;
    z-index: 9999;
  }

  .header .inner {
    padding: 10px 0 10px 10px;
  }

  .header.active2 .inner {
    padding: 10px 0 10px 10px;
  }

  .header__list1 .header__item {
    padding: 10px 0;
  }

  .header__list2 .header__item {
    padding: 20px 0;
  }

  .header__item {
    width: 100%;
  }

  .header__item a {
    width: 100%;
    display: block;
    font-size: 16px;
  }

  .header__link.contact_nav {
    font-size: 13px;
    display: inline-block;
    background-color: var(--black);
    color: var(--white);
    padding: 10px 1em;
  }

  .header__list1 {
    display: none;
  }

  .header.active2 .header__list1 {
    display: block;
    gap: 10px;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .header__list {
    gap: 10px;
    width: 100%;
  }

  .header__nav {
    display: flex;
    gap: .5em;
  }

  .header__list1 {
    flex-direction: column;

  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header {
    background-color: var(--white);
    top: 0px;
    padding: 0;
  }

  .header__link .header_pc {
    display: none;
  }

  .header__link .header_sp {
    display: block;
  }

  .header__link .header_sp > img {
    width: 60px;
  }

  .header__list {
    gap: 0px;
  }

  .header__link {
    padding: 0;
    width: 60px;
    height: 60px;
    border-radius: 0px;
  }

  .header__logo img {
    padding-left: 16px;
  }
}

@media screen and (max-width: 767px) {
  .header {
    top: 0px;
    padding: 0;
  }

  .header__link .header_pc {
    display: none;
  }

  .header__link .header_sp {
    display: block;
  }

  .header__list {
    gap: 0px;
  }

  .header__link {
    padding: 0;
    width: 50px;
    height: 50px;
    border-radius: 0px;
  }

  .header__logo img {
    width: 130px;
  }

  .header__link.contact_nav {
    display: inline-block;
    background-color: var(--black);
    color: var(--white);
    padding: 5px;
  }
}


.mv_topleft_image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}

.mv_topright_image {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;

}

/*
footer
================================================ */
.footer {
  font-size: 10px;
  padding-block: 10px;
  text-align: center;
  color: var(--white);
  background: var(--red100);
  margin-top: 100px;
}

.copyright {
  display: block;
  text-align: right;
  padding-right: 2%;
}


/* lity js */
.lity-content .lity-image {
    display: flex;
    justify-content: center;
}


.lity-content img {
  width: auto;
  object-fit: cover;
  object-position: center;
}


.lity-container {
  margin: 0 auto;
  width: auto;
}


@media screen and (max-width: 767px) {
  .lity-container {
  width: 80%;
}

}

