@charset "UTF-8";
:root {
  --blue: #004680;
  --white: #fff;
  --gray : #666;
  --light-gray: #f7f7f7;
  --nav-hover: #D3D3D3;
  --sp-border-gray: #A6A6A6;
  --black : #000;
  --input: #E1E1E1;
  --name: #3a3539;
  --push-button: #0078A9;
  --sp-nav-bg: #323232;
}

body {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  overflow-x: hidden;
}

body.is-active {
  position: fixed;
  width: 100vw;
}

/* 共通パーツ ================================================= */
p:not(.item-title) {
  font-size: 14px;
  line-height: 1.7;
}
a {
  text-decoration: none;
}
img {
  width: 100%;
  display: block;
}
ul, li {
  list-style: none;
}
.is-pc {
  display: none;
}
.title {
  font-size: 24px;
  font-weight: bold;
  color: var(--blue);
}
.title-small {
  font-size: 12px;
}
.movie {
  max-width: 480px;
}

.main-contents {
  position: relative;
}

.is-pc {
  display: block;
}
.is-sp {
  display: none;
}

/* header ================================================= */
.header-logo {
  display: block;
  width: 68px;
  height: auto;
}
.pc-nav {
  width: 100%;
  max-width: 1040px;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
}
.pc-nav-wrap {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
}
.pc-nav-wrap > :not(:first-child) {
  margin-left: 45px;
}
.pc-nav-link {
  color: var(--white);
}
.pc-nav-link:hover {
  color: var(--nav-hover);
}

.hamburger-open {
  position: absolute;
  top: 25px;
  right: 25px;
  cursor: pointer;
}
.hamburger-open:hover {
  opacity: 0.7;
}
.hamburger-open-border {
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--white);
  margin: auto;
  margin-right: 0;
}
.hamburger-open-border + .hamburger-open-border {
  margin-top: 10px;
}

.sp-nav {
  position: fixed;
  overflow: auto;
  left: 100%;
  width: 100%;
  height: 100%;
  background-color: var(--sp-nav-bg);
  opacity: 0.9;
}
.sp-nav.is-active {
  left: 0;
}
.sp-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  font-size: 18px;
  color: var(--white);
  border-bottom: 2px solid var(--white);
}
.hamburger-close {
  height: 20px;
  width: auto;
}
.sp-nav-list {
  border-bottom: 1px solid var(--white);
}
.sp-nav-list-link {
  display: block;
  color: var(--white);
  font-size: 15px;
  padding: 12.5px 40px;
}
.sp-nav-list-img {
  width: 13px;
  display: inline;
  margin-left: 20px;
}

@media screen and (max-width:768px) {
  .header-logo {
    width: 90px;
  }
}

/* 裁ち鋏とは ================================================= */
.description {
  position: relative;
  height: 300px;
  background: url(../images/contents_pc.png) no-repeat left;
  background-size: contain;
  background-color: var(--white);
  margin-top: 20px;
}
.description-txt {
  position: absolute;
  top: 50%;
  right: 20%;
  transform: translateY(-50%);
}
.description-txt .title {
  padding-bottom: 40px;
}

@media screen and (max-width:1024px) {
  .description-txt {
    right: 5%;
  }
}

@media screen and (max-width:768px) {
  .description {
    height: 550px;
    background: url(../images/contents_sp.png) no-repeat bottom;
    background-size: cover;
  }
  .description-txt {
    top: 140px;
    left: 10%;
  }
  .description-txt .title {
    padding-bottom: 30px;
  }
}


/* 製品特徴 ================================================= */
.description-detail {
  padding: 100px 20px 148px;
  background-color: var(--light-gray);
}
.description-detail .txt {
  padding: 25px 0 70px 50px;
}
.description-detail-flex {
  display: flex;
  justify-content: center;
}
.description-detail-flex.note {
  display: flex;
  justify-content: start;
  max-width: 1020px;
  padding: 0 10px;
  margin: 0 auto;
}

.flex-contents-img {
  max-width: 290px;
  width: 100%;
}
.flex-contents + .flex-contents {
  margin-left: 25px;
}
.flex-contents-title {
  font-size: 16px;
  font-weight: bold;
  margin: 45px 0 20px;
  padding: 10px 0;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  text-align: center;
}
.flex-contents-txt {
  text-indent: -14px;
  padding-left: 10px;
  font-size: 14px;
}
.flex-contents-txt:not(:first-of-type) {
  padding-top: 10px;
}
.flex-contents-txt:before {
  content: "・";
}

