@charset "UTF-8";
/*--------------- ▽ 変数設定 ▽ ---------------*/

/*--------------- △ 変数設定 △ ---------------*/
/*--------------- ▽ header ▽ ---------------*/
.header-inner {
  box-sizing: border-box;
  padding: 15px 30px;
}
.header h1 span {
  display: block;
}
.header-logo {
  display: block;
  width: 140px;
}
.header-logo:hover {
  opacity: 0.7;
}

/*-------------------
header-nav
--------------------*/
.header-nav {
  background: var(--col-main-light);
  box-sizing: border-box;
}
.header-nav-item {
  width: 20%;
}
.header-nav-item:nth-child(odd) {
  background: var(--col-main-light02);
}
.header-nav-link {
  display: block;
  box-sizing: border-box;
  padding: 15px 10px;
  font-weight: 600;
  text-align: center;
}
.header-nav-link:hover {
  color: var(--col-main);
}

/*-------------------
現在の表示ページ
--------------------*/
.header-nav-link.current {
  color: var(--col-main);
}

.drawer-link.current {
  color: var(--col-main);
}

/*--------------- △ header △ ---------------*/
/*--------------- ▽ footer ▽ ---------------*/
#pagetop {
  position: fixed;
  right: 2.5%;
  bottom: 5%;
  z-index: 100;
}

.footer {
  position: relative;
  background: url(../img/common/pat01.png);
  box-sizing: border-box;
  padding: 60px 0 30px;
}
.footer-logo {
  display: block;
  width: 200px;
  margin: 0 auto 10%;
}
.footer-logo:hover {
  opacity: 0.7;
}
.footer-nav-list {
  gap: 20px 5%;
  flex-wrap: wrap;
}
.footer-nav-item {
  position: relative;
  width: 47.5%;
}
.footer-nav-link {
  position: relative;
  display: block;
}
.footer-nav-link:hover {
  opacity: 0.7;
}
.footer-info {
  margin: 0 auto 80px;
}
.footer #copyright {
  text-align: center;
  padding: 5px 0;
  margin-top: 40px;
}
.footer #copyright small {
  color: var(--col-text);
  font-size: 12px;
}
.footer #copyright small a {
  color: var(--col-text);
}
.footer #copyright small a:hover {
  opacity: 0.7;
}

