﻿@charset "UTF-8";

/*==========================================================================*/
/*                       1. IMPORTS & VARIABLES                             */
/*==========================================================================*/
@import "base.css";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --f-main: "Montserrat", sans-serif;
    --txt: #666666;
    --mcolor: black;
    --scolor: #a2290a;
}

/*==========================================================================*/
/*                       2. BASE & RESET STYLES                             */
/*==========================================================================*/
*,
*:before,
*:after {
    box-sizing: border-box;
    outline: none;
}

body {
    color: var(--txt);
    font-family: var(--f-main);
    font-weight: 400;
}

header,
section,
footer,
aside,
nav,
main,
article,
figure {
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
textarea,
select,
p,
blockquote,
th,
td,
pre,
address,
li,
dt,
dd {
    font-size: 16px;
    -webkit-text-size-adjust: none;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

a {
    color: var(--mcolor);
}

a:hover,
a:active {
    text-decoration: none;
}

table {
    width: 100%;
}

p {
    margin: 0 0 1.5em;
}

p,
dd,
td,
th,
li {
    line-height: 1.5em;
}

/* Hide elements by default */
h1 {
    display: none;
}
.sp {
    display: none;
}


/*==========================================================================*/
/*                       3. LAYOUT & UTILITIES                              */
/*==========================================================================*/
#wrapper {
    padding-top: 75px;
    overflow: hidden;
}

.container {
    width: 1300px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.section {
    padding: 0 0 30px;
}

.bold {
    font-weight: bold;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

/*==========================================================================*/
/*==========================================================================*/
/*                  4. PC STYLES (>= 769px)                                 */
/*==========================================================================*/
/*==========================================================================*/

/*--------------------------- Header & Navigation --------------------------*/
#header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    padding: 12px 0 15px;
    background: black;
    border-top: 3px solid var(--mcolor);
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    margin: 0;
}

.logo img {
    width: 100px;
}

.h_right {
    display: flex;
    align-items: center;
}

#gnavi {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.gnavi {
    display: flex;
}

.gnavi>li {
    position: relative;
    margin: 0 5px;
}

.gnavi>li>a {
    display: block;
    padding: 10px;
    color: white;
    font-size: 15px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
}

.gnavi>li.active>a {
    font-weight: bold;
}

.gnavi>li:hover>a {
    font-weight: bold;
   
}
.gnavi>li:hover>a .gnavi>li.active>a {
    font-weight: unset;
    font-size: unset;
}

/* Submenu & Sub-submenu */
.submenu {
    display: none;
    position: absolute;
    left: 50%;
    z-index: 10;
    transform: translateX(-50%);
    flex-direction: column;
}

.has-submenu:hover>.submenu {
    display: flex !important;
}

.submenu:hover,
#li_over.active:hover {
    display: flex !important;
}

.submenu a {
    display: block;
    padding: 10px 15px;
    background: var(--mcolor);
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.3s;
}

.submenu li:hover {
    border: 1px solid white;
}

.subsubmenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 20;
    min-width: 180px;
    flex-direction: column;
}

.submenu li:hover>.subsubmenu {
    display: flex;
}

.subsubmenu a {
    background: var(--mcolor);
    color: #fff;
    padding: 10px 15px;
    display: block;
    white-space: nowrap;
}

.subsubmenu a:hover {
    border-color: white;
}


/*--------------------------- Header Language Switcher --------------------------*/
.h_lang {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 50px;
}

.h_lang li {
    font-size: 13px;
    color: white;
}

.h_lang li a {
    text-decoration: none;
    color: white;
}

.h_lang li.active a {
   
    font-weight: bold;
    transition: all 0.3s;
}

.h_lang li:not(:last-child):after {
    content: '|';
    position: relative;
    display: inline-block;
    margin: 0 8px;
    font-weight: 500;
}

/*--------------------------- Header Search --------------------------*/
.h_search-container {
    position: relative;
    display: inline-block;
    margin-left: 50px;
}

.search-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-toggle-btn:hover {}

.search-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    width: 250px;
    padding: 0 0 0 15px;
    background: white;
    border-radius: 20px;
	box-shadow: 0px 0px 10px #f3f3f3;
    /*box-shadow: 10px 10px 20px #babecc, -10px -10px 20px #ffffff;*/
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.h_search-container.open .search-dropdown {
    height: 50px;
    background-color: white;
    visibility: visible;
    opacity: 1;
    transform: translate(50px, 10px);
}

