@charset "UTF-8";
/* =======================================================
   mv
======================================================== */
.item .mv{
  margin-bottom: clamp(80px, 7.353vw, 100px); /*1360*/
}

.mv {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mv-head {
  width: calc(100% - 70.573vw);
  padding: 0 clamp(20px, 3.333vw, 40px);
  /*1200*/
  /* text-align: right; */
  max-width: 564px;
  margin-left: auto;
  text-align: right;
}

.mv-head span {
  display: block;
  line-height: 1;
}

.mv-head .en {
  font-size: clamp(2.4rem, 2.794vw, 3.8rem);
  /*1360*/
  font-family: var(--Barlow);
  font-weight: 700;
  margin-bottom: 10px;
}

.mv-head p {
  margin-top: 30px;
  /* text-align: left; */
}

.mv-image {
  margin-left: auto;
  height: calc(60vh - 161px);
  width: 70.573vw;
}

.item .mv-image {
  height: 30vh;
}

/*************************/
@media screen and (max-width: 1199px) {
  .mv {
    flex-wrap: wrap;
  }
  .mv-head {
    order: 2;
    background: #fff;
    margin-top: -100px;
    width: 50%;
    padding-top: clamp(20px, 3.333vw, 40px);
    /*1200*/
    min-height: 102px;
  }
  .item .mv-head {
    margin-top: -60px;
  }
  .mv-image {
    order: 1;
    width: 100%;
  }
}
/*************************/
@media screen and (max-width: 767px) {
  .mv-head {
    width: calc(100% - 4vw);
    margin-left: 2vw;
  }
}
/*************************/
.mv-catch {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin-left: clamp(2vw, 3.333vw, 40px);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  display: none;
}

.mv-catch span {
  position: relative;
  align-self: flex-start;
}

.mv-catch .bg-slide {
  padding: 10px 20px 10px 0;
}

.mv-catch .bg-slide:not(last-child) {
  margin-bottom: 10px;
}

.mv-catch span {
  line-height: 1.4;
  display: inline-block;
}

.mv-catch .word {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}

.mv-catch .word.start {
  animation: text-slide 0.5s forwards ease-in-out;
}

.mv-catch .bg-slide.move::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.6;
  transform: translateX(-100%);
  animation: bg-slide 0.5s forwards ease-in-out;
}

.mv-catch .en {
  font-family: var(--Barlow);
  font-weight: 700;
  font-size: clamp(2.8rem, 4.427vw, 3.8rem);
  line-height: 1.2;
  display: inline-block;
  max-width: 100%;
}

.mv-catch .en span:not(:last-child) {
  padding-right: 10px;
}

.mv-catch .ja {
  font-size: clamp(2rem, 3.125vw, 2.4rem);
}

.mv-catch .text {
  font-size: clamp(1.4rem, 2.344vw, 1.8rem);
}

