@charset "UTF-8";
/* CSS Document */
/*----------------------------------------------------
 ベース
----------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body.fixed {
  overflow: hidden;
  height: 100%;
}

@font-face {
  font-family: "LINE_Seed_JP";
  src: url('/import/tenant_1/www.nemuri-seisakusyo.jp/assets/font/LINE_Seed_JP/Web/WOFF/LINESeedJP_OTF_Rg.woff') format("woff");
}
@font-face {
  font-family: "LINE_Seed_JP";
  font-weight: bold;
  src: url('/import/tenant_1/www.nemuri-seisakusyo.jp/assets/font/LINE_Seed_JP/Web/WOFF/LINESeedJP_OTF_Bd.woff') format("woff");
}
@font-face {
  font-family: "Eight One";
  src: url('/import/tenant_1/www.nemuri-seisakusyo.jp/assets/font/Eight One.ttf') format("TrueType");
}
#container {
  font-family: "Inter", "中ゴシックBBB","Gothic Medium BBB", "游ゴシック体", YuGothic,"游ゴシック", "Yu Gothic", "Helvetica Neue", "Arial", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size:1.4em;
  line-height: 1.7;
  background-color: #f5f2e9;
  color: #6f4f25;
  min-width: 1000px;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #container {
    font-size: 1.4rem;
    min-width: 320px;
  }
}

.overlay {
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  z-index: 111;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.overlay.open {
  width: 100%;
  height: 100%;
  opacity: 1;
}

main.open {
  -webkit-transform: translateX(-250px);
  transform: translateX(-250px);
}

a {
  text-decoration: none;
  word-break: break-word;
  color: inherit;
}
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

/*
::selection {
	background-color: #6f4f25;
	color: #fff;
}
*/
h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  margin: 0;
}

address {
  font-style: normal;
}

small {
  font-size: 100%;
}

iframe {
  vertical-align: bottom;
}

input, select, textarea {
  font-size: 16px !important;
  vertical-align: middle;
}

button {
  line-height: normal;
  cursor: pointer;
}

ol, ul {
  list-style-type: none;
}
ol li, ul li {
  word-break: break-all;
}

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

video {
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
}
table th {
  font-weight: normal;
  text-align: left;
}

.ophv {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.ophv:hover {
  opacity: 0.6;
}

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

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

/*----------------------------------------------------
 ヘッダー
----------------------------------------------------*/
header {
  width: 100%;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
}
header .inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
header .logo {
  position: absolute;
  top: 10px;
  left: 20px;
}
@media screen and (max-width: 768px) {
  header .logo {
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  header .logo a {
    display: block;
    padding: 10px;
  }
}
@media screen and (max-width: 768px) {
  header .logo img {
    height: 40px;
  }
}
header #gnav {
  position: absolute;
  top: 20px;
  right: 0;
}
@media screen and (max-width: 1200px) {
  header #gnav {
    display: none;
  }
}
header #gnav.active {
  display: block;
}
header #gnav .nav-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
header #gnav .nav-in .btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header #gnav .nav-in .btn-area .discount-bnr {
  padding-left: 20px;
}
header #gnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 25px;
}
header #gnav ul li {
  font-size: 16px;
  font-weight: bold;
  color: #6f4f25;
  margin-right: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header #gnav ul li a {
  display: block;
  white-space: nowrap;
}
header #gnav ul li:hover {
  opacity: 0.7;
}
header .mail-btn {
  max-width: 390px;
  height: 74px;
}
@media screen and (max-width: 1200px) {
  header .mail-btn {
    height: 60px;
    margin: 0 auto 20px;
  }
}
header .mail-btn a {
  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;
  background-color: #cc3030;
  color: #fff;
  border-radius: 20px;
  font-size: 20px;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1200px) {
  header .mail-btn a {
    font-size: 14px;
  }
}
header .mail-btn a::before {
  content: "";
  background-image: url('/import/tenant_1/www.nemuri-seisakusyo.jp/assets/img/common/mail.webp');
  width: 28px;
  height: 22px;
  margin-right: 10px;
}
header .mail-btn a:hover {
  opacity: 0.7;
}
header #gnavBtn {
  display: none;
  width: 60px;
  height: 60px;
  padding: 10px;
  position: absolute;
  z-index: 99999;
  top: 0;
  right: 0;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  header #gnavBtn {
    display: block;
  }
}
header #gnavBtn span {
  background-color: #6f4f25;
  border-radius: 10px;
  width: 28px;
  height: 4px;
  margin: auto;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: absolute;
  left: 0;
  right: 0;
}
header #gnavBtn span:nth-of-type(1) {
  top: 19px;
}
header #gnavBtn span:nth-of-type(2) {
  top: 28px;
}
header #gnavBtn span:nth-of-type(3) {
  top: 37px;
}
header #gnavBtn.active span {
  background-color: #fff;
}
header #gnavBtn.active span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
          transform: translateY(9px) rotate(-45deg);
}
header #gnavBtn.active span:nth-of-type(2) {
  opacity: 0;
}
header #gnavBtn.active span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
          transform: translateY(-9px) rotate(45deg);
}
header #gnavSP {
  display: none;
  background-color: #6f4f25;
  color: #fff;
  width: 80%;
  height: 100vh;
  padding: 60px 20px;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  -webkit-transform: translate(100%);
          transform: translate(100%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 1200px) {
  header #gnavSP {
    display: block;
  }
}
header #gnavSP.open {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
header #gnavSP ul {
  padding-bottom: 40px;
}
header #gnavSP ul li {
  font-size: 14px;
  margin-bottom: 20px;
}
header #gnavSP ul li a {
  display: block;
  color: #fff;
  position: relative;
}
header #gnavSP ul li a:hover {
  opacity: 0.6;
}
header #gnavSP ul li a::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 0;
}
header #gnavSP .child ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}
header #gnavSP .child ul li {
  font-size: 14px;
  width: 50%;
  margin-bottom: 20px;
}

/*----------------------------------------------------
 フッター
----------------------------------------------------*/
.fcontact-area {
  background-color: #6f4f25;
  background-image: url('/import/tenant_1/www.nemuri-seisakusyo.jp/assets/img/top/contact-bg.webp');
  background-size: cover;
  background-position: center;
}
.fcontact-area .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1400px;
  width: 80%;
  margin: 0 auto;

  margin: auto;
  padding: 80px 20px;
}
@media screen and (max-width: 768px) {
  .fcontact-area .inner {
    display: block;
    padding: 40px 10px;
  }
}
.fcontact-area .box {
  background-color: #fff;
  border-radius: 20px;
  max-width: 670px;
  width: 47.8571428571%;
  padding: 50px 20px;
}
@media screen and (max-width: 768px) {
  .fcontact-area .box {
    width: auto;
    margin-bottom: 20px;
    padding: 20px;
  }
}
.fcontact-area .box .ttl {
  font-size: 21px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.07em;
    margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .fcontact-area .box .ttl {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.fcontact-area .box .tel {
  font-family: "LINE_Seed_JP";
  font-weight: bold;
  font-size: 50px;
  text-align: center;
  color: #cc3030;
}
@media screen and (max-width: 1200px) {
  .fcontact-area .box .tel {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  .fcontact-area .box .tel {
    font-size: 26px;
  }
}
.fcontact-area .box .tel::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url('/import/tenant_1/www.nemuri-seisakusyo.jp/assets/img/top/contact-tel.webp');
  background-size: cover;
  width: 44px;
  height: 44px;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .fcontact-area .box .tel::before {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
}
.fcontact-area .box .mail-btn {
  max-width: 390px;
  height: 74px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .fcontact-area .box .mail-btn {
    height: 60px;
  }
}
.fcontact-area .box .mail-btn a {
  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;
  background-color: #cc3030;
  color: #fff;
  border-radius: 20px;
  font-size: 20px;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .fcontact-area .box .mail-btn a {
    font-size: 14px;
  }
}
.fcontact-area .box .mail-btn a::before {
  content: "";
  background-image: url('/import/tenant_1/www.nemuri-seisakusyo.jp/assets/img/common/mail.webp');
  width: 28px;
  height: 22px;
  margin-right: 10px;
}
.fcontact-area .box .mail-btn a:hover {
  opacity: 0.7;
}

.fsns-list {
  background-color: #ccc;
  background-image: url('/import/tenant_1/www.nemuri-seisakusyo.jp/assets/img/top/sns-bg.webp');
  background-size: cover;
  background-position: center;
}
.fsns-list .inner {
  max-width: 1400px;
  margin: auto;
  padding: 80px 20px;
}
@media screen and (max-width: 768px) {
  .fsns-list .inner {
    padding: 40px 10px;
  }
}
.fsns-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
      width: 90%;
  margin: 0 auto;

}
@media screen and (max-width: 768px) {
  .fsns-list ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.fsns-list ul li {
  text-align: center;
  width: 18.5714285714%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .fsns-list ul li {
    width: 48%;
    margin-bottom: 10px;
  }
}
.fsns-list ul li a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.fsns-list ul li a:hover {
  opacity: 0.7;
}

/*
footer fixed banner
*/
.footer-fixed-bnr {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 767px) {
  .footer-fixed-bnr {
    padding: 0 5%;
  }
}
.footer-fixed-bnr .bnrs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .footer-fixed-bnr .bnrs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 2%;
  }
}
.footer-fixed-bnr .bnrs li {
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .footer-fixed-bnr .bnrs li {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 2%;
  }
}
@media screen and (max-width: 767px) {
  .footer-fixed-bnr .bnrs li:nth-child(2n) {
    margin-right: 0;
  }
}
.footer-fixed-bnr .bnrs li:last-child {
  margin-right: 0;
}
.footer-fixed-bnr .bnrs li a {
  display: block;
  padding: 10px 20px;
  background-color: #fff;
  border: 1px solid #6f4f25;
}
@media screen and (max-width: 768px) {
  .footer-fixed-bnr .bnrs li a {
    padding: 5px 15px;
  }
}
@media screen and (max-width: 425px) {
  .footer-fixed-bnr .bnrs li a {
    padding: 2vw 3vw;
  }
}
.footer-fixed-bnr .bnrs li a:hover {
  text-decoration: none;
  color: inherit;
}
.footer-fixed-bnr .bnrs li a .txt {
  text-align: center;
}
.footer-fixed-bnr .bnrs li a .txt span {
  display: block;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .footer-fixed-bnr .bnrs li a .txt span {
    font-size: 12px;
  }
}
@media screen and (max-width: 425px) {
  .footer-fixed-bnr .bnrs li a .txt span {
    font-size: 2vw;
  }
}
.footer-fixed-bnr .bnrs li a .txt span.strong {
  color: #cc3030;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .footer-fixed-bnr .bnrs li a .txt span.strong {
    font-size: 13px;
  }
}
@media screen and (max-width: 425px) {
  .footer-fixed-bnr .bnrs li a .txt span.strong {
    font-size: 3vw;
  }
}