.search-dropdown input {
    width: 100%;
    padding: 10px 0;
    background: transparent;
    border: none;
    outline: none;
}

.search-dropdown input::placeholder {
    color: #000000;
    font-style: italic;
    font-size: 13px;
}

.search-dropdown button.search-submit {
    flex-shrink: 0;
    padding: 0 15px 5px;
    background: var(--scolor);
    border: none;
    cursor: pointer;
}

/*--------------------------- Main Content Sections --------------------------*/
.main_slide img {
    width: 100%;
}

.main_slide p {
    margin: 0;
}

.main_slide .slick-dots {
    position: absolute;
    bottom: 47px;
    left: 50%;
    z-index: 5;
    display: flex;
    transform: translateX(-50%);
}

.main_slide .slick-dots li {
    margin: 0 8px;
    line-height: 0;
}

.main_slide .slick-dots li button {
    width: 35px;
    height: 7px;
    background: #fff;
    border: none;
    border-radius: 10px;
    text-indent: -500000px;
    cursor: pointer;
    transition: all 0.3s;
}

.main_slide .slick-dots li.slick-active button,
.main_slide .slick-dots li:hover button {
    background: var(--scolor);
}

.idx_h2 {
    margin: 0 0 50px;
    color: var(--mcolor);
    font-size: 40px;
    font-weight: 600;
}

.idx_h2 .small {
    display: block;
    font-size: 60%;
    margin: 0 0 15px;
}

.idx_btn {
    margin: 0;
    font-size: 14px;
}

.idx_btn a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.idx_btn a:hover {
    color: var(--scolor);
    transform: translateX(10px);
}

.idx_btn a:after {
    content: '';
    position: relative;
    display: inline-block;
    width: 35px;
    height: 6px;
    margin-left: 30px;
    background: url("../images/idx_arr.svg") no-repeat center center/100% auto;
}

/* Box 01 */
.box01 {
    padding: 53px 0;
}

.box01 .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

.b01_main {
    position: relative;
}

.b01_main_info {
    padding-left: 100px;
}

.b01_img {
    width: 45%;
    flex-shrink: 0;
    margin: 0 70px 0 0;
}

.b01_txt {
    margin: 0 0 30px;
    text-align: justify;
}

/* Box 02 */
.box02 {
    padding: 100px 0;
    background: var(--mcolor);
    color: #fff;
}

.b02_list {
    display: flex;
    justify-content: space-between;
}

.b02_list li {
    width: 20%;
    font-weight: 600;
    text-align: center;
}

.b02_list li .num {
    display: block;
    margin: 0 0 25px;
    font-size: 40px;
}

.b02_list li .unit {
    display: inline-block;
    margin-left: 10px;
    font-size: 60%;
}

/* Box 03 */
.box03 {
    padding: 80px 0 30px;
}

.box03 .idx_h2 {
    text-align: center;
}

.b03_list {
    display: flex;
    flex-wrap: wrap;
}

.b03_item {
    width: calc(25% - 24px);
    margin: 0 32px 50px 0;
}

.b03_item:nth-child(4n) {
    margin-right: 0;
}

.b03_item a {
    display: block;
    color: #000;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
}

.b03_item a:hover {
    transform: translateY(-10px);
}

.b03_itm_img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 19px;
    border-radius: 8px;
    overflow: hidden;
}

/* Box 04 */
.box04 {
    padding: 75px 0;
    background: url("../images/b04_img.png?v=1.000") no-repeat left calc(50% + 335px) center #f7f7f7;
}

.b04_main {
    width: 50%;
    padding: 40px 50px 70px 55px;
    background: #fff;
    box-shadow: 2px 0px 10px 0px rgba(0, 0, 0, 0.2);
    position: relative;
}

.b04_main:before,
.b04_main:after {
    content: '';
    position: absolute;
    width: 85px;
    height: 54px;
    border-color: var(--mcolor);
    border-style: solid;
}

.b04_main:before {
    top: 0;
    left: 0;
    border-width: 6px 0 0 6px;
    clip-path: polygon(100% 0, 0 0, 0 100%);
}