@media screen and (max-width:768px) {
  .description-detail{
    padding: 85px 37.5px 105px;
  }
  .description-detail-flex.note {
    flex-wrap: wrap;
    padding: 0;
  }
  .description-detail-flex.note .title {
    width: 100%;
  }
  .description-detail-flex.note .txt {
    padding: 27.5px 0 70px 0;
  }
  .description-detail-flex {
    flex-wrap: wrap;
  }
  .flex-contents {
    width: 100%;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--sp-border-gray);
  }
  .flex-contents-img {
    margin: 0 auto;
  }
  .flex-contents-title {
    margin: 22.5px 0 17.5px;
  }
  .flex-contents + .flex-contents {
    margin: 22.5px 0 0;
  }
}

/* 動画 ================================================= */
.description-detail-movie {
  text-align: center;
  padding-top: 90px;
}
.description-detail-movie-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 35px;
}
.description-detail-movie .deco {
  display: block;
  width: 70px;
  height: 1px;
  background-color: var(--blue);
}
.description-detail-movie .title {
  font-size: 18px;
  padding: 0 7.5px;
}

@media screen and (max-width:768px){
  .description-detail-movie {
    padding-top: 82.5px;
  }
  .description-detail-movie-wrap {
    padding-bottom: 20px;
  }
  .description-detail-movie .deco {
    width: 40px;
  }
}
@media screen and (max-width:370px) {
  .description-detail-movie .deco {
    width: 25px;
  }
}

/* 製品一覧 ================================================= */
.main {
  margin-top: 20px;
  background-color: var(--light-gray);
}
.main-items {
  max-width: 1020px;
  padding: 90px 10px 160px;
  margin: 0 auto;
}
.main-items-wrap .title {
  color: var(--black);
  font-size: 14px;
  font-weight: bold;
  padding: 65px 0 10px;
}
.main-items-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: unset;
}
.main-items-flex + .main-items-flex {
  padding-top: 40px;
}
.item {
  position: relative;
  max-width: 300px;
}
.item:nth-child(n+4) {
  margin-top: 37px;
}
.item + .item:not(:nth-child(3n+1)) {
  margin-left: 50px;
}
.label {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--blue);
  font-size: 10px;
  border: 0.6px solid var(--blue);
  padding: 5px 10px;
}
.item-title {
  position: absolute;
  top: 145px;
  left: 5px;
  color: var(--white);
  background-color: var(--blue);
  font-size: 10px;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 10px;
}
.item-title.long {
  font-size: 12px;
  top: 135px;
}
.item-title.sub {
  top: 160px;
  left: 155px;
  font-size: 10px;
  padding: 5px;
  background-color: transparent;
  border: solid 1px var(--blue);
  color: var(--blue);
}
.item-title.sub.short {
  left: 215px;
}
.item-title-small {
  width: 100%;
  display: block;
  text-align: left;
  font-weight: normal;
  border-top: solid 1px var(--white);
  padding-top: 5px;
}
.item-title.right {
  top: 140px;
  left: 155px;
}
.item-title.left {
  font-size: 10px;
  top: 160px;
  left: 240px;
  border: solid 1px var(--blue);
  padding-top: 5px;
  background-color: transparent;
  color: var(--blue);
}

.btn.cart {
  position: relative;
  display: block;
  width: 100%;
  padding: 4px 0;
  font-size: 14px;
  color: var(--white);
  text-align: center;
  background-color: var(--blue);
  margin-top: 3px;
}

.btn.cart:hover {
  background-color: var(--push-button);
}
.btn-cart-img {
  position: absolute;
  left: 40px;
  bottom: 7px;
  height: 16px;
  width: auto;
}
.price::before {
  content: "¥";
}
.price::after {
  content: "（税込）";
}

