@charset "UTF-8";
/* SCSSの読み込み */
@import url(all.css);
/*===============================================
  切り替え用
===============================================*/
.pc-none {
  display: none !important;
}

a[href^="tel:"] {
  pointer-events: none;
}

/*===============================================
  ページネーション
===============================================*/
/*===============================================
  詳細ページ前後
===============================================*/
/*===============================================
  wrapper
===============================================*/
#wrapper {
  min-width: 1200px;
}

/*===============================================
  header
===============================================*/
#header .header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1080px;
  padding-block: 2rem;
}
/*===============================================
  footer
===============================================*/
#footer {
  padding-block: 8rem;
}
#footer .footer__inner {
  display: grid;
  grid-template-rows: 6rem 1fr;
  grid-auto-flow: column;
  gap: 4rem 6rem;
  justify-content: space-between;
  align-items: flex-start;
  width: 1080px;
}
#footer .footer__logo {
  width: 300px;
}
#footer .footer__items {
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-base);
  row-gap: 2rem;
}
#footer .footer__items .min {
  line-height: var(--line-height-xs);
}

/*フッターナビ
-----------------------------*/
.footer-nav {
  grid-row: span 2;
}
.footer-nav__list {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  grid-auto-flow: column;
  gap: 4.4rem 8rem;
}
.footer-nav__item {
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-base);
  margin-block: calc((1em - 1lh) / 2);
}

/*コピーライト
-----------------------------*/
/*===============================================
  fixed固定
===============================================*/
/*ページトップ
-----------------------------*/
#pagetop {
  bottom: 10px;
  right: 10px;
}

/*サイドボタン
-----------------------------*/
#side {
  bottom: 10px;
  right: 10px;
}

/*===============================================
  visual
===============================================*/
/*共通
-----------------------------*/
/*メインビジュアル
-----------------------------*/
.visual__main {
  height: clamp(442px, 34.53125vw, 663px);
}
.visual__main::after {
  width: 6.9rem;
  aspect-ratio: 69/25;
  top: calc(100% + 1rem);
}
.visual__catch--main {
  width: clamp(924px, 72.1875vw, 1386px);
}

/*サブビジュアル
-----------------------------*/
.visual__sub {
  height: clamp(240px, 18.2291666667vw, 350px);
}
.visual__catch--sub {
  width: 56.25%;
  max-width: 1080px;
  font-size: clamp(3.2rem, 2.5vw, 4.8rem);
  line-height: 1.25;
  padding: clamp(30px, 2.34375vw, 45px) clamp(20px, 1.5625vw, 30px);
  border-radius: clamp(20px, 1.5625vw, 30px);
}

/*===============================================
  グローバルナビ
===============================================*/
.gnav {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  letter-spacing: 0;
  line-height: 1;
}
.gnav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 1rem;
}
.gnav__item {
  border-left: solid 0.3rem var(--color-border);
}
.gnav__item:last-of-type {
  border-right: solid 0.3rem var(--color-border);
}
.gnav__link {
  display: block;
  line-height: var(--line-height-base);
  padding-inline: 5.7rem;
  transition: all 0.3s ease-out;
}
.gnav__link:hover {
  background: rgba(230, 230, 230, 0.5);
}
.gnav__link.current {
  color: var(--color-orange);
  -webkit-text-stroke: 0.4rem var(--color-white);
  paint-order: stroke;
}

/*===============================================
  main#container
===============================================*/
#container:not(:has(.com-contact)) .section:first-of-type {
  background-size: min(963px, 50.15625%), max(1920px, 100%);
}

/*===============================================
  パンくずリスト
===============================================*/
.breadcrumb {
  height: 60px;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
}
.breadcrumb__list {
  width: 1080px;
}
.breadcrumb__item::after {
  margin-inline: 5rem;
}

/*===============================================
  main共通
===============================================*/
.section {
  padding-block: 10rem;
}

.inbox {
  width: 1080px;
}

