@charset "UTF-8";
@import url(all.css);
/*rootの変数宣言*/
:root {
  /*==============================
      カラー    
  ==============================*/
  --color-font: #0e2e39;
  --color-white: #ffffff;
  --color-lightblue:#36b9e2;
  --color-blue:#005aa1;
  --color-yellow:#f4b131;
  --color-pureblue:#e1fcff;
  --color-whiteblue:#e6f7f9;
  /*カレントカラー*/
  --color-current: #005aa1;
  /*テキストリンクカラー*/
  --color-textlink:#005aa1;
  /*必須ボタンカラー*/
  --color-required: #005aa1;
  /*任意ボタンカラー*/
  --color-optional: #005aa1;
  /*ラジオボタンカラー*/
  --color-radio: #005aa1;
  /*チェックボタンカラー*/
  --color-check: #005aa1;
  /*==============================
      フォントファミリー
  ==============================*/
  /*タイトル*/
  --font-family-heading: "Zen Kaku Gothic New", sans-serif;
  /*本文*/
  --font-family-body: "Zen Kaku Gothic New", sans-serif;
  /*==============================
      フォントサイズ
  ==============================*/
  /*基準のフォントサイズ*/
  --font-size-body: 1.8rem;
  /*==============================
      行間
  ==============================*/
  /*基準の行間*/
  --line-height-base: 1.778;
  /*==============================
      文字間
  ==============================*/
  /*基準の文字間*/
  --letter-spacing-base: 0.15em;
}

/*rootの変数宣言*/
:root {
  /*==============================
      カラー    
  ==============================*/
  --color-font: #0e2e39;
  --color-white: #ffffff;
  --color-lightblue:#36b9e2;
  --color-blue:#005aa1;
  --color-yellow:#f4b131;
  --color-pureblue:#e1fcff;
  --color-whiteblue:#e6f7f9;
  /*カレントカラー*/
  --color-current: #005aa1;
  /*テキストリンクカラー*/
  --color-textlink:#005aa1;
  /*必須ボタンカラー*/
  --color-required: #005aa1;
  /*任意ボタンカラー*/
  --color-optional: #005aa1;
  /*ラジオボタンカラー*/
  --color-radio: #005aa1;
  /*チェックボタンカラー*/
  --color-check: #005aa1;
  /*==============================
      フォントファミリー
  ==============================*/
  /*タイトル*/
  --font-family-heading: "Zen Kaku Gothic New", sans-serif;
  /*本文*/
  --font-family-body: "Zen Kaku Gothic New", sans-serif;
  /*==============================
      フォントサイズ
  ==============================*/
  /*基準のフォントサイズ*/
  --font-size-body: 1.8rem;
  /*==============================
      行間
  ==============================*/
  /*基準の行間*/
  --line-height-base: 1.778;
  /*==============================
      文字間
  ==============================*/
  /*基準の文字間*/
  --letter-spacing-base: 0.15em;
}

/*opacity含めたカラー指定あればここで定義*/
/*========================
    default
========================*/
html {
  font-size: 62.5%;
}

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

.pc-none {
  display: none !important;
}

.wrapper {
  min-width: 1280px;
  max-width: 1920px;
  margin-inline: auto;
}

.container {
  /*ヘッダー追従の時はここにmax-width:1920px;,overflow-x:hidden;をかける*/
}

.com-inbox {
  width: 1080px;
}

