@charset "UTF-8";
/* SCSSの読み込み */
@import url(all.css);
/* font-weight */
:root {
  /* カラー */
  --color-text: #333;
  --color-blue: #5ac2db;
  --color-yellow: #fcf431;
  --color-gray: #d1d1d1;
  --color-line-blue: #005bac;
  --color-bg-blue: #def3f8;
  --color-grad-text: linear-gradient(90deg, #5ac2db, #005bac 99%);
  /* font-family */
  --font-family-kaku: "Zen Kaku Gothic New", sans-serif;
  --font-family-maru: "Zen Maru Gothic", serif;
  /* font-weight */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  /* bootstrap icons */
  --font-family-icon: "bootstrap-icons";
  --icon-mail: "";
  --icon-tel: "";
  --icon-window: "";
  --icon-arrow-right: "";
  --icon-arrow-top: "";
  --icon-arrow-bottom: "";
  /* パターン背景 */
  --bg-pattern-grid: url(../img/common/pt-grid.png);
  --bg-pattern-dot: url(../img/common/pt-dot.png);
}

@media screen and (min-width: 768px) {
  :root {
    /* フォントサイズ */
    --font-size-xxxxxl: 4.5rem;
    --font-size-xxxxl: 3.8rem;
    --font-size-xxxl: 3rem;
    --font-size-xxl: 2.5rem;
    --font-size-xl: 2.2rem;
    --font-size-gl: 1.8rem;
    --font-size-base: 1.5rem;
    --font-size-sm: 1.4rem;
    --font-size-xs: 1.2rem;
    /* line-height */
    --line-height-xxxxl: 1.31579;
    --margin-height-xxxxl: -0.157895em;
    --line-height-xxxl: 1.4;
    --margin-height-xxxl: -0.2em;
    --line-height-xxl: 1.4;
    --margin-height-xxl: -0.2em;
    --line-height-xl: 1.272728;
    --margin-height-xl: -0.136364em;
    --line-height-gl: 1.33334;
    --margin-height-gl: -0.16667em;
    --line-height-base: 1.6;
    --margin-height-base: -0.3em;
    --line-height-sm: 1.714286;
    --line-height-xs: 1.6666667;
    /* letter-speacing */
    --letter-spacing-base: 0.1em;
  }
}
@media screen and (max-width: 767px) {
  :root {
    /* フォントサイズ */
    --font-size-xxxxxl: 3em;
    --font-size-xxxxl: 2.4em;
    --font-size-xxxl: 2em;
    --font-size-xxl: 1.733333334em;
    --font-size-xl: 1.4em;
    --font-size-gl: 1.2em;
    --font-size-base: 1em;
    --font-size-sm: 0.8em;
    --font-size-xs: 0.66666667em;
    /* line-height */
    --line-height-xxxxl: 1.3333334;
    --line-height-xxxl: 1.5;
    --line-height-xxl: 1.5384616;
    --line-height-xl: 1.5238096;
    --line-height-gl: 1.6666667;
    --line-height-base: 1.6;
    --line-height-sm: 1.75;
    --line-height-xs: 2;
    /* letter-speacing */
    --letter-spacing-base: 0.06em;
  }
}
/*===============================================
  切り替え用
===============================================*/
.sp-none {
  display: none !important;
}

.com-table table,
.com-table table tbody,
.com-table table th,
.com-table table tr,
.com-table table td {
  display: block !important;
  width: 100% !important;
}

/*===============================================
  ページネーション
===============================================*/
.pagenation {
  padding-top: 2.5em;
}
.pagenation li {
  width: 2em;
  font-size: var(--font-size-sm);
  line-height: 2;
  margin: 0.5em 0.5em 0;
}

/*===============================================
  詳細ページ前後
===============================================*/
.paginated__list {
  margin-top: 2em;
}
.paginated__link {
  letter-spacing: var(--letter-spacing-base);
}
.paginated__link--prev::before {
  margin-right: 0.5em;
}
.paginated__link--next::after {
  margin-left: 0.5em;
}

/*===============================================
  wrapper
===============================================*/
#wrapper {
  min-width: 320px;
  font-size: clamp(1.3rem, 4.0540540541vw, 1.5rem);
}

/*===============================================
  header
===============================================*/
#header .header__inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
#header .header__logo {
  padding: 0 8px;
  border-bottom-right-radius: 12px;
}
#header .header__logo img {
  height: min(112px, 24.8888888889vw);
}

