@charset "utf-8";
/*--------------------------------------------------------------------------------
  main visual
--------------------------------------------------------------------------------*/
.mv {
  width: 100%;
  position: relative;
}
.mv-swiper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: -2;
}
.mv-swiper_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.mv:before {
  content: "";
  display: block;
  width: clamp(42%, calc(700 / 1400 * 100vw), 50%);
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url("../image/visual_paint.svg") no-repeat right top;
  background-size: cover;
  z-index: -1;
}
.mv:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(var(--blue-rgba),0.15);
  z-index: -2;
}
.mv-lead {
  padding-left: clamp(20px, (60 / 960 * 100vw), 120px);
  padding-right: clamp(20px, (60 / 960 * 100vw), 120px);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.mv-lead_txt {
  width: 100%;
  height: 100%;
  max-width: var(--base-width);
  margin-left: auto;
  margin-right: auto;
  color: #FFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  text-align: left;
  line-height: 1.6;
  font-family: var(--ff-wf);
  font-weight: 700;
  font-size: clamp(2.2em, 4vw + 1em, 3.8em);
}
.mv-lead_txt .line1 {
  display: block;
  font-size: 130%;
  padding-top: 1.5em;
}
.mv-lead_txt .line1 span {
  font-size: 70%;
}
@media print, screen and (min-width:761px) {
  .mv {
    height: min((800 / 1200 * 100vw), 800px);
  }
}
@media print, screen and (max-width:760px) {
  .mv {
    height: min((600 / 760 * 100vw), 600px);
    min-height: 280px;
  }
  .mv-swiper_item img {
    object-position: calc(50% - 10vw) center;
  }
}

/*--------------------------------------------------------------------------------
  news
--------------------------------------------------------------------------------*/
.sec-news {
  padding-top: var(--space-m);
  padding-left: var(--side-space);
  padding-right: var(--side-space);
  text-align: left;
}
.sec-news a,
.sec-news a:visited,
.sec-news a:hover {
  text-decoration: none;
}
.news-container {
  max-width: var(--base-width);
  margin-left: auto;
  margin-right: auto;
}
.news-hd {
  grid-area: news-hd;
}
.news-btn {
  grid-area: news-btn;
  text-align: right;
}
.news {
  grid-area: news-ct;
  padding-top: var(--space-s);
}
@media print, screen and (min-width:761px) {
  .sec-news {
    padding-bottom: var(--space-l);
  }
  .news-container {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "news-hd news-btn"
      "news-ct news-ct";
  }
  .news-btn {
    align-self: flex-end;
    padding-bottom: 0.5rem;
  }
}
@media print, screen and (max-width:960px) {
  .news {
    padding-top: var(--space-m);
  }
}
@media print, screen and (max-width:760px) {
  .sec-news {
    padding-bottom: var(--space-m);
  }
  .news-btn {
    padding-top: var(--space-l);
  }
}

/* item
----------------------------------------*/
.news {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  column-gap: 1em;
  row-gap: var(--space-m);
}
.news_item {
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}
.news_item,
.news_item a {
  display: flex;
  flex-direction: column;
}
.news_item a {
  height: 100%;
}
.news_item a,
.news_item a:visited,
.news_item a:hover {
  color: inherit;
}
.news_item .thumb {
  margin-bottom: 1em;
}
.news_item .thumb img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.news_item .ttl {
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 0.5em;
}
.news_item .date {
  flex-grow: 1;
  font-size: 0.9em;
  color: var(--gray);
  margin-bottom: 0.75em;
}
.news_item .cate_name {
  display: inline-block;
  border: 1px solid rgba(var(--black-rgba),0.3);
  line-height: 1;
  padding: 0.5em 0.8em;
  font-size: 0.8em;
}
@media (hover: hover) {
  .news_item .ttl {
    transition: var(--hover-trans);
  }
  .news_item a:hover .ttl {
    color: var(--blue);
  }
}
@media print, screen and (max-width:960px) {
  .news {
    grid-template-columns: repeat(2,1fr);
  }
}

/*--------------------------------------------------------------------------------
  works
--------------------------------------------------------------------------------*/
.sec-works {
  background-color: var(--bg-gray);
  padding-top: var(--space-m);
  padding-left: var(--side-space);
  padding-right: var(--side-space);
  text-align: left;
}
.sec-works a,
.sec-works a:visited,
.sec-works a:hover {
  text-decoration: none;
}
.works-container {
  max-width: var(--base-width);
  margin-left: auto;
  margin-right: auto;
}
.works-hd {
  grid-area: works-hd;
}
.works-btn {
  grid-area: works-btn;
  text-align: right;
}
.works {
  grid-area: works-ct;
  padding-top: var(--space-s);
}
@media print, screen and (min-width:761px) {
  .sec-works {
    padding-bottom: var(--space-l);
  }
  .works-container {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "works-hd works-btn"
      "works-nav works-nav"
      "works-ct works-ct";
  }
  .works-btn {
    align-self: flex-end;
    padding-bottom: 0.5rem;
  }
}
@media print, screen and (max-width:960px) {
  .works {
    padding-top: var(--space-m);
  }
}
@media print, screen and (max-width:760px) {
  .sec-works {
    padding-bottom: var(--space-m);
  }
  .works-btn {
    padding-top: var(--space-l);
  }
}

/* category
----------------------------------------*/
.works-ctNav {
  padding-top: var(--space-m);
  grid-area: works-nav;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8em;
}
.works-ctNav li {
  line-height: 1;
}
.works-ctNav a {
  display: block;
  border-radius: 2em;
  background-color: rgba(var(--black-rgba), 0.12);
  padding: 0.8em 2em;
}
.works-ctNav li.is-active a {
  background-color: var(--yellow);
  font-weight: bold;
}
.works-ctNav a,
.works-ctNav a:visited,
.works-ctNav a:hover {
  color: inherit;
}
@media print, screen and (max-width:760px) {
  .works-ctNav {
    font-size: 90%;
  }
}
@media (hover: hover) {
  .works-ctNav li:not(.is-active) a:hover {
    background-color: #FFF;
  }
}

/* item
----------------------------------------*/
.works {
  overflow: hidden;
}
.works-swiper {
  width: calc(100% + 1em);
  margin: 0 -0.5em;
}
.works-swiper-wrap {
  padding-bottom: var(--space-2s);
  display: flex;
}
.works-swiper_item {
  padding: 0 0.5em;
  display: flex;
  height: auto !important;
}
.works_item {
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  background-color: #FFF;
}
.works_item,
.works_item a {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.works_item a,
.works_item a:hover,
.works_item a:visited {
  color: inherit;
}
.works_item .thumb img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.works_item .txt {
  flex-grow: 1;
  padding: var(--space-2s);
  display: flex;
  flex-direction: column;
}
.works_item .ttl {
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 0.5em;
  margin-top: -0.25em;
}
.works_item .date {
  flex-grow: 1;
  font-size: 0.9em;
  color: var(--gray);
  margin-bottom: 0.75em;
}
.works_item .cate {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.works_item .cate_name {
  background-color: var(--gblue);
  color: #FFF;
  line-height: 1;
  padding: 0.5em 0.8em;
  font-size: 0.8em;
}
@media (hover: hover) {
  .works_item .ttl {
    transition: var(--hover-trans);
  }
  .works_item a:hover .ttl {
    color: var(--blue);
  }
}
@media print, screen and (min-width:1201px) {
  .works_item .ttl {
    font-size: 1.3em;
  }
}

/* nav */
.works-swiper_nav {
  padding-top: var(--space-2s);
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 3em;
  padding-left: 0.5em;
  padding-right: 0.5em;
}
.works-swiper_nav .scrollbar {
  position: relative;
  align-self: center;
}
.works-swiper_nav .arrow {
  display: flex;
  gap: 1.25em;
  align-self: center;
}

/*--------------------------------------------------------------------------------
  voice
--------------------------------------------------------------------------------*/
.sec-voice {
  position: relative;
}
.sec-voice a,
.sec-voice a:visited,
.sec-voice a:hover {
  text-decoration: none;
}
.voice {
  text-align: left;
}
.voice-hd .ttl_txt {
  font-family: var(--ff-wf);
  font-weight: 700;
}
.voice-hd .ttl a,
.voice-hd .ttl a:visited,
.voice-hd .ttl a:hover {
  color: var(--blue);
}
@media print, screen and (min-width:761px) {
  .sec-voice {
    padding-left: var(--side-space);
    padding-right: var(--side-space);
    padding-top: var(--space-m);
  }
  .sec-voice:before {
    content: "";
    width: 100%;
    height: calc(100% - var(--space-m));
    background-color: var(--blue);
    position: absolute;
    left: 0;
    top: 0;
  }
  .voice-hd.js_linkBox {
    pointer-events: none;
  }
  .voice {
    position: relative;
    max-width: var(--base-width);
    margin-left: auto;
    margin-right: auto;
    position: relative;
    background: url("../image/voice.jpg") no-repeat right top;
    background-size: cover;
  }
  .voice-container {
    padding: calc(var(--space-s) * 1.8) calc(var(--space-s) * 1.6);
    position: relative;
    z-index: 1;
  }
  .voice-container:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transition: var(--hover-trans);
    background-color: #FFF;
    opacity: 0;
  }
  .voice-txt {
    padding-top: 1.5em;
  }
}
@media (hover: hover) and (min-width:761px) {
  .voice.js_linkBox:hover .voice-container:before {
    opacity: 0.3;
  }
}
@media print, screen and (max-width:760px) {
  .voice {
    padding-bottom: var(--space-s);
  }
  .voice:before {
    content: "";
    width: 100%;
    height: var(--space-max);
    background-color: #FFF;
    position: absolute;
    left: 0;
    bottom: 2px;
  }
  .voice.js_linkBox {
    pointer-events: none;
  }
  .voice-hd.js_linkBox {
    pointer-events: auto;
  }
  .voice-hd {
    padding-top: var(--space-m);
    padding-left: var(--side-space);
    padding-right: var(--side-space);
    background-color: var(--blue);
    position: relative;
  }
  .voice-hd:before {
    content: "";
    width: 100%;
    height: var(--space-m);
    position: absolute;
    left: 0;
    bottom: -2px;
    background-color: #FFF;
  }
  .voice-hd .ttl {
    background: url("../image/voice.jpg") no-repeat 60% top;
    background-size: cover;
    padding: var(--space-l) calc(var(--space-s) * 1.25);
    color: var(--blue);
    position: relative;
  }
  .voice-hd .ttl:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: var(--hover-trans);
    background-color: #FFF;
    opacity: 0;
  }
  .voice-hd .ttl_txt {
    position: relative;
  }
  .voice-txt {
    padding-top: 1.5em;
    padding-left: var(--side-space);
    padding-right: var(--side-space);
    position: relative;
  }
}
@media (hover: hover) and (max-width:760px) {
  .voice-hd.js_linkBox:hover .ttl:before {
    opacity: 0.3;
  }
}

/*--------------------------------------------------------------------------------
  about us
--------------------------------------------------------------------------------*/
.sec-aboutUs {
  padding-left: var(--side-space);
  padding-right: var(--side-space);
  padding-bottom: calc(var(--space-max) + var(--space-s));
  overflow: hidden;
  position: relative;
}
.aboutUs-container {
  position: relative;
  max-width: var(--base-width);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  display: grid;
}
.aboutUs-photo {
  grid-area: aboutUs-photo;
  z-index: -1;
}
.aboutUs-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutUs-hd,
.aboutUs-lead,
.aboutUs-txt {
  position: relative;
  z-index: 1;
}
.aboutUs-txt {
  grid-area: aboutUs-txt;
}
.aboutUs-lead {
  grid-area: aboutUs-lead;
  padding-top: var(--space-m);
  padding-bottom: var(--space-2s);
  font-family: var(--ff-wf);
  font-weight: 700;
  line-height: 1.7;
}
.aboutUs-txt .btn {
  padding-top: var(--space-m);
}
@media print, screen and (max-width:960px) {
  .aboutUs-txt .sp-none {
    display: none;
  }
}
@media print, screen and (min-width:961px) {
  .sec-aboutUs:after {
    width: 16vw;
    height: 40%;
    bottom: calc(var(--space-max) + var(--space-s) - 3em);
    background: url("../image/aboutus_paint02.svg") no-repeat left bottom;
    background-size: cover;
  }
  .aboutUs-container {
    grid-template-columns: repeat(2,1fr);
    grid-template-areas: 
      "aboutUs-hd aboutUs-photo"
      "aboutUs-lead aboutUs-photo"
      "aboutUs-txt aboutUs-photo";
  }
  .aboutUs-photo {
    width: 50vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: 10%;
  }
  .aboutUs-photo img {
    margin-top: 3em;
  }
}
@media print, screen and (min-width:761px) {
  .sec-aboutUs {
    padding-top: var(--space-l);
  }
  .sec-aboutUs:before,
  .sec-aboutUs:after {
    content: "";
    position: absolute;
    right: 0;
  }
  .sec-aboutUs:before {
    width: 16vw;
    height: 100%;
    bottom: 0;
    background: url("../image/aboutus_paint01.svg") no-repeat left bottom;
    background-size: cover;
  }
  .aboutUs-hd,
  .aboutUs-txt {
    padding-right: var(--space-m);
  }
}
@media print, screen and (min-width:761px) and (max-width:960px) {
  .sec-aboutUs {
    padding-right: 0;
  }
  .aboutUs-container {
    grid-template-columns: auto 1fr;
    grid-template-areas: 
      "aboutUs-hd aboutUs-photo"
      "aboutUs-lead aboutUs-photo"
      "aboutUs-txt aboutUs-txt";
  }
  .aboutUs-hd span:last-of-type {
    display: block;
    padding-top: 0.5rem;
  }
  .aboutUs-lead {
    padding-right: var(--space-m);
  }
  .aboutUs-txt {
    padding-top: var(--space-s);
    padding-right: var(--space-m);
  }
}
@media print, screen and (max-width:760px) {
  .sec-aboutUs {
    padding-top: var(--space-m);
    padding-bottom: var(--space-max);
  }
  .aboutUs-container {
    grid-template-columns: 1fr;
    grid-template-areas: 
      "aboutUs-hd"
      "aboutUs-photo"
      "aboutUs-lead"
      "aboutUs-txt";
  }
  .aboutUs-hd {
    padding-bottom: var(--space-m);
  }
  .aboutUs-txt .btn {
    text-align: right;
  }
}

/*--------------------------------------------------------------------------------
  無料塗替え診断
--------------------------------------------------------------------------------*/
.sec-houseCheck {
  background-color: var(--bg-gray);
}
.sec-houseCheck a,
.sec-houseCheck a:visited,
.sec-houseCheck a:hover {
  text-decoration: none;
}
.houseCheck {
  position: relative;
}
.houseCheck-container {
  max-width: var(--base-width);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.houseCheck-photo {
  position: absolute;
  left: 0;
  top: calc(-1 * var(--space-s));
  overflow: hidden;
}
.houseCheck-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.houseCheck-box {
  background-color: #FFF;
  position: relative;
  z-index: 1;
  padding: var(--space-s);
}
.houseCheck-box .ttl {
  font-family: var(--ff-wf);
  font-weight: 700;
  position: relative;
}
.houseCheck-box .txt {
  padding-top: 1.25em;
}
.houseCheck-box .ttl a {
  display: block;
}
.houseCheck-box .ttl a,
.houseCheck-box .ttl a:visited,
.houseCheck-box .ttl a:hover {
  color: var(--blue);
}
@media print, screen and (min-width:1201px) {
  .houseCheck {
    padding-left: var(--side-space);
    padding-right: var(--side-space);
  }
}
@media print, screen and (min-width:961px) {
  .houseCheck-box {
    margin-left: 40%;
  }
}
@media print, screen and (min-width:761px) and (max-width:960px) {
  .houseCheck-box {
    margin-left: 30%;
  }
}
@media print, screen and (min-width:761px) {
  .houseCheck {
    padding-bottom: var(--space-m);
  }
  .houseCheck-container {
    padding-top: calc(var(--space-max) * 1.4);
  }
  .houseCheck-photo {
    width: calc(50% + min(calc(400 / 1400 * 100vw), 400px));
    height: calc(100% - var(--space-m));
  }
  .houseCheck-photo img {
    object-position: 60% top;
    height: min(calc(540 / 1200 * 100vw), 540px);
  }
}
@media print, screen and (max-width:760px) {
  .houseCheck {
    padding-bottom: var(--space-l);
  }
  .houseCheck-container {
    padding-top: max(360 / 1200 * 100vw, 100px);
  }
  .houseCheck-photo {
    width: calc(100% - var(--side-space));
    height: calc(100% - var(--space-max));
  }
  .houseCheck-photo img {
    object-position: center top;
  }
  .houseCheck-box {
    margin-left: var(--side-space);
  }
}

/*--------------------------------------------------------------------------------
  火災保険
--------------------------------------------------------------------------------*/
.kasai {
  position: relative;
  max-width: var(--base-width);
  margin-left: auto;
  margin-right: auto;
}
.kasai a,
.kasai a:visited,
.kasai a:hover {
  color: inherit;
  text-decoration: none;
}
.kasai-hd {
  font-size: 105%;
  font-family: var(--ff-wf);
  padding-bottom: var(--space-2s);
}
.kasai-hd .line1 {
  display: inline-block;
  background-color: var(--byellow);
  line-height: 1;
  padding: 0.4em 0.6em;
  font-size: 1.2em;
  font-weight: 700;
}
.kasai-hd .line2 {
  display: block;
  padding-top: 0.8em;
  font-weight: 700;
  line-height: 1.5;
}
.kasai-hd .line2 b {
  color: var(--red);
  font-size: 130%;
  display: inline-block;
  margin: 0 0.25rem;
  padding-top: 0.5em;
}
.kasai-hd .line2 b .dot {
  position: relative;
}
.kasai-hd .line2 b .dot:before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  display: inline-block;
  background-color: var(--red);
  border-radius: 100%;
  position: absolute;
  left: 50%;
  top: -1rem;
  transform: translateX(-50%);
}
@media (hover: hover) and (min-width:641px) {
  .kasai * {
    position: relative;
    z-index: 2;
  }
  .kasai.js_linkBox:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #FFF;
    transition: var(--hover-trans);
    opacity: 0;
  }
  .kasai.js_linkBox:hover:before {
    opacity: 0.3;
  }
}
@media print, screen and (min-width:641px) {
  .sec-kasai {
    padding: var(--space-m) var(--side-space);
  }
  .kasai {
    background: url("../image/kasai.jpg") no-repeat center bottom;
    background-size: cover;
    padding-top: var(--space-m);
    padding-bottom: calc(var(--space-l) * 1.6);
  }
  .kasai-hd,
  .kasai-txt {
    padding-left: var(--side-space);
    padding-right: var(--side-space);
  }
  .kasai-btn {
    position: absolute;
    right: clamp(1.5rem, 3vw + 1rem, 3rem);
    bottom: clamp(1.5rem, 3vw + 1rem, 3rem);
  }
  .kasai-btn .ttl {
    display: none;
  }
}
@media print, screen and (min-width:761px) {
  .kasai-hd .line2 {
    font-size: var(--fs-4l);
  }
}
@media print, screen and (max-width:760px) {
  .kasai-hd .line2 {
    font-size: var(--fs-3l);
  }
}
@media print, screen and (max-width:640px) {
  .kasai {
    padding-bottom: var(--space-m);
  }
  .kasai.js_linkBox {
    pointer-events: none;
  }
  .kasai-btn a {
    pointer-events: auto;
  }
  .kasai-hd,
  .kasai-txt,
  .kasai-btn {
    padding-left: var(--side-space);
    padding-right: var(--side-space);
  }
  .kasai-hd {
    background: url("../image/kasai.jpg") no-repeat center bottom;
    background-size: cover;
    padding-top: var(--space-m);
    padding-bottom: calc(var(--space-l) * 1.4);
  }
  .kasai-txt {
    text-align: left;
    padding-top: var(--space-s);
    padding-bottom: var(--space-m);
  }
  .kasai-txt .sp-none {
    display: none;
  }
  .kasai-btn {
    text-align: right;
  }
}
