/* 
    font-family: 'Noto Sans', sans-serif;
    font-family: 'Noto Sans JP', sans-serif;
    font-family: 'Noto Serif JP', serif;
    font-family: 'Syncopate', sans-serif;
*/

@charset "UTF-8";

/* ////////////////
共通
//////////////// */
:root {
    scroll-padding: 100px;
    scroll-behavior: smooth;
}

html {
    background: #000;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
}

h1,
h2 {
    font-family: 'Syncopate', 'Noto Sans JP', sans-serif;
}

h2 {
    font-size: clamp(1.5rem, 1.194rem + 1.088vw, 2.5rem);
}

h3 {
    font-size: clamp(1rem, 0.923rem + 0.272vw, 1.25rem);
}

a {
    text-decoration: none;
    color: #fff;
    font-family: 'Syncopate', 'Noto Sans JP', sans-serif;
}

p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(0.875rem, 0.837rem + 0.136vw, 1rem);
}

li {
    font-size: clamp(0.875rem, 0.837rem + 0.136vw, 1rem);
}

.navigation span {
    font-family: 'Syncopate', 'Noto Sans JP', sans-serif;

}

a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
}

section {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 180px auto;
}

/* moreボタン */
.more-btn {
    display: block;
    width: 150px;
    border: solid 1px #fff;
    transition: .3s;
}

.more-text {
    position: relative;
    font-size: clamp(0.875rem, 0.774rem + 0.189vw, 1rem);
    text-align: center;
    padding: 10px 0 10px 0;
    transition: .3s;
    font-family: 'Syncopate', 'Noto Sans JP', sans-serif;
}

.more-text::after {
    content: '';
    position: absolute;
    top: 40%;
    right: -20%;
    display: block;
    width: 60px;
    height: 10px;
    border-bottom: solid 1px #fff;
    border-right: solid 2px #fff;
    transform: skewX(60deg) translateY(-50%);
    transition: .3s;
}

.more-btn:hover {
    background: #9c9c9c;
}

.more-text:hover::after {
    right: -30%;
}

.btn-2 {
    margin: 50px auto 0 auto;
}

/* ////////////////
indexページ
//////////////// */
.header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #000000;
}

.nav-pc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.logo {
    margin-left: 150px;
}

.logo img {
    height: 100px;
}

.navigation ul {
    display: flex;
    align-items: center;
    margin-right: 150px;
}

.navigation ul li {
    margin-left: 50px;
    font-weight: bold;
    transition: .3s;
}

.list-service {
    position: relative;
    transition: 10s;

}

/* .list-service::before {
    content: "";
    left: 50%;
    bottom: -20px;
    z-index: 15;
    transform: translateX(-50%) rotate(-135deg);
    position: absolute;
    display: block;
    width: 10px;
    height: 10px;
    border-right: solid 2px #fff;
    border-bottom: solid 2px #fff;
    transition: .5s;
    opacity: 0;
} */

.list-service::after {
    content: "";
    left: 50%;
    bottom: -15px;
    z-index: 15;
    transform: translateX(-50%) rotate(45deg);
    position: absolute;
    display: block;
    width: 10px;
    height: 10px;
    border-right: solid 2px #fff;
    border-bottom: solid 2px #fff;
    transition: .5s;
}

.dropdown-parent1,
.dropdown-parent2 {
    position: relative;
    cursor: default;
}

.dropdown-parent1:hover,
.dropdown-parent2:hover {
    opacity: 1 !important;
}

.dropdown-parent:hover1 .list-service::after {
    opacity: 0;
}

.dropdown-parent:hover1 .list-service::before {
    opacity: 1;
}

.dropdown-parent:hover2 .list-service::after {
    opacity: 0;
}

.dropdown-parent:hover3 .list-service::before {
    opacity: 1;
}

.dropdown1 {
    position: absolute;
    z-index: -10;
    left: -30px;
    padding: 30px;
    flex-direction: column;
    align-items: flex-start !important;
    background: #000;
    opacity: 0;
    transition: .5s;
    pointer-events: none;
}

.dropdown2 {
    position: absolute;
    z-index: -10;
    left: -150px;
    padding: 30px;
    background: #000;
    opacity: 0;
    transition: .5s;
    pointer-events: none;
    align-items: flex-start !important;
}