/*===============================================
  footer
===============================================*/
#footer .footer__contact {
  border-top: solid 2px var(--color-blue);
  padding: clamp(48px, 15vw, 60px) 5% clamp(64px, 20vw, 80px);
}
#footer .footer__contact::before {
  width: 96%;
  height: calc(100% - clamp(12px, 3.75vw, 15px));
  background-position: left top, right bottom;
  background-size: clamp(76px, 23.75vw, 95px), clamp(30px, 9.5vw, 38px);
  bottom: 0;
  left: 2%;
}
#footer .footer__contact-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  margin-bottom: 1em;
  -webkit-text-stroke: #fff 3px;
  paint-order: stroke;
}
#footer .footer__contact-items {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 15px 12px;
}
#footer .footer__contact-btn {
  width: calc(50% - 6px);
  height: 80px;
  border-radius: 8px;
}
@media screen and (max-width: 570px) {
  #footer .footer__contact-btn {
    width: 100%;
  }
}
#footer .footer__contact-tel {
  width: 100%;
  height: 80px;
}
#footer .footer__other {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: clamp(24px, 7.5vw, 30px);
  padding: clamp(48px, 15vw, 60px) 5% clamp(32px, 10vw, 40px);
}
#footer .footer__logo img {
  height: min(112px, 24.8888888889vw);
}
#footer .footer__info {
  letter-spacing: var(--letter-spacing-base);
  line-height: var(--line-height-base);
}
#footer .footer__info-item {
  text-align: center;
}
#footer .footer__info-item--add span {
  display: none;
}
#footer .footer__info-item span::after {
  content: "｜";
}
#footer .footer__sns dt {
  display: none;
}
#footer .footer__sns dd {
  width: clamp(40px, 12.5vw, 50px);
}
#footer .footer__links {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(216px, 1fr));
  grid-auto-flow: row;
  gap: 15px;
}
#footer .footer__link {
  min-height: clamp(50px, 15vw, 60px);
}
#footer .footer__link a {
  line-height: var(--line-height-base);
  font-weight: var(--font-weight-bold);
  border-radius: 8px;
  padding: 0.75em 1em;
}
#footer .footer__link a::after {
  font-size: 1em;
  margin-left: 1em;
}

/*フッターナビ
-----------------------------*/
.fnav__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: row;
  gap: 1px;
  background: var(--color-line-blue);
  padding: 1px 0;
}
.fnav__item {
  background: var(--color-blue);
}
.fnav__item:first-of-type:nth-last-of-type(2n + 1) {
  grid-column-start: 1;
  grid-column-end: 3;
}
.fnav__link {
  padding: 1.25em 1em;
  line-height: var(--line-height-base);
  color: #fff;
}
.fnav__link:hover {
  color: var(--color-yellow);
}
.fnav__link[aria-current=page] {
  color: var(--color-yellow);
}

/*コピーライト
-----------------------------*/
.copy {
  padding: 1.25em 0;
}
.copy p {
  font-size: var(--font-size-xs);
  line-height: var(--line-height-xs);
}

/*===============================================
  fixed固定
===============================================*/
/*ページトップ
-----------------------------*/
#pagetop {
  right: 8px;
  bottom: 8px;
}

/*===============================================
  visual
===============================================*/
.visual {
  background-size: 32px;
}

/*メインビジュアル
-----------------------------*/
.visual__main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 175vw;
  max-height: 790px;
}
.visual__main::before, .visual__main::after {
  width: 100%;
  height: 32%;
  left: 0;
}
.visual__main::before {
  top: 0;
  transform: scale(-1, 1);
}
.visual__main::after {
  bottom: 0;
}
.visual__main-box {
  width: 100%;
  height: 36%;
  padding-top: min(30px, 6.6666666667vw);
}
.visual__main-box::before {
  height: 100%;
}
.visual__main-box::after {
  width: 88%;
  height: 36%;
}
.visual__main-sub {
  width: 22em;
  font-size: min(1.8rem, 4vw);
  line-height: 2;
  letter-spacing: var(--letter-spacing-base);
  padding-left: calc(var(--letter-spacing-base) * 1em);
  outline-width: 2px;
  outline-offset: -2px;
  border-radius: 8px;
}
.visual__main-catch {
  padding-top: min(20px, 4.4444444444vw);
}
.visual__main-catch .grad {
  font-size: min(4.5rem, 10vw);
}
.visual__main-catch .txt {
  font-size: min(2.6rem, 5.7777777778vw);
  letter-spacing: var(--letter-spacing-base);
  margin-right: calc(var(--letter-spacing-base) * -1);
  margin-top: 0.5em;
}
.visual__main-catch .txt .min {
  font-size: 0.80769231em;
}