footer {
  background-color: #6f4f25;
  color: #fff;
}
footer .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
}
@media screen and (max-width: 768px) {
  footer .inner {
    display: block;
  }
}
footer .left {
  width: 24.2857142857%;
}
@media screen and (max-width: 768px) {
  footer .left {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  footer .logo {
    text-align: center;
  }
}
footer address {
  font-size: 16px;
  margin: 50px 0 10px;
}
@media screen and (max-width: 768px) {
  footer address {
    font-size: 14px;
    text-align: center;
    margin: 20px 0;
  }
}
footer address .name {
  font-size: 21px;
}
@media screen and (max-width: 768px) {
  footer address .name {
    font-size: 14px;
  }
}
footer .tel-area {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  footer .tel-area {
    font-size: 14px;
    text-align: center;
  }
}
footer .tel-area .tel {
  font-family: "LINE_Seed_JP";
  font-weight: bold;
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  footer .tel-area .tel {
    font-size: 26px;
  }
}
footer .tel-area .tel::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url('/import/tenant_1/www.nemuri-seisakusyo.jp/assets/img/common/tel.webp');
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
footer .right {
  width: 71.4285714286%;
}
@media screen and (max-width: 768px) {
  footer .right {
    width: auto;
  }
}
footer .nav {
  margin-bottom: 170px;
}
@media screen and (max-width: 768px) {
  footer .nav {
    margin: 40px 0;
  }
}
footer .nav .nav-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  footer .nav .nav-in {
    display: block;
  }
}
footer .nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 60%;
}
@media screen and (max-width: 768px) {
  footer .nav ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: auto;
  }
}
footer .nav ul li {
  font-size: 15px;
    white-space: nowrap;
    margin: 0 15px 10px 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  footer .nav ul li {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
footer .nav ul li a {
  display: block;
}
footer .nav ul li:hover {
  opacity: 0.7;
}
footer .mail-btn {
  max-width: 390px;
  width: 100%;
  height: 74px;
}
@media screen and (max-width: 1200px) {
  footer .mail-btn {
    height: 60px;
    margin: 40px 0 0 auto;
  }
}
footer .mail-btn a {
  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;
  background-color: #cc3030;
  color: #fff;
  border-radius: 20px;
  font-size: 20px;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  footer .mail-btn a {
    font-size: 14px;
  }
}
footer .mail-btn a::before {
  content: "";
  background-image: url('/import/tenant_1/www.nemuri-seisakusyo.jp/assets/img/common/mail.webp');
  width: 28px;
  height: 22px;
  margin-right: 10px;
}
footer .mail-btn a:hover {
  opacity: 0.7;
}
footer .copyright {
  font-size: 16px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  footer .copyright {
    font-size: 12px;
    text-align: center;
  }
}
footer #pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 11;
}
@media screen and (max-width: 768px) {
  footer #pagetop {
    right: 10px;
    bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  footer #pagetop img {
    max-width: 60px;
    max-height: 60px;
  }
}

