@charset "UTF-8";

/*
Theme Name: 有限会社フトンのつづき
Theme URI: https://platinum-site.com/makurayahonpo/
Version: 1.1
Author: OWNDMEDIA.LAB
*/

/* ************************************************************************************************
  共通（全ページ）
************************************************************************************************ */
html,body {
  width: 100%;
  height: 100%;
  font-size: 62.5%; /*ベースを10pxに設定*/
  letter-spacing: .2em;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #5a5a5a;
  background-color: #fff;
}
html.translated-ltr a br {
  display: none;
}

h2 {font-size: 3.2rem;}
h3 {font-size: 2.8rem; line-height: 1.8;}
h4 {font-size: 2.5rem; line-height: 1.8;}
h5 {font-size: 2rem; line-height: 1.8;}

p {
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 400;
}

a {
  font-size: 1.4rem;
  text-decoration: none;
}

/* 改行 */
.br_sp {display: none;} /*スマホだけ改行 */
.br_pc {display: block;} /*PCだけ改行 */

/* マウスドラッグした時の文字色 */
::selection {
  background-color: #98D8C8;
  color: #fff;
}

/* ページ全体の余白など */
#page {
  overflow: hidden;
  width: 100%;
}
.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

/* 装飾線 */
.main__line {
  display: block;
  margin: 1rem auto 2rem;
}
.sub__line {
  display: block;
  margin: 1.5rem auto 3rem;
}

/* Gtranslate */
.gtranslate_wrapper {
  position: relative;
  z-index: 0;
}

/***** 見出し *****/
.index__ttl {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif !important;
  text-align: center;
  margin-bottom: 6rem;
  font-weight: bold;
  letter-spacing: .1em;
  line-height: 1.6;
  color: #C69981;
  text-transform: uppercase;
  position: relative;
}
.index__ttl::before {
  content: "";
  width: 1px;
  height: 30px;
  background-color: #ddd;
  display: block;
  position: absolute;
  right: 50%;
  left: 50%;
  top: -60%;
}
.index__ttl span {
  color: #929292;
  display: block;
  font-size: 1.3rem;
}
.page-sub__ttl {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  border-left: 5px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-radius: 10px;
  font-size: 2.8rem;
  font-weight: 600;
  padding-left: 2rem;
  margin-bottom: 4rem;
}
.page-sub__txt {
  font-size: 1.6rem;
  margin-bottom: 3rem;
}
.page-sub__img {
  margin-bottom: 5rem;
}
.page-sub__img img {
  width: 100%;
  height: 295px;
  object-fit: cover;
  border-radius: 20px;
}

/***** ヘッダー *****/
header {
  height: 90px;
  background-color: rgba(255,255,255,0.9);
  position: fixed;
  top: 0;
  transition: .5s;
  width: 100%;
  z-index: 10;
}
header.hide {
  top: -90px;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  padding: 0 2rem;
}
.header__ttl a {
  display: flex;
  align-items: center;
}
.header__ttl a p {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 0 1rem;
}
.header__ttl a p::before {
  content: "";
  background-color: #c0c0c0;
  border-radius: 5px;
  display: inline-block;
  width: 2px;
  height: 35px;
  transform: rotate(27deg);
  vertical-align: middle;
  margin: 0 2rem 0 0;
}
.header-nav__list,
.header-nav__list--single {
  display: inline-block;
  text-align: center;
  margin-left: 45px;
  transition: .5s;
}
.header-nav__item,
.header-nav__item--single {
  display: block;
  font-size: 1.8rem;
  margin: .5rem 0;
  line-height: 1.8;
}
.header-nav__item {
  position: relative;
}
.header-nav__item:hover {
  color: #5a5a5a;
  opacity: .5;
  transition: .3s all;
}
.header-nav__item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -50px;
  height: 100px;
}
.header-nav__item span {
  color: #C69981;
  display: block;
  font-size: 1.1rem;
  text-transform: uppercase;
}
.header-nav__item--second {
  display: none;
}
.header-nav__list:hover > .header-nav__item--second {
  display: block;
}
.header-nav__item--second {
  position: absolute;
  background-color: rgb(255 255 255 / 90%);
  padding: 3rem;
  border-radius: 10px;
  margin-top: 2.5rem;
  white-space: nowrap;
  z-index: 100; 
}
.header-nav__item--second li a {
  border-bottom: 1px dotted #ddd;
  font-size: 1.8rem;
  display: block;
  line-height: 1.8;
  padding: 1.5rem 3rem;
  color: #5a5a5a;
  text-decoration: none;
  transition: .3s all;
}
.header-nav__item--second li a:hover {
  background-color: rgba(0, 0, 0, .05);
  transition: .3s all;
}
.header-nav__item--second li:first-child a {
  border-top: 1px dotted #ddd;
}
#nav-drawer {
  display: none;
}

/***** 下層ページヘッダー *****/
.header-sub {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 60%;
  width: 100vw;
  height: 70vh;
  position: relative;
}
.header-sub::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(152, 216, 200, 1) 100%);
}
.webp .header-sub.pillow {
  background-image: url(./images/subpage/header_pillow.jpg.webp);
  background-position: 50% 30%;
}
.no-webp .header-sub.pillow {
  background-image: url(./images/subpage/header_pillow.jpg);
  background-position: 50% 30%;
}
.webp .header-sub.mattress {
  background-image: url(./images/subpage/header_mattress.jpg.webp);
}
.no-webp .header-sub.mattress {
  background-image: url(./images/subpage/header_mattress.jpg);
}
.webp .header-sub.duvet {
  background-image: url(./images/subpage/header_duvet.jpg.webp);
}
.no-webp .header-sub.duvet {
  background-image: url(./images/subpage/header_duvet.jpg);
}
.webp .header-sub.maintenance {
  background-image: url(./images/subpage/header_maintenance.jpg.webp);
}
.no-webp .header-sub.maintenance {
  background-image: url(./images/subpage/header_maintenance.jpg);
}
.webp .header-sub.other {
  background-image: url(./images/subpage/header_other.jpg.webp);
}
.no-webp .header-sub.other {
  background-image: url(./images/subpage/header_other.jpg);
}
.webp .header-sub.news {
  background-image: url(./images/subpage/header_news.jpg.webp);
}
.no-webp .header-sub.news {
  background-image: url(./images/subpage/header_news.jpg);
}
.webp .header-sub.news {
  background-image: url(./images/subpage/header_news.jpg.webp);
}
.webp .header-sub.shop {
  background-image: url(./images/subpage/header_shop.jpg.webp);
}
.no-webp .header-sub.shop {
  background-image: url(./images/subpage/header_shop.jpg.webp);
}
.header-sub__item {
  text-align: center;
  position: absolute;
  width: 70%;
  height: 30px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.header-sub__ttl {
  color: #fff;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  letter-spacing: .1em;
  font-size: 4rem;
  z-index: 1;
}
.header-sub__ttl ul li a {
  font-size: 4rem;
  pointer-events: none;
}
.header-sub__txt {
  color: #fff;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/***** フッター *****/
footer {
  text-align: center;
  margin-top: 4rem;
}
.footer__sns {
  margin-bottom: 4rem;
}
.footer__icon {
  margin: 0 .7rem;
}
small {
  color: #fff;
  font-size: 1.2rem;
}

#footer_bar {display: none;}

/***** アクセス *****/
.access {
  padding: 12rem 0 6rem;
}
.webp .access {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(152, 216, 200, 0.9) 100%), url(./images/common/footer_bg.jpg.webp) no-repeat 50% 50% / cover;
}
.no-webp .access {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(152, 216, 200, 0.9) 100%), url(./images/common/footer_bg.jpg) no-repeat 50% 50% / cover;
}
.access__container {
  max-width: 1280px;
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  margin: 0 auto;
  padding: 10rem 3rem;
  box-shadow:
  inset 0 0 25px rgba(0, 0, 0, 0.08),
  inset 0 0 10px rgba(0, 0, 0, 0.05);
}
.access__contents {
  display: flex;
  align-items: flex-start;
  width: 85%;
  justify-content: space-around;
  margin: 0 auto;
}
.access__item {
  width: 50%;
  height: auto;
  padding: 0 5rem;
}
.access__item:first-child {
  border-right: 1px solid #ddd;
}
.access__img {
  margin-bottom: 5rem;
  text-align: center;
}
.access__img img {
  width: 85%;
  height: 295px;
  object-fit: cover;
  border-radius: 20px;
  margin: 0 auto;
}
.access__ttl {
  color: #98D8C8;
  font-weight: 600;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}