/*サブビジュアル
-----------------------------*/
.visual__sub {
  height: min(260px, 57.7777777778vw);
  margin-top: min(80px, 17.7777777778vw);
}
.visual__sub-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.visual__sub-catch {
  width: 90%;
  max-width: 405px;
  height: 40%;
  font-size: min(3rem, 6.6666666667vw);
  border-radius: 5px;
}
.visual__sub-catch > span {
  letter-spacing: var(--letter-spacing-base);
  margin-right: calc(var(--letter-spacing-base) * -1em);
}
.visual__sub-catch::after {
  width: 26%;
  max-width: 117px;
  right: max(50% - 213px, 2.5%);
  bottom: 0;
  z-index: 1;
}

/*===============================================
  main#container
===============================================*/
#container {
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-base);
}

/*===============================================
  パンくずリスト
===============================================*/
.breadcrumb {
  font-size: var(--font-size-sm);
  padding: 0.75em 0;
}
.breadcrumb__list {
  width: 90%;
}
.breadcrumb__item {
  line-height: var(--line-height-sm);
}

/*===============================================
  main共通
===============================================*/
.section {
  padding: clamp(64px, 20vw, 80px) 0;
}
.section:first-of-type::before {
  height: clamp(152px, 47.5vw, 190px);
}
.section:first-of-type .com-title01 {
  padding-bottom: 1em;
}

.inbox {
  width: 90%;
}

/*電話番号
-----------------------------*/
.com-tel {
  font-size: var(--font-size-xxxxl);
}
.com-tel-num::before {
  width: 0.75em;
  margin-right: 10px;
}
.com-tel-num span {
  letter-spacing: 0.05em;
  margin: -0.184211em -0.05em -0.0789474em 0;
}
.com-tel .com-replace {
  height: 0.388888889em;
  margin-top: 0.25em;
}

/*ボタン
-----------------------------*/
.com-link {
  line-height: var(--line-height-base);
  margin: 0 auto;
}
.com-link::before {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0.5em;
  font-size: 2em;
  margin-right: 0.5em;
}

.com-btn {
  border-width: 2px;
  font-size: var(--font-size-gl);
  letter-spacing: var(--letter-spacing-gl);
  line-height: var(--line-height-base);
}
.com-btn--mail::before {
  width: 30px;
  margin-right: 15px;
}
.com-btn--line::before {
  width: 40px;
  margin-right: 20px;
}

/*テーブル
-----------------------------*/
.com-table tr {
  padding: 0 0.75em 1.25em;
  margin-bottom: 1.25em;
}
.com-table tr th {
  margin-bottom: 0.5em;
}
/*テキストボックス
-----------------------------*/
.com-text .mb {
  margin-bottom: 1em;
}
.com-text br {
  display: none;
}

/*SB未記入テキスト
-----------------------------*/
.com-empty {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-xl);
  padding: 2.5em 0;
}

/*===============================================
  タイトル
===============================================*/
/*大タイトル
-----------------------------*/
.com-title01 {
  font-size: var(--font-size-xxxl);
  margin-bottom: 1.5em;
}
.com-title01 > span {
  letter-spacing: var(--letter-spacing-base);
  margin-right: calc(var(--letter-spacing-base) * -1);
}
.com-title01 .ja {
  line-height: var(--line-height-xxxl);
  word-break: keep-all;
}
.com-title01 .en {
  font-size: 0.6em;
  margin-top: 0.5em;
}

/*中タイトル
-----------------------------*/
.com-title02 {
  font-size: var(--font-size-xl);
  padding-left: 0.6em;
  margin-bottom: 1em;
}
.com-title02::before {
  width: 2px;
  height: 100%;
}
.com-title02 > span {
  line-height: var(--line-height-xl);
}

/*小タイトル
-----------------------------*/
/*===============================================
  共通セクション
===============================================*/
/*リンクセクション
-----------------------------*/
.com-bnr__list {
  width: 100%;
}
.com-bnr__item {
  width: 100%;
  height: clamp(160px, 50vw, 200px);
}
.com-bnr__item-link {
  outline-offset: -6px;
}
.com-bnr__item-title {
  width: 90%;
  max-width: 360px;
  height: 64%;
  border-radius: 12px;
  outline-width: 2px;
  outline-offset: -2px;
  gap: 10px;
}
.com-bnr__item-title::after {
  width: 0.5em;
  font-size: 2em;
  right: 0.5em;
}
.com-bnr__item-title .txt {
  font-size: var(--font-size-xxl);
}
.com-bnr__item-title .sub {
  font-size: var(--font-size-gl);
}