/*--------------- △ footer △ ---------------*/
/*--------------- ▽ entrance ▽ ---------------*/
.entrance-wrap {
  box-sizing: border-box;
  padding: 0 5% 6%;
}
.entrance-list {
  gap: 30px;
}
.entrance-item {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.entrance-item .item-img {
  aspect-ratio: 1/1;
  width: 40%;
}
.entrance-item .item-ttl {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 auto 25px;
}
.entrance-item .item-ttl img {
  width: 130px;
}
.entrance-item .item-textbox {
  width: 60%;
  background: url(../img/common/pat01.png);
  box-sizing: border-box;
  padding: 15px;
  text-align: center;
}
.entrance-item .item-service {
  gap: 6px 4px;
}
.entrance-item .item-service .item {
  background: var(--col-main);
  color: var(--col-wh);
  display: block;
  box-sizing: border-box;
  padding: 3px 5px;
  border-radius: 5px;
  font-size: 1.3rem;
  line-height: 1.2;
}

/*--------------- △ entrance △ ---------------*/
/*--------------- ▽ top-page ▽ ---------------*/
.top-section {
  padding: 17% 0;
  box-sizing: border-box;
}

/*--------------- ▼ main-visual ▼ ---------------*/
.mv {
  position: relative;
  width: 100%;
  background: url(../img/mv/mv-bg.jpg) no-repeat center center/cover;
  height: 400px;
  box-sizing: border-box;
  width: 93%;
  margin: 0 auto 30px;
  border-radius: 20px;
}
.mv-catch {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 2rem;
  width: 96%;
  height: fit-content;
  font-weight: 700;
  line-height: 1.7;
  background: #ffffff;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.65) 10%, rgb(255, 255, 255) 90%, rgba(255, 255, 255, 0) 100%);
  box-sizing: border-box;
  padding: 8% 0;
}
.mv-catch::before {
  position: absolute;
  content: "";
  border-top: 2px dashed var(--col-wh);
  width: 100%;
  height: 2px;
  bottom: -12px;
  left: 0;
  margin: auto;
  right: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.mv-catch::after {
  position: absolute;
  content: "";
  border-top: 2px dashed var(--col-wh);
  width: 100%;
  height: 2px;
  top: -12px;
  left: 0;
  margin: auto;
  right: 0;
  background-size: contain;
  transition: all 0.3s ease;
}

/*--------------- ▲ main-visual ▲ ---------------*/
/*--------------- ▼ top ▼ ---------------*/
/*--------------------
top-lead
---------------------*/
.top-lead-text {
  position: relative;
}
.top-lead-text::before {
  position: absolute;
  content: "";
  background: url(../img/common/illust-dog01.png) no-repeat;
  width: 60px;
  height: 120px;
  bottom: -100px;
  margin: auto;
  right: -20px;
  background-size: contain;
  transition: all 0.3s ease;
}

/*--------------------
top-service
---------------------*/
.top-service-text {
  margin: 0 auto 10%;
}
.top-service-list {
  gap: 20px 5%;
}
.top-service-item {
  width: 47.5%;
  overflow: hidden;
  border-radius: 20px;
}
.top-service-item .item-figure {
  height: 100%;
}
.top-service-item .item-figure .img {
  aspect-ratio: 3/2;
  width: 100%;
  height: fit-content;
}
.top-service-item .item-figure .ttl {
  display: block;
  background: var(--col-wh);
  box-sizing: border-box;
  padding: 15px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  position: relative;
  height: 100%;
}
.top-service-item .item-figure .ttl::before {
  position: absolute;
  content: "";
  background: var(--col-main);
  width: 30px;
  height: 2px;
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  background-size: contain;
  transition: all 0.3s ease;
}

/*--------------------
top-bnr
---------------------*/
.top-bnr-list {
  gap: 40px;
}
.top-bnr-item {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 0 0 35px;
  border-bottom: 2px dashed var(--col-main);
}
.top-bnr-item .item-link {
  display: block;
  position: relative;
}
.top-bnr-item .item-link::after {
  position: absolute;
  content: "";
  background: url(../img/common/icon-arw.png) no-repeat;
  width: 25px;
  height: 25px;
  bottom: -50px;
  left: 0;
  margin: auto;
  right: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.top-bnr-item .item-link:hover {
  opacity: 0.7;
}
.top-bnr-item .item-link:hover::after {
  right: -10px;
}
.top-bnr-item .item-img {
  aspect-ratio: 520/310;
  width: 100%;
  height: fit-content;
  margin: 0 auto 20px;
    border-radius: 10px;
}
.top-bnr-item .item-ttl {
  text-align: center;
  font-weight: 600;
  font-size: 2.2rem;
  margin: 0 auto 20px;
}

/*--------------------
top-info
---------------------*/
.top-info {
  width: 90%;
  margin: 0 auto;
  border-radius: 20px;
}

/*--------------------
top-news
---------------------*/
.top-news-wrap {
  display: block;
}
.top-news-btn {
  margin: 10% auto 0;
}

/*--------------------

---------------------*/
/*--------------- ▲ top ▲ ---------------*/
/*--------------- ▽ sub-page ▽ ---------------*/
.sub-section {
  padding: 17% 0;
  box-sizing: border-box;
  position: relative;
}

/*--------------- ▼ sub-visual ▼ ---------------*/
.sv {
  position: relative;
  width: 90%;
  height: 180px;
  margin: 0 auto 30px;
  border-radius: 20px;
}
.sv-ttl {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
  width: fit-content;
  background: url(../img/common/pat02.png);
  color: var(--col-wh);
  box-sizing: border-box;
  padding: 14px;
  border-radius: 20px;
}

/*---------------------
各ページの画像設定
-----------------------*/
.sv-junk-removal {
  background: url(../img/sv/sv-junk-removal-bg.jpg) no-repeat center center/cover;
}

.sv-reform {
  background: url(../img/sv/sv-reform-bg.jpg) no-repeat center center/cover;
}

.sv-massage {
  background: url(../img/sv/sv-massage-bg.jpg) no-repeat center center/cover;
}

.sv-news {
  background: url(../img/sv/sv-news-bg.jpg) no-repeat center center/cover;
}

.sv-pub {
  background: url(../img/sv/sv-pub-bg.jpg) no-repeat center center/cover;
}


.sv-contact {
  background: url(../img/sv/sv-contact-bg.jpg) no-repeat center center/cover;
}

.sv-complete {
  background: url(../img/sv/sv-complete-bg.jpg) no-repeat center center/cover;
}

.sv-privacy {
  background: url(../img/sv/sv-privacy-bg.jpg) no-repeat center center/cover;
}

.sv-site {
  background: url(../img/sv/sv-site-bg.jpg) no-repeat center center/cover;
}

.sv-notfound {
  background: url(../img/sv/sv-notfound-bg.jpg) no-repeat center center/cover;
}

/*--------------- ▼ ぱんくず ▼ ---------------*/
#bread-clumb {
  width: 100%;
  position: relative;
  margin: 0 auto;
  padding: 2% 0;
  z-index: 100;
  line-height: 1;
}
#bread-clumb li {
  position: relative;
  color: var(--col-text);
  font-size: 14px;
  float: left;
  margin-right: 20px;
}
#bread-clumb li:after {
  content: ">";
  position: absolute;
  display: block;
  right: -15px;
  top: 0;
}
#bread-clumb li:last-child {
  margin-right: 0;
}
#bread-clumb li:last-child:after {
  display: none;
}
#bread-clumb li a {
  color: var(--col-text);
  border-bottom: 1px solid;
  display: block;
}
#bread-clumb li a:hover {
  opacity: 0.7;
}

