@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 / ハンバーガーメニュー
-------------------------------------------*/
.modal-open {
  overflow: hidden;
}

.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%;
  margin: 0 25px;
}
.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;
}

/* iPhone表示バグ対応 ※変更元と変更後を予め配置してopacityで表示変更 */
.p-hamburger__ber,
.p-hamburger__ber-close {
  cursor: pointer;
  height: 34px;
  width: 34px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: 0.3s ease;
}
.p-hamburger__ber {
  background-image: url(https://re-cone.jp/wp-content/uploads/2025/11/menu.svg);
  opacity: 1;
}
.is-open .p-hamburger__ber {
  opacity: 0;
}
.p-hamburger__ber-close {
  position: absolute;
  background-image: url(https://re-cone.jp/wp-content/uploads/2025/11/close.svg);
  opacity: 0;
}
.is-open .p-hamburger__ber-close {
  opacity: 1;
}
.p-header__drawer {
  display: none;
  position: absolute;
  z-index: 999;
  background-color: #FFF;
}
.p-drawer-menu {
  position: relative;
  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;
  animation: fadeIn .5s ;
}
.p-drawer-menu::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    -3deg,
    #b7b7b7 0%,
    #b7b7b7 25%,
    transparent 25%
  );
  pointer-events: none;
}
@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 {
    display: flex;
    align-self: center;
    justify-content: flex-end;
    padding: 10px;
    z-index: 9999;
  }
  .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;
    text-decoration: none;
  }
  .p-drawer-menu__item a span{
    width: 50%;
    font-size: 3vw;
    color: var(--red);
  }
  .p-drawer-menu__item a span.eng{
    width: 50%;
    font-size: 3vw;
  }
  .p-drawer-menu__inner {
    padding-left: 15px;
    white-space: nowrap;
  }
  .p-header__inner.is-open {
    background-color: var(--white);
  }
}

@media screen and (max-width: 767px) {
  .p-header {
    height: 75px;
  }
  .p-header__inner {
    height: 75px;
    justify-content: space-between;
    padding: 0;
    gap: 0;
  }
  .p-header-logo {
    padding-left: 12px;
  }
  .p-hamburger { 
    padding: 10px 20px 10px 10px;
  }
  .p-header-logo img {
    width: 95px;
    max-width: 200px;
    height: auto;
  }
  header .c-cv-btn {
    gap: 10px;
  }
  header .c-cv-btn__item::after{
    content: none;
  }
  header .c-cv-btn__item{
    width: auto;
    padding: 10px 15px;
    font-size: 1.2rem;
    white-space: nowrap;
  }
  .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;
  }
  .p-drawer-menu::after {
    background: linear-gradient(
      -3deg,
      #b7b7b7 0%,
      #b7b7b7 45%,
      transparent 45%
    );
  }
}
/*-------------------------------------------
　セクション
-------------------------------------------*/
.section-inner{
  max-width: 1220px;
  padding: 120px 0;
  margin: 0 auto;
  z-index: 2;
}
.bg-white {
  background-color: #ffffff;
}
.bg-gray{
  background-color: var(--bg-gray);
}
.bg-red{
  background-color: var(--red);
}
/*斜め区切り*/
.contents{
  position: relative;
  margin: -50px 0;
}
#price.contents {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  #price.contents {
    margin-top: 0;
  }
}
.contents .section-inner{
  padding: 210px 0 140px;
}
.contents section.bg-gray {
  position: relative;
}
.contents section.bg-red.slash-bg-top {
  z-index: 1;
}
.contents section.bg-gray.slash-bg-top::before,
.contents section.bg-red.slash-bg-top::before {
  content: '';
  position: absolute;
  left: 0;
  top: -75px;
  /* 平行四辺形グレーSVG */
  /* ※タイトルは-3度指定だが2度目の変形指定で実際には2度+の角度 */
  /* ※クリッピングパスは適用元のサイズ変更で角度がずれるのでSVG背景を使用 */
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1500 230.38'%3E%3Cpolygon fill='%23f5f5f5' points='1500 230.38 1500 78.63 0 158.38 0 230.38 1500 230.38'/%3E%3Cpolygon fill='%23fff' points='1500 0 1500 78.63 0 158.38 0 0 1500 0'/%3E%3C/svg%3E");
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: 2;
}
.contents section.bg-red.slash-bg-top::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1500 230.38'%3E%3Cpolygon fill='%23ff4300' points='1500 230.38 1500 78.63 0 158.38 0 230.38 1500 230.38'/%3E%3Cpolygon fill='%23fff' points='1500 0 1500 78.63 0 158.38 0 0 1500 0'/%3E%3C/svg%3E");
}
.contents section.bg-gray.slash-bg-bottom::after,
.contents section.bg-red.slash-bg-bottom::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -95px;
  /* 平行四辺形グレーSVG */
  /* ※タイトルは-3度指定だが2度目の変形指定で実際には2度+の角度 */
  /* ※くりっピンフパスは適用元のサイズ変更で角度がずれるのでSVG背景を使用 */
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1500 230.38'%3E%3Cpolygon fill='%23f5f5f5' points='0 0 0 151.75 1500 72 1500 0 0 0'/%3E%3Cpolygon fill='%23fff' points='0 230.38 0 151.75 1500 72 1500 230.38 0 230.38'/%3E%3C/svg%3E");
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
}
.contents section.bg-red.slash-bg-bottom::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1500 230.38'%3E%3Cpolygon fill='%23ff4300' points='0 0 0 151.75 1500 72 1500 0 0 0'/%3E%3Cpolygon fill='%23fff' points='0 230.38 0 151.75 1500 72 1500 230.38 0 230.38'/%3E%3C/svg%3E");
}
@media screen and (max-width: 1280px) {
  .contents .section-inner,
  .section-inner{
    padding-left: 5%;
    padding-right: 5%;
  }
  .contents section.bg-gray.slash-bg-top::before,
  .contents section.bg-red.slash-bg-top::before {
    top: -4rem;
  }
  .contents section.bg-gray.slash-bg-bottom::after,
  .contents section.bg-red.slash-bg-bottom::after {
    bottom: -6rem;
  }
}