/*電話番号
-----------------------------*/
/*ボタン
-----------------------------*/
.com-btn--line {
  outline-width: 0.5rem;
  outline-offset: -0.5rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.com-btn--line::before {
  width: 3.5rem;
}
.com-btn--mail > span {
  -webkit-text-stroke: 0.6rem var(--color-white);
  paint-order: stroke;
}
.com-btn--mail::before {
  font-size: 3.2rem;
}

/*テーブル
-----------------------------*/
.com-table {
  line-height: 1.25;
}
.com-table tr th {
  padding: 2.3rem 2rem 2.3rem 3rem;
}
.com-table tr td {
  padding: 2.3rem 3rem 2.3rem 2rem;
}
.com-table tr:first-child th {
  border-top-left-radius: 0.8rem;
}
.com-table tr:first-child td {
  border-top-right-radius: 0.8rem;
}
.com-table tr:last-child th {
  border-bottom-left-radius: 0.8rem;
}
.com-table tr:last-child td {
  border-bottom-right-radius: 0.8rem;
}

/*テキストボックス
-----------------------------*/
.com-text p {
  margin-right: calc(var(--letter-spacing-base) * -1);
}

/*お知らせ
-----------------------------*/
.com-post__link {
  border-right-width: 1rem;
  padding-right: 6rem !important;
}
.com-post__link::after {
  right: 2rem;
}
.com-post__date {
  font-size: var(--font-size-h6);
  line-height: 1.11112;
}
.com-post__image {
  width: 16rem;
}

/*===============================================
  タイトル
===============================================*/
/*大タイトル
-----------------------------*/
/*中タイトル
-----------------------------*/
/*小タイトル
-----------------------------*/
.com-title03 {
  font-size: var(--font-size-h4);
}
.com-title03 > span {
  line-height: var(--line-height-h4);
}
.com-title03--center {
  padding-inline: 9rem;
}

/*===============================================
  共通セクション
===============================================*/
/*お問い合わせ
-----------------------------*/
.com-contact {
  padding-block: 8rem;
}
.com-contact__box {
  padding: 5rem 7rem;
}
.com-contact__inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 26rem;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  margin-top: 3rem;
}
.com-contact__info {
  width: 21rem;
  row-gap: 2.4rem;
  padding-bottom: 2.5rem;
}
.com-contact__info::before {
  border-radius: 3rem;
}
.com-contact__info-wrap {
  padding-right: 19.4rem;
}
.com-contact__info-wrap::before {
  width: 31.8rem;
  right: 0;
  top: -0.3rem;
}
.com-contact__holiday {
  font-size: 2.2rem;
}
.com-contact__time {
  row-gap: 1.5rem;
}
.com-contact__time dd {
  font-size: 2.8rem;
}
.com-contact__time .min {
  max-width: 13em;
  margin-top: calc(0.5rem + (1em - 1lh) / 2);
}
.com-contact__items {
  width: 42rem;
}
.com-contact__items > * {
  margin-bottom: 2rem;
}
.com-contact__items > *:last-child {
  margin-bottom: 0;
}
.com-contact__btn {
  height: 8rem;
  font-size: 1.8rem;
}
.com-contact__tel {
  width: 100%;
  height: 10rem;
  border-radius: 2rem;
  padding-inline: 4.2rem;
  outline-width: 0.5rem;
  outline-offset: -0.5rem;
}

/*こんなお悩みありませんか？
-----------------------------*/
.com-trouble {
  background-size: min(963px, 50.15625%), max(1920px, 100%);
}
.com-trouble__list {
  min-height: 32.5rem;
  padding-right: 540px;
}
.com-trouble__list::after {
  width: 46rem;
  right: 5rem;
  bottom: 0;
}
.com-trouble__item {
  margin-bottom: 3.5rem;
}
.com-trouble:has(+ .com-message)::after {
  width: 6.9rem;
  aspect-ratio: 69/25;
  top: calc(100% + 1rem);
}

/*そのお悩み、
みよし市不用品回収相談窓口にお任せください！
-----------------------------*/
.com-message {
  background-size: min(1096px, 57.084%), min(475px, 24.7396%);
}
.com-message__title {
  margin-bottom: 4.5rem;
}
.com-message__title > span::before {
  width: calc(100% + 9.2rem);
}
.com-message__inner {
  display: grid;
  grid-template-columns: 54rem 1fr;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}
.com-message__text {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding-right: 4rem;
}

/*料金表
-----------------------------*/
.com-fee {
  background-size: min(963px, 50.15625%), auto;
}
.com-fee__text {
  text-align: center;
  line-height: 1.5625;
}
.com-fee__table {
  padding: 3rem 3rem 2.5rem;
}
.com-fee__table table tr td:nth-of-type(1) {
  padding-right: 1rem;
}
.com-fee__table table tr td:nth-of-type(2) {
  padding-left: 1rem;
}
.com-fee__table table tr:has(td:nth-of-type(3)) td {
  width: 30%;
  padding-inline: 0 !important;
}
.com-fee__table table tr:has(td:nth-of-type(3)) td:nth-of-type(2) {
  width: 40%;
  padding-inline: 6rem !important;
}