/*パンくずリスト*/
.breadcrumb {
  padding-block: 1.8rem;
  background: url(../img/common/500×400px.jpg) top left/500px 400px repeat;
}
.breadcrumb__list {
  width: 1080px;
  margin-inline: auto;
  display: flex;
  justify-content: flex-start;
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  line-height: 1;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
}
.breadcrumb__item::after {
  content: "＞";
  margin-inline: 1em;
  pointer-events: none;
  font-size: 1.4rem;
}
.breadcrumb__item:last-child {
  display: block;
  max-width: 23rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.breadcrumb__item:last-child::after {
  display: none;
}

/*==============================
    各種ホバー処理
==============================*/
/*ロゴ*/
.logo a:hover {
  transition: opacity 0.3s;
}
.logo a:hover:hover {
  opacity: 0.5;
}

/*パンくずリスト*/
.breadcrumb__item a {
  transition: all 0.3s;
}
.breadcrumb__item a:hover {
  transition: opacity 0.3s;
}
.breadcrumb__item a:hover:hover {
  opacity: 0.5;
}

/*各種ボタン*/
.com-btn {
  transition: all 0.3s;
}
.com-btn::after {
  transition: all 0.3s;
}
.com-btn:hover {
  opacity: 0.5;
}
.com-btn:hover::after {
  right: 1.5rem;
}

.line-btn {
  transition: all 0.3s;
}
.line-btn:hover {
  opacity: 0.5;
}

/*ページネーション*/
.paginated__link {
  transition: all 0.3s;
}
.paginated:hover {
  opacity: 0.5;
}

.pagenation a {
  transition: all 0.3s;
}
.pagenation a:hover {
  opacity: 0.5;
}

/*ヘッダーナビ*/
.gnav__item a {
  transition: all 0.3s;
}
.gnav__item a:hover {
  transition: opacity 0.3s;
}
.gnav__item a:hover:hover {
  opacity: 0.5;
}

/*テキストリンク*/
.com-textlink {
  transition: all 0.3s;
}
.com-textlink:hover {
  transition: opacity 0.3s;
}
.com-textlink:hover:hover {
  opacity: 0.5;
}

/*TOPページ下層リンク*/
.top-link a {
  transition: all 0.3s;
}
.top-link a::after {
  transition: all 0.3s;
}
.top-link a:hover {
  opacity: 0.5;
}
.top-link a:hover::after {
  right: 3.5rem;
}

/*お問い合わせ完了（トップへ戻る）*/
.complete__btn {
  transition: all 0.3s;
}
.complete__btn:hover {
  transition: opacity 0.3s;
}
.complete__btn:hover:hover {
  opacity: 0.5;
}

/*追従ボタン*/
.follow_btn a {
  transition: all 0.3s;
}
.follow_btn a:hover {
  opacity: 0.5;
  transform: translateY(-1rem);
}

/*フッターナビ*/
.footer-nav__item a {
  transition: all 0.3s;
}
.footer-nav__item a:hover {
  opacity: 0.5;
}
.footer small a:hover {
  opacity: 0.5;
}

/*==============================
    ヘッダー
==============================*/
.header {
  padding: 0 clamp(12px, 0.94vw, 18px) clamp(9px, 0.73vw, 14px) clamp(20px, 1.56vw, 30px);
}

/*==============================
    メインビジュアル
==============================*/
.mv {
  padding-bottom: clamp(21px, 1.67vw, 32px);
  padding-inline: clamp(27px, 2.08vw, 40px);
}
.mv__title {
  font-weight: 700;
  gap: clamp(16px, 1.25vw, 24px);
}
.mv__title .main {
  font-size: clamp(40px, 3.13vw, 60px);
  gap: clamp(8px, 0.63vw, 12px);
}
.mv__title .main > span {
  line-height: 1;
  padding: clamp(7px, 0.52vw, 10px) clamp(13px, 1.04vw, 20px) clamp(10px, 0.78vw, 15px);
}
.mv__title .main > span strong {
  font-size: clamp(44px, 3.44vw, 66px);
}
.mv__title .main > span:first-child::before {
  width: clamp(61px, 4.79vw, 92px);
  bottom: clamp(51px, 4.01vw, 77px);
  right: clamp(380px, 29.69vw, 570px);
}
.mv__title .sub {
  padding-left: clamp(27px, 2.08vw, 40px);
}
.mv__title .sub img {
  height: clamp(37px, 2.92vw, 56px);
  width: auto;
}

/*==============================
    サブビジュアル
==============================*/
.sv {
  padding-inline: clamp(27px, 2.08vw, 40px);
}
.sv__title > span {
  padding: clamp(1px, 0.1vw, 2px) clamp(25px, 1.98vw, 38px);
  line-height: 1;
  font-size: clamp(40px, 3.13vw, 60px);
}
.sv__title > span::before {
  width: clamp(61px, 4.79vw, 92px);
  bottom: calc(100% - clamp(12px, 0.94vw, 18px));
  right: calc(100% - clamp(41px, 3.23vw, 62px));
}

/*==============================
    共通ボタン
==============================*/
.com-btn {
  width: 35.6rem;
  height: 6rem;
}

.line-btn {
  width: 31.7rem;
  height: 6rem;
}

/*==============================
    TOP
==============================*/
.top-worry {
  padding-block: 12.5rem 11.5rem;
}
.top-worry__box {
  align-items: flex-start;
}
.top-worry__box:first-of-type {
  padding: 6.2rem 7.1rem 4.2rem 10rem;
  margin-left: -10rem;
}
.top-worry__box:last-of-type {
  padding: 6.7rem 10rem 4.3rem 5.2rem;
  flex-direction: row-reverse;
  margin-right: -10rem;
}
.top-worry__image {
  flex-shrink: 0;
}
.top-worry__title {
  padding-inline: 12.35rem;
}

.top-about {
  padding-block: 18.3rem 11.6rem;
}
.top-about__h3 strong {
  margin-right: 2rem;
}
.top-about__h3 strong img {
  margin-bottom: 1rem;
}
.top-about__wrap {
  justify-content: flex-end;
}
.top-about__text {
  width: 52rem;
}

.top-area {
  align-items: flex-start;
}
.top-area__text {
  padding-top: 5.6rem;
}
.top-area__text p {
  margin-right: -1em;
}

.top-greeting {
  align-items: flex-start;
}
.top-greeting__image {
  flex-shrink: 0;
  width: 50.5rem;
  margin-right: -8rem;
}
.top-greeting__text {
  margin-top: 1.4rem;
  padding: 4rem 4rem 4rem 11.2rem;
}

.top-link__item {
  width: 100%;
  height: 55rem;
}
.top-link__item a {
  padding: clamp(53px, 4.17vw, 80px) clamp(47px, 3.65vw, 70px);
}
.top-link__item a::after {
  width: 11rem;
}
.top-link__item a p {
  font-size: clamp(15px, 1.15vw, 22px);
}
.top-link__title {
  font-size: clamp(47px, 3.65vw, 70px);
  margin-bottom: clamp(26px, 2.03vw, 39px);
}

.top-contact {
  padding-block: 12rem;
}
.top-contact .com-inbox::before {
  width: clamp(1200px, 64.58vw, 1240px);
}
.top-contact .line-btn {
  width: 35.2rem;
  height: 10.9rem;
}

.top-news {
  padding-block: 11.5rem;
}
.top-news .com-title02 {
  margin-bottom: 0;
}
.top-news__box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.top-news .com-btn {
  width: 25.6rem;
}

/*==============================
    法人様向け
==============================*/
.corporation-worry {
  padding-block: 6.2rem 11.5rem;
}
.corporation-worry::before {
  left: calc(50% + 31.3rem);
}
.corporation-worry__box {
  width: 52rem;
}
.corporation-worry__title {
  width: 30rem;
}

/*==============================
    個人様向け
==============================*/
.individual-worry {
  padding-block: 6.2rem 11.5rem;
}

/*==============================
    おそうじ本舗沼津若葉町店の強み
==============================*/
.com-feature {
  padding-block: 9rem 11.5rem;
}
.com-feature__item {
  align-items: flex-start;
}
.com-feature__text {
  margin-right: -2rem;
}
.com-feature__image {
  flex-shrink: 0;
}
.com-feature__image::before {
  width: 50rem;
}

.coporation-feature .com-feature__image::before {
  background-color: var(--color-blue);
}

/*==============================
    対応サービス
==============================*/
/*サービス内容一覧*/
.com-service {
  padding-block: 11.5rem;
}
.com-service__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.com-service .breadcrumb {
  margin-bottom: 6rem;
}
.com-service .com-inbox {
  position: relative;
}
.com-service__image {
  flex-shrink: 0;
  width: 41.8rem;
}
.com-service dl:first-of-type dt,
.com-service dl:first-of-type dd {
  padding-top: 0;
}
.com-service dl:last-of-type dt,
.com-service dl:last-of-type dd {
  padding-bottom: 0;
  border-bottom: none;
}

/*==============================
    実績紹介
==============================*/
.achievement {
  padding-block: 7.7rem 11.5rem;
}
.achievement .com-title03 {
  margin-bottom: 0;
}
.achievement__box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 6rem;
}

