@charset "UTF-8";
@import url(all.css);
/*rootの変数宣言*/
:root {
  /*==============================
      カラー    
  ==============================*/
  --color-font: #322013;
  --color-white: #ffffff;
  --color-green:#6f9e13;
  --color-orange:#e68800;
  --color-beige:#f4e4cc;
  /*カレントカラー*/
  --color-current: #e68800;
  /*テキストリンクカラー*/
  --color-textlink:#e68800;
  /*必須ボタンカラー*/
  --color-required: #e68800;
  /*任意ボタンカラー*/
  --color-optional: #e68800;
  /*ラジオボタンカラー*/
  --color-radio: #e68800;
  /*チェックボタンカラー*/
  --color-check: #e68800;
  /*==============================
      フォントファミリー
  ==============================*/
  /*タイトル*/
  --font-family-heading: "Zen Maru Gothic", sans-serif;
  /*本文*/
  --font-family-body: "Zen Kaku Gothic New", sans-serif;
  --font-family-m: "M PLUS 1p", sans-serif;
  --font-family-yuji: "Yuji Syuku", serif;
  /*==============================
      フォントサイズ
  ==============================*/
  /*基準のフォントサイズ*/
  --font-size-body: 1.6rem;
  /*==============================
      行間
  ==============================*/
  /*基準の行間*/
  --line-height-base: 2.25;
  /*==============================
      文字間
  ==============================*/
  /*基準の文字間*/
  --letter-spacing-base: 0.03em;
}

/*rootの変数宣言*/
:root {
  /*==============================
      カラー    
  ==============================*/
  --color-font: #322013;
  --color-white: #ffffff;
  --color-green:#6f9e13;
  --color-orange:#e68800;
  --color-beige:#f4e4cc;
  /*カレントカラー*/
  --color-current: #e68800;
  /*テキストリンクカラー*/
  --color-textlink:#e68800;
  /*必須ボタンカラー*/
  --color-required: #e68800;
  /*任意ボタンカラー*/
  --color-optional: #e68800;
  /*ラジオボタンカラー*/
  --color-radio: #e68800;
  /*チェックボタンカラー*/
  --color-check: #e68800;
  /*==============================
      フォントファミリー
  ==============================*/
  /*タイトル*/
  --font-family-heading: "Zen Maru Gothic", sans-serif;
  /*本文*/
  --font-family-body: "Zen Kaku Gothic New", sans-serif;
  --font-family-m: "M PLUS 1p", sans-serif;
  --font-family-yuji: "Yuji Syuku", serif;
  /*==============================
      フォントサイズ
  ==============================*/
  /*基準のフォントサイズ*/
  --font-size-body: 1.6rem;
  /*==============================
      行間
  ==============================*/
  /*基準の行間*/
  --line-height-base: 2.25;
  /*==============================
      文字間
  ==============================*/
  /*基準の文字間*/
  --letter-spacing-base: 0.03em;
}

/*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.5rem;
}
.breadcrumb__list {
  width: 1080px;
  margin-inline: auto;
  display: flex;
  justify-content: flex-start;
  gap: 1em;
}
.breadcrumb__item {
  display: flex;
  line-height: 1;
}
.breadcrumb__item::after {
  content: "|";
  margin-left: 1em;
  pointer-events: none;
  color: var(--color-font);
}
.breadcrumb__item:first-child {
  color: var(--color-orange);
}
.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;
}

/*ページネーション*/
.paginated__link {
  transition: all 0.3s;
}
.paginated__link: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;
}

.sns__item a {
  transition: all 0.3s;
}
.sns__item a:has(img):hover {
  opacity: 0.5;
}

.com-btn {
  transition: all 0.3s;
}
.com-btn:hover {
  background-color: var(--color-white);
  color: var(--color-orange);
}

.entrance-news__btn {
  transition: all 0.3s;
}
.entrance-news__btn:hover {
  opacity: 0.5;
}

.entrance-section__item a {
  transition: all 0.3s;
}
.entrance-section__item a:hover {
  opacity: 0.5;
}

.top-campaign__item a {
  transition: all 0.3s;
}
.top-campaign__item a:has(img):hover {
  opacity: 0.5;
}

