/*
Theme Name: Cocoon Child
Theme URI: https://wp-cocoon.com/
Template: cocoon-master
Author: わいひら
Author URI: https://nelog.jp/
Description: SEO・高速化・モバイルファースト最適化済みの無料テーマ。
Tags: two-columns,left-sidebar,right-sidebar
Version: 2.8.6.1750361401
Updated: 2025-06-20 04:30:01

*/

/*----------------------------共通----------------------------*/
.center {
    text-align: center;
}

a:hover {
    color: unset;
}

.contact_fix a:hover {
    opacity: 1;
}

body {
    font-family: "Noto Sans JP", sans-serif;
}

body.home {
    overflow: hidden;
}

.home .entry-header,
.entry-footer,
.date-tags,
.admin-pv,
.admin-panel {
    display: none;
}

.article,
.footer {
    margin: 0 !important;
}

.flex {
    display: flex;
}

.flex img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content,
.main,
.entry-content {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

.main {
    background: transparent !important;
}

.main_title {
    display: none;
}

.wrap {
    width: 100%;
}

img {
    width: 100%;
}

.red {
    font-weight: bold;
    color: #c9020f;
}

.video-container,
.instagram-container,
.facebook-container {
    max-width: none !important;
}

.center {
    text-align: center;
}

.article h2,
.article h3,
.article h4,
.article h5,
.article h6 {
    background: transparent;
    border: 0;
}

.single .article-header {
    display: none;
}

.single .content {
    margin: 80px auto !important;
    padding: 10px 20px !important;
    max-width: 1000px;
}

.sp_on {
    display: none;
}

@media screen and (max-width: 480px) {
    .sp_on {
        display: block;
    }

    .pc_on,
    .pc_off {
        display: none;
    }
}

.mt-50 {
    margin-top: 50px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.go-to-top {
    bottom: 10%;
    right: 15px;
}

.go-to-top-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}


/*----------------------------header----------------------------*/
.header-container {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.5) !important;
    padding: 20px;
    margin-top: 20px;
}

.header {
    width: 100%;
}

.header_menu {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
    list-style: none;
    font-size: 16px;
}

.header_menu a {
    color: #fff;
    text-decoration: none;
}

.header_menu a:hover {
    color: #000;
}

.header-container {
    transform: translateY(0);
    transition: transform 0.4s ease;
    margin: 0;
}

@media screen and (min-width: 961px) {
    .header-container.is-up {
        -webkit-transform: translateY(-110px);
        transform: translateY(-110px);
    }
}

@media screen and (max-width: 960px) {
    .header-container.is-up {
        -webkit-transform: translateY(-80px);
        transform: translateY(-80px);
    }
}

.header-container.is-down {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

/*----------------------------ハンバーガーメニュー-----------------------------------*/
/* hamburger(ハンバーガーアイコン)
=================================== */
.nav-wrapper {
    position: relative;
    display: none;
    align-items: center;
}

.hamburger {
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 9999;
    padding: 20px;
}

.hamburger__line {
    position: absolute;
    width: 35px;
    height: 3px;
    right: 10px;
    background-color: #cccccc;
    transition: all 0.5s;
}

.hamburger__line--1 {
    top: 10px;
}

.hamburger__line--2 {
    top: 22px;
}

.hamburger__line--3 {
    top: 35px;
}

.sp_inner {
    margin-top: 50px;
    padding: 10px;
    position: relative;
}

.sp_inner img {
    width: 60px;
}

.sp_inner ul {
    list-style: none;
    padding-left: 0 !important;
    text-align: left !important;
    margin-top: 50px;
}

.sns_link {
    padding: 15px;
}

.sns_link i {
    font-size: 40px;
}

.sp_menu_list li {
    font-size: 20px;
    margin: 10px;
}

.sp_inner ul li a {
    text-decoration: none;
    padding: 7px;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
}

.sp_inner a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.sp_inner ul .header_contact {
    margin-top: 30px;
    padding: 0;
    text-align: center;
}

/*ハンバーガーがクリックされたら*/
.open .hamburger__line--1 {
    transform: rotate(-45deg);
    top: 25px;
}

.open .hamburger__line--2 {
    opacity: 0;
}

.open .hamburger__line--3 {
    transform: rotate(45deg);
    top: 25px;
}

/* 
sp-nav(ナビ)
=================================== */
.sp-nav {
    position: fixed;
    right: -100%;
    /*ハンバーガーがクリックされる前はWindow右側に隠す*/
    top: 0;
    width: 60%;
    min-width: 300px;
    height: 100vh;
    background-color: #4d4d4d;
    transition: all 0.5s;
    z-index: 999;
    overflow-y: auto;
    /* メニューが多くなったらスクロールできるように */
}

/*ハンバーガーがクリックされたら右からスライド*/
.open .sp-nav {
    right: 0;
}


/* black-bg(ハンバーガーメニュー解除用bg)
=================================== */
.black-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 100;
}