/*依頼の流れ
-----------------------------*/
.com-flow__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 6rem;
}
.com-flow__list::after {
  width: 33.9rem;
  aspect-ratio: 339/329;
  right: 0;
  bottom: 0;
}
.com-flow__list:has(li:last-of-type:nth-of-type(3n))::after {
  display: none;
}
.com-flow__item {
  min-height: 36.3rem;
}
.com-flow__item::after {
  width: 1.6rem;
  aspect-ratio: 16/42;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% + 2.2rem);
}
.com-flow__item:nth-of-type(3n)::after {
  display: none;
}
.com-flow__body {
  line-height: 1.5625;
}
.com-flow__body p {
  display: inline;
}

/*===============================================
  トップページ
===============================================*/
/*不用品回収・遺品整理・解体までトータルサポート！
-----------------------------*/
.top-about {
  background-size: min(963px, 50.15625%), max(1920px, 100%);
}
.top-about::before {
  width: 140.4rem;
  height: 29.7rem;
  top: 11.5rem;
}
.top-about__title {
  margin-bottom: 5rem;
}
.top-about__title > span::before {
  width: calc(100% + 9.2rem);
}
.top-about__inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row-reverse;
}
.top-about__inner > * {
  width: 50%;
}
.top-about__text {
  padding-block: calc(3rem - (1lh - 1em) / 2);
  padding-left: 4rem;
}
.top-about__text::before {
  width: calc(100% + 4rem);
  border-radius: 0.8rem;
}
.top-about__image::after {
  height: 22rem;
}

/*あなたにおすすめのページへご案内！
-----------------------------*/
.top-chart {
  padding-block-start: clamp(160px, 12.5vw, 240px);
}
.top-chart::before {
  height: calc(100% - (12rem + clamp(160px, 12.5vw, 240px)));
  background-size: min(1096px, 57.084%), min(475px, 24.7396%);
}
.top-chart__images {
  width: min(100% + 6rem, 103.125%);
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.top-chart__images::after {
  height: clamp(170px, 13.2291666667vw, 254px);
  top: 0;
}
.top-chart__image {
  height: calc(12rem + clamp(160px, 12.5vw, 240px));
}
.top-chart__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-chart__title {
  height: 12rem;
  padding-top: 2.5rem;
  border-radius: 3rem 3rem 0 0;
  background: var(--color-white);
  margin-bottom: 0;
}
.top-chart__flow {
  padding: 3rem 9rem 6rem;
  border-radius: 0 0 3rem 3rem;
  background: var(--color-white);
}
.top-chart__question {
  min-height: 7rem;
  outline-width: 0.5rem;
  outline-offset: -0.5rem;
  padding: 1rem 2rem;
}
.top-chart__options {
  display: grid;
  grid-template-columns: repeat(2, 42rem);
  justify-content: space-between;
}
.top-chart__options:nth-of-type(1)::before {
  width: calc(100% + 154px);
  height: 148px;
  top: 11px;
}
.top-chart__options:nth-of-type(2)::before {
  width: calc(100% + 118px);
  height: 12.2rem;
  top: 86px;
}
.top-chart__label {
  padding: 2.4rem 0 0.3rem;
}
.top-chart__label::before {
  width: 2.8rem;
  height: calc(100% + 1.5rem);
}
.top-chart__label::after {
  width: 6.9rem;
  aspect-ratio: 69/25;
  top: calc(100% + 1.5rem);
}
.top-chart__label span {
  width: 11rem;
  aspect-ratio: 110/113;
  font-size: 3.5rem;
}
.top-chart__label:not(:has(+ .top-chart__btn)) {
  height: 100%;
}
.top-chart__btn {
  height: 8rem;
  padding-left: 11rem;
  margin-top: 4.5rem;
}
.top-chart__btn::before {
  width: 10rem;
  left: -1px;
  filter: var(--filter-shadow);
}
.top-chart__btn > span {
  row-gap: 1rem;
}
.top-chart__btn > span wbr {
  display: none;
}
.top-chart__btn .b {
  font-size: var(--font-size-h5);
}

/*お知らせ
-----------------------------*/
.top-news {
  padding-block: 8rem;
}
.top-news__box {
  display: grid;
  grid-template-columns: auto 80rem;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 32rem;
  gap: 5rem;
  position: relative;
  z-index: 0;
}
.top-news__box::before {
  content: "";
  width: 169px;
  aspect-ratio: 169/148;
  background: url(../img/index/deco_news.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  bottom: 8rem;
  z-index: -1;
}
.top-news__title {
  align-items: flex-start;
}
.top-news__list {
  grid-row: span 2;
}
.top-news__btn {
  margin-top: auto;
}

/*===============================================
  初めての方へ
===============================================*/
/*サービス内容
-----------------------------*/
.beginner-service {
  background-size: min(963px, 50.15625%), max(1920px, 100%);
}
.beginner-service__item {
  min-height: 37.5rem;
  padding-top: 4rem;
  padding-left: 58rem;
  margin-bottom: 4rem;
  position: relative;
}
.beginner-service__heading {
  margin-bottom: 4rem;
}
.beginner-service__body p {
  display: inline;
}
.beginner-service__link {
  margin-top: 2.5rem;
}
.beginner-service__image {
  position: absolute;
  top: 0;
  left: 0;
}

/*みよし市不用品回収相談窓口が選ばれる理由
-----------------------------*/
.beginner-reason {
  background-size: min(1096px, 57.084%), min(475px, 24.7396%);
}
.beginner-reason__list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 4rem;
}
.beginner-reason__item {
  width: 52rem;
  border-radius: 3rem;
}
.beginner-reason__image img {
  aspect-ratio: 1.8571428571;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.beginner-reason__image figcaption {
  width: 12rem;
  font-size: 2.5rem;
}
.beginner-reason__inner {
  padding: 3rem 3rem 5rem;
}
.beginner-reason__heading > span::before {
  width: calc(100% + 9rem);
}

/*会社情報
-----------------------------*/
.beginner-company__table tr th {
  width: 24rem;
}
.beginner-company__table:not(:has(tr)) {
  display: none;
}
.beginner-company__inner:has(.beginner-company__map) {
  display: grid;
  grid-template-columns: 1fr 45rem;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}
.beginner-company__inner:has(.beginner-company__map) .beginner-company__table tr th {
  width: 13rem;
}
.beginner-company__inner:has(.beginner-company__map):not(:has(tr)) .beginner-company__map {
  grid-column: span 2;
  height: 35rem;
}
.beginner-company:not(:has(tr)):not(:has(.beginner-company__map)) {
  display: none;
}

/*===============================================
  不用品回収・買取
===============================================*/
/*回収・買取品目
-----------------------------*/
.junk-list__cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem 1rem;
}
.junk-list__card {
  width: 34rem;
}
.junk-list__image, .junk-list__heading {
  margin-bottom: 2rem;
}

/*買取実績
-----------------------------*/
.junk-works__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
  gap: 4rem 6rem;
  padding-inline: 9rem;
}
.junk-works__image {
  margin-bottom: 2rem;
}
.junk-works__image img {
  aspect-ratio: 1.3333333333;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.junk-works__heading {
  margin-bottom: 2rem;
}
.junk-works__heading:not(:has(+ .junk-works__price)) {
  margin-bottom: 0;
}

/*===============================================
  遺品整理・生前整理
===============================================*/
/*サービス内容
-----------------------------*/
.estate-service__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 4rem 1rem;
}
.estate-service__image {
  margin-bottom: 2rem;
}
.estate-service__heading {
  align-items: center;
}

