@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}
/* Safariのデフォルトボタンスタイルを無効化 */
input:is([type="button"], [type="submit"], [type="reset"]),
input[type="file"]::file-selector-button,
button {
  border: none;
  box-sizing: border-box;
}
input[type="submit"] {
  color: #231815 !important;
}
button {
  text-align: center;
  color: #231815;
}

/* @font-face {
  font-family: "kosugi2";
  font-style: normal;
  font-weight: 400;
  src: url("../font/Kosugi-Regular.ttf") format("truetype");
  font-display: swap;
} */
html {
  font-size: 62.5%;
}

body {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  line-height: 2;
  margin: 0 auto;
  color: #231815;
  font-family: "Kosugi", sans-serif;
  line-height: var(--line-height);
  -webkit-font-smoothing: antialiased;
  font-weight: normal;
}
body a {
  text-decoration: none;
  color: #231815;
}
body img {
  width: 100%;
  height: auto;
}
body li {
  list-style: none;
}

:root {
  --line-height: clamp(24px, 3vw, 30px);
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.red {
  color: red;
}

button {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
}

[id] {
  scroll-margin-top: 150px !important;
}

.bg {
  background-color: #fff;
}

header {
  border-bottom: 1px solid #9fa0a0;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  justify-content: space-between;
  position: fixed;
  top: 0;
  width: 100%;
  margin: 0 auto;
  gap: 1rem;
  background-color: #fff;
  z-index: 3;
  padding: 1rem 5%;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  header {
    padding: 2rem 5%;
  }
}
header h1 {
  max-width: 30rem;
  width: 35%;
}
header .head-right, header .icon {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (min-width: 1400px) {
  header .head-right {
    justify-content: end;
    width: 100%;
  }
}
@media screen and (min-width: 1400px) {
  header .icon {
    order: 3;
    gap: 2rem;
  }
}
header .icon1, header .icon2, header .icon3 {
  max-width: 5rem;
  display: block;
  margin-bottom: -1rem;
}
@media screen and (min-width: 1500px) {
  header .icon1, header .icon2, header .icon3 {
    max-width: 7.5rem;
  }
}

.nav-menu {
  position: relative;
  background-color: #8b4513;
  padding: 5px;
  transition: all 0.7s;
}
@media screen and (min-width: 768px) {
  .nav-menu {
    padding: 10px;
  }
}
@media screen and (min-width: 1400px) {
  .nav-menu {
    background-color: #fff;
    padding: 0;
    margin: 0 auto;
  }
}
.nav-menu.open {
  right: 0;
  width: 100%;
  height: 100%;
  overflow: scroll;
  position: fixed;
  top: 0;
  z-index: 10;
  background-color: #f5f5f5;
  padding: 0;
}

.hamburger-menu {
  cursor: pointer;
  display: none;
  position: relative;
  width: 25px;
  height: 20px;
  transition: all 0.7s;
  margin: 0 0 0 auto;
}
.hamburger-menu .bar {
  width: 100%;
  height: 2px;
  background-color: #fff;
  margin: 4px 0;
  transition: all 0.7s;
}
.hamburger-menu.open {
  right: 5%;
  top: 2rem;
}
.hamburger-menu.open .bar {
  background-color: #8b4513;
}
.hamburger-menu.open .bar:nth-child(1) {
  transform: rotate(45deg);
  position: absolute;
  top: 9px;
}
.hamburger-menu.open .bar:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.open .bar:nth-child(3) {
  transform: rotate(-45deg);
  position: absolute;
  top: 9px;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
@media screen and (min-width: 1400px) {
  .menu-list {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
  }
  .menu-list li .dropdown li a {
    font-size: 11px !important;
  }
}
.menu-list > li {
  border-bottom: 1px solid #231815;
}
@media screen and (min-width: 1400px) {
  .menu-list > li {
    border-bottom: none;
  }
}
.menu-list > li > a {
  display: flex;
  justify-content: space-between;
}
.menu-list li {
  padding: 2rem 0;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 1400px) {
  .menu-list li {
    padding: 0 1rem;
    text-align: left;
  }
  .menu-list li:hover .dropdown {
    display: block;
  }
  .menu-list li .toggle-btn {
    display: none;
  }
}
@media screen and (min-width: 2050px) {
  .menu-list li {
    padding: 1rem 2rem;
  }
}
.menu-list li .toggle-btn {
  margin-left: 10px;
  cursor: pointer;
}
.menu-list li .dropdown, .menu-list li .has-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.menu-list li .dropdown li, .menu-list li .has-submenu li {
  padding: 2rem 1rem;
  margin: 0 auto;
}
@media screen and (min-width: 1400px) {
  .menu-list li .dropdown li, .menu-list li .has-submenu li {
    width: 40rem;
    background-color: #fff;
    padding: 2rem;
  }
}
.menu-list li .dropdown li::after, .menu-list li .has-submenu li::after {
  content: ">";
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
}
@media screen and (min-width: 1400px) {
  .menu-list li .dropdown li::after, .menu-list li .has-submenu li::after {
    right: 10%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
  }
}
.menu-list li .dropdown li a, .menu-list li .has-submenu li a {
  text-decoration: none;
  color: #231815;
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 14px;
  text-align: left;
}
.menu-list li .dropdown li a img, .menu-list li .has-submenu li a img {
  width: 6rem;
  height: 6rem;
}
.menu-list li .dropdown li a:hover, .menu-list li .has-submenu li a:hover {
  opacity: 0.7;
  transition: 0.3s;
}

@media screen and (max-width: 1399px) {
  .nav-menu.open .menu-list {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 20%;
    left: 50%;
    width: 80%;
    max-width: 50rem;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
  }
  .menu-list {
    flex-direction: column;
    display: none;
    width: 100%;
  }
  .menu-list > li {
    width: 100%;
  }
  .menu-list > li .dropdown {
    position: relative;
    top: 5px;
    left: 0;
  }
  .hamburger-menu {
    display: block;
  }
  .nav-menu.open .menu-list {
    display: flex;
    flex-direction: column;
  }
}
.sub-item {
  position: relative;
}
@media screen and (max-width: 1399px) {
  .sub-item::after {
    display: none;
  }
}

.sub-submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  width: 30rem;
  border-radius: 8px;
  z-index: 1001;
}
@media screen and (max-width: 1399px) {
  .sub-submenu {
    position: relative;
    left: 0;
    top: 10px;
    width: 100%;
    margin-top: 1rem;
  }
}
.sub-submenu li {
  padding: 0;
}
.sub-submenu li:last-child {
  border-bottom: none;
}
.sub-submenu li a {
  font-size: 1.4rem;
  gap: 1rem;
}
.sub-submenu li a img {
  width: 4rem;
  height: 4rem;
}

.sub-toggle-btn {
  margin: 0 0 0 auto;
}
@media screen and (min-width: 1400px) {
  .sub-toggle-btn {
    display: none;
  }
}

.mainvisual {
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.mainvisual .slick-img {
  font-family: "Zen Old Mincho", serif;
}
.mainvisual .slick-img .logo {
  top: 7%;
  left: 5%;
  transform: translate(0%, 0%);
  -webkit-transform: translate(0%, 0%);
  -ms-transform: translate(0%, 0%);
  width: clamp(15rem, 20vw, 20rem);
  position: absolute;
}
@media screen and (min-width: 1400px) {
  .mainvisual .slick-img .logo {
    width: 25rem;
  }
}
.mainvisual .slick-img .center {
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: #fff;
  font-weight: bold;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  line-height: 2;
  border-top: solid 1px #fff;
  border-bottom: solid 1px #fff;
  padding: 20px 40px;
}
.mainvisual .slick-img .center:before, .mainvisual .slick-img .center:after {
  content: "";
  position: absolute;
  top: -20px;
  width: 1px;
  height: calc(100% + 40px);
  background-color: #fff;
}
.mainvisual .slick-img .center:before {
  left: 20px;
}
.mainvisual .slick-img .center:after {
  right: 20px;
}
@media screen and (min-width: 768px) {
  .mainvisual .slick-img .center br {
    display: none;
  }
}
.mainvisual .slick-img .center p {
  text-shadow: 1px 1px 4px #212121;
  min-width: -moz-max-content;
  min-width: max-content;
}
.mainvisual .slick-img .center .ga {
  margin: 20px auto;
  max-width: clamp(200px, 30vw, 300px);
}
.mainvisual .slick-img .pet-interior, .mainvisual .slick-img .interior-item {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 90%;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
}
.mainvisual .slick-img .pet-interior {
  top: 35%;
  padding: 0.5em 1em;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  color: #fff;
  text-shadow: 1px 1px 4px #212121;
}
.mainvisual .slick-img .pet-interior p:nth-child(2) {
  margin: 10px auto 20px auto;
  font-size: clamp(3.2rem, 5vw, 4.6rem);
  line-height: 1.5;
}
.mainvisual .slick-img .pet-interior p:nth-child(3) {
  line-height: 2;
  font-size: clamp(2rem, 3vw, 2.4rem);
}
.mainvisual .pet-interior-img .logo {
  top: 4% !important;
}
.mainvisual a.pet-interior-img picture > img {
  object-position: top;
}
@media screen and (min-width: 1100px) {
  .mainvisual .slick-img .pet-interior {
    top: 17rem;
    left: 5%;
    transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    text-align: left;
    padding: 0;
  }
}
@media screen and (min-width: 1400px) {
  .mainvisual .slick-img .pet-interior {
    top: 20rem;
  }
}
.mainvisual .slick-img .interior-item {
  color: #7a6a56;
  top: 50%;
  padding: 35px 30px 40px 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 0px 0px 10px rgba(255, 255, 255, 0.9);
  border: dashed 1px #7a6a56;
  font-size: clamp(3rem, 4vw, 6rem);
  line-height: 1;
}
@media screen and (min-width: 1200px) {
  .mainvisual .slick-img .interior-item {
    padding: 40px 120px 45px 120px;
  }
}
.mainvisual .slick-img .interior-item p:nth-child(1) {
  font-size: clamp(2rem, 3vw, 3rem);
}
.mainvisual .slick-img .interior-item p:nth-child(2) {
  line-height: 1;
  font-size: clamp(4rem, 6vw, 6rem);
}
.mainvisual .slick-img .interior-item p:nth-child(4) {
  font-size: clamp(2rem, 3vw, 2.4rem);
}
.mainvisual .slick-img .interior-item .flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 30px auto 20px auto;
}
@media screen and (min-width: 1200px) {
  .mainvisual .slick-img .interior-item .flex {
    margin: 40px auto 30px auto;
  }
}
.mainvisual .slick-img .interior-item .flex img {
  width: 50px;
  height: -moz-fit-content;
  height: fit-content;
}
.mainvisual a picture > img {
  width: 100%;
  height: 80vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.mainvisual .slick-img {
  position: relative;
}
.mainvisual .slick-dots {
  position: absolute;
  bottom: -8%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
}
.mainvisual .slick-dots li {
  width: 13px;
  height: 13px;
  margin: 0 10px;
  background: #fff;
  border: 1px solid #8b4513;
  border-radius: 50%;
  cursor: pointer;
}
.mainvisual .slick-dots li.slick-active {
  background: #8b4513;
}
.mainvisual .slick-dots li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

h2, h3 {
  font-weight: normal;
  text-align: center;
}

.home h2, .home h3 {
  font-family: "Hina Mincho", serif;
  font-weight: 500;
}

h2 {
  line-height: 2;
  font-size: clamp(20px, 2vw, 32px);
}
@media screen and (min-width: 768px) {
  h2 br {
    display: none;
  }
}

h2.vw {
  font-size: clamp(20px, 2vw, 40px);
}

h3 {
  font-size: clamp(20px, 2vw, 26px);
  margin-top: 2rem;
  line-height: 1.5;
}

h3.vw {
  font-size: clamp(18px, 2vw, 26px);
  width: 90%;
  margin: 20px auto 0 auto;
}

.concept, .concept2 {
  padding: clamp(20rem, 30vw, 50rem) 0;
}
.concept .top, .concept .bottom, .concept2 .top, .concept2 .bottom {
  position: relative;
}
@media screen and (min-width: 1200px) {
  .concept .top, .concept .bottom, .concept2 .top, .concept2 .bottom {
    width: 90%;
  }
}
@media screen and (min-width: 1200px) {
  .concept .top, .concept2 .top {
    margin: 0 0 0 auto;
  }
  .concept .top .description, .concept2 .top .description {
    flex-direction: row-reverse;
    margin: -4rem 0 0 auto;
  }
  .concept .top .flex, .concept2 .top .flex {
    margin: 0 0 0 auto;
  }
}
.concept .bottom, .concept2 .bottom {
  margin-top: 20rem;
}
@media screen and (min-width: 1200px) {
  .concept .bottom, .concept2 .bottom {
    margin: 20rem auto 0 0;
  }
  .concept .bottom .description, .concept2 .bottom .description {
    margin: -4rem auto 0 0;
  }
  .concept .bottom .flex, .concept2 .bottom .flex {
    flex-direction: row-reverse;
  }
}
.concept .box::before, .concept2 .box::before {
  padding-top: 120%;
}
@media screen and (min-width: 1200px) {
  .concept .box::before, .concept2 .box::before {
    padding-top: 65%;
  }
}
.concept .flex, .concept2 .flex {
  position: relative;
  max-width: 60rem;
}
@media screen and (min-width: 1200px) {
  .concept .flex, .concept2 .flex {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 100%;
  }
}
@media screen and (min-width: 2000px) {
  .concept .flex, .concept2 .flex {
    max-width: 80%;
  }
}
.concept .flex .text, .concept2 .flex .text {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}
.bg-white .text {
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}
@media screen and (min-width: 1200px) {
  .concept .flex .text, .concept2 .flex .text {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
    -moz-transform: translate(0%, 0%);
    width: 30%;
  }
}
@media screen and (min-width: 1200px) {
  .concept .flex .text, .concept2 .flex .text {
    width: 45%;
  }
}
.concept .flex .box, .concept2 .flex .box {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .concept .flex .box, .concept2 .flex .box {
    width: 65%;
  }
}
@media screen and (min-width: 1200px) {
  .concept .flex .box, .concept2 .flex .box {
    width: 50%;
  }
}
.concept .description, .concept2 .description {
  background-color: #f8f8ff;
  padding: 5rem 5%;
  width: 90%;
  margin: -8rem 0 0 auto;
  box-sizing: border-box;
  z-index: 2;
  position: relative;
  overflow-x: hidden;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .concept .description, .concept2 .description {
    padding: 8rem 10%;
  }
}
@media screen and (min-width: 1200px) {
  .concept .description, .concept2 .description {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 5%;
    max-width: 130rem;
  }
  .concept .description > div, .concept2 .description > div {
    width: 48%;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1500px) {
  .concept .description .des-text, .concept2 .description .des-text {
    width: 41%;
  }
  .concept .description .box, .concept2 .description .box {
    width: 55%;
  }
}
@media screen and (min-width: 1500px) {
  .concept .description, .concept2 .description {
    padding: 6rem;
  }
}
.concept .description .box::before, .concept2 .description .box::before {
  padding-top: 65%;
}
@media screen and (min-width: 1500px) {
  .concept .description .box::before, .concept2 .description .box::before {
    padding-top: 50%;
  }
}
.concept .description p, .concept2 .description p {
  margin: 2rem auto;
  text-align: justify;
}
@media screen and (min-width: 1200px) {
  .concept .description p, .concept2 .description p {
    margin: 0 auto 2rem auto;
  }
}
.concept .bt-all, .concept2 .bt-all {
  border: none;
}

.concept2 {
  padding: 0 0 10rem 0;
}
@media screen and (min-width: 1500px) {
  .concept2 {
    padding: 0 0 20rem 0;
  }
}
.concept2 .text {
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .concept2 .text {
    color: #231815;
  }
}

.box {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.box::before {
  content: "";
  padding-top: 100%;
  display: block;
}
.box img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}
.box::after {
  content: "";
  display: block;
  width: 200%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%, rgb(255, 255, 255) 100%);
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out 0.3s;
}
.box.js-on::after {
  animation: viewinMask 1.5s ease-in-out forwards;
}
@keyframes viewinMask {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(50%);
  }
}

.bt-all {
  text-align: center;
  display: block;
  background-color: #fff;
  border: 0.25px solid #231815;
  width: 20rem;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  margin: 0 auto;
}
.bt-all:hover {
  background-color: #231815;
  opacity: 1;
  color: #fff;
}

.designtext {
  text-align: center;
  margin-top: 0 !important;
  background: rgba(255, 255, 255, 0.7);
  height: 100vh;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.designtext .pos {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}

.choose {
  overflow: hidden;
}
.choose section {
  text-align: center;
  padding: 7rem 0;
}
@media screen and (min-width: 1200px) {
  .choose section {
    padding: 15rem 0;
  }
}
.choose section p {
  text-align: justify;
  display: inline-block;
  max-width: 90rem;
  padding: 0 5%;
}
@media screen and (min-width: 1200px) {
  .choose section p {
    padding: 0;
  }
}
.choose section .bt-all {
  margin-top: 4rem;
}
.choose .back {
  background-color: #f8f8ff;
}
.choose .back .grid1 {
  grid-column: 1/3;
}
@media screen and (min-width: 1200px) {
  .choose .back .grid1 {
    grid-row: 1/3;
  }
}
.choose .color .grid5 {
  grid-column: 1/3;
}
@media screen and (min-width: 1200px) {
  .choose .color .grid5 {
    grid-row: 1/3;
  }
}
.choose .grid {
  display: grid;
  margin: 4rem 0;
}
@media screen and (min-width: 1200px) {
  .choose .grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.choose .grid .grid-content {
  position: relative;
}
.choose .grid .grid-content h4 {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  background-color: #fff;
  padding: 0.5rem 1rem;
  width: 15rem;
  font-weight: 100;
}
@media screen and (min-width: 1200px) {
  .choose .grid .grid-content h4 {
    padding: 1rem;
    width: 24rem;
  }
}

@media screen and (min-width: 960px) {
  a:hover {
    opacity: 0.7;
    transition: 0.3s;
  }
}
.newdesign, .collabo {
  padding: 5rem 5% 0 5%;
}
@media screen and (min-width: 1200px) {
  .newdesign, .collabo {
    padding: 15rem 5% 0 5%;
  }
}
.newdesign .wrap, .collabo .wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 2rem;
  margin: 4rem auto;
}
@media screen and (min-width: 1200px) {
  .newdesign .wrap, .collabo .wrap {
    gap: 2rem;
    margin: 8rem auto;
    grid-template-columns: repeat(4, 1fr);
  }
}
.newdesign .wrap p, .collabo .wrap p {
  margin-top: 2rem;
}

.pick {
  font-family: "Kosugi", sans-serif;
}
.pick .box::before {
  padding-top: 150%;
}
.pick .pick-slider {
  margin: 4rem auto;
}
@media screen and (min-width: 1200px) {
  .pick .pick-slider {
    margin: 8rem auto;
  }
}
.pick p {
  margin-top: 2rem;
  font-family: "Kosugi", sans-serif;
}
.pick .slick-next,.pick .slick-prev {
  top: 48% !important;
}

.rank, .pick {
  padding: 5rem 0 0 0;
}
@media screen and (min-width: 1200px) {
  .rank, .pick {
    padding: 15rem 0 0 0;
  }
}
.rank .rank-slider, .rank .pick-slider, .pick .rank-slider, .pick .pick-slider {
  margin-top: 4rem;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .rank .rank-slider, .rank .pick-slider, .pick .rank-slider, .pick .pick-slider {
    margin: 8rem auto;
  }
}
.rank .rank-slider .slick-prev, .rank .rank-slider .slick-next, .rank .pick-slider .slick-prev, .rank .pick-slider .slick-next, .pick .rank-slider .slick-prev, .pick .rank-slider .slick-next, .pick .pick-slider .slick-prev, .pick .pick-slider .slick-next {
  display: block;
  width: 35px;
  height: 35px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
  position: absolute;
  transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  top: 40%;
  z-index: 2;
}
@media screen and (min-width: 1200px) {
  .rank .rank-slider .slick-prev, .rank .rank-slider .slick-next, .rank .pick-slider .slick-prev, .rank .pick-slider .slick-next, .pick .rank-slider .slick-prev, .pick .rank-slider .slick-next, .pick .pick-slider .slick-prev, .pick .pick-slider .slick-next {
    width: 45px;
    height: 45px;
    top: 45%;
  }
}
.rank .rank-slider .slick-prev::before, .rank .rank-slider .slick-next::before, .rank .pick-slider .slick-prev::before, .rank .pick-slider .slick-next::before, .pick .rank-slider .slick-prev::before, .pick .rank-slider .slick-next::before, .pick .pick-slider .slick-prev::before, .pick .pick-slider .slick-next::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.rank .rank-slider .slick-prev, .rank .pick-slider .slick-prev, .pick .rank-slider .slick-prev, .pick .pick-slider .slick-prev {
  left: 1rem;
}
@media screen and (min-width: 1200px) {
  .rank .rank-slider .slick-prev, .rank .pick-slider .slick-prev, .pick .rank-slider .slick-prev, .pick .pick-slider .slick-prev {
    left: 2rem;
  }
}
.rank .rank-slider .slick-prev::before, .rank .pick-slider .slick-prev::before, .pick .rank-slider .slick-prev::before, .pick .pick-slider .slick-prev::before {
  border-bottom: 10px solid #fff;
  border-left: 0;
  border-right: 15px solid #231815;
  border-top: 10px solid #fff;
  left: -3px;
}
.rank .rank-slider .slick-next, .rank .pick-slider .slick-next, .pick .rank-slider .slick-next, .pick .pick-slider .slick-next {
  right: 1rem;
}
@media screen and (min-width: 1200px) {
  .rank .rank-slider .slick-next, .rank .pick-slider .slick-next, .pick .rank-slider .slick-next, .pick .pick-slider .slick-next {
    right: 2rem;
  }
}
.rank .rank-slider .slick-next::before, .rank .pick-slider .slick-next::before, .pick .rank-slider .slick-next::before, .pick .pick-slider .slick-next::before {
  border-bottom: 10px solid #fff;
  border-left: 15px solid #231815;
  border-right: 0;
  border-top: 10px solid #fff;
  left: 3px;
}
.rank .rank-slider .slick-slide, .rank .pick-slider .slick-slide, .pick .rank-slider .slick-slide, .pick .pick-slider .slick-slide {
  padding: 0 1rem;
}
.rank .rank-slider .flex, .rank .pick-slider .flex, .pick .rank-slider .flex, .pick .pick-slider .flex {
  margin-top: 2rem;
}
@media screen and (min-width: 1200px) {
  .rank .rank-slider .flex, .rank .pick-slider .flex, .pick .rank-slider .flex, .pick .pick-slider .flex {
    display: flex;
    align-items: center;
  }
}
.rank .rank-slider .flex p:nth-child(1), .rank .pick-slider .flex p:nth-child(1), .pick .rank-slider .flex p:nth-child(1), .pick .pick-slider .flex p:nth-child(1) {
  border: 1px solid #231815;
  padding: 0.5rem 0;
  width: 10rem;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .rank .rank-slider .flex p:nth-child(1), .rank .pick-slider .flex p:nth-child(1), .pick .rank-slider .flex p:nth-child(1), .pick .pick-slider .flex p:nth-child(1) {
    margin-right: 1rem;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.rank .rank-slider .flex p:nth-child(2), .rank .pick-slider .flex p:nth-child(2), .pick .rank-slider .flex p:nth-child(2), .pick .pick-slider .flex p:nth-child(2) {
  margin-top: 1rem;
}
@media screen and (min-width: 1200px) {
  .rank .rank-slider .flex p:nth-child(2), .rank .pick-slider .flex p:nth-child(2), .pick .rank-slider .flex p:nth-child(2), .pick .pick-slider .flex p:nth-child(2) {
    width: 80%;
    margin-top: 0;
  }
}

.collabo .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 4rem 0;
  max-width: 80rem;
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .collabo .grid {
    padding: 8rem 0;
  }
}
.collabo p {
  font-size: 2rem;
  line-height: 3rem;
  text-align: center;
  margin-top: 1rem;
}
@media screen and (min-width: 1200px) {
  .collabo p br {
    display: none;
  }
}

.news {
  padding: 5rem 5% 10rem 5%;
}
@media screen and (min-width: 1200px) {
  .news {
    padding: 10rem 5% 15rem 5%;
  }
}
@media screen and (min-width: 1100px) {
  .news .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 6rem auto;
    max-width: 120rem;
    gap: 8rem;
  }
  .news .flex h2, .news .flex h3 {
    width: -moz-max-content;
    width: max-content;
  }
}
.news ul {
  margin: 4rem auto;
  width: 100%;
}
@media screen and (min-width: 1100px) {
  .news ul {
    margin: 0;
  }
}
.news ul li {
  border-bottom: 0.25px solid #231815;
  padding: 2rem;
}
@media screen and (min-width: 1200px) {
  .news ul li br {
    display: none;
  }
  .news ul li .cate {
    margin-right: 1rem;
  }
}
.news ul li:first-child {
  border-top: 0.25px solid #231815;
}
.news ul li .date {
  color: #9fa0a0;
  margin-right: 1rem;
}

.news-list {
  padding: 4rem 5%;
}
@media screen and (min-width: 1100px) {
  .news-list .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 6rem auto;
    max-width: 120rem;
    gap: 4rem;
  }
  .news-list .flex h2, .news-list .flex h3 {
    width: -moz-max-content;
    width: max-content;
  }
}

.tabs-container {
  width: 100%;
}
.tabs-container .tabs-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 4rem auto;
  justify-content: center;
}
.tabs-container .tabs-menu a {
  display: block;
  padding: 10px 20px;
  border-radius: 1rem;
  flex: 0 0 100%;
  background-color: #d8d8d8;
  color: #231815;
}
.tabs-container .tabs-menu .active {
  background-color: #5f5f5f;
  color: #fff;
}
.tabs-container .tabs-content .tab-content {
  display: none;
}
.tabs-container .tabs-content .tab-content li {
  border-bottom: 0.25px solid #231815;
  padding: 2rem;
}
@media screen and (min-width: 1200px) {
  .tabs-container .tabs-content .tab-content li br.none {
    display: none;
  }
  .tabs-container .tabs-content .tab-content li .cate {
    margin-right: 1rem;
  }
}
.tabs-container .tabs-content .tab-content li:first-child {
  border-top: 0.25px solid #231815;
}
.tabs-container .tabs-content .tab-content li .date {
  color: #9fa0a0;
  margin-right: 1rem;
}
.tabs-container .tabs-content .tab-content.active {
  display: block;
}
.tabs-container .cp_navi {
  margin-top: 4rem;
}

.single-news {
  padding: 4rem 5%;
  text-align: center;
  max-width: 120rem;
  margin: 0 auto;
}
.single-news p {
  margin: 2rem auto 4rem auto;
}
.single-news .img {
  width: 50%;
  margin: 0 auto;
}

.art {
  padding: 15rem 0 10rem 0;
  border-top: 1px solid #9fa0a0;
}
@media screen and (min-width: 1200px) {
  .art {
    padding: 25rem 0 20rem 0;
  }
}

.bt-ts {
  display: flex;
}
.bt-ts a {
  height: 10rem;
  align-items: center;
  justify-content: center;
  display: flex;
  width: 100%;
}
.bt-ts .top {
  background-color: #f8f8ff;
}
.bt-ts .sample {
  background-color: #f5f5f5;
}

.blog-list {
  max-width: 120rem;
  margin: 0 auto;
}
.blog-list .title {
  font-weight: bold;
}
@media screen and (min-width: 1200px) {
  .blog-list .pro-wrap {
    gap: 2rem 2% !important;
    margin-top: 4rem;
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media screen and (min-width: 1400px) {
  .blog-list.pro-results {
    padding: 4rem 0;
  }
}

footer {
  padding: 5rem 5%;
  max-width: 130rem;
  margin: 0 auto;
  color: #231815;
}
@media screen and (min-width: 960px) {
  footer {
    padding: 10rem 5%;
  }
}
@media screen and (min-width: 1200px) {
  footer .foot-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8rem;
  }
  footer .foot-flex > div {
    width: 100%;
  }
}
@media screen and (min-width: 1600px) {
  footer {
    padding: 10rem 0;
  }
}
footer .logo {
  max-width: 30rem;
}
@media screen and (min-width: 960px) {
  footer .logo-sns {
    display: flex;
    align-items: baseline;
    gap: 4rem;
  }
}
footer .footer-sns {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}
footer .footer-sns img {
  max-width: 4rem;
}
footer p {
  margin: 1rem auto;
}
@media screen and (min-width: 960px) {
  footer p {
    margin: 2rem 0 0 0;
  }
}
footer p span {
  font-size: 2rem;
}
@media screen and (min-width: 470px) {
  footer p span .fax {
    display: none;
  }
}
@media screen and (min-width: 960px) {
  footer p span {
    font-size: 2.2rem;
  }
}
footer .flex {
  border-bottom: 0.25px solid #006934;
  padding-bottom: 1rem;
}
@media screen and (min-width: 960px) {
  footer .flex {
    display: flex;
    gap: 4rem;
    padding-bottom: 2rem;
  }
}
footer .foot-link {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 1rem;
  margin: 2rem auto 4rem auto;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media screen and (max-width: 450px) {
  footer .foot-link {
    grid-template-columns: max-content;
    text-align: center;
  }
}
@media screen and (min-width: 960px) {
  footer .foot-link {
    display: flex;
    justify-content: space-between;
    margin: 2rem auto 4rem auto;
    gap: 0 2rem;
  }
}
@media screen and (min-width: 1200px) {
  footer .foot-link {
    margin: 4rem 0 0 0;
    gap: 0 2vw;
  }
}
footer .foot-link ul {
  margin: 1rem 0;
}
@media screen and (min-width: 960px) {
  footer .foot-link ul {
    width: -moz-fit-content;
    width: fit-content;
  }
}
footer .bt-link {
  margin: 0 auto;
  font-size: 1.8rem;
  max-width: 23rem;
}
@media screen and (min-width: 1200px) {
  footer .bt-link {
    margin: 0;
  }
}
footer .bt-link img {
  margin-top: 1rem;
}
footer .bt-link a {
  border: 1px solid #9fa0a0;
  background-color: #fff;
  border-radius: 1rem;
  padding: 0.5rem 3rem;
}
footer .bt-link a:first-child {
  margin-bottom: 2rem;
  display: block;
}
footer .bt-link a:hover {
  opacity: 1;
  background-color: #efefef;
}
footer small {
  font-size: 1.6rem;
  margin-top: 5rem;
  display: block;
  padding: 1rem 0;
}
@media screen and (min-width: 960px) {
  footer small {
    margin-top: 10rem;
  }
}

.fadeRight, .fadeLeft, .blur {
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeLeft {
  animation-name: fadeLeftAnime;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeRight {
  animation-name: fadeRightAnime;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeLeftTrigger, .fadeRightTrigger, .blurTrigger {
  opacity: 0;
}

.blur {
  animation-name: blurAnime;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
.kaso.concept {
  padding: 2rem 0;
}
@media screen and (min-width: 960px) {
  .kaso.concept {
    padding: 10rem 0 5rem 0;
  }
}
@media screen and (min-width: 1500px) {
  .kaso.concept {
    padding: 20rem 0 10rem 0;
  }
}
@media screen and (min-width: 2000px) {
  .kaso.concept .flex {
    max-width: 100%;
  }
}
.kaso.concept h3 {
  font-family: "Hina Mincho", serif;
  font-weight: 500;
  text-align: center;
  font-size: clamp(20px, 2vw, 26px);
  margin-top: 2rem;
  line-height: 1.5;
}
.kaso.concept h3::after {
  display: none;
}
.kaso.concept.color-list .text {
  color: #231815;
}
.kaso.concept .text {
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .kaso.concept .text {
    color: #231815;
  }
}
@media screen and (min-width: 960px) {
  .kaso.concept .top {
    width: 95%;
  }
}
@media screen and (min-width: 1400px) {
  .kaso.concept .top {
    width: 90%;
  }
}
.kaso.concept .pos {
  max-width: 170rem;
}
@media screen and (min-width: 960px) {
  .kaso.concept .pos {
    margin: -4rem 0 0 auto;
  }
}
.kaso.concept .description {
  padding: 8%;
  max-width: 100%;
  background-color: #faefe5;
}
@media screen and (min-width: 1200px) {
  .kaso.concept .description {
    display: block;
  }
}
.kaso.concept .description p {
  margin: 0 auto;
}
.kaso.concept .allcolor2 {
  margin: -2rem 0 0 15%;
  width: 80%;
  z-index: 2;
}
@media screen and (min-width: 960px) {
  .kaso.concept .allcolor2 {
    width: 60%;
    margin: -2rem 0 0 25%;
  }
}
@media screen and (min-width: 1200px) {
  .kaso.concept .allcolor2 {
    width: 43%;
    margin: -4rem 0 0 35%;
  }
}
@media screen and (min-width: 2000px) {
  .kaso.concept .allcolor2 {
    width: 50%;
    margin: -4rem 0 0 31%;
  }
}
.kaso.concept .allcolor2::before {
  padding-top: 60%;
}
.kaso.concept .allcolor3 {
  margin: -4rem 0 0 5%;
  width: 70%;
  z-index: 2;
}
@media screen and (min-width: 960px) {
  .kaso.concept .allcolor3 {
    width: 50%;
    margin: -4rem 0 0 0%;
  }
}
@media screen and (min-width: 1200px) {
  .kaso.concept .allcolor3 {
    width: 33%;
    margin: -18rem 0 0 5%;
  }
}
@media screen and (min-width: 2000px) {
  .kaso.concept .allcolor3 {
    width: 40%;
    margin: -18rem 0 0 -6%;
  }
}
.kaso.concept .allcolor3::before {
  padding-top: 60%;
}

.breadcrumbsWrap {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 1rem 0 0 5%;
}
@media screen and (min-width: 1200px) {
  .breadcrumbsWrap {
    padding: 1rem 0 0 5%;
  }
}
@media screen and (min-width: 1400px) {
  .breadcrumbsWrap {
    padding: 1rem 0 0 10%;
  }
}
.breadcrumbsWrap a::after {
  content: "→";
  margin: 1rem;
  display: inline-block;
}

.product-list {
  padding: 5rem 0;
}
@media screen and (min-width: 1400px) {
  .product-list {
    padding: 10rem 10% 5rem 10%;
    display: flex;
    align-items: self-end;
  }
}
.product-list .box::before {
  padding-top: 65%;
}
.product-list .text {
  background-color: #fff;
  border: 0.25px solid #231815;
  padding: 3rem;
  width: 70%;
  margin: -4rem auto 0 auto;
  z-index: 2;
  position: relative;
  max-width: 60rem;
}
@media screen and (min-width: 1400px) {
  .product-list .text {
    margin: 0 0 3rem -5rem;
    width: 40%;
  }
}
.product-list .text p {
  padding-top: 2rem;
  text-align: justify;
}
.product-list .text h2, .product-list .text h3 {
  font-family: "Kosugi", sans-serif;
}

nav.cp_navi *, nav.cp_navi *:after, nav.cp_navi *:before {
  box-sizing: border-box;
}

.cp_navi {
  margin: 0 auto 10rem auto;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
.cp_navi a {
  text-decoration: none;
}
.cp_navi .cp_pagination, .cp_navi .page-numbers {
  display: inline-block;
}
.cp_navi .cp_pagination .prev, .cp_navi .cp_pagination .next, .cp_navi .page-numbers .prev, .cp_navi .page-numbers .next {
  background-color: #b5b5b6;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0.5rem;
}
.cp_navi .cp_pagination .prev:hover, .cp_navi .cp_pagination .next:hover, .cp_navi .page-numbers .prev:hover, .cp_navi .page-numbers .next:hover {
  opacity: .7;
}
.cp_navi .page-numbers {
  font-size: 1em;
  display: block;
  float: left;
  transition: 400ms ease;
  letter-spacing: 0.1em;
  width: 25px;
  height: 30px;
  margin: auto 0.5em;
  border: 1px solid #b5b5b6;
}
.cp_navi .page-numbers:hover, .cp_navi .page-numbers.current {
  opacity: .7;
}
.cp_navi .page-numbers.current {
  color: #fff;
  background-color: #231815;
}
@media screen and (max-width: 768px) {
  .cp_navi .page-numbers {
    /* display: none; */
    font-size: 0.8em;
    margin-bottom: 10px;
  }
  .cp_navi .page-numbers:nth-of-type(3) {
    position: relative;
    /* margin-right: 1.5rem; */
  }
  .cp_navi .page-numbers:nth-of-type(3)::after {
    /* font-size: 1.2em;
    position: absolute;
    top: -4px;
    left: 28px;
    content: ".."; */
  }
  /* .cp_navi .page-numbers:nth-child(-n+3), .cp_navi .page-numbers:nth-last-child(-n+3) {
    display: block;
  } */
  .cp_navi .page-numbers:nth-last-child(-n+4)::after {
    content: none;
  }
}

.bg, .product-detail {
  background-color: #f5f5f5;
}

#sheat-type {
  display: none;
}

#variations-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (min-width: 1200px) {
  #variations-container {
    grid-template-columns: repeat(4, 1fr);
  }
}
#variations-container .box-img::before {
  padding-top: 100%;
}
#variations-container .box-img img {
  max-width: 100% !important;
}

input[readonly] {
  display: none;
}

.product-detail {
  padding: 2rem 5%;
}
.product-detail .wrap1 p {
  text-align: right;
  margin-bottom: 1rem;
}
.product-detail .wrap2 a {
  color: #67BBD2;
}
.product-detail .img-left .box-img img {
  -o-object-position: left;
     object-position: left;
}
.product-detail .img-right .box-img img {
  -o-object-position: right;
     object-position: right;
}
.product-detail .box-img2 {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.product-detail .box-img2::before {
  content: "";
  padding-top: 100%;
  display: block;
}
.product-detail .box-img2 img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 960px) {
  .product-detail {
    display: grid;
    grid-template-columns: 63% 35%;
    justify-content: space-between;
    padding: 5rem 10%;
  }
}
@media screen and (min-width: 1800px) {
  .product-detail {
    grid-template-columns: 58% 40%;
    padding: 5rem 15%;
  }
}
.product-detail h2 {
  text-align: left;
  font-family: "Kosugi", sans-serif;
}
.product-detail .description {
  margin: 2rem 0 0 0;
}
.product-detail .variation {
  background-color: #fff;
  border: 1px solid #231815;
  margin: 2rem 0;
  text-align: center;
}
.product-detail .wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 2rem;
}
@media screen and (min-width: 960px) {
  .product-detail .wrap {
    gap: 3rem;
  }
}
.product-detail .wrap .wrap-box .sample-btn, .product-detail .wrap .wrap-box .contact-submit-btn {
  background-color: #231815;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  width: 15rem;
  display: block;
  margin: 2rem auto 4rem auto;
  background-color: #231815;
}
@media screen and (min-width: 700px) {
  .product-detail .wrap .wrap-box .sample-btn, .product-detail .wrap .wrap-box .contact-submit-btn {
    width: 17rem;
  }
}
.product-detail .wrap .wrap-box .sample-btn:hover, .product-detail .wrap .wrap-box .contact-submit-btn:hover {
  background-color: #0056b3;
}
.product-detail .charged {
  border: 1px solid #231815;
  border-radius: 5px;
  padding: 1px 1rem;
  margin: 1rem auto;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-size: 1.4rem;
}
.product-detail .charged:hover {
  opacity: .7;
}
.product-detail .box-img::before {
  padding-top: 100%;
}

.samplemodal-content, .contactmodal-content {
  position: relative;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  padding: 2rem;
  border-radius: 1rem;
  background-color: #fff;
  width: -moz-fit-content;
  width: 70%;
  max-width: 50rem;
}
.samplemodal-content .close-modal, .contactmodal-content .close-modal {
  position: absolute;
  top: -50px;
  right: 0;
  align-items: center;
  display: flex;
  font-size: 40px;
  font-weight: bold;
  width: 4rem;
  height: 4rem;
  color: #231815;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}
.samplemodal-content label, .contactmodal-content label {
  margin-top: 10px;
  display: block;
}
.samplemodal-content select, .contactmodal-content select {
  width: 100%;
  padding: 8px;
  border: 1px solid #9fa0a0;
  border-radius: 3px;
}
.samplemodal-content .sample-btn, .contactmodal-content .sample-btn {
  margin: 2rem auto !important;
}
.samplemodal-content .contact-submit-btn, .contactmodal-content .contact-submit-btn {
  width: 20rem !important;
  margin: 2rem auto 0rem auto !important;
}
.samplemodal-content .selected-product-info, .contactmodal-content .selected-product-info {
  text-align: center;
}
.samplemodal-content .selected-product-info .box-img, .contactmodal-content .selected-product-info .box-img {
  width: 30%;
  margin: 0 auto;
}
.samplemodal-content .selected-product-info .box-img::before, .contactmodal-content .selected-product-info .box-img::before {
  padding-top: 40%;
}
@media screen and (min-width: 768px) {
  .samplemodal-content .selected-product-info .box-img::before, .contactmodal-content .selected-product-info .box-img::before {
    padding-top: 100%;
  }
}
.samplemodal-content .selected-product-info .selected-title, .contactmodal-content .selected-product-info .selected-title {
  margin-top: 10px;
}
.samplemodal-content .bt-radio, .contactmodal-content .bt-radio {
  display: flex;
  gap: 1rem;
}
.samplemodal-content .bt-radio input, .contactmodal-content .bt-radio input {
  width: 1.5rem;
}
.samplemodal-content .bt-radio input:nth-child(3), .contactmodal-content .bt-radio input:nth-child(3) {
  margin-left: 3rem;
}

.modal {
  overflow: scroll;
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}
.modal .modal-content {
  position: relative;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  max-width: 900px;
  padding: 1rem;
  border-radius: 1rem;
  background-color: #fff;
  width: 90%;
}
.modal .modal-content .close {
  position: absolute;
  top: -50px;
  right: 0;
  align-items: center;
  display: flex;
  font-size: 40px;
  font-weight: bold;
  width: 4rem;
  height: 4rem;
  color: #231815;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}
.modal .modal-content img {
  max-height: 50vh;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact-btn, .bt-add {
  background-color: #fff;
  border: 1px solid #231815;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  width: 15rem;
  display: block;
  margin: -2rem auto 4rem auto;
}
@media screen and (min-width: 700px) {
  .contact-btn, .bt-add {
    width: 17rem;
  }
}
.contact-btn:hover, .bt-add:hover {
  opacity: .7;
}

@media screen and (min-width: 768px) {
  .bt-order {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
  }
}

.bt-add {
  text-decoration: none !important;
  display: block !important;
  color: #fff !important;
  margin: 20px auto !important;
  text-align: center !important;
  background-color: #347240;
  border: none;
  border-radius: 10px;
}
.bt-add:hover {
  opacity: .7;
}
@media screen and (min-width: 768px) {
  .bt-add {
    margin: 0 !important;
  }
}

.order-tyui {
  font-size: 14px;
  text-align: center;
  margin-bottom: 40px;
}

.products-container {
  max-width: 60rem;
  margin: 0 auto;
}
.products-container .product-item {
  display: flex;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 5px;
  background-color: #f9f9f9;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
  align-items: center;
}
.products-container .product-item .box-img {
  flex: 0 0 120px;
  margin-right: 15px;
  height: 100%;
}
.products-container .product-item .box-img::before {
  padding-top: 100%;
}
.products-container .product-item .box-img .product-preview-image {
  max-width: 100%;
  height: 100%;
  border-radius: 3px;
}
.products-container .product-item .product-info {
  flex: 1;
}
.products-container .product-item .product-info p {
  margin: 5px 0;
}
.products-container .product-item .delete-product-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: #ff6b6b;
  color: white;
  border: none;
  border-radius: 3px;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 12px;
}
.products-container .product-item .delete-product-btn:hover {
  background-color: #ff5252;
}
.products-container .no-items-message {
  font-style: italic;
  color: #777;
}
.products-container .selected-products-section h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #333;
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
}
@media (max-width: 768px) {
  .products-container .product-item {
    flex-direction: column;
  }
  .products-container .product-item .box-img {
    flex: 0 0 auto;
    margin-right: 0;
    margin-bottom: 10px;
    max-width: 100px;
  }
  .products-container .product-item .product-preview-image {
    max-width: 100%;
  }
  .products-container .product-item .delete-product-btn {
    position: relative;
    top: auto;
    bottom: 0;
    right: auto;
    align-self: flex-end;
  }
}

#contact-products-container {
    opacity: 0;
    transition: opacity 0.1s ease-in-out;
}

#contact-products-container.loaded {
    opacity: 1;
}
/* #contact-products-container .delete-product-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
}

#contact-products-container .delete-product-btn:hover {
    background: #cc0000;
}

#contact-products-container .delete-product-btn[type="button"] {

} */


.select-box, .input-box {
  position: relative;
}
.select-box::before, .input-box::before {
  border-bottom: 8px solid #231815;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  content: "";
  position: absolute;
  right: 9px;
  top: 8px;
  width: 0;
}
.select-box::after, .input-box::after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 8px solid #231815;
  content: "";
  position: absolute;
  right: 9px;
  top: 19px;
  width: 0;
}

