@charset "UTF-8";

/*--------------- ▽ header ▽ ---------------*/
.header {
  background: var(--col-base);
  box-sizing: border-box;
  padding: 15px 40px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
}
.header h1 span {
  display: block;
}
.header-logo {
  display: block;
  width: fit-content;
}
.header-logo:hover {
  opacity: 0.7;
}
.header-info {
  margin-bottom: 12px;
}
.header-right {
  margin: 0 0 0 auto;
}

/*-------------------
header-nav
--------------------*/
.header-nav-list {
  margin: 0 0 0 auto;
  gap: 30px;
}
.header-nav-link {
  font-weight: 800;
}
.header-nav-link:hover {
  color: var(--col-main);
}

/*-------------------
現在の表示ページ
--------------------*/
.header-nav-link.current {
  color: var(--col-main);
}

.header-nav-link.current .nav-wrap::before {
  background: var(--col-main);
  border: 1px solid --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;
  box-sizing: border-box;
  padding: 80px 0 0;
}
.footer-nav {
  width: 540px;
  gap: 40px;
  margin: 0 0 0 auto;
}
.footer-nav-list {
  gap: 30px;
  flex-direction: column;
  position: relative;
  box-sizing: border-box;
  padding: 0 0 0 25px;
  height: fit-content;
}
.footer-nav-list::before {
  position: absolute;
  content: "";
  background: var(--col-main);
  width: 1px;
  height: 100%;
  bottom: 0;
  left: 0;
  margin: auto;
  top: 0;
  background-size: contain;
  z-index: 2;
  transition: all 0.3s ease;
}
.footer-nav-link {
  font-weight: 800;
}
.footer-nav-link:hover{
  opacity: 0.7;
}
.footer-info {
  width: 450px;
}
.footer-logo-wrap {
  gap: 20px;
  margin: 0 auto 40px;
}
.footer-logo {
  display: block;
  width: fit-content;
}
.footer-logo:hover {
  opacity: 0.7;
}
.footer #copyright {
  padding: 5px 0;
  background: var(--col-text);
  color: var(--col-wh);
  margin-top: 80px;
}
.footer #copyright small {
  color: var(--col-wh);
  font-size: 12px;
}
.footer #copyright small a {
  color: var(--col-wh);
}
.footer #copyright small a:hover {
  opacity: 0.7;
}

/*--------------- △ footer △ ---------------*/
/*--------------- ▽ 共通 ▽ ---------------*/
/*--------------- △ 共通 △ ---------------*/
/*--------------- ▽ top-page ▽ ---------------*/
.top-section {
  padding: 100px 0;
  box-sizing: border-box;
}

/*--------------- ▼ main-visual ▼ ---------------*/
.mv {
  background: url(../img/mv/mv-bg.jpg) no-repeat center center/cover;
  width: 100%;
  height: 740px;
  position: relative;
  margin-top: 104px;
}
.mv::before {
  position: absolute;
  content: "";
  background: url(../img/common/pat01.jpg) repeat;
  width: 100%;
  height: 10px;
  left: 0;
  margin: auto;
  right: 0;
  top: 0;
  transition: all 0.3s ease;
}
.mv::after {
  position: absolute;
  content: "";
  background: url(../img/common/pat01.jpg) repeat;
  width: 100%;
  height: 10px;
  left: 0;
  margin: auto;
  right: 0;
  bottom: 0;
  transition: all 0.3s ease;
}
.mv-container {
  position: absolute;
  left: clamp(100px,10vw,200px);
  top: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
}
.mv-catch {
  margin-bottom: 40px;
}
.mv-catch .ttl-main {
  display: block;
  color: var(--col-wh);
  font-size: 7rem;
  font-weight: 800;
  margin-bottom: 40px;
}
.mv-catch .ttl-sub {
  display: inline-block;
  color: var(--col-wh);
  font-size: 2.6rem;
  letter-spacing: 0.04em;
  font-weight: 800;
}
.mv-catch .ttl-sub .text01 {
  margin-bottom: 15px;
  display: inline-block;
}
.mv-catch .ttl-sub .text02 .works {
  margin-right: 10px;
}

