@charset "UTF-8";

.l-header {
  padding: 14px 20px 16px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  height: 65px;
  background: #fff;
  z-index: 999;
  border-bottom: 1px solid #f1f1f1;
  transition: .3s top;
}

.l-header.js-scroll {
  top: -38px;
}

@media screen and (max-width: 1200px) {
  .l-header {
    top: 0 !important;
    /*padding: 14px 20px 14px;*/
    padding: 0 20px;
    height: 65px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .l-header__toggle {
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
  }

  .l-header__toggle span {
    display: block;
    width: 100%;
    height: 4px;
    background: #c03;
    position: absolute;
  }

  .l-header__toggle span:nth-child(1) {
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0) rotate(0) scale(1);
  }

  .l-header__toggle span:nth-child(2) {
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0) rotate(0) scale(1);
    top: calc(50% - 13px);
  }

  .l-header__toggle span:nth-child(3) {
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0) rotate(0) scale(1);
    top: calc(50% + 13px);
  }
}

.l-header .l-header__toggle.js-open + .l-header__navWrap {
  right: 0;
}

.l-header__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  font-size: 1.2rem;
  line-height: 1;
  margin-bottom: 12px;
}

@media screen and (max-width: 1200px) {
  .l-header__top {
    display: none;
  }
}

.l-header__top__text {
  font-weight: 500;
}

.l-header__top__tel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  gap: 5px 10px;
  font-family: Jost, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  max-width: 170px;
  text-align: center;
  color: #c03;
}

@media screen and (max-width: 1200px) {
  .l-header__top__tel {
    display: none;
  }
}

.l-header__top__tel span {
  color: #000;
  display: inline-block;
  font-size: 10px;
  text-align: center;
  margin: 0 auto;
}

.l-header__top__telIcon {
  width: 29px;
  display: block;
}

.l-header__logo {
  width: 200px;
}

.l-header__logo__img {
  width: 100%;
  display: block;
}

.l-header__under {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 1200px) {
  .l-header__under {
    width: 100%;
  }
}

.l-header__overlay {
  display: none;
}

@media screen and (max-width: 1200px) {
  .l-header__overlay {
    display: block;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .6);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    transition-property: opacity, visibility;
  }

  .l-header__overlay.js-open {
    opacity: 1;
    visibility: visible;
  }
}

@media screen and (max-width: 1200px) {
  .l-header__navWrap {
    position: fixed;
    transition: right .6s;
    right: -100%;
    top: 0;
    max-width: 320px;
    width: 80%;
    height: 100svh;
    background: #fff;
    padding: 80px 20px 40px;
    box-sizing: border-box;
    overflow: auto;
    z-index: 9999;
  }

  .l-header__navWrap__close {
    width: 40px;
    height: 40px;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
  }

  .l-header__navWrap__close span {
    display: block;
    width: 100%;
    height: 2px;
    background: #c03;
    position: absolute;
  }

  .l-header__navWrap__close span:nth-child(1) {
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0) rotate(45deg) scale(1);
  }

  .l-header__navWrap__close span:nth-child(2) {
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0) rotate(-45deg) scale(1);
  }
}

.l-header__nav {
  /*font-weight: 500;*/
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  /*font-size: 1.3rem;*/
  
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px !important;
  color: #232323;
}
.l-header__nav a{
  text-decoration:none !important;
}

@media screen and (max-width: 1440px) {
  .l-header__nav {
    gap: 20px;
  }
}

@media screen and (max-width: 1270px) {
  .l-header__nav {
    gap: 15px;
    font-size: 1.2rem;
  }
}

.l-header__nav__item {
  transition: color .3s;
}

.l-header__nav__item.js-active,
.l-header__nav__item:hover {
  color: #c03;
}

.l-header__nav__item--contact {
  transition: opacity .3s;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #CC0033;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
    border-radius: 2px;
    color: #fff !important;
    font-size: 16px !important;
    padding:10px 15px !important;
    width:180px;
}

.l-header__nav__item--contact:hover {
  opacity: .75;
}

.l-header__nav__tel,
.l-header__nav__text {
  display: none;
}

@media screen and (max-width: 1200px) {
  .l-header__nav {
    display: block;
    font-size: 1.5rem;
    text-align: center;
  }

  .l-header__nav__item {
    display: block;
    margin-bottom: 20px;
  }

  .l-header__nav__item--contact {
    display: block;
    color: #fff !important;
    background: #c03;
    padding: 15px 25px;
    box-sizing: border-box;
    /*border-radius: 10px;*/
    text-align: center;
    width:auto;
    max-width: 300px;
    margin: 0 auto 20px;
  }

  .l-header__nav__tel,
  .l-header__nav__text {
    display: block;
  }

  .l-header__nav__tel {
    display: flex;
    flex-wrap: wrap;
    font-family: Jost, sans-serif;
    font-weight: 300;
    font-style: normal;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 3.4rem;
    font-weight: 500;
    color: #c03;
  }

  .l-header__nav__telIcon {
    width: 30px;
  }

  .l-header__nav__text {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
}

/* ----------------------------- */
@media (min-width: 769px) {
  .l-header__under {
    height: 50px;
  }
}
.l-header__nav {
  gap: 20px;
}

/*余白スペース（PC時のみ）*/
.l-header__nav__item_blankspace{
	width:40px;
}
@media screen and (max-width: 1200px) {
	.l-header__nav__item_blankspace{
		display:none;
	}
}

/* ----------------------------- */
    /*新ロゴ調整*/
   .l-header__logo{
      width: 269px;
    }
    @media screen and (max-width: 768px) {
      .l-header__logo{
        width: 165px;
      }
    }
.l-relation__bnrImg{
    width:95%;
}

@media screen and (max-width: 768px) {
    .l-relation__bnrImg{
        width:100%;
    }
    .l-relation__bnr:nth-child(n+4) {
        margin-top: 30px;
    }
}
/*ホバー*/
a.opacity:hover {
    display: inline-block;
    opacity: .8 !important;
    transition: .3s;
}

/* ----------------------------- */
.l-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header{
  position: relative;
  top: auto;
  left: auto;
  display: inline-block;
  width: auto;
}
.global-header{
  display: inline-block;
  height: auto;
}
.global-header__brand{
  position: relative;
  display: inline-block;
  height: auto;
}
.global-header__brand img{
  vertical-align: bottom!important;
}
@media screen and (max-width: 1200px){
  .l-header__under{
    justify-content: flex-end;
    width: calc(100% - 280px);
  }
  .l-header__overlay{
    z-index: 991;
  }
}
@media screen and (max-width: 768px) {
  header{
    min-width: auto;
  }
  .l-header__under{
    width: calc(100% - 165px);
  }
}

/*--------------------------*/
.global-header__brand{
	margin:0 !important;
}
.lp_header__brand,
.global-header__brand {
    padding: 5px 0 0 0!important;
    }

@media screen and (max-width: 768px) {
    .main-article {
        padding: 20px 0 0;
    }
}