/*
Theme Name: Client
Author: CordialPleasure Co.,Ltd.
Author URI: http://c-pleasure.jp/
Description: 専用テーマ
*/


/*----------------------
共通
-----------------------*/

html {
  scroll-behavior: auto !important;
  height: 100%;
}


body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-size: 16px;
  font-family: "noto-sans-cjk-jp", sans-serif;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

body {
  background-image: url(assets/img/common/fix-bg.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  body {
    background-image: url(assets/img/common/fix-bg.png);
    background-attachment: scroll;
    background-size: cover;
    background-position: top center;
    background-repeat: unset;
  }
}

html,
body {
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
}

li {
  list-style: none;
}

a {
  color: #3e3e3e;
  cursor: pointer;
}

.common-sec-start {
  padding: 0 16px 60px;
}

.common-sec {
  padding: 60px 16px;
  position: relative;
}

.common-sec-full {
  padding: 60px 0;
}

.common-sec-end {
  padding: 60px 0 0 0;
}

.sec-common-ttl {
  display: flex;
  text-align: center;
  gap: 80px;
}

.sec-side-ttl {
  flex: 1;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
  max-width: 1520px;
  margin: 0 auto;
}

.sec-side-ttl h2 {
  font-size: clamp(64px, 100px, 140px);
  font-weight: bold;
  color: #92222054;
}

.sec-side-ttl h3 {
  font-size: 48px;
  font-weight: bold;
  color: #000000;
  margin-top: -72px;
}

.sec-side-des {
  flex: 1;
}

.sec-side-item {
  flex: 1;
}

.common-box {
  align-items: center;
  padding: 80px 0;
}

.common-block {
  display: block;
  text-align: center;
}

.red {
  color: #922220;
}

/*----------------------
  　パンくずリスト
-----------------------*/

.breadcrumb>li+li::before {
  content: "＞";
  padding: 0px 5px;
}

.breadcrumb {
  max-width: 1580px;
  margin: 24px auto 0;
  display: flex;
  font-size: 14px;
}

.breadcrumb a {
  color: #333;
}

/*----------------------
  　404
-----------------------*/
.error-page-container {
  padding-top: 300px;
  text-align: center;
}

.error-page-ttl-wrap {
  font-size: 38px;
  margin-bottom: 32px;
}

.error-text-center {
  margin-bottom: 48px;
}

.submit-container.error {
  margin-bottom: 150px;
}

/*-------------------------
  ドロップダウン
-------------------------*/
/* ドロップダウンメニュー内のカレント表示を非表示にする */
.nav-list.sub-menu.current-menu-item a::after {
  content: none !important;
}


/* 親メニューの基本スタイル */
.nav-list {
  list-style: none;
  display: flex;
  position: relative;
}

.nav-list li {
  position: relative;
}


/* サブメニューのリンク */
.nav-list .sub-menu li {
  transition: all 0.3s;
  position: relative;
}

.nav-list .sub-menu li::after {
  content: url("./assets/img/common/icon-arrow-dropdown.png");
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  transition: right 0.3s ease;
  color: #922220;
}

.nav-list .sub-menu li:hover::after {
  right: 20px;
}


.nav-list .sub-menu li a {
  text-decoration: none;
  color: #333;
  display: block;
  padding: 8px 17px;
  transition: all 0.3s;
}

.nav-list .sub-menu li a:hover {
  color: #922220;
}

/* PC: ホバーでサブメニュー表示 */
@media (min-width: 768px) {
  .nav-list li:hover>.sub-menu {
    display: block;
  }
}



/*----------------------
  　TOPページ
-----------------------*/
/*メインセクション*/
.home-main {
  padding: 80px auto;

}

.home-main-sec {
  display: flex;
  flex: 1;
  width: 100%;
  max-width: 90%;
  position: relative;
  margin-left: auto;
}

.catch-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.catch-copy h1 {
  font-size: clamp(1.8rem, 32px, 40px);
  font-weight: bold;
  margin-bottom: 0px;
  color: #ffffff;
}

#home {
  .catch-copy h1 {
    font-size: clamp(3.2rem, 52px, 58px);
    font-weight: bold;
    margin-bottom: 0px;
    color: #ffffff;
  }
}

.home-main-img {
  width: 55%;
  overflow: hidden;
  width: 60%;
}

.home-main-img img {
  width: 115%;
}

#home {
  .catch-copy {
    width: 45%;
  }

  .sub-text {
    padding-right: 10%;
    font-size: clamp(16px, 17px, 18px);
    line-height: 1.6;
    margin-top: 24px;
    font-weight: 500;
  }
}

.catch-copy h1 span {
  background-color: #000000;
  padding: 10px 50px 5px 10px;
  display: inline-block;
  position: relative;
  clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%);
  margin-bottom: 16px
}

.image-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/*home-service*/

#home-service {
  padding: 0 16px 80px;
}

.common-ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  margin-bottom: 32px;
}

.common-ttl h2 {
  font-size: clamp(64px, 100px, 140px);
  font-weight: bold;
  color: #92222054;
}

.common-ttl h3 {
  font-size: clamp(36px, 40px, 48px);
  font-weight: bold;
  color: #000000;
  margin-top: -72px;
}

.common-description {
  width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.home-service-sec {
  padding: 20px 0;
  width: 100%;
}

.sec-number {
  position: absolute;
  top: -95px;
  left: -5px;
  font-weight: bold;
  z-index: 2;
}

.sec-number p {
  color: #922220;
  font-size: 120px;
  font-weight: bold;
}

.sec-number-02 {
  position: absolute;
  top: -95px;
  right: -8px;
  font-weight: bold;
  z-index: 2;
}

.sec-number-02 p {
  color: #922220;
  font-size: 120px;
  font-weight: bold;
}

.home-service-01 {
  display: flex;
  background-color: #CFCFCF;
  padding: 24px;
  gap: 24px;
  max-width: 1520px;
  margin: 40px auto;
  position: relative;
}

.home-service-02 {
  display: flex;
  background-color: #CFCFCF;
  padding: 24px;
  gap: 24px;
  max-width: 1520px;
  margin: 40px auto;
  position: relative;
}

.home-service-left {
  flex: 1;
}

.home-service-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background-color: #FFF;
  padding: 40px;
  gap: 24px;
}

