@charset "UTF-8";

/*!
global > color
------------------------------
*/
img {
  image-rendering: -webkit-optimize-contrast;
}

a:link {
  color: #000;
  text-decoration: none;
}

/*!
global > content-width
------------------------------
*/
.pc-width {
  max-width: 97.6rem;
  margin-inline: auto;
}

.hero-wrapper {
  max-width: 74rem;
}

.text-wrapper {
  margin-left: 10%;
  max-width: 29rem;
}

/*!
global > font
------------------------------
*/
@font-face {
  font-family: "HiraKaku-w3";
  src: url(../font/HiraKakuProN-W3-AlphaNum-01.otf);
}

@font-face {
  font-family: "HiraKaku-w6";
  src: url(../font/HiraKakuProN-W6-AlphaNum-01.otf);
}

@font-face {
  font-family: "HiraMin-w3";
  src: url(../font/HiraMinProN-W3-AlphaNum-01.otf);
}

@font-face {
  font-family: "HiraMin-w6";
  src: url(../font/HiraMinProN-W6-AlphaNum-03.otf);
}

@font-face {
  font-family: "AvenirNextLTPro-Regular";
  src: url(../font/AvenirNextLTPro-Regular.otf);
}

html {
  font-size: 62.5%;
}

p {
  font-size: clamp(1.4rem, 3.5vw, 1.6rem);
  font-family: "HiraKaku-w3";
}

/*!
global > animation
------------------------------
*/
/**
 * ----------------------------------------
 * animation fade-in
 * ----------------------------------------
 */
.fadein1 {
  opacity: 0;
}