.achievement .tag-select,
.com-service .tag-select {
  margin-bottom: 0;
}

/*==============================
    実績詳細
==============================*/
.achievement-detail {
  padding-block: 7.7rem 11.5rem;
}
.achievement-detail__image {
  width: 68.4rem;
  margin-inline: auto;
}

/*==============================
    店舗情報
==============================*/
.info-flow {
  padding-block: 6.2rem 11.6rem;
}
.info-flow .com-title04 {
  margin-bottom: 7rem;
}
.info-flow__item {
  width: 32rem;
}
.info-flow__item:nth-child(3n)::after, .info-flow__item:last-child::after {
  display: none;
}

.info-section {
  padding-block: 11.5rem;
}

/*==============================
    お知らせ一覧
==============================*/
.news {
  padding-block: 10rem;
}

/*お知らせ共通部分*/
.com-news__item a:hover {
  transition: opacity 0.3s;
}
.com-news__item a:hover:hover {
  opacity: 0.5;
}

/*タグリスト(PC)
-----------------------------*/
.tag-select {
  text-align: right;
  margin-bottom: 5rem;
}
.tag-select__box {
  min-width: 24rem;
}
.tag-select__box::after {
  right: 1.8rem;
}
.tag-select__dropdown {
  line-height: 1;
  padding: 12px 48px 12px 12px;
  background-color: var(--color-white);
}