.b04_main:after {
    right: 0;
    bottom: 0;
    border-width: 0 6px 6px 0;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.b04_main_info {
    padding-left: 100px;
}

.b04_list {
    display: flex;
    flex-wrap: wrap;
}

.b04_list li {
    display: flex;
    align-items: center;
    width: 50%;
    margin: 0 0 30px;
    color: var(--mcolor);
    font-size: 14px;
    font-weight: 600;
}

.b04_list li:before {
    content: '';
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 15px;
    background: url("../images/w1b.png") no-repeat center center/100% auto;
}

.b04_list li:nth-child(2):before { background-image: url("../images/w2b.png"); }
.b04_list li:nth-child(3):before { background-image: url("../images/w3b.png"); }
.b04_list li:nth-child(4):before { background-image: url("../images/w4b.png"); }

/* Box Client */
.boxClient {
    margin: 50px 0;
}

.boxClient .idx_h2 {
    font-size: 30px;
    text-align: left;
}

.Client_custom {
    display: flex;
    gap: 10%;
}

.Client_left, .Client_right {
    width: 45%;
}

.Client_list1 .slick-slide,
.Client_list2 .slick-slide {
    width: 30%;
    margin-right: 20px;
}

.Client_list1 .slick-slide img,
.Client_list2 .slick-slide img {
    width: 100%;
    height: 100px;
    object-fit: contain;
}

/* Box 05 */
.box05 {
    padding: 76px 0;
    background: #000;
}

.box05 .idx_h2 {
    color: white;
    text-align: center;
}

.b05_list {
    display: flex;
    justify-content: space-between;
}

.b05_list>div {
    width: calc(60% - 25px);
}

.b05_col {
    width: 40% !important;
}

.b05_item a {
    display: flex;
    height: 100%;
    color: var(--txt);
    text-decoration: none;
    border: 1px solid #ebebeb;
    transition: all 0.3s;
}

.b05_item a:hover {
    transform: translateY(-10px);
}

.b05_itm_img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    flex-shrink: 0;
    overflow: hidden;
}

.b05_itm_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.b05_col .b05_itm_img img {
    max-width: 300px;
}

.b05_col .b05_itm_txt {
    display: none;
}

.b05_itm_main {
    width: 100%;
    padding: 30px;
    background: white;
}

.b05_itm_auth {
    display: flex;
    align-items: center;
    font-size: 13px;
}

.b05_itm_auth:before {
    content: '';
    position: relative;
    display: inline-block;
    width: 15px;
    height: 14px;
    margin-right: 15px;
    background: url("../images/b05_icon.png") no-repeat center center/100% auto;
}

.b05_itm_ttl {
    margin: 0 0 25px;
    color: #000;
    font-size: 18px;
    line-height: 1.5em;
    overflow: hidden;
    text-overflow: ellipsis;
}