/*************************/
@media screen and (max-width: 599px) {
  .mv-catch {
    margin-left: 0;
  }
  .mv-catch > .bg-slide {
    padding-left: 2vw;
  }
  .mv-catch > .bg-slide:not(last-child) {
    margin-bottom: 0px;
  }
}
/*************************/
/***********/
@keyframes text-slide {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
/***********/
/***********/
@keyframes bg-slide {
  0% {
    transform: translateX(-100%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
/***********/
/* =======================================================
   alternate
======================================================== */
.s-list .head02 {
  position: relative;
  z-index: 1;
}

.alternate {
  margin: 0 auto;
  flex-direction: column;
}

.c-sec:first-of-type .alternate {
  margin-top: clamp(60px, 10.091vw, 100px);
}

.alternate.s-list {
  display: flex;
  flex-wrap: wrap;
}

.alternate__item {
  border-top: 1px solid;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.alternate__item > div {
  width: 50%;
}

.alternate__item .text-box {
  padding: 20px clamp(20px, 4.036vw, 40px) 0;
  display: flex;
  flex-direction: column;
}

.alternate__item .text-box .en {
  display: block;
  font-family: var(--Barlow);
  color: var(--Gray3);
  font-size: 1.4rem;
  margin-bottom: clamp(10px, 2.018vw, 20px);
  /*991*/
}

.alternate__item .head03, .alternate__item p {
  margin-bottom: 20px;
}

.alternate__item .btn {
  margin-top: auto;
}

/*======== even ==========================*/
.alternate:not(.s-list) .alternate__item:nth-child(even) {
  flex-direction: row-reverse;
}

/*************************/
@media screen and (max-width: 599px) {
  .alternate__item {
    border-top: none;
  }
  .alternate__item:nth-child(odd) {
    flex-direction: row-reverse;
  }
  .alternate__item .image-box {
    width: 100%;
    margin-right: auto;
  }
  .alternate__item .text-box {
    width: 100%;
    background: rgba(255, 255, 255, 0.86);
    margin: 30px 0 30px -100%;
    padding-bottom: 20px;
    position: relative;
    z-index: 2;
  }
  .s-list .alternate__item:nth-child(even) {
    flex-direction: row-reverse;
  }
}
/*************************/
@media screen and (min-width: 1200px) {
  .alternate {
    flex-direction: row;
    position: relative;
    max-width: 1680px;
    padding: 0 2vw;
  }
  .alternate::before {
    content: "";
    display: block;
    width: 1px;
    height: calc(100% + 260px);
    background: var(--Black);
    position: absolute;
    top: -100px;
    left: calc(50% - 1px);
    z-index: 1;
  }
  .alternate__item {
    width: 50%;
  }
  .alternate__item.bd-b {
    border-bottom: 1px solid;
  }
  .alternate:not(.s-list) .alternate__item:nth-child(odd) {
    margin-left: auto;
  }
  .alternate:not(.s-list) .alternate__item::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: var(--Black);
    border-radius: 8px;
    position: absolute;
    top: -4px;
  }
  .alternate__item:nth-child(odd)::before {
    left: -4px;
  }
  .alternate__item:nth-child(even)::before {
    right: -4px;
  }
  .alternate__item .image-box {
    width: 30%;
  }
  .alternate__item .text-box {
    width: 70%;
  }
  .s-list .alternate__item .text-box {
    padding-bottom: 20px;
  }
  .alternate__item:nth-child(even) .text-box .en {
    text-align: right;
  }
}
/*************************/
@media screen and (max-width: 1199px) {
  .alternate__item + .alternate__item {
    margin-top: clamp(40px, 6.054vw, 60px);
    /*991*/
  }
}
/*************************/
/* =======================================================
   exp
======================================================== */
/*************************/
@media screen and (max-width: 991px) {
  .exp br {
    display: none;
  }
}
/*************************/
/* =======================================================
   cts-block
======================================================== */
.cts-block {
  margin-top: clamp(40px, 8.073vw, 80px); /*991*/
}

.cts-block.bg-gray {
  background: var(--Gray1);
  padding: clamp(20px, 4.036vw, 40px); /*991*/
  max-width: 900px;
}

.cts-block.mt_ss {
  margin-top: clamp(20px, 4.036vw, 40px); /*991*/
}

/*======== brackets ==========================*/
.brackets {
  display: inline-block;
  position: relative;
  padding: 15px clamp(16px, 3.385vw, 26px); /*768*/
  font-size: 2rem;
  color: var(--Blue2);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: clamp(20px, 4.036vw, 40px); /*991*/
}

.brackets::before {
  content: "";
  display: block;
  width: 30px;
  height: 20px;
  background: url(../images/brackets.svg) no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}

.brackets::after {
  content: "";
  display: block;
  width: 30px;
  height: 20px;
  background: url(../images/brackets.svg) no-repeat;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
}

.dp_bk .brackets {
  margin-top: clamp(30px, 4.412vw, 60px);
  /*991*/
  margin-bottom: 0;
}

/* =======================================================
   cts-list
======================================================== */
.cts-list li {
  position: relative;
  line-height: 1.4;
  padding-left: clamp(14px, 2.018vw, 20px);
  /*991*/
}

.cts-list li + li {
  margin-top: 20px;
}

.cts-list li::before {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--Black);
  border-radius: 5px;
}

.cts-list.circle li::before {
  width: 10px;
  height: 10px;
  border: 2px solid var(--Black);
  background: transparent;
  top: 7px;
}

.cts-list li span {
  /* color: var(--Blue2); */
  font-weight: 500;
}

/* =======================================================
   point
======================================================== */
.point {
  margin-top: 40px;
  /*1360*/
  display: inline-block;
}

.point-item {
  background: var(--Gray2);
  display: flex;
  align-items: center;
  padding: 16px clamp(10px, 6.586vw, 60px) 16px 16px;
}

.point-item + .point-item {
  margin-top: 20px;
}

.point-number {
  border-right: 1px solid #fff;
  padding-right: 16px;
}

.point-number span {
  display: block;
  text-align: center;
  color: var(--Gray3);
  font-family: var(--Barlow);
  line-height: 1;
}

.point-number span:first-child {
  font-size: clamp(1.4rem, 1.756vw, 1.6rem);
  /*991*/
}

.point-number span:last-child {
  font-size: clamp(2rem, 3.293vw, 3rem);
  /*991*/
  margin-top: 5px;
  font-weight: 500;
}

.point-text {
  padding-left: 20px;
}

/* =======================================================
   item-cts
======================================================== */
.item-cts + .item-cts {
  margin-top: clamp(60px, 7.353vw, 100px);
  /*1360*/
}

/* =======================================================
   head-bg-gray
======================================================== */
.head-bg-gray {
  background: var(--Gray2);
  padding: clamp(20px, 4.036vw, 40px); /*991*/
  line-height: 1.4;
  margin-bottom: 40px;
}

.head-bg-gray .en {
  font-family: var(--Barlow);
  font-weight: 600;
  font-size: clamp(2.4rem, 3.027vw, 3.4rem); /*991*/
}

/* =======================================================
   page-link
======================================================== */
.page-link {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: clamp(30px, 4.412vw, 60px);
}

.page-link li {
  display: flex;
  margin-bottom: 20px;
}

.page-link li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--Black);
  color: #fff;
  border: 1px solid var(--Black);
  padding: 15px 30px;
  font-size: 1.4rem;
  position: relative;
  width: clamp(250px, 22.5vw, 270px);
}

.page-link li a::after {
  font-family: webfont;
  font-size: 1.6rem;
  content: "\f105";
  display: inline-block;
  transform: rotate(90deg);
}

/*************************/
@media screen and (min-width: 600px) {
  .page-link li:not(:last-child) {
    margin-right: clamp(20px, 3.333vw, 40px);
  }
}
/*************************/
@media screen and (max-width: 599px) {
  .page-link {
    flex-direction: column;
  }
  .page-link li a {
    width: 100%;
  }
  .page-link li a br {
    display: none;
  }
}
/*************************/
/* =======================================================
   spec (fusion)
======================================================== */
.spec {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.fusion.spec {
  margin-top: clamp(20px, 2.941vw, 40px);
}

.spec-item {
  width: 32.2580645161%;
  border: 1px solid;
}

.spec-head {
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Barlow", "Noto Sans JP", sans-serif;
  line-height: 1.2;
}

.spec-head .en, .spec-head .ja {
  border-bottom: 1px solid var(--Black);
  width: 100%;
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.spec-head .en {
  font-size: 2.8rem;
  font-weight: 500;
}

.spec-head .ja {
  min-height: 64px;
  padding-top: 13px;
}

.spec-head .price {
  font-size: 3.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.spec-head .price .unit {
  font-weight: 400;
  font-size: 1.5rem;
  position: relative;
  top: -2px;
  margin-left: 10px;
}

/*************************/
@media screen and (max-width: 991px) {
  .spec-item {
    width: 100%;
  }
  .spec-item + .spec-item {
    margin-top: 20px;
  }
}
/*************************/
@media screen and (max-width: 991px) and (min-width: 600px) {
  .spec-item {
    display: flex;
    align-items: center;
  }
  .spec-head {
    width: 40%;
  }
  .spec-detail {
    width: 60%;
  }
}
/*************************/
/*======== spec-detail ==========================*/
.spec-detail {
  display: flex;
  flex-wrap: wrap;
}

.spec-detail dt {
  width: 70%;
}

.spec-detail dd {
  width: 30%;
}

.spec-detail dt, .spec-detail dd {
  padding: clamp(15px, 3.027vw, 30px) 20px clamp(13px, 2.624vw, 26px) 20px;
}

.spec-detail dt:nth-of-type(odd), .spec-detail dd:nth-of-type(odd) {
  background: var(--Gray1);
}

/*======== fusion ==========================*/
.fusion-list {
  padding: 40px;
  text-align: center;
}

.fusion-list li + li {
  margin-top: 10px;
}

.fusion-list {
  position: relative;
}

.fusion-list::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.fusion-list li {
  position: relative;
  z-index: 1;
}

.fusion .spec-item:first-child .fusion-list {
  background: url(../images/service/other/fusion/fusion-spec_bg01.jpg) center center/cover no-repeat;
}

.fusion .spec-item:nth-child(2) .fusion-list {
  background: url(../images/service/other/fusion/fusion-spec_bg02.jpg) center center/cover no-repeat;
}

.fusion .spec-item:last-child .fusion-list {
  background: url(../images/service/other/fusion/fusion-spec_bg03.jpg) center center/cover no-repeat;
}

/*************************/
@media screen and (max-width: 991px) and (min-width: 600px) {
  .fusion-list {
    width: 60%;
  }
}
/*************************/
/* =======================================================
   annotation
======================================================== */
.annotation li {
  padding-left: 1.6rem;
  text-indent: -1.6rem;
  line-height: 1.4;
  font-size: 1.4rem;
}

.annotation li::before {
  content: "※";
}

.annotation li + li {
  margin-top: 6px;
}

/* =======================================================
   function-table
======================================================== */
.table-head .head {
  font-weight: 500;
  font-size: 1.8rem;
  border-left: 5px solid;
  line-height: 1.4;
  padding-left: 20px;
}

.table-head .comment {
  padding: 10px 25px;
}

.table-head .option {
  text-align: right;
  margin-top: 0;
}

/*======== function-table ==========================*/
.function-table {
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  width: 100%;
  border-collapse: collapse;
  line-height: 1.4;
  table-layout: fixed;
}

.function-table tr:nth-child(even) {
  background: var(--Blue1);
}

.function-table th {
  font-weight: 400;
  text-align: left;
  width: 30%;
}

.function-table td:first-of-type {
  text-align: center;
  color: var(--Blue2);
  width: 10%;
}

.function-table td:last-child {
  width: 60%;
}

.function-table th, .function-table td {
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 20px 20px;
  vertical-align: middle;
}

/*************************/
@media screen and (max-width: 599px) {
  .function-table tr {
    display: flex;
    flex-wrap: wrap;
  }
  .function-table th {
    order: 2;
    width: calc(100% - 10.017vw);
    padding: 15px 5px;
  }
  .function-table td:first-of-type {
    order: 1;
    width: 10.017vw;
    border-right: none;
    padding: 15px 10px;
  }
  .function-table td:last-of-type {
    order: 3;
    width: 100%;
    color: #999;
    padding: 10px 15px 15px 15px;
    font-size: 1.4rem;
  }
}
/*************************/
.function-table + .table-head {
  margin-top: clamp(40px, 4.412vw, 60px); /*1360*/
}

/* =======================================================
   splan-table
======================================================== */
.splan-table {
  margin-bottom: 40px;
}

.splan-table__item {
  display: inline-block;
}

.splan-table__item + .splan-table__item {
  margin-top: 20px;
}

.splan-table__item span {
  padding: 10px;
  display: inline-block;
  width: 300px;
  text-align: center;
}

.splan-table__item span:first-child {
  margin-right: 20px;
}

.splan-table__item span:last-child {
  margin-left: 20px;
}

.splan-table__item:not(.head) {
  border-bottom: 1px solid #ddd;
}

.splan-table__item.head span {
  background: var(--Blue3);
  color: #fff;
}

/*************************/
@media screen and (max-width: 767px) {
  .splan-table__item {
    display: flex;
  }
  .splan-table__item span {
    width: 100%;
  }
}
/*************************/
/* =======================================================
   ssl-table
======================================================== */
/*======== pc ==========================*/
.ssl-table.pc {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  line-height: 1.4;
  table-layout: fixed;
}

.ssl-table th, .ssl-table td {
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 20px;
  vertical-align: middle;
}

/*************************/
@media screen and (max-width: 767px) {
  .ssl-table.pc {
    display: none;
  }
  .ssl-table.sp th {
    padding: 20px clamp(10px, 2.604vw, 20px);
  }
}
/*************************/
.ssl-table.pc td:nth-child(2),
.ssl-table td.blue {
  color: var(--Blue2);
}

.ssl-table.pc td:nth-child(3),
.ssl-table.pc td.red {
  color: var(--Red);
}

.ssl-table td:nth-child(4),
.ssl-table.pc td.green {
  color: var(--Green);
}

.ssl-table ul li + li {
  margin-top: 10px;
}

.ssl-table ul li {
  padding-left: 12px;
  text-indent: -12px;
}

.ssl-table ul li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--Blue2);
  border-radius: 50%;
  position: relative;
  top: -2px;
  margin-right: 6px;
}

.ssl-table td:nth-child(3) ul li::before,
.ssl-table td.red ul li::before,
.sp .ssl-02 td ul li::before {
  background: var(--Red);
}

.ssl-table td:nth-child(4) ul li::before,
.ssl-table td.green ul li::before,
.sp .ssl-03 td ul li::before {
  background: var(--Green);
}

/*======== sp ==========================*/
.ssl-table.sp {
  display: flex;
  flex-direction: column;
  font-size: 1.4rem;
  width: 100%;
}

/*************************/
@media screen and (min-width: 769px) {
  .ssl-table.sp {
    display: none;
  }
}
/*************************/
.ssl-table.sp span {
  display: block;
}

.ssl-table.sp .type-text {
  text-align: center;
  padding: 0 20px;
}

.sp .ssl-01 {
  border: 1px solid var(--Blue2);
  color: var(--Blue2);
}

.sp .ssl-02 {
  border: 1px solid var(--Red);
  color: var(--Red);
  margin-top: 40px;
}

.sp .ssl-03 {
  border: 1px solid var(--Green);
  color: var(--Green);
  margin-top: 40px;
}

/*======== type-head ==========================*/
.ssl-table .type-head th,
.sp .type-head {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  padding: 12px 20px;
  text-align: center;
}

.ssl-table .type-head .bg-blue,
.sp .ssl-01 .type-head {
  background: var(--Blue2);
}

.ssl-table .type-head .bg-red,
.sp .ssl-02 .type-head {
  background: var(--Red);
}

.ssl-table .type-head .bg-green,
.sp .ssl-03 .type-head {
  background: var(--Green);
}

.ssl-table .type-head th:not(:first-child) {
  width: calc((100% - 200px) / 3);
}

.ssl-table .type-head th:first-child {
  width: 200px;
}

@media screen and (max-width: 1360px) {
  .ssl-table .type-head th:not(:first-child) {
    width: calc((100% - 14.706vw) / 3);
  }
  .ssl-table .type-head th:first-child {
    width: 14.706vw;
  }
}
/*======== type ==========================*/
.ssl-table .type {
  text-align: center;
}

.ssl-table .type td span {
  display: block;
}

.ssl-table .type td span:not(:last-child) {
  color: var(--Black);
}

.ssl-table .type td span:first-child,
.sp .type h4 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 3px;
  color: var(--Black);
}

.sp .type h4 span {
  font-size: 1.4rem;
  font-weight: 400;
}

.sp .type {
  padding: 20px 10px;
}

.ssl-table .type td span:last-child {
  margin-top: 20px;
}

@media all and (max-width: 1052px) {
  .ssl-table .type td span:last-child br {
    display: none;
  }
}
.ssl-table .noborder {
  border-bottom: none;
}

.ssl-table th:not(.nobg) {
  background: var(--Gray2);
}

.ssl-table .level i {
  font-size: 2.4rem;
  color: var(--Yellow);
}

.ssl-table .level i.gray {
  color: var(--Gray3);
}

/*======== sp-table ==========================*/
.sp-table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
  border-top: 1px solid #ddd;
}