.home-service-ttl {
  color: #922220;
  font-weight: bold;
  font-size: 40px;
}

.home-service-detaile {
  color: #333;
  font-size: 16px;
  line-height: 1.9rem;
}

.common-btn {
  display: inline;
  border-radius: 50px;
}

.btn {
  display: inline-block;
  padding: 16px 80px 16px 32px;
  background: #000000;
  color: #fff;
  border-radius: 50px;
  position: relative;
}

.btn-white {
  display: inline-block;
  padding: 16px 80px 16px 32px;
  background: #fff;
  color: #000;
  border-radius: 50px;
  position: relative;
}

.btn::after {
  content: "→";
  font-size: 18px;
  margin-left: 32px;
  position: absolute;
  top: 50%;
  left: 63%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.btn:hover::after {
  transform: translateX(6px) translateY(-50%);
}

.btn-white::after {
  content: "→";
  font-size: 18px;
  margin-left: 32px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.btn-white:hover::after {
  transform: translateX(10px) translateY(-50%);
}

.home-bg-01 {
  position: absolute;
  width: 160%;
  height: auto;
  align-items: center;
  left: -30%;
  top: 70%;
  transform: translateY(-50%);
  z-index: -1;

  @media(min-width:1020px) and (max-width: 1850px) {
    top: 83%;
  }

}


/*home-reason*/

.reason-container .common-box {
  padding: 40px 16px;
  background-color: #CFCFCF;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reason-container .common-ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 120px;
  flex-direction: row;
}

.reason-container .side-ttl,
.reason-container .side-des {
  flex: 1;
  /* 両方を同じ比率に */
  min-width: 0;
  /* 横幅の縮小を許可 */
}


.reason-container .side-ttl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 30%;
}

.reason-container .sec-side-ttl h2 {
  color: #11111128;
}

.reason-container .side-ttl h3 {
  margin-top: -87px;
}

.reason-container .common-description {
  padding: 0 24px;
  font-size: 14px;
  width: 100%;
}

.reason-sec {
  display: flex;
  width: 100vw;
}

.reason-administration,
.reason-general {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.reason-administration {
  flex: 1;
  padding: 80px 16px;
  background-image: url('assets/img/home/home-administration-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
}

.reason-general {
  flex: 1;
  padding: 80px 16px;
  background-image: url('assets/img/home/home-general-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
}

.reason-ttl {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 32px;

  @media (max-width: 768px) {
    margin-bottom: 16px;
  }
}

.reason-ttl h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 900;
}


/*home-product*/

#home-product .product-detail {
  margin-left: -5px;

  .btn {
    background: none;
    padding: 0;
    border-radius: 0;
    font-size: 16px;
    /* テキストサイズ */
    transition: transform 0.3s ease-in-out, color 0.3s ease;
  }

  .btn::after {
    content: none;
    font-size: 18px;
    margin-left: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transform: translateY(-50%) scale(1);
    transition: transform 0.3s ease-in-out;
  }

  .btn {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    text-align: center;
    transition: transform 0.3s ease-in-out, font-size 0.3s ease-in-out;
    /* フォントサイズの変化もアニメーション */
  }

  .btn:hover {
    transform: scale(1.05);
    font-size: 16px;
  }
}


.product-cont {
  background-image: url("assets/img/home/home-product-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  min-height: 600px;
  padding: 40px 0;
}

.product-cont h2 {
  color: #11111128;
}

.product-cont .common-box {
  background-color: transparent !important;
  padding: 0;
}

/* .slide-cont {
  display: flex;
  overflow: hidden;
  width: 100%;
  position: relative;
  cursor: grab;
  justify-content: center;
} */

.product-box {
  flex: 0 0 auto;
  width: 100%;
  max-width: 600px;
  margin-right: 30px;
  background-image: url("assets/img/home/slide-product-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 10px 6px 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-left: 32px;
}

.product-name {
  align-self: flex-start;
}

.product-name-flex {
  display: flex;
  flex-direction: column;
}

.product-cat {
  background-color: #c21b19;
  font-size: 20px;
  font-weight: 600;
  padding: 1px 8px;
  color: #fff;
}

.product-cat-02 {
  font-size: 12px;
  padding: 1px 8px;
  color: #fff;
  background-color: #333;
}

.product-name p {
  position: relative;
}

.product-img {
  align-self: center;
}

.product-img img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.product-detail {
  align-self: flex-end;
  margin-top: -80px;
  padding: 55px 16px 0 0;
  color: #fff;
}

.product-detail p {
  display: inline-flex;
  align-items: center;
}

.product-detail p::after {
  content: '→';
  margin-left: 4px;
  font-size: 14px;
}


/*home-works*/


.home-works-cont {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 16px;
  max-width: 1520px;
  margin: 0 auto;
}

#home-works {
  .home-works-right.side-ttl {
    margin-left: 24px;
  }
}

.home-works-left {
  width: 50%;
  z-index: 1;
}

.home-works-left img {
  width: 110%;
  height: auto;
}

.home-works-right {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  width: 50%;
  margin-right: 0;
}

.home-works-right .common-ttl {
  margin-left: 3%;
}

.home-works-right h2 {
  color: #11111128;
}

.side-des p {
  padding: 0 80px;
  text-align: left;
}

.home-works-bg {
  position: absolute;
  top: 42%;
  right: -65%;
  width: 125%;
  height: 100%;
  transform: translateY(-50%);
  z-index: -1;
}

.home-works-bg img {
  width: auto;
  height: 120%;
  object-fit: cover;
}


/*home-about*/


.home-about-cont {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-common-left {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.home-about-right {
  flex: 1;
}

.home-news-cont {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1520px;
  margin: 0 auto;
}

.home-common-left {
  flex: 1;
  /* 左側の幅（自由に調整可能） */
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* 各テキスト間の間隔 */
}


#home-service,
#home-reason {
  .sec-side-ttl h2 {
    margin-bottom: 10px;
  }
}

#home-product,
#home-works,
#home-about,
#home-news {
  .side-ttl h2 {
    margin-bottom: 10px;
  }
}

.home-news-right {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}

.news-box {
  display: flex;
  padding-bottom: 20px;
  gap: 0 20px;
  align-items: center;
}


#home-news {
  .news-date {
    width: 100%;
    max-width: 15%;

    @media (max-width: 767px) {
      max-width: 10.5%;
    }
  }

  .news-category {
    display: inline-block;
    background-color: #238589;
    padding: 4px;
    width: 100%;
    max-width: 10.5%;

    @media (max-width: 767px) {
      max-width: 100%;
      text-align: center;
    }
  }

  .news-detail {
    flex: 1;
  }
}

.news-category p {
  font-size: 14px;
  color: #fff;
}

hr {
  width: 100%;
  border: none;
  border-top: 1px solid #ccc;
  padding: 10px 0;
}


#home-recruit {
  .side-ttl h2 {
    margin-bottom: 10px;
  }

  .home-recruit-cont {
    margin-top: 80px;

    @media screen and (max-width:767px) {
      margin-top: 40px;
    }
  }

  .home-recruit-box {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .home-recruit-img {
    position: relative;
  }

  .home-recruit-txt {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    width: 100%;

    @media screen and (max-width:767px) {
      padding: 0 16px;
      top: 40%;

      .btn-white {
        display: inline-block;
        padding: 10px 48px 10px 32px;
        background: #fff;
        color: #000;
        border-radius: 50px;
        position: relative;
      }

      .btn-white::after {
        content: "→";
        font-size: 18px;
        margin-left: 8px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s ease;
      }
    }
  }
}

.recruit-txt {
  color: #fff;
  text-align: center;
  width: 100%;

  @media screen and (max-width:767px) {
    text-align: unset;
  }
}

.home-recruit-img {
  width: 100%;
}

.home-recruit-wrapper {
  display: block;
  margin-bottom: 355px;
}


.home-recruit-cont .side-des p {
  color: #fff;
  text-align: center;
  margin-top: 28px;
}

.home-common-left {
  z-index: 2;
}

.home-recruit-img img {
  height: auto;
}


#common-contact .common-box {
  background-image: url("assets/img/common/common-contact-img.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.common-contact-cont .common-ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  flex-direction: row;
  padding: 16px;
}

.common-contact-cont .side-ttl,
.common-contact-cont .side-des {
  flex: 1;
}


.common-contact-cont .side-ttl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex: 1;
}

.common-contact-cont .side-ttl h2 {
  color: #FFFFFF28;
}

.common-contact-cont .side-ttl h3 {
  color: #FFF;
  margin-top: -80px;
}

.common-contact-cont .common-description {
  padding: 0 24px;
  font-size: 14px;
  color: #FFF;
  width: unset;
}


.side-contact .tell-number {
  font-size: 48px;
  font-weight: bold;
  color: #FFF;
}

.tell-number a {
  color: #fff;
}

.side-contact .reception-time {
  font-size: 16px;
  margin-top: -15px;
  font-weight: bold;
  color: #FFF;
}

.side-contact {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.contact-tell {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  /* 電話番号と受付時間の間隔 */
}

.contact-tell img {
  width: 56px;
}

.contact-icon {
  width: 20px;
  /* アイコンのサイズ */
  height: auto;
  margin-right: 10px;
  /* アイコンとテキストの間隔 */
}

.contact-form-btn {
  margin-top: 10px;
}

.contact-form-btn a {
  display: inline-block;
  background-color: #238589;
  color: #fff;
  padding: 24px 40px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 24px;
  cursor: pointer;
  transition: background-color 0.4s ease-out, transform 0.4s ease-out;
}

.contact-form-btn a:hover {
  background-color: #1a6b6e;
  transform: scale(1.08);
}

/*----------------------
   Aboutページ
-----------------------*/
.sec-ttl-cont {
  display: block;
  padding: 144px 0 0 0;
  max-width: 1520px;
  margin: 0 auto;
}

.sec-ttl-cont h2 {
  font-size: 48px;
  color: #922220;
  font-weight: bold;
}

.sec-ttl-cont h3 {
  font-size: 64px;
  color: #000;
  font-weight: bold;
  line-height: 1;
}

.sec-main-cont {
  display: flex;
  max-width: 1520px;
  margin: 0 auto;
}

.sec-common-left {
  flex: 1;
}

#greeting {
  .sec-common-left {
    max-width: 1200px;
    margin: 0 auto
  }
}

.sec-common-right {
  flex: 1;
}

#greeting {
  .sec-common-right img {
    margin-top: 108px;
    margin-left: 96px;
  }

  .catch-copy {
    margin-top: 24px;
  }
}