/*----------------------------------------------------
 トップ
----------------------------------------------------*/
.p-top .pagehead {
  text-align: center;
  position: relative;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-top .pagehead {
    margin-bottom: 50px;
  }
}
.p-top .pagehead .bnr {
  text-align: center;
  margin: -12.5% 20px 0 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .pagehead .bnr {
    margin: 20px 10px 0;
  }
}
.p-top .pagehead .bnr a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-top .pagehead .bnr a:hover {
  opacity: 0.7;
}
.p-top .pagehead .bnr img {
  border-radius: 20px;
  overflow: hidden;
}
.p-top .section01 .inner {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px 100px;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .inner {
    padding: 0 10px 50px;
  }
}
.p-top .section01 .secttl {
  border-top: 2px solid #6f4f25;
  border-bottom: 2px solid #6f4f25;
  font-size: 34px;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .secttl {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.p-top .section01 .secttl span {
  font-size: 50px;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .secttl span {
    font-size: 26px;
  }
}
.p-top .section01 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 80%;
  margin: 0 auto;

}
@media screen and (max-width: 768px) {
  .p-top .section01 .flex {
    display: block;
  }
}
.p-top .section01 .img-area {
  width: 64.2857142857%;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .img-area {
    width: auto;
    margin-bottom: 20px;
  }
}
.p-top .section01 .img-area img {
  border-radius: 20px;
  overflow: hidden;
}
.p-top .section01 .thumb {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .thumb {
    margin-top: 10px;
  }
}
.p-top .section01 .thumb .img {
  width: 25%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.p-top .section01 .thumb .img:hover {
  opacity: 0.7;
}
.p-top .section01 .favorite {
  font-size: 26px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .favorite {
    font-size: 14px;
    margin: 10px 0;
  }
}
.p-top .section01 .favorite span {
  text-decoration: underline;
}
.p-top .section01 .kanren-area {
  width: 30.7142857143%;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .kanren-area {
    width: auto;
  }
}
.p-top .section01 .kanren-area .price {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 30px;
}
@media screen and (max-width: 1200px) {
  .p-top .section01 .kanren-area .price {
    font-size: 20px;
  }
}
.p-top .section01 .kanren-area .price .red {
  color: #cc3030;
}
.p-top .section01 .kanren-area .price .num {
  font-size: 60px;
  font-weight: bold;
}
@media screen and (max-width: 1200px) {
  .p-top .section01 .kanren-area .price .num {
    font-size: 30px;
  }
}
.p-top .section01 .kanren-area .kanren-ttl {
  border-bottom: 2px dashed #6f4f25;
  font-size: 26px;
  padding: 0 0 10px 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .kanren-area .kanren-ttl {
    font-size: 20px;
  }
}
.p-top .section01 .kanren-area .kanren-ttl::before {
  content: "";
  background-image: url('/import/tenant_1/www.nemuri-seisakusyo.jp/assets/img/top/pickup-kanren-ttl.webp');
  width: 29px;
  height: 29px;
  position: absolute;
  top: 6px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .kanren-area .kanren-ttl::before {
    top: 3px;
  }
}
.p-top .section01 .kanren-area ul li {
  border-bottom: 2px dashed #6f4f25;
  position: relative;
}
.p-top .section01 .kanren-area ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 80px 20px 0;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .kanren-area ul li a {
    padding: 10px 40px 10px 0;
  }
}
.p-top .section01 .kanren-area ul li a:hover .cart {
  background-image: url('/import/tenant_1/www.nemuri-seisakusyo.jp/assets/img/top/pickup-cart-red.webp');
}
.p-top .section01 .kanren-area ul li .img {
  width: 42.8571428571%;
}
.p-top .section01 .kanren-area ul li .img img {
  border-radius: 10px;
  overflow: hidden;
}
.p-top .section01 .kanren-area ul li .txt-area {
  width: 57.1428571429%;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .kanren-area ul li .txt-area {
    margin-top: 10px;
    padding: 10px;
  }
}
.p-top .section01 .kanren-area ul li .subttl {
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .kanren-area ul li .subttl {
    font-size: 14px;
  }
}
.p-top .section01 .kanren-area ul li .ttl {
  font-size: 25px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .kanren-area ul li .ttl {
    font-size: 20px;
  }
}
.p-top .section01 .kanren-area ul li .cart {
  width: 18.8372093023%;
  background-image: url('/import/tenant_1/www.nemuri-seisakusyo.jp/assets/img/top/pickup-cart-white.webp');
  background-size: cover;
  width: 81px;
  height: 81px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .kanren-area ul li .cart {
    width: 40px;
    height: 40px;
  }
}
.p-top .section02 .inner {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px 100px;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .inner {
    padding: 0 10px 50px;
  }
}
.p-top .section02 .secttl {
  border-top: 2px solid #6f4f25;
  border-bottom: 2px solid #6f4f25;
  font-size: 50px;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  padding: 50px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .secttl {
    font-size: 20px;
    margin-bottom: 20px;
    padding: 20px 0;
  }
}
.p-top .section02 .secttl img {
  margin: auto;
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .secttl img {
    position: static;
    margin-bottom: 10px;
  }
}
.p-top .section02 ul {
  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;
  width: 80%;
  margin: 0 auto;
}
.p-top .section02 ul li {
  width: 32.1428571429%;
  margin: 0 auto 20px;
}
@media screen and (max-width: 768px) {
  .p-top .section02 ul li {
    width: auto;
  }
}
.p-top .section03 .inner {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px 100px;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .inner {
    padding: 0 10px 50px;
  }
}
.p-top .section03 .secttl {
  border-top: 2px solid #6f4f25;
  border-bottom: 2px solid #6f4f25;
  font-size: 40px;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .secttl {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.p-top .section03 ul li, .p-top .section03 ul .glsr-review, .p-top .section03 .glsr-reviews-wrap li, .p-top .section03 .glsr-reviews-wrap .glsr-review {
  display: block;
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
  margin: auto 10px !important;
}
@media screen and (max-width: 768px) {
  .p-top .section03 ul li, .p-top .section03 ul .glsr-review, .p-top .section03 .glsr-reviews-wrap li, .p-top .section03 .glsr-reviews-wrap .glsr-review {
    width: auto;
    padding: 20px;
  }
}
.p-top .section03 ul li .hyouka, .p-top .section03 ul .glsr-review .hyouka, .p-top .section03 .glsr-reviews-wrap li .hyouka, .p-top .section03 .glsr-reviews-wrap .glsr-review .hyouka {
  text-align: center;
  margin-bottom: 20px;
}
.p-top .section03 ul li .star, .p-top .section03 ul .glsr-review .star, .p-top .section03 .glsr-reviews-wrap li .star, .p-top .section03 .glsr-reviews-wrap .glsr-review .star {
  font-size: 15px;
  color: #efaa4a;
}
.p-top .section03 ul li .star .num, .p-top .section03 ul .glsr-review .star .num, .p-top .section03 .glsr-reviews-wrap li .star .num, .p-top .section03 .glsr-reviews-wrap .glsr-review .star .num {
  color: #da4f00;
  margin-left: 10px;
}
.p-top .section03 ul li .date, .p-top .section03 ul .glsr-review .date, .p-top .section03 .glsr-reviews-wrap li .date, .p-top .section03 .glsr-reviews-wrap .glsr-review .date {
  font-size: 12px;
}
.p-top .section03 ul li .name, .p-top .section03 ul .glsr-review .name, .p-top .section03 .glsr-reviews-wrap li .name, .p-top .section03 .glsr-reviews-wrap .glsr-review .name {
  font-size: 1.5rem;
  margin-bottom: 1em;
}
.p-top .section03 ul li .txt, .p-top .section03 ul .glsr-review .txt, .p-top .section03 .glsr-reviews-wrap li .txt, .p-top .section03 .glsr-reviews-wrap .glsr-review .txt {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-top .section03 ul li .txt, .p-top .section03 ul .glsr-review .txt, .p-top .section03 .glsr-reviews-wrap li .txt, .p-top .section03 .glsr-reviews-wrap .glsr-review .txt {
    font-size: 1.4rem;
  }
}
.p-top .section04 .inner {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px 100px;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .inner {
    padding: 0 10px 50px;
  }
}
.p-top .section04 .secttl {
  border-top: 2px solid #6f4f25;
  border-bottom: 2px solid #6f4f25;
  font-size: 40px;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .secttl {
    font-size: 20px;
  }
}
.p-top .section04 .secttl img {
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .secttl img {
    max-height: 30px;
  }
}
.p-top .section04 ul li {
  text-align: center;
  margin: 0 10px;
}
.p-top .section04 ul li a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-top .section04 ul li a:hover {
  opacity: 0.7;
}
.p-top .section04 .btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .btn-area {
    display: block;
    margin-top: 20px;
  }
}
.p-top .section04 .btn-white {
  max-width: 390px;
  width: 100%;
  height: 74px;
  margin: 0 40px;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .btn-white {
    height: 60px;
    margin: 0 auto 20px;
  }
}
.p-top .section04 .btn-white a {
  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;
  border: 2px solid #6f4f25;
  color: #6f4f25;
  border-radius: 20px;
  font-size: 20px;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .btn-white a {
    font-size: 14px;
  }
}
.p-top .section04 .btn-white a::before {
  content: "";
  background-image: url('/import/tenant_1/www.nemuri-seisakusyo.jp/assets/img/top/variation-arrow-brown.webp');
  width: 25px;
  height: 31px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.p-top .section04 .btn-white a:hover {
  opacity: 0.7;
}
.p-top .section04 .btn-brown {
  max-width: 390px;
  width: 100%;
  height: 74px;
  margin: 0 40px;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .btn-brown {
    height: 60px;
    margin: auto;
  }
}
.p-top .section04 .btn-brown a {
  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;
  border: 2px solid #6f4f25;
  background-color: #6f4f25;
  color: #fff;
  border-radius: 20px;
  font-size: 20px;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .btn-brown a {
    font-size: 14px;
  }
}
.p-top .section04 .btn-brown a::before {
  content: "";
  background-image: url('/import/tenant_1/www.nemuri-seisakusyo.jp/assets/img/top/variation-arrow-white.webp');
  width: 25px;
  height: 31px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.p-top .section04 .btn-brown a:hover {
  opacity: 0.7;
}
.p-top .section05 .inner {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px 100px;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .inner {
    padding: 0 10px 50px;
  }
}
.p-top .section05 .secttl {
  border-top: 2px solid #6f4f25;
  border-bottom: 2px solid #6f4f25;
  font-size: 40px;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .secttl {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.p-top .section05 .ttl-area {
  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;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .ttl-area {
    display: block;
  }
}
.p-top .section05 .ttl-area .img {
  text-align: center;
  width: 45.625%;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .ttl-area .img {
    width: auto;
    margin-bottom: 10px;
  }
}
.p-top .section05 .ttl-area .txt-area {
  font-size: 30px;
  width: 42.1875%;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .ttl-area .txt-area {
    font-size: 1.4rem;
    width: auto;
  }
}
.p-top .section05 .ttl-area .ttl {
  font-size: 110px;
  line-height: 1;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .ttl-area .ttl {
    font-size: 20px;
    text-align: center;
    margin-bottom: 10px;
  }
}
.p-top .section05 .box {
  background-color: #fff;
  border-radius: 20px;
  font-family: "LINE_Seed_JP";
  padding: 80px 60px;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .box {
    padding: 20px;
  }
}
.p-top .section05 .box dl dt {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 30px;
  padding: 70px 0 0 70px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .box dl dt {
    font-size: 1.4rem;
    margin-bottom: 10px;
    padding: 20px 0 0 20px;
  }
}
.p-top .section05 .box dl dt::before {
  content: "Q";
  font-size: 40px;
  position: absolute;
  top: 70px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .box dl dt::before {
    font-size: 14px;
    top: 20px;
  }
}
.p-top .section05 .box dl dd {
  border-bottom: 2px dashed #6f4f25;
  font-size: 3rem;
  padding: 0 0 70px 70px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .box dl dd {
    font-size: 1.4rem;
    padding: 0 0 20px 20px;
  }
}
.p-top .section05 .box dl dd::before {
  content: "A";
  font-size: 40px;
  font-weight: bold;
  color: #cc3030;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .box dl dd::before {
    font-size: 14px;
  }
}
.p-top .section05 .chuui {
  background-color: #ccc;
  background-image: url('/import/tenant_1/www.nemuri-seisakusyo.jp/assets/img/top/faq-chuui-bg.webp');
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  color: #fff;
  width: 80%;
  margin: 0 auto;
  margin-top: 100px;
  padding: 20px 50px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .chuui {
    margin-top: 50px;
    padding: 20px;
  }
}
.p-top .section05 .chuui .ttl {
  font-size: 32px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .chuui .ttl {
    font-size: 26px;
  }
}
.p-top .section05 .chuui .txt {
  font-size: 27px;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .chuui .txt {
    font-size: 1.4rem;
  }
}
.p-top .section05 .chuui .ref {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .chuui .ref {
    font-size: 1.2rem;
  }
}
.p-top .section06 .inner {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px 100px;
}
@media screen and (max-width: 768px) {
  .p-top .section06 .inner {
    padding: 0 10px 50px;
  }
}
.p-top .section06 .secttl {
  border-top: 2px solid #6f4f25;
  border-bottom: 2px solid #6f4f25;
  font-size: 40px;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .p-top .section06 .secttl {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.p-top .section06 .article-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media screen and (max-width: 768px) {
  .p-top .section06 .article-list {
    display: block;
  }
}
.p-top .section06 .article-list article {
  max-width: 440px;
  width: 31.4285714286%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .p-top .section06 .article-list article {
    width: auto;
    margin-bottom: 20px;
  }
}
.p-top .section06 .article-list article a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-top .section06 .article-list article a:hover {
  opacity: 0.7;
}
.p-top .section06 .article-list article .img {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-top .section06 .article-list article .img {
    margin-bottom: 10px;
  }
}
.p-top .section06 .article-list article .img img {
  border-radius: 20px;
  overflow: hidden;
}
.p-top .section06 .article-list article .date {
  font-size: 1.5rem;
  margin-bottom: 1em;
}
.p-top .section06 .article-list article .txt {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .p-top .section06 .article-list article .txt {
    font-size: 1.4rem;
  }
}
.p-top .section07 .inner {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px 200px;
}
@media screen and (max-width: 768px) {
  .p-top .section07 .inner {
    padding: 0 10px 50px;
  }
}
.p-top .section07 .secttl {
  border-top: 2px solid #6f4f25;
  border-bottom: 2px solid #6f4f25;
  font-size: 40px;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .p-top .section07 .secttl {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.p-top .section07 ul {
  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;
  width: 80%;
  margin: 0 auto;

}
@media screen and (max-width: 768px) {
  .p-top .section07 ul {
    display: block;
  }
}
.p-top .section07 ul li {
  text-align: center;
  width: 48.5714285714%;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-top .section07 ul li {
    width: auto;
    margin-bottom: 20px;
  }
}
.p-top .section07 ul li a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-top .section07 ul li a:hover {
  opacity: 0.7;
}

/*----------------------------------------------------
 共通
----------------------------------------------------*/
.p-low .pagehead {
  height: 250px;
  padding: 90px 20px 20px;
}
@media screen and (max-width: 768px) {
  .p-low .pagehead {
    height: auto;
    padding: 90px 20px 20px;
  }
}
.p-low .pagehead .inner {
  display: flex;
  align-items: flex-end;
  max-width: 1400px;
  margin: auto;
  height: 100%;
}
.p-low .pagehead .pagettl {
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .p-low .pagehead .pagettl {
    font-size: 20px;
  }
}
.p-low .breadcrumb {
  border-top: 1px solid #6f4f25;
  border-bottom: 1px solid #6f4f25;
}
.p-low .breadcrumb ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1400px;
  margin: auto;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .p-low .breadcrumb ol {
    padding: 10px;
  }
}
.p-low .breadcrumb ol li {
  font-size: 14px;
}
.p-low .breadcrumb ol li::after {
  content: ">";
  margin: 0 4px;
}
.p-low .breadcrumb ol li a:hover {
  text-decoration: underline;
}
.p-low .breadcrumb ol li:last-child::after {
  display: none;
}
.p-low .section .inner {
  max-width: 1400px;
  margin: auto;
  padding: 100px 20px;
}
@media screen and (max-width: 768px) {
  .p-low .section .inner {
    padding: 40px 10px;
  }
}
.p-low .section:last-of-type .inner {
  padding-bottom: 300px;
}
@media screen and (max-width: 768px) {
  .p-low .section:last-of-type .inner {
    padding-bottom: 100px;
  }
}
.p-low .secttl {
  border-bottom: 1px solid #6f4f25;
  font-size: 25px;
  margin-bottom: 40px;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-low .secttl {
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
.p-low .subsec {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-low .subsec {
    margin-top: 40px;
  }
}
.p-low .subsecttl {
  border-bottom: 1px dashed #6f4f25;
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.p-low .pagination {
  margin-top: 150px;
}
@media screen and (max-width: 768px) {
  .p-low .pagination {
    margin-top: 40px;
  }
}
.p-low .pagination ul {
  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;
}
.p-low .pagination ul li {
  color: #6f4f25;
  border-radius: 50%;
  font-size: 16px;
  text-align: center;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-low .pagination ul li {
    font-size: 12px;
    width: 30px;
    height: 30px;
    margin: 0 2px;
  }
}
.p-low .pagination ul li:hover {
  opacity: 0.7;
}
.p-low .pagination ul li a {
  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;
  width: 100%;
  height: 100%;
}
.p-low .pagination ul li.current {
  background-color: #6f4f25;
  color: #fff;
}
.p-low .pagination ul li.current span {
  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;
  width: 100%;
  height: 100%;
}
.p-low .pagination ul li.prev {
  background-color: #6f4f25;
  color: #fff;
  border-radius: 30px 0 0 30px;
  width: 130px;
  height: 50px;
}
@media screen and (max-width: 768px) {
  .p-low .pagination ul li.prev {
    width: auto;
    height: 40px;
    padding: 3px;
  }
}
.p-low .pagination ul li.back {
  background-color: transparent;
  border: none;
  border-radius: 0;
  width: 130px;
  height: 50px;
}
@media screen and (max-width: 768px) {
  .p-low .pagination ul li.back {
    width: auto;
    height: 40px;
    padding: 3px;
  }
}
.p-low .pagination ul li.next {
  background-color: #6f4f25;
  color: #fff;
  border-radius: 0 30px 30px 0;
  width: 130px;
  height: 50px;
}
@media screen and (max-width: 768px) {
  .p-low .pagination ul li.next {
    width: auto;
    height: 40px;
    padding: 3px;
  }
}

.slick-slide img {
  margin: auto !important;
}

@media screen and (max-width: 768px) {
  .slick-prev {
    left: -10px !important;
  }
  .slick-next {
    right: -10px !important;
  }
}
.slick-prev::before, .slick-next::before {
  display: none !important;
}

.slick-list {
  padding: 0 !important;
}

.slick-prev {
  background-image: url('/import/tenant_1/www.nemuri-seisakusyo.jp/assets/img/top/slider-prev.webp') !important;
  background-size: cover;
  width: 30px !important;
  height: 24px !important;
}

.slick-next {
  background-image: url('/import/tenant_1/www.nemuri-seisakusyo.jp/assets/img/top/slider-next.webp') !important;
  background-size: cover;
  width: 30px !important;
  height: 24px !important;
}

.glsr-review {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.glsr-review-title {
  display: none;
}

.glsr-star-rating {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.glsr-review-date {
  font-size: 12px;
  text-align: center !important;
  margin: auto;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.glsr-review-author {
  display: block;
  font-size: 15px;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.glsr-review-content {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  font-size: 1.5rem;
  text-align: left !important;
}

/*----------------------------------------------------
 眠り製作所のものづくり
----------------------------------------------------*/
.p-monodukuri .section01 .mimg {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-monodukuri .section01 .mimg {
    margin-bottom: 20px;
  }
}
.p-monodukuri .section01 .catch {
  font-size: 45px;
  font-weight: normal;
  color: #000;
  margin-bottom: 40px;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 768px) {
  .p-monodukuri .section01 .catch {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.p-monodukuri .section01 .lead {
  font-size: 2rem;
  color: #000;
  margin-bottom: 70px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-monodukuri .section01 .lead {
    font-size: 1.4rem;
    margin-bottom: 50px;
  }
}
.p-monodukuri .section01 .monodukuri-list {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .p-monodukuri .section01 .monodukuri-list {
    margin-bottom: 50px;
  }
}
.p-monodukuri .section01 .monodukuri-list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px dashed #6f4f25;
  color: #000;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .p-monodukuri .section01 .monodukuri-list .item {
    display: block;
    padding: 20px 0;
  }
}
.p-monodukuri .section01 .monodukuri-list .item:nth-child(odd) .img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.p-monodukuri .section01 .monodukuri-list .item .img {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-monodukuri .section01 .monodukuri-list .item .img {
    width: auto;
    margin-bottom: 20px;
  }
}
.p-monodukuri .section01 .monodukuri-list .item .txt-area {
  font-size: 1.6rem;
  width: 47.1428571429%;
}
@media screen and (max-width: 768px) {
  .p-monodukuri .section01 .monodukuri-list .item .txt-area {
    font-size: 1.4rem;
    width: auto;
  }
}
.p-monodukuri .section01 .monodukuri-list .item .ttl {
  font-size: 35px;
  font-weight: normal;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .p-monodukuri .section01 .monodukuri-list .item .ttl {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.p-monodukuri .section01 .monodukuri-list .item .ttl .small {
  display: block;
  font-family: "Eight One";
  font-size: 1.5rem;
}
.p-monodukuri .section01 .story-area {
  border: 1px solid #6f4f25;
  border-radius: 40px;
  padding: 80px 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-monodukuri .section01 .story-area {
    padding: 20px;
  }
}
.p-monodukuri .section01 .story-ttl {
  font-size: 50px;
  text-align: center;
  margin: auto;
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p-monodukuri .section01 .story-ttl {
    font-size: 20px;
    top: -20px;
  }
}
.p-monodukuri .section01 .story-ttl span {
  display: inline-block;
  background-color: #f5f2e9;
  padding: 0 20px;
}
.p-monodukuri .section01 .story-list .item {
  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;
  color: #000;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-monodukuri .section01 .story-list .item {
    display: block;
    margin-bottom: 20px;
  }
}
.p-monodukuri .section01 .story-list .item:nth-child(odd) .img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.p-monodukuri .section01 .story-list .item .img {
  width: 43.8596491228%;
}
@media screen and (max-width: 768px) {
  .p-monodukuri .section01 .story-list .item .img {
    width: auto;
    margin-bottom: 20px;
  }
}
.p-monodukuri .section01 .story-list .item .txt-area {
  font-size: 1.8rem;
  width: 50.2392344498%;
}
@media screen and (max-width: 768px) {
  .p-monodukuri .section01 .story-list .item .txt-area {
    font-size: 1.4rem;
    width: auto;
  }
}
.p-monodukuri .section01 .story-list .item .ttl {
  font-size: 30px;
  font-weight: normal;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-monodukuri .section01 .story-list .item .ttl {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}

/*----------------------------------------------------
 会社概要
----------------------------------------------------*/
.p-company .section01 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-company .section01 .flex {
    display: block;
  }
}
.p-company .section01 .img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 46.4285714286%;
}
@media screen and (max-width: 768px) {
  .p-company .section01 .img {
    width: auto;
    margin-bottom: 20px;
  }
}
.p-company .section01 .txt-area {
  font-size: 2rem;
  color: #000;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-company .section01 .txt-area {
    font-size: 1.4rem;
    width: auto;
  }
}
.p-company .section01 .name {
  font-size: 2.2rem;
  text-align: right;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-company .section01 .name {
    font-size: 1.4rem;
    margin-top: 40px;
  }
}
.p-company .section01 .name .mincho {
  font-family: "HG正楷書体-PRO";
  font-size: 3.2rem;
  margin-left: 1em;
}
@media screen and (max-width: 768px) {
  .p-company .section01 .name .mincho {
    font-size: 2rem;
  }
}
.p-company .section02 table th, .p-company .section02 table td {
  border-bottom: 1px dashed #6f4f25;
  font-size: 1.8rem;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .p-company .section02 table th, .p-company .section02 table td {
    font-size: 1.4rem;
    padding: 10px 0;
  }
}
.p-company .section02 table th {
  width: 330px;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .p-company .section02 table th {
    width: 100px;
    padding-right: 10px;
  }
}
.p-company .section02 .map {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-company .section02 .map {
    margin-top: 50px;
  }
}
.p-company .section02 .map iframe {
  width: 100%;
  max-height: 650px;
}
@media screen and (max-width: 768px) {
  .p-company .section02 .map iframe {
    height: 200px;
  }
}

/*----------------------------------------------------
 ご挨拶
----------------------------------------------------*/
.p-greeting .section01 .txt-area {
  font-size: 2rem;
  color: #000;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-greeting .section01 .txt-area {
    font-size: 1.4rem;
    margin-top: 20px;
  }
}
.p-greeting .section01 .name {
  text-align: right;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-greeting .section01 .name {
    margin-top: 20px;
  }
}
.p-greeting .section01 .name .mincho {
  font-family: "HG正楷書体-PRO";
  font-size: 3rem;
  margin-left: 1em;
}
@media screen and (max-width: 768px) {
  .p-greeting .section01 .name .mincho {
    font-size: 2rem;
  }
}

/*----------------------------------------------------
 FAQ
----------------------------------------------------*/
.p-faq .section01 #tab {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .p-faq .section01 #tab {
    margin-bottom: 50px;
  }
}
.p-faq .section01 #tab li {
  border-bottom: 1px dashed #6f4f25;
  display: block;
  font-size: 30px;
  padding: 30px 100px 30px 30px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-faq .section01 #tab li {
    font-size: 1.4rem;
    padding: 10px 60px 10px 10px;
  }
}
.p-faq .section01 #tab li::after {
  content: "↓";
  position: absolute;
  top: 30px;
  right: 30px;
}
@media screen and (max-width: 768px) {
  .p-faq .section01 #tab li::after {
    top: 10px;
    right: 10px;
  }
}
.p-faq .section01 #tab li:hover {
  opacity: 0.7;
}
.p-faq .section01 .disnon {
  display: none;
}
.p-faq .section01 .box {
  border: 1px solid #6f4f25;
  border-radius: 40px;
  margin-bottom: 120px;
  padding: 80px 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-faq .section01 .box {
    margin-bottom: 50px;
    padding: 20px;
  }
}
.p-faq .section01 .box-ttl {
  font-size: 50px;
  text-align: center;
  margin: auto;
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p-faq .section01 .box-ttl {
    font-size: 20px;
    top: -20px;
  }
}
.p-faq .section01 .box-ttl span {
  display: inline-block;
  background-color: #f5f2e9;
  padding: 0 20px;
}
.p-faq .section01 dl dt {
  font-size: 3rem;
  font-weight: normal;
  margin-bottom: 40px;
  padding: 40px 0 0 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-faq .section01 dl dt {
    font-size: 1.4rem;
    margin-bottom: 10px;
    padding: 10px 0 0 30px;
  }
}
.p-faq .section01 dl dt::before {
  content: "Q.";
  font-size: 30px;
  position: absolute;
  top: 40px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-faq .section01 dl dt::before {
    font-size: 14px;
    top: 10px;
  }
}
.p-faq .section01 dl dd {
  border-bottom: 1px dashed #6f4f25;
  color: #000;
  font-size: 1.8rem;
  padding: 0 0 40px 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-faq .section01 dl dd {
    font-size: 1.4rem;
    padding: 0 0 10px 30px;
  }
}
.p-faq .section01 dl dd::before {
  content: "A.";
  font-size: 30px;
  color: #cc3030;
  position: absolute;
  top: -10px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-faq .section01 dl dd::before {
    font-size: 14px;
    top: 0;
  }
}
.p-faq .section01 dl dd a {
  font-weight: bold;
  text-decoration: underline;
}
.p-faq .section01 dl dd:last-child {
  border-bottom: none;
}

/*----------------------------------------------------
 OEM製造のご案内
----------------------------------------------------*/
.p-oem .section01 .about-box {
  background-color: #fff;
  border-radius: 40px;
  padding: 60px 50px;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .about-box {
    padding: 20px;
  }
}
.p-oem .section01 .about-box .about-ttl {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .about-box .about-ttl {
    margin-bottom: 20px;
  }
}
.p-oem .section01 .about-box .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .about-box .flex {
    display: block;
    margin-bottom: 20px;
  }
}
.p-oem .section01 .about-box .img {
  width: 46.3076923077%;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .about-box .img {
    width: auto;
    margin-bottom: 20px;
  }
}
.p-oem .section01 .about-box .txt-area {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .about-box .txt-area {
    width: auto;
  }
}
.p-oem .section01 .about-box .ttl {
  font-size: 3.2rem;
  color: #6f4f25;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .about-box .ttl {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.p-oem .section01 .about-box .ttl .small {
  display: block;
  font-size: 2.4rem;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .about-box .ttl .small {
    font-size: 1.4rem;
  }
}
.p-oem .section01 .about-box .txt {
  font-size: 1.8rem;
  line-height: 2;
  color: #000;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .about-box .txt {
    font-size: 1.4rem;
  }
}
.p-oem .section01 .about-box .box {
  border: 1px solid #6f4f25;
  border-radius: 20px;
  margin-top: 100px;
  padding: 50px 70px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .about-box .box {
    margin-top: 50px;
    padding: 40px 20px;
  }
}
.p-oem .section01 .about-box .box .box-ttl {
  font-size: 40px;
  line-height: 1.2;
  text-align: center;
  margin: auto;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .about-box .box .box-ttl {
    font-size: 20px;
  }
}
.p-oem .section01 .about-box .box .box-ttl span {
  background-color: #fff;
  padding: 0 20px;
}
.p-oem .section01 .about-box .box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .about-box .box ul {
    display: block;
  }
}
.p-oem .section01 .about-box .box ul li {
  font-size: 2.4rem;
  width: 48%;
  color: #000;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .about-box .box ul li {
    font-size: 1.4rem;
    width: auto;
  }
}
.p-oem .section01 .about-box .box ul li::before {
  content: "●";
  color: #cc3030;
  margin-right: 10px;
}
.p-oem .section01 .subsec01 {
  background-color: #fff;
  border-radius: 40px;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec01 {
    padding: 20px;
  }
}
.p-oem .section01 .subsec01 ul {
  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;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec01 ul {
    display: block;
  }
}
.p-oem .section01 .subsec01 ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 48%;
  margin: 0 auto 30px;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec01 ul li {
    display: block;
    max-width: 300px;
    width: auto;
    margin-bottom: 20px;
  }
}
.p-oem .section01 .subsec01 ul li .img {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec01 ul li .img {
    width: auto;
    margin-bottom: 10px;
  }
}
.p-oem .section01 .subsec01 ul li .txt-area {
  width: 46.357615894%;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec01 ul li .txt-area {
    width: auto;
  }
}
.p-oem .section01 .subsec01 ul li .ttl {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec01 ul li .ttl {
    font-size: 1.4rem;
  }
}
.p-oem .section01 .subsec01 ul li .txt {
  font-size: 1.8rem;
  color: #000;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec01 ul li .txt {
    font-size: 1.4rem;
  }
}
.p-oem .section01 .subsec02 {
  background-color: #fff;
  border-radius: 40px;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec02 {
    padding: 20px;
  }
}
.p-oem .section01 .subsec02 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec02 ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 20px;
  }
}
.p-oem .section01 .subsec02 ul li {
  background-color: #f5f2e9;
  border-radius: 50%;
  width: 240px;
  height: 240px;
  padding: 70px 20px 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec02 ul li {
    margin-top: 20px;
  }
}
.p-oem .section01 .subsec02 ul li .num {
  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;
  background-color: #fff;
  border-radius: 50%;
  font-size: 40px;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  width: 100px;
  height: 80px;
  margin: auto;
  padding: 3px;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec02 ul li .num {
    width: 80px;
    font-size: 20px;
  }
}
.p-oem .section01 .subsec02 ul li .ttl {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec02 ul li .ttl {
    font-size: 1.4rem;
  }
}
.p-oem .section01 .subsec02 ul li .txt {
  font-size: 1.5rem;
  color: #000;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec02 ul li .txt {
    font-size: 1.4rem;
  }
}
.p-oem .section01 .subsec03 .skill-area .list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec03 .skill-area .list .item {
    display: block;
    margin-bottom: 40px;
  }
}
.p-oem .section01 .subsec03 .skill-area .list .item .img {
  width: 31.4285714286%;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec03 .skill-area .list .item .img {
    width: auto;
    margin-bottom: 10px;
  }
}
.p-oem .section01 .subsec03 .skill-area .list .item .txt-area {
  width: 65.7142857143%;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec03 .skill-area .list .item .txt-area {
    width: auto;
  }
}
.p-oem .section01 .subsec03 .skill-area .list .item .ttl {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec03 .skill-area .list .item .ttl {
    font-size: 1.4rem;
  }
}
.p-oem .section01 .subsec03 .skill-area .list .item .txt {
  font-size: 1.8rem;
  color: #000;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec03 .skill-area .list .item .txt {
    font-size: 1.4rem;
  }
}
.p-oem .section01 .subsec03 .skill-area .list .item .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec03 .skill-area .list .item .flex {
    display: block;
    margin-top: 20px;
  }
}
.p-oem .section01 .subsec03 .skill-area .list .item .sozai {
  font-size: 1.5rem;
  color: #000;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec03 .skill-area .list .item .sozai {
    font-size: 1.4rem;
  }
}
.p-oem .section01 .subsec03 .skill-area .list .item .btn {
  max-width: 330px;
  width: 100%;
  height: 74px;
  margin: 0 40px;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec03 .skill-area .list .item .btn {
    height: 60px;
    margin: 20px auto 0;
  }
}
.p-oem .section01 .subsec03 .skill-area .list .item .btn a {
  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;
  border: 2px solid #6f4f25;
  color: #6f4f25;
  border-radius: 20px;
  font-size: 16px;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec03 .skill-area .list .item .btn a {
    font-size: 14px;
  }
}
.p-oem .section01 .subsec03 .skill-area .list .item .btn a::before {
  content: "";
  background-image: url('/import/tenant_1/www.nemuri-seisakusyo.jp/assets/img/top/variation-arrow-brown.webp');
  width: 25px;
  height: 31px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.p-oem .section01 .subsec03 .skill-area .list .item .btn a:hover {
  opacity: 0.7;
}
.p-oem .section01 .subsec03 .nakazai {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec03 .nakazai {
    margin-top: 20px;
  }
}
.p-oem .section01 .subsec03 .nakazai .nakazai-ttl {
  display: inline-block;
  border: 1px solid #6f4f25;
  font-size: 30px;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 20px;
  padding: 3px 10px;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec03 .nakazai .nakazai-ttl {
    font-size: 2rem;
  }
}
.p-oem .section01 .subsec03 .nakazai .lead {
  font-size: 1.8rem;
  color: #000;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec03 .nakazai .lead {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}
.p-oem .section01 .subsec03 .nakazai ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec03 .nakazai ul {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.p-oem .section01 .subsec03 .nakazai ul li {
  width: 17.1428571429%;
  margin: 0 2.8571428571% 20px 0;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec03 .nakazai ul li {
    width: 48%;
    margin: 0 auto 20px;
  }
}
.p-oem .section01 .subsec03 .nakazai ul li:nth-child(5n) {
  margin-right: 0;
}
.p-oem .section01 .subsec03 .nakazai ul li .txt-area {
  padding: 20px 20px 0;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec03 .nakazai ul li .txt-area {
    padding: 20px 0 0;
  }
}
.p-oem .section01 .subsec03 .nakazai ul li .ttl {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec03 .nakazai ul li .ttl {
    font-size: 1.4rem;
  }
}
.p-oem .section01 .subsec03 .nakazai ul li .txt {
  font-size: 1.5rem;
  color: #000;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec03 .nakazai ul li .txt {
    font-size: 1.4rem;
  }
}
.p-oem .section01 .subsec03 .nakazai .large-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-oem .section01 .subsec03 .nakazai .large-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 48%;
  margin: 0 0 50px;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec03 .nakazai .large-list li {
    display: block;
    margin-bottom: 20px;
  }
}
.p-oem .section01 .subsec03 .nakazai .large-list li .img {
  width: 41.2121212121%;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec03 .nakazai .large-list li .img {
    width: auto;
  }
}
.p-oem .section01 .subsec03 .nakazai .large-list li .txt-area {
  width: 54.5454545455%;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec03 .nakazai .large-list li .txt-area {
    width: auto;
  }
}
.p-oem .section01 .subsec03 .nakazai .large-list li .ttl {
  font-size: 2.2rem;
  line-height: 1;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec03 .nakazai .large-list li .ttl {
    font-size: 1.4rem;
  }
}
.p-oem .section01 .subsec03 .nakazai .large-list li .sozai {
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec03 .nakazai .large-list li .sozai {
    font-size: 1.4rem;
  }
}
.p-oem .section01 .subsec03 .nakazai .large-list li .txt {
  font-size: 1.5rem;
  color: #000;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec03 .nakazai .large-list li .txt {
    font-size: 1.4rem;
  }
}
.p-oem .section01 .subsec04 .lead {
  font-size: 2rem;
  color: #000;
  text-align: center;
  margin-bottom: 70px;
}
.p-oem .section01 .subsec04 .item {
  margin-bottom: 100px;
  position: relative;
}
.p-oem .section01 .subsec04 .item::after {
  content: "";
  background-image: url('/import/tenant_1/www.nemuri-seisakusyo.jp/assets/img/oem/flow-arrow.webp');
  background-size: cover;
  width: 14px;
  height: 58px;
  margin: auto;
  position: absolute;
  bottom: -70px;
  left: 0;
  right: 0;
}
.p-oem .section01 .subsec04 .item .en {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec04 .item .en {
    display: none;
  }
}
.p-oem .section01 .subsec04 .item .ico {
  text-align: center;
  margin-bottom: 20px;
}
.p-oem .section01 .subsec04 .item .ttl {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec04 .item .ttl {
    font-size: 2rem;
  }
}
.p-oem .section01 .subsec04 .item .txt {
  font-size: 1.8rem;
  text-align: center;
  color: #000;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec04 .item .txt {
    font-size: 1.4rem;
  }
}
.p-oem .section01 .subsec04 .item ul li {
  font-size: 1.8rem;
  text-align: center;
  color: #000;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec04 .item ul li {
    font-size: 1.4rem;
  }
}
.p-oem .section01 .subsec04 .item ul li::before {
  content: "●";
  color: #f5e149;
  margin-right: 10px;
}
.p-oem .section01 .subsec04 .item:nth-child(1) .en {
  top: 204px;
  left: 20%;
}
.p-oem .section01 .subsec04 .item:nth-child(2) .en {
  top: 198px;
  right: 15%;
}
.p-oem .section01 .subsec04 .item:nth-child(3) .en {
  top: 120px;
  left: 20%;
}
.p-oem .section01 .subsec04 .item:nth-child(4) .en {
  top: 187px;
  right: 20%;
}
.p-oem .section01 .subsec04 .item:last-child {
  margin-bottom: 50px;
}
.p-oem .section01 .subsec04 .item:last-child::after {
  display: none;
}
.p-oem .section01 .subsec04 .kansei {
  text-align: center;
}
.p-oem .section01 .subsec04 .catalog {
  border: 2px solid #6f4f25;
  border-radius: 40px;
  padding: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec04 .catalog {
    padding: 20px;
  }
}
.p-oem .section01 .subsec04 .catalog::before {
  content: "";
  background-image: url('/import/tenant_1/www.nemuri-seisakusyo.jp/assets/img/oem/ballon-tri.webp');
  width: 54px;
  height: 35px;
  position: absolute;
  top: -35px;
  left: 180px;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec04 .catalog::before {
    left: 20%;
  }
}
.p-oem .section01 .subsec04 .catalog .ttl {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec04 .catalog .ttl {
    font-size: 1.4rem;
  }
}
.p-oem .section01 .subsec04 .catalog .txt {
  font-size: 2rem;
  text-align: center;
  color: #000;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec04 .catalog .txt {
    font-size: 1.4rem;
  }
}
.p-oem .section01 .subsec04 .catalog .img {
  text-align: center;
}
.p-oem .section01 .subsec04 .btm-txt {
  font-size: 46px;
  font-weight: bold;
  text-align: center;
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .p-oem .section01 .subsec04 .btm-txt {
    font-size: 2rem;
    margin-top: 50px;
  }
}

