@charset "UTF-8";

/* contents */
.contents_inner {
  max-width: 1200px;
  margin: auto;
}

/* fade */
.fade {
	opacity : 0;
	visibility: hidden;
	transform: translateY(30px);
}
.fadein {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.fadein:nth-of-type(1) {
	transition: 1s;
}
.fadein:nth-of-type(2) {
	transition: 1.2s;
}
.fadein:nth-of-type(3) {
	transition: 1.4s;
}
.fadein:nth-of-type(4) {
	transition: 1.6s;
}
.fadein:nth-of-type(5) {
	transition: 1.8s;
}
.fadein:nth-of-type(6) {
	transition: 2s;
}
.fadein:nth-of-type(7) {
	transition: 2.2s;
}
.fadein:nth-of-type(8) {
	transition: 2.4s;
}
.fadein:nth-of-type(9) {
	transition: 2.6s;
}
.fadein:nth-of-type(10) {
	transition: 2.8s;
}

/* header */
.header {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 10px 10px 30px;
  z-index: 999;
}
.header_logo {
  width: 129px;
}
.header_logo svg {
  fill: #fff;
}
.header_nav {
  display: flex;
  align-items: center;
  height: 80px;
  padding-right: 100px;
}
.header_navMenu {
  display: flex;
  padding-right: 30px;
}
.header_navMenu > li {
  font-size: 1.7rem;
  font-weight: 700;
}
.header_navMenu > li + li {
  margin-left: 2.5em;
}
.header_navContact {
  display: flex;
  padding-left: 30px;
  border-left: 1px solid rgba(255,255,255,0.5);
}
.header_navContact > li {
  font-size: 1.4rem;
  font-weight: 700;
}
.header_navContact > li + li {
  margin-left: 20px;
}
.header_navContact > li a {
  position: relative;
  display: block;
  padding: 5px 0;
}
.header_navContact > li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  display: inline-block;
  background-color: #fff;
  -webkit-mask-size: cover;
  mask-size: cover;
  transform: translateY(-50%);
}
.header_navContact > li.tel a {
  padding-left: 25px;
}
.header_navContact > li.tel a::before {
  width: 16px;
  height: 28px;
  -webkit-mask: url("/assets/img/common/ico-sp.svg") no-repeat center center / contain;
  mask: url("/assets/img/common/ico-sp.svg") no-repeat center center / contain;
}
.header_navContact > li.inquiry a {
  padding-left: 30px;
}
.header_navContact > li.inquiry a::before {
  width: 21px;
  height: 17px;
  -webkit-mask: url("/assets/img/common/ico-mail.svg");
  mask: url("/assets/img/common/ico-mail.svg");
}
.header_gnavBtn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
}
.header_gnavBtn span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 2px;
  background-color: #fff;
  transform: translate(-50%, -50%);
  transition: all .4s;
}
.header_gnavBtn span::before,
.header_gnavBtn span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 30px;
  height: 2px;
  background-color: #fff;
  transform: translate(-50%, -50%);
  transition: all .4s;
}
.header_gnavBtn span::before {
  top: calc(50% - 10px);
}
.header_gnavBtn span::after {
  top: calc(50% + 10px);
}
.header_gnavBtn.open span {
  background-color: transparent;
}
.header_gnavBtn.open span::before,
.header_gnavBtn.open span::after {
  width: 40px;
  background-color: #151515;
}
.header_gnavBtn.open span::before {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header_gnavBtn.open span::after {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* gnav */
.gnav {
  position:fixed;
  top:0;
  right: -120%;
  width:100%;
  height: 100vh;
  color: #151515;
  background:#fff;
  transition: all 0.6s;
  z-index: 99;
}
.gnav a {
  color: #151515; 
}
.gnav::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 30%;
  height: 100%;
  background: url(/assets/img/common/gnav_bg.jpg) center center / cover no-repeat;
}
.gnav.active {
  right: 0;
}
.gnavInner {
  position: relative;
  width: 70%;
  height: 100%;
  margin-left: auto;
}
.gnavBox {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60%;
  transform: translate(-50%, -50%);
}
.gnavMenu {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 0;
}
.gnavTop {
  padding-bottom: 30px;
  margin-bottom: 50px;
  font-weight: 700;
  border-bottom: 1px solid #b1b1b1;
}
.gnavMenu dl {
  width: calc(100% / 3);
}
.gnavMenu dt {
  margin-bottom: 0.5em;
  font-weight: 700;
}
.gnavMenu dd {
  position: relative;
  padding-left: 20px;
  font-size: 1.4rem;
  line-height: 2;
}
.gnavMenu dd::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 1px;
  margin-top: -0.5px;
  background-color: #d60011;
}

/* 追従 */
.header.clone-nav {
  position: fixed;
  top: -100px;
  left: 0;
  transition: all 1s;
  background-color: #222;
}
.header.clone-nav.is-fixed-nav {
  top: 0;
}
/* open */
.header-open.clone-nav {
  background-color: transparent;
}
.header-open.clone-nav .header_logo,
.header-open.clone-nav .header_nav {
  opacity: 0;
}


