@charset "UTF-8";
/* ------------------------------
　　common
------------------------------ */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

body {
  color: #333;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background: #FFF;
  font-size: 16px;
  margin: 0;
  line-height: 1.8;
  overflow-x: hidden;
  position: relative;
}
body.is-locked {
  overflow: hidden;
}

article, aside, details, figcaption, figure,
footer, header, menu, nav, section {
  display: block;
}

p + p {
  margin-top: 1em;
}

nav ul {
  list-style: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dl {
  margin: 0;
}
dl + dl {
  margin-top: 30px;
}

dd {
  margin: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

figure {
  margin: 0;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

strong, .strong {
  font-weight: bold;
}

.hide-sp {
  display: block;
}

.hide-pc {
  display: none;
}

/* リンクの設定 */
a {
  color: #333;
  text-decoration: none;
  border: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

a:visited {
  color: #333;
  text-decoration: none;
}

a:active {
  color: #333;
  text-decoration: none;
}

a:hover {
  color: #333;
  text-decoration: none;
}

.br-sp {
  display: none;
}

.br-pc {
  display: block;
}

.f-palt {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.t-center {
  text-align: center;
}

.t-left {
  text-align: left;
}

.word-break {
  display: inline-block;
}

/* コンテナ */
.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 30px;
}

.section {
  padding: 100px 0;
}
.section + .section {
  padding-top: 0;
}
.section .section {
  padding: 0;
}
.section .section + .section {
  padding: 100px 0 0;
}

/* タイトル */
.image-title {
  margin: 0 0 40px;
  line-height: 1.5;
}
.image-title.__sequent {
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .image-title.__sequent {
    margin-top: 60px;
  }
}
/* テキスト */
.section-info-txt {
  text-align: center;
  font-size: 26px;
  margin-top: -15px;
}

/* 背景 */
.bg-black {
  background: #F0FAFF;
}

.bg-gray {
  background: #F8F7F7;
}

/* ボタン */
.btn {
  display: block;
  font-size: 26px;
  font-weight: bold;
  color: #FFF;
  border: 1px solid #fff;
  width: 480px;
  height: 90px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.btn::after {
  content: "";
  width: 30px;
  height: 30px;
  background: url(/assets/img/arrow-btn.svg) no-repeat center/cover;
  position: absolute;
  right: 34px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.btn:hover {
  color: #0f151a;
  background: #fff;
}
.btn:hover::after {
  background: url(/assets/img/arrow-btn-b.svg) no-repeat center/cover;
}
.btn:visited {
  color: #FFF;
}

/* ヘッダー高さ分調整 */
:target::before {
  content: "";
  display: block;
  height: 104px; /* ずらしたい高さ */
  margin-top: -104px; /* heightに対するネガティブマージン */
  visibility: hidden;
}

@media screen and (min-width: 1081px) {
  :target::before {
    height: 104px; /* ずらしたい高さ */
    margin-top: -104px; /* heightに対するネガティブマージン */
  }
}
@media screen and (max-width: 1080px) {
  :target::before {
    height: 60px; /* ずらしたい高さ */
    margin-top: -60px; /* heightに対するネガティブマージン */
  }
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) {
  .hide-sp {
    display: none;
  }
  .hide-pc {
    display: block;
  }
  .br-pc {
    display: none;
  }
  .br-sp {
    display: block;
  }
  .section {
    padding: 50px 0 60px;
  }
  .section .section + .section {
    padding: 60px 0 0;
  }
  .container {
    padding: 0 5.33%;
  }
  .container .container {
    padding: 0 5px;
  }
  .image-title {
    margin: 0 0 25px;
  }
  .section-info-txt {
    font-size: 20px;
    margin: 20px 0;
  }
  .btn {
    max-width: 295px;
    font-size: 18px;
    width: 89.34%;
    width: 88.06%;
    height: 60px;
    margin: 0 auto;
  }
  .btn::after {
    width: 24px;
    height: 24px;
    right: 13px;
  }
}
/* ------------------------------
　　header
------------------------------ */
.header-menu-wrap {
  height: 80px;
  background: url(../img/texture_washi.webp) no-repeat top center/cover;
}

.header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: fixed;
  z-index: 9998;
  width: 100%;
}
.header-menu > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-menu.change-color {
  background: url(../img/texture_washi.webp) no-repeat top center/cover;
}
.is-locked .header-menu.change-color {
  background: transparent;
}

.contact-btn, .insta-btn {
  display: -ms-inline-grid;
  display: inline-grid;
  margin: 0 10px;
}
.contact-btn.-opened, .insta-btn.-opened {
  fill: #FFF;
}

.contact-btn {
  margin-right: 6px;
}

.header-logo {
  width: 136px;
  margin: 0 20px 0 40px;
  line-height: 0;
}
.header-logo a {
  display: block;
}
.is-locked .header-logo {
  opacity: 0;
}
.header-nav-wrap .header-logo {
  position: absolute;
  top: 25px;
  z-index: 9999;
  opacity: 0;
}
.is-locked .header-nav-wrap .header-logo {
  opacity: 1;
}

.toggle-btn {
  display: inline-block;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 80px;
  height: 80px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.toggle-btn[aria-expanded=true] {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.icon-toggle-menu {
  position: relative;
  display: block;
  width: 40px;
  height: 5px;
  background: #0a0b0b;
  border: 1px solid #fff;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin: 14px auto;
  -webkit-transition: 0.1s all;
  transition: 0.1s all;
}
.icon-toggle-menu::before, .icon-toggle-menu::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 5px;
  background-color: #0a0b0b;
  border: 1px solid #fff;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.icon-toggle-menu::before {
  top: -13px;
}
.icon-toggle-menu::after {
  bottom: -13px;
}
[aria-expanded=true] .icon-toggle-menu {
  background: transparent;
  border: none;
}
[aria-expanded=true] .icon-toggle-menu + .contact-btn {
  fill: red;
}
[aria-expanded=true] .icon-toggle-menu::before, [aria-expanded=true] .icon-toggle-menu::after {
  background-color: #fff;
  border: none;
}
[aria-expanded=true] .icon-toggle-menu::before {
  -webkit-transform: translate(-50%, 13px) rotate(45deg);
          transform: translate(-50%, 13px) rotate(45deg);
}
[aria-expanded=true] .icon-toggle-menu::after {
  -webkit-transform: translate(-50%, -13px) rotate(-45deg);
          transform: translate(-50%, -13px) rotate(-45deg);
}

.header-nav-wrap {
  display: none;
  opacity: 0;
  width: 100%;
  height: 100vh;
  padding: 147px 0 50px;
  background: linear-gradient(45deg, #000, #484848);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9997;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: all;
  transition-property: all;
}
.header-nav-wrap.is-active {
  display: block;
}
.header-nav-wrap.is-opened {
  opacity: 1;
}
.header-nav-wrap h2 {
  width: 162px;
  margin: 65px auto;
  line-height: 0;
}

.header-nav {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-nav ul {
  width: 48%;
}
.header-nav ul li {
  position: relative;
}
.header-nav ul li::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #838384;
  position: absolute;
  bottom: 0;
}
.header-nav ul li a {
  color: #fff;
  display: block;
  padding: 18px 6.25% 18px 4.16%;
  line-height: 0;
  position: relative;
}
.header-nav ul li a:hover {
  opacity: 0.7;
}
.header-nav ul li a::after {
  content: "";
  width: 10px;
  height: 12px;
  background: url(../img/arrow.png) no-repeat center/cover;
  position: absolute;
  right: 4.16%;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.header-nav ul li img {
  max-height: 22px;
}
.header-nav ul li span {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  line-height: 0;
}

@media screen and (max-width: 870px) and (min-width: 768px) {
  .header-nav ul li img {
    max-height: 20px;
  }
}
@media screen and (max-width: 767px) {
  .header-menu-wrap {
    background: url(../img/texture_washi_sp.webp) no-repeat top center/cover;
    height: 45px;
  }
  .header-menu.change-color {
    background: url(../img/texture_washi_sp.webp) no-repeat top center/cover;
  }
  .contact-btn, .insta-btn {
    margin: 0 6px;
  }
  .contact-btn svg, .insta-btn svg {
    width: 35px;
  }
  .header-logo {
    width: 108px;
    margin: 0 20px 0 10px;
  }
  .header-nav-wrap .header-logo {
    top: 10px;
  }
  .toggle-btn {
    width: 45px;
    height: 45px;
    margin-right: 2px;
  }
  .icon-toggle-menu {
    width: 28px;
    height: 4px;
  }
  .icon-toggle-menu::before, .icon-toggle-menu::after {
    width: 28px;
    height: 4px;
  }
  .icon-toggle-menu::before {
    top: -10px;
  }
  .icon-toggle-menu::after {
    bottom: -10px;
  }
  [aria-expanded=true] .icon-toggle-menu::before {
    -webkit-transform: translate(-50%, 10px) rotate(45deg);
            transform: translate(-50%, 10px) rotate(45deg);
  }
  [aria-expanded=true] .icon-toggle-menu::after {
    -webkit-transform: translate(-50%, -10px) rotate(-45deg);
            transform: translate(-50%, -10px) rotate(-45deg);
  }
  .header-nav-wrap {
    padding: 45px 0 50px;
  }
  .header-nav-wrap h2 {
    width: 97px;
    margin: 38px auto 30px;
  }
  .header-nav {
    padding: 0;
    display: block;
  }
  .header-nav ul {
    width: 100%;
  }
  .header-nav ul:first-child {
    border-top: 1px solid #838384;
  }
  .header-nav ul li a {
    padding: 16px 13.32% 15px 6.66%;
  }
  .header-nav ul li a::after {
    width: 5px;
    height: 6px;
    right: 5.06%;
  }
  .header-nav ul li img {
    max-height: 16px;
  }
}
/* ------------------------------
　　footer
------------------------------ */
/* ------------------------------
　　top
------------------------------ */
.mv {
  height: 613px;
  background: url(../img/texture_washi.webp) no-repeat top center/cover;
  position: relative;
}
.mv .layer__01 {
  position: absolute;
  width: 555px;
  bottom: 0;
  left: 0;
}
.mv .layer__02 {
  position: absolute;
  width: clamp(700px, 81.7%, 1225px);
  top: -20px;
  left: 48.2%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.mv .layer__03 {
  position: relative;
  width: 436px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) and (min-width: 415px) {
  .mv {
    height: auto;
  }
  .mv .layer__01 {
    width: 74%;
  }
  .mv .layer__02 {
    width: 89.33%;
    top: 15px;
    left: 49.5%;
  }
  .mv .layer__03 {
    width: 65.06%;
    padding: 210px 0 90px;
  }
}
@media screen and (max-width: 414px) {
  .mv {
    background: url(../img/texture_washi_sp.webp) no-repeat top center/cover;
    height: 455px;
  }
  .mv .layer__01 {
    width: 74%;
  }
  .mv .layer__02 {
    width: 89.33%;
    top: 15px;
    left: 49.5%;
  }
  .mv .layer__03 {
    position: absolute;
    width: 65.06%;
    bottom: 34px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
#about {
  background: url(../img/about-bg.webp) no-repeat top center/cover;
  position: relative;
}
#about::before {
  content: "";
  width: 319px;
  height: 446px;
  background: url(../img/about-right.png) no-repeat top center/cover;
  position: absolute;
  top: 0;
  right: 0;
}

.about-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 83.33%;
  padding: 60px 0 0;
  position: relative;
}

.about-side {
  width: 35.2%;
  position: relative;
}
.about-side img {
  position: absolute;
  max-height: 388px;
  bottom: 0;
}

.about-txt-wrap {
  width: 64.8%;
  padding: 22px 4% 95px 4.4%;
}
.about-txt-wrap h2 {
  width: 251px;
  margin: 0 0 40px;
}
.about-txt-wrap p {
  margin: 0;
}
.about-txt-wrap .about-title {
  max-width: 650px;
  margin: 40px 0;
}

@media screen and (max-width: 767px) {
  #about {
    background: url(../img/about-bg_sp.webp) no-repeat top center/cover;
  }
  #about::before {
    content: none;
  }
  .about-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: 100%;
  }
  .about-txt-wrap {
    width: 100%;
    padding: 0 5.33%;
  }
  .about-txt-wrap h2 {
    max-width: 225px;
    width: 67.16%;
    margin: 0 auto 30px;
  }
  .about-txt-wrap p {
    font-size: 14px;
  }
  .about-txt-wrap .about-title {
    margin: 30px 0 38px;
  }
  .about-side {
    width: 100%;
  }
  .about-side img {
    position: initial;
    max-height: none;
    margin-top: 35px;
  }
}
.page-link {
  padding: 100px 0 110px;
  background: linear-gradient(45deg, #000, #484848);
  position: relative;
}
.page-link::before, .page-link::after {
  content: "";
  width: 393px;
  height: 441px;
  position: absolute;
}
.page-link::before {
  background: url(../img/link-side-l.webp) no-repeat center/cover;
  bottom: 0;
}
.page-link::after {
  background: url(../img/link-side-r.webp) no-repeat center/cover;
  top: 0;
  right: 0;
}

.page-link-title {
  margin: 0 auto 70px;
  padding: 0 3.1%;
}
.__02 .page-link-title {
  padding: 0 6.5%;
}
.page-link-title img {
  display: block;
}

.page-link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-link-list li {
  width: 30.19%;
}
.page-link-list li a {
  display: block;
  border-bottom: 1px solid #fff;
  padding: 0 0 20px;
  position: relative;
}
.page-link-list li a:hover {
  opacity: 0.6;
}
.page-link-list li a::before {
  content: "";
  width: 20px;
  height: 10px;
  border-radius: 0 0 20px 20px;
  background: #b81c22;
  position: absolute;
  bottom: -11px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.page-link-list li .link-img {
  aspect-ratio: 640/531;
  -o-object-fit: contain;
     object-fit: contain;
}
.__02 .page-link-list li .link-img {
  aspect-ratio: 640/524;
}
.page-link-list li p {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .page-link {
    padding: 50px 0 70px;
  }
  .page-link::before, .page-link::after {
    width: 197px;
    height: 220px;
  }
  .page-link-title {
    margin: 0 auto 32px;
    padding: 0;
  }
  .__02 .page-link-title {
    padding: 0 9.25%;
  }
  .page-link-list li {
    width: 100%;
  }
  .page-link-list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 0;
  }
  .page-link-list li .link-img {
    width: 37.47%;
    aspect-ratio: initial;
  }
  .page-link-list li p {
    width: 58.27%;
  }
}
@media screen and (min-width: 768px) {
  .__01 .page-link-list {
    width: 660px;
    margin: 0 auto;
  }
  .__01 .page-link-list li {
    width: 320px;
  }
  .__01 .page-link-list li:nth-child(n+3) {
    margin-top: 60px;
  }
  .__01 .page-link-list p {
    height: 91px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.slider-wrap {
  overflow-x: hidden;
}

.card-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.card-list.__3col > li {
  width: 31.9%;
}
.product-howto .card-list.__3col > li {
  background: #fceeef;
}
.card-list.__3col > li + li {
  margin-left: 2.15%;
}
.card-list.__2col > li {
  width: 48.86%;
}
.card-list.__2col > li + li {
  margin-left: 2.27%;
}
.card-list .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.card-list .slick-slide {
  background: #0a0b0b;
  height: auto !important;
}
.product-howto .card-list .slick-slide {
  background: #fceeef;
}
.card-list.js-slider > li {
  background: #0a0b0b;
}
.product-howto .card-list.js-slider > li {
  background: #fceeef;
}
.card-list .card-txt-wrap {
  background: #0a0b0b;
  color: #fff;
  padding: 20px 20px 25px;
}
.product-howto .card-list .card-txt-wrap {
  background: #fceeef;
}
#sharpner .card-list .card-txt-wrap {
  padding: 12px;
}
.card-list .slide-title {
  margin: 0 0 15px;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.3;
}
#sharpner .card-list .slide-title {
  margin: 0;
}
.card-list img {
  background: #fff;
  border: 2px solid #000;
}
#secateurs .product-howto .card-list img {
  border: none;
}
.card-list p {
  margin: 0;
}
.card-list p.card-title {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 15px !important;
}
#sharpner .card-list p.card-title {
  margin: 0 !important;
}
.card-list p.card-title.__small {
  font-size: 18px;
  margin-bottom: 0 !important;
}
.product-howto .card-list p {
  color: #333;
}
.product-howto .card-list p.card-title {
  color: #b81c22;
}
.card-list .card-txt-l {
  font-size: 22px;
  font-weight: bold;
}

.bg-texture {
  background: url(../img/bg-gray.webp) repeat center/contain;
}

.oblong-list {
  margin: 30px 0 60px;
}
.oblong-list > li {
  border-bottom: 1px solid #b4b4b4;
  padding: 30px 2.98%;
}
.oblong-list > li .__2col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.oblong-list > li .__2col figure {
  width: 45.7%;
  margin-left: 8%;
}
.oblong-list ul {
  list-style-type: disc;
  padding-left: 1rem;
}
.oblong-list ul li + li {
  margin-top: 1rem;
}
.oblong-list ul + .oblong-title {
  margin-top: 10px;
}
.oblong-list .__side-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.oblong-list .__side-img img {
  width: 31.81%;
  margin-left: 4.5%;
}
#case .oblong-list {
  margin-top: -30px;
}

.oblong-category {
  font-weight: bold;
  color: #b81c22;
  margin: 0 0 15px;
}

.oblong-title {
  font-size: 26px;
  line-height: 1.5;
  font-weight: bold;
  margin: 0 0 10px;
  padding-left: 20px;
  position: relative;
}
.oblong-title::before {
  content: "";
  width: 10px;
  height: 20px;
  border-radius: 0 10px 10px 0;
  background: #b81c22;
  position: absolute;
  left: 0;
  top: 10px;
}

.product-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.product-list > li {
  width: 48.94%;
}

.product-list-item {
  padding: 37px 3.4%;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0px 0px 14.24px 1.76px rgba(233, 236, 241, 0.004);
          box-shadow: 0px 0px 14.24px 1.76px rgba(233, 236, 241, 0.004);
}
@media screen and (min-width: 768px) {
  .product-list-item:nth-child(even) {
    margin-left: 2.12%;
  }
  .product-list-item:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
}
.product-list-item ul {
  margin-top: 30px;
  list-style: disc;
  padding-left: 1rem;
}
.product-list-item ul .blade-blank {
  padding-left: 3.5rem;
}
.product-list-item ul .size-blank {
  padding-left: 2.75rem;
}

.product-contents {
  -webkit-box-shadow: 0px 0px 14.24px 1.76px rgba(233, 236, 241, 0.004);
          box-shadow: 0px 0px 14.24px 1.76px rgba(233, 236, 241, 0.004);
  background: #fff;
  border-radius: 8px;
}
.product-contents + .product-contents {
  margin-top: 40px;
}

.product-oblong {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 38px 4.25%;
}
.product-oblong > img {
  width: 53.61%;
  margin-left: 3%;
}
#sharpner .product-oblong > img {
  width: 58.27%;
}
.product-oblong ul {
  list-style: disc;
  padding-left: 1rem;
}
.product-oblong ul .size-blank {
  padding-left: 2.75rem;
}

.product-oblong-title {
  margin: 0 0 25px;
}
.product-oblong-title img {
  height: 25px;
}

.product-howto {
  padding: 38px 4.25% 64px;
}
.product-howto h3 {
  font-size: 28px;
  color: #b81c22;
  text-align: center;
  line-height: 1;
  margin: 0 0 1em;
  position: relative;
}
.product-howto h3::before {
  content: "";
  width: 100%;
  height: 2px;
  background: #b81c22;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.product-howto h3 span {
  background: #fff;
  position: relative;
  padding: 0 45px;
}

.change-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 5.96%;
}
.change-item .arrow {
  padding: 0 2.41%;
}
.change-item .arrow img {
  display: block;
}

@media screen and (max-width: 767px) {
  .bg-texture {
    background: url(../img/bg-gray.webp) repeat center/300% auto;
  }
  .card-list {
    display: block;
  }
  .card-list.__3col > li {
    width: 100%;
  }
  .card-list.__3col > li + li {
    margin-left: 0;
  }
  .product-howto .card-list.__3col > li + li {
    margin-top: 20px;
  }
  .card-list.__2col > li {
    width: 100%;
  }
  .card-list.__2col > li + li {
    margin: 20px 0 0;
  }
  .card-list .card-txt-wrap {
    padding: 15px 15px 20px;
  }
  .card-list p {
    font-size: 14px;
  }
  .card-list p.card-title {
    font-size: 18px;
    margin: 0 0 5px !important;
  }
  .card-list img {
    width: 100%;
    border: 1px solid #000;
  }
  .slick-dotted.slick-slider {
    margin-bottom: 40px !important;
  }
  .slick-dots {
    bottom: -40px;
  }
  .slick-dots li button:before {
    font-size: 18px;
  }
  .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #b81c22;
  }
  .oblong-list {
    margin: 0 0 40px;
  }
  .oblong-list > li {
    padding: 20px 0;
  }
  .oblong-list > li .__2col {
    display: block;
  }
  .oblong-list > li .__2col figure {
    width: 100%;
    margin: 15px 0 0;
  }
  .oblong-list ul {
    font-size: 14px;
  }
  .oblong-list .__side-img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .oblong-list .__side-img img {
    width: 83.38%;
    margin: 0 auto 25px;
  }
  #case .oblong-list {
    margin-top: -15px;
  }
  .oblong-category {
    font-size: 13px;
    margin: 0 0 5px;
  }
  .oblong-title {
    font-size: 20px;
    padding-left: 15px;
    margin: 0 0 5px;
  }
  .oblong-title::before {
    width: 8px;
    height: 16px;
    top: 7px;
  }
  .product-list-item {
    padding: 30px 15px;
    margin-bottom: 0;
    border-radius: 4px;
  }
  .product-list-item ul {
    margin-top: 25px;
    font-size: 14px;
    padding-left: 0.75rem;
  }
  .product-list-item ul .size-blank {
    padding-left: 2.4rem;
  }
  .product-contents + .product-contents {
    margin-top: 20px;
  }
  .product-oblong {
    padding: 30px 4.9%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .product-oblong > img {
    width: 100%;
    margin: 0 0 35px;
  }
  #sharpner .product-oblong > img {
    width: 100%;
  }
  .product-oblong ul {
    font-size: 14px;
    padding-left: 0.75rem;
  }
  .product-oblong ul .size-blank {
    padding-left: 2.4rem;
  }
  .product-howto {
    padding: 10px 4.9% 35px;
  }
  .product-howto h3 {
    font-size: 20px;
  }
  .product-howto h3 span {
    padding: 0 20px;
  }
  .change-item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0 8.2%;
    margin-bottom: 20px;
  }
  .change-item .arrow {
    padding: 0;
  }
  .change-item .arrow img {
    height: 45px;
  }
}
.contact {
  background: url(../img/contact-bg.webp) repeat center top/cover;
  color: #fff;
  padding: 80px 0 100px;
  margin-bottom: -1px;
}
.contact .contact-inner {
  max-width: 720px;
}
.contact .contact-inner .btn {
  margin-top: 40px;
}
.contact h2 {
  width: 49.72%;
  margin: 0 0 40px;
}
.contact .contact-info {
  width: 77.77%;
  margin: 0 0 30px;
}