.ceo-info {
  display: flex;
  align-items: flex-end;
  margin-top: 40px;
  gap: 24px;
  justify-content: flex-end;
}

.ceo-title {
  width: 100%;
  max-width: 120px;
}

.ceo-name {
  width: 100%;
  max-width: 200px;
}

.sec-philosophy-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("assets/img/about/philosophy-img.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  min-height: 614px;
}

#philosophy {
  .sec-common-ttl {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110%;
  }

  .sec-side-ttl {
    flex: 1;
    width: 50%;
  }

  .sec-side-item {
    flex: 1;
    width: 50%;
  }
}

.philosophy-tt {
  font-size: 40px;
  font-weight: bold;
}

.sec-outline-cont {
  max-width: 1520px;
  margin: 0 auto;
}

.sec-outline-cont .sec-side-ttl {
  margin: 0;
}

.company-info-table {
  border-collapse: collapse;
  width: 100%;
}

.company-info-table th,
.company-info-table td {
  padding: 20px 32px;
}

.company-info-table th {
  width: 25%;
  color: #922220;
  font-weight: 400;
}

.company-info-table td {
  flex: 1;
  text-align: left;
}

.company-info-table tr {
  border-bottom: 1px solid #0000003b;
  width: 100%;
}

#outline {
  .common-box {
    padding: 80px 0 0 0;
  }
}