.access__txt {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.access__txt.--first {
  height: 100px;
}
.access__txt.--last {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
}
.access__txt.--hl {
  font-size: 1.4rem;
  margin-bottom: 0;
}
.access__txt span {
  background-color: #C69981;
  border-radius: 3px;
  color: #fff;
  font-size: 15px;
  padding: .25rem 1rem;
  margin-right: 1rem;
}
.access__txt a {
  width: 50px;
  height: 50px;
  display: block;
  border: 1px solid;
  border-radius: 50%;
  display: grid;
  align-items: center;
  justify-items: center;
  font-size: 2.2rem;
  color: #C69981;
  transition: .3s all;
}
.access__txt a:hover {
  background-color: #C69981;
  color: #fff;
  transition: .3s all;
}


/* ************************************************************************************************
  front-page.php（トップページ）
************************************************************************************************ */
/***** 余白 *****/
.header-main, .main, .menu, .news, .shop {
  padding: 20rem 0;
}
.lp {
  padding: 20rem 0 10rem;
}

/***** メインビジュアル *****/
.header-main {
  width: 100%;
  height: 100vh;
  position: relative;
}
.header-main::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(152, 216, 200, 1) 100%);
  z-index: 1;
  pointer-events: none;
}
.header-main__item {
  position: absolute;
  left: 17%;
  bottom: 15%;
  z-index: 2;
}
.header-main__item p {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-weight: bold;
  font-size: 5rem;
}
.swiper-slide div {
  width: 100%;
  height: 100%;
}
.webp .slide-bg01 {
  background: url(./images/index/index_slide01.jpg.webp) no-repeat 50% 50% / cover;
}
.no-webp .slide-bg01 {
  background: url(./images/index/index_slide01.jpg) no-repeat 50% 50% / cover;
}
.webp .slide-bg02 {
  background: url(./images/index/index_slide02.jpg.webp) no-repeat 50% 50% / cover;
}
.no-webp .slide-bg02 {
  background: url(./images/index/index_slide02.jpg) no-repeat 50% 50% / cover;
}
.webp .slide-bg03 {
  background: url(./images/index/index_slide03.jpg.webp) no-repeat 50% 50% / cover;
}
.no-webp .slide-bg03 {
  background: url(./images/index/index_slide03.jpg) no-repeat 50% 50% / cover;
}
.webp .slide-bg04 {
  background: url(./images/index/index_slide04.jpg.webp) no-repeat 50% 50% / cover;
}
.no-webp .slide-bg04 {
  background: url(./images/index/index_slide04.jpg) no-repeat 50% 50% / cover;
}
.scroll_down {
  position:absolute;
  bottom: 0px;
  right: 7%;
  z-index: 2;
}
.scroll_down a {
  position: absolute;
  left: 10px;
  bottom: 87px;
  color: #5a5a5a;
  font-size: 14px;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: .2em;
  writing-mode: vertical-lr;
  text-decoration: none;
  text-transform: uppercase;
}
.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color:#5a5a5a;
  animation:
  circlemove 1.6s ease-in-out infinite,
  cirlemovehide 1.6s ease-out infinite;
}
@keyframes circlemove {
  0%{bottom:160px;}
  100%{bottom:0px;}
}
@keyframes cirlemovehide {
  0%{opacity:0}
  50%{opacity:1;}
  80%{opacity:0.9;}
  100%{opacity:0;}
}
.scroll_down:after {
  content:"";
  position: absolute;
  bottom:0;
  left:0;
  width:2px;
  height: 160px;
  background-color:#5a5a5a;
}
.header-main__btn {
  display: flex;
  gap: 1rem;
  position: absolute;
  bottom: 15%;
  right: 10%;
  z-index: 2;
}
.header-main__btn a {
  display: block;
  border-radius: 50%;
  width: 175px;
  height: 175px;
  display: grid;
  justify-items: center;
  align-items: center;
  text-align: center;
  align-content: center;
  line-height: 1.8;
  color: #fff;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  transition: transform .4s ease, box-shadow .4s ease;
  animation: float 4s ease-in-out infinite;
  border: 1px solid rgb(255 255 255 / 50%);
}
.header-main__btn a:hover {
  opacity: .8 !important;
  transition: .3s all;
  transform: translateY(-8px) scale(1.05);
}
.header-main__btn a:nth-child(odd) {
  background-color: rgb(152 216 200 / 90%);
  margin-top: 3rem;
  animation-delay: 0s;
}
.header-main__btn a:nth-child(even) {
  background-color: rgb(198 153 129 / 90%);
  animation-delay: 1s;
}
@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/***** 最新情報 *****/
.news {
  background-color: #f9f9f9;
}
.news__line {
  display: block;
  margin: 0 auto;
}
.news__contents {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 6rem;
  gap: 1rem;
}
.news__item {
  background-color: #fff;
  border: 7px double #C69981;
  text-align: center;
  width: calc(100% / 4);
}
.news__thumbnail {
  overflow: hidden;
}
.news__thumbnail a {
  display: block;
}
.news__thumbnail img {
  width: 100%;
  max-height: 195px;
  transition: transform .4s ease;
  object-fit: cover;
}
.news__thumbnail a:hover img {
  transform: scale(1.05);
}
.news__txt {
  padding: 2rem;
}
.news__ttl {
  margin-top: .5rem;
}
.news__date {
  color: #98D8C8;
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
  margin: 1rem 0 .5rem;
}
.news__cat .post-categories a {
  background-color: #cdcdcd;
  border: 1px solid #cdcdcd;
  border-radius: 32px;
  padding: .25rem 2rem;
  color: #fff;
  display: inline-block;
}
.news__cat .post-categories a:hover {
  border-color: #cdcdcd;
  background-color: #fff;
  color: #cdcdcd;
  transition: .3s all;
}

/***** キャッチフレーズ *****/
.main {
  padding: 20rem 0 10rem;
}
.main .container {
  position: relative;
}
.main .container::before {
  content: "";
  display: inline-block;
  background-color: #f9f9f9;
  width: 80%;
  height: 80%;
  position: absolute;
  right: 10%;
  top: 10%;
}
.main__contents1,
.main__contents2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10rem;
}
.main__item {
  width: 45%;
}
.main__img {
  border-radius: 20px;
  width: 90%;
  height: 415px;
  object-fit: cover;
  position: relative;
}
.main__ttl {
  color: #C69981;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  text-align: center;
}
.main__txt {
  font-size: 1.5rem;
  text-align: center;
}