.dropdown2-price {
    margin-right: 40px;
}

.dropdown2-price p {
    white-space: nowrap;
    font-family: 'Syncopate', 'Noto Sans JP', sans-serif;
}

.dropdown2-price li {
    margin-top: 24px;
    font-size: 14px;
}

.is-drop {
    z-index: 10;
    opacity: 1;
    transition: opacity .5s, z-index 0s;
    pointer-events: auto;
}

.dropdown-child {
    white-space: nowrap;
    margin-left: 0 !important;
}

.dropdown-child {
    margin-top: 40px;
}

.navigation ul li:hover {
    opacity: .8;
}

.change-text {
    position: relative;
    transition: .3s;
}

.change-text::before {
    content: "";
    display: block;
    position: absolute;
    top: -4px;
    left: 0;
    opacity: 0;
    text-align: center;
    background: #000;
    width: 101%;
    transition: .3s;
}

.change-home.hover::before {
    content: "ホーム";
    opacity: 1;
    z-index: 1;
}

.change-service.hover::before {
    content: "サービス";
    opacity: 1;
    z-index: 1;
}

.change-works.hover::before {
    content: "実績";
    opacity: 1;
    z-index: 1;
}

.change-price.hover::before {
    content: "料金";
    opacity: 1;
    z-index: 1;
}

.change-blog.hover::before {
    content: "ブログ";
    opacity: 1;
    z-index: 1;
}

.change-contact.hover::before {
    content: "お問い合わせ";
    opacity: 1;
    z-index: 1;
}

.change-coating.hover::before {
    content: "コーティング";
    opacity: 1;
    z-index: 1;
    text-align: left;
}

.change-car-wash.hover::before {
    content: "洗車";
    opacity: 1;
    z-index: 1;
    text-align: left;
}

.change-option.hover::before {
    content: "オプション";
    opacity: 1;
    z-index: 1;
    text-align: left;
}

/* sp-menu */
.sp-nav-block {
    position: relative;
    z-index: 1000;
    display: none;
    background: #000000;
}

.nav-sp {
    position: relative;
    height: 100px;
    text-align: right;
}

.sp-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    width: fit-content;
    font-size: 2vw;
    text-align: center;
}

.sp-logo img {
    height: 100px;
}

.sp-menu {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    display: inline-block;
    width: 50px;
    height: 30px;
    cursor: pointer;
}

.sp-menu span {
    position: absolute;
    right: 10%;
    width: 40px;
    display: block;
    border-top: solid 1px #fff;
}

.sp-menu span:first-child {
    top: 0;
}

.sp-menu span:nth-child(2) {
    top: 50%;
}

.sp-menu span:nth-child(3) {
    bottom: 0;
}

.sp-menu.active span:first-child {
    top: 50%;
    transform: rotate(45deg);
}

.sp-menu.active span:nth-child(2) {
    display: none;
}

.sp-menu.active span:nth-child(3) {
    bottom: 50%;
    transform: rotate(-45deg);
}

/* .sp-menulist {
    position: fixed;
    top: 100px;
    z-index: -10;
    opacity: 0;
    width: 100vw;
    height: calc(100dvh + 100px);
    background: #fff;
    transition: all .3s;
    pointer-events: none;
    overflow-y: auto;
} */

.sp-menulist {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -10;
    opacity: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    pointer-events: none;
    visibility: hidden;
    padding-top: 100px;
    transition: all .3s;
}

.is-open {
    z-index: 100;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.stop {
    overflow: hidden;
}

.sp-menulist-top {
    position: relative;
    height: 100px;
    text-align: right;
    background: #000;
}

.sp-menulist-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    width: fit-content;
    font-size: 2vw;
    text-align: center;
    color: #000;
}

.sp-menulist-logo img {
    height: 100px;
}

.sp-menulist-cross {
    position: relative;
    display: inline-block;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 50px;
    height: 30px;
    cursor: pointer;
}

.sp-menulist-cross span {
    position: absolute;
    width: 40px;
    right: 10%;
    display: block;
    border-top: solid 1px #fff;
}

.sp-menulist-cross span:first-child {
    top: 50%;
    transform: rotate(45deg);
}

.sp-menulist-cross span:nth-child(2) {
    bottom: 50%;
    transform: rotate(-45deg);
}

