@charset "utf-8";

/* SP用 */

body {
  color: #586166;
  font-size: 4.267vw;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  line-height: 1.6;
  font-weight: normal;
  letter-spacing: 0.18em;
  font-feature-settings: "palt";
}

a {
  color: #41a6ce;
  transition: opacity 0.5s;
}

a:hover {
  opacity: 0.7;
}

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

/* =======================================================================
# header
======================================================================= */
.l-header {
  position: relative;
  z-index: 2;
}

.header__ec {
  background: rgba(255, 255, 255, .9);
  position: fixed;
  bottom: 0;
  box-shadow: 0px -1px 6px rgba(0, 0, 0, 0.25);
  z-index: 9999;
}

.header__ec ul {
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  /* flex-direction: row-reverse; */
}

.header__ec ul li {
  width: calc(100% - 38.1333333vw);
  margin: 0 auto;
}

.header__ec ul li:first-child {
  width: 38.1333333vw;
}

.header-ttl-wrap {
  position: absolute;
  top: 0;
  left: 0;
}

.header-ttl a {
  display: block;
  width: 13.333vw;
  height: 13.333vw;
  padding-top: 2.667vw;
  line-height: 1;
  background-color: #41a6ce;
  text-align: center;
  font-size: 0;
  z-index: 100;
}

.header-ttl img {
  width: 8.267vw;
}

/* SNS
----------------------------------------------------------------------- */
.header-sns {
  overflow: hidden;
  margin-top: 4vw;
  padding-top: 8vw;
  font-size: 0;
  text-align: center;
  border-top: 1px solid #8a9399;
}

.header-sns-txt {
  display: block;
  width: 100%;
  margin-bottom: 5.333vw;
  color: #fff;
  font-size: 3.2vw;
  font-family: 'Cormorant Infant', serif;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: center;
}

.header-sns-item {
  display: inline-block;
  width: 8vw;
  height: 8vw;
  margin-right: 2.667vw;
  padding: 2.133vw 0;
  background-color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 0;
}

.header-sns-item img {
  width: auto;
  height: 3.733vw;
}

/* ナビ
----------------------------------------------------------------------- */
.header-nav-wrap {
  display: none;
  position: absolute;
  top: 42.667vw;
  right: 10.667vw;
}

#header-nav ul li {
  margin-bottom: 16vw;
}

#header-nav ul li a {
  color: #586166;
  font-size: 4.267vw;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-feature-settings: normal;
}


/* ハンバーガーメニュー
----------------------------------------------------------------------- */
/* アイコン
----------------------- */
.header-menu-btn {
  position: fixed;
  top: 4vw;
  right: 2.667vw;
  width: 9.333vw;
  height: 9.6vw;
  z-index: 10000;
}

.header-menu-btn:before {
  content: "menu";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #41a6ce;
  font-size: 2.667vw;
  font-family: 'Cormorant Infant', serif;
  line-height: 1;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-align: center;
}

.header-menu-btn span {
  position: absolute;
  left: 1.333vw;
  width: 6.667vw;
  height: 0.267vw;
  background-color: #41a6ce;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.header-menu-btn span:nth-of-type(1) {
  top: 0;
}

.header-menu-btn span:nth-of-type(2) {
  top: 2.667vw;
}

.header-menu-btn span:nth-of-type(3) {
  top: 5.333vw;
}

/* 展開時 */
.header-menu-btn.btn-active:before {
  content: "close";
  color: #fff;
}

.header-menu-btn.btn-active span {
  background-color: #fff;
}