.b05_itm_txt {
    display: -webkit-box;
    overflow: hidden;
    font-size: 13px;
    text-align: justify;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.b05_itm_date {
    display: flex;
    align-items: center;
    margin: 0 0 20px;
    padding-left: 30px;
    color: var(--txt);
    font-size: 13px;
    background: url(../images/calender.png) no-repeat left center/20px 20px;
}

.b05_col .b05_itm_date {
    margin-bottom: 10px !important;
}

.b05_itm_btn {
    display: inline-flex;
    align-items: center;
    margin: 0;
    color: var(--txt);
    font-size: 13px;
    text-decoration: none;
}

.b05_itm_btn:after {
    content: '';
    position: relative;
    display: inline-block;
    width: 35px;
    height: 6px;
    margin-left: 30px;
    background: url("../images/idx_arr.svg") no-repeat center center/100% auto;
}

.b05_itm_more {
    margin: 0;
    font-size: 13px;
    text-decoration: underline;
}

.b05_col .b05_item:not(:last-child) {
    margin-bottom: 30px;
}

.b05_col .b05_itm_img {
    width: 200px;
}

.b05_col .b05_itm_main {
    padding: 14px 30px;
}

.b05_col .b05_itm_ttl,
.b05_col .b05_itm_auth {
    margin: 0 0 10px;
}

/* Box 06 */
.box06 {
    position: relative;
    padding: 80px 0;
    color: #fff;
    background-image: url("../images/bn4.png");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.box06::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.box06 .idx_h2 {
    color: #fff;
}

.b06_form {
    display: flex;
    padding-left: 100px;
    position: relative;
    z-index: 2;
}

.b06_txt {
    width: 250px;
    margin: 0 40px 0 0;
    flex-shrink: 0;
    text-align: justify;
}

.b06_form input {
    width: 315px;
    padding: 20px 40px;
    border: none;
    border-radius: 7px;
    font-size: 18px;
    font-style: italic;
}

.b06_form input:nth-child(2) {
    margin-right: 30px;
}

.b06_form input:nth-child(3) {
    margin-right: 30px;
}

.b06_form button {
    width: 75px;
    background: cornflowerblue;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.3s;
}

.b06_form button:hover {
    opacity: 0.7;
}


/*--------------------------- Footer --------------------------*/
.footer {
    position: relative;
    z-index: 10;
    min-height: 250px;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 100px;
    padding: 60px 0 90px;
    text-align: left;
}

.footer-col {
    flex: 1 1 calc(30% - 30px);
    min-width: 250px;
}

.footer-columns .footer-col:first-child {
    flex: 1 1 calc(33% - 60px);
}

.footer-col .logo {
    width: 50%;
    margin: 0 0 15px;
    text-align: left;
}

.f_social {
    margin: 0 0 15px;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.2em;
}

.f_social_icon {
    margin: 0;
}

.f_social_icon a {
    display: inline-block;
    margin-right: 20px;
    color: #888888;
    font-size: 20px;
    transition: all 0.3s;
}

.f_menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col .f_menu {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 6px 0px;
}

.f_menu li {
    margin: 0 0 8px;
}

.f_menu li a {
    color: var(--txt);
    font-size: 13px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s;
}

.f_social_icon a:hover,
.f_menu li a:hover {
    color: var(--mcolor);
}
.footer-col .f_menu li a:hover {
    font-weight: 600;
}

.f_add {
    display: flex;
    align-items: center;
    margin: 0 0 15px;
    font-size: 14px;
}

.f_add:before {
    content: '';
    width: 19px;
    height: 25px;
    margin-right: 10px;
    background: url("../images/f_add.png") no-repeat center/100% auto;
}

.f_tel a {
    display: flex;
    align-items: center;
    color: var(--mcolor);
    font-weight: 600;
    text-decoration: none;
}

.f_tel a:before {
    content: '';
    width: 24px;
    height: 24px;
    margin-right: 8px;
    margin-left: -5px;
    background: url("../images/pi.png") no-repeat center/100% auto;
}

.f_bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 0;
    background: #f7f7f7;
    text-align: center;
}

.copyright {
    margin: 0;
    font-size: 12px;
    text-transform: uppercase;
}

.copyright a {
    color: var(--txt);
    text-decoration: none;
}


/*--------------------------- To Top Button --------------------------*/
#totop {
    position: fixed;
    bottom: 60px;
    right: 50px;
    z-index: 15;
    width: 50px;
    margin-bottom: 0;
}

#totop a {
    display: block;
    width: 50px;
    height: 50px;
    background: var(--mcolor);
    color: #fff;
    line-height: 50px;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.5s;
    animation: slide-top 0.8s linear infinite alternate-reverse;
}

#totop a:hover {
    opacity: 0.7;
}

#totop a::before {
    content: '▲';
}

#totop a.sp {
    display: none;
}