.product-description {
  padding: 5rem 5%;
  max-width: 170rem;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .product-description {
    display: flex;
    justify-content: center;
    gap: 4rem;
  }
}
.product-description > div {
  border: 1px solid #231815;
  padding: 4rem 4%;
  margin-bottom: 2rem;
}
@media screen and (min-width: 960px) {
  .product-description > div {
    width: 50%;
  }
}
.product-description .spacarrange .arrange {
  margin-bottom: 2rem;
}
.product-description .spacarrange .flex {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: -moz-fit-content;
  max-width: fit-content;
  gap: 0 1rem;
}
.product-description .spacarrange .flex .arrangeimg {
  max-width: 8rem;
  margin: 1rem 0;
  display: none;
}
.product-description .spacarrange .flex .arrangeimg.add_iconclass {
  display: inline;
}
.product-description .spacarrange .spec table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem auto;
}
.product-description .spacarrange .spec tr {
  border-bottom: 1px solid #9fa0a0;
  line-height: 3rem;
}
@media screen and (max-width: 767px) {
  .product-description .spacarrange .spec tr {
    display: flex;
    flex-direction: column;
    line-height: 2rem !important;
    padding: 2rem 0;
  }
  .product-description .spacarrange .spec td {
    padding: 1rem 0 0 0 !important;
    line-height: 3rem !important;
  }
}
@media screen and (min-width: 960px) and (max-width: 1700px) {
  .product-description .spacarrange .spec tr {
    display: flex;
    flex-direction: column;
    line-height: 2rem !important;
    padding: 2rem 0;
  }
  .product-description .spacarrange .spec td {
    padding: 1rem 0 0 0 !important;
    line-height: 3rem !important;
  }
}