/***** 商品一覧 *****/
.menu {
  position: relative;
  overflow: hidden;
}
.menu::before {
  content: "";
  position: absolute;
  inset: 0;
  filter: blur(20px);
  transform: scale(1.1);
  z-index: 0;
}
.webp .menu::before {
  background:
  linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(152, 216, 200, 0.9) 100%
  ),
  url(./images/index/index_bg.jpg.webp) no-repeat -5% 50% / cover;
}
.no-webp .menu::before {
  background:
  linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(152, 216, 200, 0.9) 100%
  ),
  url(./images/index/index_bg.jpg) no-repeat -5% 50% / cover;
}
.menu > * {
  position: relative;
  z-index: 1;
}
.menu .index__ttl::before {
  background-color: #fff;
}
.menu__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
  gap: 2rem;
}
.menu__item {
  width: calc(100% / 2 - 1rem);
  position: relative;
}
.menu__link {
  border-left: 3px solid #fff;
  border-right: 3px solid #fff;
  display: grid;
  justify-items: center;
  background-color: #fff;
  border-radius: 20px;
  box-sizing: border-box;
  height: 580px;
  padding: 6rem 3rem;
  overflow: hidden;
  transition: .5s all;
}
.menu__link:hover {
  border-color: #C69981;
  box-sizing: border-box;
  transition: .5s all;
}
.menu__img {
  border-radius: 20px;
  width: 485px;
  height: 215px;
  overflow: hidden;
}
.menu__img img {
  border-radius: 20px;
  width: 485px;
  height: 215px;
  object-fit: cover;
  transform: scale(1);
  transition: transform .8s ease, filter .8s ease;
}
.menu__item:hover .menu__img img {
  transform: scale(1.05);
}
.menu__txt h4 {
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
  color: #C69981;
  font-size: 2.2rem;
  font-weight: 600;
  margin: 3rem auto 2rem;
  line-height: 2;
  width: 75%;
}
.menu__txt h4 span {
  color: #98D8C8;
  display: block;
  font-size: 1.2rem;
  text-transform: uppercase;
}
.menu__txt p {
  width: 80%;
  margin: 0 auto;
  text-align: left;
}

/***** 店舗情報 *****/
.shop {
  background-color: #f9f9f9;
}
.shop__list {
  margin-bottom: 6rem;
}
.shop__item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3rem;
  background-color: #fff;
  border-radius: 20px;
}
.shop__item--img,
.shop__item--box {
  width: calc(100% / 2 - 3rem);
}
.shop__item--img img {
  width: 100%;
  height: 425px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  object-fit: cover;
}
.shop__item--box h5 {
  color: #98D8C8;
  font-weight: 600;
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}
.shop__item--box address {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.shop__item--box address a {
  color: #C69981;
  display: inline-block;
  text-decoration: underline;
  margin: 0 1rem;
  border-radius: 3px;
  vertical-align: middle;
  transition: .3s all;
}
.shop__item--box address a:hover {
  background-color: #fff;
  color: #C69981;
  opacity: .7;
  transition: .3s all;
}
.shop__item--box address p {
  font-size: 1.8rem;
}
.shop__item--box address p span {
  background-color: #C69981;
  border-radius: 3px;
  color: #fff;
  font-size: 15px;
  padding: .25rem 1rem;
  margin-right: 1rem;
}
.shop__item--sns {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.shop__item--sns a {
  width: 50px;
  height: 50px;
  display: block;
  border: 1px solid;
  border-radius: 50%;
  display: grid;
  align-items: center;
  justify-items: center;
  font-size: 2.2rem;
  color: #C69981;
  transition: .3s all;
}
.shop__item--sns a:hover {
  background-color: #C69981;
  color: #fff;
  transition: .3s all;
}

/***** ねむりの相談所 *****/
.webp .lp {
  background: url(./images/common/line02.png.webp) no-repeat 50% 50% / contain;
}
.no-webp .lp {
  background: url(./images/common/line02.png) no-repeat 50% 50% / contain;
}
.lp__btn a {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  color: #fff;
  display: grid;
  align-items: center;
  align-content: center;
  width: 100%;
  height: 325px;
  font-size: 3rem;
  padding: 0 8rem;
  gap: 1.5rem;
  text-decoration: none;
  z-index: 1;
}
.lp__btn a::before {
  content: "";
  position: absolute;
  inset: 0;
  transition: transform .8s ease;
  z-index: -2;
}
.webp .lp__btn a::before {
  background: url(./images/index/index_lp.jpg.webp) no-repeat 50% 85% / cover;
}
.no-webp .webp .lp__btn a::before {
  background: url(./images/index/index_lp.jpg) no-repeat 50% 85% / cover;
}
.lp__btn a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(152, 216, 200, 1) 100%
  );
  z-index: -1;
}
.lp__btn a:hover::before {
  transform: scale(1.08);
}
.lp__btn a span {
  color: rgba(255, 255, 255, .7);
  font-size: 1.6rem;
  margin-top: .5rem;
  line-height: 1.8;
}


/* ************************************************************************************************
  page-pillow.php（まくらページ）
************************************************************************************************ */
/***** 余白 *****/
.item01 {
  padding: 12rem 0 10rem;
}
.item02,
.item03,
.item04 {
  padding: 10rem 0;
}
.item-voice {
  padding: 10rem 0 0;
}

/***** 導入文 *****/
.item01__txt {
  position: relative;
}
.item01__txt h3 {
  color: #C69981;
  font-weight: 600;
  margin-bottom: 1rem;
}
.item01__txt p {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.item01__txt .item01__btn {
  position: absolute;
  right: 5%;
  bottom: 10%;
  z-index: 1;
}
.item01__txt .item01__btn a {
  background-color: #98D8C8;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 125px;
  height: 125px;
  color: #fff;
  text-decoration: none;
  gap: .5rem;
  transition: .3s all;
}
.item01__txt .item01__btn a:hover {
  background-color: #fff;
  border-color: #98D8C8;
  color: #98D8C8;
  transition: .3s all;
}
.item01__txt .item01__btn .play-icon {
  width: 0;
  height: 0;
  border-left: 14px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 4px;
}
.item01__txt .item01__btn a:hover .play-icon {
  border-left: 14px solid #98D8C8;
}
.item01__txt .item01__btn .play-text {
  font-size: 1.1rem;
  margin-top: 4px;
  white-space: nowrap;
}
.item01__txt div.item01__img {
  margin-top: -5%;
  text-align: right;
}
.item01__txt div.item01__img img {
  border-radius: 20px;
  width: 80%;
  height: 525px;
  object-fit: cover;
}

/***** 取扱商品一覧 *****/
.item02__list {
  position: relative;
}
.item02__list::before {
  content: "";
  width: 95%;
  height: 120%;
  position: absolute;
  right: -25%;
  top: -10%;
  background-color: #f9f9f9;
  z-index: -1;
}
li.item02__list__box__wrap__type {
  margin-bottom: 8rem;
}
li.item02__list__box__wrap__type:last-child {
  margin-bottom: 0;
}
li.item02__list__box__wrap__type h4 {
  border-bottom: 2px dotted #C69981;
  font-size: 2.2rem;
  padding-bottom: .5rem;
  margin-bottom: 2rem;
}
li.item02__list__box__wrap__type h4::before {
  content: "";
  background-color: #C69981;
  border-radius: 50%;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 1rem;
  margin-bottom: .25rem;
}
li.item02__list__box__wrap__type .item02__list__box__wrap__type--inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
li.item02__list__box__wrap__type .item02__list__box__wrap__type--inner > div {
  width: calc(100% / 3 - 1rem);
  position: relative;
}
li.item02__list__box__wrap__type .item02__list__box__wrap__type--inner > div img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
}
li.item02__list__box__wrap__type .item02__list__box__wrap__type--inner > div p {
  background-color: #98D8C8;
  border-radius: 32px;
  color: #fff;
  font-weight: 600;
  line-height: 1.6;
  padding: .5rem 1.5rem;
  width: 80%;
  text-align: center;
  position: absolute;
  right: 9%;
  bottom: -4%;
}
li.item02__list__box__wrap__type .item02__list__box__wrap__type--inner > div p span {
  font-size: 1rem;
}