/*ハンバーガーメニューが開いたら表示*/
.open .black-bg {
    opacity: 0.3;
    visibility: visible;
}

/*----------------------------main----------------------------*/
.main_title {
    display: none;
}

.top_container {
    position: relative;
    height: 100vh;
}

.slider_text {
    position: absolute;
    top: 17%;
    left: 3%;
    color: #fff;
    font-family: "Zen Old Mincho", serif;
    font-style: italic;
    font-size: clamp(12px, 2vw,20px);
    letter-spacing: 0.3em;
    writing-mode: vertical-rl;
    height: auto;
}

.slider_text h1 {
    text-align: end;
}

.slider_text_02 {
    padding: 40px 0 0 0;
    margin-bottom: -27px;
}

/*----vegas_slider-----*/
#slider {
    width: 100%;
    height: 60vh;
    position: relative;
    margin: 0;
    z-index: 0;
}

@media screen and (min-width: 1200px) {
    #slider {
        height: 65vh;
    }
}

.under_banner_list {
    display: flex;
    width: 100%;
    height: 35%;
    margin-bottom: 60px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 2;
    background: #fff;
}

.under_banner_box {
    flex: 1;
    background-position: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
}

.under_banner_box::before {
    content: "";
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
    z-index: 0;
    opacity: 0.5;
}

.under_banner_box._01::before {
    background-image: url('/wp-content/uploads/2025/06/top_under01.jpg');
}

.under_banner_box._02::before {
    background-image: url('/wp-content/uploads/2025/06/top_under03.jpg');
}

.under_banner_box._03::before {
    background-image: url('/wp-content/uploads/2025/06/top_under02.jpg');
}

/* 背景拡大用クラス */
.under_banner_box.hovered::before {
    transform: scale(1.1);
    opacity: 1;
}

/* 前面のテキスト・画像を見えるように */
.under_banner_link,
.box_inner {
    position: relative;
    z-index: 1;
}

.box_inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.box_logo {
    width: 150px;
    height: auto;
    margin: 0 auto;
}

.box_logo.five {
    width: 250px;
}

.box_text {
    font-size: 1.1em;
    line-height: 1.5;
    margin: 20px 0 0 0;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.8);
}

.under_banner_link {
    display: block;
    height: 100%;
    width: 100%;
    color: #fff;
    text-align: center;
    padding: 40px 10px;
    box-sizing: border-box;
    text-decoration: none;
}

/*---------------------------page----------------------------*/
.entry-title {
    display: none;
}

.page-id-51,
.page-id-72 {
    background-color: #474747 !important;
}

.page-id-51 .content,
.page-id-72 .content {
    margin: 80px auto !important;
    max-width: 1000px;
    padding: 15px !important;
}

.page-id-51 .entry-title,
.page-id-72 .entry-title {
    font-size: 40px;
    color: #7d7d7d;
}

.page_content {
    max-width: 800px;
    margin: 0 auto;
}

.page_content h2 {
    font-size: 60px;
    margin: 20px 0 30px;
    padding: 0 !important;
    opacity: 0.8;
}

.position {
    margin: 0 45px 0 0 !important;
    font-size: 16px;
    text-align: end;
}

.owner {
    font-size: 40px;
    text-align: end;
    line-height: 1em;
}

.page_content h5 {
    color: #fff !important;
}

.page_content p {
    color: #fff;
}

.page_section h2 {
    font-size: 40px;
    color: #333;
    margin: 100px 0 30px;
}

.page_section_content {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    margin: 50px auto;
}

.page_section_content figure,
.company_box_text {
    width: 50%;
    margin-bottom: 20px;
}

.company_box_text p {
    color: #000;
	margin: 0 !important;
}

.page_section_content h3 {
    margin: 10px 0 20px 0;
    padding: 0;
}