/*--------------- ▲ ぱんくず ▲ ---------------*/
/*--------------- ▼ 共通セクション ▼ ---------------*/
/*-----------------------
com-service
-------------------------*/
.com-service-item {
  position: relative;
  margin: 0 auto 10%;
}
.com-service-item:last-child {
  margin: 0 auto;
}
.com-service-item .item-wrap {
  display: block;
}
.com-service-item .item-img {
  aspect-ratio: 520/340;
  width: 100%;
  height: fit-content;
  height: fit-content;
  border-radius: 10px;
  margin: 0 auto 6%;
}

/*-----------------------
com-advantages
-------------------------*/
.com-advantages-list {
  counter-reset: number 0;
}
.com-advantages-item {
  margin: 0 auto 12%;
  position: relative;
}
.com-advantages-item:last-child {
  margin: 0 auto;
}
.com-advantages-item .item-wrap {
  position: relative;
  flex-wrap: wrap;
}
.com-advantages-item .item-img {
  aspect-ratio: 520/340;
  width: 100%;
  height: fit-content;
  border-radius: 20px;
  order: 2;
}
.com-advantages-item .item-text-wrap {
  position: relative;
  order: 1;
  width: 100%;
  margin: 0 auto 7%;
}

/*-----------------------
com-area
-------------------------*/
.com-area-container {
  box-sizing: border-box;
  margin: 0 auto 15%;
  display: block;
}
.com-area-container .container-text-wrap {
  box-sizing: border-box;
  position: relative;
}
.com-area-container .container-text-wrap::before {
  position: absolute;
  content: "";
  background: url(../img/common/illust-dog02.png) no-repeat;
  width: 70px;
  height: 70px;
  top: -20px;
  left: -10px;
  margin: auto;
  background-size: contain;
  transform: scale(-1, 1);
  transition: all 0.3s ease;
}
.com-area-container .container-img {
  width: 70%;
  margin: 0 auto;
}
.com-area-bnr {
  position: relative;
  margin: 0 auto;
  background: url(../img/common/pat01.png);
  box-sizing: border-box;
  padding: 8% 4% 70px;
  text-align: center;
  border-radius: 20px;
}
.com-area-bnr::before {
  position: absolute;
  content: "";
  background: url(../img/common/illust-dog01.png) no-repeat;
  width: 50px;
  height: 100px;
  bottom: -30px;
  margin: auto;
  right: -10px;
  background-size: contain;
  transition: all 0.3s ease;
}
.com-area-bnr::after {
  position: absolute;
  content: "";
  background: url(../img/common/illust-track.png) no-repeat;
  width: 100px;
  height: 70px;
  bottom: -30px;
  left: -20px;
  margin: auto;
  background-size: contain;
  transition: all 0.3s ease;
}
.com-area-bnr .bnr-ttl {
  margin: 0 auto 30px;
}
.com-area-bnr .bnr-btn {
  margin: 0 auto;
}