/***** あなたにぴったりのまくらができるまで *****/
.item03__txt {
  margin-bottom: 5rem;
}
.item03__txt h3 {
  color: #C69981;
  font-weight: 600;
  margin-bottom: 1rem;
}
.item03__txt p {
  font-size: 1.8rem;
}
li.item03__flow__list__phara div img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
}
ul.item03__flow__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 4rem;
  position: relative;
}
li.item03__flow__list__phara {
  width: calc(98% / 2);
  background-color: #fff;
  border-radius: 20px;
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
li.item03__flow__list__phara:last-child {
  display: grid;
  align-items: center;
  align-content: center;
  position: relative;
}
li.item03__flow__list__phara:last-child::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 7px double #C0C0C0;
  border-radius: 20px;
  pointer-events: none;
}
li.item03__flow__list__phara:nth-child(odd)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8%;
  width: 50px;
  height: 1px;
  background-color:#C0C0C0;
  z-index: -1;
}
li.item03__flow__list__phara:last-child::after {
  content: none;
}
li.item03__flow__list__phara:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}
li.item03__flow__list__phara p {
  color: #98D8C8;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}
li.item03__flow__list__phara p span {
  display: block;
  width: 52px;
  height: 52px;
  margin: 0 auto 0.8rem;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #C0C0C0;
  color:  #C0C0C0 ;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 52px;
  letter-spacing: .1em;
}
li.item03__flow__list__phara > div {
  border-radius: 20px;
  overflow: hidden;
}
li.item03__flow__list__phara > div img {
  width: 100%;
  height: 295px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
li.item03__flow__list__phara:hover > div img {
  transform: scale(1.05);
}
li.item03__flow__list__phara > ul {
  width: 70%;
  margin: 0 auto;
  text-align: left;
}
li.item03__flow__list__phara > ul li {
  font-size: 1.5rem;
  line-height: 2;
}
li.item03__flow__list__phara > ul li::before {
  content: "";
  background-color: #C0C0C0;
  border-radius: 50%;
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: .75rem;
  margin-bottom: .45rem;
}

/***** アフターフォロー *****/
.item04 {
  position: relative;
  overflow: hidden;
}
.item04::before {
  content: "";
  position: absolute;
  inset: 0;
  filter: blur(20px);
  transform: scale(1.1);
  z-index: 0;
}
.webp .item04::before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(152, 216, 200, 0.9) 100%), url(./images/subpage/pillow_bg.jpg.webp) no-repeat 50% 50% / cover;
}
.no-webp .item04::before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(152, 216, 200, 0.9) 100%), url(./images/subpage/pillow_bg.jpg) no-repeat 50% 50% / cover;
}
.item04 .page-sub__ttl {
  position: relative;
  z-index: 1;
}
ol.item04__after__list {
  max-width: 100%;
  position: relative;
}
ol.item04__after__list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    #C0C0C0,
    transparent
  );
}
li.item04__after__list__item {
  background-color: #fff;
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 3rem;
  position: relative;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  position: relative;
  margin-left: 10rem;
}
li.item04__after__list__item h5 {
  color: #98D8C8;
  font-weight: 600;
  border-bottom: 1px dotted #c0c0c0;
  line-height: 1.4;
  margin-bottom: 2rem;
}
li.item04__after__list__item h5 span {
  color: #C69981;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 4rem;
  font-style: italic;
  margin-right: 2rem;
  vertical-align: middle;
}