.sp-table th {
  width: 30%;
  color: var(--Black);
  text-align: left;
  font-weight: 400;
}

.sp-table td {
  width: 70%;
  border-right: none;
}

/* =======================================================
   sample
======================================================== */
.sample {
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
  transition: all 0.3s;
}

.sample__left,
.sample__right {
  width: 100%;
}

.sample__item {
  width: 100%;
  position: relative;
}

.sample__item img {
  width: 100%;
  border: 1px solid var(--Black);
}

.sample__item + .sample__item {
  margin-top: clamp(40px, 7.813vw, 100px);
}

/*************************/
@media screen and (min-width: 600px) {
  .sample__left,
  .sample__right {
    width: 48%;
  }
}
/*************************/
@media screen and (min-width: 690px) {
  .sample__left,
  .sample__right {
    width: 50%;
  }
  .sample::after {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 100%;
    background: var(--Black);
    left: 50%;
    transform: translateX(-50%);
    transform-origin: 50% 50%;
  }
  .sample__item img {
    width: clamp(290px, 28.125vw, 360px);
  }
}
/*************************/
@media screen and (min-width: 859px) {
  .sample::after {
    transform: translateX(-50%) rotate(10deg);
  }
}
/*************************/
/*======== sample__left ==========================*/
/*************************/
@media screen and (min-width: 690px) {
  .sample__left .sample__item::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 50%;
    height: 1px;
    background: var(--Black);
    z-index: -1;
  }
}
/*************************/
@media screen and (min-width: 859px) {
  .sample__left .sample__item.item01 {
    padding-left: clamp(100px, 14.063vw, 180px); /*1280*/
  }
  .sample__left .sample__item.item02 {
    padding-left: clamp(50px, 7.031vw, 90px); /*1280*/
  }
  .sample__left .sample__item::after {
    top: 50%;
    right: -6px;
  }
  .sample__left .sample__item.item01::after {
    right: clamp(-71px, -5.547vw, -58px);
  }
  .sample__left .sample__item.item03::after {
    right: clamp(41px, 4.609vw, 59px);
  }
}
/*************************/
/*======== sample__right ==========================*/
.sample__right .sample__item img {
  margin-left: auto;
}