#map {
  .sec-access-cont {
    padding: 0px;
  }

  .common-box {
    padding: 0;
  }

  .common-sec {
    padding: 60px 16px 0;
    position: relative;
  }
}

.map {
  position: relative;
  width: 100%;
  max-width: 1620px;
  height: 640px;
  background-image: url(assets/img/about/map-bg.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-sizing: border-box;
}

.map iframe {
  padding: 4px 26px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  max-height: 600px;
  transform: translate(-50%, -50%);
  border: none;
}

.page-decoration-01 {
  position: relative;
  width: 100%;
}

.page-decoration-01 img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  top: 56%;
  transform: translateY(-21.2%);
}

.page-decoration-02 {
  position: relative;
  width: 100%;
}

.page-decoration-02 img {
  display: block;
  width: 75%;
  height: auto;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-79%);
}



/*----------------------
   事業案内
-----------------------*/
#vehicle {
  .sec-common-ttl {
    margin: 0 0 80px 0;
  }

  .sec-common-ttl h2 {
    color: #000;
    font-size: 48px;
    margin: 40px 0;
  }

  .sec-common-ttl p {
    text-align: left;
    max-width: 1520px;
    margin: 0 auto;
  }

  .sec-main-cont {
    gap: 40px;
    margin: 40px 0;
    max-width: 1520px;
    margin: 0 auto;
  }

  .vertical-ttl {
    font-size: 48px;
    font-weight: 600;
    writing-mode: vertical-rl;
  }

  .vertical-ttl .number {
    font-size: 40px;
    writing-mode: horizontal-tb;
    display: inline-block;
  }

  .vertical-ttl .red {
    color: #922220;
  }

  .catch-copy {
    justify-content: flex-start;
    flex: 1;
    width: 100%;
  }

  .sec-common-right {
    flex: 1;
    width: 100%;
  }

  .sec-common-right img {
    margin: 0;
  }

  .service-product-cont {
    display: flex;
    padding: 40px 0;
    max-width: 1520px;
    margin: 0 auto;
  }

  .service-product-box {
    flex: 1;
  }


  .sec-product-box {
    display: block;
    background-color: #F6F6F6;
    padding: 40px;
    height: 100%;
    max-height: 280px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    /* 右下にぼかしのある影 */
  }

  .sec-product-box.white {
    background-color: #fff;
  }

  .product-ttl {
    padding: 0 0 24px 0;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
  }

  .sec-product-box p {
    display: block;
    text-align: left
  }
}

#toilet-car {
  .sec-toilet-cont {
    background-image: url("assets/img/service/toilet-bg.png");
    padding: 80px 16px;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
  }

  .sec-common-ttl {
    display: flex;
    text-align: center;
    gap: 40px;
    margin-left: 10%;
  }

  .sec-side-ttl {
    flex: unset;
    width: 75%;
    text-align: left;
    margin: 0;
  }

  .sec-side-ttl h2 {
    line-height: 1;
  }

  .sec-side-ttl h3 {
    margin: -51px 0 0 -11px;
  }

  .sub-text {
    padding-right: 0;
  }

  .sec-common-right {
    flex: unset;
    width: 130%;
    margin-right: -175px;
    margin-top: 20px;
  }

  .sec-ttl {
    font-size: 40px;
    font-weight: bold;
  }

  .toilet-detail-box {
    display: flex;
    padding-top: 40px;
    justify-content: center;
    gap: 20px;
  }

  .detail-box {
    display: block;
    background-color: #FFF;
    width: 100%;
    max-width: 500px;
    padding: 40px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  }

  .detail-number {
    font-size: 20px;
    font-weight: 600;
    padding: 20px 0;
  }

  .detail-ttl {
    color: #922220;
    font-weight: 600;
    font-size: 20px;
  }

  .detail-box p {
    font-size: 16px;
    padding: 20px;
    text-align: left;
  }

  .detail-box img {
    width: 100%;
    max-width: 170px;
    padding: 20px 0;
  }

  .toilet-specifications-box {
    display: flex;
    padding-top: 40px;
    justify-content: center;
    max-width: 1520px;
    margin: 0 auto;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
  }

  .specifications-box {
    display: block;
    background-color: #FFF;
    width: 100%;
    max-width: 435px;
    height: 515px;
    padding: 40px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  }

  .specifications-box p {
    text-align: left;
  }

  .specifications-ttl {
    font-size: 20px;
    font-weight: 600;
    padding: 20px 0;
  }

  .specifications-ttl span {
    padding: 0 8px;
  }


}

#sewing {
  .sec-main-cont {
    margin-top: 40px;
  }

  .sec-common-ttl h2 {
    color: #000;
    font-size: 48px;
  }

  .sec-common-ttl p {
    text-align: left;
  }

  .sec-main-cont {
    gap: 40px;
    max-width: 1520px;
    margin: 0 auto;
  }

  .vertical-ttl {
    font-size: 48px;
    font-weight: 600;
    writing-mode: vertical-rl;
  }

  .vertical-ttl .number {
    font-size: 40px;
    writing-mode: horizontal-tb;
    display: inline-block;
  }

  .vertical-ttl .red {
    color: #922220;
  }

  .catch-copy {
    justify-content: flex-start;
    flex: 1;
  }

  .sec-common-right img {
    margin: 0;
  }

  .service-product-cont {
    display: flex;
    padding: 80px 0;
    justify-content: center;
  }

  .service-product-box {
    flex: 1;
    max-width: 500px;
  }

  .main-product-img {
    width: 100%;
  }

  .sec-product-box {
    display: block;
    background-color: #F6F6F6;
    padding: 40px;
    height: 100%;
    max-height: 280px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  }

  .sec-product-box.white {
    background-color: #fff;
  }

  .product-ttl {
    padding: 0 0 24px 0;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
  }

  .sec-product-box p {
    display: block;
    text-align: left
  }

}