/*-----------------------
com-massage-bnr
-------------------------*/
.com-massage-bnr {
  padding: 0 0 100px;
}
.com-massage-bnr .bnr {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  display: block;
}
.com-massage-bnr .bnr-img {
  aspect-ratio: 540/300;
  height: fit-content;
  width: 100%;
}
.com-massage-bnr .bnr-textbox {
  background: url(../img/common/pat01.png);
  position: relative;
  box-sizing: border-box;
  padding: 30px;
}
.com-massage-bnr .bnr-ttl {
  margin: 0 auto 20px;
  text-align: center;
  width: 200px;
}

/*-----------------------
com-page-links
-------------------------*/
.com-page-links {
  gap: 20px 5%;
  margin: 0 auto 60px;
}
.com-page-links-item {
  width: 47.5%;
  font-size: 1.4rem;
}
.com-page-links-item .item-btn {
  height: 100%;
}

/*--------------- ▲ 共通セクション ▲ ---------------*/
/*--------------- ▼ sub02_ ▼ ---------------*/
/*-----------------------

-------------------------*/
/*--------------- ▲ sub02_ ▲ ---------------*/
/*--------------- ▼ sub03_reform ▼ ---------------*/
/*-----------------------

-------------------------*/
/*--------------- ▲ sub03_reform ▲ ---------------*/
/*--------------- ▼ sub04_massage ▼ ---------------*/
/*-----------------------
massage-about
-------------------------*/
.massage-about-img {
  aspect-ratio: 520/340;
  width: 100%;
  height: fit-content;
  margin: 0 auto 7%;
}
.massage-about-wrap {
  display: block;
  margin: 0 auto 10%;
}
.massage-about-info {
  gap: 40px;
}
.massage-about-info-container {
  position: relative;
  box-sizing: border-box;
  padding: 30px;
  background: var(--col-wh);
  width: 520px;
  border-radius: 10px;
}

/*-----------------------
massage-menu
-------------------------*/
.massage-menu-sec {
  margin: 0 auto 60px;
}
.massage-menu-sec:last-of-type {
  margin: 0 auto;
}

/*-----------------------
massage-info
-------------------------*/
.massage-info-container {
  margin: 0 auto 80px;
  width: 90%;
  background: var(--col-wh);
  border-radius: 20px;
  box-sizing: border-box;
  padding: 60px 0;
}
.massage-info-container:last-of-type {
  margin: 0 auto;
}
.massage-info-container .container-wrap {
  display: block;
}
.massage-info-container .container-table {
  margin: 0 auto 10%;
}
.massage-info-container .container-ttl {
  font-size: 2rem;
}

/*--------------- ▲ sub04_massage ▲ ---------------*/
/*--------------- ▼ sub05_pub ▼ ---------------*/
/*-----------------------
pub-lead
-------------------------*/
.pub-lead-wrap {
  display: block;
  margin: 0 auto 10%;
}
.pub-lead-img {
  aspect-ratio: 520/340;
  width: 100%;
  height: fit-content;
  border-radius: 20px;
  margin: 0 auto 7%;
}