.product-description .spacarrange .spec tr:first-child {
  line-height: 4rem;
}
.product-description .spacarrange .spec th {
  text-align: left;
  min-width: 16rem;
}
.product-description .spacarrange .spec td {
  padding: 1rem 0;
}
.product-description .spacarrange .spec .keyword {
  background-color: #f5f5f5;
  border: 1px solid #231815;
  text-align: center;
  padding: 2rem 0;
  margin: 4rem auto 2rem auto;
}
.product-description .spacarrange .spec .tag-list li {
  display: inline-block;
  border: 1px solid #231815;
  padding: 0.5rem 1rem;
  margin: 0 1rem 1rem 0;
}
.product-description .calculator h4 {
  font-size: 3rem;
}
.product-description .calculator .hira5 {
  margin: 2rem auto 0 auto;
}
.product-description .calculator h4, .product-description .calculator .hira5, .product-description .calculator #result .size {
  font-weight: normal;
}
.product-description .calculator label {
  display: block;
}
.product-description .calculator input, .product-description .calculator select, .product-description .calculator button {
  width: 100%;
  padding: 8px;
  border: 1px solid #9fa0a0;
  border-radius: 3px;
}
.product-description .calculator .sheatnone::before, .product-description .calculator .sheatnone::after {
  display: none;
}
.product-description .calculator #calculate-btn, .product-description .calculator .sample-btn {
  background-color: #231815;
  color: white;
  cursor: pointer;
  max-width: 15rem;
  margin: 2rem auto 0 auto;
  display: block;
}
.product-description .calculator #calculate-btn:hover, .product-description .calculator .sample-btn:hover {
  background-color: #0056b3;
}
.product-description .calculator .calculate .size {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .product-description .calculator .calculate .size {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}
.product-description .calculator .calculate .size div {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.product-description .calculator .calculate .size div:nth-child(1) .input-box {
  margin-left: 16px;
}
@media screen and (min-width: 768px) {
  .product-description .calculator .calculate .size div:nth-child(1) .input-box {
    margin-left: 0;
  }
}
.product-description .calculator .calculate .size input {
  max-width: 15rem;
}
.product-description .calculator #result {
  margin-top: 4rem;
}
.product-description .calculator #result .size, .product-description .calculator #result .price {
  border-bottom: 1px solid #9fa0a0;
  padding: 0 0 1rem 0;
}
.product-description .calculator #result .size {
  font-size: 1.8rem;
}
.product-description .calculator #result .size span {
  padding: 0 2rem;
}
.product-description .calculator #result .price {
  font-size: 3rem;
  margin-top: 2rem;
}
.product-description .calculator #result .price span {
  font-size: 1.6rem;
}
.product-description .calculator .postage {
  margin-top: 1rem;
}
.product-description .calculator .charged-sample {
  margin: 2rem 0 0 0;
  display: block;
}
.product-description .bt {
  flex-direction: column;
  display: flex;
  margin-top: 4rem;
}
.product-description .bt a, .product-description .bt .simplefavorite-button {
  background-color: #f5f5f5;
  border: 1px solid #231815;
  border-radius: 3px;
  text-align: center;
  padding: 2rem 0;
  margin: 1rem auto 0 auto;
  width: 100%;
  display: block;
}
.product-description .bt .simplefavorite-button {
  background-color: #fff;
  border: 1px solid #9fa0a0;
  font-size: 0 !important;
  position: relative;
  color: #231815;
}
/* .product-description .bt .simplefavorite-button::before {
  content: "お気に入りに追加" !important;
  font-size: 1.6rem;
  line-height: 4rem;
  top: 0px;
  width: 100%;
  display: block;
  position: absolute;
}
.product-description .bt .simplefavorite-button.active::before {
  content: "お気に入りに追加済" !important;
  line-height: 4rem;
  background-color: #f2a8a8;
  top: 0px;
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
} */
.product-description .bt .simplefavorite-button.preset {
  box-shadow: none !important;
}
.product-description .bt-radio {
  display: flex;
  gap: 1rem;
}
.product-description .bt-radio input {
  width: 1.5rem;
}
.product-description .bt-radio input:nth-child(3) {
  margin-left: 3rem;
}
.product-description .link {
  margin-top: 10px;
}
.product-description .link a {
  display: block;
  color: #49B8C6;
}

.searchform {
  padding: 0;
  font-family: "Hina Mincho", serif;
  font-weight: 500;
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

.search-bt {
  font-size: 1.4rem;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 960px) {
  .search-bt {
    font-size: 1.6rem;
  }
}
.search-bt > label {
  flex: 1 1;
  order: -1;
  padding: 1rem 0.5rem;
  border: 1px solid #fff;
  border-radius: 0;
  background-color: #d8d8d8;
  color: #231815;
  text-align: center;
  cursor: pointer;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
@media screen and (min-width: 1200px) {
  .search-bt > label {
    border: none;
  }
}
.search-bt label:has(:checked) {
  background-color: #5f5f5f;
  color: #fff;
}
.search-bt label:has(:checked) + div {
  display: block;
}
.search-bt input {
  display: none;
}

.tab-links {
  font-size: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  font-family: "Hina Mincho", serif !important;
}
@media screen and (min-width: 960px) {
  .tab-links {
    font-size: 1.6rem;
  }
}
.tab-links a {
  flex: 1 1;
  padding: 1rem 0.5rem;
  border: 1px solid #fff;
  border-radius: 0;
  background-color: #d8d8d8;
  color: #231815;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.tab-links a.active {
  background-color: #5f5f5f;
  color: #fff;
}
.tab-links a:hover {
  opacity: 0.9;
}
@media screen and (min-width: 1200px) {
  .tab-links {
    border: none;
  }
}

.searchform .search {
  background-color: #5f5f5f;
  color: #fff;
}
@media screen and (min-width: 960px) {
  .searchform .search {
    display: flex;
    justify-content: center;
    gap: 4rem;
  }
}
.searchform .search .field {
  padding: 2rem 5%;
}
@media screen and (min-width: 768px) {
  .searchform .search .field {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding: 2rem;
  }
}
.searchform .search .field > div {
  display: flex;
  flex-direction: column;
  margin: 0 auto 2rem auto;
}
@media screen and (min-width: 960px) {
  .searchform .search .field > div {
    margin: 0 auto 1rem auto;
  }
}
.searchform .search .field p {
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .searchform .search .field p {
    text-align: left;
  }
}
.searchform .search .field ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 1rem;
}
@media screen and (min-width: 450px) {
  .searchform .search .field ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 575px) {
  .searchform .search .field ul {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 730px) {
  .searchform .search .field ul {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (min-width: 960px) {
  .searchform .search .field ul {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media screen and (min-width: 1100px) {
  .searchform .search .field ul {
    grid-template-columns: repeat(7, 1fr);
  }
}
.searchform .search .field ul li {
  font-size: 1.2rem;
  line-height: 2.5rem;
}
@media screen and (min-width: 960px) {
  .searchform .search .field ul li {
    font-size: 1.4rem;
  }
}
.searchform .search .field ul input[type=checkbox] {
  position: relative;
  width: 16px;
  height: 16px;
  border: 0.25px solid #231815;
  border-radius: 0;
  background-color: #fff;
  margin-right: 1rem;
  vertical-align: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.searchform .search .field ul input[type=checkbox]:checked:before {
  position: absolute;
  top: 1px;
  left: 4px;
  transform: rotate(50deg);
  width: 4px;
  height: 8px;
  border-right: 2px solid #231815;
  border-bottom: 2px solid #231815;
  content: "";
}
.searchform .search .keyword {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .searchform .search .keyword {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    margin: 3rem auto 2rem auto !important;
  }
}
.searchform .search .keyword label {
  font-size: 1.7rem;
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .searchform .search .keyword label {
    text-align: left;
    width: 22rem;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 960px) {
  .searchform .search .keyword label {
    width: 16rem;
  }
}
.searchform .search .keyword input {
  height: 4rem;
  width: 100%;
  max-width: 50rem;
  padding: 0 0 0 1rem;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .searchform .search .keyword input {
    margin: 0 0 0 2rem;
  }
}
.searchform .search .popular-tags {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .searchform .search .popular-tags {
    display: flex;
    flex-direction: row !important;
    margin: 0;
    font-size: 1.6rem;
  }
}
.searchform .search .popular-tags label {
  font-size: 1.7rem;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .searchform .search .popular-tags label {
    text-align: left;
  }
}
.searchform .search .popular-tags a {
  color: #fff;
  display: inline-block;
  padding-right: 10px;
}
.searchform .search button {
  text-align: center;
  background-color: #fff;
  width: 20rem;
  height: 4rem;
  border-radius: 1rem;
  border: none;
  margin: 0 auto;
  display: block;
  font-family: "Hina Mincho", serif;
  font-weight: 500;
  color: #231815;
}
.searchform .search button:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.searchform .search .dropdown-content {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
}
.searchform .search .dropdown-content li {
  padding: 5px;
}
.searchform .search .dropdown-toggle {
  cursor: pointer;
  border: none;
  font-size: 25px;
  padding-left: 1rem;
}

.wall-color {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0.5rem 1rem;
}
@media screen and (min-width: 550px) {
  .wall-color {
    gap: 1rem;
  }
}
@media screen and (min-width: 730px) {
  .wall-color {
    grid-template-columns: repeat(5, 1fr) !important;
  }
}
@media screen and (min-width: 960px) {
  .wall-color {
    grid-template-columns: repeat(6, 1fr) !important;
  }
}
@media screen and (min-width: 1100px) {
  .wall-color {
    grid-template-columns: repeat(7, 1fr) !important;
  }
}
.wall-color label {
  display: flex;
  align-items: center;
}
.wall-color li span {
  width: 3rem;
  height: 3rem;
  display: block;
}
.wall-color li:nth-child(1) span {
  background-color: red;
}
.wall-color li:nth-child(2) span {
  background-color: yellow;
}
.wall-color li:nth-child(3) span {
  background-color: green;
}
.wall-color li:nth-child(4) span {
  background-color: rgb(0, 60, 255);
}
.wall-color li:nth-child(5) span {
  background-color: rgb(109, 0, 172);
}
.wall-color li:nth-child(6) span {
  background-color: pink;
}
.wall-color li:nth-child(7) span {
  background-color: rgb(241, 214, 171);
}
.wall-color li:nth-child(8) span {
  background-color: rgb(125, 71, 45);
}
.wall-color li:nth-child(9) span {
  background-color: white;
}
.wall-color li:nth-child(10) span {
  background-image: linear-gradient(90deg, rgb(0, 0, 0), rgb(153, 153, 153));
}
.wall-color li:nth-child(11) span {
  background-image: linear-gradient(90deg, rgb(255, 62, 62), rgb(255, 134, 0) 16%, rgb(255, 243, 0) 32%, rgb(77, 191, 24) 48%, rgb(24, 107, 191) 64%, rgb(89, 1, 255) 80%, rgb(255, 175, 251)), linear-gradient(90deg, rgb(255, 62, 62), rgb(255, 243, 0) 13%);
}

.favorites-list li {
  border: none !important;
}

.margin-top {
  margin-top: 4rem;
}

.pro-results {
  padding: 2rem 5%;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .pro-results {
    padding: 4rem 2%;
  }
}
.pro-results b {
  font-family: "Hina Mincho", serif;
  font-weight: 500;
  font-size: 2.2rem;
  border-right: 3px solid #231815;
  padding-right: 2rem;
}
.pro-results .bt-all {
  margin-top: 2rem;
}
.pro-results .adobe, .pro-results .favorites-list {
  margin-top: 0 !important;
}
.pro-results .pro-wrap, .pro-results #sample-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 5%;
  margin-top: 2rem;
}
@media screen and (min-width: 1200px) {
  .pro-results .pro-wrap, .pro-results #sample-list {
    gap: 4rem 2%;
    margin-top: 4rem;
    grid-template-columns: repeat(4, 1fr);
  }
}
.pro-results .pro-wrap li p:first-child, .pro-results #sample-list li p:first-child {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.pro-results .pro-wrap li p:first-child::before, .pro-results #sample-list li p:first-child::before {
  content: "";
  padding-top: 100%;
  display: block;
}
.pro-results .pro-wrap li p:first-child img, .pro-results #sample-list li p:first-child img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
  z-index: 1;
}
.pro-results .pro-wrap li p:first-child::after, .pro-results #sample-list li p:first-child::after {
  content: "";
  display: block;
  width: 200%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%, rgb(255, 255, 255) 100%);
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out 0.3s;
}
.pro-results .pro-wrap li p:nth-child(3), .pro-results #sample-list li p:nth-child(3) {
  float: right;
  margin-top: -3.5rem;
}
.pro-results .pro-wrap .pro-title, .pro-results #sample-list .pro-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pro-results .simplefavorite-button, .favorite-pos .simplefavorite-button {
  font-size: 0 !important;
  background: none !important;
  border: none !important;
  min-width: 2.5rem;
  min-height: 2.5rem;
  position: relative;
}
.pro-results .simplefavorite-button::before, .pro-results .simplefavorite-button::after, .favorite-pos .simplefavorite-button::before, .favorite-pos .simplefavorite-button::after {
  content: "";
  top: 2px;
  width: 50%;
  height: 80%;
  background: #727171;
  border-radius: 25px 25px 0 0;
  display: block;
  position: absolute;
}
.pro-results .simplefavorite-button::before, .favorite-pos .simplefavorite-button::before {
  transform: rotate(-45deg);
  left: 14%;
}
.pro-results .simplefavorite-button::after, .favorite-pos .simplefavorite-button::after {
  transform: rotate(45deg);
  right: 14%;
}
.pro-results .simplefavorite-button.active::before, .pro-results .simplefavorite-button.active::after, .favorite-pos .simplefavorite-button.active::before, .favorite-pos .simplefavorite-button.active::after {
  content: "";
  top: 2px;
  width: 50%;
  height: 80%;
  background: red;
  border-radius: 25px 25px 0 0;
  display: block;
  position: absolute;
}
.pro-results .simplefavorite-button.preset, .favorite-pos .simplefavorite-button.preset {
  box-shadow: none !important;
}