.sp-menulist ul {
    width: 90%;
    max-width: 400px;
    margin: 30px auto;
}

.sp-menulist ul p {
    color: #333333;
}

.sp-menulist ul li {
    color: #333;
    font-size: clamp(1.25rem, 1.047rem + 0.377vw, 1.5rem);
    margin-bottom: 20px;
    font-family: 'Noto Sans JP', sans-serif
}

.sp-menulist li a {
    color: #333;
    font-size: clamp(1.25rem, 1.047rem + 0.377vw, 1.5rem);
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 800;
}

.sp-menulist p {
    font-size: 16px;
    font-weight: 800;
    padding-left: 20px
}

.sp-list-service {
    position: relative;
    margin-bottom: 10px !important;
    font-weight: 800;
}

.sp-list-service span {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-right: solid 2px #000;
    border-bottom: solid 2px #000;
    margin-left: 15px;
    transform: translateY(-50%) rotate(45deg);
}

.sp-service-list {
    text-align: left !important;
    padding-left: 50px;
    margin: 10px 0 !important;

}

.sp-service-list a {
    font-size: 14px !important;
    font-weight: 400 !important;
}


.sp-menu-border {
    display: block;
    width: 60%;
    height: 1px;
    margin: 0 auto;
    background: #000;
}

.sp-menulist-contact {
    margin-bottom: 40px;
}

.sp-menulist-insta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.sp-menulist-insta p {
    color: #000;
    font-size: clamp(1.25rem, 1.047rem + 0.377vw, 1.5rem);
    font-family: 'Noto Sans', sans-serif;
    margin-left: 15px;
}

.sp-menulist-insta img {
    width: 45px;
}

/* first view */
.fv {
    width: 100%;
    height: calc(100dvh - 100px);
}

.swiper {
    width: 100%;
    height: 90%;
    position: relative;
}

.swiper-img {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;

}

.slide1 {
    background-image: url(../images/fv-1.png);
}

.slide2 {
    background-image: url(../images/fv-2.png);
}

.slide3 {
    background-image: url(../images/fv-3.png);
}

.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
    animation: zoomUp 15s linear 0s normal both;
}

@keyframes zoomUp {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

.main-caption {
    width: fit-content;
    position: absolute;
    left: 10%;
    bottom: 10%;
    z-index: 1;
}

.main-caption h1 {
    font-size: clamp(2.5rem, 1.283rem + 2.264vw, 4rem);
    font-family: 'Noto Sans', sans-serif;

    /* font-family: 'Noto Serif JP', serif; */
    /* font-family: 'Syncopate', sans-serif; */

    letter-spacing: 0.1em;

    color: #fff;
    text-shadow: 1px 1px;
}

.main-caption p {
    font-size: clamp(1.25rem, 1.047rem + 0.377vw, 1.5rem);
    font-family: 'Noto Sans JP', sans-serif;
    padding-left: 0.5em;
    letter-spacing: 0.2em;
    margin-top: 20px;
    border-left: solid 10px #fff;
}

/* .main-caption p::before{
    content: '';
    display: block;
    width: 10px;
    height: 100%;
    border: solid 1px #fff;
    background: #fff;
} */

.scroll {
    height: 10%;
    overflow: hidden;
    text-align: center;
    font-size: clamp(0.875rem, 0.774rem + 0.189vw, 1rem);
    margin-top: 5px;
    font-family: 'Noto Sans', sans-serif;
}

.scroll>div {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.scroll-line {
    display: block;
    overflow: hidden;
    margin: 0 auto;
    width: 1px;
    height: 200%;
    background: #fff;
    animation: scroll 2.5s linear 0s infinite normal backwards;
}

@keyframes scroll {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(120%);
    }
}

/* introduction */
.introduction {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 100px;
}

.intro-box {
    width: 500px;
}

.insert {
    font-size: clamp(2rem, 1.594rem + 0.755vw, 2.5rem);
    font-family: 'Noto Serif JP', serif;
    font-weight: normal;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20%);
    transition: 1s;
}

.intro-text {
    font-size: clamp(0.875rem, 0.774rem + 0.189vw, 1rem);
    line-height: 2.5;
    width: 100%;
    opacity: 0;
    transform: translateY(20%);
    transition: 1.5s;
}