.fade-in1 {
  -webkit-animation: fade-in1 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in1 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes fade-in1 {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade-in1 {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadein2 {
  opacity: 0;
}

.fade-in2 {
  -webkit-animation: fade-in2 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in2 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation-delay: 0.2s;
}

@-webkit-keyframes fade-in2 {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade-in2 {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadein3 {
  opacity: 0;
}

.fade-in3 {
  -webkit-animation: fade-in3 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in3 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation-delay: 0.4s;
}

@-webkit-keyframes fade-in3 {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade-in3 {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadein4 {
  opacity: 0;
}

.fade-in4 {
  -webkit-animation: fade-in4 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in4 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation-delay: 0.8s;
}

@-webkit-keyframes fade-in4 {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade-in4 {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation fade-in-right
 * ----------------------------------------
 */
.fadeinright {
  opacity: 0;
}

.fade-in-right {
  -webkit-animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation-delay: 0.5s;
}

@-webkit-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation fade-in-left
 * ----------------------------------------
 */
.fadeinleft {
  opacity: 0;
  z-index: 1;
}

.fade-in-left {
  -webkit-animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation-delay: 0.5s;
}

@-webkit-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation tracking-in-expand
 * ----------------------------------------
 */
.trackingin {
  opacity: 0;
}

.tracking-in-expand {
  -webkit-animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) both;
  animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}

@-webkit-keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }

  40% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }

  40% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation text-focus-in
 * ----------------------------------------
 */
.textfocusin {
  opacity: 0;
}

.text-focus-in {
  -webkit-animation: text-focus-in 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
  animation: text-focus-in 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }

  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }

  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation fade-in-fwd
 * ----------------------------------------
 */
.fadeinfwd {
  opacity: 0;
}

.fade-in-fwd {
  -webkit-animation: fade-in-fwd 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-fwd 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes fade-in-fwd {
  0% {
    -webkit-transform: translateZ(-80px);
    transform: translateZ(-80px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

@keyframes fade-in-fwd {
  0% {
    -webkit-transform: translateZ(-80px);
    transform: translateZ(-80px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation fade-in-bottom
 * ----------------------------------------
 */
.fadeinbottom {
  opacity: 0;
}

.fade-in-bottom {
  -webkit-animation: fade-in-bottom 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-bottom 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation puff-in-center
 * ----------------------------------------
 */
.puffincenter {
  opacity: 0;
}

.puff-in-center {
  -webkit-animation: puff-in-center 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
  animation: puff-in-center 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}

@-webkit-keyframes puff-in-center {
  0% {
    -webkit-transform: scale(2);
    transform: scale(2);
    -webkit-filter: blur(4px);
    filter: blur(4px);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

@keyframes puff-in-center {
  0% {
    -webkit-transform: scale(2);
    transform: scale(2);
    -webkit-filter: blur(4px);
    filter: blur(4px);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation flip-in-ver-right
 * ----------------------------------------
 */
.flipinright {
  opacity: 0;
}

.flip-in-ver-right {
  -webkit-animation: flip-in-ver-right 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: flip-in-ver-right 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes flip-in-ver-right {
  0% {
    -webkit-transform: rotateY(-80deg);
    transform: rotateY(-80deg);
    opacity: 0;
  }

  100% {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
    opacity: 1;
  }
}

@keyframes flip-in-ver-right {
  0% {
    -webkit-transform: rotateY(-80deg);
    transform: rotateY(-80deg);
    opacity: 0;
  }

  100% {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
    opacity: 1;
  }
}

/*!
foundation > reset
------------------------------
*/
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  *font-size: 100%;
  border-radius: 0;
  border: none;
  appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

main {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  vertical-align: bottom;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

/*!
foundation > base
------------------------------
*/
.mt-0 {
  margin-top: 0rem !important;
}

.mt-10 {
  margin-top: 1rem !important;
}

.mt-20 {
  margin-top: 2rem !important;
}

.mt-30 {
  margin-top: 3rem !important;
}

.mt-40 {
  margin-top: 4rem !important;
}

.mt-50 {
  margin-top: 5rem !important;
}

.mt-60 {
  margin-top: 6rem !important;
}

.mt-70 {
  margin-top: 7rem !important;
}

.mt-80 {
  margin-top: 8rem !important;
}

.mt-160 {
  margin-top: 16rem !important;
}

.mt-360 {
  margin-top: 36rem !important;
}

.mb-0 {
  margin-bottom: 0rem !important;
}

.mb-10 {
  margin-bottom: 1rem !important;
}

.mb-20 {
  margin-bottom: 2rem !important;
}

.mb-30 {
  margin-bottom: 3rem !important;
}

.mb-40 {
  margin-bottom: 4rem !important;
}

.mb-50 {
  margin-bottom: 5rem !important;
}

.mb-60 {
  margin-bottom: 6rem !important;
}

.mb-70 {
  margin-bottom: 7rem !important;
}
.mb-110 {
  margin-bottom: 11rem !important;
}

.pt-0 {
  padding-top: 0rem !important;
}

.pt-10 {
  padding-top: 1rem !important;
}

.pt-20 {
  padding-top: 2rem !important;
}

.pt-30 {
  padding-top: 3rem !important;
}

.pt-40 {
  padding-top: 4rem !important;
}

.pt-50 {
  padding-top: 5rem !important;
}

.pt-60 {
  padding-top: 6rem !important;
}

.pt-70 {
  padding-top: 7rem !important;
}

.pb-0 {
  padding-bottom: 0rem !important;
}

.pb-10 {
  padding-bottom: 1rem !important;
}

.pb-20 {
  padding-bottom: 2rem !important;
}

.pb-30 {
  padding-bottom: 3rem !important;
}

.pb-40 {
  padding-bottom: 4rem !important;
}

.pb-50 {
  padding-bottom: 5rem !important;
}

.pb-60 {
  padding-bottom: 6rem !important;
}

.pb-70 {
  padding-bottom: 7rem !important;
}

body {
  line-height: 1.5;
}

/*!
component > component
------------------------------
*/
.title02 {
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(3rem, 3.5vw, 3.6rem);
  letter-spacing: 1rem;
  text-align: center;
}

.title03 {
  font-family: "HiraKaku-w6";
  text-align: center;
  letter-spacing: 0.5rem;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 4rem;
  color: #1f1f1f;
}

.n-mb-20 {
  margin-bottom: -2rem;
}

.point-button {
  max-width: 32rem;
  margin: 4rem auto 5.6rem auto;
}

.point-button a {
  position: relative;
  display: block;
  padding: 18px 12px;
  text-decoration: none;
  color: white;
  border: 1px solid #ffff;
  text-align: center;
  line-height: 1.5;
  transition: all 0.4s ease;
  font-size: 15px;
  letter-spacing: 1px;
}

.point-button a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 26px;
  height: 5px;
  margin-top: -3px;
  background: url(../img/icon-arrow.png) no-repeat center bottom;
  background-size: 100%;
  transition: all 0.4s ease;
}

.point-button a:hover:after {
  right: 5px;
}

.catalog-button {
  max-width: 35rem;
  margin: 4rem auto 5.6rem auto;
}

.catalog-button a {
  position: relative;
  display: block;
  padding: 18px 12px;
  text-decoration: none;
  color: black;
  border: 1px solid black;
  text-align: center;
  line-height: 1.5;
  transition: all 0.4s ease;
  font-size: 15px;
  letter-spacing: 1px;
}

.catalog-button a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 26px;
  height: 5px;
  margin-top: -3px;
  background: url(../img/icon-arrow-black.png) no-repeat center bottom;
  background-size: 100%;
  transition: all 0.4s ease;
}

.catalog-button a:hover:after {
  right: 5px;
}

.button-flex {
  display: flex;
  justify-content: space-around;
	width: 100%;
}

.feature-button {
  width: 46%;
/*  margin: 6rem 0;*/
}

.feature-button a {
  position: relative;
  display: block;
  padding: 1.8rem 6rem;
  text-decoration: none;
  color: black;
  border: 1px solid black;
  text-align: center;
  line-height: 1.5;
  transition: all 0.4s ease;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.feature-button a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 26px;
  height: 5px;
  margin-top: -3px;
  background: url(../img/icon-arrow-black.png) no-repeat center bottom;
  background-size: 100%;
  transition: all 0.4s ease;
}

.feature-button a:hover:after {
  right: 5px;
}

@media screen and (max-width: 768px) {
	.feature-button a {
	  padding: 2rem 6rem 2rem 2rem;
	  text-align: left;
	}
}

/*!
layout > container
------------------------------
*/
.l-container,
.l-container-s {
  width: 90%;
  margin: 0 auto;
}

.l-container-s {
  max-width: var(--width-content-s);
}

.l-container {
  max-width: var(--width-content);
}

/*!
layout > header
------------------------------
*/


/*!
layout > footer
------------------------------
*/
.footer {
  background-color: var(--color-primary-light);
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*!
page > top (common)
------------------------------
*/
.hero {
  margin-bottom: 7rem;
}

.hero__bg {
  position: relative;
}

.hero__bg__title-group {
  position: absolute;
  left: 16%;
}

.hero__bg__title-group__title {
  color: white;
  font-family: "HiraMin-w3";
  font-size: clamp(2.6rem, 3vw, 4rem);
  letter-spacing: 0.5rem;
  padding-top: 12%;
  text-align: right;
  line-height: 1;
}

.hero__bg__title-group__logo {
  max-width: 26rem;
  margin: 5% auto 5% 10%;
}

.hero__bg__title-group__text {
  color: white;
  font-size: clamp(1.6rem, 1.5vw, 2rem);
  text-align: center;
  border: solid 0.1rem white;
  padding: 1rem 2rem;
}

.hero__bg__title-group__text2 {
  max-width: 11rem;
  margin: 3.5rem auto 0 auto;
}

.hero__bg__title-group__text3 {
  color: white;
  font-family: "HiraKaku-w6";
  font-size: clamp(2rem, 2vw, 2.4rem);
  text-align: center;
  margin-top: 0.5rem;

}

.concept {
  background-color: #F5F5F5;
  padding: 6rem 0 6rem 0;
  margin-bottom: 5.6rem;
}

.concept__bg {
  background-color: black;
  margin: 6rem 0;
}

.concept__bg__text {
  text-align: center;
  line-height: 2;
  letter-spacing: 0.2em;
}

.concept__bg__img {
  position: relative;
}

.concept__bg__img__text1 {
  color: white;
  position: absolute;
  font-family: "HiraMin-w3";
  writing-mode: vertical-rl;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  right: 11rem;
  letter-spacing: 1rem;
  top: 5rem;
  border-right: solid 0.1rem;
  padding: 1rem 1rem 2rem;
  font-feature-settings: "pwid";
}

.concept__bg__img__text2 {
  color: white;
  position: absolute;
  font-family: "HiraMin-w3";
  writing-mode: vertical-rl;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  right: 16rem;
  letter-spacing: 1rem;
  top: 8rem;
  border-right: solid 0.1rem;
  padding: 1rem 1rem 2rem;
  font-feature-settings: "pwid";
}

.point {
  margin-bottom: 8rem;
}

.point__group {
  display: flex;
}

.point__group__banner1 {
  position: relative;
  overflow: hidden;
  flex: 1;
}

.point__group__banner1:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  background: url(../img/point-banner1.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.point__group__banner1:hover:after {
  opacity: 0.8;
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.point__group__banner1__text1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin: 11.8rem 0 1.6rem 0;
  font-weight: 600;
}

.point__group__banner1__text2 {
  font-size: 1.4rem;
}

.point__group__banner1 a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  text-decoration: none;
  color: #fff;
}

.point__group__banner2 {
  position: relative;
  overflow: hidden;
  flex: 1;
}

.point__group__banner2:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  background: url(../img/point-banner2.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.point__group__banner2:hover:after {
  opacity: 0.8;
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.point__group__banner2 a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  text-decoration: none;
  color: #fff;
}

.point__group__banner2__text1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin: 11.8rem 0 1.6rem 0;
}

.point__group__banner2__text2 {
  font-size: 1.4rem;
}

.point__group__banner3 {
  position: relative;
  overflow: hidden;
  flex: 1;
  background-color: #000;
}

.point__group__banner3:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  background: url(../img/point-banner3.png) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.point__group__banner3:hover:after {
  opacity: 0.8;
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.point__group__banner3 a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  text-decoration: none;
  color: #fff;
}

.point__group__banner3__text1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin: 11.8rem 0 1.6rem 0;
  font-weight: 600;
}

.point__group__banner3__text2 {
  font-size: 1.4rem;
}

.catalog__area {
  display: flex;
  /*gap: 10rem;*/
  justify-content: space-between;
}

.catalog__area a {
  width: 16.666%;
}

.catalog__area img {
  padding: 0 30px;
}

.catalog__area img:hover {
  opacity: 0.8;
}

.catalog__area__group__text {
  font-size: 1.4rem;
  text-align: center;
  width: calc(100% + 4rem);
  margin: 2rem -2rem 0 -2rem;
  text-decoration: underline;
  line-height: 1.5;
  font-weight: 600;
  color: black;
  overflow: hidden;
}
.catalog__area__group__text .small {
  font-size: 1.1rem;
  line-height: 1.4;
  color: black;
}

.sec_catalog .sec_slider_wrap .slick-list {
  padding: 0 80px;
}
.sec_catalog .sec_slider_wrap .slider_box {
  width: 188px;
}
.sec_catalog .sec_slider_wrap .slider_box .slider_thum {
  padding: 0 39px;
}
.sec_catalog .sec_slider_wrap .slider_box .slider_txtarea {
  padding: 20px 0 0;
}
.sec_catalog .sec_slider_wrap .slider_box a {
  text-decoration: underline;
  color: #333333;
  transition: all .1s ease;
}
.sec_catalog .sec_slider_wrap .slider_box a:hover {
  opacity: .7;
}
.sec_catalog .sec_slider_wrap .slider_box .slider_ttl {
  font-size: 14px;
  text-align: center;
}

@media only screen and (max-device-width: 1280px) and (max-width: 640px){
  .sec_catalog .sec_slider_wrap .slick-list {
    padding: 0;
  }
  .sec_catalog .sec_slider_wrap .slider_box{
    margin: 0 15px;
  }
  .sec_catalog .sec_slider_wrap .slider_box .slider_thum {
    padding: 0 10px;
  }
}
.sec_catalog .sec_slider_wrap .slider_box .slider_ttl .small {
  font-size: 1.1rem;
  line-height: 1.4;
  color: black;
}

/*!
page > feature
------------------------------
*/
.f-01text {
  padding: 1rem 0 2rem 0 !important;
}

.f-hero {
  padding: 0 10rem;
  position: relative;
  margin-bottom: 15rem;
}

.f-hero__logo {
  max-width: 27rem;
}

.f-hero__title {
  font-size: clamp(2.4rem, 2vw, 3.6rem);
  color: white;
}

.flex {
  display: flex;
  position: absolute;
  left: 13%;
  top: 30%;
  align-items: center;
  width: 100%;
  gap: 14%;
}

.contents__title {
  font-size: clamp(2.4rem, 2vw, 3rem);
  text-align: center;
  font-weight: 600;
  font-family: "HiraKaku-w6";
  padding: 5rem 0 2rem 0;
}

.contents__text {
  text-align: center;
  line-height: 2;
  margin-bottom: 2rem;
  letter-spacing: 0.2em;
}

.contents__text-sup {
  text-align: center;
  font-size: 1.4rem;
  margin-top: 5rem;
}

.contents__text-sup04 {
  font-size: 1.4rem;
}

.text-wrapper04 {
  max-width: 55rem;
  margin: 0 auto;
}

.feature-left-sp {
  image-rendering: -webkit-optimize-contrast;
}

.feature-left {
  background: linear-gradient(90deg, #f5f5f5 90%, #ffffff 90%);
  position: relative;
  padding-top: 3.2rem;
  padding-bottom: 7.2rem;
  margin-bottom: 16rem;
}

.feature-left__img-area {
  background-color: white;
}

.feature-left__img-area__group {
  display: flex;
  align-items: flex-end;
  padding: 5rem 8.5rem 0 8.5rem;
  border: 0.1rem solid #DCDCDC;
}

.feature-left__img-area__group__img img {
  image-rendering: -webkit-optimize-contrast;
}

.feature-left__img-area__group__img__text {
  text-align: center;
  padding: 1rem 0 2rem 0;
}

.l-sp {
  letter-spacing: 0.8rem;
}

.ball-left {
  background-color: black;
  border-radius: 50%;
  color: white;
  height: 18rem;
  width: 18rem;
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: -8rem;
  margin-left: 4rem;
  z-index: 1;
}

.ball-left__top {
  font-size: clamp(3.4rem, 5vw, 6rem);
  letter-spacing: 0.3rem;
  line-height: 0.6;
  font-family: "futura-pt", sans-serif;
  font-weight: 500;

}

.ball-left__top__bottom {
  font-weight: 500;
  letter-spacing: initial;
  line-height: 2;
  font-size: clamp(1.8rem, 5vw, 2rem);
}

.ball-left__top__sup {
  font-size: clamp(1.4rem, 5vw, 1.6rem);
  letter-spacing: 0.1rem;
}

.lh-05 {
  line-height: 0.5;
}

.ball-right {
  background-color: black;
  border-radius: 50%;
  color: white;
  height: 18rem;
  width: 18rem;
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
  top: -8rem;
  z-index: 1;
  position: relative;
  margin: -4rem 4rem -14rem auto;
}

.ball-right__top {
  font-size: clamp(3.4rem, 5vw, 6rem);
  letter-spacing: 0.3rem;
  line-height: 0.6;
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
}

.ball-right__top__bottom {
  font-weight: 500;
  letter-spacing: initial;
  line-height: 1;
  line-height: 2;
  font-size: clamp(1.8rem, 5vw, 2rem);
}

.middle {
  vertical-align: middle;
}

.feature-right {
  background: linear-gradient(90deg, #ffffff 10%, #f5f5f5 10%);
  position: relative;
  padding-top: 3.2rem;
  padding-bottom: 7.2rem;
  margin-bottom: 16rem;
  letter-spacing: 0.1em;
}

.feature-right__img-area__group {
  display: flex;
  align-items: flex-start;
  border: 0.1rem solid #DCDCDC;
}

.feature-right__img-area__group__img {
  position: relative;
}

.feature-right__img-area__group__img__text {
  color: #ffffff;
  background-color: black;
  display: inline-block;
  position: absolute;
  bottom: 0;
  padding: 1rem;
}

.feature-right__img-area__elbo {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  z-index: 1;
  position: relative;
  margin-top: -4rem;
  margin-right: 4rem;
}

.feature-right__img-area__elbo__text {
  text-align: end;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.feature-right__img-area__elbo__img {
  max-width: 10rem;
  margin-left: 2rem;
}

.feature-left03 {
  background: linear-gradient(90deg, #f5f5f5 90%, #ffffff 90%);
  position: relative;
  padding-top: 3.2rem;
  padding-bottom: 7.2rem;
  margin-bottom: 16rem;
}

.feature-left03__img-area {
  background-color: white;
}

.feature-left03__img-area__group {
  display: flex;
  padding: 10rem 8.5rem 0 8.5rem;
  justify-content: space-around;
  border: 0.1rem solid #DCDCDC;
}

.feature-left03__img-area__group__img {
  width: 40%;
}

.feature-left03__img-area__group__img__text {
  text-align: center;
  padding: 1rem 0 2rem 0;
}

.sample img {
  padding: 6rem 5rem 2rem 5rem;
  image-rendering: -webkit-optimize-contrast;
  background: white;
}

.feature-right04 {
  background: linear-gradient(90deg, #ffffff 10%, #f5f5f5 10%);
  padding-top: 3.2rem;
  padding-bottom: 7.2rem;
}

.feature-right04__img-area__group {
  border: 0.1rem solid #DCDCDC;
}

.feature-right04__img-area__group__img {
  position: relative;
}

.feature-right04__img-area__group__img img {
  image-rendering: -webkit-optimize-contrast;
}

.feature-right04__img-area__group__img__text {
  color: #ffffff;
  background-color: black;
  display: inline-block;
  position: absolute;
  bottom: 0;
  padding: 1rem;
}

.feature-right04__img-area__elbo {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  z-index: 1;
  position: relative;
  margin-top: -4rem;
  margin-right: 4rem;
}

.feature-right04__img-area__elbo__text {
  text-align: end;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.feature-right04__img-area__elbo__img {
  max-width: 10rem;
  margin-left: 2rem;
}

/*!
page > gallery
------------------------------
*/
.gallery-title01 {
  font-size: clamp(2rem, 3.5vw, 2.4rem);
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.1em;
  font-family: "HiraKaku-w6";
  padding: 0 2rem;
}

.g-hero {
  padding: 0 10rem;
  position: relative;
  margin-bottom: 7.2rem;
}

.g-hero__wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.g-hero__wrapper__logo {
  max-width: 20rem;
  margin: 0 auto;
}

.g-hero__wrapper__text {
  color: white;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 2rem;
}

.border-all {
  border: solid 1px #777777;
}

.border-three {
  border-right: solid 1px #777777;
  border-top: solid 1px #777777;
  border-bottom: solid 1px #777777;
}

.border-two {
  border-top: solid 1px #777777;
  border-bottom: solid 1px #777777;
}

.border-one {
  border-left: solid 1px #777777;
  border-top: solid 1px #777777;
  border-bottom: solid 1px #777777;
}

.line-up {
  max-width: 99rem;
  display: flex;
  margin: 2rem auto 7rem auto;
  box-shadow: 0px 12px 11px -14px #777777;
}

.line-up__button {
  width: 100%;
  background-color: black;
  text-align: center;
  padding-bottom: 1rem;
}

.line-up__button:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.line-up__button a {
  text-decoration: none;
}

.line-up__button__text {
  color: #ffffff;
  text-align: center;
  padding-top: 2rem;
  font-family: "HiraKaku-w6";
}

.line-up__button.custom .line-up__button__text {
  padding-top: 10px;
  line-height: 1.2;
}

.dli-chevron-down {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}

.gallery-left1 {
  background: linear-gradient(90deg, #f5f5f5 90%, #ffffff 90%);
  margin-bottom: 15rem;
}

.gallery-left1__img-group {
  position: relative;
}

.gallery-left1__img-group__title {
  text-align: center;
  font-family: "HiraKaku-w6";
  font-weight: 600;
  font-size: clamp(2rem, 3.5vw, 3rem);
  padding-top: 2rem;
  padding-bottom: 3rem;
  letter-spacing: 0.1em;
}

.gallery-left1__img-group__color {
  max-width: 22rem;
  position: absolute;
  top: 18rem;
  left: -5rem;
  box-shadow: 0px 2px 10px -4px #000000;
}

.gallery-left1__bottom {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.gallery-left1__bottom__img {
  flex: 1;
  margin-bottom: -4rem;
}

.gallery-left1__bottom__text-area {
  flex: 1;
}

.gallery-left1__bottom__text-area__text {
  letter-spacing: 0.2em;
  margin-bottom: 3rem;
  line-height: 2;
}

.gallery-left1__bottom__text-area__sup {
  font-size: 1.4rem;
  line-height: 2;
}

.gallery-left1__text {
  text-align: center;
  margin: 4.5rem auto 4.5rem auto;
  letter-spacing: 0.2em;
  line-height: 2;
}

.gallery-right1 {
  background: linear-gradient(90deg, #ffffff 10%, #f5f5f5 10%);
  margin-bottom: 15rem;
}

.gallery-right1__img-group {
  position: relative;
}

.gallery-right1__img-group__title {
  text-align: center;
  font-family: "HiraKaku-w6";
  font-weight: 600;
  font-size: clamp(2rem, 3.5vw, 3rem);
  padding-top: 2rem;
  padding-bottom: 3rem;
  letter-spacing: 0.1em;
}

.gallery-right1__img-group__color {
  max-width: 22rem;
  position: absolute;
  top: 18rem;
  right: -4rem;
  box-shadow: 0px 2px 10px -4px #000000;
}

.gallery-right1__bottom {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.gallery-right1__bottom__img {
  flex: 1;
  margin-bottom: -4rem;
}

.gallery-right1__bottom__text-area {
  flex: 1;
}

.gallery-right1__bottom__text-area__text {
  letter-spacing: 0.2em;
  margin-bottom: 3rem;
  line-height: 2;
}

.gallery-right1__bottom__text-area__sup {
  font-size: 1.4rem;
  line-height: 2;
}

.gallery-right1__text {
  text-align: center;
  margin: 4.5rem auto 4.5rem auto;
  letter-spacing: 0.2em;
  line-height: 2;
}

.tone {
  background-color: #F5F5F5;
  padding: 5rem 0;
}

.tone__title {
  font-family: "HiraMin-w3";
  text-align: center;
  font-size: clamp(3rem, 4vw, 4rem);
  font-weight: 600;
}

.tone__text {
  text-align: center;
  line-height: 2;
  letter-spacing: 0.2em;
  margin: 1.6rem 0 4rem 0;
}

.tone__text2 {
  font-weight: 600;
  font-size: clamp(2rem, 3.5vw, 2.4rem);
  text-align: center;
}

.tone__content {
  position: relative;
}

.tone__content__box {
  background-color: rgba(0, 0, 0, 0.8);
  width: 20rem;
  padding: 7.5rem 0;
  position: absolute;
  right: -4rem;
  top: 9rem;
}

.tone__content__box__title {
  text-align: center;
  color: white;
}

.tone__content__box__img {
  margin: 2rem 0;
  padding: 0 4rem;
}

.tone__content__sup {
  text-align: center;
}

.demo {
  padding-top: 10rem;
}

.demo__title {
  font-family: "HiraMin-w3";
  text-align: center;
  font-size: clamp(2rem, 3.5vw, 4rem);
  font-size: clamp(3rem, 4vw, 4rem);
  font-weight: 600;
}

.demo__text {
  text-align: center;
  line-height: 2;
  letter-spacing: 0.2em;
  margin: 1.6rem 0 4rem 0;
}

.demo__medium__text-group__recommend {
  font-weight: 600;
  margin: 1.6rem 0 0.8rem 0;
}

.demo__medium__text-group__sample__area {
  display: flex;
  gap: 2rem;
}

.demo__big {
  margin-bottom: 3rem;
}

.demo__big__recommend {
  font-weight: 600;
  margin: 1.4rem 0 0.8rem 0;
}

.demo__big__text-group {
  display: flex;
  gap: 1rem;
}

.demo__big__text {
  display: flex;
  align-items: center;
}

.demo-flex {
  display: flex;
  gap: 5rem;
}

.sample-flex {
  display: flex;
  gap: 1rem;
}

.sample-flex__text {
  display: flex;
  align-items: center;
}

.circle-black {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: black;
}

.circle-white {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #E4E4E1;
}

.circle-ivory {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #BEB098;
}

.circle-silver {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #7A7B78;
}

.circle-gray {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #57524E;
}


/* =================================================================================
追加0920
================================================================================= */

.link {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 100%;
  margin: 0;
  max-width: initial;
}

.link a {
  border: none;
}

.link a span {
  font-size: clamp(1.4rem, 3vw, 1.8rem);

}

.link-area {
  display: flex;
  max-width: 97.6rem;
  margin: 0 auto;
  gap: 1rem;
  font-family: "HiraKaku-w3";
}

.link-img {
  position: relative;
  cursor: pointer;
}

.link-img:hover {
  opacity: 0.8;
}

.link-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: white;
}

.bg-clack {
  background-color: #000;
}

.bg-white {
  background-color: white !important;
}


.concept table {
  border-spacing: 0;
  border-collapse: collapse;
  max-width: 66rem;
  margin: 0 auto;
  font-size: clamp(1.3rem, 7vw, 1.6rem);
  border-bottom: 1px solid #707070;
  border-right: 1px solid #707070;
  font-family: "HiraKaku-w3";

}

.concept table td {
  border-top: 1px solid #707070;
  border-left: 1px solid #707070;
  padding: 0.3rem 2rem;
}

.concept table th {
  padding: 5px 10px;
  background: #999999;
  color: #FFFFFF;
}

.concept table td {
  background: #CCCCCC;
  color: #000000;
}

.concept table tr:first-child {
  border-bottom: 1px solid #707070;
}

.concept table tr:first-child td {
  color: white;
  text-align: center;
  background-color: #999999;

}

.concept table tr:nth-child(2) td {
  color: white;
  text-align: center;
  background-color: #999999;


}

.tr td:nth-child(2),
.tr td:nth-child(3),
.tr td:nth-child(4),
.tr td:nth-child(5) {
  text-align: center;

}

.table-ttl {
  font-weight: 600;
  text-align: center;
  margin: 4rem 0 1.4rem 0;
  font-size: clamp(1.4rem, 5vw, 1.8rem);
  letter-spacing: 0.15em;
  font-family: "HiraKaku-w6";

}

.feature-sup {
  margin-top: 1rem;
  max-width: 67.7rem;
  margin: 0 auto;
}

.feature-img01 {
  margin: 4rem auto 0 auto;
  width: 80%;
}

.feature-mv {
  position: relative;
}

.feature-mv-ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}


.feature02-mid {
  max-width: 857px;
  margin: 0 auto;
  margin: 6rem auto 4rem auto;
}

.feature02-mid h3 {
  font-family: "HiraKaku-w6";
  font-size: clamp(2rem, 5vw, 2.4rem);
  border-bottom: solid 1px black;
  text-align: center;
  padding: 0 1rem 1rem 1rem;
}
.feature02-mid h3.feature02__h2 {
  margin: 0 0 10px;
  border: none;
  padding: 0;
  text-align: left;
  font-family: "HiraKaku-w6";
  font-size: clamp(1.6rem, 5vw, 2.0rem);
}


.feature02-mid p {
  text-align: center;
  margin: 2rem 0;
}

.feature02-mid-img {
  margin: 0 auto 30px;
}
.feature02-mid .table-wrapper {
  margin: 0 auto;
  width: 720px;
}
.feature02-mid .flex-table {
  display: flex;
  justify-content: space-between;
}
.feature02-mid .flex-table table {
  width: 350px;
  border: none;
}
.feature02-mid .flex-table table th {
  padding: 3px 0 0 10px;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
  background: #fff;
  font-size: clamp(1.3rem, 5vw, 1.4rem);
}
.feature02-mid .flex-table table td {
  padding: 3px 0 0 0;
  border: none;
  border-bottom: 1px solid #111;
  font-size: clamp(1.3rem, 5vw, 1.4rem);
}
.feature02-mid .flex-table table .border {
  border-right: 1px solid #111;
}
.feature02-mid .feature02-mid__p {
  margin: 10px 0 0;
  text-align: left;
  font-size: 14px;
}

.feature02-middle {
  max-width: 70rem;
  margin: 6rem auto 4rem auto;
}
.feature02-middle h3 {
  font-family: "HiraKaku-w6";
  font-size: clamp(2rem, 5vw, 2.4rem);
  border-bottom: solid 1px black;
  text-align: center;
  padding: 0 1rem 1rem 1rem;
}
.feature02-middle h3.feature02__h2 {
  text-align: left;
}
.feature02-middle p {
  text-align: center;
  margin: 2rem 0;
}
.feature02-middle-img {
  max-width: 33rem;
  max-width: 856px;
  margin: 0 auto;
}

.feature02-bottom {
  max-width: 857px;
  margin-left: auto;
  margin-right: auto;
}
.feature02-mid .catalog-button {
  margin-top: 0;
}
.feature02-mid .catalog-button .btn__inner {
}
.feature02-mid .catalog-button img {
  margin-bottom: -2px;
  width: 24px;
}
.feature02__mid .catalog-button img {
  margin-bottom: -2px;
  width: 24px;
}

.feature02-bottom-right {
  width: 77%;
}

.feature02-bottom-right-sup {
  font-size: 1.4rem;
}

/* ============
テーブル
============ */

.feature02-bottom-right table {
  border-spacing: 0;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: clamp(1.3rem, 7vw, 1.6rem);
  border-bottom: 1px solid #707070;
  border-right: 1px solid #707070;
  font-family: "HiraKaku-w3";
  text-align: center;


}

.feature02-bottom-right table td {
  border-top: 1px solid #707070;
  border-left: 1px solid #707070;
  padding: 0.2rem 0;
}

.feature02-bottom-right table th {
  padding: 5px 10px;
  background: #999999;
}

.feature02-bottom-right table td {
  color: #000000;
}

.feature02-bottom-right table tr:nth-child(1) td {

  width: 16rem;

}

.feature02-bottom-left p {
  margin-top: 1rem;
  font-size: 1.4rem;
}

.bg-gray {
  background-color: #E0E0E0;
}

.bg-light-gray {
  background-color: #f5f5f5;
}

@media screen and (max-width: 768px) {
  .feature02-bottom {
    flex-direction: column;

  }
}

.feature03-txt {
  text-align: center;
  margin-top: 1rem;
}

.feature05 {
  display: flex;
  /*gap: 1rem;*/
  justify-content: center;
}

.feature05-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
  max-width: 30rem;
  max-width: 33rem;
}
.feature05-right-img {
  margin-top: 10px;
  margin-bottom: 10px;
}


.feature05-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  max-width: 33rem;
  gap: 3rem;
}

.feature05-left-arrow {
  display: flex;
  align-items: center;
  max-width: 10rem;
}

.feature05-sup {
  font-size: 1.4rem;
}

.feature05-right-bottom {
  display: flex;
  gap: 3rem;
  align-items: flex-end;
}

.feature05-right-bottom-right {
  width: 50%;
}

.feature05-right-bottom-right-ttl {
  font-family: "HiraKaku-w6";
  font-size: 1.8rem;
  margin-bottom: 0.8rem;

}

.feature05 table {
  font-size: 1.6rem;
  text-align: center;
  width: 26rem;

}

.feature05 table {
  border-spacing: 0;
  border-collapse: collapse;
  height: 10rem;
}

.feature05 table th,
table td {
  border-top: 1px solid #707070;
  border-left: 1px solid #707070;
}

.feature05 table th {
  padding: 5px 20px;
  background: #E0E0E0;
  color: #000000;
  font-weight: normal;
}

.feature05 table td {
  background: #FFFFFF;
  color: #000000;

}

.feature05 table th:last-child,
table td:last-child {
  border-right: 1px solid #707070;
}

.feature05 table tr:last-child th,
table tr:last-child td {
  border-bottom: 1px solid #707070;
}

.system-ttl {
  font-size: clamp(1.8rem, 7vw, 2.2rem);
  font-family: "HiraKaku-w6";
  border-bottom: 1px solid black;
  display: inline-block;
  margin: 3.2rem 0 4.1rem 0;
  padding: 0 2rem 1rem 2rem;
}


.w-10 {
  width: 10rem;
}

.feature05-drainage {
  margin-top: 3rem;

}

.feature05-pc .feature05__01 {
  margin-bottom: 30px;
  max-width: 971px;
  margin-left: auto;
  margin-right: auto;
}

.feature05-pc .feature05__02 {
  margin-bottom: 30px;
  padding: 2rem 5rem;
  border: 1px solid #d9d9d9;
  max-width: 744px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
}
.feature05-pc .feature05__02 .title {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 7vw, 2rem);
  font-family: "HiraKaku-w3";
}
.feature05-pc .feature05__02--inner {
  margin: 20px 0 20px;
  display: flex;
  justify-content: space-between;
}
.feature05-pc .feature05__02--inner .first {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.feature05-pc .feature05__02--inner p {
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.feature05-pc .feature05__02--inner .fig-wrapper {
  display: flex;
  justify-content: space-between;
}
.feature05-pc .feature05__02 h4 {
  margin-bottom: 10px;
  padding: 5px 30px;
  color: #fff;
  background: #000;
  text-align: center;
  font-size: clamp(1.5rem, 7vw, 1.6rem);
  font-family: "HiraKaku-w3";
}
.feature05-pc .feature05__02 .second h4 {
  color: #000;
  background: #d9d9d9;
}
.feature05-pc .feature05__02 p.small {
  font-size: 1.3rem;
}
.feature05-pc .feature05__02 .fig {
  max-width: 130px;
}
.feature05-pc .feature05__02 .fig p {
  margin-top: 10px;
  text-align: center;
  font-size: 1.4rem;
}
.feature05__system--wrapper {
  margin: 40px 0 20px;
  padding: 20px 20px 30px;
  border: 1px solid #e6e6e6;
  background: #fff;
}
.feature05__system--wrapper .system-ttl {
  margin: 0 0 10px;
  padding: 0;
  border: none;
}
.feature05-system .addition {
  margin-top: 30px;
}

.td-center {
  vertical-align: middle;
}

.addition {
  margin: 7rem 0;
  background-color: white;
  padding: 2rem 6rem;
}
.addition .addition__inner {
  margin: 0 auto;
  max-width: 768px;
}

.addition .title03 {
  margin: 20px 0 10px;
  padding: 0;
  margin-top: 4rem;
  font-size: clamp(1.6rem, 7vw, 1.8rem);
  font-family: "HiraKaku-w6";
  letter-spacing: 0;
  text-align: left;
}

.addition-img-ttl {
  font-size: clamp(1.8rem, 7vw, 2.2rem);
  font-family: "HiraKaku-w6";
  border-bottom: 1px solid black;
  display: inline-block;
  margin: 3.2rem 0 4.1rem 0;
  padding: 0 2rem 1rem 2rem;
}

.ttl-center {
  text-align: center;
}


.addition-bottom {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
  margin-top: 4rem;
}

.addition-bottom-ttl {
  font-size: clamp(1.6rem, 7vw, 1.8rem);
  font-family: "HiraKaku-w6";
}

.addition-bottom-left p {
  font-size: 1.4rem;
}

.addition-bottom-right p {
  font-size: 1.4rem;
}

.element {
  width: 18rem;
}

/* ================
テーブル
================ */

.addition-bottom table {
  border-spacing: 0;
  border-collapse: collapse;
  font-size: 1.6rem;
  font-family: "HiraKaku-w3";

}

.addition-bottom table th,
table td {
  border-top: 1px solid #707070;
  border-left: 1px solid #707070;
}

.addition-bottom table th {
  background: #8E8E8F;
  color: #FFFFFF;
  font-weight: normal;
  text-align: center;
}

.addition-bottom table tr:nth-child(even) th {
  background: #62BBAB;
}

.addition-bottom table td {
  padding: 2px 5px;
  background: #FCFCFC;
  color: #000000;
}

.addition-bottom table th:last-child,
table td:last-child {
  border-right: 1px solid #707070;
}

.addition-bottom table tr:last-child th,
table tr:last-child td {
  border-bottom: 1px solid #707070;
}

.table-bottom {
  word-spacing: 183px;
  background-color: #E0E0E0 !important;
  border-top: solid 1px black !important;
  font-family: "HiraKaku-w6";
  width: 47rem;
}

.table-bottom span,
.table-bottom-total span{
  float: right;
}

.table-bottom-total {
  word-spacing: 202px;
  background-color: #5F5E5E !important;
  border-top: solid 1px black !important;
  font-family: "HiraKaku-w6";
  color: white !important;
  width: 47rem;


}

.quantity {
  width: 5rem;
}

.total {}

.end {
  text-align: end;
  padding-right: 2rem;
}

.border-rift {
  border-right: none !important;
}

.unit-price {
  width: 10rem;
}

.word-sp {
  word-spacing: 203px;
}

.table-wrapper {
  position: relative;
}

.balloon1-top {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  color: white;
  font-size: 16px;
  background: #DC000C;
  position: absolute;
  top: 16px;
  right: 0;

}

.balloon1-top:before {
  content: "";
  position: absolute;
  top: -20px;
  left: 73%;
  margin-left: -15px;
  border: 5px solid transparent;
  border-bottom: 15px solid #DC000C;
}

.balloon1-top p {
  margin: 0;
  padding: 0;
  font-family: "HiraKaku-w6";

}

.works-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3.6rem;
}

.works-list_1 p.right {
  display: table;
  margin: 30px 0 30px auto;
  padding: 3px 20px;
  background: #dbdbdb;
  font-size: 0.88em;
  font-weight: bold;
}

.works-img {
  position: relative;
  max-width: 30rem;
}

.wroks-img__inner {
  position: relative;
}


.works-img a:hover {
  opacity: 0.8;
}

.works-new {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #D60000;
  color: white;
  padding: 0 0.8rem;
}
.works-reform {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 0 0.8rem;
}

.works-list-txt {
  margin-top: 1rem;
  color: inherit;
}

.works-list_1-img-2 {
  max-width: 80rem;
  margin: 2rem auto;
}

.hero-sub {
  font-size: clamp(1.6rem, 1.5vw, 2rem);
  font-family: "HiraKaku-w3";

}

/*!
responsive > responsive
------------------------------
*/
@media screen and (max-width: 1360px) {
  .hero__bg__title-group__title {
    padding-top: 3%;
    font-size: clamp(2.6rem, 2vw, 4rem);
  }

  .hero__bg__title-group__logo {
    margin: 5% auto;
    max-width: 20rem;
  }

  .hero__bg__title-group__text2 {
    font-size: clamp(2.8rem, 4vw, 4rem);
  }
}

@media screen and (max-width: 1024px) {
  .pc-width {
    padding: 0 2rem;
  }

  .catalog__area {
    flex-wrap: wrap;
    justify-content: center;
  }

  .feature-left {
    background: #F5F5F5;
  }

  .feature-left__img-area__group {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .feature-left__img-area__group__img {
    max-width: 18rem;
  }

  .feature-right {
    background: #F5F5F5;
  }

  .feature-left03 {
    background: #F5F5F5;
  }

  .feature-img-tab {
    max-width: 18rem;
  }

  .feature-right04 {
    background: #F5F5F5;
  }

  .gallery-left1 {
    background: #F5F5F5;
  }

  .gallery-left1__img-group__color {
    left: 0rem;
  }

  .gallery-right1 {
    background: #F5F5F5;
  }

  .gallery-right1__img-group__color {
    right: 0rem;
  }

  .tone__content__box {
    right: 0;
  }

  .works-list {
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .f-hero {
    padding: 0;
  }

  .hero-wrapper {
    margin: 0 auto;
    padding: 0 2rem;
  }

  .text-wrapper {
    margin: 0 auto;
  }

  .ball-left__top {
    line-height: 0.8;
  }

  .ball-left {
    height: 15rem;
    width: 15rem;
  }

  .ball-right {
    height: 15rem;
    width: 15rem;
  }

  .hero__bg__title-group {
    position: initial;
    background-color: black;
  }

  .hero__bg__title-group__logo {
    margin: 3rem auto;
  }

  .hero__bg__title-group__title {
    text-align: center;
  }

  .point__group {
    flex-direction: column;
  }

  .title02 {
    padding: 0 2rem;
  }

  .title03 {
    padding: 0 2rem;
  }

  .concept__bg__img__text1 {
    position: initial;
    text-align: center;
    writing-mode: initial;
    padding: 3rem 1rem 1rem;
    max-width: 20rem;
    margin: auto;
    border-right: none;
    border-bottom: solid 1px white;
  }

  .concept__bg__img__text2 {
    position: initial;
    text-align: center;
    writing-mode: initial;
    padding: 2rem 1rem 1rem;
    max-width: 22rem;
    margin: auto;
    border-right: none;
    border-bottom: solid 1px white;
  }

  .concept__bg__img__sp {
    max-width: 30rem;
    margin: 0 auto;
    display: block;
    padding: 0 2rem;
  }

  .catalog__area {
    gap: 3rem;
  }

  .feature05-right {
    max-width: 100%;
  }

  .feature-right__img-area__group {
    flex-direction: column;
  }

  .feature-left03__img-area__group {
    align-items: center;
    flex-direction: column;
  }

  .feature-left03__img-area__group__img {
    width: 80%;
  }

  .feature-img-tab {
    max-width: 19rem;
  }

  .feature05-left-arrow {
    justify-content: center;
    max-width: 100%;
  }

  .feature05-right-img {
    padding: 0 1rem;
  }

  .button-flex {
    flex-direction: column;
    align-items: center;
  }

  .feature-button {
    width: 100%;
/*    margin: 3rem 0;*/
	  margin: 0;
  }
  .feature-button + .feature-button {
	  margin-top: 2rem;
	}

	.g-hero {
    padding: 0;
  }

  .line-up {
    flex-direction: column;
    gap: 1rem;
    box-shadow: none;
  }

  .line-up__button {
    width: 70%;
    margin: 0 auto;
    box-shadow: 0px 12px 11px -14px #777777;
  }

  .line-up__button__text {
    padding-top: 1rem;
  }

  .demo-flex {
    flex-direction: column;
  }

  .gallery-left1__img-group__color {
    max-width: 15rem;
  }

  .gallery-right1__img-group__color {
    max-width: 15rem;
  }

  .feature05 {
    flex-direction: column;
  }
  .feature05 .title03 {
    margin: 20px 0 0;
    padding: 0;
    text-align: left;
    font-size: 1.6rem;
    letter-spacing: 0;
  }

  .feature05-left {
    gap: 3rem;
    max-width: 100%;
  }

  .feature05 table {
    width: 100%;
  }

  .table-wrapper {
    width: 100%;
  }

	.balloon1-top {
	   margin: 0.3em 0;
	 }


	.addition-bottom {
    flex-direction: column;
    align-items: center;
  }

  .works-img {
    width: 46%;
    margin-top: 2rem;
  }

  .works-list {
    gap: 0;
    justify-content: space-between;
  }
}

@media screen and (min-width: 426px) {
  .ps-br {
    display: block;
    /* PCを改行して */
  }

  .sp-br {
    display: none;
    /* SPの改行を隠す */
  }
}

@media screen and (max-width: 425px) {
  .ps-br {
    display: none;
    /* PCの改行を隠して */
  }

  .sp-br {
    display: block;
    /* SPを改行する */
  }

  .feature-img-tab {
    max-width: 20rem !important;
  }

  .feature-left__img-area__group {
    padding: 5rem 0;
  }

  .feature-left__img-area__group__img {
    max-width: 15rem;
  }

  .feature-left03__img-area__group {
    padding: 10rem 0;
  }

  .feature-right__img-area__elbo {
    margin-right: 0;
    margin-top: 0;
  }

  .ball-left {
    height: 13rem;
    width: 13rem;
  }

  .ball-right {
    height: 13rem;
    width: 13rem;
    margin: -4rem 4rem -10rem auto;
  }

  .gallery-left1 {
    padding-bottom: 5rem;
  }

  .gallery-left1__img-group__color {
    max-width: 10rem;
  }

  .gallery-left1__bottom {
    flex-direction: column;
  }

  .gallery-left1__bottom__text-area {
    text-align: center;
  }

  .gallery-left1__bottom__img {
    margin-bottom: 0;
  }

  .gallery-right1 {
    padding-bottom: 5rem;
  }

  .gallery-right1__img-group__color {
    max-width: 10rem;
  }

  .gallery-right1__bottom {
    flex-direction: column;
  }

  .gallery-right1__bottom__text-area {
    text-align: center;
  }

  .gallery-right1__bottom__img {
    margin-bottom: 0;
  }

  .tone__content__box {
    top: 0rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 5rem;
    left: 0;
    padding: 0;
  }

  .tone__content__box__img {
    padding: 0;
  }

  .feature02-mid h3 {
    padding:  0 2rem 1rem;
    text-align: left;
  }
  .feature02-mid p {
    padding: 0 2rem 1rem;
  }
  .feature02-mid .feature02-mid-img {
    padding: 0 2rem 1rem;
  }
  .feature02-mid h3.feature02__h2 {
    margin-bottom: 0;
    padding:  0 2rem 1rem;
    font-size: 17px;
    letter-spacing: 0;
    line-height: 1.4;
  }
  .feature02-mid .catalog-button {
    margin: 2rem 2rem 5.6rem;
  }
  .feature02-mid .table-wrapper {
    width: auto;
  }
  .feature02-mid .flex-table {
    margin: 0 2rem;
    flex-direction: column;
  }
  .feature02-mid .flex-table table {
    width: auto;
  }
  .feature02-mid .flex-table table {
    margin-bottom: 20px;
  }
  .feature02-mid .table-wrapper .feature02-mid__p {
    margin-top: 0;
    margin-bottom: -4rem;
  }
  .ball-right__top__bottom,
  .ball-left__top__sup {
    font-size: 0.8rem;
    position: relative;
    top: -5px;
  }
  .feature-left03 .contents__text {
    text-align: left;
    line-height: 1.7;
  }
  .feature05-left-arrow {
    margin-bottom: 20px;
  }
  .feature05-system {

  }
  .feature05__system--wrapper p {
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-family: "HiraKaku-w3";
  }
  .feature05__system--wrapper p.small {
    margin: 0;
  }
  .feature05__system--wrapper h4 {
    margin: 0 0 20px;
    padding: 5px;
    color: #fff;
    background: #000;
    font-size: 1.6rem;
    font-family: "HiraKaku-w3";
    text-align: center;
  }
  .feature05__system--wrapper .second h4 {
    color: #000;
    background: #d9d9d9;
  } 
  .feature05__system--wrapper .fig p {
    margin-top: 10px;
    text-align: center;
  }
  .feature05__system--wrapper .first {
    margin: 0 0 30px;
  }
  .feature05__system--wrapper .first .fig {
    margin: 0 auto;
    max-width: 120px;
  }
  .feature05__system--wrapper .second .fig p {
    font-size: 1.3rem;
  }
  .feature05__system--wrapper .fig-wrapper {
    display: flex;
    justify-content: space-between;
  }
  .feature05__system--wrapper .fig-wrapper .fig {
    width: 80px;
  }

  .feature05-right-bottom {
    flex-direction: column;
  }

  .feature05-right-bottom-right {
    width: 100%;
  }

  .balloon1-top {
    top: 35px;
  }

}

@media screen and (max-width: 375px) {
  .point-button {
    margin: 4rem 2rem 5.6rem 2rem;
  }

  .point__group__banner1__text2 {
    padding: 0 2rem;
  }

  .feature-left__img-area__group {
    justify-content: center;
  }

  .link {
    margin: 0 !important;
  }

}

@media screen and (max-width: 500px) {
  .sp-hidden {
    display: none;
  }

}

@media screen and (min-width: 501px) {
  .pc-hidden {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .link-area {
    flex-direction: column;
    padding: 0 5rem;
  }

  .addition {
    padding: 2rem 2rem;
  }
}



/*------ anchor -----*/
.anchor {
	margin-top: -125px !important;
	padding-top: 125px !important;
}
@media screen and (max-width: 425px) {
	.anchor {
		margin-top: calc(-100px - 3rem) !important;
		padding-top: calc(100px - 3rem) !important;
	}
}





ul#mixContainer {
	display: flex;
	flex-wrap: wrap;
	gap: 3.6rem;
}
ul#mixContainer > li {
	position: relative;
	max-width: 30rem;
}
ul#mixContainer > li .fig {
	position: relative;
}
ul#mixContainer > li p {
	margin-top: 1rem;
	color: inherit;
	font-size: clamp(1.4rem, 3.5vw, 1.6rem);
	font-family: "HiraKaku-w3";
}
ul#mixContainer > li .works-reform {
	margin: 0;
	color: white;
	font-size: clamp(1.4rem, 3.5vw, 1.6rem);
	font-family: "HiraKaku-w3";
}
ul#mixContainer > li .works-new {
	margin: 0;
	color: white;
	font-size: clamp(1.4rem, 3.5vw, 1.6rem);
	font-family: "HiraKaku-w3";
}
.works-list .tab-nav {
	width: 100%;
}
.works-list .tab-nav ul {
	margin: 30px 0;
	display: flex;
	justify-content: center;
}
.works-list .tab-nav li {
	margin: 0 20px;
	font-size: 1em;
	padding: 0 5px 10px;
	transition: all 500ms;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 7px;
}
.works-list .tab-nav li img {
	width: 5px;
	height: 12px;
}
.works-list .tab-nav li.mixitup-control-active {
	border-bottom: 2px solid #000;
}
.works-list .tab-nav li.mixitup-control-active img {
	display: none;
}
.works-list .tab-nav li:hover {
	border-color: #999;
}
.works-list .page-nav {
	display: flex;
	justify-content: center;
	width: 100%;
}
.works-list .page-nav ul {

}
.works-list .page-nav a,
.works-list .page-nav button {
	margin: 0 10px;
	padding: 0;
	border: none;
	font-weight: normal;
	font-size: 1em;
	text-decoration: none;
}
.works-list .page-nav a,
.works-list .page-nav button {
	padding: 10px 13px;
	text-decoration: none;
	cursor: pointer;
}
.works-list .page-nav .jp-current,
.works-list .page-nav .mixitup-control-active {
	padding:  10px 13px;
	background: #eee;
	border: 1px solid #bfbfbf;
}
.works-list .page-nav a.jp-previous,
.works-list .page-nav .mixitup-control-prev {
	margin: 0 10px;
	text-indent: -99999px;
	width: 7px;
	height: 37px;
	background: url('../img/arw2.png') no-repeat 50% 50%;
	background-size: 7px auto;
	display: inline-block;
}

.works-list .page-nav a.jp-next,
.works-list .page-nav .mixitup-control-next {
	margin: 0 10px;
	text-indent: -99999px;
	width: 7px;
	height: 37px;
	background: url('../img/arw1.png') no-repeat 50% 50%;
	background-size: 7px auto;
	display: inline-block;
}
.works-list .page-nav a.jp-disabled,
.works-list .page-nav a.mixitup-control-disabled {
	visibility: hidden;
}
.works-list .link-area {
	margin-top: 60px;
}

@media screen and (max-width: 768px) {
	ul#mixContainer {
		gap: 0;
		justify-content: space-between;
	}
	ul#mixContainer > li {
		width: 46%;
		margin-top: 2rem;
	}
	.works-list .tab-nav ul {
		margin: 20px 0 0;
		flex-wrap: wrap;
		font-size: 10px;
		/*justify-content: flex-start;*/
		width: 300px;
		margin-left: auto;
		margin-right: auto;
	}
	.works-list .tab-nav li {
		margin: 0 0 5px;
		padding-bottom: 5px;

	}
}