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

/*--------------- △ 変数設定 △ ---------------*/
/*--------------- ▽ header ▽ ---------------*/
.header-inner {
  box-sizing: border-box;
  padding: 15px 30px;
}
.header h1 span {
  display: block;
}
.header-logo {
  display: block;
  width: fit-content;
}
.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: fit-content;
  margin: 0 auto 50px;
}
.footer-logo:hover {
  opacity: 0.7;
}
.footer-nav{
  gap: 20px;
}
.footer-nav-list {
  gap: 20px;
}
.footer-nav-item {
  position: relative;
}
.footer-nav-link {
  position: relative;
  display: block;
  font-weight: 600;
}
.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 50px 50px;
}
.entrance-list {
  gap: 40px;
}
.entrance-item {
  width: calc((100% - 50px) / 2);
  border-radius: 20px;
  overflow: hidden;
}
.entrance-item .item-img {
  aspect-ratio: 445/380;
  width: 50%;
  height: clamp(300px,20vw,380px);
}
.entrance-item .item-ttl {
  font-size: 4rem;
  font-weight: 600;
  margin: 0 auto 25px;
}
.entrance-item .item-textbox {
  width: 50%;
  background: url(../img/common/pat01.png);
  box-sizing: border-box;
  padding: 15px;
  text-align: center;
}
.entrance-item .item-service {
  gap: 8px;
}
.entrance-item .item-service .item {
  background: var(--col-main);
  color: var(--col-wh);
  display: block;
  box-sizing: border-box;
  padding: 5px 8px;
  border-radius: 5px;
  font-size: 1.8rem;
  line-height: 1.2;
}

/*--------------- △ entrance △ ---------------*/
/*--------------- ▽ top-page ▽ ---------------*/
.top-section {
  padding: 100px 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: clamp(650px, 60vw, 800px);
  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: 4.8rem;
  width: fit-content;
  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) 20%, rgb(255, 255, 255) 80%, rgba(255, 255, 255, 0) 100%);
  width: 870px;
  box-sizing: border-box;
  padding: 45px 0;
}
.mv-catch::before {
  position: absolute;
  content: "";
  border-top: 4px dashed var(--col-wh);
  width: 100%;
  height: 3px;
  bottom: -12px;
  left: 0;
  margin: auto;
  right: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.mv-catch::after {
  position: absolute;
  content: "";
  border-top: 4px dashed var(--col-wh);
  width: 100%;
  height: 3px;
  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: 127px;
  height: 264px;
  bottom: -80px;
  margin: auto;
  right: -50px;
  background-size: contain;
  transition: all 0.3s ease;
}

/*--------------------
top-service
---------------------*/
.top-service-text {
  margin: 0 auto 50px;
}
.top-service-list {
  gap: 24px;
}
.top-service-item {
  width: 252px;
  overflow: hidden;
  border-radius: 20px;
}
.top-service-item .item-figure .img {
  aspect-ratio: 252/210;
  width: 252px;
  height: 210px;
}
.top-service-item .item-figure .ttl {
  display: block;
  background: var(--col-wh);
  box-sizing: border-box;
  padding: 15px;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  position: relative;
}
.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: 520px;
  position: relative;
  box-sizing: border-box;
  padding: 0 0 60px;
  border-bottom: 3px 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: 50px;
  height: 50px;
  bottom: -85px;
  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: 520px;
  height: 310px;
  margin: 0 auto 20px;
  border-radius: 10px;
}
.top-bnr-item .item-ttl {
  text-align: center;
  font-weight: 600;
  font-size: 3.6rem;
  margin: 0 auto 20px;
}

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

.top-info-table{
  margin: 0 auto 50px;
}

/*--------------------
top-news
---------------------*/
.top-news-right {
  width: 710px;
}
.top-news-left {
  width: 320px;
}

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

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