.btn-1 {
    margin-top: 50px;
}

.intro-img {
    width: 500px;
    opacity: 0;
    transition: all 3s;
}

.is-visible {
    top: 0 !important;
    opacity: 1 !important;
    transform: none !important;
}

.intro-img img {
    width: 100%;
    margin-left: auto;
}

.headline {
    display: block;
    margin: 120px auto 80px auto;
    font-size: clamp(2rem, 1.594rem + 0.755vw, 2.5rem);
    width: fit-content;
    position: relative;
}

.headline-service::after {
    content: 'サービス';
    font-size: clamp(0.875rem, 0.774rem + 0.189vw, 1rem);
    position: absolute;
    top: 100%;
    right: 0%;
}

.service-box {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.service-img {
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: translateY(20%);
    transition: 1s;
}

.service-image {
    transition: .5s;
}

.service-img p {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    font-size: clamp(1.25rem, 1.047rem + 0.377vw, 1.5rem);
    font-weight: bold;
}

.service-img:hover .service-image {
    transform: scale(1.1, 1.1);
    opacity: .7;
}

.headline-works::after {
    content: '実績';
    font-size: clamp(0.875rem, 0.774rem + 0.189vw, 1rem);
    position: absolute;
    top: 100%;
    right: 0%;
}

.index-agent-block {
    display: flex;
    width: 90%;
    max-width: 1200px;
    justify-content: space-between;
    align-items: center;
    margin: 100px auto 0 auto;
    gap: 24px;
    opacity: 0;
    transform: translateY(20%);
    transition: 1s;
}

.index-agent-text {
    width: 50%;
    max-width: 650px;
}

.index-agent-img {
    width: 50%;
    max-width: 500px;
}

.agent-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    font-size: 40px;
    margin-bottom: 40px;
}

.agent-sentence {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    line-height: 2;
    text-align: justify;
}

.index-works-block {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.index-work {
    width: 20%;
    opacity: 0;
    transform: translateY(10%);
    transition: 1s;
}

.index-work-img {
    overflow: hidden;
}

.index-work-img img {
    width: 100%;
    transition: .3s;
}

.index-work-img img:hover {
    transform: scale(1.1, 1.1);
    opacity: .7;
}

.index-work-text {
    margin-top: 2em;
}

.index-work-text p {
    margin-bottom: .5em;
    font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
    font-size: clamp(0.875rem, 0.774rem + 0.189vw, 1rem);
    transition: .3s;
}

.headline-blog::after {
    content: 'ブログ';
    font-size: clamp(0.875rem, 0.774rem + 0.189vw, 1rem);
    position: absolute;
    top: 100%;
    right: 0%;
}

.articles-index {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    row-gap: 64px;
    column-gap: 24px;
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
}

/* .article-block {
    max-width: 250px;
} */

.day-index {
    font-size: clamp(0.875rem, 0.774rem + 0.189vw, 1rem);
    font-family: 'Noto Sans', sans-serif;
    margin: 20px 0 10px 0;
}

.title-index {
    font-size: clamp(0.875rem, 0.774rem + 0.189vw, 1rem);
    font-family: 'Noto Sans', sans-serif;
}

.article-index-img {
    border: solid 1px #fff;
    transition: .3s;
}

.article-block:hover .article-index-img {
    opacity: .7;
}

.article-block:hover .day-index {
    text-decoration: underline;
}

.article-block:hover .title-index {
    text-decoration: underline;
}

/* instagram */
.instagram {
    width: 100%;
    max-width: 100%;
}

.headline-insta::after {
    content: 'インスタグラム';
    font-size: clamp(0.875rem, 0.774rem + 0.189vw, 1rem);
    position: absolute;
    top: 100%;
    right: 0%;
}

.instagram-roop {
    overflow: hidden;
    display: flex;
    width: 100%;
    gap: 10px;
}

.instagram-roop:hover #sbi_images {
    animation-play-state: paused;
}

#sb_instagram {
    width: auto !important;
    padding-bottom: 0 !important;
}

#sbi_images {
    animation: infinity-scroll-left 30s infinite linear 0.5s both;
    padding: 0 !important;
}

.sbi_item {
    width: calc(100vw / 6) !important;
}

@keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* google map */