@media screen and (max-width:1024px) {
  .main-items {
    max-width: 768px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .main-items-flex {
    justify-content: center;
  }
  .item:nth-child(n+4) {
    margin-top: 0;
  }
  .item:nth-child(n+3) {
    margin-top: 37px;
  }
  .item + .item:not(:nth-child(3n+1)) {
    margin-left: 0;
  }
  .item + .item:not(:nth-child(2n+1)) {
    margin-left: 50px;
  }
  .item:last-child:nth-child(2n+1) {
    margin-right: 350px;
  }
}

@media screen and (max-width:768px){
  .main-items {
    padding: 86px 37.5px 75px;
  }
  .main-items-wrap {
    padding-bottom: 72.5px;
    border-bottom: 1px solid var(--sp-border-gray);
  }
  .main-items-wrap .title {
    padding-top: 75px;
  }
  .main-items-flex {
    max-width: calc(300px + 37.5px * 2);
    margin: 0 auto;
  }
  .item + .item:not(:nth-child(2n+1)) {
    margin: 0;
  }
  .item + .item:not(:nth-child(3n+1)) {
    margin: 0;
  }
  .main-items .item + .item {
    margin-top: 40px;
  }
  .main-items-flex + .main-items-flex {
    padding-top: 40px;
  }
  .item-title {
    top: 150px;
    left: 5px;
  }
  .item-title.left {
    top: 165px;
    left: 240px;
  }
  .item-title.sub {
    top: 165px;
  }
  .item-title.sub.short {
    top: 165px;
  }
}

@media screen and (max-width:370px) {
  .item-title,.item-title.right {
    top: 115px;
    left: 5px;
  }
  .item-title.long {
    top: 125px;
  }
  .item-title.sub {
    top: 122px;
    left: 150px;
    padding: 3px;
    letter-spacing: -0.05em;
  }
  .item-title.sub.short {
    top: 130px;
    left: 165px;
  }
  .item-title.left {
    top: 130px;
    left: 190px;
  }
  .btn-cart-img {
    left: 25px;
  }
}

/* バナー ================================================= */
.banner {
  background-color: var(--light-gray);
  padding-bottom: 145px;
}
.banner-img {
  max-width: 700px;
  margin: 0 auto;
}
.banner-img:hover {
  opacity: 0.9;
}

@media screen and (max-width:768px) {
  .banner {
    padding: 0 37.5px 97.5px;
  }
  .banner-img {
    max-width: 300px;
  }
}

/* 主な用途 ================================================= */
.use {
  background: url(../images/use_bg_pc.png) no-repeat center;
  background-size: cover;
  padding: 85px 0 100px;
}
.use-wrap {
  max-width: 1020px;
  padding: 0 10px;
  margin: 0 auto;
  color: var(--white);
}
.use-flex {
  display: flex;
}
.use-flex + .use-flex {
  justify-content: space-between;
  max-width: 750px;
  margin: 0 auto;
  padding-top: 75px;
}
.use .title {
  color: var(--white);
  padding-right: 50px;
}
.use-item {
  text-align: center;
  font-size: 14px;
}
.use-item-icon {
  height: 81px;
  width: 75px;
  margin: 0 auto;
}
.use-item-icon-img {
  height: 100%;
}
.use-item-txt {
  width: 120px;
  padding-top: 20px;
}

@media screen and (max-width:1024px) {
  .use-wrap {
    max-width: 768px;
    padding: 0;
  }
}

@media screen and (max-width:768px) {
  .use {
    background: url(../images/use_bg_sp.png) no-repeat center;
    background-size: cover;
    padding: 80px 37.5px 85px;
  }
  .use-flex {
    flex-wrap: wrap;
  }
  .use .title {
    width: 100%;
    padding-bottom: 30px;
  }
  .use-flex + .use-flex {
    padding: 65px 25px 0;
  }
  .use-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid var(--white);
    padding: 25px 12.5px;
  }
  .use-item:first-child {
    padding-top: 0;
  }
  .use-item-icon {
    width: 72.5px;
    margin: 0 40px 0 0;
  }
  .use-item-txt {
    padding: 0;
  }
}

/* 製造工程 ================================================= */
.step {
  max-width: 1020px;
  padding: 0 10px;
  margin: 110px auto;
}
.step .title {
  padding-right: 50px;
}
.step-flex,
.step-flex-warp {
  display: flex;
  flex-wrap: wrap;
}
.step-flex + .step-flex {
  align-items: center;
  padding-top: 85px;
}
.step-flex > *:nth-child(n+8) {
  margin-top: 60px;
}
.step-flex > *:nth-child(8n) {
  display: none;
}
.step-flex-warp {
  width: 180px;
}
.step-img {
  margin-bottom: 15px;
}
.next-step-img {
  display: block;
  width: 20px;
  margin: 0 40px 0 33px;
  padding-bottom: 29px; /* 文字と余白分引く */
}