/*===============================================
  トップページ
===============================================*/
/*お知らせ
-----------------------------*/
.top-news {
  padding-bottom: clamp(32px, 10vw, 40px);
}
.top-news__item {
  padding-bottom: 1.5em;
  margin-bottom: 1.5em;
}
.top-news__item-link {
  align-items: flex-start;
}
.top-news__item-image {
  width: 90px;
  outline-width: 2px;
  outline-offset: -2px;
}
.top-news__item-image img {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-news__item-inner {
  width: calc(100% - 105px);
  row-gap: 10px;
}
.top-news__item-date {
  margin: -0.3em 0;
}
.top-news__item-tags {
  gap: 8px;
}
.top-news__item-tag {
  font-size: var(--font-size-sm);
  line-height: calc(1em + 10px);
  padding: 0 10px;
}
.top-news__link {
  margin-top: 30px;
  margin-right: 0;
}

/*こんなお悩みありませんか？
-----------------------------*/
.top-trouble {
  border-bottom-width: 2px;
}
.top-trouble::before {
  width: 1120px;
  height: 243px;
}
.top-trouble:has(+ .top-about)::after {
  width: 80px;
  height: 21px;
}
.top-trouble__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-flow: row;
  gap: 15px 10px;
}
.top-trouble__item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25em;
  outline-width: 2px;
  outline-offset: -2px;
}
.top-trouble__item::before {
  font-size: var(--font-size-xxxxxl);
  -webkit-text-stroke-width: 8px;
  top: -0.35em;
  left: 8%;
}
.top-trouble__item p {
  text-align: center;
  word-break: keep-all;
}

/*そんな時は
お掃除コンシェルジュWATにお任せください！
-----------------------------*/
.top-about {
  padding: 0;
  background: var(--color-bg-blue);
}
.top-about::after {
  content: "";
  display: block;
  width: 100%;
  height: 40vw;
  background: url(../img/index/img_about.jpg) no-repeat center/cover;
}
.top-about__box {
  padding: clamp(48px, 15vw, 60px) 0 clamp(80px, 25vw, 100px);
}
.top-about__box::after {
  width: 98%;
  height: clamp(64px, 20vw, 80px);
  bottom: 0;
}
.top-about__title {
  font-size: var(--font-size-xxl);
}
.top-about__title .ja {
  line-height: var(--line-height-xxl);
}
.top-about__title .en {
  font-size: 0.6923077em;
}

/*対応エリア
-----------------------------*/
.top-area__list {
  padding-top: 3em;
}
.top-area__item {
  margin-bottom: clamp(32px, 10vw, 40px);
}
.top-area__item:last-of-type {
  margin-bottom: 0;
}
.top-area__item-image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-area__item-image figcaption {
  width: 80%;
  font-size: var(--font-size-xl);
  line-height: var(--line-height-xl);
  padding: 1em 0 0.25em;
}
.top-area__item-image figcaption::before {
  height: 2em;
  top: -1.25em;
}
.top-area__item-cities {
  padding: 1.25em;
}

/*お掃除コンシェルジュWATが選ばれる理由
-----------------------------*/
.top-feature::before {
  height: clamp(172px, 53.25vw, 213px);
}
.top-feature__title {
  font-size: var(--font-size-xxl);
  padding-bottom: 1em;
}
.top-feature__title .ja {
  max-width: 14em;
  line-height: var(--line-height-xxl);
}
.top-feature__title .en {
  font-size: 0.6923077em;
}
.top-feature__list::before {
  width: calc(100% - 20px);
  height: clamp(72px, 22.5vw, 90px);
  bottom: clamp(-80px, -20vw, -64px);
  z-index: 1;
}
.top-feature__item {
  outline-width: 2px;
  outline-offset: -2px;
  padding: 1.25em;
  margin-bottom: clamp(24px, 7.5vw, 30px);
}
.top-feature__item:last-of-type {
  margin-bottom: 0;
}
.top-feature__item-image {
  margin-bottom: 1.25em;
}
.top-feature__item-image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-feature__item-title {
  font-size: var(--font-size-xl);
  margin-bottom: 1em;
}
.top-feature__item-title .num {
  font-size: var(--font-size-xs);
  margin-bottom: 0.25em;
}
.top-feature__item-title .num::after {
  font-size: 2em;
}
.top-feature__item-title .txt {
  line-height: var(--line-height-xl);
  letter-spacing: var(--letter-spacing-base);
  word-break: keep-all;
  background: linear-gradient(to top, transparent 5%, var(--color-blue) 5%, var(--color-blue) 95%, transparent 95%);
}