/*-----------------------
pub-menu
-------------------------*/
.pub-menu-sec {
  margin: 0 auto 17%;
}
.pub-menu-sec:last-of-type {
  margin: 0 auto;
}
.pub-menu-sec .sec-main-list {
  gap: 30px 5%;
  margin: 0 auto 40px;
}
.pub-menu-sec .sec-main-item {
  position: relative;
  width: 47.5%;
}
.pub-menu-sec .sec-main-item .item-figure .img {
  aspect-ratio: 340/240;
  width: 100%;
  height: fit-content;
  border-radius: 10px;
  margin: 0 auto 20px;
}
.pub-menu-sec .sec-main-item .item-figure figcaption .ttl {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}
.pub-menu-sec .sec-main-item .item-figure figcaption .price {
  text-align: right;
  font-weight: 700;
  display: block;
  color: var(--col-main);
  font-size: 1.5rem;
}
.pub-menu-sec .sec-sub-list {
  flex-wrap: wrap;
}
.pub-menu-sec .sec-sub-item {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 20px 0;
  border-bottom: 1px dotted;
}
.pub-menu-sec .sec-sub-item:nth-child(1) {
  border-top: 1px dotted;
}
.pub-menu-sec .sec-sub-item .ttl {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}
.pub-menu-sec .sec-sub-item .price {
  text-align: right;
  font-weight: 700;
  display: block;
  font-size: 1.5rem;
  color: var(--col-main);
}

.pub-contact .inbox {
  position: relative;
}
.pub-contact .inbox::before {
  position: absolute;
  content: "";
  background: url(../img/common/illust-dog02.png) no-repeat;
  width: 70px;
  height: 60px;
  bottom: -60px;
  margin: auto;
  right: -15px;
  background-size: contain;
  transition: all 0.3s ease;
}
.pub-contact-btn {
  width: 80%;
  margin: 0 auto;
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  border-radius: 30px;
}

/*--------------- ▲ sub05_pub ▲ ---------------*/
/*--------------- ▼ お知らせ ▼ ---------------*/
.post-wrp .tag-change {
  text-align: center;
  flex-wrap: nowrap;
  overflow-x: scroll;
  margin-bottom: 30px;
  -webkit-justify-content: start;
  justify-content: start;
}
.post-wrp .tag-change li {
  flex: 0 0 30%;
  margin: 2% 1% 0 0;
}
.post-wrp .tag-change li a {
  border: solid 1px var(--col-main);
  padding: 5px 0;
  display: block;
  color: var(--col-main);
  background: #fff;
  font-size: 3vw;
}
.post-wrp .tag-change .current a {
  background: var(--col-main);
}
.post-wrp .tag-change .current a span {
  color: #fff;
}

/*タグ一覧
-------------------------------*/
.tag-select-box {
  position: relative;
  width: 40%;
  margin: 0 0 20px auto;
  max-width: 230px;
}
.tag-select-box:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 0;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--col-text);
  pointer-events: none;
}
.tag-select-box #tag-select {
  width: 100%;
  padding: 5% 20% 5% 5%;
  box-sizing: border-box;
  font-size: 1.2rem;
  margin-left: auto;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  border: none;
  border-bottom: 2px solid #333;
  cursor: pointer;
  border-radius: 0;
  background: none;
  color: #333;
  font-weight: 700;
  -webkit-appearance: none;
  appearance: none;
}
.tag-select-box #tag-select option {
  padding: 10px;
  box-sizing: border-box;
  cursor: pointer;
  box-sizing: border-box;
}

.post-wrp .tag-change {
  margin-bottom: 50px;
}
.post-wrp .tag-change li {
  text-align: center;
  margin: 10px 10px 0 0;
  min-width: 190px;
  display: inline-block;
  vertical-align: middle;
}
.post-wrp .tag-change li a {
  border: solid 1px var(--col-main);
  color: var(--col-main);
  background: #fff;
  padding: 10px 15px;
  display: block;
}
.post-wrp .tag-change .current a {
  background: var(--col-main);
}
.post-wrp .tag-change .current a span {
  color: #fff;
}

/*詳細
-------------------------------*/
.s-time-tag {
  margin-bottom: 5%;
}

.sb-post-body {
  margin-bottom: 7%;
  padding-bottom: 7%;
  border-bottom: 1px solid;
  line-height: 2;
}

.s-post-taglist {
  margin-bottom: 30px;
}

/*--------------- ▲ お知らせ ▲ ---------------*//*# sourceMappingURL=style_sp.css.map */