@media screen and (max-width:1024px) {
  .step {
    max-width: 768px;
    padding: 0 20px;
  }
  .next-step-img{
    margin: 0 30px 0 43px;
  }
  .step-flex > *:nth-child(n+8) {
    margin-top: 0;
  }
  .step-flex > *:nth-child(8n) {
    display: block;
  }
  .step-flex > *:nth-child(n+6) {
    margin-top: 60px;
  }
  .step-flex > *:nth-child(6n) {
    display: none;
  }
}

@media screen and (max-width:768px) {
  .step {
    padding: 0 37.5px;
    margin: 90px 0 125px;
  }
  .step .title {
    width: 100%;
    padding-bottom: 27.5px;
  }
  .step-flex-warp {
    width: 100%;
  }
  .step-flex-warp:nth-of-type(n+2) {
    padding-top: 40px;
  }
  .next-step-img {
    display: none;
  }
  .step-flex > *:nth-child(8n) {
    display: none;
  }
  .step-flex > *:nth-child(n+6) {
    margin-top: 0;
  }
}

/* 名入れ ================================================= */
.review {
  background: url(../images/review-bg.png) repeat;
  padding: 75px 0 180px;
}

/* 名入れ ------------------------ */
.review .txt {
  text-align: center;
}
.review-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
}
.review-top .title {
  padding: 0 30px;
}
.review-top-img {
  height: 50px;
  width: auto;
}

/* ダミー基本的には… ------------------------ */
.review-description {
  margin: 55px auto 105px;
  padding: 0 20px;
  max-width: 1040px;
}
.review-description-flex {
  display: flex;
}
.review-border {
  border-top:    1px solid var(--white);
  border-bottom: 1px solid var(--white);
  width: 100%;
  padding: 35px 50px;
}
.review-list {
  display: flex;
  padding-top: 18px;
}
.review-list-title {
  width: 120px;
}
.review-list-wrap {
  width: calc(100% - 120px);
}
.review-list-txt {
  font-size: 14px;
  text-indent: -14px;
  padding-left: 14px;
}
.review-list-txt::before {
  content: "・";
}
.review-sample {
  margin-left: 35px;
}
.sample-img {
  width: 268px;
}
.sample-img + .sample-img {
  margin-top: 20px;
}
.review-description .txt {
  text-align: end;
  font-size: 12px;
}

/* レイアウトイメージ ------------------------ */
.review-main .title {
  color: var(--black);
  font-size: 14px;
}

.review-ornament {
  max-width: 1040px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.review-ornament > * {
  width: 150px;
}

.layout{
  max-width: 880px;
  margin: 0 auto;
  padding: 105px 20px 0;
}
.layout .alert {
  font-size: 12px;
}

.layout-wrap {
  display: flex;
  justify-content: center;
  padding: 30px 0;
}

.layout-wrap-contents {
  padding-right: 40px;
}

.layout-wrap-note {
  border-left: 1px solid var(--white);
  padding-left: 40px;
  font-size: 14px;
}

/* 入力部分 ------------------------ */
input {
  background-color: var(--input);
}

.switch-btn {
  width: 80px;
  font-size: 12px;
  display: inline-block;
  padding: 5px 0;
  border-radius: 20px;
  text-align: center;
  background-color: var(--blue);
  color: var(--white);
  cursor: pointer;
}
.switch-btn:hover {
  background-color: var(--push-button);
}
.switch-btn.is-active {
  background-color: var(--push-button);
}

.switch-btn-reset {
  width: 95px;
  font-size: 12px;
  display: inline-block;
  padding: 5px 0;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--blue);
  color: var(--blue);
  cursor: pointer;
}
.switch-btn-reset .cancel {
  width: 9px;
  margin-right: 5px;
  display: inline;
}

.input .is-active {
  display: flex;
  padding-bottom: 15px;
}

.input-wrap {
  display: none;
}
.input-wrap-first {
  margin-left: 15px;
}

.input-label {
  display: block;
  font-size: 14px;
}
.layout-input {
  width: 166px;
}

/* 鋏 ------------------------ */
.layout-img {
  display: flex;
  justify-content: center;
}
.layout-img-wrap {
  position: relative;
}

.scissor {
  width: 1330px;
}

.view {
  width: 450px;
  font-size: 20px;
  color: var(--name);
  text-align: end;
  position: absolute;
  top: 142.5px;
  left: 125px;
}