@media screen and (max-width: 767px) {
  .contact {
    background: url(../img/contact-bg_sp.jpg) repeat center top/cover;
    padding: 40px 0 60px;
    position: relative;
  }
  .contact h2 {
    width: 55.07%;
    line-height: 1;
    margin: 0 auto;
    padding: 0;
    position: relative;
  }
  .contact h2 + div {
    width: 100vw;
    margin: -8px calc(50% - 50vw);
  }
  .contact .contact-inner .btn {
    margin-top: 30px;
  }
  .contact .contact-info {
    width: 83.6%;
    margin: 0 0 20px 7px;
  }
  .contact .contact-info + p {
    font-size: 14px;
  }
}
footer {
  background: #000;
  color: #fff;
  padding-bottom: 20px;
}
footer .copyright {
  display: block;
  text-align: center;
  font-size: 10px;
}

.footer-inner {
  margin: 0 60px;
  padding: 60px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-logo {
  width: 72px;
  margin-right: 14px;
}

.footer-company {
  max-width: 230px;
  margin: -5px 0 14px;
}
.footer-company + p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .footer-inner {
    margin: 0;
    padding: 35px 5.33% 50px;
    display: block;
  }
  footer {
    padding-bottom: 26px;
  }
  .footer-logo {
    width: 54px;
    margin: 0 auto 16px;
  }
  .footer-company {
    max-width: 180px;
    margin: 0 auto 16px;
    line-height: 1;
  }
}
#new {
  text-align: center;
}