/***** ピマピッタ *****/
.item16__txt {
  margin-bottom: 2.5rem;
}
.item16__txt p {
  font-size: 1.8rem;
}
.item16__img {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.item16__img img {
  border-radius: 20px;
}

/***** お客様の声 *****/
ul.item-voice__list__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
li.item-voice__list__wrap__box {
  width: calc(100% / 3);
  text-align: center;
  margin-bottom: 5rem;
  display: grid;
  align-items: start;
  justify-items: center;
}
.item-voice__list__wrap__box > div {
  width: 275px;
  height: 275px;
  background-color: #f9f9f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
li.item-voice__list__wrap__box > div img {
  width: 125px;
  height: auto;
  object-fit: contain;
}
li.item-voice__list__wrap__box p {
  width: 75%;
  margin-top: 2rem;
  text-align: left;
}


/* ************************************************************************************************
  page-mattress.php（マットレスページ）
************************************************************************************************ */
/***** 余白 *****/
.item05 {
  padding: 12rem 0 10rem;
}
.item06 {
  padding: 10rem 0;
}

/***** 導入文 *****/
.item05__txt {
  margin-bottom: 4rem;
}
.item05__txt h3 {
  color: #C69981;
  font-weight: 600;
  margin-bottom: 1rem;
}
.item05__txt p {
  font-size: 1.8rem;
}
.item05__box {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}
.item05__box__list {
  background-color: #fff;
  border-radius: 5px;
  padding: 4rem;
  margin-bottom: 2rem;
  border: 1px solid #c0c0c0;
  background: linear-gradient(
  to bottom right,
  rgba(0, 0, 0, 0) 60%,
  rgba(152, 216, 200, 0.9) 100%
  );
}
.item05__box__list:nth-child(1) {
  width: calc(60% / 2);
}
.item05__box__list:nth-child(2) {
  width: calc(140% / 2);
} 
.item05__box__list h4 {
  color: #98d8c8;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.item05__box__list p {
  font-size: 1.6rem;
  line-height: 1.8;
}
.item05__box__list ul {
  width: 100%;
  margin: 2rem 0 1rem;
}
.item05__box__list ul li {
  font-size: 1.6rem;
  line-height: 2;
  background-color: #f9f9f9;
  border-radius: 5px;
  display: inline-block;
  padding: .25rem 3rem;
  margin-bottom: 1rem;
  margin-right: 1rem;
}

/***** 取扱商品一覧 *****/
.item06__box {
  position: relative;
}
.item06__box.--right::before {
  content: "";
  width: 95%;
  height: 105%;
  position: absolute;
  top: -10%;
  background-color: #f9f9f9;
  z-index: -1;
  right: -25%;
}
.item06__box.--left::before {
  content: "";
  width: 95%;
  height: 125%;
  position: absolute;
  top: -10%;
  background-color: #f9f9f9;
  z-index: -1;
  left: -25%;
}
.item06__box.--right.--mattress::before {
  top: -5%;
  height: 107%;
}
.item06__box.--right.--duvet::before {
  top: -11%;
  height: 115%;
}
.item06__box.--left.--duvet::before {
  top: -20%;
  height: 130%;
}
.item06__box.--right.--other::before {
  top: -5%;
  height: 103%;
}
.item06__box.--left.--other::before {
  height: 117%;
  top: -30%;
}
.item06__box.--right.--other2::before {
  top: -49%;
  height: 145%;
}
.item06__box.--left.--other2::before {
  top: -17%;
  height: 125%;
}
.item06__box.--right.--other3::before {
  top: -50%;
  height: 185%;
}
li.item06__box__list__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10rem;
}
li.item06__box__list__item:nth-child(even) {
  flex-direction: row-reverse;
}
li.item06__box__list__item:last-child {
  margin-bottom: 0;
}
li.item06__box__list__item:nth-child(n+5) {
  flex-direction: column;
}
li.item06__box__list__item:nth-child(n+5) .item06__box__list__item--img,
li.item06__box__list__item:nth-child(n+5) .item06__box__list__item--txt {
  width: 100%;
}
li.item06__box__list__item:nth-child(n+5) .item06__box__list__item--img img {
  height: 425px;
  object-fit: cover;
  margin-bottom: 6rem;
}
li.item06__box__list__item.--row {
  flex-direction: row;
}
li.item06__box__list__item.--row .item06__box__list__item--img,
li.item06__box__list__item.--row .item06__box__list__item--txt {
  width: calc(100% / 2 - 3rem);
}
li.item06__box__list__item.--row .item06__box__list__item--img img {
  background-color: #fff;
  border-radius: 20px;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.item06__box__list__item--img,
.item06__box__list__item--txt {
  width: calc(100% / 2 - 3rem);
}
.item06__box__list__item--img img {
  background-color: #fff;
  border-radius: 20px;
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: .5rem;
}
.item06__box__list__item--pic {
  width: 100%;
  height: 100%;
}
.item06__box__list__item--pic div.--list01 {
  display: flex;
  justify-content: space-between;
  margin: 5rem 0 2.5rem;
}
.item06__box__list__item--pic div.--list01 picture {
  width: calc(100% / 2 - 1rem);
  height: auto;
}
.item06__box__list__item--pic div.--list01 img {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 20px;
}
.item06__box__list__item--pic div.--list02 ul {
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  margin: 5rem 0 2.5rem;
}
.item06__box__list__item--pic div.--list02 ul li {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
}
.item06__box__list__item--pic div.--list02 ul li img {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 20px;
}
.item06__box__list__item--pic div.--list02 ul li span {
  color: #fff;
  font-size: 1.4rem;
  border-radius: 32px;
  margin: 1rem 0;
  padding: .5rem 1.5rem;
  text-align: center;
}
.item06__box__list__item--pic div.--list02 ul li:nth-child(1) span {
  background-color: #6ca064;
}
.item06__box__list__item--pic div.--list02 ul li:nth-child(2) span {
  background-color: #373737;
}
.item06__box__list__item--pic div.--list02 ul li:nth-child(3) span {
  background-color: #a0a0a0;
}
.item06__box__list__item--pic div.--list02 ul li p {
  font-size: 1.6rem;
  padding: 0 1rem;
}
.item06__box__list__item--txt h4 {
  color: #C69981;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.item06__box__list__item--txt h4 span {
  background-color: #98d8c8;
  border-radius: 32px;
  color: #fff;
  font-size: 1.6rem;
  padding: .25rem 2.5rem;
  margin-right: 2rem;
  vertical-align: middle;
}
.item06__box__list__item--txt > p {
  font-size: 1.6rem;
  line-height: 2;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}
.item06__box__list__item--txt > p.--no-border {
  border-bottom: 1px dashed transparent;
  margin-bottom: 0;
  padding-bottom: 0;
}
.item06__box__list__item--txt span.--note {
  display: block;
  font-size: 1.2rem;
  text-align: right;
}
.item06__box__list__item--flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5rem;
}
.item06__box__list__item--flex img {
  width: 275px;
  height: 175px;
  object-fit: cover;
  border-radius: 20px;
  margin-left: 2rem;
}
.item06__box__list__item--txt ol li {
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #ddd;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: .5rem;
  padding: .75rem 3rem;
}
.item06__box__list__item--txt ol li:last-child {
  display: block;
  background-color: transparent;
  border: none;
  padding: 0;
  margin-top: 3rem;
  text-align: right;
  font-weight: 600;
}
.item06__box__list__item--txt ol li:last-child span {
  background-color: #C69981;
  border-radius: 3px;
  color: #fff;
  padding: .25rem 2.5rem;
  margin-right: 1.5rem;
}
.item06__box__list__item--txt ol li:last-child p.--st {
  color: #c0c0c0;
  font-size: 1.2rem;
  margin: .5rem 0 1rem;
}
.item06__box__list__item--txt ol.--no-price li:last-child {
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #ddd;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: .5rem;
  padding: .75rem 3rem;
  margin-top: 0;
  font-weight: 500;
  text-align: left;
}
.item06__box__list__item--txt ul {
  font-size: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem;
}
.item06__box__list__item--txt ul li {
  width: calc(100% / 4 - 1rem);
  margin-bottom: 2rem;
  line-height: 1.4;
  font-size: 1.5rem;
  text-align: left;
  background-color: #fff;
  padding: 3rem 1.5rem;
  border-radius: 3px;
}
.item06__box__list__item--txt ul li span {
  border-radius: 5px;
  color: #fff;
  display: block;
  padding: .25rem 1rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.item06__box__list__item--txt ul.--first li span {
  background-color: #b8154c;
}
.item06__box__list__item--txt ul.--second li span {
  background-color: #1e296f;
}
.item06__box__list__item--txt dl {
  font-size: 1.6rem;
}
.item06__box__list__item--txt dl dt {
  color: #98d8c8;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.item06__box__list__item--txt dl dt::before {
  content: "";
  background-color: #ddd;
  border-radius: 50%;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 1rem;
  margin-bottom: .25rem;
}
.item06__box__list__item--txt dl dd {
  margin-bottom: 2rem;
  line-height: 1.4;
}
.item06__box__list__item--txt ul.--third {
  flex-wrap: wrap;
}
.item06__box__list__item--txt ul.--third li span {
  background-color: #c0c0c0;
}
.item06__box__txt {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 3rem;
  margin: 6rem 0 0;
}
.item06__box__txt span {
  background-color: #98d8c8;
  border-radius: 32px;
  color: #fff;
  font-size: 1.6rem;
  padding: 0rem 2.5rem;
  margin-right: 2rem;
  vertical-align: middle;
  margin-bottom: 1rem;
  display: inline-block;
}
.item06__box__gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 5rem;
}
.item06__box__gallery picture {
  width: calc(100% / 2 - 1rem);
}
.item06__box__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #fff;
  border-radius: 20px;
}
.item06__list__table {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.item06__list {
  margin: 5rem 0 0;
}
.item06__list__table table {
  font-size: 1.8rem;
  width: 100%;
  min-width: 725px;
}
.item06__list__table table th,
.item06__list__table table td {
  border-bottom: 1px solid #C69981;
  padding: 2rem;
  text-align: center;
  vertical-align: middle;
}
.item06__list__table table th {
  color: #C69981;
}
.item06__list__table table td {
  width: 40%;
}
.item06__box__material {
  margin-top: 5rem;
}
.item06__box__material > div > p {
  border-bottom: 3px dotted #fff;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
.item06__box__material > div > p::before {
  content: "";
  background: #98d8c8;
  border-radius: 50%;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-bottom: .25rem;
  margin-right: 1rem;
  vertical-align: middle;
}
.item06__box__material__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.item06__box__material__list__item {
  width: calc(100% / 5);
  display: grid;
  justify-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.item06__box__material__list__item img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}
.item06__box__material__list__item span {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1.6;
}


/* ************************************************************************************************
  page-duvet.php（カシミヤ毛布・羽毛布団ページ）
************************************************************************************************ */
/***** 余白 *****/
.item07 {
  padding: 12rem 0 8rem;
}
.item08,
.item09 {
  padding: 8rem 0;
}

/***** 導入文（掛寝具）*****/
.item07__txt {
  margin-bottom: 2.5rem;
}
.item07__txt h3 {
  color: #C69981;
  font-weight: 600;
  margin-bottom: 1rem;
}
.item07__txt > p {
  font-size: 1.8rem;
  margin-bottom: 5rem;
}
.item07__txt div img {
  border-radius: 20px;
  width: 100%;
  height: 425px;
  object-fit: cover;
}

/***** 羽毛布団について（羽毛布団）*****/
.item08 {
  background-color: #f9f9f9;
  margin-bottom: 8rem;
}
.item08__txt {
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
}
.item08__box__phara {
  background-color: #fff;
  margin: 0 calc(50% - 50vw) 5rem;
  width: 100vw;
  padding: 5rem;
}
.item08__box--inner {
  margin-bottom: 8rem;
}
.item08__box--ttl {
  color: #C69981;
  font-size: 2.2rem;
  font-weight: 600;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto 1rem;
}
.item08__box--ttl span {
  background-color: #98d8c8;
  border-radius: 32px;
  color: #fff;
  padding: .25rem 2rem;
  margin-right: 2rem;
}
.item08__box--txt {
  font-size: 1.6rem;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.item08__box--img {
  max-width: 1280px;
  margin: 2rem auto 0;
  width: 100%;
}
.item08__box--img img {
  width: 100%;
  height: 100%;
}
.item08__box--inner p {
  font-size: 1.6rem;
}
.item08__box--inner p span {
  border: 1px solid #C69981;
  background-color: #fff;
  color: #C69981;
  padding: .25rem 1rem;
  margin-right: 2rem;
}
li.item08__box__list__type {
  border-bottom: 3px dotted #fff;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.item08__box__list__type--img img {
  border-radius: 20px;
}
li.item08__box__list__type:first-child {
  border-top: 3px dotted #fff;
  padding-top: 2.5rem;
}
li.item08__box__list__type h4 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
li.item08__box__list__type h4::before {
  content: "";
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 1.5rem;
}
li.item08__box__list__type p {
  font-size: 1.6rem;
}
.item08__table {
  width: 100%;
  height: auto;
  margin-top: 3rem;
  overflow-x: auto;
}
.item08__table table {
  font-size: 2rem;
  width: 100%;
  height: 100%;
  min-width: 725px;
}
.item08__table table th,
.item08__table table td {
  border-bottom: 1px solid #C69981;
  padding: 2rem;
  text-align: center;
  vertical-align: middle;
}
.item08__table table th {
  color: #C69981;
}

/***** カシミヤ毛布について（カシミヤ毛布）*****/
.item09__txt {
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
}
.item09__txt__feature h4 {
  border-bottom: 2px dotted #C69981;
  margin-bottom: 3rem;
}
.item09__txt__feature > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
}
.item09__txt__feature > ul li {
  border: 7px double #C69981;
  width: calc(100% / 2 - 2rem);
  margin-bottom: 4rem;
  padding: 5rem;
}
.item09__txt__feature--img img {
  border-radius: 20px;
  width: 100%;
  height: 325px;
  object-fit: cover;
}
.item09__txt__feature--box {
  margin: 2rem 0 0;
}
.item09__txt__feature--box > p:nth-child(1) {
  color: #98d8c8;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.item09__txt__feature--box > p:nth-child(2) {
  font-size: 1.6rem;
}

/* ************************************************************************************************
  page-maintenance.php（メンテナンスページ）
************************************************************************************************ */
/***** 余白 *****/
.item10 {
  padding: 12rem 0 10rem;
}
.item11,
.item12, 
.item13 {
  padding: 10rem 0;
}

.item14 {
  padding: 10rem 0 0;
}

/***** 導入文 *****/
.item10__txt h3 {
  color: #C69981;
  font-weight: 600;
  margin-bottom: 1rem;
}
.item10__txt > p {
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
}
.item10__txt div img {
  border-radius: 20px;
  width: 100%;
  height: 425px;
  object-fit: cover;
}

/***** 羽毛布団のメンテナンス *****/
.item11 {
  background-color: #f9f9f9;
}
.item11__ttl {
  color: #C69981;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.item11__txt {
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
}
.item11__flow ul {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 5rem;
  background-color: #fff;
  border-radius: 20px;
  padding: 4rem;
  text-align: center;
}
.item11__flow ul li {
  width: calc(100% / 4 - 1rem);
  position: relative;
}
.item11__flow ul li img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  text-align: center;
  margin-bottom: 2rem;
  background-color: #f9f9f9;
  border-radius: 20px;
  padding: 2rem;
}
.item11__flow ul li p {
  background-color: #98D8C8;
  border-radius: 32px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 1rem 0 0;
  text-align: center;
}
.item11__flow ul li p span {
  color: #C69981;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 4rem;
  font-style: italic;
  margin-right: 2rem;
  vertical-align: middle;
  position: absolute;
  top: -15%;
  left: 15%;
}
.item11__box {
  border-radius: 20px;
}
.item11__box > p {
  position: relative;
  font-size: 2.2rem;
  font-weight: 600;
  background-color: #fff;
  display: inline-block;
  border-radius: 8px;
  padding: .5rem 4rem;
  margin-bottom: 2rem;
}
.item11__box > p::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #fff;
}
.item11__box ol li {
  border-bottom: 3px dotted #fff;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  width: 100%;
  height: 100%;
}
.item11__box ol li:last-child {
  border-bottom: none;
}
.item11__box ol li > p {
  font-size: 1.8rem;
  font-weight: 500;
}
.item11__box ol li h5 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.item11__box ol li h5::before {
  content: "";
  background-color: #C69981;
  border-radius: 50%;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 1rem;
  margin-bottom: .25rem;
}
.item11__box ol li > div {
  position: relative;
}
.item11__box ol li > div > span {
  background-color: #fff;
  border-radius: 32px;
  color: #98D8C8;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1rem 3rem;
  position: absolute;
  top: 5%;
  left: 2%;
  z-index: 1;
}
.item11__box ol li > div ul {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 2rem 0 0;
  width: 100%;
  height: 100%;
}
.item11__box ol li > div ul li {
  border-bottom: none;
  position: relative;
  margin-bottom: 2.5rem;
  padding-bottom: 0;
}
.item11__box ol li > div ul li::after {
  content: "➡";
  background-color: #98D8C8;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  font-size: 2.4rem;
  color: #fff;
  display: grid;
  align-items: center;
  justify-items: center;
  z-index: 1;
}
.item11__box ol li > div ul li:last-child::after {
  content: none;
}
.item11__box ol li > div ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.item11__box ol li > div ul li.--reform-ex:first-child {
  width: 70%;
}
.item11__box ol li > div ul li div.--reform01::after {
  content: "";
  display: inline-block;
  background: url(./images/subpage/maintenance_item03.jpg);
  width: 525px;
  height: 325px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border-radius: 20px;
}
.item11__box ol li > div ul li div.--reform02::after {
  content: "";
  display: inline-block;
  background: url(./images/subpage/maintenance_item04.jpg);
  width: 615px;
  height: 325px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 100%;
  border-radius: 20px;
}
.item11__box ol li > div p {
  font-size: 1.8rem;
}
.item11__box ol li > div p span {
  background-color: #C69981;
  border-radius: 3px;
  color: #fff;
  display: inline-block;
  font-size: 1.4rem;
  padding: 0 2rem;
  margin-bottom: 1rem;
}
.item11__box ol li > p.item11__price {
  font-size: 1.6rem;
  font-weight: 600;
  text-align: right;
}
.item11__box ol li > p.item11__price span {
  background-color: #C69981;
  border-radius: 3px;
  color: #fff;
  padding: .25rem 2.5rem;
  margin-right: 1.5rem;
}
.item11__box ol li > div.item11__wrap {
  display: flex;
  justify-content: flex-start;
  gap: 4rem;
  margin: 2rem 0 0;
}
.item11__box ol li > div.item11__wrap div {
  background-color: #fff;
  border-radius: 20px;
  color: #98D8C8;
  padding: 3rem;
  text-align: center;
  display: grid;
  justify-items: center;
  align-items: center;
  position: relative;
  width: 100%;
  margin-bottom: 3rem;
}
.item11__box ol li > div.item11__wrap > div:nth-child(1)::after {
  content: "＝";
  color: #C69981;
  position: absolute;
  top: 50%;
  right: -3.25rem;
  transform: translateY(-50%);
  font-size: 2.4rem;
  font-weight: bold;
}
.item11__box ol li > div.item11__wrap > div:nth-child(2)::after {
  content: "＋";
  color: #C69981;
  position: absolute;
  top: 50%;
  right: -3.25rem;
  transform: translateY(-50%);
  font-size: 2.4rem;
  font-weight: bold;
}
.item11__box ol li > div.item11__wrap div > p {
  font-size: 2rem;
  font-weight: 600;
}