/* footer */
.footer_top {
  padding: 80px 0;
}
.footer_contact {
  display: flex;
  justify-content: space-between;
}
.footer_contactTtl {
  display: flex;
  align-items: center;
}
.footer_contactTtl .en {
  display: block;
  padding-right: 30px;
  color: #ca1941;
  font-size: 4rem;
  font-weight: 500;
}
.footer_contactTtl .jp {
  position: relative;
  display: block;
  padding-left: 30px;
  font-size: 1.8rem;
  font-weight: 700;
}
.footer_contactTtl .jp::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 40px;
  margin-top: -20px;
  background-color: #b1b1b1;
}
.footer_contactRight {
  display: flex;
}
.footer_contactRight .tel {
  text-align: center;
}
.footer_contactRight .tel a {
  position: relative;
  display: inline-block;
  padding-left: 40px;
  font-size: 3rem;
  font-weight: 700;
}
.footer_contactRight .tel a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 19px;
  height: 34px;
  -webkit-mask: url(/assets/img/common/ico-sp.svg);
  mask: url(/assets/img/common/ico-sp.svg);
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: #d60011;
  transform: translateY(-50%);
}
.footer_contactRight .tel span {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}
.footer_contactRight .inquiry {
  width: 340px;
  margin-left: 50px;
}
.footer_contactRight .inquiry a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  padding-left: 60px;
  font-size: 1.8rem;
  font-weight: 700;
  border: 1px solid #fff;
}
.footer_contactRight .inquiry a::before,
.footer_contactRight .inquiry a::after {
  content: "";
  position: absolute;
}
.footer_contactRight .inquiry a::before {
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background-color: rgba(215,0,17,0.1);
}
.footer_contactRight .inquiry a::after {
  left: 18px;
  top: 50%;
  width: 22px;
  height: 18px;
  -webkit-mask: url(/assets/img/common/ico-mail.svg);
  mask: url(/assets/img/common/ico-mail.svg);
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: #d60011;
  transform: translateY(-50%);
}
.footer_bottom {
  padding: 70px 0 60px;
  background-color: #2c2c2c;
}
.footer_sitemap {
  display: flex;
  justify-content: space-between;
  padding-bottom: 60px;
}
.footer_sitemap dl {
  width: calc(100% / 6);
}
.footer_sitemap dt {
  margin-bottom: 0.5em;
  font-weight: 700;
}
.footer_sitemap dd {
  position: relative;
  padding-left: 20px;
  font-size: 1.4rem;
  line-height: 2;
}
.footer_sitemap dd::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 1px;
  margin-top: -0.5px;
  background-color: #d60011;
}
.footer_company {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 60px;
  border-top: 1px solid #404040;
}
.footer_companyLeft .logo {
  width: 129px;
  margin-bottom: 20px;
}
.footer_companyLeft .logo svg {
  fill: #fff;
}
.footer_companyLeft p {
  font-size: 1.4rem;
}
.footer_companyLeft p + p {
  margin-top: 1em;
}
.footer_companyRight .copy {
  font-size: 1.4rem;
  font-weight: 500;
}

@media (max-width: 1200px) {
  /* contents */
  .contents_inner {
    padding: 0 5%;
  }

  /* header */
  .header {
    height: 100px;
  }
  .header_nav {
    display: none;
  }

  /* gnav */
  .gnavBox {
    width: 80%;
  }
  .gnavMenu dl {
    width: 50%;
  }

  /* footer */
  .footer_contact {
    display: block;
  }
  .footer_contactRight {
    margin-top: 1em;
    justify-content: center;
  }
  .footer_sitemap {
    flex-wrap: wrap;
    gap: 40px 0;
  }
  .footer_sitemap dl {
    width: calc(100% / 3);
  }
}


/* ---------- For Tablet ---------- */
@media (max-width: 1024px) {
}

/* ---------- For SP ---------- */
@media (max-width: 767px) {
  /* header */
  .header {
    height: 60px;
    padding: 10px;
  }
  .header_gnavBtn {
    width: 40px;
    height: 40px;
  }
  .header_gnavBtn span {
    width: 15px;
    height: 1px;
  }
  .header_gnavBtn span::before,
  .header_gnavBtn span::after {
    width: 15px;
    height: 1px;   
  }
  .header_gnavBtn span::before {
    top: calc(50% - 6px);
  }
  .header_gnavBtn span::after {
    top: calc(50% + 6px);
  }
  .header_gnavBtn.open span::before,
  .header_gnavBtn.open span::after {
    width: 30px;
  }

  /* gnav */
  .gnavBox {
    width: 90%;
  }
  .gnav::before {
    content: none;
  }
  .gnavInner {
    width: 100%;
  }
  .gnavTop {
    padding-bottom: 15px;
    margin-bottom: 25px;
  }
  .gnavMenu {
    gap: 20px 0;
  }
  .gnavMenu dd {
    font-size: 1.2rem;
  }

  /* footer */
  .footer_top {
    padding: 40px 0;
  }
  .footer_contactTtl .en {
    padding-right: 15px;
    font-size: 3rem;
  }
  .footer_contactTtl .jp {
    padding-left: 15px;
    font-size: 1.5rem;
  }
  .footer_contactRight {
    display: block;
  }
  .footer_contactRight .inquiry {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
  .footer_bottom {
    padding: 30px 0;
  }
  .footer_sitemap {
    padding-bottom: 30px;
  }
  .footer_sitemap dl {
    width: 50%;
  }
  .footer_company {
    display: block;
    padding-top: 30px;
  }
  .footer_companyRight .copy {
    margin-top: 1em;
    text-align: right;
  }
}