/*===============================================
  お客様の声
===============================================*/
/*お客様の声　一覧
-----------------------------*/
.review-list {
  background-size: min(963px, 50.15625%);
}
.review-list__item > *:not(.review-list__heading) {
  margin-inline: 3rem;
}
.review-list__images {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem;
  border-radius: 3rem;
}
.review-list__images::before {
  width: 1em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.review-list__image {
  width: 42rem;
}
.review-list__image img {
  aspect-ratio: 1.3333333333;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*===============================================
  お知らせ
===============================================*/
/* お知らせ 一覧
-----------------------------*/
/* お知らせ 詳細
-----------------------------*/
/*タグリスト
-----------------------------*/
/*===============================================
  お問い合わせ
===============================================*/
.contact-form__table {
  margin-bottom: 56px;
}
.contact-form__table tr th {
  width: 36rem;
  text-align: left;
  line-height: 2.375;
}
.contact-form__table tr td {
  vertical-align: middle;
  line-height: 2.375;
}
.contact-form .contact-submits-wrap > * {
  width: 36rem;
  height: 8rem;
  font-size: var(--font-size-h6);
  margin: 2rem 1.5rem 0;
}

/*===============================================
  お問い合わせ完了
===============================================*/
.contact-complete__text {
  text-align: center;
}

/*===============================================
  プライバシーポリシー
===============================================*/
/*===============================================
  サイトマップ
===============================================*/
.sitemap-list__items {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  grid-auto-flow: column;
  gap: 20px 80px;
  background: var(--color-white);
  padding: 4rem 3rem;
  border-radius: 0.8rem;
}
.sitemap-list__link {
  font-size: var(--font-size-h6);
  line-height: var(--line-height-h6);
  padding: 15px 20px;
}

/*===============================================
  404エラー
===============================================*/