/*実績紹介
-----------------------------*/
.top-works__item {
  padding: 1.25em 1.25em calc(1.25em + 50px);
  outline-width: 2px;
  outline-offset: -2px;
  margin-bottom: clamp(32px, 10vw, 40px);
}
.top-works__item-title {
  font-size: var(--font-size-gl);
  margin-bottom: 1em;
}
.top-works__item-title > span {
  line-height: var(--line-height-gl);
}
.top-works__item-image {
  width: 48%;
}
.top-works__item-image img {
  outline-width: 2px;
  outline-offset: -2px;
}
.top-works__item-image figcaption {
  line-height: 2;
  margin-top: 5px;
}
.top-works__item-link {
  height: 50px;
  padding: 0 1em;
}
.top-works__item-link::before {
  width: 0.5em;
  font-size: 2em;
  margin-right: 0.5em;
}
.top-works__link {
  margin-top: 30px;
}

/*===============================================
  料金案内
===============================================*/
.price-list__note {
  text-align: center;
}
.price-list__groups {
  padding-top: clamp(32px, 10vw, 40px);
}
.price-list__group {
  margin-bottom: 50px;
}
.price-list__group-title {
  margin-bottom: 1.5em;
}
.price-list__item {
  padding-bottom: 1.5em;
  margin-bottom: 1.5em;
}
.price-list__item-note {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  padding: 1.2em;
  margin-top: 1em;
}

/*===============================================
  ご利用案内
===============================================*/
/*ご依頼の流れ
-----------------------------*/
.info-flow__item {
  padding: 1em 1.25em 1.25em;
  outline-width: 2px;
  outline-offset: -2px;
  margin-bottom: clamp(48px, 15vw, 60px);
}
.info-flow__item::after {
  width: clamp(6px, 2vw, 8px);
  height: clamp(32px, 10vw, 40px);
  border-left: dotted clamp(6px, 2vw, 8px) var(--color-blue);
  top: calc(100% + clamp(8px, 2.5vw, 10px));
  left: 50%;
  transform: translateX(-50%);
}
.info-flow__item-num {
  margin-left: auto;
}
.info-flow__item-num::after {
  font-size: 2em;
}
.info-flow__item-text .min {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
}
.info-flow__item-image {
  margin-top: 1.25em;
}
.info-flow__item-image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*よくある質問
-----------------------------*/
.info-faq__item {
  outline-width: 2px;
  outline-offset: -2px;
  margin-bottom: clamp(24px, 7.5vw, 30px);
}
.info-faq__item-title {
  padding: 1.25em;
}
.info-faq__item-title::before {
  width: clamp(24px, 7.5vw, 30px);
}
.info-faq__item-title > span {
  width: calc(100% - clamp(32px, 10vw, 40px));
  font-size: var(--font-size-gl);
  line-height: var(--line-height-gl);
}
.info-faq__item-answer {
  padding: 1.25em;
}
.info-faq__item-answer::before {
  width: clamp(24px, 7.5vw, 30px);
}
.info-faq__item-answer p {
  width: calc(100% - clamp(32px, 10vw, 40px));
  margin-top: 0.2em;
}

/*===============================================
  実績紹介
===============================================*/
.works-list__group {
  padding-top: 3em;
  padding-bottom: 2em;
}
.works-list__group:first-of-type {
  margin-top: -3em;
}
.works-list__group-title::before {
  height: 100%;
}
.works-list__group-title > span {
  line-height: 1.2;
}
.works-list__group-images:has(+ .works-list__group-text) {
  margin-bottom: 1.25em;
}
.works-list__group-image {
  width: 48%;
}
.works-list__group-image img {
  outline-width: 2px;
  outline-offset: -2px;
}
.works-list__group-image figcaption {
  line-height: 2;
  margin-top: 5px;
}
.works-list__group-text {
  margin: var(--margin-height-base) 0;
}