/***** 羽毛布団のメンテナンスの工程 *****/
.item12__box > p {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
.item12__flow ul {
  display: flex;
  align-items: center;
  margin-bottom: 8rem;
  padding: 0 2rem;
}
.item12__flow ul li {
  flex: 1;
  position: relative;
  padding: 4rem 2rem;
  list-style: none;
  text-align: center;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
}
.item12__flow ul li::before {
  content: "";
  border-radius: 20px;
  width: 125px;
  height: 100px;
  display: block;
  position: absolute;
  right: 50%;
  bottom: 0;
  margin-bottom: -6rem;
  z-index: 1;
}
.webp .item12__flow ul li:nth-child(1)::before {
  background: url(./images/subpage/maintenance_flow01.png.webp) no-repeat 50% 50% / contain;
}
.no-webp .item12__flow ul li:nth-child(1)::before {
  background: url(./images/subpage/maintenance_flow01.png) no-repeat 50% 50% / contain;
}
.webp .item12__flow ul li:nth-child(6)::before {
  background: url(./images/subpage/maintenance_flow02.png.webp) no-repeat 50% 50% / contain;
}
.no-webp .item12__flow ul li:nth-child(6)::before {
  background: url(./images/subpage/maintenance_flow02.png) no-repeat 50% 50% / contain;
}
.webp .item12__flow ul li:nth-child(7)::before {
  background: url(./images/subpage/maintenance_flow03.png.webp) no-repeat 50% 50% / contain;
}
.no-webp .item12__flow ul li:nth-child(7)::before {
  background: url(./images/subpage/maintenance_flow03.png) no-repeat 50% 50% / contain;
}
.item12__flow ul li > p {
  font-size: 2rem;
}
.item12__flow ul li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.5rem;
  transform: translateY(-50%);
  width: 3rem;
  height: 4px;
  background-color: #98D8C8;
  z-index: 1;
}
.item12__flow .item12__add {
  display: flex;
  justify-content: center;
  gap: 3rem;
}
.item12__flow .item12__add div {
  position: relative;
}
.item12__flow .item12__add div:nth-child(1)::before {
  content: "";
  background-color: #ddd;
  display: inline-block;
  width: 1px;
  height: 100px;
  position: absolute;
  top: -25%;
  left: 50%;
  transform: rotate(45deg);
}
.item12__flow .item12__add div:nth-child(2)::before {
  content: "";
  background-color: #ddd;
  display: inline-block;
  width: 2px;
  height: 100px;
  position: absolute;
  top: -25%;
  left: 50%;
  transform: rotate(320deg);
}
.item12__flow .item12__add div img {
  width: 395px;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.item12__flow .item12__add div p {
  text-align: center;
  margin: 2rem 0 0;
}
.item12__key {
  background-color: #f9f9f9;
  border-radius: 20px;
  padding: 3rem 5rem;
}
.item12__key > p {
  border-bottom: 2px dashed #ddd;
  color: #C69981;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.item12__key ul li {
  font-size: 1.8rem;
  line-height: 2;
}
.item12__key ul li::before {
  content: "";
  background-color: #98D8C8;
  border-radius: 50%;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: .75rem;
  margin-bottom: .45rem;
  vertical-align: middle;
}

/***** お客様からいただいたご意見 *****/
.item13 {
  background-color: #f9f9f9;
}
.item13__box ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.item13__box ul li {
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  width: calc(98% / 2);
  padding: 2rem 4rem;
  align-items: center;
}
.item13__box ul li p {
  font-size: 1.8rem;
  padding-left: 3rem;
}
.item13__box ul li img {
  background-color: #f9f9f9;
  border-radius: 50%;
  width: 125px;
  height: 125px;
  object-fit: cover;
}

/***** その他のサービス *****/
.item14__other ul li {
  margin-bottom: 2rem;
}
.item14__other ul li p {
  font-size: 1.8rem;
  line-height: 2.4;
}
.item14__other ul li p:first-child {
  font-weight: 600;
}
.item14__other ul li p span {
  border: 1px solid #C69981;
  color: #C69981;
  padding: .25rem 2rem;
  margin-right: 2rem;
}


/* ************************************************************************************************
  page-other.php（その他の商品ページ）
************************************************************************************************ */
/***** 余白 *****/
.item15 {
  padding: 12rem 0 10rem;
}

/***** 導入文 *****/
.item15__txt h3 {
  color: #C69981;
  font-weight: 600;
  margin-bottom: 1rem;
}
.item15__txt p {
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
}
.item15__gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem
}
.item15__gallery picture {
  width: calc(100% / 2 - 1rem);
  height: auto;
}
.item15__gallery picture:nth-child(2) {
  margin-top: 4rem;
}
.item15__gallery img {
  border-radius: 20px;
  width: 100%;
}