/*----------------------
   新着情報
-----------------------*/
/*----------------------
   新着情報－詳細
-----------------------*/
/*----------------------
   製品ラインナップ
-----------------------*/
#product {
  .sec-common-ttl h2 {
    color: #000;
    font-size: 48px;
    margin: 40px 0;
  }


  .sec-main-cont {
    margin: 40px auto;
    max-width: 1420px;
  }

  .sec-common-ttl p {
    text-align: left;
  }

  .sec-product-cont {
    padding: 80px 16px;
    background-image: url("assets/img/product/product-list-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  .list-txt-cont {
    background-image: url("assets/img/product/list-txt-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 24px;
    width: 45%;
    max-width: 655px;
    height: auto;
  }

  .sec-common-right {
    width: 60%;
    margin: auto;
  }

  .list-txt-cont p {
    color: #FFF;
  }

  .product-list-type {
    font-weight: bold;
    margin-bottom: 4px;
    color: #FFF;
  }

  .product-list-type p {
    display: inline;
    padding: 2px 8px;
    background-color: #922220;
    font-weight: bold;
  }

  .product-list-ttl {
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
  }

  .product-list-detail {
    font-size: 16px;
    margin-bottom: 24px;
  }


  .swiper-button-next,
  .swiper-button-prev {
    width: calc(var(--swiper-navigation-size) / 44* 35);
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    color: #FFF;
    font-size: 16px;
    background-color: #000000b2;
    padding: 12px 26px 12px 16px;
  }

  .swiper-horizontal>.swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    left: 0;
    width: 100%;
  }

  .swiper-pagination {
    text-align: left;
    padding: 0 24px;
  }

  .swiper-pagination-bullet {
    width: 32px;
    height: 3px;
    border-radius: 0;
  }

  .swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: #922220;

  }

  .swiper-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }

  .swiper-slide {
    height: 514px;
    overflow: hidden;
  }
}

#works .works-other {

  .swiper-button-next,
  .swiper-button-prev {
    width: calc(var(--swiper-navigation-size) / 44* 35);
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    color: #FFF;
    font-size: 16px;
    background-color: #000000b2;
    padding: 12px 26px 12px 16px;
  }

  .swiper-horizontal>.swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    left: 0;
    width: 100%;
  }

  .swiper-pagination {
    text-align: left;
    padding: 0 24px;
  }

  .swiper-pagination-bullet {
    width: 32px;
    height: 3px;
    border-radius: 0;
  }

  .swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: #922220;

  }

  .swiper-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }

  .swiper-slide {
    height: 514px;
    overflow: hidden;
  }
}

/*----------------------
製品ラインナップ－詳細
-----------------------*/
section#product-01-main {
  background-image: url("assets/img/product/product-01-main-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  justify-content: flex-start;
}

#product-01-main {
  .sec-main-cont {
    padding: 80px 16px;
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    gap: 40px;
  }


  .sec-common-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .catch-copy {
    display: flex;
    justify-content: center;
    align-items: left;
    width: 100%;
  }

  .catch-copy span {
    font-size: 64px;
  }

  .sub-text {
    font-size: 24px;
    font-weight: bold;
  }
}

#layout-main-ttl {
  .common-box {
    background-color: #CFCFCF;
    text-align: center;
    padding: 32px 20px;
  }

  .sec-side-ttl h2 {
    color: #11111128;
  }
}

#product-layout,
#product-layout-02,
#product-layout-04 {
  .sec-main-cont {
    display: flex;
    align-items: flex-start;
    position: relative;
    gap: 80px;
  }


  .ttl-txt {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .ttl-txt p {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 0px;
    color: #000000;
  }

  .ttl-txt p span {
    background-color: #CFCFCF;
    padding: 10px 15px 5px 50px;
    display: inline-block;
    position: relative;
    clip-path: polygon(100% 0%, 6% 0%, 0% 100%, 100% 100%);
    margin-bottom: 16px
  }

  .fix-layer {
    width: 49%;
    position: sticky;
    top: 25%;
    height: auto;
    transition: opacity 0.3s ease-in-out;
  }

  .scroll-layer {
    flex: 1;
    overflow: hidden;
    height: 463vh;
    position: relative;
  }

  .scroll-layer.p-01 {
    height: 522vh;
  }

  .scroll-layer.p-02 {
    height: 630vh;
  }

  .scroll-layer.p-03 {
    height: 628vh;
  }

  .scroll-layer.p-04 {
    height: 575vh;
  }

  .scroll-layer.p-05 {
    height: 628vh;
  }

  .scroll-layer.p-01-f {
    height: 520vh;
  }

  .scroll-layer.p-02-f {
    height: 307vh;
  }

  .scroll-layer.p-03-f {
    height: 470vh;
  }

  .scroll-layer.p-04-f {
    height: 262vh;
  }


  @media (max-width: 767px) {
    .scroll-layer {
      height: auto !important;
    }
  }

  .layout-cont {
    position: relative;
    padding: 16px 0;
    width: 100%;
    max-width: 820px;
    height: 100%;
    max-height: 500px;
  }

  .layout-cont-b {
    position: relative;
    padding: 16px 0;
    width: 100%;
    max-width: 820px;
    height: 100%;
    max-height: 500px;
  }

  .layout-num {
    font-size: 22px;
    font-weight: bold;
  }

  .layout-num span {
    position: absolute;
    font-size: 18px;
    font-weight: 200;
    top: 26px;
    left: 36px;
  }

  .layout-num.long span {
    left: 64px;
  }

  .sub-text {
    font-size: 20px;
    margin-top: 10px;
  }

  .layout-txt span {
    font-size: 36px;
    font-weight: bold;
    color: #922220;
  }

  .layout-txt.long span {
    left: 80px;
  }
}