/*==============================
    お知らせ詳細
==============================*/
.news-detail {
  padding-block: 10rem;
}
.news-detail__box {
  padding: 4rem 4rem 6rem 4rem;
}

/*==============================
  お問い合わせ
==============================*/
.contact {
  padding-block: 10rem;
}
.contact .com-table {
  margin-bottom: 3rem;
  table-layout: fixed;
}
.contact .com-table th {
  width: 35%;
}
.contact .com-btn {
  margin-inline: auto;
  margin-top: 5rem;
  width: 30rem;
}
.contact .contact-submits-wrap {
  display: flex;
  justify-content: center;
  gap: 3rem;
}
.contact .contact-submits-wrap .com-btn {
  margin-inline: 0;
}

/*==============================
  お問い合わせ完了
==============================*/
.complete {
  padding-block: 10rem;
}
.complete__box {
  text-align: center;
}
.complete__btn {
  margin-top: 5rem;
}
.complete__btn:hover {
  opacity: 0.5;
}

/*==============================
　プライバシーポリシー
==============================*/
.privacy {
  padding-block: 10rem;
}
.privacy__box {
  margin-bottom: 5rem;
}
.privacy__box:last-child {
  margin-bottom: 0;
}

/*==============================
    サイトマップ
==============================*/
.site {
  padding-block: 10rem;
}
.site .com-inbox {
  width: 70rem;
}
.site__list {
  display: flex;
  flex-direction: column;
}
.site__item {
  height: 7.5rem;
}
.site__item a {
  padding: 1rem;
}
.site__item a::after {
  width: 1rem;
  transform: rotate(-45deg);
}
.site__item a:hover {
  transition: all 0.3s;
  opacity: 0.5;
}
.site__item a:hover::after {
  transform: rotate(-45deg) translate(5px, 5px);
  transition: all 0.3s;
}

/*==============================
    このページは存在しません
==============================*/
.e404 {
  padding-block: 10rem;
}
/*==============================
    追従ボタン
==============================*/
.follow_btn {
  bottom: 2rem;
  right: 1rem;
}
.follow_btn a {
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 13rem;
  aspect-ratio: 1;
  border-radius: 100vh;
  gap: 1.4rem;
  padding-top: 1.6rem;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.375;
}
.follow_btn a > span {
  margin-block: calc((1em - 1lh) / 2);
}

/*==============================
    フッター
==============================*/
.footer .logo {
  height: 9rem;
}
.footer__inner {
  width: 1080px;
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
  padding-block: 6.8rem 4.2rem;
}
.footer-nav__list {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  line-height: 1;
  gap: 3.5rem 12rem;
  grid-auto-flow: column;
  font-size: 1.6rem;
}
.footer-nav__item a {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-nav__item a::before {
  content: "";
  width: 0.6rem;
  aspect-ratio: 6/7;
  background: url(../img/common/footer-arw.png) top left/contain no-repeat;
}