.header-menu-btn.btn-active span:nth-of-type(1) {
  top: 2.667vw;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.header-menu-btn.btn-active span:nth-of-type(2) {
  opacity: 0;
}

.header-menu-btn.btn-active span:nth-of-type(3) {
  top: 2.667vw;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* 内容
----------------------- */
.header-menu {
  display: block;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  padding-top: 16vw;
  background-color: #687075;
  transition: all .5s ease;
  -webkit-overflow-scrolling: touch;
  z-index: 9999;
}

.header-menu-inner {
  overflow: auto;
  height: 100%;
  padding: 0 8vw;
}

/* 展開時 */
.header-menu.menu-active {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

/* オーバーレイ
----------------------- */
.overlay {
  content: '';
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  z-index: 9998;
}

/* 展開時 */
.overlay-active .overlay {
  visibility: visible;
  background: rgba(0, 0, 0, .8);
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  /* メニューの内容の幅に合わせる */
}

/* リストのスタイル
----------------------- */
.hamburger-nav-wrap {}

.hamburger-nav {}

#hamburger-nav ul {}

#hamburger-nav li {}

#hamburger-nav li a {
  display: block;
  padding: 4vw 0;
  color: #fff;
  font-size: 16;
  line-height: 1.4;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



/* =======================================================================
# footer
======================================================================= */

/* CTA
----------------------------------------------------------------------- */
.footer-cta {
  padding: 16vw 4vw;
  background: url("../images/common/bg_cta_sp.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
}

.footer-cta-inner {
  margin: 0 auto;
  text-align: center;
}

.footer-cta-catch {
  margin-bottom: 4vw;
  color: #fff;
  font-size: 4.267vw;
  line-height: 1;
  letter-spacing: 0.24em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.footer-cta-main {
  position: relative;
  margin-bottom: 1.333vw;
  color: #fff;
  font-size: 10.667vw;
  font-family: 'Cormorant Infant', serif;
  line-height: 1;
  letter-spacing: 0.08em;
}

.footer-cta-main:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 21.333vw;
  height: 0.267vw;
  background-color: #fff;
}

.footer-cta-main:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 21.333vw;
  height: 0.267vw;
  background-color: #fff;
}

.footer-cta-sub {
  margin-bottom: 5.333vw;
  color: #fff;
  font-size: 3.733vw;
  line-height: 1;
  letter-spacing: 0.24em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.footer-cta-btn {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 5.333vw 0;
  color: #1580aa;
  font-size: 4.267vw;
  line-height: 1;
  letter-spacing: 0.24em;
  text-decoration: none;
  text-align: center;
  background-color: #fff;
}

.footer-cta-btn:before {
  content: "";
  position: absolute;
  bottom: -1.067vw;
  right: -1.067vw;
  width: 100%;
  height: 100%;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.breadcrumbs {
  margin: 0 4vw 16vw;
  padding: 5.86666667vw 0 0;
  border-top: 1px solid #cae3ed;
  color: #B4B4B4;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumb-arrow {
  margin: 0 2.133333335vw;
}

.fa-angle-right.breadcrumb-arrow:before {
  color: #CAE3ED;
}

/* 情報
----------------------------------------------------------------------- */
.footer-info {
  color: #fff;
  background-color: #687075;
}

/* ナビ */
.footer-nav-wrap {}

#footer-nav {}

#footer-nav ul {}

#footer-nav ul li {
  border-bottom: 1px solid #8a9399;
}

#footer-nav ul li a {
  display: block;
  padding: 4vw;
  color: #fff;
  font-size: 3.733vw;
  line-height: 1;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-align: center;
}

/* 会社名など */
.footer-info-about {
  position: relative;
  margin: 0 auto;
  padding: 8vw 0;
}

.footer-info-logo {
  display: block;
  width: 16vw;
  margin: 0 auto 4vw;
}

.footer-info-ttl {
  margin-bottom: 3.733vw;
  font-size: 5.333vw;
  letter-spacing: 0.24em;
  line-height: 1;
  text-align: center;
}

.footer-info-txt {
  margin-bottom: 8vw;
  font-size: 3.2vw;
  line-height: 1.8571428571;
  text-align: center;
}

.copyright {
  text-align: center;
}

.copyright small {
  display: block;
  font-size: 3.2vw;
  line-height: 1;
}

/* =======================================================================
# common
======================================================================= */
.sp-none {
  display: none;
}





/* =======================================================================
# TOP
======================================================================= */

/* メインイメージ
----------------------------------------------------------------------- */
.l-mainimg {
  overflow: hidden;
  background: url("../images/top/mainimg_sp.png") no-repeat;
  background-size: cover;
  background-position: center bottom 10.6666666667vw;
}

.mainimg-inner {
  position: relative;
  height: 133.333vw;
  padding-top: 26.667vw;
}

.mainimg-catch {
  margin-bottom: 2.667vw;
  color: #41a6ce;
  font-size: 5vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5277777778;
  letter-spacing: 0.24em;
  white-space: nowrap;
  text-align: right;
  padding-right: 8vw;
}

.mainimg-catch-sub {
  padding-right: 8vw;
  color: #41a6ce;
  font-size: 3.2vw;
  font-family: 'Cormorant Infant', serif;
  line-height: 1.5277777778;
  letter-spacing: 0.08em;
  text-align: right;
}

.mainimg-youtube {
  position: absolute;
  right: 6.667vw;
  bottom: 0;
  width: 53.333vw;
  text-align: center;
}

.mainimg-youtube-txt {
  width: 52vw;
  margin-bottom: 3.733vw;
}

.mainimg-youtube a {
  display: block;
}

/* 導入
----------------------------------------------------------------------- */
.l-intro {}

.intro-inner {
  position: relative;
}

.intro-inner:before {
  content: "";
  position: absolute;
  top: 50.667vw;
  right: 0;
  width: 61.333vw;
  height: 53.333vw;
  background-color: #d9edf5;
}

.intro-ttl {
  margin-bottom: 66.667vw;
  padding: 12vw 0 0 8vw;
  font-weight: normal;
  line-height: 1;
}

.intro-ttl-sub {
  display: block;
  margin-bottom: 2.667vw;
  font-size: 6.933vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.24em;
}

.intro-ttl-main {
  display: block;
  margin-bottom: 2.667vw;
  color: #41a6ce;
  font-size: 10.8vw;
  font-family: 'Cormorant Infant', serif;
  letter-spacing: 0.08em;
}

.intro-ttl-yomi {
  color: #41a6ce;
  font-size: 6.4vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.24em;
}

.intro-btn {
  position: relative;
  display: block;
  margin: 0 8vw 8vw;
  padding: 5.333vw 0;
  color: #fff;
  font-size: 3.733vw;
  text-decoration: none;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.24em;
  background-color: #41a6ce;
}

.intro-btn:before {
  content: "";
  position: absolute;
  bottom: -1.067vw;
  right: -1.067vw;
  width: 100%;
  height: 100%;
  border-right: 1px solid #41a6ce;
  border-bottom: 1px solid #41a6ce;
}

.intro-img {
  position: absolute;
  top: 48vw;
  right: 4vw;
}

.intro-img:before {
  content: "";
  position: absolute;
  bottom: -13.333vw;
  right: -4vw;
  width: 40vw;
  height: 40vw;
  background-color: #0282cc;
  opacity: 0.2;
}

.intro-img img {
  position: relative;
  width: 53.333vw;
}

.intro-desc-wrap {
  position: relative;
  padding-bottom: 96vw;
}

.intro-desc-example {
  position: absolute;
  bottom: 13.333vw;
  left: 0;
  width: 53.333vw;
}

.intro-desc {
  padding: 0 8vw;
  font-size: 4.267vw;
  line-height: 2;
  letter-spacing: 0.24em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.intro-desc-seitai {
  position: absolute;
  bottom: -8vw;
  right: 0;
  width: 40vw;
  z-index: 2;
}

/* ストレッチルーネとは？
----------------------------------------------------------------------- */
.l-about {
  background-color: #eefaff;
}

.about-inner {
  padding: 24vw 0 16vw;
  text-align: center;
}

.about-ttl {
  margin-bottom: 2.667vw;
  font-size: 6.4vw;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.24em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.about-ttl-sub {
  margin-bottom: 8vw;
  color: #41a6ce;
  font-size: 12;
  font-family: 'Cormorant Infant', serif;
  letter-spacing: 0.08em;
}

.about-img {
  display: block;
  width: 37.333vw;
  margin: 0 auto 8vw;
}

.about-desc {
  padding: 0 8vw;
  margin-bottom: 8vw;
  font-size: 4.267vw;
  line-height: 2;
  letter-spacing: 0.24em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.about-btn {
  display: block;
  width: 53.333vw;
  margin: 0 auto 10.6666666667vw;
  padding: 3.467vw 0;
  color: #41a6ce;
  font-size: 3.733vw;
  font-family: 'Cormorant Infant', serif;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: center;
  text-shadow: none;
  text-decoration: none;
  background-color: #fff;
  border-radius: 5.333vw;
}

.about-desc-img {
  overflow: hidden;
}

.about-desc-img01 {
  float: left;
  width: 53.333vw;
}

.about-desc-img02 {
  float: right;
  width: 37.333vw;
  margin-top: 21.333vw;
}

/* 特許など
----------------------------------------------------------------------- */
.l-patent {
  padding: 16vw 0;
  background: url("../images/top/bg_patent_sp.png") no-repeat;
  background-size: cover;
  background-position: top center;
}

.patent-inner {}

.patent-top {
  margin-bottom: 8vw;
  text-align: center;
}

.patent-top-info {}

.patent-ttl {
  margin-bottom: 2.667vw;
  color: #fff;
  font-size: 8.533vw;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.24em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.patent-ttl-sub {
  margin-bottom: 8vw;
  color: #d2b652;
  font-size: 3.2vw;
  font-family: 'Cormorant Infant', serif;
  line-height: 1;
  letter-spacing: 0.08em;
}

.patent-txt {
  margin-bottom: 8vw;
  color: #fff;
  font-size: 16;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.patent-top-img {
  display: block;
  width: 42.667vw;
  margin: 0 auto 8vw;
}

.patent-country {
  display: block;
  width: 89.333vw;
  margin: 0 auto 10.6666666667vw;
}

.patent-omotenashi {
  overflow: hidden;
  margin: 0 4vw;
  padding: 8vw;
  background-color: rgba(0, 0, 0, 0.2);
}

.patent-omotenashi-img {
  display: block;
  width: 18.667vw;
  margin: 0 auto 8vw;
}

.patent-omotenashi-ttl {
  margin: 5.067vw 0 5.6vw;
  color: #d3b652;
  font-size: 5.333vw;
  font-weight: normal;
  line-height: 1;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.patent-omotenashi-txt {
  color: #fff;
  font-size: 3.733vw;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* メディア情報
----------------------------------------------------------------------- */
.l-media {
  padding: 16vw 4vw 16vw;
  text-align: center;
}

.media-ttl {
  margin-bottom: 2.667vw;
  font-size: 8.533vw;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.24em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.media-ttl-sub {
  margin-bottom: 8vw;
  color: #41a6ce;
  font-size: 3.2vw;
  font-family: 'Cormorant Infant', serif;
  line-height: 1;
  letter-spacing: 0.08em;
}

.media-ttl-txt {
  margin-bottom: 10.667vw;
  font-size: 3.733vw;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.media-wrap {
  text-align: center;
}

.media-item {
  overflow: hidden;
  display: block;
  margin-bottom: 10.667vw;
  padding-bottom: 10.667vw;
  border-bottom: 1px solid #cae3ed;
}

.media-item-img {
  width: 26.667vw;
  margin-bottom: 5.333vw;
}

.media-item-ttl {
  position: relative;
  margin-bottom: 4.267vw;
  font-size: 4.8vw;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.08em;
}

.media-item-ttl:before {
  content: "";
  position: absolute;
  bottom: -2.667vw;
  left: 0;
  right: 0;
  width: 5.333vw;
  height: 0.267vw;
  margin: 0 auto;
  background-color: #41a6ce;
}

.media-item-txt {
  font-size: 3.2vw;
  line-height: 1.7142857143;
  letter-spacing: 0.08em;
}

/* メディア情報
----------------------------------------------------------------------- */
.l-shop {
  background-color: #eefaff;
}

.shop-inner {
  position: relative;
  padding: 26.667vw 0 16vw;
  text-align: center;
}

.shop-inner:before {
  content: "SHOP";
  position: absolute;
  top: 10.667vw;
  left: 0;
  right: 0;
  color: #e9f5fa;
  font-size: 26.667vw;
  font-family: 'Cormorant Infant', serif;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: center;
}

.shop-ttl {
  position: relative;
  margin-bottom: 10.667vw;
  color: #41a6ce;
  font-size: 8.533vw;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.24em;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.shop-wrap {
  overflow: hidden;
  padding: 0 8vw;
}

.shop-item {
  display: block;
  float: left;
  width: 45%;
  margin-bottom: 8vw;
  color: #687075;
  text-decoration: none;
}

.shop-item:nth-child(even) {
  float: right;
}

.shop-item-img {
  margin-bottom: 4vw;
  box-shadow: 5px 8.66px 20px 0px rgba(65, 166, 206, 0.1);
}

.shop-item-txt {
  text-align: center;
  font-size: 3.2vw;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
}


/* =======================================================================
# 商品
======================================================================= */
.pillow-mainimg {
  background-color: #f4fafd;
}

.pillow-mainimg-inner {
  overflow: hidden;
  padding: 21.3333333333vw 0 16vw;
}

.pillow-mainimg-catch {
  text-align: center;
}

.pillow-mainimg-catch01 {
  display: block;
  margin-bottom: 1.333vw;
  font-style: 5.333vw;
  font-weight: normal;
}

.pillow-mainimg-catch02 {
  display: block;
  margin-bottom: 0;
  color: #41a6ce;
  font-size: 11.667vw;
  font-family: 'Cormorant Infant', serif;
  font-weight: normal;
  line-height: 1;
}

.pillow-mainimg-catch03 {
  display: block;
  margin-bottom: 8vw;
  color: #41a6ce;
  font-size: 4.267vw;
  line-height: 1;
  font-weight: normal;
  letter-spacing: 0.24em;
}

.pillow-mainimg-img {
  display: block;
  width: 58.667vw;
  margin: 0 auto 8vw;
}

.pillow-mainimg-txt {
  margin-bottom: 6.933vw;
  font-size: 5.333vw;
  line-height: 1.5;
  letter-spacing: 0.24em;
  text-align: center;
}

.pillow-mainimg-link {
  display: block;
  margin-bottom: 9.6vw;
  font-size: 4.267vw;
  line-height: 1;
  text-align: center;
}

.pillow-mainimg-btn {
  position: relative;
  display: block;
  width: 74.667vw;
  margin: 0 auto 16vw;
  padding: 5.333vw 0;
  color: #fff;
  font-size: 3.733vw;
  text-decoration: none;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.24em;
  background-color: #41a6ce;
}

.pillow-mainimg-btn:before {
  content: "";
  position: absolute;
  bottom: -1.067vw;
  right: -1.067vw;
  width: 100%;
  height: 100%;
  border-right: 1px solid #41a6ce;
  border-bottom: 1px solid #41a6ce;
}

.pillow-mainimg-patent {
  display: block;
  width: 74.667vw;
  margin: 0 auto;
}

.pillow-intro {
  padding: 16vw 0;
}

.pillow-intro-inner {
  overflow: hidden;
  padding: 0 4vw;
}

.pillow-intro-img01 {
  display: block;
  width: 53.333vw;
  margin: 0 auto 8vw;
}

.pillow-intro-txt-wrap {}

.pillow-intro-ttl {
  margin-bottom: 8vw;
  color: #41a6ce;
  font-size: 4.8vw;
  font-weight: normal;
  line-height: 1.5;
}

.pillow-intro-txt {
  margin-bottom: 8vw;
  font-size: 4.267vw;
  line-height: 1.5;
}

.pillow-intro-txt.last {
  margin-bottom: 0;
}

.pillow-intro-catch {
  float: left;
  margin-top: 8vw;
  color: #41a6ce;
  font-size: 4.267vw;
  font-weight: normal;
  line-height: 1.5;
}

.pillow-intro-img02 {
  float: right;
  width: 42.667vw;
}

.pillow-about {
  margin-bottom: 16vw;
  padding: 16vw 4vw;
  background-color: #0964b0;
}

.pillow-about-inner {}

.pillow-about-ttl {
  margin-bottom: 2.667vw;
  color: #fff;
  font-size: 5.333vw;
  line-height: 1;
  letter-spacing: 0.24em;
  text-align: center;
}

.pillow-about-ttl-sub {
  margin-bottom: 8vw;
  color: #d3b652;
  font-size: 3.2vw;
  font-family: 'Cormorant Infant', serif;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: center;
}

.pillow-about-box {
  overflow: hidden;
  margin-bottom: 4vw;
  background-color: #fff;
}

.pillow-about-box-img-left {
  display: block;
  width: 34.667vw;
  margin: 10.6666666667vw auto 0
}

.pillow-about-box-img-right {
  display: block;
  width: 34.667vw;
  margin: 10.6666666667vw auto 0
}

.pillow-about-box-ttl {
  margin: 5.333vw 0 2.667vw;
  padding: 0 5.333vw;
  color: #41a6ce;
  font-size: 4.8vw;
  text-align: center;
}

.pillow-about-box-txt {
  padding: 0 5.333vw 8vw;
  font-size: 3.733vw;
  line-height: 1.5;
}

.pillow-use {
  overflow: hidden;
  margin-bottom: 16vw;
}

.pillow-use-inner {}

.pillow-use-ttl {
  margin-bottom: 2.667vw;
  color: #41a6ce;
  font-size: 5.333vw;
  line-height: 1;
  letter-spacing: 0.24em;
  text-align: center;
}

.pillow-use-ttl-sub {
  margin-bottom: 8vw;
  color: #d3b652;
  font-size: 3.2vw;
  font-family: 'Cormorant Infant', serif;
  font-weight: normal;
  line-height: 1;
  text-align: center;
}

.pillow-use-box {
  margin-bottom: 8vw;
}

.pillow-use-box-txt-wrap-left {
  padding: 8vw 4vw 5.333vw;
  background-color: #f4fafd;
}

.pillow-use-box-txt-wrap-right {
  padding: 8vw 4vw 5.333vw;
  background-color: #fff;
}

.pillow-use-box-img-right {}

.pillow-use-box-img-left {}

.pillow-use-box-txt {
  margin-bottom: 3.733vw;
  font-size: 3.733vw;
  line-height: 1.5;
}

.pillow-use-box-ttl {
  overflow: hidden;
  margin-bottom: 5.333vw;
}

.pillow-use-box-ttl-number {
  display: block;
  float: left;
  width: 10.667vw;
  margin-right: 2.667vw;
  padding: 3.733vw 0;
  color: #fff;
  font-size: 3.2vw;
  line-height: 1;
  text-align: center;
  background-color: #41a6ce;
}

.pillow-use-box-ttl-main {
  display: block;
  float: left;
  padding: 2.933vw 0;
  color: #41a6ce;
  font-size: 4.8vw;
  line-height: 1;
  letter-spacing: 0.24em;
}

.pillow-spec {
  padding: 0 4vw 16vw;
}

.pillow-spec-ttl {
  margin-bottom: 5.333vw;
  color: #41a6ce;
  font-size: 5.333vw;
  line-height: 1;
  letter-spacing: 0.24em;
}

.pillow-table {
  width: 100%;
  margin-bottom: 19.2vw;
  font-size: 3.733vw;
  line-height: 1.2;
  border-top: 1px solid #cae3ed;
  border-collapse: collapse;
}

.pillow-table th {
  width: 26.667vw;
  padding: 2.667vw 4vw;
  color: #41a6ce;
  text-align: left;
  background-color: #eefaff;
  border-bottom: 1px solid #cae3ed;
}

.pillow-table td {
  padding: 2.667vw 4vw;
  border-bottom: 1px solid #cae3ed;
}

.pillow-attention {
  font-size: 3.733vw;
  line-height: 1.5;
}

.pillow-attention strong {
  color: #41a6ce;
  font-weight: normal;
}


/* =======================================================================
# よくあるご質問
======================================================================= */
.faq-mainimg {
  padding: 32vw 0;
  text-align: center;
  background: url("../images/common/bg_mainimg_sp.jpg") no-repeat;
  background-size: cover;
}

.faq-mainimg-head {
  width: 64vw;
  margin: 0 auto 5.3333333333vw;
}

.faq-mainimg-ttl {
  margin-bottom: 2.667vw;
  color: #41a6ce;
  font-size: 6.4vw;
  line-height: 1;
}

.faq-mainimg-ttl-sub {
  margin-bottom: 4vw;
  color: #41a6ce;
  font-size: 14;
  line-height: 1;
  font-family: 'Cormorant Infant', serif;
  font-weight: normal;
  letter-spacing: 0.08em;
}

.faq-mainimg-txt {
  padding: 0 4vw;
  font-size: 3.2vw;
  line-height: 1.5;
  letter-spacing: 0.12em;
}

.faq-menu {
  overflow: hidden;
  position: relative;
  margin-bottom: 10.667vw;
}

.faq-menu-box {
  padding-bottom: 8vw;
  color: #fff;
  background-color: #fff;
}

.faq-menu-ttl {
  margin-bottom: 5.333vw;
  padding: 5.333vw;
  color: #fff;
  font-size: 3.733vw;
  line-height: 1;
  background-color: #41a6ce;
}

.faq-menu-link {
  position: relative;
  display: block;
  margin: 0 5.333vw 5.333vw 10.667vw;
  color: #41a6ce;
  font-size: 3.733vw;
  line-height: 1;
  text-decoration: none;
}

.faq-menu-link:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -5.333vw;
  width: 2.667vw;
  height: 0.267vw;
  background-color: #41a6ce;
}

.faq-inner {
  padding: 0 4vw;
}

.faq-ttl01 {
  margin: 0 -4vw 8vw;
  padding: 0 4vw 2.667vw;
  color: #41a6ce;
  font-size: 5.333vw;
  line-height: 1;
  border-bottom: 1px solid #41a6ce;
}

.faq-a+.faq-ttl01 {
  margin-top: 16vw;
}

.faq-ttl02 {
  margin: 10.667vw 0 5.333vw;
  padding-left: 4vw;
  color: #41a6ce;
  font-size: 4.8vw;
  line-height: 1;
  border-left: 4px solid #41a6ce;
}

.faq-q {
  position: relative;
  margin-bottom: 5.333vw;
  padding-left: 9.067vw;
  color: #41a6ce;
  font-size: 4.267vw;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.faq-q:before {
  content: "Q";
  position: absolute;
  top: 0.533vw;
  left: 0;
  width: 6.4vw;
  padding: 1.6vw 0;
  color: #fff;
  font-size: 3.2vw;
  line-height: 1;
  text-align: center;
  background-color: #41a6ce;
}

.faq-a {
  position: relative;
  margin-bottom: 13.333vw;
  padding-left: 9.067vw;
  font-size: 4.267vw;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.faq-a:before {
  content: "A";
  position: absolute;
  top: 0.533vw;
  left: 0;
  width: 6.4vw;
  padding: 1.333vw 0;
  color: #41a6ce;
  font-size: 3.2vw;
  line-height: 1;
  text-align: center;
  border: 1px solid #41a6ce;
}


/* =======================================================================
# 実際に使用されたお客さまの声
======================================================================= */
.voice-mainimg {
  margin-bottom: 16vw;
  padding: 32vw 0;
  text-align: center;
  background: url("../images/common/bg_mainimg_sp.jpg") no-repeat;
  background-size: cover;
}

.voice-mainimg-head {
  width: 64vw;
  margin: 0 auto 4vw;
}

.voice-mainimg-ttl {
  margin-bottom: 1.333vw;
  color: #41a6ce;
  font-size: 6.4vw;
  line-height: 1.3;
}

.voice-mainimg-ttl-sub {
  margin-bottom: 4vw;
  color: #41a6ce;
  font-size: 14;
  line-height: 1;
  font-family: 'Cormorant Infant', serif;
  font-weight: normal;
  letter-spacing: 0.08em;
}

.voice-mainimg-txt {
  padding: 0 4vw;
  font-size: 3.2vw;
  line-height: 1.5;
  letter-spacing: 0.12em;
}

.voice-inner {
  padding: 0 4vw 8vw;
}

.voice-box {
  overflow: hidden;
  margin-bottom: 8vw;
  padding: 8vw 5.333vw 10.667vw;
  background-color: #fff;
  border: 1px solid #41a6ce;
  box-shadow: 5px 8.66px 20px 0px rgba(147, 147, 147, 0.1);
}

.voice-box-img {
  width: 10.667vw;
  float: left;
  margin: 0 5.333vw 5.333vw 0;
}

.voice-box-ttl {
  margin-bottom: 1.333vw;
  font-size: 4.267vw;
  line-height: 1.4;
  text-decoration: underline;
}

.voice-box-name {
  color: #41a6ce;
  font-size: 2.667vw;
  line-height: 1;
}

.voice-box-txt {
  clear: left;
  font-size: 3.733vw;
  line-height: 1.8;
  letter-spacing: 0.08em;
}


/* =======================================================================
# 一覧
======================================================================= */
.archive-contents {}

.archive-ttl {
  margin-bottom: 8.533vw;
  font-size: 5.333vw;
  line-height: 2;
  text-align: center;
}

.article-list {
  border-bottom: 1px solid #cae3ed;
}

.article-list:last-child {
  border-bottom: none;
}

.archive-item {
  display: block;
  margin-bottom: 8vw;
  padding: 8vw 4vw 0;
  text-decoration: none;
  border-top: 1px solid #cae3ed;
}

.archive-contents .img-wrap {
  margin-bottom: 4vw;
}

.archive-contents .img-wrap img {
  width: 100%;
}

.archive-contents .text {}

.archive-contents .cat-data {
  display: block;
  margin-bottom: 2.667vw;
  font-size: 3.2vw;
  line-height: 1;
}

.archive-contents h2 {
  margin-bottom: 2.667vw;
  color: #586166;
  font-size: 4.8vw;
  line-height: 1.2;
}

.archive-contents .article-date {
  display: block;
  margin-bottom: 2.667vw;
  color: #999;
  font-size: 3.2vw;
  line-height: 1;
}

.archive-contents .desc p {
  color: #999;
  font-size: 3.733vw;
  line-height: 1.5;
}



/* =======================================================================
# 記事
======================================================================= */
.container {
  margin: 0 auto;
  padding: 21.3333333333vw 0 0;
}

.post-contents {
  padding: 0 4vw;
}

.post-contents h1 {
  margin-bottom: 5.333vw;
  font-size: 6.4vw;
  line-height: 1.4;
}

.post-contents .article-info {
  margin-bottom: 8vw;
}

.post-contents .cat-data {
  margin-bottom: 2.667vw;
  font-size: 3.733vw;
  line-height: 1;
}

.post-contents .article-date {
  margin-bottom: 0;
  font-size: 3.733vw;
  line-height: 1;
}

.post-contents h2 {
  margin: 16vw -4vw 8vw;
  padding: 4vw 5.333vw;
  color: #fff;
  font-size: 4.8vw;
  line-height: 1.5;
  background-color: #41a6ce;
  border-radius: 0;
}

.post-contents h3 {
  margin: 16vw -4vw 8vw;
  padding: 0 4vw 2.667vw;
  font-size: 4.8vw;
  line-height: 1.5;
  border-bottom: 1px solid #41a6ce;
}

.post-contents h4 {
  position: relative;
  margin: 10.667vw 0 5.333vw;
  padding-left: 4vw;
  font-size: 4.267vw;
  line-height: 1.4444444444;
}

.post-contents h4:before {
  content: "";
  position: absolute;
  top: 1.067vw;
  left: 0;
  width: 0.8vw;
  height: 4.267vw;
  background-color: #41a6ce;
}

.post-contents .article-img {
  margin-bottom: 8vw;
}

.post-contents .wp-block-image {
  margin: 8vw 0;
}

.post-contents p {
  margin-bottom: 8vw;
  font-size: 3.733vw;
  line-height: 2;
}

.post-contents ul {
  margin: 16vw 0;
  padding: 5.333vw;
  border: 1px solid #A6DCF2;
  border-radius: 1.067vw;
  background-color: #f4fafd;
}

.post-contents ul li {
  position: relative;
  margin-bottom: 4vw;
  padding-left: 4.267vw;
  font-size: 3.733vw;
  line-height: 1.5555555556;
}

.post-contents ul li:last-child {
  margin-bottom: 0;
}

.post-contents ul li:before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  color: #41a6ce;
}

.post-contents ol {
  counter-reset: item;
  margin: 16vw 0;
  padding: 5.333vw;
  border: 1px solid #A6DCF2;
  border-radius: 1.067vw;
  background-color: #f4fafd;
}

.post-contents ol li {
  position: relative;
  margin-bottom: 4vw;
  padding-left: 5.333vw;
  font-size: 3.733vw;
  line-height: 1.5555555556;
}

.post-contents ol li:last-child {
  margin-bottom: 0;
}

.post-contents ol li:before {
  counter-increment: item;
  content: counter(item)'.';
  position: absolute;
  top: 0;
  left: 0;
  color: #41a6ce;
}

.post-contents table {
  width: 100%;
  margin: 16vw 0;
  font-size: 3.733vw;
  line-height: 1.2;
  border-top: 1px solid #cae3ed;
  border-collapse: collapse;
}

.post-contents table th {
  padding: 2.667vw 4vw;
  color: #41a6ce;
  text-align: left;
  background-color: #eefaff;
  border-bottom: 1px solid #cae3ed;
}

.post-contents table td {
  padding: 2.667vw 4vw;
  border-bottom: 1px solid #cae3ed;
}

.post-contents .article-tag ul {
  overflow: hidden;
  margin: 16vw 0 0;
  padding: 0;
  border: none;
  background: none;
}

.post-contents .article-tag ul li {
  position: relative;
  float: left;
  margin: 0 2.667vw 2.667vw 0;
  padding: 1.333vw 2.667vw;
  color: #41a6ce;
  font-size: 3.2vw;
  line-height: 1;
  letter-spacing: 0.6;
  border: 1px solid #A6DCF2;
  border-radius: 1.067vw;
  background-color: #f4fafd;
}

.post-contents .article-tag ul li:before {
  content: none;
}

.post-contents .article-tag ul li a {
  text-decoration: none;
}

/* 記事下商品
----------------------------------------------------------------------- */
.footItemBlock {
  width: 90%;
  margin: 0 auto 8vw;
  padding: 3vw 4vw 4.5vw;
  border: 1px solid #A6DCF2;
  border-radius: 4px;
  background-color: #f4fafd;
  box-sizing: border-box;
}

.footItemBlock h2 {
  margin-bottom: 16px;
  font-size: 20px;
  border-bottom: solid 1px #41a6ce;
  color: #41a6ce;
}

.footItemList dd {
  margin-top: 8px;
  margin-left: 0;
}

.footItemBlock h3.footItemTitle3 {
  background: #41a6ce;
  margin: 2.4vw 0 1.6vw;
  padding: 2vw 4vw;
  display: inline-block;
  border-radius: 4px;
  font-size: 16px;
  color: #fff;
}

.footItemList dd p.a-spacing-base {
  margin-bottom: 8px;
  font-size: 12px;
}

h3.footItemTitle3 {
  margin: 8vw -4vw 4vw;
}

.footItemBlock .footItemColorList {
  background: none;
  border: none;
  margin-top: 16px;
  display: flex;
  padding: 0;
}

.footItemBlock .footItemColorList li {
  width: 27.2vw;
  margin-right: 9.2vw;
  list-style: none;
}

.footItemBlock .footItemColorList li::before {
  display: none;
}

.footItemBlocks .footItemColorList li::after {
  margin-right: 0;
}