.company_box {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.company_tag p {
    background: #7d7d7d;
    display: inline-block;
    padding: 3px 20px;
    border-radius: 20px;
    margin: 20px;
}

.scale_down {
    transform: scale(0.7);
}

a.btn_27 {
    display: block;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    width: auto;
    margin: auto;
    padding: 1rem 4rem;
    color: #fff;
    font-weight: bold;
    background: #7d7d7d;
    position: relative;
    transition: 0.3s ease-in-out;
}

a.btn_27:hover {
    background: #fff;
    color: #7d7d7d;
}

a.btn_27:before,
a.btn_27:after {
    box-sizing: inherit;
    content: "";
    position: absolute;
    border: 2px solid transparent;
    width: 0;
    height: 0;
}

a.btn_27:before {
    top: 0;
    left: 0;
}

a.btn_27:after {
    bottom: 0;
    right: 0;
}

a.btn_27:hover:before,
a.btn_27:hover:after {
    width: 100%;
    height: 100%;
}

a.btn_27:hover:before {
    border-top-color: #7d7d7d;
    border-right-color: #7d7d7d;
    transition: width 0.15s ease-out, height 0.15s ease-out 0.15s;
}

a.btn_27:hover:after {
    border-bottom-color: #7d7d7d;
    border-left-color: #7d7d7d;
    transition: border-color 0s ease-out 0.2s, width 0.15s ease-out 0.2s, height 0.15s ease-out 0.3s;
}

.page_car-coating h2 {
    color: #fff !important;
    font-size: 30px;
    border-bottom: 1px solid #fff;
    padding: 0 0 20px 0 !important;
}

.page_car-coating h3 {
    color: #fff;
    margin: 0 0 0 0 !important;
}

.car-coating_tel {
    text-align: center;
    font-size: 40px;
}

/*---------------------------------contact--------------------------------*/
.page-id-48 {
    background-color: #474747 !important;
}

.page-id-48 .content {
    margin: 80px auto !important;
    max-width: 1000px;
    padding: 15px !important;
}

.page-id-48 .entry-title {
    font-size: 40px;
    color: #7d7d7d;
}

.page-id-48 p {
    color: #fff;
}

.contact_form {
    margin: 50px auto;
    max-width: 900px;
}

.contact_form .second_tit {
    margin-bottom: 40px;
    color: #fff;
    border-bottom: 1px solid #fff;
}

.contact_form_inner th,
.contact_form_inner tr,
.contact_form_inner td {
    border: 0 !important;
    vertical-align: baseline;
    background: transparent !important;
    color: #fff;
    text-align: left;
    font-size: 16px;
    min-width: 100px;
}

.cont_hissu {
    font-size: 14px;
}

.cont_item_massege {
    vertical-align: top !important;
}

.cont_hissu span {
    padding: 5px 15px;
}

.hissu {
    background: #f59089;
    color: #fff;
}

.ninni {
    background: #a3a3a3;
    color: #fff;
    margin-top: 3px;
    display: inline-block;
}

.form-btn {
    text-align: center;
}

.form-btn-font-o,
.form-btn-font-g {
    width: 50%;
    max-width: 300px;
}

/*---------------------------coating---------------------------*/

/*---------------------------footer----------------------------*/
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    padding: 0;
}

.footer-bottom.fdt-up-and-down .footer-bottom-content {
    text-align: left;
    padding: 0 0 0 50px;
}

.footer-bottom {
    margin: 0 !important;
    padding: 15px;
}

.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    max-width: 1200px;
}

.sns {
    width: 40px;
    height: 40px;
}

@media screen and (max-width: 980px) {
    body.home {
        overflow: unset;
    }

    .header_menu {
        display: none;
    }

    .nav-wrapper {
        display: block;
        margin: 0 0 0 auto;
    }

    .header-container {
        background-color: transparent !important;
    }

    .under_banner_list {
        display: block;
        height: auto;
        position: unset;
    }

    .under_banner_box {
        overflow: unset;
        height: 400px;
    }

    .under_banner_box::before {
        opacity: 1;
    }

    .page-id-51 .content,
    .page-id-48 .content {
        margin: 0px auto !important;
    }

    .company_box {
        flex-direction: column;
    }

    .page_section_content figure,
    .company_box_text {
        width: 100%;
    }

    .contact_form {
        width: 90%;
    }

    .contact_form th,
    .contact_form td {
        display: block;
        padding: 5px 2%;
        text-align: left;
        border: none;
    }

    .contact_form th {
        margin-right: 5px;
    }

    .contact_form td {
        padding-top: 10px;
    }

    .contact_form p {
        float: none;
        display: inline-block;
    }

    .flex {
        flex-direction: column;
    }

    .slider_text {
        font-size: clamp(12px, 5vw, 30px);
    }
}

@media screen and (max-width: 480px) {}