@charset "UTF-8";

/* reset */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

a {
  outline: none;
  text-decoration: none;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
a img {
  border: 0;
}
a img:hover {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  opacity: .7;
}
a:link {
  color: #009aff;
}
a:visited {
  color: #0073bf;
}
a:hover {
  text-decoration: none;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

audio,
canvas,
img,
video {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

caption {
  display: none;
}

address {
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
dt,
dd,
th,
td,
pre {
  margin: 0;
  padding: 0;
  -ms-line-break: strict;
  line-break: strict;
  -ms-word-break: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
  transform: rotate(0.001deg);
}

p {
  margin: 1.12em 0;
}


html {
    box-sizing: border-box;
    padding-top: 65px;
    scroll-behavior: smooth;
}
@media (min-width: 768px) {
    html {
        padding-top: 130px;
    }
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
.scroll-offset {
  scroll-margin-top: 65px; 
}
@media (min-width: 768px) {
    .scroll-offset {
        scroll-margin-top: 110px; 
    }
}

/* 変数 */
:root {
    --width-base: 1920px;
    --width-wrap: 1720px;
    --width-content: 1200px;
    --width-footer: 1198px;
    --bgcolor-gray: #f5f5f5;
    --bgcolor-lblue: #79c3dc;
}

/* @font-face でローカルフォントを優先 */
@font-face {
/* font-family: "Local Noto Sans JP";
src: local("Noto Sans JP"); */
}
body {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    line-height: 1.6;
    color: #333;
}

/* Header */
.header {
    background: white;
    padding: 0 10px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
.header-content {
    align-items: flex-end;
    justify-content: space-between;
    margin: 0 auto;
    max-width: var(--width-base);
    padding: 10px 0;
}
.logo {
    margin: 0;
    padding: 0;
    text-align: center;
}
.logo img {
    max-height: 45px;
}
.contact-info {
    background: #fff;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 1000;
    width: 100%;
}
.phone-message {
    font-size: 0.9em;
    text-align: center;
    margin: .3em 0;
}
.phone-message br {
    display: none;
}
.phone-image {
    text-align: center;
}
@media (min-width: 768px) {
    .header-content {
        display: flex;
        padding: 15px 0;
    }
    .logo img {
        max-height: none;
    }
}
@media (min-width: 960px) {
    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0px;
        position: static;
        width: auto;
    }
    .phone-message {
        text-align: left;
    }
}
@media (min-width: 1200px) {
    .contact-info {
        flex-direction: row;
        gap: 10px;
    }
    .phone-message br {
        display: block;
    }
}

/* Footer */
.footer {
    background: #403F3E;
    color: white;
    padding: 0 10px;
}

.footer-content {
    max-width: var(--width-footer);
    margin: 0 auto;
    padding: 7em 0 1em;
}
.footer-content {
  grid-auto-flow: column; 
  grid-auto-columns: 1fr; 
  grid-template-columns: auto minmax(50%, 660px); 
  grid-template-rows: auto 1fr; 
  gap: 0px 10px; 
  grid-template-areas: 
    "footer-title footer-banner"
    "footer-info footer-banner"; 
}
.footer-content h2 { grid-area: footer-title; }
.footerContent-info { grid-area: footer-info; }
.footerContent-link { grid-area: footer-banner; }
@media (min-width: 768px) {
    .footer-content {
    /* display: grid;  */
    }
}
.footer-content h2 {
    font-size: 32px;
}
.footerContent-info {
    font-size: 14px;
    margin: 1em 0;
}
@media (min-width: 768px) {
    .footerContent-info {
        font-size: 16px;
        margin: 3em 0; 
    }
}
.footerContent-tel,
.footerContent-tel ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
}
.footerContent-tel li {
    display: flex;
    white-space: nowrap;
}
.footerContent-tel ul {
}
.footerContent-tel li span {
    margin-right: 1em;
}
.footerContent-tel li img {
    width: 26px;
    height: auto;
}
.footerContent-tel ul li {
    display: inline-block;
    margin-right: 1em;
}
.footerContent-tel ul li a{
    color: #fff;
}
.footerContent-link {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
@media (min-width: 768px) {
    .footerContent-link {
        font-size: 16px;
    }
}

.footerContent-link li a {
    color: #fff;
    text-align: center;
}
.footerContent-link li a::after {
    content: attr(data-bnrlabel);
    display: block;
}
.footerContent-link li a img:hover {
    opacity: 1;
}
.footerContent-link li a:hover {
    opacity: .8;
}

.copyright {
    max-width: var(--width-footer);
    border-top: 1px solid #7D7A7A;
    margin: 0 auto;
    padding: 2em 0;
    text-align: center;
}
.copyright p {
    font-size: 14px;
}


/* content */
.container {
    padding: 0 10px;
}
.section-title {
    margin: 0;
    text-align: center;
}
.news .section-title {
}
.news .section-title span {
    background-color: var(--bgcolor-lblue);
    border-radius: 1em;
    display: inline-block;
    color: #fff;
    font-size: 14px;
    padding: .25em 2em;
    position: relative;
}
.news .section-title span::after {
    background-color: var(--bgcolor-lblue);
    content: "";
    display: block;
    width: 14px;
    height: 11px;
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}
.news .section-title::after {
    color: #000;
    content: attr(data-title);
    display: block;
    font-size: 36px;
    font-weight: bold;
    line-height: 1.25;
    margin-top: .5em;
}
.service .section-title,
.company .section-title {
    font-size: 20px;
    font-weight: bold;
}
.service .section-title::before,
.company .section-title::before {
    color: #79C3DC;
    content: attr(data-title);
    display: block;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: .2em;
}
.contents-wrap {
    max-width: var(--width-wrap);
    margin: 3em auto 0;
    padding: 2em 3.3%;
}

@media (min-width: 768px) {
    .service .section-title::before,
    .company .section-title::before {
        font-size: 55px;
        margin-bottom: .4em;
    }
    .contents-wrap {
        padding: 5em 3.3%;
    }
}
.morebtn {
    font-weight: bold;
}
.morebtn a {
    background-color: var(--bgcolor-lblue);
    border-radius: 4px;
    color: #fff;
    display: inline-block;
    padding: .7em 1.25em;
}
.morebtn a:hover {
    background-color: #1bb9ee;
}
.morebtn span {
    display: inline-block;
    position: relative;
    padding-right: 2em;
}
.morebtn span::before {
    content: "";
    display: block;
    width: 12px;
    height: 1px;
    background-color: #fff;
    transform: rotate(45deg);
    transform-origin: right bottom;
    position: absolute;
    right: 0;
    bottom: 3px;
}
.morebtn span::after {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    right: 0;
    bottom: 3px;
}
@media (min-width: 768px) {
    .morebtn {
        font-size: 18px;
        
    }
}
/* About Section */
.about {
    background: #fff;
    margin-top: 5em;
}
@media (min-width: 1200px) {
    .about {
        margin-top: 10em;
    }
}

.container {
}

.section-title {
}
.about-content {
  max-width: var(--width-base);
  grid-template-columns: 60% 40%;
  margin: 0 auto;
  padding: 0;
}
.about .section-title {
}
.about .section-title img {
}
.about-image {
    margin-top: 1em;
    position: relative;
    text-align: center;

}
.about-image img {
    max-width: 693px;
    width: 90%;
}
@media (min-width: 768px) {
    .about .container {
        padding: 0;
    }
    .about-content {
        display: grid; 
    }
    .about .section-title {
        text-align: right;
    }
    .about .section-title img {
        max-width: 778px;
        width: 68%;
    }
    .about-image {
        margin: 0;
    text-align: right;
    }
    .about-image::before {
        aspect-ratio: 1/1;
        background: url(../images/about02.jpg) no-repeat center center / cover;
        content: "";
        display: block;
        width: 298px;
        max-width: 39%;
        min-width: 150px;
        position: absolute;
        top: 50%;
    }
}

/* News Section */
.news {
    background: var(--bgcolor-gray);
    margin-top: 2em;
    padding: 0 0 80px 0;
    position: relative;
}
.news::before,
.news::after {
    background-color: #fff;
    aspect-ratio: 1920/384;
    content: "";
    display: block;
    width: 50%;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}
.news::after {
    position: absolute;
    right: 0;
    top: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.news.newslist{
    margin-top: 0;
    padding: 80px 0;
}
.news.newslist::before,
.news.newslist::after {
    content: none;
}
.fixed-news {
    max-width: var(--width-content);
    background: #fff;
    margin: 0 auto;
    padding: 7.5%;
    display: grid; 
    grid-auto-flow: column; 
    grid-auto-columns: 1fr; 
    grid-auto-rows: 1fr;
    grid-template-columns: 50% 1fr; 
    grid-template-rows: repeat(4, auto); 
    gap: 0px 4.4%; 
    grid-template-areas: 
        "news-image news-image"
        "news-title news-title"
        "news-exce news-exce"
        "news-more  news-date";
    margin-top: 50px;
    position: relative;
}
@media (min-width: 1200px) {
    .fixed-news {
        grid-template-columns: minmax(36.7%, 375px) 1fr; 
        grid-template-areas: 
            "news-image news-date"
            "news-image news-title"
            "news-image news-exce"
            "news-more news-more"; 
        padding: 60px 90px 50px;
        margin-top: 100px;
    }
}
.news-item {
    background-color: #fff;
  display: grid; 
  grid-auto-flow: column; 
  grid-auto-columns: 1fr; 
  grid-auto-rows: 1fr; 
  grid-template-columns: 50% 1fr; 
  grid-template-rows: repeat(5, auto); 
  gap: 0px 0%; 
  grid-template-areas: 
    "news-cate news-cate"
    "news-image news-image"
    "news-title news-title"
    "news-exce news-exce"
    "news-more news-date";
    position: relative;
    width: 60%;
}
@media (min-width: 1200px) {
    .news-item {
        width: 100%;
    }
}

.news-date { grid-area: news-date; }
.news-title { grid-area: news-title; }
.news-excerpt { grid-area: news-exce; }
.news-more { grid-area: news-more; }
.news-image { grid-area: news-image; }
.news-cate { grid-area: news-category; }


.news-date {
    color: #999;
    font-size: 14px;
    margin: 2em 0 0;
    text-align: right;
}
.fixed-news .news-date {
    color: #000;
}
.news-item .news-date {
    background-color: #fff;
}
@media (min-width: 1200px) {
    .news-date {
        text-align: left;
    }
    .news-item .news-date {
        text-align: right;
        padding: 0 32px 25px 0;
    }
}
.news-title {
    color: #000;
    font-size: 18px;
    font-weight: bold;
    margin: 1em 0 0;
}
.news-item .news-title {
    background-color: #fff;
    padding: 0 32px;
}
.news-title a {
    color: #000;
}
.news-title a:hover{
    text-decoration: underline;
}
.fixed-news .news-title {
    font-size: 20px;
}
.news-excerpt {
    font-size: 14px;
    line-height: 1.8;
    margin: 1em 0 0;
}
.fixed-news .news-excerpt {
    font-size: 16px;
}
.news-item .news-excerpt {
    padding: 0 32px;
}
.news-thumb {
    aspect-ratio: 420/263;
    background: url(../images/dummy.jpg) no-repeat center center / cover;
}
.fixed-news .news-thumb {
    aspect-ratio: 375/235;
}

.news-listwrap {
    max-width: var(--width-wrap);
    /*overflow: hidden;
    overflow-x: scroll;*/
    margin: 50px auto 0;
    padding-top: 20px;
}

.news-list {
    max-width: var(--width-wrap);
    width: 3000px;
    display: flex;
    flex-wrap: nowrap;
    margin: 0 auto;
    gap: 10px;
}
@media (min-width: 1200px) {
    .news-listwrap {
        /*overflow: auto;*/
        margin-top: 100px;
    }
    .news-list {
        flex-wrap: nowrap;
        gap: 20px;
        width: 100%;
    }
}
.news-category {
    position: absolute;
    left: 5px;
    top: -20px;
}
.newslist .news-category {
    position: absolute;
    left: 32px;
    top: 13px;
}
.news-category a{
    color: #333;
}
.news-category a:hover{
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    opacity: .7;
}
@media (min-width: 1200px) {
    .newslist .news-category {
        left: 95px;
        top: 40px;
    }
}
.news-category span {
    background-color: var(--bgcolor-lblue);
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    padding: .25em .5em;
}
.news-category .category01 {background-color: #F07647;}
.news-category .category02 {background-color: #F7cc66;}
.news-category .category03 {background-color: #79c3dc;}
.news-category .category04 {background-color: #a8da67;}
.news-category .category05 {background-color: #7191f0;}

.fixed-news .morebtn {
    text-align: center;
    margin-top: 2em;
}
.news-list-nav {
    display: flex;
    justify-content: center ;
    gap: 10px;
    list-style-type: none;
    margin: 50px 0 0;
    padding: 0;
}
.news-list-nav .page-numbers{
    font-size: 20px;
    padding: 0 .25em;
}
.news-list-nav li:hover{
    cursor: pointer;
    opacity: .7;
}

/* Company Profile */
.company {
    padding: 80px 0;
}
.company .container {
    overflow: hidden;
}
.company-content {
    background: var(--bgcolor-gray);
}
@media (min-width: 768px) {
    .company-content {
        padding-top: 18em;
    }
}

.company-content {
}
.company-info {
    position: relative;
    max-width: var(--width-content);
}
.company-info::after {
    aspect-ratio: 343/538;
    background: url(../images/company01.jpg) no-repeat center center / cover;
    content: "";
    display: block;
    margin: 1em auto;
    width: 100%;
}

.companyInfo-table {
    background: #fff;
    grid-template-columns: 150px auto;
    padding: 2em 5%;
    max-width: 920px;
    width: 100%;
}
.companyInfo-table dt,
.companyInfo-table dd {
    padding: 1.5em 0 1.5em .25em;
}
.companyInfo-table dt {
    border-top: 1px solid #bdbdbd;
    padding-bottom: 1em;
}
.companyInfo-table dd {
    padding-top: 0;
}
.companyInfo-table ul {
    margin: 0;
    padding: 0;
}
.companyInfo-table .cell-phone ul {
    display: flex;
    list-style-type: none;
}
.companyInfo-table .cell-phone li:first-child {
    margin-right: 1.5em;
}
.companyInfo-table .cell-business ul {
    padding-left: 1.25em;
}
@media (min-width: 768px) {
    .company-info {
        margin-right: auto;
        margin-left: auto;
    }
    .company-info::after {
        max-width: 340px;
    }

    .companyInfo-table {
        display: grid;
        margin: 0 0 0 auto;
        padding: 5em 60px 3em 120px;
    }
    .companyInfo-table dt,
    .companyInfo-table dd {
        border-top: 1px solid #bdbdbd;
        padding: 1.5em 0 1.5em .25em;
    }
}
@media (min-width: 1250px) {
    .company-info {
        display: flex;
        margin-right: auto;
        margin-left: auto;
        position: relative;
    }
    .company-info::after {
        position: absolute;
        top: 5em;
        max-width: 340px;
    }
}

/* Service Section */
.service {
    padding: 80px 0 0;
}
.service-content {
    max-width: var(--width-wrap);
    width: 100%;
    background-color: #ecf6f9;
    margin: 40px auto;
    padding: 40px 10px;
}
.serviceContent-inner {
    max-width: var(--width-content);
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.serviceContent-inner::before {
    content: "";
    display: block;
    width: 50px;
    height: 5px;
    background-color: #79c3dc;
    position: absolute;
    top: -5px;
}
.serviceContent-title {
    font-size: 24px;
    position: relative;
}
.serviceContent-title::after {
    content: attr(data-title);
    display: block;
    font-size: 18px;
    font-weight: bold;
    width: 100%;
}
.serviceContent-title span {
    display: inline-block;
    position: relative;
}
.serviceContent-title span::before {
    content: "";
    display: block;
    margin-top: 10px;
}
.serviceContent-txt {
    font-size: 16px;
    line-height: 1.6;
}
.service-contact {
    margin-top: 2em;
}
@media (min-width: 768px) {
    .serviceContent-title span::before {
        margin-top: 0;
        margin-left: .5em;
        position: absolute;
        top: 50%;
        left: 100%;
        transform: translateY(-50%);
    }
}
@media (min-width: 1200px) {
    .service-content {
        margin: 80px auto;
        padding: 80px 10px;
    }
    .serviceContent-title {
        font-size: 44px;
    }
    .serviceContent-title::before {
        font-size: 44px;
    }
    .serviceContent-txt {
        font-size: 18px;
    }
}

/* RangeHoodFilter */
#rangehoodfilter {
}
#rangehoodfilter .serviceContent-title span::before {
    aspect-ratio: 116/110;
    background: url(../images/icon_onetouch.png) no-repeat center center / cover;
    height: 48px;
    width: auto;

}
@media (min-width: 1200px) {
    #rangehoodfilter .serviceContent-title span::before {
        height: 110px;
    }
}
.rangehoodfilter-info {
    margin-top: 2em;
    position: relative;
}
.rangehoodfilter-info::after {
    aspect-ratio: 564/810;
    background: url(../images/service02.png) no-repeat center top / contain;
    content: "";
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 564px;
}
@media (min-width: 1200px) {
    .rangehoodfilter-info {
        margin-top: 3em;
        
    }
    .rangehoodfilter-info::after {
        position: absolute;
        right: 0;
        top: 0;

    }
}

.rhfInfo-title {
    font-size: 32px;
}
.rhdInfo-list {
    background-color: #79c3dc;
    list-style-type: none;
    margin: 2em 0 0;
    padding: 20px;
    /* max-width: 600px; */
    position: relative;
}
.rhdInfo-list::after {
    background-color: var(--bgcolor-lblue);
    content: "";
    display: block;
    width: 36px;
    height: 26px;
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
   
}
.rhdInfo-list li {
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    padding-left: calc(20px + .25em);
    position: relative;
    margin: 1em 0;
}
.rhdInfo-list li:first-child {
    margin-top: 0;
}
.rhdInfo-list li:last-child {
    margin-bottom: 0;
}
.rhdInfo-list li::before {
    aspect-ratio: 26/24;
    background: url(../images/icon_check.png) no-repeat center center / contain;
    content: "";
    display: block;
    width: 20px;
    position: absolute;
    left: 0;
    top: 20%;
}
.rhfInfo-Pushmsg {
    text-align: center;
}
@media (min-width: 768px) {
    .rhfInfo-title {
        font-size: 40px;
    }
    .rhdInfo-list {
        margin: 5em 0 0;
        padding: 40px;
    }
    .rhdInfo-list::after {
        width: 56px;
        height: 46px;
    }
    .rhdInfo-list li {
        font-size: 20px;
        padding-left: calc(26px + .25em);
    }
    .rhdInfo-list li::before {
        width: 26px;
        top: 20%;
    }
}
@media (min-width: 1200px) {
    .rhfInfo-title,
    .rhdInfo-list,
    .rhfInfo-Pushmsg {
        max-width: 600px;
        width: 50%;
    }
}
.rangehoodfilter-feature {
    background-color: #fff;
    border: 4px solid #79c3dc;
    border-radius: 8px;
    margin-top: 40px;
    padding: 16px;
}
.rhfFeature-title {
    font-size: 20px;
    text-align: center;
    position: relative;
}
.rhfFeature-title span {
    color: #3c9aba;
    font-size: 140%;
}
.rhfFeature-title::before,
.rhfFeature-title::after {
    background-color: #3c9aba;
    content: "";
    display: block;
    width: 25%;
    width: calc(50% - 7em);
    height: 1px;
    position: absolute;
    bottom: 20px;
}
.rhfFeature-title::after {
    right: 0;
}
@media (min-width: 1200px) {
    .rangehoodfilter-feature {
        border-width: 7px;
        margin-top: 90px;
        padding: 60px;
    }
    .rhfFeature-title {
        font-size: 30px;
    }
}
.rhfFeature-list {
    display: flex;
    flex-wrap: wrap;
    padding: 1rem;
}
.rhfFeature-item {
    width: 100%;
    padding-left: 1.25em;
    position: relative;
    margin: 1em 0 0;
}
.rhfFeature-item::before {
    aspect-ratio: 1/1;
    border-radius: 50%;
    content: "";
    display: block;
    width: 1em;
    background-color: #3c9aba;
    position: absolute;
    left: 0;
    top: .5em;
}
.rhfFeature-item dt {
    font-size: 18px;
    font-weight: bold;
    position: relative;
}
.rhfFeature-item dd {
    font-size: 14px;
    margin-top: 1em;
}

@media (min-width: 768px) {
    .rhfFeature-item {
        width: 50%;
        margin-top: 1.5em;
        padding-left: 1.75em;
    }
    .rhfFeature-item::before {
        width: 1.5em;
        top: .5em;
    }
}
@media (min-width: 1200px) {
    .rhfFeature-item dt {
        font-size: 24px;
    }
    .rhfFeature-item dd {
        font-size: 16px;
    }
}

/* FloorCoating */
.floorcoating-list {

}
.floorcoating-item {
    align-items: center;
    margin-top: 40px;
}
.floorcoating-item:not(:first-child) {
    margin-top: 3em;
}
.floorcoating-info {
    position: relative;
    z-index: 2;
}
.floorcoating-image {
    position: relative;
}
@media (min-width: 960px) {
    .floorcoating-item {
        display: flex;
    }
    .floorcoating-item:not(:first-child) {
        margin-top: 5em;
    }

    .floorcoating-info {
        max-width: 574px;
        width: 60%;
    }
}
.floorcoating-info {
    background-color: #fff;
    padding: 20px;
}
.floorcoating-info.setpoint {
    padding-top: 0;
}
.floorcoatingItem-point {
    background-color: #f07647;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin: 0 auto 1em;
    padding: .25em .5em;
    display: block;
    width: fit-content;
    position: relative;
}
.floorcoatingItem-point::after {
    background-color: #f07647;
    content: "";
    display: block;
    width: 18px;
    height: 14px;
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}
.floorcoatingItem-title {
    font-size: 20px;
    display: flex;
    align-items: center;
    margin: 0;
}
.floorcoatingItem-title.no1::before {
    aspect-ratio: 1/1;
    content: "";
    display: block;
    width: 60px;
    margin-right: .75em;
    background: url(../images/icon_no1.png) no-repeat center center /contain;
}
.floorcoatingItem-title span {
    position: relative;
}
.floorcoatingItem-title .icon-new::before {
    color: #d10505;
    content: "NEW";
    display: block;
    font-size: 14px;
}
.floorcoatingItem-caption {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 0;
}
.floorcoatingItem-txt {
    margin-bottom: 0;
}
.floorcoating-thumb {
    position: relative;
}
.floorcoating-thumb img {
    width: 100%;
}
.floorcoating-thumb.badge1::after,
.floorcoating-thumb.badge3::after {
    aspect-ratio: 1/1;
    content: "";
    display: block;
    width: 64px;
    position: absolute;
    right: 20px;
    top: 20px;
}
.floorcoating-thumb.badge1::after {
    background: url(../images/icon_taikyu10.png) no-repeat center center / contain;
}
.floorcoating-thumb.badge3::after {
    background: url(../images/icon_taikyu30.png) no-repeat center center / contain;
}
@media (min-width: 960px) {
    .floorcoating-info {
        padding: 40px;
        filter: drop-shadow(10px 10px 14px rgba(0,0,0,0.25));
    }
    .floorcoatingItem-point {
        font-size: 24px;
        margin: 0 auto 2em;
        padding: .25em .5em;
    }
    .floorcoatingItem-point::after {
        width: 24px;
        height: 18px;
    }
    .floorcoatingItem-title {
        font-size: 26px;
    }
    .floorcoatingItem-title.no1::before {
        width: 90px;
    }
    .floorcoatingItem-title .icon-new::before {
        font-size: 18px;
    }

    .floorcoating-thumb {
        position: relative;
        left: -30px;
        max-width: 656px;
        width: calc(100% + 30px);
    }
    .floorcoating-thumb.badge1::after,
    .floorcoating-thumb.badge3::after {
        width: 123px;
    }

}

/* WaterCoating */
#watercoating {
}
#watercoating .serviceContent-title span::before {
    aspect-ratio: 550/105;
    background: url(../images/icon_water.png) no-repeat center center / cover;
    height: 48px;
    width: auto;
}
@media (min-width: 1200px) {
    #watercoating .serviceContent-title span::before {
        height: 105px;
    }
}
.watercoating-description {
    margin-top: 3em;
}
.watercoatingDesc-msg {
    font-size: 24px;
    margin: 0;
}
.watercoatingDesc-caption {
    font-size: 28px;
    font-weight: bold;
    margin: .5em 0 0;
}
.watercoatingDesc-image {
    margin: 2em 0 0;
}
@media (min-width: 1200px) {
    .watercoating-description {
        margin-top: 5em;
    }
    .watercoatingDesc-msg {
        font-size: 32px;
    }
    .watercoatingDesc-caption {
        font-size: 40px;
    }
}

.watercoating-area {
    margin-top: 3em;
}
.watercoatingArea-head {
    background-color: #fff;
    padding: 24px;
}
.watercoatingArea-title {
    font-size: 24px;
    padding-left: 1.25em;
    position: relative;
}
.watercoatingArea-title::before {
    aspect-ratio: 1/1;
    border-radius: 50%;
    content: "";
    display: block;
    width: 1em;
    background-color: #79c3dc;
    position: absolute;
    left: 0;
    top: .3em;
}
.watercoatingArea-table {
    margin-top: 1em;
}
.watercoatingArea-table dl {
    border-top: 1px solid #cecaca;
    border-left: 1px solid #cecaca;
    margin: 1em 0;
    width: 100%;
}
.watercoatingArea-table dt,
.watercoatingArea-table dd {
    border-right: 1px solid #cecaca;
    border-bottom: 1px solid #cecaca;
    font-size: 16px;
    padding: .75em;
    text-align: left;
    width: 100%;
}
.watercoatingArea-table dt {
    background-color: #ededed;
}
.watercoatingArea-table dd {
}
.watercoatingArea-table dt .no1tag::after {
    aspect-ratio: 89/41;
    background: url(../images/icon_no1sq.png) no-repeat center center / contain;
    content: "";
    display: inline-block;
    vertical-align: bottom;
    margin-left: 1em;
    width: 60px;
}
@media (min-width: 960px) {
    .watercoating-area {
        margin-top: 5em;
    }
    .watercoatingArea-head {
        padding: 64px;
    }
    .watercoatingArea-title {
        font-size: 32px;
    }
    .watercoatingArea-title::before {
    }
    .watercoatingArea-table {
        margin-top: 2em;
    }

    .watercoatingArea-table dl {
        display: flex;
        margin: 0;
    }
    .watercoatingArea-table dt,
    .watercoatingArea-table dd {
        font-size: 20px;
    }
    .watercoatingArea-table dt {
        background-color: #ededed;
        min-width: 200px;
        width: auto;
    }
    .watercoatingArea-table dd {
        width: calc(100% - 200px);
    }
    .watercoatingArea-table dt .no1tag::after {
        width: 89px;
    }
}
.watercoating-content {
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 2em;
}
.watercoating-info,
.watercoating-birth {
    background-color: #fff;
    border: 4px solid #79c3dc;
    border-radius: 16px;
    padding: 20px;
    margin-top: 2em;
}
.watercoating-info h5,
.watercoating-birth h5 {
    color: #3c9aba;
    font-size: 18px;
    text-align: center;
}
.watercoating-info p,
.watercoating-birth p {
    line-height: 1.8;
    margin: 1.5em 0 0;
}
.watercoating-info p::before {
    aspect-ratio: 374/112;
    background: url(../images/water03.png) center center / contain;
    content: "";
    display: block;
    margin: 0 auto 2em;
    width: 100%;
    max-width: 374px;
    
}
@media (min-width: 960px) {
    .watercoating-content {
        display: flex;
        margin-top: 5em;
    }
    .watercoating-info,
    .watercoating-birth {
        border-width: 7px;
        border-radius: 16px;
        margin-top: 5em;
        padding: 60px;
        width: 48%;
    }
    .watercoating-info h5,
    .watercoating-birth h5 {
        font-size: 24px;
    }
    .watercoating-info p,
    .watercoating-birth p {
        margin: 3em 0 0;
    }
    .watercoating-info p::before {
        margin: 0 auto 2em;
        width: 100%;
        max-width: 374px;
        
    }
}

/* Catalyst */
#catalyst {

}
#catalyst .serviceContent-title span::before {
    aspect-ratio: 116/110;
    background: url(../images/icon_catalyst.png) no-repeat center center / cover;
    height: 48px;
    width: auto;

}
@media (min-width: 1200px) {
    #catalyst .serviceContent-title span::before {
        height: 110px;
    }
}
.catalyst-content {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-top: 2em;
}
.catalystHead-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}
.catalystHead-caption::before,
.catalystHead-caption::after {
    background-color: #000;
    width: 2px;
    height: 1.2em;
}
.catalystHead-caption::before {
    transform: rotate(150deg);
    margin-right: 1em;
}
.catalystHead-caption::after {
    transform: rotate(30deg);
    margin-left: 1em;
}
.catalyst-title {
    color: #3c9aba;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    margin: .25em 0 0;
}
.catalyst-title::after {
    aspect-ratio: 178/91;
    background: url(../images/icon_3catalyst.png) no-repeat center center / contain;
    content: "";
    display: block;
    width: 100px;
}
.catalystHead-desc {
    background-color: #3c9aba;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    margin: 1em auto 0;
    padding: .25em 1em;
    width: fit-content;
}
@media (min-width: 960px) {
    .catalyst-content {
        border-radius: 20px;
        padding: 60px 80px;
        margin-top: 4em;
    }
    .catalystHead-caption {
        font-size: 32px;
    }
    .catalystHead-caption::before,
    .catalystHead-caption::after {
        display: block;
        content: "";
    }
    .catalyst-title {
        color: #3c9aba;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        font-size: 64px;
        margin: .25em 0 0;
    }
    .catalyst-title::after {
        width: 178px;
    }
    .catalystHead-desc {
        font-size: 20px;
    }
}
.catalyst-list {
}
.catalyst-item {
    grid-template-columns: minmax(36%, 374px) 1fr;
    grid-template-rows: repeat(2, auto) 1fr;
    /* grid-template-rows: repeat(3, auto); */
    gap: 0px 4%;
    grid-auto-flow: column;
    grid-template-areas:
        "catalystItem-image catalystItem-title"
        "catalystItem-image catalystItem-tags"
        "catalystItem-image catalystItem-txt";
}

.catalystItem-title { grid-area: catalystItem-title; }
.catalystItem-tags { grid-area: catalystItem-tags; }
.catalystItem-txt { grid-area: catalystItem-txt; }
.catalystItem-image { grid-area: catalystItem-image; }

.catalyst-item {
    margin-top: 2em;
    padding: 0;
}
.catalyst-item:not(:first-child) {
    border-top: 2px dotted #91c8d2;
    padding-top: 2em;
}
.catalystItem-title {
    font-size: 24px;
    margin: 0;
}
.catalystItem-tags {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    list-style-type: none;
    margin: 1em 0 0;
    padding: 0;
    font-size: 14px;
}
.catalystItem-tags li {
    background-color: #f7cc66;
    border-radius: 4px;
    font-weight: bold;
    padding: .25em .5em;
}
.catalystItem-txt {
    line-height: 1.8;
}
.catalystItem-thumb {
    text-align: center;
}
@media (min-width: 1200px) {
    .catalyst-list {
    }
    .catalyst-item {
        display: grid;
    }
    .catalyst-item {
        margin-top: 3em;
        padding: 0 60px;
    }
    .catalyst-item:not(:first-child) {
    }
    .catalystItem-title {
        font-size: 32px;
        margin: 1em 0 0;
    }
    .catalystItem-tags {
        font-size: 16px;
    }
    .catalystItem-tags li {
        background-color: #f7cc66;
        border-radius: 4px;
        font-weight: bold;
        padding: .25em .5em;
    }
    .catalystItem-txt {
        line-height: 1.8;
    }
    .catalystItem-thumb {
        max-width: 354px;
        margin: 0 0 0 auto;
    }
}

.fwb {
    font-weight: bold;
}
.fz11 {
    font-size: 1.1em;
}
.bgy {
    background-color: #ffe607;

}


/* Hero Section */
.hero {
    position: relative;
    padding-top: 20px;
}
.hero::before {
    background-color: #79C3DC;
    content: "";
    display: block;
    height: 408px;
    width: 35%;
}
.hero-wrap::after {
    background: url(../images/mv.jpg) no-repeat center center / cover;
    width: 83%;
    height: 400px;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
}
@media (min-width: 1200px) {
    .hero::before {
        height: 708px
    }
    .hero-wrap::after {
        height: 700px;
    }
}

.hero-inner {
    max-width: var(--width-wrap);
    width: 100%;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    z-index: 1;
}
.hero-content {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}
.hero-content::before,
.hero-content::after {
}
.hero-content::before {
    aspect-ratio: 11/31;
    background: url(../images/scroll.png) no-repeat center center / contain;
    width: 11px;
    margin-left: 150px;
    margin-top: 1.5em;
    order: 1;
}
.hero-content::after {
    height: 80px;
    width: 1px;
    background-color: #fff;
    margin-top: 10px;
    margin-left: 155px;
    order: 2;
}
@media (min-width: 768px) {
    .hero-content::before,
    .hero-content::after {
        content: "";
        display: block;
    }
}
@media (min-width: 1200px) {
    .hero-content {
        margin-top: 100px;
    }
    .hero-content::after {
        height: 150px;
    }
}

.hero-text {
    padding: 0 10px;
}

.hero-description,
.hero-message {
    color: #fff;
    font-weight: bold;
    text-shadow: 0px 4px 4px rgba(0,0,0,0.25);
    line-height: 1.3;
    margin: 0;
}
.hero-description {
    font-size: 18px;
}
.hero-message {
    font-size: 36px;
    margin-top: 0.25em;
}
@media (min-width: 1200px) {
    .hero-description {
        font-size: 24px;
    }
    .hero-message {
        font-size: 48px;
    }
}


/* Service Section */
.service {
}

.service-content {
    /* display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center; */
}

.service-text h3 {
    /* font-size: 1.8rem;
    color: #4fb3d9;
    margin-bottom: 1rem; */
}

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4fb3d9;
    font-weight: bold;
}

.btn {
    display: inline-block;
    background: #4fb3d9;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease;
    font-weight: bold;
}

.btn:hover {
    background: #3a9bc1;
}

/* circle */
.circle {
    position: relative;
}
.circle::before {
    content: "";
    display: block;
    position: absolute;
}
.about-content::before {
    aspect-ratio: 243/324;
    width: 120px;
    background: url(../images/circle1.png) no-repeat center center / contain;
    top: -7em;
    left: 2%;
}
#rangehoodfilter.service-content::before {
    aspect-ratio: 195/260;
    width: 90px;
    background: url(../images/circle2.png) no-repeat center center / contain;
    top: -5em;
    right: 1%;
}
.company-content::before {
    aspect-ratio: 195/260;
    width: 90px;
    background: url(../images/circle1.png) no-repeat center center / contain;
    top: -5em;
    left: -2%;
}
@media (min-width: 1200px) {
    .about-content::before {
        width: 243px;
        top: -15em;
    }
    #rangehoodfilter.service-content::before {
        width: 195px;
        top: -10em;
    }
    .company-content::before {
        width: 195px;
        top: -10em;
    }
}

.gotop {
    position: relative;
    z-index: 100;
}
.gotop a {
    position: fixed;
    right: 10px;
    bottom: 10px;

}