/*----------------------------------------------------
 30日間返金保証
----------------------------------------------------*/
.p-henkin .section01 .about-box {
  background-color: #ccc;
  background-image: url('/import/tenant_1/www.nemuri-seisakusyo.jp/assets/img/henkin/main-bg.webp');
  background-size: cover;
  background-position: center;
  border-radius: 40px;
  color: #fff;
  margin-bottom: 70px;
  padding: 50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .about-box {
    margin-bottom: 50px;
    padding: 20px;
  }
}
.p-henkin .section01 .about-box .about-ttl {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .about-box .about-ttl {
    margin-bottom: 20px;
  }
}
.p-henkin .section01 .about-box .catch {
  font-size: 40px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .about-box .catch {
    font-size: 20px;
  }
}
.p-henkin .section01 .about-box .ref {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .about-box .ref {
    font-size: 1.4rem;
  }
}
.p-henkin .section01 .about-box .ttl {
  font-size: 2.5rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .about-box .ttl {
    font-size: 2rem;
  }
}
.p-henkin .section01 .about-box .txt {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .about-box .txt {
    font-size: 1.4rem;
  }
}
.p-henkin .section01 .subsec01 .lead {
  font-size: 1.8rem;
  color: #000;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .subsec01 .lead {
    font-size: 1.4rem;
  }
}
.p-henkin .section01 .subsec02 .lead {
  font-size: 1.8rem;
  color: #000;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .subsec02 .lead {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .subsec02 .flow {
    white-space: nowrap;
    overflow-x: scroll;
  }
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .subsec02 .flow img {
    max-width: none;
  }
}
.p-henkin .section01 .subsec02 .ref {
  font-size: 1.8rem;
  color: #cc3030;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .subsec02 .ref {
    font-size: 1.4rem;
    margin-top: 20px;
  }
}
.p-henkin .section01 .subsec03 .lead {
  font-size: 1.7rem;
  color: #000;
  line-height: 2em;
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .subsec03 .lead {
    font-size: 1.4rem;
  }
}
.p-henkin .section01 .subsec03 .taishougai {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .subsec03 .taishougai {
    margin-top: 20px;
  }
}
.p-henkin .section01 .subsec03 .taishougai .ttl {
  font-size: 2.2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .subsec03 .taishougai .ttl {
    font-size: 2rem;
  }
}
.p-henkin .section01 .subsec03 .taishougai .txt {
  font-size: 1.8rem;
  color: #cc3030;
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .subsec03 .taishougai .txt {
    font-size: 1.4rem;
  }
}
.p-henkin .section01 .subsec03 .box {
  background-color: #fff;
  border-radius: 20px;
  font-size: 1.6rem;
  color: #000;
  margin-top: 30px;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .subsec03 .box {
    font-size: 1.4rem;
    margin-top: 20px;
    padding: 20px;
  }
}
.p-henkin .section01 .contact-area {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .contact-area {
    margin-top: 50px;
  }
}
.p-henkin .section01 .contact-area .contact-ttl {
  font-size: 31px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .contact-area .contact-ttl {
    font-size: 20px;
  }
}
.p-henkin .section01 .contact-area .contact-lead {
  font-size: 2rem;
    text-align: center;
    color: #000;
    margin-bottom: 30px;
    background: linear-gradient(transparent 50%, #ff6 50%);
    width: 76%;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 60px;
}
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .contact-area .contact-lead {
    font-size: 1.4rem;
    text-align: left;
    margin-bottom: 20px;
  }
}
.p-henkin .section01 .contact-area .contact-box {
  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;
  background-color: #fff;
  border-radius: 40px 0 40px 0;
  padding: 40px 60px;
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .contact-area .contact-box {
    display: block;
    text-align: center;
    padding: 20px;
  }
}
.p-henkin .section01 .contact-area .contact-box .logo-area {
  text-align: center;
}
.p-henkin .section01 .contact-area .contact-box .logo-area .txt {
  font-size: 1.6rem;
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .contact-area .contact-box .logo-area .txt {
    font-size: 1.4rem;
  }
}
.p-henkin .section01 .contact-area .contact-box .tel-area {
  color: #4c4c4c;
  text-align: center;
  padding: 0 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .contact-area .contact-box .tel-area {
    margin-top: 20px;
    padding: 0;
  }
}
.p-henkin .section01 .contact-area .contact-box .tel-area::after {
  content: "";
  background-color: #6f4f25;
  width: 1px;
  height: 110px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .contact-area .contact-box .tel-area::after {
    display: none;
  }
}
.p-henkin .section01 .contact-area .contact-box .tel-area .ttl {
  font-size: 27px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .contact-area .contact-box .tel-area .ttl {
    font-size: 20px;
  }
}
.p-henkin .section01 .contact-area .contact-box .tel-area .ttl::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url('/import/tenant_1/www.nemuri-seisakusyo.jp/assets/img/contact/tel.webp');
  width: 52px;
  height: 34px;
  margin-right: 10px;
}
.p-henkin .section01 .contact-area .contact-box .tel-area .tel {
  font-size: 2.8em;
  line-height: 1.2;
  font-weight: bold;
  color: #cc3030;
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .contact-area .contact-box .tel-area .tel {
    font-size: 30px;
  }
}
.p-henkin .section01 .contact-area .contact-box .tel-area .time {
  font-size: 1.7rem;
    font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .contact-area .contact-box .tel-area .time {
    font-size: 1.4rem;
  }
}
.p-henkin .section01 .contact-area .contact-box .mail-area {
  margin-left: 40px;
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .contact-area .contact-box .mail-area {
    margin: 20px auto 0;
  }
}
.p-henkin .section01 .contact-area .contact-box .mail-area .ttl {
  background-color: #6f4f25;
  color: #fff;
  border-radius: 10px;
  font-size: 18px;
  text-align: center;
  max-width: 340px;
  margin: auto;
  padding: 3px;
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .contact-area .contact-box .mail-area .ttl {
    font-size: 1.4rem;
  }
}
.p-henkin .section01 .contact-area .contact-box .mail-area .txt {
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  margin: 10px 0;
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .contact-area .contact-box .mail-area .txt {
    font-size: 1.4rem;
  }
}
.p-henkin .section01 .contact-area .contact-box .mail-area .btn {
  max-width: 340px;
  height: 55px;
}
@media screen and (max-width: 1200px) {
  .p-henkin .section01 .contact-area .contact-box .mail-area .btn {
    height: 60px;
    margin: 0 auto 20px;
  }
}
.p-henkin .section01 .contact-area .contact-box .mail-area .btn a {
  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;
  background-color: #cc3030;
  color: #fff;
  border-radius: 10px;
  font-size: 20px;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1200px) {
  .p-henkin .section01 .contact-area .contact-box .mail-area .btn a {
    font-size: 14px;
  }
}
.p-henkin .section01 .contact-area .contact-box .mail-area .btn a::before {
  content: "";
  background-image: url('/import/tenant_1/www.nemuri-seisakusyo.jp/assets/img/common/mail.webp');
  width: 28px;
  height: 22px;
  margin-right: 10px;
}
.p-henkin .section01 .contact-area .contact-box .mail-area .btn a:hover {
  opacity: 0.7;
}
.p-henkin .section01 .subsec04 {
  margin-top: 250px;
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .subsec04 {
    margin-top: 50px;
  }
}
.p-henkin .section01 .subsec04 .taishou-ttl {
  border: 2px solid #cc3030;
  border-radius: 20px;
  color: #cc3030;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .subsec04 .taishou-ttl {
    font-size: 1.4rem;
    padding: 10px;
  }
}
.p-henkin .section01 .subsec04 .taishou-ref {
  font-size: 1.6rem;
  text-align: center;
  color: #cc3030;
  margin: 20px 0 40px;
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .subsec04 .taishou-ref {
    font-size: 1.4rem;
    margin: 10px 0 20px;
  }
}
.p-henkin .section01 .subsec04 .lead {
  font-size: 1.6rem;
  color: #000;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .subsec04 .lead {
    font-size: 1.4rem;
  }
}
.p-henkin .section01 .subsec04 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .subsec04 ul {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.p-henkin .section01 .subsec04 ul li {
  width: 23.7142857143%;
  margin: 0 1.5714285714% 40px 0;
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .subsec04 ul li {
    width: 48%;
    margin: 0 auto 20px;
  }
}
.p-henkin .section01 .subsec04 ul li:nth-child(4n) {
  margin-right: 0;
}
.p-henkin .section01 .subsec04 ul li .ttl {
  font-size: 1.6rem;
  text-align: center;
  color: #000;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .subsec04 ul li .ttl {
    font-size: 1.4rem;
  }
}
.p-henkin .section01 .subsec04 ul li .price {
  font-size: 1.6rem;
  text-align: center;
  color: #000;
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .subsec04 ul li .price {
    font-size: 1.4rem;
  }
}
.p-henkin .section01 .subsec04 ul li .favorite {
  background-color: #6f4f25;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
  max-width: 160px;
  margin: 10px auto 0;
  padding: 3px 10px;
}
@media screen and (max-width: 768px) {
  .p-henkin .section01 .subsec04 ul li .favorite {
    font-size: 12px;
  }
}