/* ************************************************************************************************
  page-shop.php（店舗情報ページ）
************************************************************************************************ */
/***** 余白 *****/
.shop01 {
  padding: 12rem 0 10rem;
}
.shop02 {
  padding: 10rem 0;
}

/***** 挨拶文 *****/
.shop01__message {
  text-align: center;
}
.shop01__message h3 {
  color: #C69981;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.shop01__message p {
  font-size: 1.8rem;
  margin-bottom: 5rem;
}
.shop01__message > div img {
  border-radius: 20px;
  width: 100%;
  height: 425px;
  object-fit: cover;
}

/***** 店舗案内 *****/
.shop02__box {
  position: relative;
}
.shop02__box::before {
  content: "";
  width: 95%;
  height: 110%;
  position: absolute;
  left: -25%;
  top: -5%;
  background-color: #f9f9f9;
  z-index: -1;
}
li.shop02__box__list__item {
  margin-bottom: 8rem;
}
li.shop02__box__list__item h4 {
  color: #98D8C8;
  border-bottom: 3px dotted #fff;
  font-weight: 600;
  margin-bottom: 2rem;
  padding-bottom: .5rem;
}
.shop02__box__list__item--inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.shop02__box__list__item--inner div {
  width: calc(100% / 2 - 2rem);
}
.shop02__box__list__item--inner div table {
  width: 100%;
  height: auto;
  font-size: 1.6rem;
  margin-bottom: 5rem;
}
.shop02__box__list__item--inner div table th,
.shop02__box__list__item--inner div table td {
  border-bottom: 1px solid #C69981;
  line-height: 2;
  padding: 2rem;
  vertical-align: middle;
}
.shop02__box__list__item--inner div table td:last-child {
  display: table-cell;
}
.shop02__box__list__item--inner div table td:last-child div {
  display: flex;
  justify-content: flex-start;
  gap: .75rem;
}
.shop02__box__list__item--inner div table td a {
  font-size: 1.6rem;
  text-decoration: underline;
}
.shop02__box__list__item--inner div table td div a {
  width: 40px;
  height: 40px;
  display: block;
  border: 1px solid;
  border-radius: 50%;
  display: grid;
  align-items: center;
  justify-items: center;
  font-size: 2.2rem;
  color: #C69981;
  transition: .3s all;
  text-decoration: none;
}
.shop02__box__list__item--inner div table td div a:hover {
  background-color: #C69981;
  color: #fff;
  transition: .3s all;
}
.shop02__box__list__item--inner div.--shop-img {
  width: 100%;
}
.shop02__box__list__item--inner div.--shop-img img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}