/*--------------- ▲ main-visual ▲ ---------------*/
/*--------------- ▼ top ▼ ---------------*/
/*--------------------
top-news
---------------------*/
.top-news {
  padding: 90px 0 0;
}
.top-news-ttl .ttl-en {
  font-size: 5rem;
  display: block;
}
.top-news-ttl .ttl-ja {
  display: block;
  font-size: 2rem;
  font-weight: 800;
}
.top-news .news-list {
  width: 750px;
}
.top-news .inbox {
  position: relative;
}
.top-news-btn {
  position: absolute;
  bottom: 0;
  left: 0;
}

/*--------------------
top-about
---------------------*/
.top-about .outbox {
  background: url(../img/top/about-deco-ink-l.png) no-repeat left top 100px, url(../img/top/about-deco-ink-r.png) no-repeat right top 0, var(--col-wh);
  padding: 90px 0 100px;
}
.top-about .inbox {
  max-width: 1380px;
}
.top-about-btn {
  margin: 0 auto;
}
.top-about-text {
  position: relative;
  width: fit-content;
  margin: 0 auto 60px;
}
.top-about-text::before {
  position: absolute;
  content: "";
  background: url(../img/top/about-illust-l.png) no-repeat;
  width: 211px;
  height: 201px;
  left: -250px;
  margin: auto;
  top: -50px;
  background-size: contain;
  transition: all 0.3s ease;
}
.top-about-text::after {
  position: absolute;
  content: "";
  background: url(../img/top/about-illust-r.png) no-repeat;
  width: 223px;
  height: 287px;
  margin: auto;
  right: -280px;
  top: -100px;
  background-size: contain;
  transition: all 0.3s ease;
}
.top-about-list {
  gap: 60px 40px;
  box-sizing: border-box;
  position: relative;
  box-sizing: border-box;
  padding: 0 60px 80px;
  margin: 0 auto 50px;
  max-width: 1380px;
}
.top-about-list::before {
  position: absolute;
  content: "";
  background: url(../img/common/pat01.jpg) repeat;
  width: 100%;
  height: calc(100% - 100px);
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  transition: all 0.3s ease;
}
.top-about-item {
  width: calc(50% - 40px);
  max-width: 580px;
  background: url(../img/common/deco-ink01.png) no-repeat top right, var(--col-wh);
  border: 6px solid var(--col-sub02);
  box-sizing: border-box;
  padding: clamp(30px, 2vw, 40px);
  position: relative;
  z-index: 1;
}
.top-about-item::before {
  position: absolute;
  content: "";
  background: var(--col-wh);
  width: 60px;
  height: 6px;
  bottom: -6px;
  margin: auto;
  right: 20px;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: 1;
}
.top-about-item-wrap {
  gap: 20px;
  margin-bottom: 15px;
}
.top-about-item-ttl {
  font-size: clamp(2.9rem, 2vw, 3.4rem);
  font-weight: 800;
}
.top-about-item-num {
  position: absolute;
  font-size: 5rem;
  font-family: var(--font-ttl-en);
  display: block;
  top: -36px;
  left: 20px;
  width: fit-content;
  height: fit-content;
  box-sizing: border-box;
  padding: 10px;
  line-height: 1.1;
  z-index: 2;
}
.top-about-item-num::first-letter {
  color: var(--col-sub02);
}
.top-about-item-num::before {
  position: absolute;
  content: "";
  background: var(--col-wh);
  width: 120px;
  height: 6px;
  margin: auto;
  left: 0;
  top: 30px;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: -1;
}
.top-about-item-img {
  position: relative;
  aspect-ratio: 1/1;
  width: clamp(160px, 15vw, 180px);
  height: fit-content;
}
.top-about-item-img::before {
  position: absolute;
  content: "";
  border: 2px solid var(--col-wh);
  z-index: 1;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}