.headline-map::after {
    content: 'アクセス';
    font-size: clamp(0.875rem, 0.774rem + 0.189vw, 1rem);
    position: absolute;
    top: 100%;
    right: 0%;
}

.google-map-erea {
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.map {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.headline-contact::after {
    content: 'お問い合わせ';
    font-size: clamp(0.875rem, 0.774rem + 0.189vw, 1rem);
    position: absolute;
    top: 100%;
    right: 0%;
}

.contact {
    background-image: url(../images/contact-top.jpg);
    background-size: cover;
    opacity: 0;
    transform: translateY(20%);
    transition: all 1s;
}

.contact>.headline {
    padding-top: 50px;
}

.contact-erea {
    display: flex;
    justify-content: center;
    gap: 150px;
    align-items: center;
    padding-bottom: 50px;
}

.contact-block {
    text-align: center;
}

.contact-text {
    font-size: clamp(0.875rem, 0.774rem + 0.189vw, 1rem);
    text-align: center;
}

.tel-erea {
    margin-bottom: 50px;
}

.tel-erea p {
    font-family: 'Noto Sans', sans-serif;
}

.tel-index-text {
    font-size: clamp(0.875rem, 0.774rem + 0.189vw, 1rem);
}

.tel-index {
    font-size: clamp(1.5rem, 1.094rem + 0.755vw, 2rem);
    font-family: 'Noto Sans', sans-serif;
}

.to-mailform {
    font-size: clamp(1.25rem, 1.047rem + 0.377vw, 1.5rem);
    font-family: 'Noto Sans', sans-serif;
    border: solid 1px #fff;
    padding: 20px 40px;
    transition: .3s;
}

.to-mailform:hover {
    color: #000;
    background: #fff;
    border-color: #000;
}

.footer-erea {
    margin: 100px 0;
}

.footer-logo {
    width: fit-content;
    margin: 0 auto 50px auto;
}

.footer-logo img {
    height: 150px;
}

.footer-address {
    width: fit-content;
    margin: 20px auto;
    font-size: clamp(0.875rem, 0.774rem + 0.189vw, 1rem);
    font-family: 'Noto Sans', sans-serif;
}

.footer-address li:nth-child(2) {
    margin-bottom: 20px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(0.875rem, 0.774rem + 0.189vw, 1rem);
}

.footer-nav li {
    margin: 30px;
    font-weight: bold;
}

/* ////////////
service page
//////////// */

/* 下層ページトップ */
.lower-top-img {
    position: relative;
    width: 100%;
    height: 30vh;
}

.lower-top-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub-head-title {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    font-size: clamp(2rem, 1.594rem + 0.755vw, 2.5rem);
}

/* 車体サイズリスト */
.size-list-block {
    margin-top: 80px;
}

.size-list {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.size-list-headline {
    text-align: center;
    margin-bottom: 40px;
}

.size-list-table {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-bottom: 1px;
}

.size-list-table dd {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #CCCCCC;
    color: #333333;
    font-weight: 800;
    margin-right: 1px;
}

.size-list-table dt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    padding: 16px 0;
}

.size-list-table dt span {
    margin-bottom: 8px;
    font-size: 14px;
    color: #333333;
}

.size-list-table dt img {
    max-width: 100px;
}

.size-list-tips {
    margin-top: 4px;
    text-align: right;
}

.size-list-tips a {
    position: relative;
    display: inline-block;
    font-size: 14px;
}

.size-list-tips a span {
    position: relative;
    top: 4px;
    left: -8px;
    display: inline-block;
}

.size-list-tips a span img {
    width: 18px;
    height: 18px;
}

.jamp {
    text-align: right;
    margin-top: 24px;
    font-size: 14px;
}

.jamp a {
    font-size: 14px;
}

.arrow {
    position: relative;
    top: 3px;
    display: inline-block;
    width: 16px;
    height: 16px;
    border: solid 1px #fff;
    border-radius: 100%;
    background: #fff;
    margin-left: 8px;
}

.arrow span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translatex(-50%) translateY(-60%) rotate(45deg);
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: solid 2px #000;
    border-bottom: solid 2px #000;
}

/* サービス詳細 */
.service-block {
    width: 90%;
    max-width: 1200px;
    margin: 160px auto 0 auto;
}

.price-table {
    color: #000;
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    border-spacing: 0;
}

.price-table tr {
    font-weight: 800;
}

.price-table tr:nth-child(even) {
    background-color: #c9c9c9;
}

.price-table td {
    font-size: clamp(0.875rem, 0.774rem + 0.189vw, 1rem);
    padding-left: 5%;
    font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
}

.price-table tr:not(:first-child) {
    height: 50px;
}

.price-table-first-td {
    font-size: 14px !important;
    padding-bottom: 10px;
}

.price-table-tips {
    color: #333333 !important;
    font-size: 14px;
    font-weight: 800;
    padding-left: 15px;
}

/* コーティング */
.coating-title {
    margin-bottom: 40px;
}

.headline-coating {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
}

.coating-plan-text p {
    line-height: 2;
}

.coating-plan-detail {
    margin-top: 60px;
}

.coating-plan-detail ul li {
    margin: 16px 0;
}

.coating-plan {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.coating-plan-block {
    width: 50%;
    max-width: 600px;
}

.coating-plan-img {
    width: 50%;
    max-width: 600px;
}

.coating-plan-detail-span {
    font-size: 12px;
}

.headline-coating2 {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
}

.coating-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 5em;
    margin-top: 80px;
}

.service-enforce {
    width: 100%;
    max-width: 500px;
}

.service-enforce-detail {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 8px;
    row-gap: 8px;
}

.service-enforce-detail p {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 250px;
    height: 60px;
    background: #ffffff;
    color: #333333;
    padding: 10px;
}

.service-detail {
    width: 100%;
    max-width: 650px;
}

.service-detail-text {
    font-size: clamp(0.875rem, 0.774rem + 0.189vw, 1rem);
}

.service-detail-text-sub {
    margin-top: 20px;
    font-size: 12px;
}

.service-detail-price {
    background: #fff;
    margin-top: 8px;
    padding: 5% 10%;
}

/* カーウォッシュ */
.car-wash-img {
    width: 100%;
    max-width: 500px;
}

.car-wash-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-top: 80px;
}