@media screen and (max-width: 767px) {
  .contents section.bg-gray.slash-bg-top::before,
  .contents section.bg-red.slash-bg-top::before {
    top: -1.25rem;
  }
  .contents section.bg-gray.slash-bg-bottom::after,
  .contents section.bg-red.slash-bg-bottom::after {
    bottom: -0.05rem;
  }
  .section-inner{
    padding: 30px 5% 90px;
  }
  .contents .section-inner{
    padding: 30% 5% 25%;
  }
}
/*-------------------------------------------
　見出し
-------------------------------------------*/
.p-products {
  position: absolute;
  top: 0%;
  left: 50%;
  width: 100%;
  padding-top: 30px;
  overflow: hidden;
  text-align: center;
  font-weight: 900;
  transform: translate(-50%, 0%);
  z-index: 9;
}

/* 斜め見出し */
.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;
}
.products__title{
  position: relative;
  margin-top: -0.3em;
  font-size: 50px;
  z-index: 1;
  font-weight: bolder;
}

/* 斜め見出し背景 */
.p-products .slash-bg {
  position: absolute;
  left: 50%;
  top: 36%;
  width: 150%;
  height: 200px;
  transform: translate(-50%, 0) rotateZ(-3deg);
}
@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;
    margin-bottom: 0;
  }
  .p-products .slash-bg {
    top: 50%;
  }
}
/*-------------------------------------------
　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;
  font-weight: bold;
  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);
}
#cv .c-cv-btn__item.white.contacts {
  width: 250px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 20px;
}
.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;
  }
}

.pagetop__button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background-color: var(--red);
  cursor: pointer;
  opacity: 0;
  transition: 0.3s ease;
  z-index: 100;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
}
.pagetop__button.active {
  opacity: 1;
}
@media (hover: hover) {
  .pagetop__button:hover {
    background-color: var(--black);
  }
}
@media (hover: none) {
  .pagetop__button:active {
    background-color: var(--black);
  }
}
/* ▼ 白い三角（上向き矢印） */
.pagetop__button::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 16px solid #fff;  /* 白い三角 */
}
/* ▬ 三角の上の横棒 */
.pagetop__button::after {
  content: "";
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 1px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .pagetop__button {
    right: 10px;
    bottom: 10px;
  }
}