/*--------------------
top-service
---------------------*/
.top-service {
  overflow: hidden;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0;
}
.top-service .outbox {
  max-width: 1200px;
}
.top-service-list {
  gap: 40px;
  position: relative;
}
.top-service-list-wrap {
  position: relative;
  box-sizing: border-box;
  padding: 0 0 80px;
}
.top-service-list-wrap::before {
  width: calc(100% - 170px);
  height: calc(100% - 100px);
  position: absolute;
  content: "";
  background: url(../img/common/pat02.jpg);
  bottom: 0;
  margin: auto;
  right: 0;
  transition: all 0.3s ease;
}
.top-service-item {
  width: calc(50% - 40px);
  border: 6px solid var(--col-sub02);
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  background: var(--col-wh);
}
.top-service-item:nth-child(1)::after {
  position: absolute;
  content: "";
  background: url(../img/top/service-img01.png) no-repeat top right;
  width: 150px;
  height: 120px;
  margin: auto;
  right: 0;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.top-service-item:nth-child(2)::after {
  position: absolute;
  content: "";
  background: url(../img/top/service-img02.png) no-repeat top right;
  width: 150px;
  height: 120px;
  margin: auto;
  right: 0;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.top-service-item::before {
  position: absolute;
  content: "";
  border: 1px dashed var(--col-sub02);
  width: 100%;
  height: 1px;
  bottom: 80px;
  left: 0;
  margin: auto;
  right: 0;
  transition: all 0.3s ease;
}
.top-service-item-ttl {
  font-size: clamp(2.5rem, 2vw, 2.8rem);
  margin-bottom: 15px;
  font-weight: 800;
}
.top-service-item-wrap {
  padding: clamp(30px, 2vw, 40px);
  position: relative;
  display: block;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.top-service-item-btn {
  margin: 0 30px 30px auto;
  text-align: right;
}

/*--------------------
top-comparison
---------------------*/
.top-comparison {
  padding: 150px 0 100px;
}
.top-comparison-box {
  position: relative;
  border: 6px solid var(--col-main-light);
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 100px 80px 100px;
}
.top-comparison-box::before {
  position: absolute;
  content: "";
  background: var(--col-base);
  width: 1000px;
  height: 6px;
  left: 0;
  margin: auto;
  right: 0;
  top: -6px;
  transition: all 0.3s ease;
}
.top-comparison-ttl {
  transform: translateY(-40%);
  top: 0;
  margin: 0 auto;
}
.top-comparison-text {
  margin: 0 auto 60px;
}
.top-comparison-table {
  position: relative;
  margin: 0 auto 50px;
}
.top-comparison-table::before {
  position: absolute;
  content: "";
  border: 6px solid var(--col-main);
  width: 420px;
  height: 100%;
  bottom: 0;
  margin: auto;
  right: 414px;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.top-comparison-table .ttl-row th {
  width: 420px;
  background: var(--col-main);
  color: var(--col-wh);
  font-size: 2.4rem;
  font-weight: 800;
  box-sizing: border-box;
  padding: 22px 15px;
  text-align: center;
}
.top-comparison-table .ttl-row th:nth-child(3) {
  background: var(--col-gry);
}
.top-comparison-table .ttl-row .none {
  width: 240px;
  background: none;
}
.top-comparison-table .row th {
  vertical-align: middle;
}
.top-comparison-table .row th .check {
  position: relative;
  display: block;
  font-weight: 700;
  box-sizing: border-box;
  padding: 0 0 0 32px;
}
.top-comparison-table .row th .check::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon-check.png) no-repeat;
  width: 23px;
  height: 23px;
  bottom: 0;
  left: 0;
  margin: auto;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.top-comparison-table .row td {
  box-sizing: border-box;
  padding: 20px 10px;
  background: var(--col-wh);
  text-align: center;
  font-weight: 700;
  border-bottom: 1px dashed var(--col-gry);
}
.top-comparison-table .row:last-child td {
  border-bottom: none;
}
.top-comparison-btn {
  margin: 0 auto;
}

/*--------------------
top-flow
---------------------*/
.top-flow {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 30px 0 100px;
  position: relative;
  overflow: hidden;
}
.top-flow::before {
  position: absolute;
  content: "";
  background: url(../img/common/pat01.jpg) repeat;
  width: 1700px;
  height: 380px;
  bottom: 0;
  margin: auto;
  left: 0;
  transition: all 0.3s ease;
}
.top-flow-list {
  gap: 13px;
  counter-reset: number 0;
}
.top-flow-item {
  width: 260px;
  min-height: 400px;
  box-sizing: border-box;
  padding: 30px;
  background: var(--col-wh);
  border-bottom: 4px solid var(--col-sub02);
  position: relative;
}
.top-flow-item::before {
  position: absolute;
  content: "0" counter(number);
  counter-increment: number 1;
  bottom: 0;
  left: 20px;
  margin: auto;
  top: -15px;
  background-size: contain;
  font-size: 3rem;
  font-family: var(--font-ttl-en);
}
.top-flow-item-ttl-wrap {
  flex-direction: column;
  gap: 25px;
  margin: 0 auto 15px;
}
.top-flow-item-icon {
  margin: 0 auto;
}
.top-flow-item-ttl {
  font-weight: 800;
  text-align: center;
  margin: 0 auto;
  font-size: 2rem;
}

/*--------------------
top-area
---------------------*/
.top-area-text {
  width: 600px;
}
.top-area-container {
  padding: 40px 0;
  margin: 0 auto 50px;
}
.top-area-container-wrap {
  max-width: 1080px;
  margin: 0 auto;
}
.top-area-container-main {
  width: 490px;
  position: relative;
}
.top-area-container-list {
  width: 250px;
  gap: 10px;
  position: absolute;
  top: 50px;
  left: 0;
}
.top-area-container-item {
  min-width: 120px;
  text-align: center;
  box-sizing: border-box;
  padding: 6px 12px;
  font-size: 2rem;
  font-weight: 800;
  border: 4px solid var(--col-main);
  width: fit-content;
}
.top-area-container-img {
  display: block;
  width: fit-content;
  position: relative;
  margin: 0 0 0 auto;
  text-align: right;
}
.top-area-note {
  font-weight: 700;
}

/*--------------------
top-recruit
---------------------*/
.top-recruit {
  padding: 0 0 100px;
}
.top-recruit-bnr {
  background: url(../img/top/recruit-bnr-bg.jpg) no-repeat center center/cover;
  box-sizing: border-box;
  padding: 80px;
  border-radius: 10px;
  position: relative;
  display: block;
  width: 100%;
  bottom: 0;
}
.top-recruit-bnr:hover{
  opacity: 0.7;
  bottom: 5px;
}
.top-recruit-bnr::before {
  position: absolute;
  content: "";
  border: 1px solid var(--col-wh);
  border-radius: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.top-recruit-bnr-ttl {
  margin-bottom: 40px;
}
.top-recruit-bnr-ttl .ttl-ja {
  font-size: 5.4rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.top-recruit-bnr-ttl .ttl-en {
  font-size: 2rem;
}
.top-recruit-bnr-btn {
  position: absolute;
  bottom: 80px;
  right: 120px;
}

/*--------------------
com-contact
---------------------*/
.com-contact-ttl {
  margin: 0 auto 60px;
}
.com-contact-ttl .ttl-en {
  font-size: 7rem;
  color: var(--col-sub02-light);
  text-align: center;
  margin: 0 auto 20px;
}
.com-contact-ttl .ttl-ja {
  font-size: 3.6rem;
  font-weight: 800;
  text-align: center;
  margin: 0 auto;
  color: var(--col-wh);
}
.com-contact-text {
  margin: 0 auto 40px;
}
.com-contact-info {
  background: var(--col-wh);
  box-sizing: border-box;
  padding: 40px 60px;
  border-radius: 10px;
  gap: 100px;
  position: relative;
  z-index: 1;
}
.com-contact-tel {
  position: relative;
}
.com-contact-tel::before {
  position: absolute;
  content: "";
  border-left: 1px dashed var(--col-gry);
  width: 1px;
  height: 60px;
  bottom: 0;
  margin: auto;
  right: -50px;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.com-contact-wrap {
  position: relative;
}
.com-contact-wrap::before {
  position: absolute;
  content: "";
  background: url(../img/common/contact-illust-l.png) no-repeat;
  width: 246px;
  height: 293px;
  left: -100px;
  margin: auto;
  top: 30px;
  background-size: contain;
  transition: all 0.3s ease;
}
.com-contact-wrap::after {
  position: absolute;
  content: "";
  background: url(../img/common/contact-illust-r.png) no-repeat;
  width: 309px;
  height: 351px;
  margin: auto;
  right: -120px;
  top: 50px;
  background-size: contain;
  transition: all 0.3s ease;
}

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

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

/*--------------- ▼ sub-visual ▼ ---------------*/
.sv {
  position: relative;
  width: 100%;
  height: 360px;
  margin-top: 104px;
}
.sv::before {
  position: absolute;
  content: "";
  background: url(../img/common/pat01.jpg);
  width: 100%;
  height: 10px;
  left: 0;
  margin: auto;
  right: 0;
  top: 0;
  transition: all 0.3s ease;
}
.sv::after {
  position: absolute;
  content: "";
  background: url(../img/common/pat01.jpg);
  width: 100%;
  height: 10px;
  left: 0;
  margin: auto;
  right: 0;
  bottom: 0;
  transition: all 0.3s ease;
}
.sv .inbox {
  width: 100%;
}
.sv-ttl {
  font-size: 5rem;
  color: var(--col-wh);
  font-weight: 800;
}

/*---------------------
各ページの画像設定
-----------------------*/
.sv-about {
  background: url(../img/sv/sv-about-bg.jpg) no-repeat center center/cover;
}

.sv-painting {
  background: url(../img/sv/sv-painting-bg.jpg) no-repeat center center/cover;
}

.sv-exterior {
  background: url(../img/sv/sv-exterior-bg.jpg) no-repeat center center/cover;
}

.sv-info {
  background: url(../img/sv/sv-info-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-text);
  font-size: 14px;
  float: left;
  margin-right: 20px;
}
#bread-clumb li:after {
  content: ">";
  position: absolute;
  display: block;
  right: -15px;
  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);
  border-bottom: 1px solid;
  display: block;
}
#bread-clumb li a:hover {
  opacity: 0.7;
}

/*--------------- ▲ ぱんくず ▲ ---------------*/
/*--------------- ▼ sub02_about ▼ ---------------*/
/*-----------------------
about-quality
-------------------------*/
.about-quality {
  padding: 100px 0 20px;
}
.about-quality .inbox {
  position: relative;
}
.about-quality .inbox::before {
  position: absolute;
  content: "";
  background: url(../img/common/deco-ink02.png) no-repeat;
  width: 413px;
  height: 361px;
  left: -420px;
  z-index: -2;
  margin: auto;
  top: 250px;
  background-size: contain;
  transition: all 0.3s ease;
}
.about-quality .inbox::after {
  position: absolute;
  content: "";
  background: url(../img/common/deco-ink03.png) no-repeat;
  width: 394px;
  height: 370px;
  right: -420px;
  z-index: -2;
  margin: auto;
  top: 250px;
  background-size: contain;
  transition: all 0.3s ease;
}
.about-quality-text {
  position: relative;
  margin: 0 auto 50px;
}
.about-quality-text::before {
  position: absolute;
  content: "";
  background: url(../img/about/quality-img01.png) no-repeat;
  width: 211px;
  height: 201px;
  margin: auto;
  left: -80px;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.about-quality-text::after {
  position: absolute;
  content: "";
  background: url(../img/about/quality-img02.png) no-repeat;
  width: 223px;
  height: 287px;
  margin: auto;
  right: -80px;
  top: -120px;
  background-size: contain;
  transition: all 0.3s ease;
}
.about-quality-btn-list {
  gap: 30px;
}
.about-quality-btn-item {
  width: 380px;
}

/*-----------------------
about-section
-------------------------*/
.about-section {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  padding: 110px 0 80px;
}
.about-section::before {
  position: absolute;
  content: "";
  background: url(../img/common/pat02.jpg);
  width: calc(1280px + 50% - 640px);
  height: calc(100% - 390px);
  bottom: 0;
  margin: auto;
  right: 0;
  transition: all 0.3s ease;
}

/*-----------------------
about-guide
-------------------------*/
.about-guide .outbox {
  max-width: 1280px;
}
.about-guide-text {
  margin: 0 auto 50px;
}
.about-guide-list {
  gap: 40px;
  position: relative;
  box-sizing: border-box;
  padding: 0 0 80px;
}
.about-guide-list::before {
  position: absolute;
  content: "";
  background: url(../img/common/pat01.jpg);
  width: 100%;
  height: calc(100% - 50px);
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  transition: all 0.3s ease;
}

/*-----------------------
about-message
-------------------------*/
.about-message {
  padding: 20px 0 120px;
}
.about-message .outbox {
  max-width: 1280px;
}
.about-message-container {
  padding: 70px 0;
}
.about-message-img {
  aspect-ratio: 1/1;
  width: 380px;
  height: 380px;
}
.about-message-text {
  width: 650px;
}
.about-message-text .sign {
  text-align: right;
}

/*--------------- ▲ sub02_about ▲ ---------------*/
/*--------------- ▼ sub03_painting ▼ ---------------*/
.painting-section-wrap {
  box-sizing: border-box;
  padding: 110px 0 0;
}

/*-----------------------
com-painting
-------------------------*/
.com-painting-container {
  margin-bottom: 60px;
  padding: 50px;
}
.com-painting-container:last-child {
  margin-bottom: 0;
}
.com-painting-container-img {
  aspect-ratio: 300/220;
  width: 300px;
  height: 220px;
}
.com-painting-container-text {
  width: 640px;
}
.com-painting-about-container {
  margin-bottom: 60px;
}
.com-painting-about-container:last-child {
  margin-bottom: 0;
}

.painting-section {
  margin-bottom: 100px;
}
.painting-section:last-child {
  margin-bottom: 0;
}
.painting-section .sub-section {
  padding: 0;
}

/*-----------------------
painting-wall
-------------------------*/
.painting-wall-flow-list {
  flex-direction: column;
  gap: 30px;
  counter-reset: number 0;
  box-sizing: border-box;
  padding: 0 30px;
  margin-bottom: 30px;
}
.painting-wall-flow-item {
  position: relative;
  box-sizing: border-box;
  padding: 0 0 0 150px;
  display: block;
}
.painting-wall-flow-item::before {
  position: absolute;
  content: "Step 0" counter(number);
  counter-increment: number 1;
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
  color: var(--col-main);
  font-family: var(--font-ttl-en);
  font-size: 2.4rem;
}
.painting-wall-flow-item::after {
  position: absolute;
  content: "";
  background: url(../img/common/deco03.png) no-repeat;
  width: 3px;
  height: 14px;
  bottom: -25px;
  left: 40px;
  margin: auto;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: 1;
}
.painting-wall-flow-item:last-child::after {
  content: none;
}
.painting-wall-flow-item-text {
  font-weight: 700;
}
.painting-wall-flow-item-text .large {
  font-weight: 800;
  font-size: 2rem;
}
.painting-wall-flow-note-list {
  box-sizing: border-box;
  padding: 0 20px;
}
.painting-wall-price-text {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 25px;
  box-sizing: border-box;
  padding: 0 30px;
}
.painting-wall-price-note-list {
  box-sizing: border-box;
  padding: 0 30px;
}

/*-----------------------
painting-roof
-------------------------*/
.painting-roof-category-list {
  margin-bottom: 25px;
}

/*-----------------------
painting-leak
-------------------------*/
.painting-leak-text {
  width: 655px;
}
.painting-leak-list {
  margin-top: 30px;
}
.painting-leak-list li {
  font-size: 1.7rem;
}

/*-----------------------
painting-faq
-------------------------*/
.painting-faq {
  padding: 110px 0 130px;
}
.painting-faq-list {
  gap: 40px;
  flex-direction: column;
  gap: 40px;
}
.painting-faq-item {
  position: relative;
}
.painting-faq-item-q {
  position: relative;
  background: var(--col-main);
  color: var(--col-wh);
  font-size: 2.8rem;
  font-weight: 800;
  box-sizing: border-box;
  padding: 15px 40px;
  line-height: 1.4;
}
.painting-faq-item-q::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon-faq.png) no-repeat;
  width: 60px;
  height: 60px;
  left: -30px;
  margin: auto;
  top: -30px;
  background-size: contain;
  transition: all 0.3s ease;
}
.painting-faq-item-a {
  background: var(--col-wh);
  box-sizing: border-box;
  padding: 20px 40px;
}

/*--------------- ▲ sub03_painting ▲ ---------------*/
/*--------------- ▼ sub04_exterior ▼ ---------------*/
/*-----------------------
exterior-about
-------------------------*/
.exterior-about {
  padding: 110px 0 0;
}
.exterior-about-container {
  box-sizing: border-box;
  padding: 50px;
}
.exterior-about-container-img {
  aspect-ratio: 300/200;
  width: 300px;
  height: 200px;
}
.exterior-about-container-text {
  width: 640px;
}

/*-----------------------
exterior-menu
-------------------------*/
.exterior-menu {
  padding: 110px 0 0;
}
.exterior-menu-outbox {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1280px;
  box-sizing: border-box;
  padding: 0 0 80px;
}
.exterior-menu-outbox::before {
  position: absolute;
  content: "";
  background: url(../img/common/pat01.jpg);
  width: 100%;
  height: calc(100% - 80px);
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  transition: all 0.3s ease;
}
.exterior-menu-list {
  gap: 30px;
}
.exterior-menu-item {
  width: 340px;
  min-height: 440px;
}
.exterior-menu-item-ttl {
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin: 0 auto 20px;
}
.exterior-menu-item-img {
  aspect-ratio: 240/180;
  width: 240px;
  height: 180px;
  margin: 0 auto 20px;
}

/*-----------------------
exterior-method
-------------------------*/
.exterior-method-container {
  box-sizing: border-box;
  padding: 50px;
  margin: 0 auto 50px;
}
.exterior-method-container-img {
  aspect-ratio: 300/200;
  width: 300px;
  height: 200px;
}
.exterior-method-container-text {
  width: 640px;
}
.exterior-method-container-wrap {
  position: relative;
  box-sizing: border-box;
  margin: 0 auto 30px;
}
.exterior-method-container .container-feature-list {
  width: fit-content;
  margin: 0 auto;
  flex-direction: column;
  gap: 12px;
}
.exterior-method-container .container-feature-list li {
  font-size: 1.7rem;
}
.exterior-method-btn-list {
  gap: 30px;
}

/*--------------- ▲ sub04_exterior ▲ ---------------*/
/*--------------- ▼ sub05_info ▼ ---------------*/
/*-----------------------
info-outline
-------------------------*/
.info-outline-table {
  margin: 0 auto 60px;
}
.info-outline-map {
  width: 100%;
  height: 340px;
  border-radius: 10px;
}

.info-links {
  position: relative;
  overflow: hidden;
  padding: 50px 0;
  margin: 0 auto 110px;
  max-width: 1920px;
}
.info-links::before {
  position: absolute;
  content: "";
  background: url(../img/common/pat02.jpg);
  width: 1700px;
  height: 150px;
  bottom: 0;
  margin: auto;
  right: 0;
  transition: all 0.3s ease;
}
.info-links .outbox {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 40px;
}
.info-links-list {
  gap: 40px;
}
.info-links-item {
  width: calc(50% - 20px);
}
.info-links-item-btn {
  display: block;
  position: relative;
  width: 100%;
  border: 6px solid var(--col-sub02);
  box-sizing: border-box;
  padding: 40px;
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  z-index: 1;
  min-height: 160px;
}
.info-links-item-btn:hover {
  opacity: 0.7;
}
.info-links-item-btn:hover .ttl::before {
  right: -5px;
}
.info-links-item-btn .ttl {
  position: relative;
  box-sizing: border-box;
  padding: 0 40px 0 0;
  width: fit-content;
}
.info-links-item-btn .ttl::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon-arw.png) no-repeat;
  width: 30px;
  height: 30px;
  margin: auto;
  right: 0;
  top: 5px;
  background-size: contain;
  transition: all 0.3s ease;
}
.info-links-item:nth-child(1) a {
  background: url(../img/info/links-img01.png) no-repeat top right, var(--col-wh);
}
.info-links-item:nth-child(2) a {
  background: url(../img/info/links-img02.png) no-repeat top right, var(--col-wh);
}

/*--------------- ▲ sub05_info ▲ ---------------*/
/*--------------- ▼ お知らせ ▼ ---------------*/
.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;
}

/*--------------- ▲ お知らせ ▲ ---------------*//*# sourceMappingURL=style.css.map */