/*************************/
@media screen and (min-width: 690px) {
  .sample__right {
    padding-top: 80px;
  }
  .sample__right .sample__item::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 50%;
    height: 1px;
    background: var(--Black);
    z-index: -1;
  }
}
/*************************/
@media screen and (min-width: 859px) {
  .sample__right .sample__item.item05 {
    padding-right: clamp(50px, 7.031vw, 90px); /*1280*/
  }
  .sample__right .sample__item.item06 {
    padding-right: clamp(100px, 14.063vw, 180px); /*1280*/
  }
  .sample__right .sample__item::before {
    left: -6px;
  }
  .sample__right .sample__item.item04::before {
    left: clamp(42px, 4.453vw, 57px);
  }
  .sample__right .sample__item.item06::before {
    left: clamp(-72px, -5.625vw, -57px);
  }
}
/*************************/
@media screen and (max-width: 599px) {
  .sample__right {
    margin-top: 40px;
  }
}
/*************************/
/* =======================================================
   technical
======================================================== */
.technical {
  display: flex;
  flex-wrap: wrap;
}

.technical .image-box {
  width: 40%;
}

.technical .text-box {
  width: 60%;
  padding-left: clamp(20px, 2.941vw, 40px);
}

.technical .text-box .text__item + .text__item {
  margin-top: clamp(20px, 5.215vw, 40px); /*767*/
  padding-top: clamp(20px, 5.215vw, 40px); /*767*/
  border-top: 1px dashed #ccc;
}