/*--------------- ▼ sub-visual ▼ ---------------*/
.sv {
  position: relative;
  width: 94%;
  height: 520px;
  margin: 0 auto 30px;
  border-radius: 20px;
}
.sv-ttl {
  font-size: 6rem;
  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: 12px 20px;
  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-pub {
  background: url(../img/sv/sv-pub-bg.jpg) no-repeat center center/cover;
}

.sv-news {
  background: url(../img/sv/sv-news-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: 10px 0;
  z-index: 1;
  min-width: 1280px;
}
#bread-clumb ul {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}
#bread-clumb li {
  position: relative;
  color: var(--col-main);
  font-size: 14px;
  float: left;
  margin-right: 20px;
}
#bread-clumb li:after {
  content: ">";
  position: absolute;
  display: block;
  right: -15px;
  color: var(--col-text);
  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);
  display: block;
}
#bread-clumb li a:hover {
  opacity: 0.7;
}

/*--------------- ▲ ぱんくず ▲ ---------------*/
/*--------------- ▼ 共通セクション ▼ ---------------*/
/*-----------------------
com-service
-------------------------*/
.com-service-item {
  position: relative;
  margin: 0 auto 50px;
}
.com-service-item:last-child {
  margin: 0 auto;
}
.com-service-item .item-img {
  aspect-ratio: 520/340;
  width: 520px;
  height: 340px;
  border-radius: 10px;
}
.com-service-item .item-text-wrap {
  width: 520px;
}
.com-service-item:nth-child(even) .item-img {
  order: 2;
}

/*-----------------------
com-advantages
-------------------------*/
.com-advantages-list {
  counter-reset: number 0;
}
.com-advantages-item {
  margin: 0 auto 50px;
  position: relative;
}
.com-advantages-item:last-child {
  margin: 0 auto;
}
.com-advantages-item .item-wrap {
  position: relative;
}
.com-advantages-item .item-img {
  aspect-ratio: 520/340;
  width: 520px;
  height: 340px;
  border-radius: 20px;
}
.com-advantages-item .item-text-wrap {
  width: 526px;
  position: relative;
  box-sizing: border-box;
  padding: 30px 0 0 0;
}

/*-----------------------
com-area
-------------------------*/
.com-area {
  padding: 100px 0 120px;
}
.com-area-container {
  box-sizing: border-box;
  padding: 0 100px;
  margin: 0 auto 100px;
}
.com-area-container .container-text-wrap {
  box-sizing: border-box;
  padding: 50px 0 0;
  position: relative;
}
.com-area-container .container-text-wrap::before {
  position: absolute;
  content: "";
  background: url(../img/common/illust-dog02.png) no-repeat;
  width: 145px;
  height: 147px;
  bottom: 70px;
  left: -100px;
  margin: auto;
  background-size: contain;
  transform: scale(-1, 1);
  transition: all 0.3s ease;
}
.com-area-bnr {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  background: url(../img/common/pat01.png);
  box-sizing: border-box;
  padding: 60px;
  text-align: center;
  border-radius: 20px;
}
.com-area-bnr::before {
  position: absolute;
  content: "";
  background: url(../img/common/illust-dog01.png) no-repeat;
  width: 101px;
  height: 209px;
  bottom: -20px;
  margin: auto;
  right: -40px;
  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: 275px;
  height: 175px;
  bottom: -30px;
  left: -100px;
  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;
}
.com-massage-bnr .bnr-img {
  aspect-ratio: 540/300;
  width: 540px;
  height: 300px;
}
.com-massage-bnr .bnr-textbox {
  background: url(../img/common/pat01.png);
  position: relative;
  width: 540px;
  box-sizing: border-box;
  padding: 30px;
}
.com-massage-bnr .bnr-ttl {
  margin: 0 auto 20px;
  text-align: center;
}

/*-----------------------
com-page-links
-------------------------*/
.com-page-links {
  gap: 40px;
  margin: 0 auto 60px;
}

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

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