#product-layout-04 {
  .scroll-layer {
    flex: 1;
    overflow: hidden;
    height: 40vh;
    position: relative;
  }
}

#product-layout-03 {
  .sec-main-cont {
    gap: 80px;
  }

  .swiper.swiper2 {
    background-image: url("assets/img/product/spec-slide-bg.png");
    background-size: 100% 100%;
    background-position: center;
    width: 100%;
    object-fit: contain;
  }

  .img-cont {
    background-image: url("assets/img/product/netis-bg-img.png");
    background-size: 100% 100%;
    background-position: center;
    width: 100%;
    margin: 80px 0;
    padding: 60px;
    max-width: 1220px;
    margin: 40px auto 0;
    object-fit: contain;
  }

  .netis-main-cont {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
  }

  .netis-img-cont {
    display: flex;
    gap: 20px;
    flex: 1;
  }


  .netis-txt-cont {
    width: 70%;
  }



  .netis-img-cont img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }


  .netis-sub-ttl {
    font-size: 28px;
    font-weight: bold;
  }

  .neits-sub-text {
    text-align: left;
    line-height: 1.2;
  }

  .neits-ttl {
    font-size: 40px;
    font-weight: bold;
    color: #922220;
    margin-bottom: 30px;
    line-height: 1;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: calc(var(--swiper-navigation-size) / 44* 35);
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    color: #080808;
    font-size: 22px;
  }

  .swiper-horizontal>.swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    left: 0;
    width: 100%;
  }

  .swiper-pagination {
    text-align: left;
    padding: 0 24px;
  }

  .swiper-pagination-bullet {
    width: 32px;
    height: 3px;
    border-radius: 0;
  }


  .swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: #922220;

  }
}

/*----------------------
選ばれる理由
-----------------------*/
#reason-ad,
#reason-co {
  .reason-cont {
    position: relative;
  }

  .sec-main-cont {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    width: 100%;
    max-width: 1520px;
    margin: 0 auto;
    gap: 32px;
  }

  .sec-common-left {
    position: relative;
  }

  .reason-num {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 14px;
  }

  .reason-num span {
    position: absolute;
    font-weight: 200;
    top: 8px;
    left: 40px;
  }
}

#reason-ad-02,
#reason-co-02 {
  .reason-cont {
    position: relative;
  }

  .sec-main-cont {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    width: 100%;
    max-width: 1520px;
    margin: 0 auto;
    gap: 32px;
  }

  .sec-common-left {
    position: relative;
  }

  .reason-num {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 14px;
  }

  .reason-num span {
    position: absolute;
    font-weight: 200;
    top: 8px;
    left: 40px;
  }
}

#reason-ad-03,
#reason-co-03 {
  .reason-cont {
    position: relative;
  }

  .sec-main-cont {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    width: 100%;
    max-width: 1520px;
    margin: 0 auto;
    gap: 32px;
  }

  .sec-common-left {
    position: relative;
  }

  .reason-num {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 14px;
  }

  .reason-num span {
    position: absolute;
    font-weight: 200;
    top: 8px;
    left: 40px;
  }
}

#reason-ad-04,
#reason-co-04 {
  .reason-cont {
    position: relative;
  }

  .sec-main-cont {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    width: 100%;
    max-width: 1520px;
    margin: 0 auto;
    gap: 32px;
  }

  .sec-common-left {
    position: relative;
  }

  .common-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
  }

  .btn {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .reason-num span {
    position: absolute;
    font-weight: 200;
    top: 8px;
    left: 40px;
  }

  .sec-side-ttl h2 {
    color: #11111128;
  }
}



#home-product {
  .btn::after {
    content: "→";
    font-size: 18px;
    margin-left: 32px;
    position: absolute;
    top: 50%;
    left: 75%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
  }

  .btn:hover::after {
    transform: translateX(6px) translateY(-50%);
  }
}

/*----------------------
   納車実績
-----------------------*/
/*----------------------
   納車実績－詳細
-----------------------*/
/*----------------------
   お問い合わせフォーム
-----------------------*/

.contact-container {
  padding: 0 16px;
}

.contact-container {
  max-width: 950px;
  margin: 88px auto;
}

.contact-container p {
  margin-bottom: 10px;
}

.submit-container {
  text-align: center;
}

.submit-container button {
  text-align: center;
  display: inline-block;
  border-radius: 10px;
  background: #000000;
  padding: 16px 80px 16px 40px;
  margin-top: 40px;
  transition: 0.3s;
  color: #fff;
  font-weight: nomal;
  font-size: 20px;
  border-radius: 30px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.16);
}

/* .type-car span label {
  padding-left: inherit;
}

.type-car {
  display: grid;
  grid-template-columns: 1fr 1fr;
} */

@media screen and (max-width:768px) {
  .contact-confirm.submit-container button {
    padding: 16px 48px;
    font-size: 16px;
    width: 160px;
    margin: 10px auto 0;
  }
}

.contact-confirm .message-req {
  top: 50%;

  @media screen and (max-width:768px) {
    top: 70% !important;
  }
}

.contact-content-message {
  text-align: center;
}

.contact-completion {
  text-align: center;
}

.contact-confirm {
  display: flex;
  justify-content: center;
  gap: 20px;

  @media screen and (max-width:768px) {
    flex-direction: column;
    gap: 0px;
  }
}