.technical .text-box .text__item p {
  margin-top: clamp(10px, 2.206vw, 30px);
}

/*************************/
@media screen and (max-width: 599px) {
  .technical .image-box, .technical .text-box {
    width: 100%;
  }
  .technical .image-box {
    margin-bottom: 30px;
  }
  .technical .text-box {
    padding-left: 0;
  }
}
/*************************/
/* =======================================================
   prc-box
======================================================== */
.prc-box {
  display: flex;
  justify-content: space-between;
  background: var(--Gray1);
  padding: clamp(20px, 5.147vw, 70px); /*1360*/
  overflow: hidden;
}

.prc-box__item {
  width: 14.7058823529%;
  max-width: 136px;
  position: relative;
  z-index: 1;
}

.furniture .prc-box__item {
  width: 17.8571428571%;
  max-width: 170px;
}

.prc-box__item:not(:last-child)::before {
  content: "";
  display: block;
  position: absolute;
  top: 34%;
  right: -50px;
  width: 50px;
  height: 1px;
  background: #ccc;
  z-index: 0;
}

.prc-box__item .number {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  font-family: var(--Barlow);
  font-size: 2.4rem;
  color: var(--Blue2);
  font-weight: 600;
  line-height: 1;
}

.prc-box__item .icon {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 100%, 0 26%);
  clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 100%, 0 26%);
  position: relative;
  height: 125px;
}

.prc-box__item .icon img {
  max-height: 42px;
  width: auto;
  max-width: 36px;
  -o-object-fit: contain;
  object-fit: contain;
}