/*----------------------------------------------------
 悪質な詐欺サイトに注意
----------------------------------------------------*/
.p-akushitsu .section01 .lead {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .p-akushitsu .section01 .lead {
    font-size: 1.4rem;
  }
}
.p-akushitsu .section01 .subsec01 table {
  margin-bottom: 30px;
}
.p-akushitsu .section01 .subsec01 table th, .p-akushitsu .section01 .subsec01 table td {
  font-size: 1.8rem;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .p-akushitsu .section01 .subsec01 table th, .p-akushitsu .section01 .subsec01 table td {
    font-size: 1.4rem;
  }
}
.p-akushitsu .section01 .subsec01 table th {
  width: 130px;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .p-akushitsu .section01 .subsec01 table th {
    width: 100px;
  }
}
.p-akushitsu .section01 .subsec02 .subsecttl {
  color: #cc3030;
}
.p-akushitsu .section01 .subsec02 ul li {
  font-size: 1.8rem;
  color: #cc3030;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-akushitsu .section01 .subsec02 ul li {
    font-size: 1.4rem;
  }
}

/*----------------------------------------------------
 個人情報の取り扱いについて
----------------------------------------------------*/
.p-privacy .section01 .lead {
  border-bottom: 1px solid #6f4f25;
  font-size: 1.8rem;
  margin-bottom: 50px;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-privacy .section01 .lead {
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.p-privacy .section01 .txt {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .p-privacy .section01 .txt {
    font-size: 1.4rem;
  }
}
.p-privacy .section01 dl dt {
  font-size: 2.2rem;
  font-weight: bold;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-privacy .section01 dl dt {
    font-size: 1.4rem;
    padding-top: 20px;
  }
}
.p-privacy .section01 dl dd {
  border-bottom: 1px dashed #6f4f25;
  font-size: 1.8rem;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-privacy .section01 dl dd {
    font-size: 1.4rem;
    padding-bottom: 20px;
  }
}
.p-privacy .section01 ol li {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-privacy .section01 ol li {
    margin-bottom: 20px;
  }
}

/*----------------------------------------------------
 お問い合わせ
----------------------------------------------------*/
.p-contact .section01 .lead {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-contact .section01 .lead {
    font-size: 1.4rem;
    text-align: left;
    margin-bottom: 20px;
  }
}
.p-contact .section01 .contact-box {
  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;
  background-color: #fff;
  border-radius: 40px 0 40px 0;
  max-width: 1000px;
  margin: 0 auto 100px;
  padding: 40px 60px;
}
@media screen and (max-width: 768px) {
  .p-contact .section01 .contact-box {
    display: block;
    text-align: center;
    margin-bottom: 50px;
    padding: 20px;
  }
}
.p-contact .section01 .contact-box .tel-area {
  color: #4c4c4c;
}
.p-contact .section01 .contact-box .ttl {
  font-size: 27px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p-contact .section01 .contact-box .ttl {
    font-size: 20px;
    text-align: center;
    margin-top: 10px;
  }
}
.p-contact .section01 .contact-box .ttl::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url('/import/tenant_1/www.nemuri-seisakusyo.jp/assets/img/contact/tel.webp');
  width: 52px;
  height: 34px;
  margin-right: 10px;
}
.p-contact .section01 .contact-box .tel {
  font-size: 56px;
  line-height: 1.2;
  font-weight: bold;
  color: #cc3030;
}
@media screen and (max-width: 768px) {
  .p-contact .section01 .contact-box .tel {
    font-size: 30px;
  }
}
.p-contact .section01 .contact-box .time {
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .p-contact .section01 .contact-box .time {
    font-size: 1.4rem;
  }
}
.p-contact .section01 .tbl-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-contact .section01 .tbl-flex {
    display: block;
  }
}
.p-contact .section01 .tbl-area01 {
  width: 55.7142857143%;
}
@media screen and (max-width: 768px) {
  .p-contact .section01 .tbl-area01 {
    width: auto;
  }
}
.p-contact .section01 .tbl-area02 {
  width: 39.2857142857%;
}
@media screen and (max-width: 768px) {
  .p-contact .section01 .tbl-area02 {
    width: auto;
    margin-top: 10px;
  }
}
.p-contact .section01 .tbl-area02 .ttl {
  font-size: 2rem;
  margin-bottom: 10px;
  position: relative;
}
.p-contact .section01 .tbl-area02 .required {
  top: 0;
}
@media screen and (max-width: 768px) {
  .p-contact .section01 .tbl-area02 .required {
    top: 10px;
  }
}
.p-contact .section01 table th, .p-contact .section01 table td {
  border-top: 1px dashed #6f4f25;
  border-bottom: 1px dashed #6f4f25;
  font-size: 1.6rem;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .p-contact .section01 table th, .p-contact .section01 table td {
    display: block;
  }
}
.p-contact .section01 table th {
  width: 240px;
  padding-right: 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-contact .section01 table th {
    width: auto;
  }
}
.p-contact .section01 input[type=text], .p-contact .section01 input[type=tel], .p-contact .section01 input[type=email] {
  border: 1px solid #fff;
  border-radius: 10px;
  max-width: 540px;
  width: 100%;
  height: 40px;
  padding: 3px;
}
.p-contact .section01 textarea {
  border: 1px solid #fff;
  border-radius: 10px;
  max-width: 550px;
  width: 100% !important;
  height: 240px !important;
  padding: 3px;
}
@media screen and (max-width: 768px) {
  .p-contact .section01 textarea {
    height: 200px;
  }
}
.p-contact .section01 .required {
  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;
  background-color: #cc3030;
  color: #fff;
  border-radius: 6px;
  font-size: 12px;
  text-align: center;
  width: 40px;
  height: 30px;
  padding: 3px;
  position: absolute;
  top: 12px;
  right: 20px;
}
@media screen and (max-width: 768px) {
  .p-contact .section01 .required {
    height: 20px;
    right: 0;
  }
}
.p-contact .section01 .btn {
  max-width: 390px;
  height: 75px;
  margin: 70px 0 0 auto;
}
@media screen and (max-width: 768px) {
  .p-contact .section01 .btn {
    height: 40px;
    margin: 20px auto 0;
  }
}
.p-contact .section01 .btn button {
  background: transparent;
  background-color: #cc3030;
  border: 1px solid #cc3030;
  color: #fff;
  border-radius: 20px;
  font-size: 20px;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-contact .section01 .btn button {
    font-size: 14px;
    padding: 10px;
  }
}
.p-contact .section01 .btn button:hover {
  opacity: 0.7;
}