.wash-enforce {
    width: 100%;
}

.wash-enforce-detail {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 8px;
    row-gap: 8px;
}

.wash-enforce-detail p {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    background: #ffffff;
    color: #333333;
    padding: 10px;
}

/* オプション */
.option-block {
    margin-top: 160px;
}

.option-block-box h3 {
    margin-bottom: 12px;
}

.option-block-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 80px;
    margin-top: 40px;
}

.option-block-box {
    padding: 16px;
    width: 100%;
    max-width: 320px;
}

.option-detail {
    margin-bottom: 24px;
}

.option-price {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
    background: #ffffff;
}

.option-price dd,
.option-price dt {
    font-weight: 800;
    color: #333333;
    padding: 4px 8px;
    font-size: clamp(0.875rem, 0.837rem + 0.136vw, 1rem);
}

.price-gap {
    margin-top: 24px;
}

.option-detail {
    font-size: 12px;
}

/* works */
.works-erea {
    width: 60%;
    display: block;
    margin: 0 auto;
}

.works-block {
    opacity: 0;
    transform: translateY(20%);
    transition: 1s;
}

.works-images {
    display: flex;
    gap: 10px;
}

.works-images-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.works-headline {
    margin: 200px auto 50px 0;
    font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
}

.works-details {
    margin-top: 20px;
    display: flex;
    align-items: flex-end;
    gap: 60px;
}

.works-details h3 {
    font-size: clamp(0.875rem, 0.774rem + 0.189vw, 1rem);
}

.works-details p {
    font-size: clamp(0.875rem, 0.774rem + 0.189vw, 1rem);
}

.before-img {
    position: relative;
}

.before-img::after {
    content: 'BEFORE';
    position: absolute;
    font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
    font-size: clamp(1.25rem, 1.047rem + 0.377vw, 1.5rem);
    font-weight: bold;
    bottom: 0;
    background: #000000a8;
    width: 100%;
    text-align: center;
}

.after-img {
    position: relative;
}

.after-img::after {
    content: 'AFTER';
    position: absolute;
    font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
    font-size: clamp(1.25rem, 1.047rem + 0.377vw, 1.5rem);
    font-weight: bold;
    bottom: 0;
    background: #000000a8;
    width: 100%;
    text-align: center;
}