/*======== text-box ==========================*/
.prc-box__item .text-box {
  text-align: center;
  margin-top: 15px;
  line-height: 1.4;
}

/*************************/
@media screen and (max-width: 991px) {
  .prc-box {
    flex-wrap: wrap;
  }
  .prc-box__item,
  .furniture .prc-box__item {
    width: 27.7777777778%;
    max-width: 100%;
  }
  .furniture.prc-box::after {
    content: "";
    display: block;
    width: 27.7777777778%;
  }
  .prc-box__item:not(:last-child)::before {
    right: -66px;
    width: 66px;
  }
  .prc-box__item:nth-child(n+4) {
    margin-top: 40px;
  }
}
/*************************/
@media screen and (max-width: 499px) {
  .prc-box__item,
  .furniture .prc-box__item {
    width: 100%;
    display: flex;
  }
  .prc-box__item:not(:last-child)::before {
    width: 1px;
    height: 40px;
    top: auto;
    left: 50px;
    bottom: -40px;
  }
  .prc-box__item:nth-child(n+2) {
    margin-top: 40px;
  }
  .prc-box__item .icon {
    width: 100px;
    height: 100px;
    flex-shrink: 1;
  }
  .prc-box__item .text-box {
    text-align: left;
    padding-left: 10px;
  }
}
/*************************/
/* =======================================================
   item-list
======================================================== */
.item-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.item-list dt {
  width: 100px;
  height: 40px;
  font-size: 1.8rem;
  background: var(--Black);
  color: #fff;
  text-align: center;
  padding: 5px 20px;
  position: relative;
}

.item-list dt::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: -20px;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid var(--Black);
  border-right: 0;
  transform: translateY(-50%);
}

.item-list dd {
  width: calc(100% - 100px);
  padding-left: 40px;
}

/*************************/
@media screen and (min-width: 769px) {
  .item-list dt:not(:first-of-type),
  .item-list dd:not(:first-of-type) {
    margin-top: 20px;
  }
}
/*************************/
@media screen and (max-width: 767px) {
  .item-list dt {
    width: 125px;
    height: 34px;
    font-size: 1.6rem;
    padding: 5px 10px;
  }
  .item-list dt::after {
    right: -17px;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 17px solid var(--Black);
  }
  .item-list dd {
    width: 100%;
    padding-left: 0;
    margin-top: 10px;
  }
  .item-list dd + dt {
    margin-top: 20px;
  }
}
/*************************/
/* =======================================================
   usage
======================================================== */
.usage {
  display: flex;
  justify-content: space-between;
}

.usage-item {
  width: calc(33.3333333333% - clamp(40px, 4.412vw, 60px));
  display: flex;
  flex-direction: column;
}

.usage-item .image-box {
  border: 1px solid var(--Gray2);
  margin-bottom: 20px;
  position: relative;
}

.usage-item:not(:last-child) .image-box::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: clamp(-50px, -3.676vw, -20px);
  transform: translateY(-50%);
  font-family: webfont;
  font-size: clamp(3rem, 2.941vw, 4rem);
  content: "\f105";
  color: var(--Gray3);
}

/*************************/
@media screen and (max-width: 991px) {
  .usage {
    flex-direction: column;
  }
  .usage-item {
    width: 100%;
    flex-direction: row;
  }
  .usage-item .image-box {
    width: 30%;
  }
  .usage-item .text-box {
    width: 70%;
    padding-left: 30px;
  }
  .usage-item:not(:last-child) .image-box::after {
    top: auto;
    bottom: -58px;
    transform: translateY(0) rotate(90deg);
    left: 50%;
    right: auto;
  }
  .usage-item + .usage-item {
    margin-top: 40px;
  }
}
/*************************/
@media screen and (max-width: 599px) {
  .usage-item {
    flex-direction: column;
    position: relative;
  }
  .usage-item .image-box,
  .usage-item .text-box {
    width: 100%;
  }
  .usage-item .text-box {
    padding-left: 0;
  }
  .usage-item:not(:last-child) .image-box::after {
    display: none;
  }
  .usage-item:not(:last-child)::after {
    content: "";
    position: absolute;
    display: block;
    top: auto;
    bottom: -58px;
    transform: translateY(0) rotate(90deg);
    left: 50%;
    right: auto;
    font-family: webfont;
    font-size: clamp(3rem, 2.941vw, 4rem);
    content: "\f105";
    color: var(--Gray3);
  }
  .usage-item + .usage-item {
    margin-top: 80px;
  }
}
/*************************/
/* =======================================================
   handling-box
======================================================== */
.handling-box__item {
  display: flex;
  align-items: center;
  position: relative;
}

.handling-box__item h3 {
  width: 23%;
  text-align: center;
  background: var(--Black);
  color: #fff;
  text-align: center;
  padding: clamp(10px, 1.953vw, 15px);
}

.handling-box__item ul {
  width: 77%;
  padding-left: 40px;
  display: flex;
  flex-wrap: wrap;
}

.handling-box__item ul li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--Blue2);
  border-radius: 3px;
  position: relative;
  top: -2px;
  margin-right: 5px;
}

.handling-box__item ul li {
  margin-right: 20px;
}