/*----------------------------------------------------
 お知らせ（一覧）
----------------------------------------------------*/
.p-news #newsTab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 80px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-news #newsTab {
    height: auto;
  }
}
.p-news #newsTab li {
  border: 1px solid #6f4f25;
  border-right: none;
  font-size: 25px;
  text-align: center;
  width: 39.1666666667%;
}
@media screen and (max-width: 768px) {
  .p-news #newsTab li {
    font-size: 14px;
  }
}
.p-news #newsTab li.current {
  background-color: #6f4f25;
  color: #fff;
}
.p-news #newsTab li a {
  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;
  width: 100%;
  height: 100%;
  padding: 3px;
}
.p-news #newsTab li:last-child {
  border-right: 1px solid #6f4f25;
}
.p-news .news-list article {
  border-bottom: 1px dashed #6f4f25;
}
.p-news .news-list article a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 125px 40px 40px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-news .news-list article a {
    display: block;
    padding: 10px 40px 10px 10px;
  }
}
.p-news .news-list article a::after {
  content: "";
  background-image: url('/import/tenant_1/www.nemuri-seisakusyo.jp/assets/img/news/arrow.webp');
  width: 25px;
  height: 20px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 40px;
}
@media screen and (max-width: 768px) {
  .p-news .news-list article a::after {
    right: 10px;
  }
}
.p-news .news-list article a:hover {
  opacity: 0.7;
}
.p-news .news-list article .meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-news .news-list article .date {
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .p-news .news-list article .date {
    font-size: 14px;
  }
}
.p-news .news-list article .cat {
  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;
  border: 1px solid #6f4f25;
  font-size: 20px;
  width: 220px;
  height: 50px;
  margin: 0 50px;
}
@media screen and (max-width: 768px) {
  .p-news .news-list article .cat {
    font-size: 14px;
    width: auto;
    height: auto;
    margin: 0 10px;
    padding: 3px;
  }
}
.p-news .news-list article .ttl {
  font-size: 22px;
  width: 60.7142857143%;
}
@media screen and (max-width: 768px) {
  .p-news .news-list article .ttl {
    font-size: 1.4rem;
    width: auto;
  }
}

/*----------------------------------------------------
 お知らせ（詳細）
----------------------------------------------------*/
.p-news-s .article-head {
  border-bottom: 1px dashed #6f4f25;
  margin-bottom: 50px;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-news-s .article-head {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
.p-news-s .article-head .meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-news-s .article-head .meta {
    margin-bottom: 10px;
  }
}
.p-news-s .article-head .date {
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .p-news-s .article-head .date {
    font-size: 14px;
  }
}
.p-news-s .article-head .cat {
  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;
  border: 1px solid #6f4f25;
  font-size: 20px;
  width: 220px;
  height: 50px;
  margin: 0 40px;
}
@media screen and (max-width: 768px) {
  .p-news-s .article-head .cat {
    font-size: 14px;
    width: auto;
    height: auto;
    margin: 0 10px;
    padding: 3px;
  }
}
.p-news-s .article-head .ttl {
  font-size: 35px;
}
@media screen and (max-width: 768px) {
  .p-news-s .article-head .ttl {
    font-size: 2rem;
  }
}
.p-news-s .article-body {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .p-news-s .article-body {
    font-size: 1.4rem;
  }
}
.p-news-s .article-body a {
  text-decoration: underline;
}