/*　テーブル　*/
.contact_table table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 16px;
  text-align: center;
  color: #fff;
}

.contact_table table th {
  box-sizing: border-box;
  padding: 15px;
  vertical-align: middle;
  font-weight: bold;
  text-align: left;
  align-content: center;
}

.contact-message {
  align-content: flex-start !important;
}

.contact_table table td {
  box-sizing: border-box;
  padding: 16px;
  vertical-align: top;
  text-align: left;
  color: #2b2b2b;
  display: grid;
}

.contact_table th {
  min-width: 338px;
  position: relative;
}

.contact_table label {
  padding-left: 43px;
  font-weight: 500;
  font-size: 20px;
  color: #2b2b2b;
}

.req {
  color: #fff;
  font-weight: normal;
  display: inline-block;
  background: #922220;
  padding: 5px 7px;
  position: absolute;
  left: 0;
  top: 50%;
  font-size: 12px;
  color: #fff;
  transform: translateY(-50%);
}

.unreq {
  color: #922220;
  font-weight: normal;
  display: inline-block;
  padding: 5px 7px;
  font-size: 12px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: 1px solid #922220;
  /* 境界線をしっかり表示 */
}

.message-req {
  color: #fff;
  font-weight: normal;
  display: inline-block;
  background: rgb(180, 230, 203);
  padding: 5px 7px;
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 10%;
  font-size: 12px;
  color: #fff;
  transform: translateY(-50%);
}

.contact-confirm .message-req {
  top: 50%;
}

.contact_table input::placeholder {
  color: #c4c4c4;
}

.contact_table textarea::placeholder {
  color: #c4c4c4;
}

.form-control {
  font-size: 16px;
  font-weight: 400;
  height: auto;
  padding: 10px 12px;
  font-weight: 500;
  font-size: 18px;
  text-align: left;
  color: #333 !important;
  border-radius: 2px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  background: #fff;
}

.mwform-radio-field-text {
  color: #333;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #e3e3e3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem #e3e3e3;
}

input::placeholder {
  color: #dddddd !important;
}

@media all and (max-width: 991px) {
  .form-control {
    width: 100%;
  }

  .contact_table label {
    font-size: 16px;
  }
}

@media all and (max-width: 768px) {

  .contact_table table th,
  .contact_table table td {
    display: flex;
    width: 100%;
    border-bottom: none;
    flex-direction: column;
  }

  .req {
    left: 16px;
    top: 73%;
  }

  .unreq {
    left: 16px;
    top: 73%;
  }

  .message-req {
    padding: 5px 7px;
    left: 18px;
    top: 71%;
  }

  .contact_table table th {
    padding: 15px 15px 0 15px;
    align-content: center;
    height: 100%;
  }

  .contact_table input::placeholder {
    font-size: 14px;
  }

  .contact_table label {
    font-size: 16px;
  }

  .contact_table label {
    padding-left: 58px;
  }
}

.error {
  color: red;
}

/*----------------------
    　エントリーフォーム
-----------------------*/
.entry-container {
  max-width: 950px;
  margin: 90px auto 160px;
  text-align: center;

  @media screen and (max-width:768px) {
    margin: 70px auto 78px;
  }
}

.btn-wrap {
  text-align: center;
  margin-top: 40px;
}

.radio-btn label {
  padding-left: inherit !important;
}

.entry-content-messege {
  text-align: center;
}

.birthdate-color {
  color: #6b6b6b;
}

.entry-birthday {
  display: flex;
}

select:invalid {
  color: gray;
}


.entry-birthday .selectBtn::after {
  left: 95px;

  @media screen and (max-width:768px) {
    left: 222px;
  }
}

.entry-confirm .message-req {
  top: 50%;

  @media screen and (max-width:768px) {
    top: 69% !important;
  }
}

.entry-sec-ttl {
  text-align: center;
  font-size: 32px;
  color: #333;

  @media screen and (max-width:991px) {
    font-size: 20px;
  }
}


/* is-showがついている時のスタイル */
.tab__panel-box.is-show {
  display: block;
}

@media screen and (max-width:991px) {
  .tab__menu {
    flex-direction: column;

  }

  .tab__menu-item {
    width: inherit;
    padding: 4px;
  }
}

input[type="radio"] {
  position: relative;
  width: 16px;
  height: 16px;
  background: #fff;
  filter: drop-shadow(0px 8px 16px rgba(0, 0, 0, 0.16));
  border-radius: 50%;
  vertical-align: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c4c4c4;
  content: '';
}

/*----------------------
    　プライバシーポリシー
    -----------------------*/

.privacy-container {
  max-width: 1280px;
  margin: 68px auto;
}

.privacy-item-wrap {
  margin: 48px;
}

.privacy-item-ttl {
  font-size: 24px;
  color: #922220;
  font-weight: bold;
  margin-bottom: 10px;
}

.privacy-list {
  margin: 20px 0;
}

@media screen and (max-width: 991px) {
  .privacy-item-wrap {
    margin: inherit;
    padding: 0 16px;
  }

  .privacy-item-wrap {
    margin: 68px auto;
  }
}

#reason-ad,
#reason-ad-02,
#reason-ad-03,
#reason-ad-04,
#reason-co,
#reason-co-02,
#reason-co-03,
#reason-co-04 {
  .sec-common-right {
    flex: unset;
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .sec-main-cont {
    padding: 0 16px;
  }
}

#contact.common-sec-start {
  max-width: 1200px;
  margin: 0 auto;
}

#common-contact {
  .common-box {
    align-items: center;
    padding: 120px 0;
  }
}

.contact-container {
  max-width: 1200px;
  margin: 88px auto;

  @media screen and (max-width: 991px) {
    margin: 40px auto;
    padding: 0;
  }
}

.common-contact-cont .side-ttl h3 {
  margin-top: -55px;
  margin-bottom: 16px;
}