/* ************************************************************************************************
  index.php（最新情報ページ）
************************************************************************************************ */
/***** 共通 *****/
.footer__widget {
  display: flex;
  justify-content: space-around !important;
  flex-wrap: wrap;
}
.footer__widget h5 {
  margin-bottom: 1rem;
}
.footer__widget li {
  line-height: 1.8;
  font-size: 1.4rem;
}
.widget-area {
  text-align: center;
  margin-bottom: 3rem;
  width: 30%;
}
.wp-block-heading {
  color: #C69981;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 4rem;
  position: relative;
}
.wp-block-heading::before {
  content: "";
  width: 1px;
  height: 20px;
  background-color: #ddd;
  display: block;
  position: absolute;
  right: 50%;
  left: 50%;
  top: -60%;
}
.wp-block-latest-posts__featured-image img {
  border: 7px double #C69981;
  width: 150px !important;
  height: 100px !important;
  object-fit: cover;
}
.wp-block-latest-posts__featured-image.alignleft {
  margin-right: 2.5rem !important;
}
.wp-block-latest-posts__post-title {
  display: block;
  text-align: left;
}
.wp-block-latest-posts__post-author,
.wp-block-latest-posts__post-date {
  color: #98D8C8;
  font-weight: 600;
  text-align: left;
}
.wp-block-latest-posts__post-title {
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nocomments {
  display: none;
}

/***** 最新情報一覧（index.php） *****/
.news02 {
  margin: 12rem 0 8rem;
}
.news02__thumbnail {
  display: block;
  overflow: hidden;
}
.news02__thumbnail img {
  width: 100%;
  height: 275px;
  object-fit: cover;
  transition: transform .4s ease;
}
.news02__thumbnail:hover img {
  transform: scale(1.05);
}
.news02 .container {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
}
.news02__post {
  width: 31.5%;
  text-align: center;
  border: 7px double #C69981;
}
.news02__post a {
  display: block;
}
.news02__contents {
  padding: 1rem 2rem 2rem;
}
.news02__blog_info {
  text-align: right;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.news02__ttl {
  margin: 2rem 0 1rem;
}
.news02__ttl a {
  font-size: 1.8rem;
}
.news02__cal {
  color: #98D8C8;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
.news02__cat a {
  background-color: #cdcdcd;
  border: 1px solid #cdcdcd;
  border-radius: 32px;
  padding: .25rem 2rem;
  color: #fff;
  display: inline-block;
  transition: .3s all;
}
.news02__cat a:hover {
  border-color: #cdcdcd;
  background-color: #fff;
  color: #cdcdcd;
  transition: .3s all;
}
.news02__txt {
  text-align: left;
}

/***** 個別投稿ページ（single.php） *****/
.single02 {
  margin: 12rem 0 8rem;
}
.single02__thumbnail {
  margin-bottom: 6rem;
}
.single02__thumbnail img {
  border: 7px double #C69981;
  width: 100%;
  height: auto;
}
.single02__content {
  width: 90%;
  margin: 3rem auto 6rem;
}
.single02__ttl {
  color: #C69981;
  font-size: 2.4rem;
  font-weight: 600;
}
.single02__blog_info {
  text-align: right;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}
.single02__cal {
  color: #98D8C8;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
.single02__cat a {
  background-color: #cdcdcd;
  border: 1px solid #cdcdcd;
  border-radius: 32px;
  padding: .25rem 2rem;
  color: #fff;
  display: inline-block;
  transition: .3s all;
}
.single02__cat a:hover {
  border-color: #cdcdcd;
  background-color: #fff;
  color: #cdcdcd;
  transition: .3s all;
}
.single02__txt {
  font-size: 1.6rem;
  margin: 3rem 0;
}
.single__line {
  display: block;
  margin: 8rem auto;
}


/* ************************************************************************************************
  アニメーション
************************************************************************************************ */
/***** ローディング *****/
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform-origin: center;
          transform-origin: center;
  width: 120px;
  height: 120px;
}
.type5 {
  width:20px;
  height:20px;
  border-radius:50%;
  background-color: #c69981;
  animation:spinner5_1 1.2s infinite linear forwards;
}

  @keyframes spinner5_1 {
    0%{
      opacity:.2;
      transform:translate(-50%, -50%) rotate(0) scale(.5);
    }
    50%{
      opacity:1;
      box-shadow:21px 21px rgba(152,216,200,1), -21px -21px rgba(152,216,200,1), 21px -21px rgba(152,216,200,1), -21px 21px rgba(152,216,200,1);
      transform:translate(-50%, -50%) rotate(180deg) scale(1);
    }
    100%{
      opacity:.2;
      transform:translate(-50%, -50%) rotate(360deg) scale(.5);
    }
  }
.loaded {
  opacity: 0;
  visibility: hidden;
}

/***** ホバーアニメーション *****/
.access__tel:hover,
.single02 a:hover {
  opacity: .8;
  transition: .3s;
}
.news__ttl a:hover {
  transition: .3s;
}
.header-nav__item--second li,
.news02 a,
.single02 a,
.news__ttl a {
  transition: .5s;
}
img {
  transition: .6s;
}

/***** ボタン *****/
.btn1, .btn2,
.nav-previous a,
.nav-next a {
  display: block;
  width: 219px;
  height: 50px;
  border: 1px solid #fff;
  background-color: #98D8C8;
  margin: 0 auto;
  text-align: center;
  line-height: 50px;
  position: relative;
  z-index: 2;
  color: #fff;
  overflow: hidden;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.btn1::before, .btn2::before,
.btn1::after, .btn2::after,
.nav-previous a::before, .nav-next a::before,
.nav-previous a::after, .nav-next a::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.btn1, .btn2,
.btn1::before, .btn2::before,
.btn1::after, .btn2::after,
.nav-previous a, .nav-next a,
.nav-previous a::before, .nav-next a::before,
.nav-previous a::after, .nav-next a::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.btn1:hover,
.btn2:hover,
.nav-previous a:hover,
.nav-next a:hover {
  color: #fff;
}
.btn1::after,
.btn2::after,
.nav-previous a::after,
.nav-next a::after {
  top: -100%;
  width: 100%;
  height: 100%;
}
.btn1:hover::after,
.btn2:hover::after,
.nav-previous a:hover::after,
.nav-next a:hover::after {
  top: 0;
  background-color: #C69981;
}
.nav-below {
  margin-top: 8rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.page-numbers {
  width: 50px;
  height: 50px;
  color: #C69981;
  border: 1px solid #C69981;
  border-radius: 50%;
  display: grid;
  justify-items: center;
  align-items: center;
  font-size: 1.8rem;
  transition: .3s all;
}
.page-numbers:hover {
  background-color: #C69981;
  border-radius: 50%;
  color: #fff;
}
.page-numbers.current {
  width: 50px;
  height: 50px;
  background-color: #C69981;
  border-radius: 50%;
  color: #fff;
  display: grid;
  justify-items: center;
  align-items: center;
  font-size: 1.8rem;
}

/***** ハンバーガーメニュー *****/
#nav-drawer {
  position: relative;
}
.nav-unshown {
  display:none;
}
#nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
}
#nav-open span,
#nav-open span:before,
#nav-open span:after {
  position: absolute;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #5a5a5a;
  display: block;
  content: "";
  cursor: pointer;
}
#nav-open span:before {
  bottom: -8px;
}
#nav-open span:after {
  bottom: -16px;
}
#nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: .3s ease-in-out;
}
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  width: 90%;
  max-width: 330px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  transition: .3s ease-in-out;
  -webkit-transform: translateX(-105%);
  transform: translateX(105%);
}
#header-sp {
  margin: 8rem 0;
  position: relative;
}
.header-sp__list {
  margin-bottom: 4rem;
}
.header-sp__item {
  display: block;
  text-align: center;
  margin-bottom: .8rem;
  font-size: 1.4rem;
  line-height: 2;
}
.header-sp__item span {
  color: #C69981;
  display: block;
  font-size: 1.1rem;
  text-transform: uppercase;
}
#nav-input:checked ~ #nav-close {
  display: block;
  opacity: .5;
}
#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}
#nav-input2:checked ~ #nav-content {
  display: none;
}
.header-sp__item--second {
  text-align: center;
  line-height: 2;
  background-color: #fff;
  width: 70%;
  padding: 2rem;
  margin: 0 auto;
  border-radius: 20px;
}
.header-sp__item--second li {
  border-bottom: 2px dotted #ddd;
  padding: .5rem 0;
}
.header-sp__item--second li:first-child {
  border-top: 2px dotted #ddd;
}
.header-sp__item--second li a {
  display: block;
  font-size: 1.1rem;
}
.header-sp__tel {
  text-align: center;
}
.header-sp__tel--box p {
  margin: .5rem 0;
}
.header-sp__tel--box p span {
  border-radius: 32px;
  color: #fff;
  font-size: 1rem;
  display: inline-block;
  padding: 0 1rem;
  margin-right: 1rem;
}
.header-sp__tel--box p:nth-child(1) span {
  background-color: #98D8C8;
}
.header-sp__tel--box p:nth-child(2) span {
  background-color: #C69981;
}
.header-sp__tel--box p a {
  text-decoration: underline;
}

/***** ページトップに戻るボタン *****/
#page_top {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  background-color: rgba(152, 216, 200, .9);
  border-radius: 50%;
  z-index: 1;
}
#page_top:hover {
  opacity: .8;
}
#page_top a {
  border: 1px solid rgb(255 255 255 / 80%);
  border-radius: 50%;
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  text-decoration: none;
}
#page_top a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 2.5rem;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/***** スライダー *****/
.swiper-container {
  padding-bottom: 5rem !important;
  position: relative;
  margin: 10rem 0;
}
.swiper-button-next, .swiper-button-prev {
  display: none !important;
}
.swiper-pagination {
  z-index: 9 !important;
}
.swiper-pagination-bullet-active {
  background-color: #5D576B !important;
}
.swiper-slide img {
  border-radius: 20px;
  width: 100%;
  max-width: 100%;
  height: 425px;
  object-fit: cover;
}