@-webkit-keyframes slide-top {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@keyframes slide-top {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@media screen and (max-width: 1400px) {
	.container{width:1200px;}
	
	
	
}
/*==========================================================================*/
/*==========================================================================*/
/*                  5. MOBILE STYLES (<= 768px)                             */
/*==========================================================================*/
/*==========================================================================*/
@media screen and (max-width: 768px) {
    /*--------------------------- Base & Layout --------------------------*/
    h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
        font-size: 14px;
    }

    #wrapper {
        min-width: 100%;
        margin: 0;
        padding-top: 65px;
    }

    #main,
    #footer {
        min-width: 100%;
    }

    .container {
        width: 100%;
        padding: 0 3%;
    }

    .sp {
        display: block;
    }

    .pc {
        display: none;
    }

    /*--------------------------- Header & Mobile Menu --------------------------*/
    #header {
        padding: 10px 0;
        border-top-width: 2px;
    }
    
    .h_right {
        display: none;
        position: fixed;
        top: 65px;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 30px 15px;
        background: rgba(255, 255, 255, 0.9);
        overflow: auto;
    }

    .menu-icon {
        width: 50px;
        height: 43px;
        padding: 8px 0;
        margin-left: 10px;
        background: var(--mcolor);
        color: #fff;
        font-size: 14px;
        line-height: 1em;
        text-align: center;
        text-transform: uppercase;
        box-sizing: border-box;
        cursor: pointer;
        z-index: 99999;
    }

    .menu-icon span {
        position: relative;
        top: 12px;
        left: 0;
        display: block;
        width: 30px;
        height: 3px;
        margin: 0 auto 15px;
        background-color: #fff;
        transition-duration: 0;
        transition-delay: 0.2s;
    }

    .menu-icon span::after,
    .menu-icon span::before {
        content: '';
        display: block;
        position: absolute;
        width: 30px;
        height: 3px;
        background-color: #fff;
        transition-property: margin, -webkit-transform;
        transition-duration: 0.2s;
        transition-delay: 0.2s, 0;
    }

    .menu-icon span::before {
        margin-top: -10px;
    }

    .menu-icon span::after {
        margin-top: 10px;
    }

    .menu-icon.active span {
        background-color: transparent;
    }

    .menu-icon.active span::before,
    .menu-icon.active span::after {
        margin-top: 0px;
        transition-delay: 0, 0.2s;
    }

    .menu-icon.active span::before {
        transform: rotate(45deg);
    }

    .menu-icon.active span::after {
        transform: rotate(-45deg);
    }

    /* Mobile Navigation */
    #gnavi {
        display: block;
        width: 100%;
        height: 100%;
    }
    
    .gnavi {
        display: block;
        width: 100%;
        margin: 0;
    }
    
    .gnavi>li {
        margin: 0;
    }

    .gnavi>li:before {
        display: none;
    }

    .gnavi>li>a {
        padding: 15px 20px;
        background: var(--mcolor);
        color: #fff !important;
        border-bottom: 1px solid #fff;
    }

    .submenu {
        display: none;
        position: relative;
    }
    .submenu.active {
        display: block !important;
    }
    .subover.active > .subsubmenu {
        display: block !important;
    }
    .subsubmenu.active {
        display: block !important;
    }
    .subsubmenu{
        position: relative !important;
        left: 0 !important;
        display: none !important;
    }
    .subsubmenu li a{
        text-align: left !important;
    }

    .subover {
        position: relative;
    }

    .submenu a {
        padding: 15px 20px;
        margin: 0;
        background: var(--mcolor);
        text-align: center;
        border-bottom: 1px solid;
    }

    .gnv-ico{
        width: 50px;
        display: block;
        height: 50px;
        position: absolute;
        background: #696464;
        z-index: 10;
        top: 0;
        right: 0;
    }
    .gnv-ico:before {
        content: '';
        position: absolute;
        border: solid #fff;
        border-width: 0 1px 1px 0;
        display: inline-block;
        padding: 3px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        left: calc(50% - 3px);
        top: calc(50% - 3px);
        transition: all 0.5s ease;
    }
    .gnavi li.active > .gnv-ico:before {
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }

    /* Mobile Language & Search */
    .h_lang {
        justify-content: center;
        margin: 0 0 20px;
    }
    
    .h_lang li a,
    .h_lang li:not(:last-child):after {
        color: #000;
    }
    
    .h_search {
        margin: 0 auto 30px;
    }

    .search-toggle-btn {
        display: none;
    }
    
    .h_search-container {
        display: block;
        width: 90%;
        margin: 10px auto;
    }
    
    .search-dropdown {
        position: static;
        width: 100%;
        margin-bottom: 35px;
        visibility: visible;
        opacity: 1;
        transform: none;
        transition: none;
        box-shadow: 10px 10px 20px #babecc, -10px 10px 20px #ffff;
    }

    /*--------------------------- Mobile Content Sections --------------------------*/
    .main_slide .slick-dots {
        bottom: 20px;
    }
    
    .main_slide .slick-dots li button {
        width: 25px;
        height: 5px;
    }
    
    .idx_h2 {
        font-size: 26px;
        text-align: center;
        margin: 0 0 25px;
    }

    .idx_btn {
        text-align: center;
    }
    
    /* Box 01 Mobile */
    .box01 {
        padding: 40px 0;
    }
    
    .box01 .container {
        display: block;
    }
    
    .b01_main_info {
        padding-left: 0;
        margin: 0 0 30px;
    }
    
    .b01_txt {
        margin: 0 0 20px;
    }
    
    .b01_main:after {
        width: 150px;
        height: 200px;
        top: -30px;
        right: 0;
    }
    
    .b01_img {
        margin: 0;
        max-width: 100%;
        width: 100%;
    }
    
    /* Box 02 Mobile */
    .box02 {
        padding: 50px 0;
    }
    
    .b02_list {
        flex-wrap: wrap;
    }
    
    .b02_list li {
        width: 50%;
        margin: 0 0 30px;
    }

    .b02_list li:last-child {
        margin-bottom: 0;
    }
    
    .b02_list li .num {
        font-size: 26px;
        margin: 0 0 15px;
    }
    
    /* Box 03 Mobile */
    .box03 {
        padding: 40px 0 10px;
    }
    
    .b03_item {
        width: 48%;
        margin: 0 4% 30px 0;
    }
    
    .b03_item:nth-child(2n) {
        margin-right: 0;
    }
    
    /* Box 04 Mobile */
    .box04 {
        padding: 40px 0;
        background: #f7f7f7;
    }
    
    .b04_main {
        width: 100%;
        padding: 30px 15px;
    }
    
    .b04_main:before,
    .b04_main:after {
        width: 60px;
        height: 30px;
    }
    
    .b04_main:before { border-width: 4px 0 0 4px; }
    .b04_main:after { border-width: 0 4px 4px 0; }
    
    .b04_main_info {
        padding-left: 0;
    }
    
    /* Box Client Mobile */
    .Client_custom {
        flex-direction: column;
    }
    
    .Client_left,
    .Client_right {
        width: 100%;
    }
    
    /* Box 05 Mobile */
    .box05 {
        padding: 40px 0;
    }
    
    .b05_list {
        display: block;
    }
    
    .b05_list > div {
        width: 100%;
    }
    
    .b05_item.itm_full {
        margin: 0 0 30px;
    }
    .b05_item a {
        flex-direction: column;
    }
    
    .b05_itm_ttl {
        font-size: 16px;
    }
    .news_itm_ttl{
      
    }

    .b05_col {
        width: 100% !important;
    }
    
    .b05_col .b05_itm_img {
        width: 100%;
    }
    
    .b05_col .b05_itm_img img {
        max-width: 100%;
    }
    
    .b05_col .b05_itm_txt {
        display: block;
    }

    /* Box 06 Mobile */
    .box06 {
        padding: 40px 0;
        margin-bottom: 40px;
    }
    
    .b06_form {
        padding: 0;
        display: block;
    }
    
    .b06_txt {
        width: 100%;
        margin: 0 0 20px;
        text-align: center;
    }
    
    .b06_form input {
        display: block;
        width: 100%;
        max-width: 315px;
        margin: 0 auto 20px !important;
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .b06_form button {
        display: block;
        height: 50px;
        margin: 0 auto;
    }

    /*--------------------------- Footer Mobile --------------------------*/
    .footer-columns {
        position: relative;
        padding: 0 3%;
        flex-direction: column;
        text-align: left;
        gap: 30px;
    }

    .footer-col {
        flex: 1 1 100%;
    }

    .f_main {
        padding: 40px 0;
    }
    
    .f_menu {
        display: none;
    }
    
    .f_social_icon {
        margin: 0 0 30px;
    }
    
    .f_tel {
        margin-bottom: 0;
    }

    .f_bottom {
        position: relative;
    }

    /*--------------------------- To Top Button Mobile --------------------------*/
    #totop {
        right: 5.5%;
        bottom: 30px;
        width: 40px;
        line-height: 0;
    }

    #totop a:not(:first-child) {
        margin-top: 10px;
    }

    #totop a.sp {
        display: block;
    }
}