/* contact */
.mail-headline::after {
    content: 'メールフォーム';
    font-size: clamp(0.875rem, 0.774rem + 0.189vw, 1rem);
    position: absolute;
    top: 100%;
    right: 0%;
}

.mail-form {
    width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
}

.mail-form dl {
    padding: 30px 50px;
}

.mail-form dt {
    font-size: clamp(0.875rem, 0.774rem + 0.189vw, 1rem);
    color: #000;
    margin-bottom: 10px;
}

.mail-form dd {
    margin-bottom: 30px;
}

input,
textarea {
    width: 100%;
    padding: 5px;
    background: #e0e0e0;
    border: none;
    border-radius: 5px;
    outline: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(0.875rem, 0.774rem + 0.189vw, 1rem);
    line-height: 2;
}

textarea {
    height: 250px;
    resize: vertical;
}

.mail-description {
    text-align: center;
    font-size: clamp(0.875rem, 0.774rem + 0.189vw, 1rem);
    margin: 30px 0;
}

.br-sp-form {
    display: none;
}

.submit {
    text-align: center;
    margin: 50px auto 0 auto;
    width: 130px;
}

.required {
    position: relative;
    display: inline-block;
}

.required::after {
    content: "必須";
    position: absolute;
    top: 50%;
    right: -48px;
    transform: translateY(-50%);
    display: inline-block;
    font-size: 12px;
    color: #fff;
    background: rgb(241, 41, 41);
    padding: 4px 8px;
    border-radius: 5px;
}

.wpcf7-spinner {
    display: none !important;
}

.submit p {
    padding: 0 !important;
}

.wpcf7-not-valid-tip {
    font-size: clamp(0.875rem, 0.774rem + 0.189vw, 1rem);
}

.wpcf7-submit {
    color: #fff;
    background: transparent;
    cursor: pointer;
    transition: .3s;
}

.wpcf7-submit:hover {
    color: #333;
    background: #fff;
}

.wpcf7-response-output {
    font-size: clamp(0.875rem, 0.774rem + 0.189vw, 1rem);
    font-weight: 900;
    border: none !important;
    text-align: center;
    color: #ffb900;
}

.submit p {
    border: solid 1px #fff;
    border-radius: 5px;
    padding: 15px;
    font-size: clamp(0.875rem, 0.774rem + 0.189vw, 1rem);
}

.access-headline::after {
    content: 'アクセス';
    font-size: clamp(0.875rem, 0.774rem + 0.189vw, 1rem);
    position: absolute;
    top: 100%;
    right: 0%;
}

/* アクセス */
.address-dl {
    display: block;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
}

.address-dl div {
    display: flex;
    gap: 50px;
    margin-bottom: 24px;
}

.address-dl dt {
    color: #fff;
    width: 30%;
}

.address-dl dd {
    color: #fff;
    width: 70%;
    font-size: clamp(0.875rem, 0.774rem + 0.189vw, 1rem);
}

/* archive */
.archive-list {
    margin-top: 100px;
}

/* pagination */
.nav-links {
    display: flex;
    justify-content: center;
    margin: 80px 0;
    text-align: center;
}

.nav-links a {
    transition: .3s;
}

.nav-links a,
.nav-links span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
    font-size: clamp(0.875rem, 0.774rem + 0.189vw, 1rem);
    border: solid 1px #fff;
    border-radius: 50%;
}

.nav-links a:hover {
    color: #ffb900;
    border-color: #ffb900;
}

.page-numbers {
    font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
    margin: 0 24px;
    font-weight: 900;
}

.current {
    color: #ffb900;
    border-color: #ffb900 !important;
}

.next,
.prev,
.dots {
    border: none !important;
}

/* single */
.blog-contents {
    width: 95%;
    max-width: 1200px;
    border: solid 1px #fff;
    border-radius: 10px;
    margin: 120px auto 80px auto;
    padding: 42px;
    font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
}

.blog-title {
    margin-bottom: 8px;
}

.blog-title h2 {
    font-size: clamp(1.5rem, 1.094rem + 0.755vw, 2rem);
}

.blog-date {
    margin-bottom: 40px;
}

.blog-date p {
    font-size: 12px;
}

.blog-content {
    font-size: clamp(0.875rem, 0.774rem + 0.189vw, 1rem);
}