/*===============================================
  会社案内
===============================================*/
/*ご挨拶
-----------------------------*/
.company-greeting__image {
  margin-bottom: 1.25em;
}
.company-greeting__image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.company-greeting__image img {
  -o-object-position: left center;
     object-position: left center;
}
.company-greeting__box {
  position: relative;
  z-index: 0;
}
.company-greeting__box-title {
  color: var(--color-text);
  margin-right: -5vw;
  margin-bottom: clamp(32px, 10vw, 40px);
}
.company-greeting__box-title::after {
  height: clamp(80px, 25vw, 100px);
  right: 2px;
}
.company-greeting__box-title .txt {
  font-size: var(--font-size-xl);
  filter: drop-shadow(3px 3px 5px rgba(51, 51, 51, 0.25));
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.company-greeting__box-title .txt:has(+ .sub) {
  margin-bottom: 16px;
}
.company-greeting__box-title .txt .grad-wrap {
  font-size: 1.1428572em;
  margin: 0 -0.25em 0 -0.5em;
}
.company-greeting__box-title .txt .shadow {
  -webkit-text-stroke-width: 3px;
}
.company-greeting__box-title .sub {
  font-size: var(--font-size-gl);
  line-height: 1.5;
  padding: 0.5em clamp(100px, 30vw, 120px) 0.5em 1em;
  background: var(--color-bg-blue);
  word-break: keep-all;
}

/*会社情報
-----------------------------*/
.company-information:has(.company-information__map) {
  padding-bottom: 0;
}
.company-information__table {
  padding: 1.5em 1.25em;
  outline-width: 2px;
  outline-offset: -2px;
}
.company-information__table tr td .com-replace {
  height: var(--font-size-sm);
}
.company-information__map {
  height: clamp(320px, 100vw, 400px);
  margin-top: clamp(32px, 10vw, 40px);
}

/*==================================================
 ニュース一覧
================================================== */
.news-archive__item {
  padding-bottom: 1.5em;
  margin-bottom: 1.5em;
}
.news-archive__item-link {
  align-items: flex-start;
}
.news-archive__item-image {
  width: 90px;
  outline-width: 2px;
  outline-offset: -2px;
}
.news-archive__item-image img {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-archive__item-inner {
  width: calc(100% - 105px);
  row-gap: 10px;
}
.news-archive__item-date {
  margin: -0.3em 0;
}
.news-archive__item-tags {
  gap: 8px;
}
.news-archive__item-tag {
  font-size: var(--font-size-sm);
  line-height: calc(1em + 10px);
  padding: 0 10px;
}

/*タグリスト
-----------------------------*/
.tag-select {
  margin-bottom: 40px;
}
.tag-select__box {
  min-width: 160px;
}
.tag-select__box::after {
  right: 12px;
}
.tag-select__dropdown {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  padding: 1em 2.5em 1em 1em;
}

/*==================================================
 ニュース詳細
================================================== */
.news-detail::before {
  display: none;
}
.news-detail__post {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  margin-bottom: 1em;
}
/*==================================================
 お問い合わせ
================================================== */
.contact-form__table {
  margin-bottom: 40px;
}
.contact-form__table tr th .optional-mark,
.contact-form__table tr th .required-mark {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  padding: 0 0.5em;
  margin-top: 2px;
}
.contact-form__table tr td select,
.contact-form__table tr td textarea,
.contact-form__table tr td input[type=tel],
.contact-form__table tr td input[type=num],
.contact-form__table tr td input[type=text],
.contact-form__table tr td input[type=email],
.contact-form__table tr td input[type=url] {
  font-size: 1em;
  line-height: 1.5;
  padding: 0.5em;
}
.contact-form .contact-submits-wrap {
  padding-top: 16px;
}
.contact-form .contact-submits-wrap > * {
  width: 75vw;
  max-width: 320px;
  height: 60px;
  border-width: 2px;
  margin: 0 auto 20px;
}
.contact-form .contact-submits-wrap > *:last-child {
  margin-bottom: 0;
}

/*==================================================
 お問い合わせ完了
================================================== */
/*===============================================
  プライバシーポリシー
===============================================*/
.privacy-policy__box {
  margin-bottom: clamp(48px, 15vw, 60px);
}

/*==================================================
 サイトマップ
================================================== */
.sitemap-list__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(5, 1fr);
  grid-auto-flow: column;
  gap: 10px 20px;
}
@media screen and (max-width: 450px) {
  .sitemap-list__items {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
  }
}
.sitemap-list__link {
  padding: 1.25em 0.75em;
}

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