.favorite-pos {
  position: relative;
}
.favorite-pos .pos {
  position: absolute !important;
  bottom: 10px;
  right: 10px;
}
.favorite-pos .pos .simplefavorite-button::before, .favorite-pos .pos .simplefavorite-button::after {
  background: #fff !important;
}
.favorite-pos .pos .simplefavorite-button.active::before, .favorite-pos .pos .simplefavorite-button.active::after {
  background: red !important;
}
.favorite-pos .image-slider-container {
  position: relative;
  width: 100%;
}
.favorite-pos .main-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0 !important;
}
.favorite-pos .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.favorite-pos .slide.active {
  opacity: 1;
}
.favorite-pos .slider-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.favorite-pos .thumbnail-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  padding: 5px 0;
}
.favorite-pos .thumbnail {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
}
.favorite-pos .thumbnail.active {
  border-color: #231815;
}
.favorite-pos .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.favorite-pos .prev-btn, .favorite-pos .next-btn {
  display: block;
  width: 35px;
  height: 35px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
  position: absolute;
  transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  top: 40%;
  z-index: 2;
  border: none;
}
@media screen and (min-width: 1445px) {
  .favorite-pos .prev-btn, .favorite-pos .next-btn {
    width: 45px;
    height: 45px;
    top: 45%;
  }
}
.favorite-pos .prev-btn::before, .favorite-pos .next-btn::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.favorite-pos .prev-btn {
  left: 5%;
}
@media screen and (min-width: 1200px) {
  .favorite-pos .prev-btn {
    left: 4%;
  }
}
.favorite-pos .prev-btn::before {
  border-bottom: 10px solid #fff;
  border-left: 0;
  border-right: 15px solid #231815;
  border-top: 10px solid #fff;
  left: -3px;
}
.favorite-pos .next-btn {
  right: 5%;
}
@media screen and (min-width: 1200px) {
  .favorite-pos .next-btn {
    right: 4%;
  }
}
.favorite-pos .next-btn::before {
  border-bottom: 10px solid #fff;
  border-left: 15px solid #231815;
  border-right: 0;
  border-top: 10px solid #fff;
  left: 3px;
}

.page-404 {
  text-align: center;
  line-height: 5rem;
}

.nav-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav-links li > * {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  height: 45px;
}

.nav-links li > *:not(.dots) {
  width: 45px;
  border-radius: 50%;
  color: #000000;
  background: #efefef;
  transition: color 0.3s ease, background 0.3s ease;
}

.nav-links li > .current,
.nav-links li > a:hover {
  color: #ffffff;
  background: #000000;
}

.page-padding {
  padding: 0 5%;
  max-width: 110rem;
  margin: 0 auto 8rem auto;
}
.page-padding p {
  margin-bottom: 4rem;
}
.page-padding p:last-child {
  margin-bottom: 0;
}
.page-padding p strong {
  font-size: 1.8rem;
}

.qa p {
  margin-bottom: 1rem !important;
}
.qa h4.has-background {
  padding: 1rem;
  margin: 3rem auto;
}
.qa a {
  color: darkblue;
}

.creator-profile {
  padding: 0 5%;
  max-width: 100rem;
  margin: 4rem auto;
}
@media screen and (min-width: 1200px) {
  .creator-profile {
    display: grid;
    grid-template-columns: 30% 65%;
    justify-content: space-between;
    padding: 0;
    margin: 8rem auto;
  }
}
.creator-profile > div:nth-child(2) {
  margin-top: 2rem;
}
.creator-profile > div:nth-child(2) p {
  margin: 1rem 0;
}
.creator-profile > div:nth-child(2) a {
  border: 1px solid #231815;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  margin: 1rem auto;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 1200px) {
  .creator-profile > div:nth-child(2) a {
    margin: 1rem 0;
  }
}
.creator-profile h2 {
  font-family: "Kosugi";
}
@media screen and (min-width: 1200px) {
  .creator-profile h2 {
    text-align: left;
  }
}
.creator-profile .affiliation {
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .creator-profile .affiliation {
    text-align: left;
  }
}
.creator-profile .description {
  text-align: justify;
}

.creator-profile .creator-photo, .creator-profile .circle, .creator-list .creator-photo, .creator-list .circle {
  width: 90vw;
  height: 90vw;
  max-width: 30rem;
  max-height: 30rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.creator-profile .creator-photo, .creator-list .creator-photo {
  height: -moz-fit-content;
  height: fit-content;
}
.creator-profile .creator-photo img, .creator-list .creator-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.creator-profile .circle, .creator-list .circle {
  border-radius: 50%;
  background-color: #b5b5b6;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
  font-size: 2.4rem;
}

.bt-creator-list {
  border: 1px solid #231815;
  border-radius: 2rem;
  color: #231815;
  font-size: 2rem;
  padding: 2rem 4rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 4rem auto;
  font-family: "M PLUS 1p", serif;
  font-weight: 500;
}
.bt-creator-list:hover {
    opacity: .7;
  border: 1px solid #fff;
}

.creator-list {
  padding: 4rem 5%;
  max-width: 100rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (min-width: 1200px) {
  .creator-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1300px) {
  .creator-list {
    padding: 4rem 0;
  }
}
.creator-list .creator-avatar {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.creator-list .creator-photo, .creator-list .circle {
  max-width: 10rem;
  max-height: 10rem;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .creator-list .creator-photo, .creator-list .circle {
    max-width: 15rem;
    max-height: 15rem;
  }
}
.creator-list .creator-item a {
  text-align: center;
}
.creator-list .creator-name {
  padding-top: 2rem;
}
.creator-list li {
  border: 1px solid #231815;
  padding: 2rem 1rem;
}

.form {
  padding: 0 5%;
  max-width: 100rem;
  margin: 0 auto;
}
.form .wpcf7-form-control-wrap {
  width: 100%;
}
.form .grid {
  display: grid;
  grid-template-columns: 2rem 35% 1rem 35%;
  gap: 1rem;
  align-items: center;
}
.form .pro-results {
  padding: 0;
}
.form #sample-list {
  margin-top: 0 !important;
}
.form #sample-list button {
  background-color: #231815;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 5px 1rem;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}
.form #sample-list button:hover {
  background-color: #0056b3;
}
.form #sample-list p {
  line-height: 2rem;
  margin: 1rem 0;
}
.form .wpcf7-previous {
  display: block !important;
}
.form .form-item {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin-top: -1px;
  padding: 20px 0;
  width: 100%;
}
.form .form-item:last-child {
  border-bottom: 1px solid #ddd;
}
@media screen and (min-width: 768px) {
  .form .form-item {
    display: flex;
    align-items: center;
  }
}
.form .form-item .label {
  width: 100%;
  max-width: 350px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .form .form-item .label {
    margin-bottom: 0px;
  }
}
.form .form-item .required {
  border-radius: 5px;
  margin-right: 10px;
  padding-top: 3px;
  padding-bottom: 3px;
  width: 50px;
  display: inline-block;
  text-align: center;
  background: #49B8C6;
  color: #fff;
}
.form .form-item input, .form .form-item textarea {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  width: 100%;
  background: #eaedf2;
  box-sizing: border-box;
  font-size: 16px;
}
.form .form-item input {
  height: 48px;
}
.form .form-item textarea {
  height: 200px;
}
.form .submit, .form .back {
  width: 15rem;
  height: 5rem;
  background-color: #fff;
  border: 0.25px solid #231815;
  border-radius: 1rem;
  font-size: 1.6rem;
  display: block;
}
.form .submit:hover, .form .back:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.form .submit {
  margin: 7rem auto;
}
.form .back {
  margin: 2rem auto -5rem auto;
}