-------------------------*/
/*--------------- ▲ sub03_reform ▲ ---------------*/
/*--------------- ▼ sub04_massage ▼ ---------------*/
/*-----------------------
massage-about
-------------------------*/
.massage-about-img {
  aspect-ratio: 520/340;
  width: 520px;
  height: 340px;
}
.massage-about-text-wrap {
  width: 512px;
}
.massage-about-wrap {
  margin: 0 auto 50px;
}
.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: 94%;
  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-map{
  width: 520px;
}
.massage-info-container .container-table{
  width: 520px;
}
/*--------------- ▲ sub04_massage ▲ ---------------*/
/*--------------- ▼ sub05_pub ▼ ---------------*/
/*-----------------------
pub-lead
-------------------------*/
.pub-lead-wrap {
  margin: 0 auto 50px;
}
.pub-lead-img {
  aspect-ratio: 520/340;
  width: 520px;
  height: 340px;
  border-radius: 20px;
}
.pub-lead-text {
  width: 512px;
}

/*-----------------------
pub-menu
-------------------------*/
.pub-menu-sec {
  margin: 0 auto 100px;
}
.pub-menu-sec:last-of-type {
  margin: 0 auto;
}
.pub-menu-sec .sec-main-list {
  gap: 30px;
  margin: 0 auto 40px;
}
.pub-menu-sec .sec-main-item {
  position: relative;
  width: 340px;
}
.pub-menu-sec .sec-main-item .item-figure .img {
  aspect-ratio: 340/240;
  width: 340px;
  height: 240px;
  border-radius: 10px;
  margin: 0 auto 20px;
}
.pub-menu-sec .sec-main-item .item-figure figcaption .ttl {
  font-size: 1.9rem;
  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);
}
.pub-menu-sec .sec-sub-list {
  gap: 30px;
}
.pub-menu-sec .sec-sub-item {
  width: calc((100% - 30px) / 2);
  position: relative;
  box-sizing: border-box;
  padding: 20px 0;
  border-bottom: 1px dotted;
}
.pub-menu-sec .sec-sub-item:nth-child(1), .pub-menu-sec .sec-sub-item:nth-child(2) {
  border-top: 1px dotted;
}
.pub-menu-sec .sec-sub-item .ttl {
  font-size: 1.9rem;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}
.pub-menu-sec .sec-sub-item .price {
  text-align: right;
  font-weight: 700;
  display: block;
  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: 157px;
  height: 160px;
  bottom: -100px;
  margin: auto;
  right: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.pub-contact-btn {
  width: 520px;
  height: 130px;
  margin: 0 auto;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  border-radius: 30px;
}

.pub-info{
  width: 90%;
  margin: 0 auto;
  background: var(--col-wh);
  border-radius: 20px;
}
.pub-info-table{
  margin: 0 auto 50px;
}
/*--------------- ▲ sub05_pub ▲ ---------------*/
/*--------------- ▼ お知らせ ▼ ---------------*/
.post-wrp .tag-change {
  margin-bottom: 50px;
}
.post-wrp .tag-change li {
  text-align: center;
  width: 19%;
  margin: 2% 1% 0 0;
}
.post-wrp .tag-change li a {
  border: solid 1px --col-main;
  padding: 10px 0;
  display: block;
  color: var(--col-main);
  background: var(--col-base);
}
.post-wrp .tag-change .current a {
  background: var(--col-main);
}
.post-wrp .tag-change .current a span {
  color: var(--col-base);
}

/*タグ一覧
-------------------------------*/
.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: 2;
  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 var(--col-text);
  cursor: pointer;
  border-radius: 0;
  background: none;
  color: var(--col-text);
  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: var(--col-base);
  padding: 10px 15px;
  display: block;
}
.post-wrp .tag-change .current a {
  background: var(--col-main);
}
.post-wrp .tag-change .current a span {
  color: var(--col-base);
}

/*詳細
-------------------------------*/
.s-post .news-tag {
  margin-bottom: 20px;
}

.s-post time {
  margin-bottom: 10px;
}

.s-time-tag {
  margin-bottom: 20px;
}

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

/*--------------- ▲ お知らせ ▲ ---------------*/