.handling-box__item + .handling-box__item {
  margin-top: 40px;
}

.handling-box__item:not(:first-child)::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 60px;
  top: -40px;
  left: 12%;
  background: var(--Gray3);
  z-index: -1;
}

/*************************/
@media screen and (max-width: 767px) {
  .handling-box__item {
    flex-direction: column;
    align-items: flex-start;
  }
  .handling-box__item h3 {
    width: 280px;
  }
  .handling-box__item ul {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
  .handling-box__item:not(:first-child)::after {
    display: none;
  }
}
/*************************/
@media screen and (max-width: 499px) {
  .handling-box__item h3 {
    width: 100%;
  }
}
/*************************/

/* =======================================================
   ol number
======================================================== */
ol.number {
  counter-reset: listnum;
}
ol.number li {
  padding-left: 3.4rem;
  text-indent: -1.7rem;
}
ol.number li::before {
  counter-increment: listnum;
  content: counter(listnum, decimal-leading-zero) ".";
  display: inline-block;
  margin-right: 1rem;
  
}
ol.number li + li {
  margin-top: 40px;
}


/* =======================================================
   box
======================================================== */
.bg-gray-box {
  background: var(--Gray1);
  margin: 40px 0;
  border: 1px solid #ccc;
}
.bg-gray-box h3 {
  background: var(--Black);
  display: inline-block;
  color: #fff;
  padding: 10px 40px;
}
.bg-gray-box p {
  padding: clamp(20px, 4.036vw, 40px); /*991*/
}

/* =======================================================
   manual
======================================================== */
.manual dt {
  font-size: 1.8rem;
  margin-bottom: 11px;
  border-bottom: 1px dashed var(--Black);
  display: inline-block;
}
.manual dd a {
  display: block;
}
.manual dd a::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background: var(--Black);
  margin-right: 10px;
  position: relative;
  top: -2px;
}
.manual dd a + a {
  margin-top: 8px;
}
.manual dd + dt {
  margin-top: 30px;
}

/* =======================================================
   news
======================================================== */
.news {
  display: flex;
  flex-direction: column;
  margin: 60px 0 120px;
}
a.news-item {
  display: flex;
  align-items: center;
  border-bottom: 1px dashed var(--Gray3);
  padding-bottom: clamp(30px,5.208vw,40px);
  color: var(--Black);
  cursor: pointer;
}
a.news-item:hover {
  color: var(--Blue2);
  border-bottom: 1px solid var(--Blue2)
}
a.news-item + a.news-item {
  margin-top: clamp(30px,5.208vw,40px);
}
/*************************/
@media screen and (max-width: 767px)
{
  a.news-item {
    flex-wrap: wrap;
  }
}
/*************************/

/*======== news-date ==========================*/
.news-date {
  width: 100%;
  display: flex;
  font-family: var(--Barlow);
  font-weight: 500;
  line-height: 1;
}
a.news-item:hover .news-date {
  border-right-color: var(--Blue2)
}
/*************************/
@media screen and (min-width: 769px)
{
  .news-date {
    width: clamp(120px,15.748vw,200px); /*1270*/
    border-right: 1px dotted var(--Gray3);
    flex-direction: column;
  }
  .news-date .year {
    font-size: 1.3rem;
    letter-spacing: 0.2rem;
    margin-bottom: 3px;
  }
  .news-date .date {
    font-size: 4rem;
  }
}
/*************************/
@media screen and (max-width: 767px)
{
  .news-date {
    margin-bottom: 10px;
    color: #999
  }
  .news-date .year::after {
    content: '.';
    display: inline-block;
  }
}
/*************************/


/*======== news-title ==========================*/
.news-title {
  width: calc(100% - 30px);
  flex-shrink: 2;
  font-size: 1.8rem;
}

.news-item i {
  width: 30px;
  text-align: right;
  font-size: 2rem;
}
/*************************/
@media screen and (min-width: 769px)
{
  .news-title {
    width: calc(100% - clamp(150px,23.622vw,300px));
    padding-left: clamp(30px,4.724vw,60px);
    font-size: 1.8rem;
  }
  .news-item i {
    width: clamp(50px,7.874vw,100px);
  }
}
/*************************/