/* ご希望の… ------------------------ */
.review-caution {
  max-width: 580px;
  margin: 0 auto;
  padding: 25px 0;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: var(--blue);
  border-top:    2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
}

/* 注意事項 ------------------------ */
.review-alert {
  padding: 110px 40px 45px;
  max-width: 1080px;
  margin: 0 auto;
}
.review-alert .title {
  font-size: 16px;
  padding-bottom: 5px;
  color: var(--black);
}

.review-alert-list {
  border: 1px solid var(--white);
  padding: 35px 45px;
  font-size: 14px;
}
.review-alert-list-txt {
  padding-top: 30px;
  text-indent: -14px;
  padding-left: 14px;
}
.review-alert-list-txt > *::before {
  content: "・";
}

@media screen and (max-width:768px) {

  /* 名入れ ------------------------ */
  .review {
    padding: 62.5px 0 110px;
  }
  .review-top {
    padding-bottom: 27.5px;
  }
  .review-top .title {
    padding: 0 20px;
  }
  .review-ornament > * {
    width: 75px;
  }

  /* ダミー基本的には… ------------------------ */
  .review-description {
    margin: 65px 0 125px;
    padding: 0 25px;
  }
  .review-description-flex {
    flex-wrap: wrap;
  }
  .review-border {
    padding: 27.5px 0;
  }
  .review-list {
    flex-wrap: wrap;
  }
  .review-list-title,
  .review-list-wrap  {
    width: 100%;
  }
  .review-sample {
    padding-top: 65px;
    margin: 0 auto;
  }
  .review-description .txt {
    width: 268px;
    margin: 0 auto;
  }
  /* レイアウトイメージ ------------------------ */
  .review-main .title {
    text-align: center;
  }
  .layout-wrap {
    flex-wrap: wrap;
    padding: 35px 0;
  }
  .layout {
    padding: 45px 37.5px 0;
  }
  .layout-wrap-contents {
    width: 100%;
    padding: 0;
  }
  .input-wrap-last, .input-wrap-first {
    width: 100%;
  }
  .input .is-active {
    flex-wrap: wrap;
  }
  .input-label {
    display: inline;
  }
  .layout-input {
    width: calc(100% - 20px);  /* 文字と余白分引く */
    height: 40px;
  }
  .input-wrap-first {
    margin: 9px 0 0 0;
  }
  .select-type {
    text-align: center;
    margin: 0 auto;
    padding-bottom: 30px;
  }
  .switch-btn {
    width: 90px;
    font-size: 15px;
  }
  .switch-btn-reset {
    width: 115px;
    font-size: 15px;
    margin-top: 12.5px;
  }
  .scissor {
    width: 768px;
  }
  .view {
    font-size: 25px;
    top: 190px;
    left: -50px;
  }
  .layout-wrap-note {
    border-left: none;
    border-top: 1px solid var(--white);
    padding: 25px 0 0 0;
    width: 100%;
  }
  .layout-wrap-note-list > * {
    padding-top: 20px;
  }
  .layout .alert {
    font-size: 14px;
  }
  /* ご希望の… ------------------------ */
  .review-caution {
    max-width: 300px;
    font-size: 16px;
  }
  /* 注意事項 ------------------------ */
  .review-alert {
    padding: 92.5px 37.5px 60px;
  }
  .review-alert-list {
    border-right: none;
    border-left:  none;
    padding: 27.5px 0;
  }
  .review-alert .title {
    font-size: 14px;
  }
}
@media screen and (max-width:425px) {
  .scissor {
    width: 425px;
  }
  .view {
    font-size: 15px;
    top: 105px;
    left: -230px;
  }
}

/* footer ================================================= */
.footer {
  position: relative;
  background-color: var(--black);
  padding: 40px 0 50px;
}
.footer-btn {
  position: absolute;
  z-index: 1;
  width: 96px;
  bottom: 25px;
  right: 25px;
}
.footer-btn:hover .is-pc *:nth-child(1) {
  display: none;
}
.footer-btn .is-pc *:nth-child(2) {
  display: none;
}
.footer-btn:hover .is-pc *:nth-child(2) {
  display: block;
}
.footer-txt {
  color: var(--white);
  text-align: center;
  font-size: 10px;
}

@media screen and (max-width:768px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
  .movie {
    max-width: 300px;
  }
}

@media screen and (max-width:370px) {
  .movie {
    max-width: 250px;
  }
}