.type-txt {
  display: inline-block;
  color: #fff;
  background-color: #B50000;
  padding: 8px 24px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  margin: 0;
  margin-bottom: 16px;
}


#product-layout-03 {
  text-align: center;
}

.car-name {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  background-color: #333;
  text-align: center;
  margin-bottom: 40px;
  display: inline-block;
  padding: 4px 16px;
  border-radius: 2px;
}

@media screen and (max-width:767px) {
  .car-name {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background-color: #333;
    text-align: center;
    margin-bottom: 16px;
    display: inline-block;
    padding: 7px 16px;
    border-radius: 2px;
  }

}

@media (max-width: 768px) {
  .tel a {
    color: #fff;
    text-decoration: none;
  }
}


.mw_wp_form .horizontal-item+.horizontal-item {
  margin-left: 0px !important;
}

.menu-item a[href="#"] {
  pointer-events: none;
  cursor: default;
}

.contact_table .btn {
  display: inline-block;
  padding: 16px 40px;
  background: #000000;
  color: #fff;
  border-radius: 50px;
  position: relative;
  margin-top: 40px;
  min-width: 160px;
  transition: all 0.3s ease;

  @media (max-width: 768px) {
    margin: 0 16px;
  }
}

.contact_table .btn:hover {
  background: #922220;
  color: #fff;
}

body.page-product-details-03 #product-layout-02 .scroll-layer {
  height: 410vh !important;
}

.scroll-target {
  scroll-margin-top: 100px;
}

#vehicle-01 {
  scroll-margin-top: 180px;
}

#sewing {
  scroll-margin-top: 120px;
}

#greeting {
  scroll-margin-top: 120px;
}

#map {
  scroll-margin-top: 120px;
}

/* @media (max-width: 767px) and {
  #product-layout {
    .scroll-layer {
      height: 315vh;
    }
  }
} */


.layout-flex {
  margin-bottom: 40px;
  align-items: center !important;
}

.layout-ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;

}

.normal-img {
  width: 80%;

  @media (max-width: 768px) {
    width: 95%;
  }
}

.flex {
  display: flex;
}

.product-icons {
  background-color: #00000041;
  padding: 10px;
  border-radius: 5px;
  margin: 24px 0 18px;
}

.product-icons-cont {
  gap: 4px;
}

.product-icons-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 80px;

  @media (max-width: 768px) {
    max-width: 100px;
  }
}

.product-icons-box p {
  font-size: 11px;
  text-align: center;
  font-weight: 600;

  @media (max-width: 768px) {
    font-size: 12px;
  }
}

.product-icons-box img {
  width: 100%;
  max-width: 80px;

  @media (max-width: 768px) {
    max-width: 80px;
  }
}

.d-product-icons {
  background-color: #00000041;
  padding: 10px;
  border-radius: 5px;
  margin: 24px 0 18px;
  width: 100%;
  box-sizing: border-box;
}

.d-product-icons-cont {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, 95px);
  justify-content: start;

  @media (max-width: 768px) {
    gap: 8px;
  }
}

.d-product-icons-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100px;

  @media (max-width: 768px) {
    min-width: 100px;
  }
}

.d-product-icons-box p {
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  color: #fff;

  @media (max-width: 768px) {
    font-size: 13px;
  }
}

.d-product-icons-box img {
  width: 100%;
  min-width: 100px;

  @media (max-width: 768px) {
    min-width: 100px;
  }
}

@media (max-width: 768px) {
  .product-icons {
    width: 100%;
    padding-bottom: 8px;
  }

  .product-icons-cont {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 4px;
  }

  .product-icons-box {
    text-align: center;
  }


  .d-product-icons {
    width: 100%;
    padding-bottom: 8px;
  }

  .d-product-icons-cont {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 4px;
  }

  .d-product-icons-box {
    text-align: center;
  }
}

.home-product-name-cont {
  gap: 8px;
  align-items: center;

  @media (max-width: 768px) {
    flex-direction: column;
    align-items: unset;
  }
}

.home-product-icons-cont {
  gap: 4px;
}

.home-product-icons-cont img {
  width: 100%;
  max-width: 45px;

  @media (max-width: 768px) {
    max-width: 32px;
  }
}

.home-fv {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.fade-cont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 2;
}

.fade-slider,
.fade-slider-02 {
  max-width: 40vw;
  height: auto;
}

.fade-slider img,
.fade-slider-02 img {
  width: 100%;
  height: auto;
  display: block;
}

.fade-slider img {
  width: 36%;

  @media (max-width: 768px) {
    width: 72%;
  }
}

.fade-slider-02 img {
  width: 45%;

  @media (max-width: 768px) {
    width: 68%;
  }
}

.fade-slider img {
  max-width: 680px;
  opacity: 0;
  animation: fade 12s infinite;
  object-fit: contain;
  position: absolute;
  top: 55%;
  left: 6%;

  @media (max-width: 768px) {
    top: 40%;
    left: 6%;
  }
}

.fade-slider img:nth-child(1) {
  animation-delay: 0s;
}

.fade-slider img:nth-child(2) {
  animation-delay: 4s;
}

/* 12s ÷ 3 */
.fade-slider img:nth-child(3) {
  animation-delay: 8s;
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  30% {
    opacity: 1;
  }

  40% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.fade-slider-02 img {
  max-width: 740px;
  opacity: 0;
  animation: fade 12s infinite;
  object-fit: contain;
  position: absolute;
  top: 11%;
  left: 45%;

  @media (max-width: 768px) {
    top: 60%;
    left: 2%;
  }
}

.fade-slider-02 img:nth-child(1) {
  animation-delay: 0s;
}

.fade-slider-02 img:nth-child(2) {
  animation-delay: 6s;
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  30% {
    opacity: 1;
  }

  40% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.fade-box {
  width: 50%;
  height: 100%;
}

.fade-slider-cont {
  width: 50%;
  height: 100%;
}