/* =======================================================
   news-entry
======================================================== */
.news-entry__date {
  font-family: var(--Barlow);
  font-weight: 600;
  color: #999;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}
.news-entry__title {
  font-size: 2.8rem;
  font-weight: 500;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px dashed var(--Gray3);
}
.news-entry__body {
  font-size: 1.6rem;
  margin-bottom: 140px;
}

/*======== entry-image ==========================*/


.entry-image__greeting img {
  margin: 0 auto clamp(20px,6.25vw,80px);
  max-width: 460px;
}
/*************************/
@media screen and (min-width: 768px)
{
  .entry-image {
    display: flex;
    justify-content: space-between;
  }
  .entry-image__img {
    width: 36%;
  }
  .entry-image__text {
    width: 57%;
  }
  .entry-image__greeting p {
    text-align: center;
  }
}
/*************************/
@media screen and (max-width: 767px)
{
  .entry-image__img {
    margin-bottom: 40px;
  }
}
/*************************/


.entry-image__img,
.entry-image__greeting img {
  border: 1px solid #eee;
}


/*======== news-entry__pager ==========================*/
.news-entry__pager {
  display:block;
  position: relative;
  letter-spacing: 0.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.news-entry__pager .all {
  margin: 0 auto 20px;
  width: calc(100% - 130px);
}
.news-entry__pager .all a {
  background: var(--Black);
  color: #fff;
  text-align: center;
  display: block;
  padding: 20px;
  border: 1px solid;
}
.news-entry__pager .all a:hover {
  background: #fff;
  color: var(--Black);
}
  .news-entry__pager .prev,
  .news-entry__pager .next {
    margin: 0 12px;
  width: calc(50% - 25px);
  }
.news-entry__pager .prev a,
.news-entry__pager .next a {
  border: 1px solid var(--Black);
  display: block;
  text-align: center;
  color: var(--Black);
  padding: 20px;
  position: relative;
}
.news-entry__pager .next a {
  left: auto;
  right: 0;
}
.news-entry__pager .prev ::before,
.news-entry__pager .next a::after {
    position: absolute;
    display: block;
    top: 50%;
    font-family: webfont;
  content: "\f105";
    font-size: 1.4rem;
  transform: translateY(-50%);
}
.news-entry__pager .prev a::before {
    left: 10px;
    rotate: 180deg;
    transform-origin: top center;
    top: 54%;
}
.news-entry__pager .next a::after {
    right: 10px;
}

/*************************/
@media screen and (min-width: 769px)
{
  .news-entry__pager .all {
    margin: 0 auto;
    width: 280px;
  }
  .news-entry__pager .prev,
  .news-entry__pager .next {
    width: 200px;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  .news-entry__pager .next {
    left: auto;
    right: 0;
  }
}
/*************************/
@media screen and (max-width: 768px)
{
  .news-entry__pager .prev a,
  .news-entry__pager .next a {
    padding: 10px;
  }
}
/*************************/

/* =======================================================
   pagenavi
======================================================== */
.wp-pagenavi {
  margin: 40px auto;
  font-size: 1.6rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}
.wp-pagenavi a {
    color: #333;
}
.wp-pagenavi a:hover {
  color: var(--Blue2);
}
.wp-pagenavi span.current,
.wp-pagenavi a.page {
  margin: 0 10px;
  line-height: 2;
  padding: 0 12px;
  transition: .03s;
  display: block;
  border-bottom: 4px solid transparent;
}
.wp-pagenavi span.current {
  border-bottom: 4px solid var(--Blue2);
}
.wp-pagenavi a.page {
  background: none;
}
.wp-pagenavi a.page:hover {
  border-bottom: 4px solid var(--Blue2);
}
.wp-pagenavi .first,
.wp-pagenavi .extend {
  margin-right: 15px;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  /* display: none; */
  font-size: 2rem;
  position: relative;
  top: -2px;
  padding: 10px 20px;
}

/* =======================================================
   privacy
======================================================== */
.enactment {
  display: flex;
  justify-content: flex-end;
  margin-top: -20px;
}
.enactment dl {
  display: flex;
  flex-wrap: wrap;
  max-width: 250px;
}
.enactment dt {
  width: 130px;
}
.enactment dd {
  width: 118px;
}
.privacy p + .head05,
.privacy ol + .head05 {
  margin-top: clamp(30px,4.412vw,60px);
}
.privacy .head05 {
  margin-bottom: clamp(10px,1.471vw,20px); /*1360*/
  font-size: clamp(1.8rem,2.018vw,2rem); /*991*/
  border-bottom: 1px dashed;
  padding-bottom: 5px;
}

.privacy-list01 {
  margin: 10px 10px 10px 41px;
}
.privacy-list01,
.privacy-list01 li {
  list-style: decimal;
}
.privacy-list01 li + li {
  margin-top: 5px;
}

.privacy .head span {
  display: block;
  padding-left: 18px;
  margin: 10px 0 40px;
}
.privacy .head span + span {
  margin-top: -10px
}

.privacy ol + p {
  margin-top: 2rem;
}






/*2025.03.25　桑山追加*/

.news_imgflex{
display:flex;
justify-content: space-between;
flex-wrap: wrap;
width:100%;
margin-bottom: 15px;
}

@media screen and (max-width: 999px) {
.news_imgflex_item{
width:49%;
margin-bottom: 5px;
}}

@media screen and (max-width: 500px) {
.news_imgflex_item{
width:100%;
margin-bottom: 5px;
}}
@media screen and (min-width: 1000px) {
.news_imgflex_item{
width:33%;
}}

.news_imgflex_item img{
  width: 100%;
  height: auto;
  line-height: 0;
  margin: 0;
  padding: 0;
}

.newsitem_title{
font-weight:600;
font-size:1.2em;
margin-bottom: 15px;
}
.newsitem_bold{
font-weight:600;
}

.newsitem_lefttxt{
text-align:left !important;
}








/*251110追加分*/


.remote_bnr{
  display: inline-block;
  width: 100%;
  max-width: 500px;
  transition: .2s;
  margin-top: 25px;
}

.remote_bnr:hover{
opacity: .8;}

.remote_bnr img{
width: 100%;
height: auto;
}