@charset "utf-8";

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
HOME
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- ヘッダー
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.home-header {
  padding: 80px 0 25px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    url("../img/home/header-background.jpg") center center no-repeat;
  background-size: cover;
  font-weight: 800;
}

.home-header .inner {
  position: relative;
  max-width: 1224px;
}

.home-header .dear {
  position: relative;
  z-index: 0;
  max-width: 430px;
  margin-bottom: 1.3em;
  color: #fff;
  font-size: 1.8rem;
}

.home-header .dear::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100vw;
  background: var(--color-main);
  content: "";
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 0.8em) 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, calc(100% - 0.8em) 100%, 0 100%);
}

.home-header .heading {
  margin-bottom: 0.1em;
  font-weight: inherit;
  font-size: 3rem;
  line-height: 1.2;
}

.home-header .heading-image {
  display: block;
  margin-bottom: 12px;
}

.home-header .copy {
  font-size: 2rem;
  line-height: 1.3;
}

.home-header .copy-strong {
  padding-bottom: 0.2em;
  background: linear-gradient(transparent 75%, #ffeb00 75%);
  color: var(--color-main);
  font-size: 1.5em;
}

.home-header .images {
  display: flex;
  margin: 0 -1%;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.home-header .image {
  margin: 0 1%;
}

.home-header .scroll {
  display: flex;
  position: absolute;
  right: 10px;
  bottom: 50%;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--color-main);
  font-size: 1.2rem;
  flex-flow: column;
  align-items: center;
}

.home-header .scroll:hover {
  background: var(--color-base);
}

.home-header .scroll-heading {
  color: #fff;
  line-height: 1.7;
  transform: translate(1em, -1em) rotate(90deg);
  transform-origin: left bottom;
}

@keyframes scroll {
  0% {
    transform: translateY(-7px);
  }

  70% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-7px);
  }
}

.home-header .scroll-arrow {
  animation: scroll 1s ease-out infinite;
}

@media (min-width: 768px) {
  .home-header {
    padding-top: 110px;
  }

  .home-header .dear {
    font-size: 2.4rem;
  }
  .home-header .heading {
    position: relative;
    z-index: 1;
    max-width: 63%;
    /* font-size: 5rem; */
    font-size: 3rem;
  }

  .home-header .copy {
    font-size: 3rem;
  }

  .home-header .scroll {
    bottom: 10px;
    width: 89px;
    height: 89px;
    margin-top: 30px;
    font-size: inherit;
  }
}