.contact .center {
  text-align: center;
  margin-top: 5rem;
}
.contact .bt {
  border-radius: 2rem;
  color: #fff;
  background-color: #347240;
  font-size: 2rem;
  padding: 2rem 4rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 4rem auto;
}
.contact .form {
  margin-top: clamp(5rem, 2vw, 15rem);
  padding: 0;
}
.contact form .wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
}
.contact form .wpcf7-checkbox .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.contact form .wpcf7-checkbox .wpcf7-list-item input {
  height: 2rem;
  width: 2rem;
}
.contact form span[data-name=menu-751] {
  position: relative;
}
.contact form span[data-name=menu-751]::before, .contact form span[data-name=menu-751]::after {
  position: absolute;
  right: 15px;
  width: 9px;
  height: 6px;
  background-color: #231815;
  content: "";
  pointer-events: none;
}
.contact form span[data-name=menu-751]::before {
  top: calc(50% - 9px);
  -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
          clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.contact form span[data-name=menu-751]::after {
  bottom: calc(50% - 9px);
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.contact form span[data-name=menu-751] select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  box-sizing: border-box;
  width: 100%;
  height: 4rem;
  background-color: #fff;
  border: 0.25px solid #231815;
  border-radius: 1rem;
  padding-left: 0.5rem;
}
.contact input[type=radio] {
  height: auto;
  width: auto;
}
.contact label {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 5px;
}
.contact .wpcf7-list-item-label::before, .contact .wpcf7-list-item-label::after {
  display: none;
}
.contact .wpcf7-list-item {
  margin: 0 10px 0 0 !important;
}
.contact .contact-p {
  margin-bottom: 20px;
}
.contact .contact-p .size {
  font-size: 14px;
}
.contact .contact-p a {
  text-decoration: none !important;
  display: contents;
}
.contact .cd-upload-btn {
  margin: 0 auto !important;
}
.contact .order-mitorizu h4 {
  margin-bottom: 0;
}
.contact .datenum {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.contact .datenum input {
  height: 5rem;
  width: 5rem;
  font-size: 20px;
}
.contact .datenum .wpcf7-form-control-wrap {
  width: -moz-fit-content;
  width: fit-content;
}
.contact .title {
  font-weight: bold;
  position: relative;
  margin: 0 0 1rem 0;
  padding-left: 2rem;
}
.contact .title::before {
  content: "";
  background-color: #8E9C9E;
  width: 6px;
  height: 4rem;
  position: absolute;
  bottom: 7px;
  left: 0;
}
@media (min-width: 768px) {
  .contact .bt-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    margin: 5rem 0;
  }
  .contact .bt-flex .bt {
    margin: 0;
  }
}
.contact .bt-flex img {
  max-width: 20rem;
  max-height: 20rem;
  display: block;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contact .bt-flex img {
    margin: 0;
  }
}
.contact a {
  text-decoration: underline;
  display: block;
  color: darkblue;
}

.category-padding {
  padding: 5% !important;
}

.contact.order .back {
  margin: 4rem auto 0 auto;
}
@media (min-width: 768px) {
  .contact.order .back {
    margin: 0;
  }
}
.contact.order .confirm-back {
  margin: 4rem auto -50px auto;
}

.order-mitorizu {
  background-color: #efefef;
  padding: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 1200px) {
  .order-mitorizu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .order-mitorizu .order-mitorizu-img, .order-mitorizu .order-mitorizu-text {
    width: 49%;
  }
  .order-mitorizu .btn-download {
    width: auto !important;
  }
}
.order-mitorizu h4 {
  width: 100%;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.order-mitorizu .wrap-btn-download {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.order-mitorizu .btn-download {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.4rem;
  color: #fff;
  background-color: #555;
  border-radius: 4px;
  padding: 0.5rem 2rem;
  text-decoration: none;
  margin: 10px 0;
  width: 100%;
  text-align: center;
}
.order-mitorizu small {
  line-height: 1;
}
.order-mitorizu .wrap-mitorizu-btn {
  margin-top: 20px;
  background: #fafafa;
  border: solid 1px #ccc;
}
.order-mitorizu .fb {
  color: #fff;
  background: #000;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  text-align: center;
}
.order-mitorizu .wpcf7-form-control-wrap {
  margin-bottom: 0;
}
.order-mitorizu input {
  background-color: rgba(0, 0, 0, 0);
  border: none;
}

.single-pick > p {
  text-align: center;
  padding: 5rem 5%;
  max-width: 110rem;
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .single-pick > p {
    padding: 10rem 0;
  }
}

.work {
  padding: 5rem 5% 10rem 5%;
}
@media screen and (min-width: 1200px) {
  .work {
    padding: 10rem 5% 15rem 5%;
  }
}
@media screen and (min-width: 1100px) {
  .work .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 6rem auto;
    max-width: 120rem;
    gap: 8rem;
  }
  .work .flex h2, .work .flex h3 {
    width: -moz-max-content;
    width: max-content;
    text-align: center;
    margin: 1rem auto 0 auto;
  }
}
.work p {
  margin: 4rem auto 0 auto;
  width: 100%;
  text-align: justify;
}

.none-pa {
  text-align: center;
  padding: 5rem 5%;
}

.work-select {
  background-color: #f5f5f5;
  padding: 4rem 5%;
}
.work-select .flex {
  max-width: 34rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .work-select .flex {
    display: flex;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
}
.work-select .select-box {
  position: relative;
  width: 34rem;
}
.work-select .select-box::before {
  border-bottom: 8px solid #231815;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  content: "";
  position: absolute;
  right: 10px;
  top: 16px;
  width: 0;
}
.work-select .select-box::after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #231815;
  content: "";
  position: absolute;
  right: 10px;
  top: 29px;
  width: 0;
}
.work-select select {
  width: 100%;
  max-width: 34rem;
  height: 5rem;
  border: 0.25px solid #231815;
  padding-left: 2rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.work-select ::-ms-expand {
  display: none;
}

.pro-title2 {
  padding-top: 2rem;
}
/* @media screen and (min-width: 1200px) {
  .pro-title2 {
    display: flex;
    align-items: baseline;
    gap: 2rem;
  }
} */
.pro-title2 .pro-term {
  border: 0.25px solid #231815;
  padding: 0.5rem 2rem;
  min-width: -moz-max-content;
  min-width: max-content;
}

.single-work-layout {
  padding: 2rem 5% 10rem 5%;
  display: grid;
  justify-content: space-between;
  gap: 2rem;
  max-width: 120rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .single-work-layout {
    padding: 2rem 5% 20rem 5%;
    grid-template-columns: 68% 28%;
    gap: 0;
  }
}
.single-work-layout .work-content h3 {
  font-family: "Kosugi", sans-serif;
}
.single-work-layout .work-content figure {
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .single-work-layout .work-detail {
    margin-top: 4rem;
  }
  .single-work-layout .work-detail h4:nth-child(3) {
    margin-top: 5rem;
  }
}
.single-work-layout .work-detail .post-list {
  margin-bottom: 10px;
}
.single-work-layout .work-detail .post-list .box-img::before {
  padding-top: 100%;
}
.single-work-layout h3 {
  text-align: left;
  margin: 0 0 2rem 0;
}
.single-work-layout h4 {
  font-size: 1.6rem;
  border: 0.25px solid #231815;
  padding: 0.5rem 1rem;
  margin: 1rem auto;
}
.single-work-layout a .box {
  margin-bottom: 1rem;
}

.work-contact {
  border-top: 0.25px solid #231815;
  padding: 4rem 5%;
  max-width: 120rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .work-contact .grid {
    display: grid;
    grid-template-columns: 60% 39%;
    justify-content: space-between;
    max-width: 90rem;
    margin: 5rem auto 0 auto;
  }
}
.work-contact img {
  width: 2rem;
  height: -moz-fit-content;
  height: fit-content;
}
.work-contact a {
  display: block;
  margin: 2rem auto 0 auto;
  background-color: #f5f5f5;
  border: 0.25px solid #231815;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
  width: 30rem;
}
@media screen and (min-width: 768px) {
  .work-contact a {
    width: 100%;
    max-width: 30rem;
  }
}

.bt-worklist {
  margin: 5rem auto 10rem auto;
  background-color: #fff;
  border: 0.25px solid #231815;
  border-radius: 1rem;
  padding: 0.5rem 0;
  width: 30rem;
  display: block;
  text-align: center;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .bt-worklist {
    margin: 15rem auto 20rem auto;
  }
}
@media screen and (min-width: 960px) {
  .bt-worklist:hover {
    opacity: .7;
  }
}

.box-img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.box-img::before {
  content: "";
  padding-top: 70%;
  display: block;
}
.box-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.inner {
  padding: 0 5%;
  max-width: 120rem;
  margin: 5rem auto;
}
@media screen and (min-width: 1200px) {
  .inner {
    margin: 15rem auto;
  }
}

.kaso {
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.kaso p {
  text-align: justify;
}
.kaso .view {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #fff;
  padding: 1rem 2rem;
  letter-spacing: 3px;
  border-radius: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1rem auto;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .kaso .view {
    margin: 3rem auto;
    font-size: 2.4rem;
  }
}
.kaso .view span {
  display: block;
  margin-top: 5px;
}
@media screen and (min-width: 1200px) {
  .kaso .description {
    display: grid;
    grid-template-columns: 35% 55%;
    align-items: center;
    justify-content: space-between;
  }
}
.kaso .description h4 {
  text-align: center;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.5;
  font-weight: 500;
}
.kaso .description h4.span {
  font-size: clamp(25px, 2vw, 35px);
  line-height: 1.5;
}
.kaso .description p {
  padding: 2rem 0;
  line-height: 2;
}
.kaso .description .box-img.other::before {
  padding-top: 120%;
}
@media screen and (min-width: 1200px) {
  .kaso .description .box-img.other::before {
    padding-top: 150%;
  }
}
.kaso h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 800;
  font-size: clamp(5rem, 5vw, 7rem);
  line-height: 1.5;
  position: relative;
  padding-bottom: 2rem;
}
.kaso h3::after {
  content: "";
  width: 8rem;
  height: 1px;
  background-color: #231815;
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}
.kaso h3 span {
  font-weight: 400;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  display: block;
}
.kaso .point {
  display: grid;
  gap: 5rem;
  margin-bottom: 15rem;
}
@media screen and (min-width: 768px) {
  .kaso .point {
    gap: 10rem;
  }
}
@media screen and (min-width: 1200px) {
  .kaso .point {
    gap: 15rem;
  }
}
@media screen and (min-width: 768px) {
  .kaso .point .grid {
    display: grid;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}
.kaso .point .grid .text {
  padding: 2rem 5% 0 5%;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  max-width: 50rem;
}
@media screen and (min-width: 768px) {
  .kaso .point .grid .text {
    padding: 0 10% 0 10%;
  }
}
.kaso .point .grid .text h5 {
  font-size: 2.4rem;
  padding: 2rem 0;
  font-weight: 700;
  line-height: 2;
}
.kaso .point .grid .text p {
  text-align: left;
}
.kaso .point .grid:nth-child(2) {
  grid-template-columns: 65% 35%;
}
.kaso .point .grid:nth-child(2) .text img {
  width: 12%;
}
.kaso .point .grid:nth-child(3) .text img {
  width: 11%;
}
.kaso .point .grid:nth-child(4) {
  grid-template-columns: 65% 35%;
}
.kaso .point .grid:nth-child(4) .text img {
  width: 18%;
}
.kaso .point .grid:nth-child(5) .text img {
  width: 14%;
}
.kaso .point .grid:nth-child(6) {
  grid-template-columns: 65% 35%;
}
.kaso .point .grid:nth-child(6) .text img {
  width: 18%;
}
.kaso .point .grid:nth-child(3), .kaso .point .grid:nth-child(5) {
  grid-template-columns: 35% 65%;
}
@media screen and (min-width: 768px) {
  .kaso .point .grid:nth-child(3) img:nth-child(1), .kaso .point .grid:nth-child(5) img:nth-child(1) {
    order: 2;
  }
}
@media screen and (min-width: 768px) {
  .kaso .point .grid:nth-child(3) .text, .kaso .point .grid:nth-child(5) .text {
    order: 1;
  }
}
.kaso .color .grid, .kaso .color .grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}
@media screen and (min-width: 1200px) {
  .kaso .color .grid, .kaso .color .grid2 {
    margin: 4rem 0;
  }
}
.kaso .color .grid .box-img, .kaso .color .grid2 .box-img {
  border-radius: 2rem;
}
.kaso .color .grid p, .kaso .color .grid2 p {
  text-align: center;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .kaso .color .grid {
    grid-template-columns: repeat(3, 22%);
  }
}
@media screen and (min-width: 768px) {
  .kaso .color .grid2 {
    grid-template-columns: repeat(4, 22%);
  }
}
.kaso .spec img {
  max-width: 50rem;
  margin: 2rem auto 0 auto;
  display: block;
}
.kaso .spec .flex {
  position: relative;
  padding-top: 4rem;
}
.kaso .spec .flex::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #231815;
  position: absolute;
  top: 3rem;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}
@media screen and (min-width: 1200px) {
  .kaso .spec .flex::before {
    top: 6rem;
    width: 50%;
    max-width: 60rem;
  }
}
@media screen and (min-width: 660px) {
  .kaso .spec .flex {
    display: flex;
    justify-content: center;
    gap: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .kaso .spec .flex {
    font-size: 2rem;
    padding-top: 10rem;
  }
}
.kaso .spec .flex th {
  font-weight: normal;
}
.kaso .attention img {
  max-width: 80rem;
  margin: 0 auto;
  display: block;
}
.kaso .attention ul {
  background-color: #D8BE93;
  padding: 4rem 5%;
}
.kaso .attention ul li {
  list-style: inside;
  padding-bottom: 2rem;
  max-width: 100rem;
  margin: 0 auto;
  font-size: 2rem;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .kaso .attention ul li {
    list-style: disc;
  }
}
.kaso .attention ul li:last-child {
  padding-bottom: 0;
}
.kaso .attention a {
  border: 1px solid #D8BE93;
  border-radius: 2rem;
  color: #D8BE93;
  font-size: 2rem;
  padding: 2rem 4rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 4rem auto;
}
.kaso .attention a:hover {
  background-color: #D8BE93;
  border: 1px solid #fff;
  color: #fff;
  opacity: 1;
}
.kaso .normalimg {
  padding: 5rem 0;
}
@media screen and (min-width: 1200px) {
  .kaso .normalimg {
    padding: 10rem 0;
  }
}
.kaso .pro-wrap .box-img::before {
  padding-top: 100%;
}

@media screen and (min-width: 768px) {
  .laminate h3, .orderflow h3, .attentiontyui h3 {
    display: flex;
    align-items: center;
    gap: 4rem;
  }
}
.laminate h3::after, .orderflow h3::after, .attentiontyui h3::after {
  display: none;
}

.kaso .orderflow .flow {
  max-width: 120rem;
  margin: 0 auto;
}
.kaso .orderflow .flow > div {
  display: grid;
  align-items: center;
  grid-template-columns: max-content 1fr;
  gap: 2rem;
  padding: 4rem 0;
}
.kaso .orderflow .flow > div:last-child .after::after {
  display: none;
}
.kaso .orderflow .flow .after {
  position: relative;
}
.kaso .orderflow .flow .after img {
  display: block;
  max-width: 9rem;
}
@media screen and (min-width: 550px) {
  .kaso .orderflow .flow .after img {
    max-width: 17rem;
  }
}
.kaso .orderflow .flow .after::after {
  content: "";
  position: absolute;
  bottom: -5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0px;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 21px solid #685625;
}
.kaso .orderflow .flow .text-container {
  position: relative;
  padding: 0;
  display: block;
  margin: -2rem 0 -2rem auto;
  width: 80%;
}
.kaso .orderflow .flow .text-container .angled-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #D8BE93;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 15% 0);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 15% 0);
  z-index: -1;
}
.kaso .orderflow .flow .text-container p {
  position: relative;
  color: #fff;
  font-size: 1.6rem;
  z-index: 1;
  padding: 3rem 0 3rem 3rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .kaso .orderflow .flow .text-container p {
    font-size: 2.4rem;
  }
}
.kaso .orderflow .flow h5 {
  font-size: 1.8rem;
  border-bottom: 1px solid #231815;
  padding-bottom: 1rem;
}
@media screen and (min-width: 1200px) {
  .kaso .orderflow .flow h5 {
    font-size: 2.4rem;
  }
}
.kaso .orderflow .flow p {
  padding-top: 1rem;
}
.kaso .orderflow .tyui {
  text-align: center;
  font-size: 18px;
}

@media screen and (min-width: 1200px) {
  .kaso.hikkaki .description {
    grid-template-columns: 55% 35%;
  }
  .kaso.hikkaki .description div {
    order: 2;
  }
  .kaso.hikkaki .description img {
    order: 1;
  }
}
.kaso.hikkaki .before-after {
  margin-bottom: 10rem;
}
.kaso.hikkaki .before-after img:first-child {
  max-width: 100rem;
  margin: 0 auto 10rem auto;
  display: block;
}
.kaso.hikkaki .orderflow .flow .after::after {
  border-top: 21px solid #E5E4E1;
}

@media screen and (min-width: 1200px) {
  .js-span {
    display: flex;
    justify-content: space-between;
  }
  .kaso.hikkaki .before-after {
    margin-bottom: 50rem;
  }
}

@media screen and (min-width: 768px) {
  .floor .spec .grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media screen and (min-width: 1300px) {
  .floor .spec .grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
.floor .spec .grid .box-img::before {
  padding-top: 100%;
}
.floor .spec .grid .title {
  font-size: 1.8rem;
}
.floor .spec .black {
  color: #231815;
}

.kaso-layout .inner > div {
  margin: 10rem auto;
}
.kaso-layout .effect {
  margin: 5rem auto;
}
@media screen and (min-width: 768px) {
  .kaso-layout .effect {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 10rem auto;
  }
}
.kaso-layout .effect div {
  padding: 2rem 0;
}
@media screen and (min-width: 768px) {
  .kaso-layout .effect div {
    padding: 0 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .kaso-layout .effect div {
    padding: 0 4rem;
  }
}
.kaso-layout .effect div:nth-child(1), .kaso-layout .effect div:nth-child(2) {
  border-bottom: 2px dashed #7a6a56;
}
@media screen and (min-width: 768px) {
  .kaso-layout .effect div:nth-child(1), .kaso-layout .effect div:nth-child(2) {
    border-bottom: none;
    border-right: 2px dashed #7a6a56;
  }
  .kaso-layout .effect div:nth-child(1) .title, .kaso-layout .effect div:nth-child(2) .title {
    margin-bottom: 4rem;
  }
}
.kaso-layout .effect img {
  max-width: 15rem;
  margin: 0 auto;
  display: block;
}
.kaso-layout .effect .title {
  font-size: clamp(2.4rem, 3vw, 2.8rem);
  line-height: 1.5;
}
.kaso-layout .effect .title span {
  display: block;
  font-size: 1.4rem;
  text-align: right;
}
.kaso-layout .effect p span {
  font-size: 14px;
}
.kaso-layout .lh {
  line-height: 20px;
  display: block;
}
.kaso-layout .effect .title, .kaso-layout .point .title {
  font-weight: bold;
  text-align: center;
  margin: 2rem auto;
}
.kaso-layout .spec h3 {
  margin-bottom: 40px;
}
.kaso-layout .spec .grid {
  display: grid;
  gap: 4rem;
  padding: 5rem 0;
}
@media screen and (min-width: 768px) {
  .kaso-layout .spec .grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 5rem 0 2rem 0;
  }
}
.kaso-layout .spec .grid p {
  margin-top: 1rem;
}
.kaso-layout .spec .grid img {
  max-width: 100%;
}
.kaso-layout .spec .title {
  font-weight: 700;
  position: relative;
  padding-left: 2rem;
}
.kaso-layout .spec .title::before {
  content: "";
  background-color: #7a6a56;
  width: 6px;
  height: 4rem;
  position: absolute;
  bottom: 5px;
  left: 0;
}
.kaso-layout .spec .fire .title {
  margin: 8rem auto 2rem auto;
}
.kaso-layout .spec .fire > ul {
  background-color: #f2e6d2;
  padding: 5%;
  border-radius: 1rem;
  margin: 2rem auto;
  font-size: clamp(1.6rem, 2vw, 2rem);
}
@media screen and (min-width: 768px) {
  .kaso-layout .spec .fire > ul {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 4rem;
    justify-content: center;
  }
}
.kaso-layout .variation .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 4rem auto;
}
@media screen and (min-width: 1200px) {
  .kaso-layout .variation .grid {
    gap: 4rem;
  }
}
.kaso-layout .variation .grid .box-img::before {
  padding-top: 100%;
}
.kaso-layout .how .title {
  font-weight: 800;
  position: relative;
  padding: 0 0 1rem 2rem;
  border-bottom: 1px solid #7a6a56;
  margin: 5rem 0 3rem 0;
}
.kaso-layout .how .title::before {
  content: "";
  background-color: #7a6a56;
  width: 6px;
  height: 4rem;
  position: absolute;
  bottom: 13px;
  left: 0;
}
.kaso-layout .how .work-step {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 2rem;
  grid-template-rows: 1fr;
  position: relative;
}
@media screen and (min-width: 768px) {
  .kaso-layout .how .work-step {
    grid-template-columns: repeat(3, 1fr);
  }
}
.kaso-layout .how .work-step .flex {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.kaso-layout .how .work-step .flex h4 {
  color: #7a6a56;
  font-size: 3rem;
  font-weight: 100;
}
.kaso-layout .how .work-step .flex img {
  width: 3.5rem;
  height: -moz-fit-content;
  height: fit-content;
}
.kaso-layout .how .work-step .box-img {
  margin-bottom: 1rem;
}
.kaso-layout .how .work-step .box-img::before {
  padding-top: 100%;
}
.kaso-layout .how .work-step h5 {
  margin: 0;
  padding: 1rem;
  height: 5rem;
  align-items: center;
  justify-content: center;
  display: flex;
  color: #fff;
  background-color: #7a6a56;
  font-size: clamp(1.8rem, 2vw, 2rem);
}
@media screen and (min-width: 768px) {
  .kaso-layout .orderflow h3 {
    display: flex;
    align-items: center;
    gap: 4rem;
  }
}
.kaso-layout .orderflow h3::after {
  display: none;
}
.kaso-layout .orderflow .flow .after::after {
  border-top: 21px solid #d8be93;
}
.kaso-layout .bt {
  border: 1px solid #231815;
  border-radius: 2rem;
  color: #231815;
  font-size: 2rem;
  padding: 2rem 4rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 4rem auto;
}
.kaso-layout .bt:hover {
  border: 1px solid #fff;
  opacity: .7;
}

.remake {
  color: #7a6a56 !important;
}
.remake h3::after {
  background-color: #7a6a56 !important;
}
.remake .variation p, .remake .variation a {
  color: #7a6a56 !important;
}
.remake .variation .picklist-bt {
  border: 1px solid #7a6a56 !important;
}
.remake .variation .picklist-bt:hover {
  background-color: #7a6a56;
  color: #fff !important;
}
.remake .inner {
  margin: 5rem auto 0 auto;
}
.remake .bt {
  border: 1px solid #7a6a56;
  color: #7a6a56;
}
.remake .bt:hover {
  background-color: #7a6a56;
  border: 1px solid #fff;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .rollscreen .select h3 {
    display: flex;
    align-items: center;
    gap: 4rem;
  }
}
.rollscreen .select h3::after {
  display: none;
}

.remake .inner, .floor .inner {
  margin: 5rem auto 0 auto;
}

.floor .spec .title::before {
  background-color: #231815;
}

.rollscreen .view {
  background-color: #d3d3d4;
  color: #fff;
  padding: 3rem 0 0 0;
  margin-top: 5rem;
}
.rollscreen .view .title {
  font-size: clamp(3rem, 3vw, 4rem);
  line-height: 1.5;
  text-align: center;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .rollscreen .view .title {
    text-align: left;
    display: flex;
    justify-content: space-between;
    width: 50%;
    max-width: 40rem;
  }
}
.rollscreen .view .inner p:nth-child(3) {
  text-align: center;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .rollscreen .view .inner p:nth-child(3) {
    text-align: left;
  }
}
.rollscreen .view a {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #fff;
  padding: 1rem 2rem;
  letter-spacing: 3px;
  border-radius: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 4rem auto 0 auto;
}
@media screen and (min-width: 768px) {
  .rollscreen .view a {
    margin: 0rem 0 0 auto;
  }
}
.rollscreen .view a span {
  display: block;
  margin-top: 5px;
}
.rollscreen .view .center-img img {
  -o-object-position: top;
     object-position: top;
}
.rollscreen .select > div {
  margin: 5rem auto;
}
@media screen and (min-width: 768px) {
  .rollscreen .select > div {
    margin: 10rem auto;
  }
  .rollscreen .select > div:nth-child(2) {
    margin: 0;
  }
}
.rollscreen .select .title {
  line-height: 4rem;
  font-size: clamp(2.8rem, 3vw, 4rem);
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 4rem auto;
  padding-bottom: 2rem;
  font-weight: 500;
}
.rollscreen .select .title::after {
  content: "";
  width: 8rem;
  height: 1px;
  background-color: #231815;
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}
.rollscreen .select .temp {
  gap: 5rem;
  display: grid;
}
@media screen and (min-width: 768px) {
  .rollscreen .select .temp {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}
.rollscreen .select .temp .num {
  font-weight: 800;
  font-size: clamp(6rem, 8vw, 8rem);
}
.rollscreen .select .temp .num span {
  color: #231815;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  font-weight: 500;
  padding: 2rem 0 0 1rem;
  display: inline-block;
}
.rollscreen .select .temp img {
  margin: 4rem auto;
  display: block;
}
.rollscreen .select .temp div:nth-child(1) {
  position: relative;
  padding-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .rollscreen .select .temp div:nth-child(1) {
    padding-bottom: 0;
    padding-right: 4rem;
  }
}
@media screen and (min-width: 1200px) {
  .rollscreen .select .temp div:nth-child(1) {
    padding-right: 8rem;
  }
}
.rollscreen .select .temp div:nth-child(1)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: repeating-linear-gradient(90deg, #231815, #231815 12px, transparent 12px, transparent 22px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 2px;
  width: 100%;
  height: 1px;
}
@media screen and (min-width: 768px) {
  .rollscreen .select .temp div:nth-child(1)::after {
    left: auto;
    right: 0;
    background-image: repeating-linear-gradient(180deg, #231815, #231815 12px, transparent 12px, transparent 22px);
    background-position: right top;
    background-repeat: repeat-y;
    background-size: 2px 100%;
    width: 1px;
    height: 96%;
    top: 70px;
  }
}
@media screen and (min-width: 768px) {
  .rollscreen .select .temp div:nth-child(2) {
    padding-left: 4rem;
  }
}
@media screen and (min-width: 1200px) {
  .rollscreen .select .temp div:nth-child(2) {
    padding-left: 8rem;
  }
}
@media screen and (min-width: 768px) {
  .rollscreen .select .temp div:nth-child(2) img:nth-child(4) {
    margin-top: 7rem;
  }
}
@media screen and (min-width: 865px) {
  .rollscreen .select .temp .fabric1 .num span {
    padding: 0 0 0 1rem;
  }
}
@media screen and (min-width: 878px) {
  .rollscreen .select .temp .fabric2 img:nth-child(2) {
    margin-top: 50px;
  }
}
.rollscreen .select .max-img img {
  max-width: 400px;
}
.rollscreen .select .margin-top {
  margin-top: 5rem;
}
.rollscreen .select .tailoring div p:last-child {
  text-align: center;
}
.rollscreen .maintenance {
  background-color: #8E9C9E;
  color: #fff;
}
.rollscreen .maintenance .inner {
  padding: 50px 0;
  margin: 5rem auto 0 auto;
}
@media screen and (min-width: 768px) {
  .rollscreen .maintenance h3 {
    display: flex;
    align-items: baseline;
    gap: 4rem;
  }
}
.rollscreen .maintenance h3::after {
  display: none;
}
.rollscreen .maintenance .title {
  font-weight: 700;
  position: relative;
  padding: 0 0 1rem 2rem;
  margin: 5rem 0 0 0;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
}
.rollscreen .maintenance .title::before {
  content: "";
  background-color: #fff;
  width: 6px;
  height: 4rem;
  position: absolute;
  bottom: 13px;
  left: 0;
}
.rollscreen .maintenance .margin {
  margin-left: 2rem;
}
.rollscreen .orderflow .flow .after::after {
  border-top: 21px solid #8aa479;
}
.rollscreen .orderflow .flow .text-container .angled-background {
  background-color: #8aa479;
}
.rollscreen .bt {
  border: 1px solid #8e9c9e;
  border-radius: 2rem;
  color: #8e9c9e;
  font-size: 2rem;
  padding: 2rem 4rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 4rem auto;
}
.rollscreen .bt:hover {
  background-color: #8e9c9e;
  border: 1px solid #fff;
  color: #fff;
  opacity: 1;
}

.main-height {
  height: 80vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.wall-detail .type {
  position: relative;
}
.wall-detail .type .inner {
  padding: 10rem 5%;
}
.wall-detail .type .inner h3 {
  line-height: 1.5;
}
.wall-detail .type .paper {
  width: 20%;
  max-width: 40rem;
  position: absolute;
  top: 0;
  left: 0;
}
.wall-detail .type .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 2rem;
  justify-content: space-between;
  text-align: center;
  padding: 4rem 0;
}
@media screen and (min-width: 768px) {
  .wall-detail .type .grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 8rem 0;
  }
}
.wall-detail .type .grid h5 {
  font-size: clamp(3rem, 2vw, 6rem);
  font-weight: 500;
  border-bottom: 1px solid #231815;
  padding: 2rem 0;
}
.wall-detail .type .grid p {
  text-align: center;
  margin-top: 1rem;
}
.wall-detail .type .text {
  border: 1px solid #231815;
  padding: 2rem;
  border-radius: 2rem;
  line-height: 4rem;
}
.wall-detail .type .tyui {
  text-align: center !important;
  margin-bottom: 4rem;
  margin-top: -2rem;
}
@media screen and (min-width: 1200px) {
  .wall-detail .type .tyui {
    margin-top: -6rem;
  }
}
.wall-detail .laminate .grid {
  display: grid;
  gap: 2rem;
  padding: 5rem 0;
}
@media screen and (min-width: 768px) {
  .wall-detail .laminate .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.wall-detail .laminate .grid p {
  margin-top: 1rem;
}
.wall-detail .attentiontyui {
  background-color: #8E9C9E;
  color: #fff;
}
.wall-detail .attentiontyui .inner {
  padding: 50px 0;
  margin: 5rem auto 0 auto;
}
.wall-detail .attentiontyui .inner > div {
  margin: 0 auto;
}
.wall-detail .attentiontyui .text {
  padding-left: 2rem;
  font-size: 1.8rem;
}
.wall-detail .attentiontyui .text .title {
  font-weight: 700;
  position: relative;
  margin-bottom: 1rem;
}
.wall-detail .attentiontyui .text .title::before {
  content: "";
  background-color: #fff;
  width: 6px;
  height: 4rem;
  position: absolute;
  bottom: 7px;
  left: -2rem;
}
.wall-detail .attentiontyui .text div {
  margin: 6rem 0;
}
.wall-detail .orderflow .flow .after::after {
  border-top: 21px solid #8AA479;
}
.wall-detail .orderflow .flow .text-container .angled-background {
  background-color: #8AA479;
}
.wall-detail .orderflow .tyui {
  color: #8AA479;
}
.wall-detail .bt {
  border: 1px solid #8E9C9E;
  border-radius: 2rem;
  color: #8E9C9E;
  font-size: 2rem;
  padding: 2rem 4rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 4rem auto;
}
.wall-detail .bt:hover {
  background-color: #8E9C9E;
  border: 1px solid #fff;
  color: #fff;
  opacity: 1;
}
.wall-detail .wall-slider {
  position: relative;
  padding: 0 2%;
}
.wall-detail .wall-slider .slick-prev, .wall-detail .wall-slider .slick-next {
  display: block;
  width: 35px;
  height: 35px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
  position: absolute;
  transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  top: 50%;
  z-index: 2;
}
@media screen and (min-width: 1200px) {
  .wall-detail .wall-slider .slick-prev, .wall-detail .wall-slider .slick-next {
    width: 45px;
    height: 45px;
  }
}
.wall-detail .wall-slider .slick-prev::before, .wall-detail .wall-slider .slick-next::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.wall-detail .wall-slider .slick-prev {
  left: 5%;
}
@media screen and (min-width: 1200px) {
  .wall-detail .wall-slider .slick-prev {
    left: 4%;
  }
}
.wall-detail .wall-slider .slick-prev::before {
  border-bottom: 10px solid #fff;
  border-left: 0;
  border-right: 15px solid #231815;
  border-top: 10px solid #fff;
  left: -3px;
}
.wall-detail .wall-slider .slick-next {
  right: 5%;
}
@media screen and (min-width: 1200px) {
  .wall-detail .wall-slider .slick-next {
    right: 4%;
  }
}
.wall-detail .wall-slider .slick-next::before {
  border-bottom: 10px solid #fff;
  border-left: 15px solid #231815;
  border-right: 0;
  border-top: 10px solid #fff;
  left: 3px;
}
.wall-detail .wall-slider li {
  margin: 0 2rem;
}

.sealwall .spec {
  justify-content: space-between;
  text-align: center;
  padding: 4rem 0;
  max-width: 50rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .sealwall .spec {
    padding: 8rem 0;
  }
}
.sealwall .spec h5 {
  font-size: clamp(3rem, 2vw, 6rem);
  font-weight: 500;
  border-bottom: 1px solid #231815;
  padding: 3rem 0;
}
.sealwall .spec p {
  text-align: center;
  margin-top: 1rem;
}
.sealwall .attentiontyui .text {
  border-bottom: none;
}
.sealwall .attentiontyui .inner > div {
  margin: 0 auto;
}

.kaso-detail {
  padding: clamp(10rem, 2vw, 20rem) 5%;
  max-width: 120rem;
  margin: 0 auto;
}
.kaso-detail h2 {
  font-family: "M PLUS 1p", serif;
  font-weight: 800;
  border-bottom: 1px solid #231815;
  padding-bottom: 2rem;
  margin: 4rem auto 0 auto;
}
.kaso-detail h3 {
  font-family: "M PLUS 1p", serif;
  font-weight: 800;
  line-height: 4rem;
  font-size: clamp(2.5rem, 3vw, 3rem);
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 4rem auto;
  padding-bottom: 2rem;
}
.kaso-detail h3::after {
  content: "";
  width: 18rem;
  height: 1px;
  background-color: #231815;
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}
.kaso-detail .title p {
  text-align: center !important;
  margin-top: -3rem;
}
.kaso-detail section {
  padding: 4rem 0;
}
.kaso-detail section h4 {
  font-size: 2rem;
  color: #347240;
  font-family: "M PLUS 1p", serif;
  font-weight: 500;
  padding-bottom: 1rem;
}
@media screen and (min-width: 1200px) {
  .kaso-detail section h4 {
    font-size: 2.4rem;
  }
}
.kaso-detail section img {
  margin-top: 2rem;
}
.kaso-detail section .img-title {
  font-size: 2rem;
  color: #fff;
  background-color: #49B8C6;
  padding: 1rem 4rem;
  border-radius: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "M PLUS 1p", serif;
  font-weight: 500;
  margin: 4rem 0;
}
.kaso-detail section .measurement3 {
  max-width: 90rem;
  margin: 0 auto;
  display: block;
}
.kaso-detail section .red {
  margin-top: 4rem;
}
.kaso-detail section .grid {
  display: grid;
}
@media screen and (min-width: 768px) {
  .kaso-detail section .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .kaso-detail section .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.kaso-detail section .measurement6 {
  max-width: 40rem;
  margin: 4rem auto 0 auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .kaso-detail section .flex {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2rem;
  }
}
.kaso-detail section .flex img {
  max-width: 60rem;
}
.kaso-detail section .flex p {
  margin: 2rem 0 0 auto;
}
@media screen and (min-width: 768px) {
  .kaso-detail section .flex p {
    margin: 0;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.kaso-detail section .screen {
  gap: 5rem;
  display: grid;
}
@media screen and (min-width: 768px) {
  .kaso-detail section .screen {
    grid-template-columns: repeat(2, 1fr);
  }
}
.kaso-detail section .screen .num {
  font-family: "Montserrat", serif;
  font-size: clamp(6rem, 8vw, 8rem);
}
.kaso-detail section .screen .num span {
  color: #231815;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  font-family: "Kosugi";
  padding-left: 1rem;
}
.kaso-detail section .screen img {
  width: 70%;
  margin: 4rem auto;
  display: block;
}
.kaso-detail section .screen div:nth-child(1) {
  position: relative;
  padding-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .kaso-detail section .screen div:nth-child(1) {
    padding-bottom: 0;
    padding-right: 4rem;
  }
}
.kaso-detail section .screen div:nth-child(1)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: repeating-linear-gradient(90deg, #231815, #231815 12px, transparent 12px, transparent 22px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 2px;
  width: 100%;
  height: 1px;
}
@media screen and (min-width: 768px) {
  .kaso-detail section .screen div:nth-child(1)::after {
    left: auto;
    right: 0;
    background-image: repeating-linear-gradient(180deg, #231815, #231815 12px, transparent 12px, transparent 22px);
    background-position: right top;
    background-repeat: repeat-y;
    background-size: 2px 100%;
    width: 1px;
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .kaso-detail section .screen div:nth-child(2) img:nth-child(4) {
    margin-top: 7rem;
  }
}
.kaso-detail section .screen div img {
  max-height: 40rem;
  width: auto;
}

.measurement.tub a {
  background-color: #fff !important;
  border: 1px solid #49B8C6;
  color: #231815 !important;
}

.kaso-detail .tub, .kaso-detail .tub2, .kaso-detail .tub3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
  gap: 1rem;
  margin: 3rem auto;
}
@media screen and (min-width: 768px) {
  .kaso-detail .tub, .kaso-detail .tub2, .kaso-detail .tub3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.kaso-detail .tub a, .kaso-detail .tub2 a, .kaso-detail .tub3 a {
  border-radius: 5px;
  padding: 1rem;
  align-items: center;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .kaso-detail .tub a, .kaso-detail .tub2 a, .kaso-detail .tub3 a {
    padding: 2rem;
  }
}
.kaso-detail .tub a {
  color: #fff;
  background-color: #49B8C6;
}
@media screen and (min-width: 1300px) {
  .kaso-detail .tub2, .kaso-detail .tub3 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.kaso-detail .tub2 a, .kaso-detail .tub3 a {
  border: 1px solid #49B8C6;
  min-height: 60px;
}
.kaso-detail .tub2 a:hover, .kaso-detail .tub3 a:hover {
  opacity: 1;
  background-color: #49B8C6;
  color: #fff;
}
.kaso-detail .tub3 a {
  min-height: -moz-fit-content;
  min-height: fit-content;
}
.kaso-detail .guide-title {
  text-align: center;
  font-size: 20px;
  margin-bottom: 40px;
}
.kaso-detail #basic-seal-remake, .kaso-detail #gold-wall, .kaso-detail #screen, .kaso-detail #carpet, .kaso-detail #floor-hikkaki {
  margin: 10rem auto;
}
.kaso-detail #basic-seal-remake h3 span, .kaso-detail #gold-wall h3 span, .kaso-detail #screen h3 span, .kaso-detail #carpet h3 span, .kaso-detail #floor-hikkaki h3 span {
  background-color: #49B8C6;
  font-weight: 500;
  line-height: 3.5;
  font-size: 1.8rem;
  padding: 1rem;
  color: #fff;
}
.kaso-detail #basic-seal-remake .yuryo, .kaso-detail #gold-wall .yuryo, .kaso-detail #screen .yuryo, .kaso-detail #carpet .yuryo, .kaso-detail #floor-hikkaki .yuryo {
  background-color: red;
}
@media screen and (min-width: 1100px) {
  .kaso-detail #gold-wall .title .br {
    display: none;
  }
}
.kaso-detail #basic-seal-remake {
  margin: 0;
}
.kaso-detail .flow h5 {
  font-size: clamp(2rem, 2vw, 2.2rem);
  border-bottom: 1px solid #231815;
  padding-bottom: 1rem;
  margin: 4rem auto 1rem auto;
}
.kaso-detail .flow h5 span {
  font-family: "Montserrat", serif;
  font-size: clamp(4rem, 6vw, 6rem);
  margin-right: 1rem;
}
.kaso-detail .flow p {
  font-family: "Kosugi", sans-serif;
}
.kaso-detail.caution .title {
  margin-top: 2rem;
  color: #49B8C6;
}
.kaso-detail.payment p a {
  color: #49B8C6;
}
@media screen and (min-width: 768px) {
  .kaso-detail.caution h2 br {
    display: none;
  }
}

.requisition {
  margin-top: 5rem;
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .requisition {
    grid-template-columns: repeat(3, 1fr);
  }
}
.requisition img {
  width: 8rem;
  margin-top: 0 !important;
}
.requisition > a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .requisition > a {
    gap: 1rem;
  }
}
.requisition .excel {
  background-color: rgba(99, 183, 98, 0.4);
}
.requisition .pdf {
  background-color: rgba(255, 0, 0, 0.2);
}
.requisition .fax {
  background-color: #EFEFEF;
}

.sampleclaim .title p {
  text-align: left !important;
}
.sampleclaim .sampleclaim1 {
  margin: 4rem 0;
}
.sampleclaim .flow-title {
  font-family: "M PLUS 1p", serif;
  font-weight: 500;
  font-size: 2rem;
}
.sampleclaim .grid3, .sampleclaim .grid4 {
  font-family: "M PLUS 1p", serif;
  font-weight: 500;
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .sampleclaim .grid3, .sampleclaim .grid4 {
    grid-template-columns: 1fr 3rem 1fr 3rem 1fr;
    gap: 0;
  }
}
.sampleclaim .grid3 p:nth-child(2), .sampleclaim .grid4 p:nth-child(2) {
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 800;
}
.sampleclaim .grid3 p:nth-child(3), .sampleclaim .grid4 p:nth-child(3) {
  padding-left: 1.8rem;
}
.sampleclaim .grid3 img, .sampleclaim .grid4 img {
  display: block;
  max-width: 12rem;
  margin: 2rem auto;
}
.sampleclaim .grid3 .yajirushi, .sampleclaim .grid4 .yajirushi {
  transform: rotate(90deg);
  width: 3rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .sampleclaim .grid3 .yajirushi, .sampleclaim .grid4 .yajirushi {
    transform: rotate(0);
    height: -moz-fit-content;
    height: fit-content;
    margin-top: 5rem;
  }
}
.sampleclaim .bt-sample {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin: 4rem auto;
}
@media screen and (min-width: 768px) {
  .sampleclaim .bt-sample {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}
.sampleclaim .bt-sample a {
  border: 1px solid #231815;
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
  width: 26rem;
  margin: 2rem auto 0 auto;
}
.sampleclaim .bt-sample a:hover {
  opacity: .7;
}
@media screen and (min-width: 768px) {
  .sampleclaim .bt-sample a {
    margin: 0;
    width: 32rem;
  }
}
.sampleclaim .flex2 {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sampleclaim .flex2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  .sampleclaim .flex2 > div {
    width: 31%;
  }
}
.sampleclaim .flex2 .text {
  background-color: #EFEFF0;
  padding: 2rem 0;
  margin-top: -1rem;
}
.sampleclaim .flex2 div:nth-child(1) .text,.sampleclaim .flex2 div:nth-child(3) .text {
    padding: 3.5rem 0;
}
.sampleclaim .flex2 .text p {
  font-size: 1.8rem;
}
.sampleclaim .flex2 .text p:nth-child(1) {
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .sampleclaim .grid4 {
    grid-template-rows: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .sampleclaim .grid4 .sp {
    display: none;
  }
}
.sampleclaim .attentiontyui h3 {
  font-family: "Montserrat", serif;
  font-size: 5rem;
  line-height: 5rem;
  position: relative;
  padding-bottom: 2rem;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .sampleclaim .attentiontyui h3 {
    display: flex;
    align-items: center;
    gap: 4rem;
  }
}
.sampleclaim .attentiontyui h3 span {
  font-family: "Kosugi", sans-serif;
  font-size: 1.8rem;
  display: block;
}
.sampleclaim .attentiontyui .text {
  padding-left: 2rem;
  font-size: 1.8rem;
}
.sampleclaim .attentiontyui .text .title {
  font-weight: 800;
  position: relative;
  margin-bottom: 1rem;
  font-family: "M PLUS 1p", serif;
}
.sampleclaim .attentiontyui .text .title::before {
  content: "";
  background-color: #8E9C9E;
  width: 6px;
  height: 4rem;
  position: absolute;
  bottom: 7px;
  left: -2rem;
}
.sampleclaim .attentiontyui .text div {
  margin: 6rem 0;
}
.sampleclaim .attentiontyui .flex {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}
@media screen and (min-width: 768px) {
  .sampleclaim .attentiontyui .flex img {
    width: 47%;
  }
}

.kaso-detail.sample-title, .kaso-detail.contact {
  padding: clamp(10rem, 2vw, 20rem) 5% clamp(5rem, 2vw, 15rem) 5%;
  max-width: 100rem;
}

.delivery section .bold {
  font-family: "M PLUS 1p", serif;
  font-weight: 800;
  font-size: 2.4rem;
  margin: 4rem 0;
}
.delivery .text {
  padding-left: 2rem;
  font-size: 1.8rem;
}
.delivery .text .title {
  font-weight: 800;
  position: relative;
  margin-bottom: 1rem;
  font-family: "M PLUS 1p", serif;
}
.delivery .text .title::before {
  content: "";
  background-color: #8E9C9E;
  width: 6px;
  height: 4rem;
  position: absolute;
  bottom: 7px;
  left: -2rem;
}
.delivery .text img {
  max-width: 80rem;
  margin: 4rem auto 0 auto;
  display: block;
}
.delivery .delivery-date {
  border-collapse: collapse;
  margin: 4rem auto;
}
.delivery .delivery-date th, .delivery .delivery-date td {
  border: 1px solid #231815;
  padding: 2rem;
  margin-top: -1px;
}
.delivery .delivery-date th {
  background-color: #8E9C9E;
  color: #fff;
}
.delivery .delivery-date span {
  font-size: 2.4rem;
}
.delivery .delivery-date p.red {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 1199px) {
  .delivery .delivery-date tr {
    display: grid;
    align-items: center;
  }
}
.delivery .notice-date .notice-date01 {
  text-align: center;
}
.delivery .notice-date .notice-date01 span {
  margin: 0 1rem;
}
.delivery .notice-date .notice-date01 span:nth-child(1) {
  color: #49B8C6;
}
.delivery .notice-date .notice-date01 span:nth-child(2) {
  color: #63b762;
}
.delivery .notice-date .notice-date01 span:nth-child(3) {
  color: red;
}
.delivery .notice-date table {
  text-align: left;
  border: 1px solid #231815;
  width: 100%;
  padding: 2rem;
  margin: 2rem auto;
}
.delivery .notice-date table tr:first-child th {
  padding-top: 0;
}
.delivery .notice-date table th {
  padding-top: 2rem;
  color: #8e9c9e;
}
.delivery .notice-date table td {
  border-bottom: 1px solid #8e9c9e;
  padding-bottom: 1rem;
}
.delivery .notice-date table td span {
  margin-right: 1rem;
  display: inline-block;
}
.delivery .notice-date table .fc-blue {
  color: #49B8C6;
}
.delivery .notice-date table .fc-green {
  color: #63b762;
}
.delivery .notice-date table .fc-pink {
  color: red;
}

.about .title-heart {
  height: 94px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 94px;
  text-align: center;
  background-image: url(../img/about/bg-heart.png);
  background-position: center center;
  background-repeat: no-repeat;
  margin-bottom: 2rem;
}
.about .center {
  text-align: center;
  font-family: "M PLUS 1p", serif;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 800;
  margin: 2rem auto;
}
.about .about-product {
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 1200px) {
  .about .about-product {
    grid-template-columns: repeat(3, 1fr);
  }
}
.about .about-product .title {
  font-weight: bold;
  text-align: center;
  margin: 1rem auto;
}
.about .about-product a {
  text-align: center;
  border-radius: 5px;
  padding: 1rem;
  color: #fff;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2rem auto;
}
.about .about-product div:nth-child(1) a {
  background-color: #8E9C9E;
}
.about .about-product div:nth-child(2) a {
  background-color: #7a6a56;
}
.about .about-product div:nth-child(3) a {
  background-color: #7a6a56;
}
.about .print-img {
  margin: 2rem auto;
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .about .print-img {
    grid-template-columns: repeat(2, 1fr);
  }
  .about .print-img ul:nth-child(2) {
    order: 3;
  }
}
.about .print-img p {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
.about .print-img p img {
  width: 50%;
  margin-top: 0;
}
.about .print-img div:nth-child(2) p {
  color: #347240;
}
.about .print-img ul li {
  text-align: center;
  border-bottom: 1px dashed #231815;
  padding: 1rem 0;
}
.about .flow .text {
  margin: 6rem auto;
}
.about .flow .grid {
  display: grid;
  justify-content: center;
  gap: 2rem;
  margin: 2rem auto;
}
@media screen and (min-width: 1200px) {
  .about .flow .grid {
    grid-template-columns: max-content min-content;
  }
}
.about .flow .grid a {
  text-align: center;
  padding: 2rem;
}
.about .flow .grid a:nth-child(1) {
  background-color: rgba(99, 183, 98, 0.4);
}
.about .flow .grid a:nth-child(2) {
  background-color: rgba(255, 0, 0, 0.2);
}
@media screen and (min-width: 1200px) {
  .about .flow .grid a:nth-child(2) img {
    min-width: 270px;
    width: 10%;
    margin-top: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .about .flow .grid a div {
    display: flex;
    gap: 1rem;
  }
}
.about .flow .grid a small {
  display: block;
  text-align: right;
  margin: 0;
  font-size: 16px;
}
@media screen and (min-width: 1200px) {
  .about .flow .img4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about .flow .bt {
  display: block;
  text-align: center;
  border: 1px solid #231815;
  border-radius: 2rem;
  color: #231815;
  font-size: 2rem;
  padding: 2rem 4rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 4rem auto;
}
.about .flow .bt:hover {
  opacity: .7;
}

.full-order .grid {
  gap: 2rem;
}
@media screen and (min-width: 1200px) {
  .full-order .grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.full-order .grid p {
  text-align: center;
  font-weight: bold;
}
.full-order .bt {
  margin: 4rem auto;
  text-align: center;
}
.full-order .bt a {
  display: block;
  text-align: center;
  border: 1px solid #231815;
  border-radius: 2rem;
  color: #231815;
  font-size: 2rem;
  padding: 2rem 4rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2rem auto;
}
.full-order .bt a:hover {
  opacity: .7;
}

.arrange .icon {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  text-align: center;
  margin: 2rem auto;
}
@media screen and (min-width: 768px) {
  .arrange .icon {
    grid-template-columns: repeat(4, 1fr);
  }
}
.arrange .icon img {
  max-width: 10rem;
  display: block;
  margin: 0 auto;
}
.arrange .icon-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.arrange .icon-title img {
  max-width: 6rem;
  margin: 0;
}
.arrange .icon-title p {
  font-size: clamp(2rem, 2vw, 2.4rem);
  font-weight: bold;
}
.arrange .big, .arrange .p-size {
  font-size: 2.4rem;
  text-align: center;
  margin: 4rem auto 2rem auto;
  font-weight: bold;
}
.arrange .width-img {
  max-width: 80rem;
  display: block;
  margin: 4rem auto 0 auto;
}
.arrange span {
  font-size: 1.8rem;
}

.company table {
  border-collapse: collapse;
  margin: 4rem auto;
  width: 100%;
}
.company table th, .company table td {
  border: 1px solid #231815;
  padding: 2rem;
  margin-top: -1px;
}
.company table th {
  background-color: #8E9C9E;
  color: #fff;
}
@media (min-width: 1200px) {
  .company table th {
    width: 22rem;
  }
}
.company table span {
  font-size: 2.4rem;
}
.company table p.red {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 1199px) {
  .company table tr {
    display: grid;
    align-items: center;
  }
}
.company .tax {
  margin: 2rem auto 0 auto;
}
.company .tax tr:first-child td {
  background-color: #ebebeb;
  text-align: center;
}
@media (min-width: 1200px) {
  .company .tax th {
    width: 33rem;
  }
}
.company .title {
  font-weight: 800;
  position: relative;
  margin: 0 0 1rem 0;
  padding-left: 2rem;
  font-family: "M PLUS 1p", serif;
}
.company .title::before {
  content: "";
  background-color: #8E9C9E;
  width: 6px;
  height: 4rem;
  position: absolute;
  bottom: 7px;
  left: 0;
}
.company iframe {
  width: 100%;
  height: 30vh;
}

.privacy p {
  margin-bottom: 2rem;
}

.sitemap .wsp-pages-title {
  display: none;
}

.picklist-bt {
  display: block;
  border: 1px solid #231815;
  border-radius: 10px;
  letter-spacing: 10px;
  padding: 15px 30px;
  width: 100%;
  max-width: 220px;
  margin: 40px auto;
  text-align: center;
}
.picklist-bt:hover {
  opacity: .7;
}

.center-img {
  position: relative;
  overflow: hidden;
  margin: 5rem auto;
}
.center-img::before {
  content: "";
  padding-top: 50%;
  display: block;
}
@media screen and (min-width: 768px) {
  .center-img::before {
    padding-top: 30%;
  }
}
.center-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.universe {
  background-color: #203557 !important;
  color: #fff !important;
}
.universe h4::after {
  background-color: #fff !important;
}
.universe .variation a p {
  color: #fff !important;
}
.universe .picklist-bt {
  border: 1px solid #fff !important;
}

.colors {
  color: #6B6B6B;
}
.colors h4::after {
  background-color: #6B6B6B !important;
}
.colors .picklist-bt {
  border: 1px solid #6B6B6B !important;
  color: #6B6B6B;
}
.colors a {
  color: #6B6B6B;
}

.kyoyuzen .sponsor {
  max-width: 1200px;
  padding: 0 5%;
  margin: 30px auto 0 auto;
}
.kyoyuzen .sponsor p {
  line-height: 1.5;
}
.kyoyuzen .sponsor p:nth-child(2) {
  font-size: 3rem;
}
.kyoyuzen .sponsor .url {
  letter-spacing: normal;
}

.kyoyuzen .center-img, .worldart .center-img {
  margin: 5rem auto 0 auto;
}

.bigsize {
  font-size: clamp(2rem, 3vw, 3rem) !important;
}

span.bigsize {
  font-size: clamp(2.4rem, 4vw, 4rem) !important;
  display: block;
  margin-bottom: -10px;
}

.bg-vari {
  color: #fff;
}
.bg-vari h4::after {
  background-color: #fff !important;
}
.bg-vari .inner {
  margin: 15rem auto -5rem auto;
  padding: 2rem 0;
}
.bg-vari .picklist-bt {
  border: 1px solid #fff !important;
}

.summer {
  color: #5A5858;
}
.summer .variation {
  background-color: #91D1DC;
}
.summer .picklist-bt {
  border: 1px solid #5A5858 !important;
  color: #5A5858;
}

.industry .variation {
  background-color: #BAA58D;
}

.spring .variation {
  background-color: #E6C2D5;
}

.summer .variation p, .industry .variation p, .spring .variation p, .calligraphy .variation p, .bluesky .variation p, .rose .variation p, .botanical .variation p, .ceiling .variation p, .beautiful .variation p {
  color: #fff !important;
}

.calligraphy .variation {
  background-color: #A5A5A5;
}

.bluesky .variation {
  background-color: #67BBD2;
}
.bluesky .variation .picklist-bt {
  border: 1px solid #67BBD2 !important;
}

.rose .variation {
  background-color: #E4C9E1;
}
.rose .variation .picklist-bt {
  border: 1px solid #E4C9E1 !important;
}

.ceiling .variation {
  background-color: #C6DFD5;
}
.ceiling .variation .picklist-bt {
  border: 1px solid #C6DFD5 !important;
}

.beautiful .variation {
  background-color: #000;
}
.beautiful .variation .picklist-bt {
  border: 1px solid #000 !important;
}

.bluesky, .rose, .ceiling {
  color: #727171;
}
.bluesky .picklist-bt, .rose .picklist-bt, .ceiling .picklist-bt {
  border: 1px solid #727171 !important;
  color: #727171;
}

.botanical {
  color: #5A5858;
}
.botanical .variation {
  background-color: #7FB19F;
}
.botanical .variation .picklist-bt {
  border: 1px solid #7FB19F !important;
}
.botanical .picklist-bt {
  border: 1px solid #5A5858 !important;
  color: #5A5858;
}

.adobe-stock .variation {
  background-color: #f5f5f5;
  color: #231815;
  text-align: center;
  padding: 0 5%;
}
.adobe-stock .variation h4 {
  margin: 50px auto;
}
.adobe-stock .variation h4::after {
  background-color: #231815 !important;
}
.adobe-stock .variation img {
  margin: 5rem auto;
}
.adobe-stock .variation p {
  font-size: 20px;
}
.adobe-stock .bt-adobe {
  display: block;
  background-color: #aabec9;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  border-radius: 10px;
  padding: 15px 30px;
  width: 100%;
  max-width: clamp(250px, 30vw, 400px);
  margin: 150px auto 50px auto;
  text-align: center;
}
.adobe-stock .attention {
  text-align: center;
  border: 2px solid #d78C63;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 5%;
}
.adobe-stock .attention img {
  width: 40px;
}
.adobe-stock .attention h5 {
  color: #d78C63;
  font-size: clamp(24px, 3vw, 30px);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.adobe-stock .attention p {
  overflow-wrap: break-word;
}
.adobe-stock .bt {
  border: 1px solid #7a6a56;
  color: #7a6a56 !important;
  border-radius: 1rem;
  padding: 0.5rem 4rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 4rem auto;
}
.adobe-stock .bt:hover {
  background-color: #7a6a56;
  border: 1px solid #fff;
  color: #fff !important;
  opacity: 1;
}

.series1 {
  font-family: "Zen Old Mincho", serif;
}

.series2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.ga {
  max-width: clamp(200px, 30vw, 400px);
  margin: 50px auto;
  display: block;
}
@media screen and (min-width: 1200px) {
  .ga {
    margin: 100px auto;
  }
}

.series1, .series2 {
  line-height: 2;
  letter-spacing: 7px;
}
@media screen and (min-width: 1200px) {
  .series1 > .box-img::before, .series2 > .box-img::before {
    padding-top: 30%;
  }
}
.series1 .description, .series2 .description {
  text-align: center;
  font-size: 2rem;
  margin: 5rem auto;
}
@media screen and (min-width: 1200px) {
  .series1 .description, .series2 .description {
    margin: 10rem auto;
  }
}
.series1 .star, .series2 .star {
  text-align: center;
  font-size: 3rem;
  margin: 5rem auto;
}
@media screen and (min-width: 1200px) {
  .series1 .star, .series2 .star {
    margin: 10rem auto;
  }
}
.series1 .point, .series1 .point2, .series2 .point, .series2 .point2 {
  gap: 4rem;
}
.series1 .point > div:first-child, .series1 .point .flex > div, .series1 .point2 > div:first-child, .series1 .point2 .flex > div, .series2 .point > div:first-child, .series2 .point .flex > div, .series2 .point2 > div:first-child, .series2 .point2 .flex > div {
  margin: 4rem auto;
}
.series1 .point .num-text, .series1 .point2 .num-text, .series2 .point .num-text, .series2 .point2 .num-text {
  display: flex;
  align-items: baseline;
  margin: 20px 0;
}
.series1 .point .num-text .num, .series1 .point2 .num-text .num, .series2 .point .num-text .num, .series2 .point2 .num-text .num {
  font-size: clamp(6rem, 70%, 7rem);
  line-height: 1;
}
.series1 .point .num-text span, .series1 .point2 .num-text span, .series2 .point .num-text span, .series2 .point2 .num-text span {
  font-size: clamp(1.8rem, 2vw, 2.2rem);
  line-height: 1.5;
}
.series1 .point span.red, .series1 .point2 span.red, .series2 .point span.red, .series2 .point2 span.red {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .series1 .point > div:first-child, .series1 .point .flex > div, .series2 .point > div:first-child, .series2 .point .flex > div {
    width: 50%;
  }
  .series1 .point .flex, .series2 .point .flex {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .series1 .point2, .series2 .point2 {
    display: flex;
    justify-content: space-between;
  }
  .series1 .point2 > div, .series2 .point2 > div {
    width: 50%;
  }
  .series1 .point2 > div:first-child, .series2 .point2 > div:first-child {
    margin: 0;
  }
}
.series1 .point2 .num-center, .series2 .point2 .num-center {
  align-items: center;
}
.series1 h4, .series2 h4 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  padding-bottom: 2rem;
  position: relative;
  text-align: center;
  margin: 100px auto 50px auto;
  font-weight: normal;
}
.series1 h4::after, .series2 h4::after {
  content: "";
  background-color: #231815;
  width: 100px;
  height: 1.5px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}
.series1 .variation, .series2 .variation {
  letter-spacing: normal;
}
.series1 .variation .grid, .series2 .variation .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 4rem auto;
  padding: 0 5%;
}
@media screen and (min-width: 1200px) {
  .series1 .variation .grid, .series2 .variation .grid {
    gap: 4rem;
  }
}
.series1 .variation .grid .box-img::before, .series2 .variation .grid .box-img::before {
  padding-top: 100%;
}
.series1 .picklist-bt, .series2 .picklist-bt {
  background-color: #fff;
}
.series1 .picklist-bt:hover, .series2 .picklist-bt:hover {
  opacity: 0.7;
  color: #231815;
}
.series1 .inner2, .series2 .inner2 {
  margin: 5rem auto 0 auto;
  padding-bottom: 5rem;
}
@media screen and (min-width: 1200px) {
  .series1 .inner2, .series2 .inner2 {
    margin: 10rem auto 0 auto;
    padding-bottom: 10rem;
  }
}
.series1 .inner2 .description, .series2 .inner2 .description {
  margin: 0 auto 5rem auto;
}
@media screen and (min-width: 1200px) {
  .series1 .inner2 .description, .series2 .inner2 .description {
    margin: 0 auto 10rem auto;
  }
}
.series1 .color-variation .grid, .series2 .color-variation .grid {
  display: grid;
  gap: 4rem;
  margin: 5rem auto;
}
@media screen and (min-width: 768px) {
  .series1 .color-variation .grid, .series2 .color-variation .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8rem;
  }
}
.series1 .color-variation .grid p, .series2 .color-variation .grid p {
  text-align: right;
}
.series1 .color-variation .grid a:hover, .series2 .color-variation .grid a:hover {
  opacity: 1;
  filter: brightness(0.7);
}
.series1 .gold-silver-link, .series2 .gold-silver-link {
  padding: clamp(10rem, 2vw, 20rem) 5%;
  max-width: 120rem;
  margin: 0 auto;
}
.series1 .gold-silver-link .text h2, .series2 .gold-silver-link .text h2 {
  text-align: left !important;
  letter-spacing: 14px;
}
.series1 .gold-silver-link .text h2 br, .series2 .gold-silver-link .text h2 br {
  display: block !important;
}
.series1 .gold-silver-link .text p, .series2 .gold-silver-link .text p {
  line-height: 2 !important;
  margin-top: 20px;
}
.series1 .gold-silver-link .detail, .series2 .gold-silver-link .detail {
  margin: 40px auto;
  letter-spacing: 10px;
}
@media screen and (min-width: 1200px) {
  .series1 .gold-silver-link .detail, .series2 .gold-silver-link .detail {
    margin: 60px auto;
  }
}
.series1 .gold-silver-link .detail .box-img::before, .series2 .gold-silver-link .detail .box-img::before {
  padding-top: 30%;
}
.series1 .gold-silver-link .detail p, .series2 .gold-silver-link .detail p {
  font-size: clamp(20px, 3vw, 30px);
  margin-top: 10px;
}
.series1 .gold-silver-link .detail a, .series2 .gold-silver-link .detail a {
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid #231815;
  border-radius: 20px;
  padding: 10px 20px 15px 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0 auto;
}
.series1 .gold-silver-link .detail a:hover, .series2 .gold-silver-link .detail a:hover {
  border: 1px solid #fff;
    opacity: .7;
}
.series1 .gold-silver-link .detail a span, .series2 .gold-silver-link .detail a span {
  margin-top: 6px;
}

.top-link {
  color: #7a6a56;
}
.top-link .main {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  height: 50vh;
}
.top-link .petrior {
  max-width: 500px;
  margin: 10rem auto;
  display: block;
  width: 90%;
}
@media screen and (min-width: 1200px) {
  .top-link .petrior {
    margin: 20rem auto;
  }
}
.top-link .point {
  gap: 10rem !important;
}
.top-link .point .grid .text img {
  width: 12%;
}
.top-link .point .grid.hikkaki {
  grid-template-columns: 35% 65%;
}
@media screen and (min-width: 768px) {
  .top-link .point .grid.hikkaki img:nth-child(1) {
    order: 2;
  }
}
@media screen and (min-width: 768px) {
  .top-link .point .grid.hikkaki .text {
    order: 1;
  }
}
.top-link .point .grid.remake, .top-link .point .grid.screen {
  grid-template-columns: 65% 35%;
}
@media screen and (min-width: 768px) {
  .top-link .point .grid.screen img:nth-child(1) {
    order: 1;
  }
}
@media screen and (min-width: 768px) {
  .top-link .point .grid.screen .text {
    order: 2;
  }
}
.top-link .point .bt {
  border: 1px solid #7a6a56;
  color: #7a6a56 !important;
  border-radius: 1rem;
  padding: 0.5rem 4rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 4rem auto;
}
.top-link .point .bt:hover {
  background-color: #7a6a56;
  border: 1px solid #fff;
  color: #fff !important;
  opacity: 1;
}
.top-link .point .point-text {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.top-link .point .point-text .point-title {
  font-size: clamp(2.4rem, 4vw, 3rem);
  padding: 1rem 0 1rem 2rem;
  position: relative;
  border-bottom: 1px solid #7a6a56;
  margin-bottom: 1rem;
  display: flex;
  gap: 2rem;
  line-height: 1.3;
  font-weight: bold;
}
.top-link .point .point-text .point-title small {
  font-size: 18px;
  font-weight: normal;
}
.top-link .point .point-text .point-title::before {
  content: "";
  background-color: rgba(122, 106, 86, 0.5);
  width: 6px;
  height: 4rem;
  position: absolute;
  bottom: 13px;
  left: 0;
}
.top-link .point .point-text p {
  padding-left: 2rem;
}
.top-link .point .center-img {
  width: 100%;
}

.gold-silver {
  line-height: 1.5;
  font-family: "Hina Mincho", serif;
}
.gold-silver .main {
  position: relative;
  color: #fff;
}
.gold-silver .main .box-img::before {
  padding-top: 120%;
}
@media screen and (min-width: 768px) {
  .gold-silver .main .box-img::before {
    padding-top: 70%;
  }
}
@media screen and (min-width: 1200px) {
  .gold-silver .main .box-img::before {
    padding-top: 50%;
  }
}
.gold-silver .main .kouga {
  position: absolute;
  top: 3%;
  right: 3%;
  width: 18%;
  max-width: 130px;
  margin-top: 0 !important;
}
@media screen and (min-width: 1200px) {
  .gold-silver .main .kouga {
    width: 160px;
  }
}
.gold-silver .main .right {
  position: absolute;
  bottom: 3%;
  left: 3%;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
}
.gold-silver .main .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  width: 80%;
  max-width: 700px;
}
@media screen and (min-width: 1200px) {
  .gold-silver .main .text {
    width: 50rem;
    left: 10%;
    transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
  }
}
.gold-silver .main .text p {
  border: 1px solid #fff;
  padding: 1rem;
  text-align: justify;
  margin-top: 2rem;
}
.gold-silver .type.grid {
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 1200px) {
  .gold-silver .type.grid {
    grid-template-areas: "item1 item2" "item3 item3";
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1200px) {
  .gold-silver .type.grid .left {
    grid-area: item1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.gold-silver .type.grid .left h4 {
  font-weight: normal;
}
.gold-silver .type.grid p {
  font-size: clamp(1.8rem, 2vw, 2rem);
}
.gold-silver .type.grid h4 {
  font-size: 3rem;
  line-height: 2;
}
.gold-silver .type.grid .type .img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.gold-silver .type.grid .type .img .pos {
  position: relative;
}
.gold-silver .type.grid .type .img .pos p {
  position: absolute;
  bottom: 5%;
  left: 5%;
}
.gold-silver .type.grid .gold, .gold-silver .type.grid .silver {
  position: relative;
}
.gold-silver .type.grid .gold p, .gold-silver .type.grid .silver p {
  color: #fff;
  position: absolute;
  top: 3%;
}
@media screen and (min-width: 1200px) {
  .gold-silver .type.grid .gold {
    grid-area: item2;
  }
}
.gold-silver .type.grid .gold p {
  left: 3%;
}
@media screen and (min-width: 1200px) {
  .gold-silver .type.grid .silver {
    grid-area: item3;
  }
}
.gold-silver .type.grid .silver p {
  right: 3%;
}
.gold-silver .bg-blue {
  background-color: #132e49;
  color: #fff;
}
.gold-silver .bg-blue .inner {
  padding: 5rem 5%;
  margin: 5rem auto 0 auto;
}
@media screen and (min-width: 1200px) {
  .gold-silver .bg-blue .inner {
    padding: 10rem 5%;
    margin: 10rem auto 0 auto;
  }
}
.gold-silver .bg-blue section {
  margin-top: 8rem;
}
.gold-silver .bg-blue section:nth-child(1) {
  margin-top: 0;
}
.gold-silver .bg-blue .title {
  color: #d5c71d;
  text-align: center;
  padding-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0 0 2rem 0;
  position: relative;
}
.gold-silver .bg-blue .title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  max-width: 140rem;
  width: 100vw;
  height: 1px;
  background-color: #d5c71d;
}
.gold-silver .bg-blue .title span {
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  display: block;
}
@media screen and (min-width: 768px) {
  .gold-silver .bg-blue .title {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
  }
}

.gold-silver .bg-blue .grid {
  font-family: "Kosugi", sans-serif;
  display: grid;
  grid-template-columns: auto 1fr;
    grid-template-areas: 
        "text color"
        ". white_"
        ". color-white";
  align-items: stretch;
}
@media screen and (min-width: 960px) {
  .gold-silver .bg-blue .grid {
    grid-template-columns: max-content 1fr 1fr 1fr;
    grid-template-areas: "text color white_ color-white";
  }
}
.gold-silver .bg-blue section:first-child .grid:nth-child(3) {
    margin-top: 4rem;
}
/* .gold-silver .bg-blue .grid.features {
  margin-top: 4rem;
}
.gold-silver .bg-blue .grid.features img {
  width: 80%;
}
.gold-silver .bg-blue .grid.features .color-white img {
  width: 81.7%;
} */
.w80 {
      width: 70%;
    margin: 20px auto 0 auto;
}
.gold-silver .bg-blue .grid.features .text {
  color: #231815;
  margin-top: 5rem;
}
.gold-silver .bg-blue .grid.features .border-box {
  padding: 4rem 2rem;
}
.gold-silver .bg-blue .grid.gold .border-box .img-text, .gold-silver .bg-blue .grid.silver .border-box .img-text {
  position: relative;
}
.gold-silver .bg-blue .grid.gold .border-box .img-text p, .gold-silver .bg-blue .grid.silver .border-box .img-text p {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  font-size: 1.8rem;
  font-family: "Hina Mincho", serif;
}
.gold-silver .bg-blue .grid.gold .border-box .box-img::before, .gold-silver .bg-blue .grid.silver .border-box .box-img::before {
  padding-top: 100%;
}

.gold-silver .bg-blue .grid.gold .border-box p, .gold-silver .bg-blue .grid.silver .border-box p {
  padding: 0 5%;
}
@media screen and (min-width: 960px) {
  .gold-silver .bg-blue .grid.gold .head, .gold-silver .bg-blue .grid.silver .head {
    display: none;
  }
}
.gold-silver .bg-blue .grid.gold .text {
  background-color: #dca227;
}
.gold-silver .bg-blue .grid.silver .text {
  background-color: #898989;
}
.gold-silver .bg-blue .grid.silver .img-text p {
  color: #231815;
}
.gold-silver .bg-blue .grid .text, .gold-silver .bg-blue .grid .head, .gold-silver .bg-blue .grid .border-box {
  border: 2px solid #fff;
  margin-top: -2px;
  margin-left: -2px;
}
.gold-silver .bg-blue .grid .text {
  grid-area: text;
  writing-mode: vertical-rl;
  background-color: #fff;
  font-size: 3rem;
  text-align: center;
  letter-spacing: 2rem;
  border-radius: 2rem 0 0 5rem;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
}
@media screen and (min-width: 960px) {
  .gold-silver .bg-blue .grid .color, .gold-silver .bg-blue .grid .white, .gold-silver .bg-blue .grid .color-white {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
  }
}
.gold-silver .bg-blue .grid .color {
  grid-area: color;
}
.gold-silver .bg-blue .grid .white {
  grid-area: white_;
}
.gold-silver .bg-blue .grid .color-white {
  grid-area: color-white;
}
.gold-silver .bg-blue .grid .head {
  font-family: "Kosugi", sans-serif;
  font-size: 2rem;
  text-align: center;
  padding: 1rem 0;
}
.gold-silver .bg-blue .grid .border-box {
  padding: 0 0 4rem 0;
}
@media screen and (min-width: 960px) {
  .gold-silver .bg-blue .grid .border-box {
    flex-grow: 1;
  }
}
.gold-silver .bg-blue .grid .border-box img {
  margin: 0 auto;
  display: block;
}
.gold-silver .bg-blue .grid .border-box p {
  margin-top: 3rem;
}
.gold-silver .bg-blue .spec {
  font-family: "Kosugi", sans-serif;
  border: 1px solid #fff;
  border-radius: 2rem;
  padding: 2rem;
  margin-top: 4rem;
  line-height: 2;
}
.gold-silver .bg-blue .orderflow .flow {
  max-width: 100rem;
}
.gold-silver .bg-blue .orderflow .flow .after::after {
  border-top: 21px solid #efea3c;
}
.gold-silver .bg-blue .orderflow .flow h5 {
  color: #d5c71d;
  border-bottom: 1px solid #fff;
}
.gold-silver .bg-blue .contact {
  display: block;
  color: #fff;
  background-color: #040000;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 1rem;
  font-size: clamp(2rem, 3vw, 2.5rem);
  letter-spacing: 5px;
}
.gold-silver .bg-blue .contact:hover {
  color: #040000;
  background-color: #fff;
  opacity: 1;
}
.gold-silver .bg-blue .date .flex {
  margin: 4rem 0;
}
@media screen and (min-width: 768px) {
  .gold-silver .bg-blue .date .flex {
    display: grid;
    grid-template-columns: max-content 1fr;
    align-items: center;
    gap: 2rem;
  }
}
.gold-silver .bg-blue .date .flex p {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .gold-silver .bg-blue .date .flex p {
    text-align: left;
  }
}
.gold-silver .bg-blue .date .flex p:nth-child(1) {
  color: #fff;
  background-color: #040000;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  margin: 0 auto 2rem auto;
}
@media screen and (min-width: 768px) {
  .gold-silver .bg-blue .date .flex p:nth-child(1) {
    margin: 0;
  }
}
.gold-silver .bg-blue .date p:nth-child(5) {
  font-size: 1.6rem;
}
.gold-silver .bg-blue .yellow {
  color: #d5c71d;
}
.gold-silver .bg-blue .blue {
  color: #72c8d5;
}
.gold-silver .bg-blue .unity {
  margin: 4rem 0;
}
.gold-silver .bg-blue .unity .unity-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
}
.gold-silver .bg-blue .unity p {
  line-height: 1.5;
  margin-top: 1rem;
}
.gold-silver .bg-blue .qa .unity-title {
  font-size: 1.6rem;
}
@media screen and (min-width: 1200px) {
  .gold-silver .bg-blue .qa .unity-title {
    font-size: 2rem;
  }
}
.gold-silver .bg-blue .qa .contact {
  margin: 8rem auto 2rem auto;
}
.gold-silver .bg-blue .qa .yellow {
  text-align: center;
}

.gs-remake .main .kouga {
  left: 3%;
  right: auto;
}
.gs-remake .main .right {
  left: auto;
  right: 3%;
}
@media screen and (min-width: 1200px) {
  .gs-remake .main .text {
    left: auto;
    right: 10%;
  }
}
.gs-remake .main .text img {
  background-color: rgba(52, 52, 52, 0.6);
  border: 1px solid #fff;
  padding: 2rem 0;
}
.gs-remake .main .text p {
  background-color: rgba(52, 52, 52, 0.6);
}
.gs-remake .kouga {
  width: 20% !important;
  max-width: 150px !important;
  z-index: 2;
}
@media screen and (min-width: 1200px) {
  .gs-remake .kouga {
    width: 180px !important;
  }
}
.gs-remake .type.grid .gold p {
  left: auto;
  right: 3%;
  bottom: 3%;
  top: auto;
}


/* サイトマップのSASSスタイリング */
.sitemap {
  max-width: 1040px;
  margin: 50px auto;
  padding: 20px 5%;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.sitemap h3 {
  border-bottom: 1px solid #333;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.sitemap ul li {
  padding: 5px 0;
}
.sitemap ul li a {
  opacity: 0.8;
  text-decoration: underline !important;
}
.sitemap ul li a:hover {
  text-decoration: underline !important;
}
.sitemap .grid {
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 600px) {
  .sitemap .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .sitemap .grid {
    grid-template-columns: max-content max-content max-content max-content;
    gap: 40px;
  }
}

.page-id-4917 .breadcrumbsWrap {
  display: none;
}

.kouga-slider {
    display: none;
}


.kouga-logo {
  position: absolute;
  top: 1%;
  left: 50%;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  width: clamp(20rem, 35vw, 35rem);
}
@media screen and (min-width: 1200px) {
  .kouga-logo {
    left: 5%;
    transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
  }
}

.kouga {
  position: relative;
  font-family: "Zen Old Mincho", serif;
  overflow: hidden;
}
@media screen and (min-width: 500px) {
  .kouga .text .title br {
    display: none;
  }
}
.kouga h4, .kouga h4.title {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: clamp(5rem, 8vw, 8rem);
  font-weight: 500;
  text-align: center;
}
.kouga h4 span, .kouga h4.title span {
  font-size: clamp(1.8rem, 2vw, 2rem);
}
.kouga h4.title {
  line-height: 3rem;
  padding-bottom: 3rem;
}
.kouga .slick-slide {
  width: 100%;
  height: 100vh !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
.kouga .bg {
  background: url(../img/kouga/bg-white.jpg) no-repeat center center/cover;
  text-align: center;
}
.kouga .description .kouga-inner {
  padding: clamp(10rem, 20vw, 25rem) 5%;
}
.kouga .description p {
  margin-top: clamp(5rem, 10vw, 10rem);
  font-size: clamp(1.8rem, 2vw, 2rem);
  line-height: 5rem;
}
.kouga .lineup .grid, .kouga .brand, .kouga .case, .kouga .grace-auragent {
  max-width: 1200px;
  margin: 0 auto;
}
.kouga .lineup .gold::before, .kouga .lineup .silver::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.kouga .lineup .gold {
  background: url(../img/kouga/bg-gold.jpg) repeat center center;
  position: relative;
}
.kouga .lineup .gold::before {
  background-color: rgba(255, 255, 255, 0.4);
}
.kouga .lineup .silver {
  background: url(../img/kouga/bg-silver.jpg) repeat center center;
  position: relative;
}
.kouga .lineup .silver::before {
  background-color: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 960px) {
  .kouga .lineup .silver .grid img {
    order: 2;
  }
  .kouga .lineup .silver .grid .text {
    order: 1;
  }
}
@media screen and (min-width: 1200px) {
  .kouga .lineup .silver .grid {
    grid-template-columns: 42% 55%;
  }
}
.kouga .lineup .grid, .kouga .grace-auragent {
  padding: clamp(10rem, 20vw, 20rem) 5%;
  display: grid;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 960px) {
  .kouga .lineup .grid, .kouga .grace-auragent {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .kouga .lineup .grid, .kouga .grace-auragent {
    gap: 0;
    grid-template-columns: 55% 42%;
  }
}
.kouga .lineup .grid .ga, .kouga .grace-auragent .ga {
  margin: 20px auto;
  max-width: 200px;
}
@media screen and (min-width: 960px) {
  .kouga .lineup .grid .ga, .kouga .grace-auragent .ga {
    margin: 20px 0;
  }
}
.kouga .lineup .grid .title, .kouga .grace-auragent .title {
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  text-align: center;
  font-weight: bold;
}
@media screen and (min-width: 960px) {
  .kouga .lineup .grid .title, .kouga .grace-auragent .title {
    text-align: left;
  }
}
.kouga .lineup .grid p, .kouga .grace-auragent p {
  line-height: 2.5;
}
.kouga .lineup .grid .bt, .kouga .grace-auragent .bt {
  display: grid;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
@media screen and (min-width: 960px) {
  .kouga .lineup .grid .bt, .kouga .grace-auragent .bt {
    grid-template-columns: max-content max-content;
  }
}
.kouga .lineup .grid .bt a, .kouga .grace-auragent .bt a {
  border: 1px solid #231815;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  display: block;
  text-align: center;
  width: 200px;
  margin: 0 auto;
}
.kouga .case .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 4rem auto;
  padding: 0 5%;
}
@media screen and (min-width: 1200px) {
  .kouga .case .grid {
    gap: 4rem;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1300px) {
  .kouga .case .grid {
    padding: 0;
  }
}
.kouga .case .grid .box-img::before {
  padding-top: 100%;
}
.kouga .grace-auragent {
  justify-content: center;
}
@media screen and (min-width: 960px) {
  .kouga .grace-auragent {
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
  }
  .kouga .grace-auragent .ga {
    margin: 20px auto;
  }
  .kouga .grace-auragent .text:nth-child(1) .ga {
    margin: 35px auto;
  }
  .kouga .grace-auragent .title {
    text-align: center;
  }
  .kouga .grace-auragent .bt a {
    padding: 10px 0;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 1200px) {
  .kouga .grace-auragent .bt a {
    padding: 10px;
    box-sizing: content-box;
  }
}
.kouga .brand {
  padding: clamp(10rem, 15vw, 15rem) 5%;
}
.kouga .brand h4.title {
  padding-bottom: 50px;
}
.kouga .brand .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 50px auto;
}
.kouga .brand .grid img:nth-child(1) {
  grid-area: 1/1/2/4;
}
.kouga .brand .grid img:nth-child(2) {
  grid-area: 2/1/3/2;
}
.kouga .brand .grid img:nth-child(3) {
  grid-area: 2/2/3/3;
}
.kouga .brand .grid img:nth-child(4) {
  grid-area: 2/3/3/4;
}
.kouga .brand p {
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
  font-family: "Zen Old Mincho", serif;
}
.kouga .fadeIn, .kouga .flipLeft, .kouga .flipRight, .kouga .fadeLeft, .kouga .fadeRight, .kouga .blur {
  animation-fill-mode: forwards;
}
.kouga .blur {
  animation-name: blurAnime;
  animation-duration: 2s;
}
@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
.kouga .flipLeft, .kouga .flipRight, .kouga .fadeLeft, .kouga .fadeRight {
  animation-duration: 1s;
}
.kouga .flipLeft {
  animation-name: flipLeftAnime;
  perspective-origin: left center;
}
.kouga .delay-time05 {
  animation-delay: 0.5s;
}
.kouga .delay-time1 {
  animation-delay: 1s;
}
.kouga .delay-time15 {
  animation-delay: 1.5s;
}
@keyframes flipLeftAnime {
  from {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(20deg);
    opacity: 0;
  }
  to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
.kouga .flipRight {
  animation-name: flipRightAnime;
  perspective-origin: right center;
}
@keyframes flipRightAnime {
  from {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(-20deg);
    opacity: 0;
  }
  to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
.kouga .fadeLeft {
  animation-name: fadeLeftAnime;
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.kouga .fadeRight {
  animation-name: fadeRightAnime;
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.kouga .blurTrigger, .kouga .flipLeftTrigger, .kouga .flipRightTrigger, .kouga .fadeLeftTrigger, .kouga .fadeRightTrigger {
  opacity: 0;
}

#product-list-confirm .box-img::before {
  padding-top: 100%;
}
#product-list-confirm,.confirm-product {
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .confirm-product {
    grid-template-columns: repeat(2,1fr);
  }
}
.pro-info {
  justify-content: center;
}

.calculate[data-petcarpet="1"] .fixed-width-text{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  min-width: 80px;
  height: 34px;               /* 高さはサイトのinputに合わせて調整 */
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
}