.top-link__item {
  transition: all 0.3s;
}
.top-link__item:hover {
  transform: translateY(-2rem);
}

.top-targetlinks__item a {
  transition: all 0.3s;
}
.top-targetlinks__item a:hover {
  opacity: 0.5;
}

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

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

/*追従ボタン*/
.follow_btn {
  transition: all 0.3s;
}
.follow_btn:hover {
  transition: opacity 0.3s;
}
.follow_btn:hover:hover {
  opacity: 0.5;
}

/*フッターナビ*/
.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: 2.5rem 3rem 4rem 4rem;
}
.header nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.header .logo {
  height: clamp(43px, 3.39vw, 65px);
}
.header .gnav__list {
  font-size: clamp(12px, 0.83vw, 16px);
}

/*==============================
    メインビジュアル
==============================*/
.mv {
  padding-block: 6rem;
}
.mv__title {
  position: absolute;
  top: calc(50% + 3rem);
  left: 6.61%;
  transform: translateY(-50%);
  aspect-ratio: 836/504;
  width: 43.54%;
}

/*==============================
    サブビジュアル
==============================*/
.sv__title {
  left: calc(50% - clamp(360px, 28.13vw, 540px));
}
.sv__title > span {
  aspect-ratio: 570/140;
  width: clamp(380px, 29.69vw, 570px);
  font-size: clamp(25px, 1.93vw, 37px);
}
.sv__title > span > span {
  padding-bottom: clamp(13px, 1.04vw, 20px);
}

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

/*==============================
    共通テーブル
==============================*/
.com-table tr th {
  padding-inline: 3rem;
  width: 21rem;
}
.com-table tr td {
  padding-inline: 6rem 2.5rem;
}

/*==============================
    エントランス
==============================*/
.entrance-section {
  padding-block: 14.8rem 8.3rem;
}
.entrance-section__list {
  gap: clamp(25px, 1.93vw, 37px);
}
.entrance-section__item {
  width: 45.83vw;
  max-width: 880px;
}
.entrance-section__title {
  width: 68.18%;
}
.entrance-section__title::before {
  width: clamp(19px, 1.46vw, 28px);
}
.entrance-section__title .en {
  width: 16rem;
  font-size: clamp(11px, 0.83vw, 16px);
}
.entrance-section__title .ja {
  font-size: clamp(25px, 1.98vw, 38px);
}

.entrance-news {
  padding-bottom: 8rem;
}

/*==============================
    TOP
==============================*/
.top-intro {
  padding-block: 4rem 10rem;
}
.top-intro .com-inbox {
  align-items: flex-start;
}
.top-intro__text {
  padding-top: 10rem;
}
.top-intro__image {
  margin-left: -42rem;
  width: 86rem;
  flex-shrink: 0;
}

.top-worry {
  padding-block: 9.5rem 27.2rem;
}
.top-worry::before {
  top: 4.6rem;
  left: calc(50% + 30rem);
}
.top-worry .com-inbox {
  position: relative;
  z-index: 0;
}
.top-worry .com-inbox > .top-worry__image {
  width: 83.4rem;
  margin-left: 8rem;
}
.top-worry__item {
  position: absolute;
  width: 24rem;
}
.top-worry__item:first-child, .top-worry__item:nth-child(3) {
  left: 0;
}
.top-worry__item:nth-child(2), .top-worry__item:last-child {
  right: 0;
}
.top-worry__item:first-child, .top-worry__item:nth-child(2) {
  top: 14.3rem;
}
.top-worry__item:nth-child(3), .top-worry__item:last-child {
  bottom: -9.2rem;
}
.top-worry__item:nth-child(4) {
  right: calc(50% - 2rem);
  bottom: -26.2rem;
}

.top-leave {
  padding-block: 19rem 5rem;
}
.top-leave__h3 {
  margin-bottom: 5.8rem;
}
.top-leave__h3::after {
  left: calc(100% - 6rem);
}
.top-leave .com-inbox > figure {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  aspect-ratio: 1280/260;
  width: clamp(1080px, 66.67vw, 1280px);
}
.top-leave__text {
  width: 78rem;
  margin-inline: auto;
}
.top-leave__item:nth-child(even) {
  margin-top: 4rem;
}