@media (max-width: 767.9px) {
  .home-header .text {
    margin-bottom: 20px;
  }

  .home-header .image {
    width: 31%;
  }
  .home-header .heading-image {
    margin-bottom: 2px;
  }
  .home-header .scroll {
    bottom: 30%;
  }
  .home-header .copy {
    margin-top: 10px;
  }
  .home-header .scroll-arrow {
    width: 14px;
  }
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- Reason
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.home-reason-ul {
  margin-bottom: -40px;
}

.home-reason-li {
  margin-bottom: 40px;
  counter-increment: number;
}

.home-reason-li .heading {
  position: relative;
  margin-bottom: 15px;
  padding-left: 1.8em;
  font-size: 2.1rem;
}

.home-reason-li .heading::before {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.4em;
  height: 1.4em;
  margin-right: 0.3em;
  border-radius: 50%;
  background: var(--color-main);
  color: #fff;
  font-weight: 500;
  font-family: var(--font-english);
  content: counter(number);
  justify-content: center;
  align-items: center;
}

.home-reason-li .heading::after {
  position: absolute;
  top: 0.95em;
  left: 1.15em;
  border-top: 0.4em solid var(--color-main);
  border-right: 0.2em solid transparent;
  border-left: 0.2em solid transparent;
  content: "";
  transform: rotate(-60deg);
}

.home-reason-li .image {
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .home-reason-ul {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
  }

  .home-reason-li .heading {
    font-size: 2.8rem;
  }

  .home-reason-li:nth-child(-n + 3) {
    display: -ms-grid;
    display: grid;
  }

  .home-reason-li:nth-child(-n + 3) .heading {
    margin-right: 9%;
  }

  .home-reason-li:nth-child(-n + 3) .image {
    margin-bottom: 0;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1 / 3;
    -ms-grid-column: 2;
    grid-column: 2;
  }

  .home-reason-li:nth-child(-n + 3) .description {
    margin-right: 9%;
    -ms-grid-row: 2;
    grid-row: 2;
  }

  .home-reason-li:nth-child(n + 4) {
    width: 48%;
  }
}

@media (max-width: 767.9px) {
  .home-reason-li .image {
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- Problem
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.home-problem {
  padding: 0;
}

.home-problem-container {
  background: url("../img/home/problem-background.jpg") center center no-repeat;
  background-size: cover;
}

.home-problem-container .section-heading-japanese {
  color: #fff;
}

.home-problem-ul {
  display: flex;
  margin-bottom: -30px;
  flex-flow: wrap;
  justify-content: space-between;
}

.home-problem-li {
  margin-bottom: 30px;
}

.home-problem-li .container {
  position: relative;
  max-width: 400px;
  margin: 0 auto 15px;
}

.home-problem-li .image {
  width: 100%;
}

.home-problem-li .heading {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 5px;
  background: rgba(216, 178, 75, 0.85);
  font-size: 1.3rem;
  text-align: center;
}

.home-problem-li .description {
  color: #fff;
}

.home-problem-solution {
  position: relative;
  padding: 60px 0 25px;
  background: var(--color-main);
  text-align: center;
}

.home-problem-solution::before {
  position: absolute;
  top: 0;
  left: 50%;
  border-top: 43px solid;
  border-right: 191px solid transparent;
  border-left: 191px solid transparent;
  content: "";
  transform: translateX(-50%);
}

.home-problem-solution .section-subheading {
  margin-bottom: 0.6em;
  padding: 0.2em 1em;
  border-radius: 60px;
  background: #fff;
  color: var(--color-main);
  font-size: 2rem;
}

.home-problem-solution .description {
  color: #fff;
  font-weight: 700;
  font-size: 1.7rem;
}

.home-problem-solution .description span {
  text-decoration: underline;
}

.home-problem-industry {
  padding: 30px 0;
}

.home-problem-industry .section-subheading {
  margin-bottom: 0.8em;
  font-weight: 800;
  font-size: 1.8rem;
  text-align: center;
}

.home-problem-industry-ul {
  display: flex;
  margin-bottom: -30px;
  flex-flow: wrap;
  justify-content: space-between;
}

.home-problem-industry-li {
  margin-bottom: 30px;
}

.home-problem-industry-li .container {
  overflow: hidden;
  position: relative;
  margin-bottom: 15px;
  border-radius: 15px;
}

.home-problem-industry-li .image {
  width: 100%;
}

.home-problem-industry-li .heading {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  padding: 0.8em 0.5em;
  background: var(--color-base);
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
}

@media (min-width: 568px) {
  .home-problem-li {
    width: 48%;
  }

  .home-problem-industry-li {
    width: 48%;
  }
}

@media (min-width: 768px) {
  .home-problem-solution .section-subheading {
    font-size: 3.6rem;
  }

  .home-problem-solution .description {
    font-size: 2.5rem;
  }

  .home-problem-industry .section-subheading {
    font-size: 2.5rem;
  }
}

@media (min-width: 812px) {
  .home-problem-li {
    width: 32%;
  }
}

@media (min-width: 1112px) {
  .home-problem-li {
    width: 24%;
  }

  .home-problem-industry-li {
    width: 24%;
  }
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- 基礎知識
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.home-knowledge {
  position: relative;
  z-index: 0;
  margin: 40px 0;
}

.home-knowledge::before {
  position: absolute;
  top: -20px;
  right: 0;
  bottom: -20px;
  left: 0;
  z-index: -1;
  background: var(--color-main);
  content: "";
  transform: skewY(-5deg);
}

.home-knowledge-header {
  display: flex;
  margin-bottom: 35px;
  font-weight: 800;
  flex-flow: column;
  align-items: center;
}

.home-knowledge-header .flex {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: flex-end;
}

.home-knowledge-header .container {
  width: 32%;
  margin-right: 3%;
  flex: none;
}

.home-knowledge-header .balloon {
  display: inline-block;
  position: relative;
  margin-bottom: -15%;
  padding: 1.3em 0.7em;
  border-radius: 50%;
  background: #fff;
  font-size: 3.7vw;
  transform: rotate(-6deg);
}

.home-knowledge-header .balloon::after {
  position: absolute;
  top: 70%;
  right: 5%;
  border-top: 1.8em solid #fff;
  border-right: 0.5em solid transparent;
  border-left: 0.5em solid transparent;
  content: "";
  transform: rotate(-50deg);
}

.home-knowledge-header .image {
  display: block;
  position: relative;
  z-index: 1;
}

.home-knowledge-header .heading {
  margin-bottom: 20px;
  font-weight: inherit;
  flex: none;
}

.home-knowledge-header .subheading {
  display: block;
  margin-bottom: 0.4em;
  color: #fff;
  font-size: 6vw;
  line-height: 1;
  letter-spacing: 0.08em;
}

.home-knowledge-header .char {
  display: inline-flex;
  width: 1.4em;
  height: 1.4em;
  border-radius: 0.2em;
  background: #fff;
  color: var(--color-main);
  font-size: 8vw;
  justify-content: center;
  align-items: center;
}

.home-knowledge-header .char:not(:last-child) {
  margin-right: 0.1em;
}

.home-knowledge-header .copy {
  position: relative;
  z-index: 1;
  padding: 0.5em 4%;
  background: #ffba00;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  text-align: center;
}

.home-knowledge-container {
  padding: 30px 5.4%;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.9);
}

.home-knowledge-li:not(:last-child) {
  margin-bottom: 40px;
}

.home-knowledge-li .heading {
  margin-bottom: 0.5em;
  font-weight: 800;
  font-size: 2rem;
  text-align: center;
}

.home-knowledge-li .container {
  position: relative;
}

.home-knowledge-li .image {
  border-radius: 13px;
}

.home-knowledge-li .material {
  display: flex;
  position: absolute;
  top: 0.8em;
  left: 0.8em;
  width: 4.6em;
  height: 4.6em;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  font-size: 1.6rem;
  justify-content: center;
  align-items: center;
}

.home-knowledge-aluminum .material {
  background: linear-gradient(#525252, #8d8d8d);
}

.home-knowledge-steel .material {
  background: #5a5a5a;
}

.home-knowledge-glass .material {
  background: linear-gradient(#dbf8fc, #5ca7a4);
}

.home-knowledge-li .check {
  margin-bottom: 22px;
  padding: 15px 5.1%;
  border: 2px solid var(--color-main);
  border-radius: 12px;
  background: #fff;
}

.home-knowledge-li .check-heading {
  display: table;
  margin: 0 auto 20px;
  padding: 0.4em 1.5em;
  border-radius: 24px;
  background: var(--color-main);
  color: #fff;
}

.home-knowledge-li .check-ul {
  display: flex;
  margin: 0 -30px -8px 0;
  flex-flow: wrap;
}

.home-knowledge-li .check-li {
  margin: 0 30px 8px 0;
  padding-left: 1.7em;
  background: url("../img/common/check.svg") left 0.1em no-repeat;
  background-size: 1.4em 1.4em;
  font-size: 1.5rem;
}

.home-knowledge-li .merit-dl {
  margin-bottom: 25px;
}

.home-knowledge-li .merit-dt,
.home-knowledge-li .demerit-dt {
  width: 150px;
  margin-bottom: 10px;
  padding: 0.2em;
  border-radius: 13px;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.home-knowledge-li .merit-dt {
  background: var(--color-sub);
}

.home-knowledge-li .demerit-dt {
  background: #0073ce;
}

.home-knowledge-li .merit-dd,
.home-knowledge-li .demerit-dd {
  display: flex;
}

.home-knowledge-li .merit-dd::before,
.home-knowledge-li .demerit-dd::before {
  content: "・";
}

@media (min-width: 768px) {
  .home-knowledge-header .balloon {
    font-size: 2.7rem;
  }

  .home-knowledge-header .subheading {
    font-size: 4.3rem;
  }

  .home-knowledge-header .char {
    font-size: 6.1rem;
  }

  .home-knowledge-header .copy {
    font-size: 2.3rem;
  }

  .home-knowledge-container {
    padding: 50px 8%;
    border-radius: 50px;
  }

  .home-knowledge-li {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
  }

  .home-knowledge-li:not(:last-child) {
    margin-bottom: 60px;
  }

  .home-knowledge-li .heading {
    width: 100%;
    font-size: 4rem;
  }

  .home-knowledge-li .container {
    width: 45%;
    max-width: 326px;
    margin-right: 30px;
  }

  .home-knowledge-li .material {
    font-size: 2rem;
  }

  .home-knowledge-li .text {
    flex: 1;
  }

  .home-knowledge-li .check-heading {
    font-size: 1.6rem;
  }

  .home-knowledge-li .check-li {
    font-size: 1.8rem;
  }
}

@media (max-width: 767.9px) {
  .home-knowledge-li .container {
    display: table;
    margin: 0 auto 30px;
  }
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- Product
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.home-product-ul {
  display: flex;
  margin-bottom: -35px;
  flex-flow: wrap;
  justify-content: space-between;
}

.home-product-li {
  margin-bottom: 35px;
  font-size: 1.5rem;
  text-align: center;
}

.home-product-li .container {
  position: relative;
}

.home-product-li .image {
  width: 100%;
}

.home-product-li .copy {
  position: absolute;
  right: 0.8em;
  bottom: 0.8em;
  width: 8em;
  padding: 0.1em;
  background: var(--color-sub);
  color: #fff;
  font-weight: 700;
}

.home-product-li .text {
  display: flex;
  padding: 12px 10px 0;
  flex-flow: wrap;
  align-items: center;
}

.home-product-li .heading {
  width: 12em;
  margin-right: 0.2em;
  padding: 0.3em;
  border-radius: 9px;
  background: var(--color-base);
  color: #fff;
}

.home-product-li .amount {
  color: var(--color-sub);
  font-weight: 800;
}

.home-product-li .amount-large {
  color: var(--color-sub);
  font-weight: 800;
  font-size: 2.5rem;
}

.home-product-li .per {
  font-size: 1.1rem;
}

.home-product-option {
  margin-top: 50px;
}

.home-product-option .section-subheading {
  margin-bottom: 23px;
  padding: 0.9em;
  background: var(--color-main);
  color: #fff;
  font-size: 2.2rem;
  text-align: center;
}

.home-product-option-ul {
  display: flex;
  margin-bottom: -30px;
  flex-flow: wrap;
  justify-content: space-between;
}

.home-product-option-li {
  margin-bottom: 30px;
}

.home-product-option-li .container {
  position: relative;
  margin-bottom: 15px;
}

.home-product-option-li .image {
  width: 100%;
}

.home-product-option-li .heading {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3.5em;
  margin: auto;
  background: rgba(var(--color-base-rgb), 0.6);
  color: #fff;
  font-weight: 800;
  font-size: 1.8rem;
  text-align: center;
  justify-content: center;
  align-items: center;
}

@media (min-width: 568px) {
  .home-product-li {
    width: 49%;
  }

  .home-product-option-li {
    width: 31%;
    max-width: 275px;
  }

  .home-product-option-li .heading {
    font-size: 2.3vw;
  }
}

@media (min-width: 768px) {
  .home-product-li {
    font-size: 1.8rem;
  }
}

@media (min-width: 1024px) {
  .home-product-option-li .heading {
    font-size: 2.4rem;
  }
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- Case
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.home-case-ul {
  display: flex;
  margin-bottom: -30px;
  flex-flow: wrap;
  justify-content: space-between;
}

.home-case-li {
  margin-bottom: 30px;
}

.home-case-li .image {
  width: 100%;
  margin-bottom: 12px;
}

.home-case-li .heading {
  margin-bottom: 0.2em;
}

.home-case-li .address {
  margin-bottom: 12px;
  padding-bottom: 9px;
  border-bottom: 2px solid var(--color-main);
  font-size: 1.2rem;
}

.home-case .button {
  margin-bottom: 25px;
}

.home-case-industry {
  margin-bottom: 35px;
  padding: 30px 5.4%;
  border-radius: 30px;
  background: url("../img/home/case-industry-background.jpg") center center no-repeat;
  background-size: cover;
  color: #fff;
}

.home-case-industry .section-subheading {
  display: flex;
  margin-bottom: 0.8em;
  font-weight: 800;
  font-size: 2rem;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.home-case-industry .section-subheading::before,
.home-case-industry .section-subheading::after {
  min-width: 1em;
  border-top: 3px solid;
  content: "";
  flex: 1;
}

.home-case-industry .section-subheading::before {
  margin-right: 0.5em;
}

.home-case-industry .section-subheading::after {
  margin-left: 0.5em;
}

.home-case-industry .description {
  max-width: 800px;
  margin: 0 auto;
  font-weight: 700;
  line-height: 1.8;
}

.home-case-business {
  margin-bottom: 35px;
  padding: 30px 5.4% 140px;
  background: url("../img/home/case-business-background.jpg") center bottom no-repeat #f0f0f0;
  background-size: 100% auto;
}

.home-case-business .section-subheading {
  margin-bottom: 0.8em;
  font-size: 1.9rem;
  text-align: center;
}

.home-case-business .description {
  max-width: 750px;
  margin: 0 auto;
  padding: 25px 5.4%;
  box-shadow: 0 5px 10px rgba(35, 37, 39, 0.1);
  background: #fff;
}

@media (min-width: 568px) {
  .home-case-li {
    width: 48%;
  }
}

@media (min-width: 768px) {
  .home-case-industry .section-subheading {
    font-size: 2.5rem;
  }

  .home-case-industry .description {
    font-size: 1.6rem;
  }

  .home-case-business .section-subheading {
    font-size: 2.3rem;
  }

  .home-case-business .description {
    padding: 25px 30px;
  }
}

@media (min-width: 1112px) {
  .home-case-li {
    width: 24%;
  }
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- About
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.home-about {
  background: #ebebeb;
}

.home-about-intro {
  margin-bottom: 50px;
}

.home-about-intro .text {
  line-height: 1.7;
}

.home-about-area {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-about-area table {
  margin-bottom: 3px;
}

.home-about-area th {
  position: relative;
  min-width: 10em;
  padding: 0 1em 3px 1.6em;
  font-size: 1.5rem;
}

.home-about-area-sapporo th {
  color: #0094dd;
}

.home-about-area-tokyo th {
  color: #00a83a;
}

.home-about-area-nagoya th {
  color: #8c3e8b;
}

.home-about-area-osaka th {
  color: #ec9d00;
}

.home-about-area-fukuoka th {
  color: #da4649;
}

.home-about-area .arrow {
  position: absolute;
  top: 0.1em;
  left: 0;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background: #265fba;
  font-size: 1.2em;
}

.home-about-area .arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  border-top: 0.25em solid transparent;
  border-bottom: 0.25em solid transparent;
  border-left: 0.4em solid #fff;
  content: "";
  transform: translate(-40%, -50%);
}

.home-about-area td {
  padding-bottom: 1em;
  font-size: 1.3rem;
}

.home-about-area .description01 {
  margin-bottom: 0.3em;
  font-weight: 700;
}

.home-about-area .description02 {
  font-size: 1.3rem;
}

@media (min-width: 768px) {
  .home-about-intro {
    display: flex;
    /* margin-bottom: 80px; */
    flex-flow: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
  }

  .home-about-intro .image {
    width: 100%;
  }

  .home-about-intro-link {
    width: 45%;
  }

  .home-about-intro .text {
    width: 50%;
  }

  .home-about-area .image {
    width: 40%;
    max-width: 340px;
    margin-right: 5%;
    flex: none;
  }

  .home-about-area th {
    padding-bottom: 0.9em;
    font-size: 1.6rem;
  }
}

@media (max-width: 767.9px) {
  .home-about-intro .image {
    display: block;
    margin: 0 auto 20px;
  }

  .home-about-area {
    flex-flow: column;
  }

  .home-about-area .image {
    width: 400px;
    margin-bottom: 30px;
  }
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- Showroom
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.home-showroom .section-description {
  margin-bottom: 20px;
}

.home-showroom .container {
  position: relative;
  margin-bottom: 20px;
}

.home-showroom address {
  background: rgba(255, 255, 255, 0.8);
  font-size: 1.3rem;
}

.home-showroom .tel-container {
  margin-top: 0.6em;
}

.home-showroom .tel {
  margin-right: 1em;
}

.home-showroom .tel:hover {
  color: var(--color-main);
}

.home-showroom .tel-icon {
  margin-right: 2px;
  vertical-align: -1px;
}

.home-showroom .images {
  display: flex;
  margin-bottom: 40px;
  justify-content: space-between;
  align-items: center;
}

.home-showroom .images img {
  width: 31.5%;
}

.home-showroom-online {
  position: relative;
  z-index: 0;
  margin-bottom: 60px;
  padding: 25px 5.4%;
  border: 1.5px solid var(--color-sub);
  color: #fff;
}

.home-showroom-online::before {
  position: absolute;
  top: 4px;
  right: 0;
  bottom: 4px;
  left: 0;
  z-index: -1;
  background: var(--color-sub);
  content: "";
  --polygon: polygon(30px 0, calc(100% - 30px) 0, 100% 30px, 100% calc(100% - 30px), calc(100% - 30px) 100%, 30px 100%, 0 calc(100% - 30px), 0 30px);
  -webkit-clip-path: var(--polygon);
  clip-path: var(--polygon);
}

.home-showroom-online .section-subheading {
  margin-bottom: 0.5em;
  font-weight: 800;
  font-size: 2rem;
  text-align: center;
}

.home-showroom-online .description {
  max-width: 800px;
  margin: 0 auto;
  font-weight: 700;
}

.home-showroom-media {
  position: relative;
  padding: 30px;
  border-radius: 17px;
  background: var(--color-main);
}

.home-showroom-media::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: url("../img/home/showroom-media.svg") center 10% no-repeat var(--color-main);
  background-size: 40px 28px;
  content: "";
  transform: translate(-50%, -35%);
}

.home-showroom-media::after {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  border: 3px solid #fff;
  border-radius: 8px;
  content: "";
}

.home-showroom-media .section-subheading {
  display: table;
  position: relative;
  margin: 0 auto 30px;
  padding: 0.5em 1em;
  border-radius: 35px;
  background: #fff;
  color: var(--color-main);
  font-weight: 800;
  font-size: 1.9rem;
  text-align: center;
}

.home-showroom-media .section-subheading::after {
  position: absolute;
  top: 100%;
  left: 50%;
  border-top: 18px solid #fff;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  content: "";
  transform: translateX(-50%);
}

.home-showroom-media .description {
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
}

@media (min-width: 768px) {
  .home-showroom .section-description {
    margin-bottom: 40px;
  }

  .home-showroom address {
    position: absolute;
    right: 0;
    bottom: 30px;
    padding: 20px 4%;
    font-size: 1.8rem;
    text-align: right;
  }

  .home-showroom .images {
    margin-bottom: 80px;
  }

  .home-showroom-online {
    margin-bottom: 90px;
    padding: 25px 40px;
  }

  .home-showroom-online .section-subheading {
    font-size: 2.8rem;
  }

  .home-showroom-online .description {
    font-size: 1.6rem;
  }

  .home-showroom-media {
    padding: 35px 40px;
  }

  .home-showroom-media::before {
    width: 196px;
    height: 196px;
    background-size: 70px 48px;
  }

  .home-showroom-media::after {
    top: 13px;
    right: 13px;
    bottom: 13px;
    left: 13px;
  }

  .home-showroom-media .section-subheading {
    font-size: 2.8rem;
  }

  .home-showroom-media .description {
    font-size: 1.6rem;
  }
}

@media (max-width: 767.9px) {
  .home-showroom address {
    margin-top: 10px;
  }
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- Flow
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.home-flow {
  background: #ebebeb;
}

.home-flow-li {
  position: relative;
  margin-bottom: 20px;
  padding: 15px 10px;
  background: #fff;
  text-align: center;
  counter-increment: number;
}

.home-flow-li:not(:last-child)::after {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 1;
  content: "";
  transform: translateX(-50%);
}

.home-flow-li .number {
  display: table;
  margin: 0 auto 20px;
  border-bottom: 2px solid;
  color: #af9c7c;
  font-weight: 500;
  font-size: 1.6rem;
  font-family: var(--font-english);
}

.home-flow-li .number::after {
  content: counter(number, decimal-leading-zero);
}

.home-flow-li .image {
  max-width: 60%;
  margin-bottom: 5px;
}

.home-flow-li .heading {
  font-size: 1.5rem;
}

.home-flow .annotation {
  margin-top: 3em;
}

@media (min-width: 640px) {
  .home-flow-ul {
    display: flex;
    margin: 0 -1% -20px;
    flex-flow: wrap;
    justify-content: center;
  }

  .home-flow-li {
    width: 23%;
    height: 210px;
    margin-right: 1%;
    margin-left: 1%;
  }

  .home-flow-li:not(:last-child)::after {
    top: 50%;
    left: 100%;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 20px solid #af9c7c;
    transform: translateY(-50%);
  }
}

@media (min-width: 768px) {
  .home-flow-li {
    height: 275px;
  }

  .home-flow-li .number {
    margin-bottom: 50px;
  }

  .home-flow-li .heading {
    font-size: 1.6rem;
  }

  .home-flow .annotation {
    font-size: 1.6rem;
  }
}

@media (max-width: 767.9px) {
  .home-flow-li .image {
    width: 80px;
  }
}

@media (max-width: 639.9px) {
  .home-flow-li:not(:last-child)::after {
    border-top: 20px solid #af9c7c;
    border-right: 25px solid transparent;
    border-left: 25px solid transparent;
  }
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- Q&A
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.home-faq-dt,
.home-faq-dd {
  display: flex;
  padding: 10px 15px;
}

.home-faq-dt {
  background: var(--color-main);
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
}

.home-faq-dd {
  font-size: 1.5rem;
}

.home-faq-dt::before,
.home-faq-dd::before {
  margin-right: 7px;
}

.home-faq-dt::before {
  content: "Q.";
}

.home-faq-dd::before {
  content: "A.";
}

@media (min-width: 768px) {
  .home-faq-dt,
  .home-faq-dd {
    padding: 25px 40px;
  }

  .home-faq-dt {
    font-size: 2rem;
  }

  .home-faq-dd {
    font-size: 1.8rem;
  }
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- Greeting
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.home-greeting {
  padding-bottom: 110px;
}

.home-greeting figcaption {
  margin-top: 10px;
  font-weight: 700;
}

.home-greeting .division {
  margin-bottom: 0.2em;
  font-size: 1.5rem;
}

.home-greeting .name {
  font-size: 2rem;
}

@media (min-width: 768px) {
  .home-greeting .flex {
    display: flex;
  }

  .home-greeting figure {
    width: 35%;
    margin-right: 8.7%;
    flex: none;
  }

  .home-greeting .division {
    font-size: 1.8rem;
  }

  .home-greeting .name {
    font-size: 2.5rem;
  }
}

@media (max-width: 767.9px) {
  .home-greeting figure {
    margin-bottom: 20px;
    text-align: center;
  }
}

/*-------------- ↓ 20240513追記 ↓ --------------*/

@media screen and (max-width: 767px) {
  .home-header .inner {
    padding-bottom: 50%;
  }
}

@media screen and (max-width: 540px) {
  .home-header .inner {
    padding-bottom: 45%;
  }
}

.home-header .dear {
  max-width: 600px;
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .home-header .dear {
    font-size: 2.6rem;
  }
  .home-header .heading {
    /* 20240513追記 */
    width: 43%;
  }
}

@media screen and (max-width: 540px) {
  .home-header .heading {
    width: 70%;
  }
  .home-header .images {
    width: 22%;
  }
}

.home-header .images {
  flex-direction: column;
}

@media (min-width: 768px) {
  /* 20240513修正 */
  .home-header .images {
    width: 14%;
  }
}

@media screen and (max-width: 767.9px) {
  .home-header .image {
    width: 100%;
  }
}

.fvMain {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media screen and (max-width: 540px) {
  .fvMain {
    justify-content: center;
  }
}

.fvHiromi {
  position: absolute;
  right: 8%;
  bottom: -25px;
  width: 43%;
}

@media screen and (max-width: 767px) {
  .fvHiromi {
    right: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 59%;
  }
}

.fvH1 h1 {
  padding: 49px 0;
  color: #000;
  text-align: center;
  font-size: 47.556px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.fvH1 h1 span {
  display: block;
  color: var(--color-main);
  font-size: 68.556px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

@media screen and (max-width: 767px) {
  .fvH1 h1 {
    font-size: 27.556px;
  }

  .fvH1 h1 span {
    font-size: 38.556px;
  }
}

@media screen and (max-width: 540px) {
  .fvH1 h1 {
    padding: 20px 0 20px 0;
    font-size: 22.556px;
  }

  .fvH1 h1 span {
    font-size: 31.556px;
  }
}

/*---------------------------------------------

	PCとSP表示切り替え

---------------------------------------------*/
.sp {
  display: none;
}

@media screen and (max-width: 540px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}
