@charset "UTF-8";
/*-------------------------------------------
　強調
-------------------------------------------*/
strong{
  font-size: 1.2em;
  font-weight: bold;
}
.red{
  color: var(--red);
}
/*-------------------------------------------
　KV
-------------------------------------------*/
.p-cv {
  position: relative;
  margin-top: 85px;
  background-color: var(--pail-blue);
  z-index: 0;
}

.p-cv__img img {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto -3px;
}
@media screen and (max-width: 767px) {
  .p-cv {
    position: relative;
    margin-top: 65px;
  }
}
/*-------------------------------------------
　header / ハンバーガーメニュー
-------------------------------------------*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.p-header {
  width: 100%;
  height: 85px;
  background-color: #FFF;
  box-shadow: var(--box-shadow);
}
.p-header__inner {
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  max-width: 1300px;
  width: 100%;
  margin: auto;
}
.p-header-logo img {
  width: 120px;
  height: auto;
}
.p-header__nav {
  width: 100%;
}
.p-header__nav-hamburger {
  display: block;
  text-align: center;
}
.p-header__nav-hamburger.c-cv-btn{
  margin: 0;
  padding: 20px 0 30px;
  justify-content: space-between;
}
.p-header__nav-hamburger.c-cv-btn > div{
  display: flex;
  gap: 12px;
}

.p-hamburger__ber {
  cursor: pointer;
  height: 34px;
  width: 34px;
  background-image: url(https://re-cone.jp/wp-content/uploads/2025/11/menu.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: 0.3s ease;
}
.is-open .p-hamburger__ber {
  background-image: url(https://re-cone.jp/wp-content/uploads/2025/11/close.svg);
  filter: invert(1);
}
.is-open .c-cv-btn__item.red{
  background-color: #FFF;
  color: var(--red);
}
.is-open .c-cv-btn__item.blue{
  background-color: #FFF;
  color: var(--blue);
}

.is-open .c-cv-btn__item img{
  filter: invert(100%);
}
.p-header__drawer {
  display: none;
  position: absolute;
  z-index: 999;
  background-color: #FFF;
}
.p-drawer-menu {
  position: fixed;
  z-index: 5000;
  top: 85px;
  right: 0;
  display: none;
  width: 100vw;
  height: calc(100vh - 85px);
  padding: 90px 2.5%;
  box-sizing: border-box;
  background: linear-gradient(-185deg, var(--red) 92%, transparent 92.2%);
  animation: fadeIn .5s ;
}
@keyframes fadeIn {
  from{
    transform: translateY(-10px);
  }
  to{
    transform: translateY(0);
  }
}
.p-drawer-menu__items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  width: 100%;
}
.p-drawer-menu__item a {
  font-size: 15px;
  color: var(--black);
}
.p-drawer-menu__item a:hover {
  opacity: 0.75;
  color: var(--red);
  text-decoration: underline;
}
.gray-filter {
  display: none;
  position: fixed;
  background-color: #000000;
  opacity: .4;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}

@media screen and (max-width: 1280px) {
  .p-header__inner {
    padding: 0 2.5%;
  }
  .p-header__inner.is-open{
    background-color: #c29787;
  }
  .p-hamburger {
    z-index: 9999;
    display: flex;
    align-self: center;
    justify-content: flex-end;
  }
  .p-header__logo{
    flex-grow: 1;
  }
  .p-drawer-menu{
    left: 0;
    width: 100%;
    padding: 50px 2.5%;
  }
  .p-drawer-menu__items{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: auto;
    gap: 4em;
  }
  .p-drawer-menu__item{
    width: 100%;
    gap: 4vh;
  }
  .p-drawer-menu__item a {
    display: flex;
    gap: 30px;
    align-items: center;
    width: 100%;
    font-weight: bold;
    font-size: 5vw;
  }
  .is-open .c-cv-btn__item.red::after{
    border-left: 10px solid var(--red);
  }
  .is-open  .c-cv-btn__item.blue::after{
    border-left: 10px solid var(--blue);
  }
  .p-drawer-menu__item a:hover {
    opacity: 0.75;
    color: #FFF;
    text-decoration: none;
  }
  .p-drawer-menu__item a span{
    width: 50%;
    font-size: 3vw;
    color: #FFF;
  }
  .p-drawer-menu__item a span.eng{
    width: 50%;
    font-size: 3vw;
  }
  .p-header__inner.is-open {
    background-color: linear-gradient(-185deg, var(--red) 92%, transparent 92.2%);
    background: linear-gradient(var(--red) 100%, transparent 100%);
  }
}

@media screen and (max-width: 767px) {
  .p-header {
    height: 75px;
  }
  .p-header__inner {
    height: 75px;
    justify-content: space-between;
    gap: 5%;
  }
  .p-header-logo img {
    width: 95px;
    max-width: 200px;
    height: auto;
  }
  header .c-cv-btn__item::after{
    content: none;
  }
  header .c-cv-btn__item{
    width: auto;
    padding: 10px;
    font-size: 13px;
  }
  .p-header__nav-hamburger {
    display: block;
    text-align: center;
    margin-top: 75px;
  }
  header .c-cv-btn__item::after{
    right: 5px;
  }
  .p-drawer-menu{
    top: 74px;
    width: 100vw;
    height: calc(100vh - 74px);
    padding: 55px calc(25px + 2.5%) 0 2.5%;
  }
  .p-header__nav-hamburger.c-cv-btn{
    padding: 12px 7.5% 100px 0;
  }
  .p-drawer-menu__item a span{
    font-size: 5.5vw;
  }
  .p-drawer-menu__item a span.eng{
    font-size: 3.5vw;
  }
}
/*-------------------------------------------
　セクション
-------------------------------------------*/
.section-inner{
  max-width: 1220px;
  padding: 120px 0;
  margin: 0 auto;
}
.bg-gray{
  background-color: var(--bg-gray);
}
.bg-red{
  background-color: var(--red);
}
/*斜め区切り*/
.contents{
  position: relative;
  margin: -50px 0;
}
.contents .section-inner{
  padding: 210px 0 140px;
}
.contents section{
  clip-path: polygon(0 50px, 100% 0, 100% calc(100% - 50px), 0 100%);
}
@media screen and (max-width: 1280px) {
  .contents .section-inner,
  .section-inner{
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media screen and (max-width: 767px) {
  .contents{
    margin: 0 0 -8%;
  }
  .contents section{
    clip-path: polygon(0 3vh, 100% 0, 100% calc(100% - 3vh), 0 100%);
  }
  .section-inner{
    padding: 30px 5% 90px;
  }
  .contents .section-inner{
    padding: 25% 5%;
  }
}
/*-------------------------------------------
　見出し
-------------------------------------------*/
.p-products {
  position: absolute;
  top: 0%;
  left: 50%;
  width: 100%;
  text-align: center;
  font-weight: 900;
  transform: translate(-50%, 0%);
  z-index: 9;
}
.products__title{
  position: relative;
  margin-top: -0.3em;
  font-size: 50px;
  z-index: 1;
  font-weight: bolder;
}

  /*斜め見出し*/
.products__subtitle{
  position: relative;
  display: inline-block;
  min-width: 40%;
  max-width: 100%;
  padding: 0 1em;
  font-size: 70px;
  font-style: italic;
  letter-spacing: 0.075em;
  color: var(--white);
  transform: rotateZ(-3deg);
}
.products__subtitle::before{
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--red);
  transform: skewX(-15deg);
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .products__subtitle{
    font-size: 7vw;
  }
}
@media screen and (max-width: 767px) {
  .products__subtitle{
    min-width: 60%;
    padding: 0.1em 0.3em;
    font-size: 7.5vw;
  }
  .products__title{
    font-size: 6vw;
  }
}
/*-------------------------------------------
　CVボタン
-------------------------------------------*/

.c-cv-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.c-cv-btn.p-cv__under{
  transform: translateY(-50%);
}
.c-cv-btn__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 210px;
  padding: 15px 15px 15px 0;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--white);
  transition: 0.3s ease;
  z-index: 5;
  border-radius: 100vh;
  background-color: var(--red);
}
.c-cv-btn__item img{
  width: 1.25em;
  height: auto;
}
.c-cv-btn__item::after {
  content: "";
  border-left: 10px solid #FFF;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) translateX(-50%);
}
.c-cv-btn__item.red {
  background-color: var(--red);
}
.c-cv-btn__item.blue {
  background-color: var(--blue);
}
.c-cv-btn__item.white {
  font-weight: bold;
  color: var(--black);
  background-color: var(--white);
}
.c-cv-btn__item.white img{
  filter: invert(100%);
}
.c-cv-btn__item:hover {
  background-color: var(--white);
  opacity: 1;
}
.c-cv-btn__item.red:hover {
  color: var(--red);
  outline: 1px solid var(--red);
}
.c-cv-btn__item.blue:hover {
  color: var(--blue);
  outline: 1px solid var(--blue);
}
.c-cv-btn__item.white:hover {
  opacity: 0.8;
}
.c-cv-btn__item:hover img{
  filter: invert(100%);
}
.c-cv-btn__item.red:hover::after{
  border-left: 10px solid var(--red);
}
.c-cv-btn__item.blue:hover::after{
  border-left: 10px solid var(--blue);
}
.c-section-title {
  position: relative;
}
.contents-detail {
  padding: 15px 13px;
  font-size: 13px;
}

@media screen and (max-width: 767px) {
  .c-cv-btn.p-cv__under{
    padding: 0 5%;
  }
  .p-cv__under .c-cv-btn__item::after {
    content: none;
  }
}