.new-title {
  margin: 0;
  padding: 85px 0 65px;
}
.new-title img {
  width: 51.2%;
}

.new-copy img {
  width: 66.7%;
}

.new-txt {
  font-size: 26px;
}

.new-img {
  padding: 10px 0 140px;
}

.automatic-copy1 {
  text-align: center;
}
.automatic-copy1 img {
  width: 61%;
}

.automatic-copy2 {
  text-align: center;
}
.automatic-copy2 img {
  width: 68.9%;
}

@media screen and (max-width: 767px) {
  .new-title {
    padding: 40px 0;
  }
  .new-title img {
    width: 87.8%;
  }
  .new-copy img {
    width: 87%;
  }
  .new-txt {
    font-size: 20px;
  }
  .new-img {
    padding-bottom: 60px;
  }
  .automatic-copy1 img {
    width: 66%;
  }
}
.notice-list {
  margin-bottom: 60px;
  padding: 50px 30px 25px;
  border-bottom: 1px solid #d8c7bd;
}
.notice-list li {
  padding-left: 1em;
  text-indent: -1em;
}
.notice-list li::before {
  content: "※";
}

@media screen and (max-width: 767px) {
  .notice-list {
    margin-bottom: 30px;
    padding: 30px 5px;
  }
}
/*# sourceMappingURL=style.min.css.map */