.top-link {
  padding-block: 5rem;
}

.top-campaign {
  padding-block: 6.6rem 13rem;
}
.top-campaign .com-inbox {
  align-items: flex-start;
}
.top-campaign__image {
  margin-left: -6.1rem;
  margin-top: -6rem;
  margin-right: -8.4rem;
  margin-bottom: -10.8rem;
  flex-shrink: 0;
  width: 61.2rem;
}
.top-campaign__text {
  margin-right: -1.5rem;
}

.top-targetlinks {
  padding-block: 10rem;
}
.top-targetlinks__item {
  width: 33rem;
  flex-shrink: 0;
}

.top-news {
  padding-block: 8rem;
}
.top-news .com-inbox {
  gap: 6.5rem;
}
.top-news .com-news__list {
  width: 68rem;
  flex-shrink: 0;
}

/*==============================
    塗装工事
==============================*/
.coating-service .com-service__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4.8rem;
}
.coating-service .com-service__item:first-child, .coating-service .com-service__item:nth-child(2) {
  width: 51.6rem;
  flex-shrink: 0;
}
.coating-service .com-service__item:first-child .com-service__title::after, .coating-service .com-service__item:nth-child(2) .com-service__title::after {
  left: calc(50% + 9.6rem);
  bottom: calc(100% - 1.3rem);
}
.coating-service .com-service__item:not(.coating-service .com-service__item:first-child, .coating-service .com-service__item:nth-child(2)) {
  width: 32.8rem;
}
.coating-service .com-service__item:not(.coating-service .com-service__item:first-child, .coating-service .com-service__item:nth-child(2)) .com-service__image {
  aspect-ratio: 328/280;
}

/*==============================
    リフォーム・外構工事
==============================*/
/*==============================
    防水工事
==============================*/
/*==============================
    下層共通デザイン
==============================*/
.com-reason {
  padding-block: 3rem 11rem;
}
.com-reason__h3::before {
  border-radius: 0 2rem 2rem 0;
  right: -10rem;
  aspect-ratio: 1600/353;
}
.com-reason__box {
  flex-shrink: 0;
  width: 24rem;
}
.com-reason__image {
  aspect-ratio: 680/454;
  width: 68rem;
  flex-shrink: 0;
}
.com-reason__item:nth-child(odd) .com-reason__image {
  margin-left: -25.5rem;
}
.com-reason__item:nth-child(even) {
  flex-direction: row-reverse;
}
.com-reason__item:nth-child(even) .com-reason__image {
  margin-right: -25.5rem;
}

.com-service {
  padding-block: 0 13rem;
}
.com-service .com-title01 {
  margin-bottom: 6rem;
}
.com-service__btn {
  width: 96rem;
  height: 27rem;
  transition: all 0.3s;
}
.com-service__btn:hover {
  opacity: 0.5;
}

/*==============================
    アクセス・会社概要
==============================*/
.access-company {
  padding-block: 9.5rem 7.5rem;
}
.access-company__wrap::before {
  width: clamp(1150px, 66.67vw, 1280px);
}

.access-area {
  padding-block: 0 11rem;
}
.access-area__text {
  flex-shrink: 0;
  margin-top: 2rem;
}
.access-area__text > div {
  width: 59.4rem;
}
.access-area__image {
  margin-left: -6rem;
  flex-shrink: 0;
  width: 56.1rem;
}

.access-greeting {
  padding-block: 11rem;
  overflow: hidden;
}
.access-greeting .com-title01 {
  margin-bottom: 7.2rem;
}
.access-greeting__wrap {
  align-items: flex-start;
}
.access-greeting__image {
  width: 73.6rem;
  flex-shrink: 0;
  margin-right: -28.4rem;
  margin-top: -6rem;
}

.access-staff {
  padding-block: 11rem;
}

/*==============================
    お知らせ一覧
==============================*/
.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: 27rem;
}
.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;
}
/*==============================
    フッター
==============================*/
.footer__inner {
  width: 1080px;
  padding-block: 8rem;
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
}
.footer-nav__list {
  display: grid;
  grid-template-rows: repeat(6, 1fr);
  line-height: 1;
  grid-auto-flow: column;
  gap: 2rem 7rem;
}