@charset "utf-8";
body {
    font-family: 'Noto Sans JP', sans-serif;
}

a {
    text-decoration: none;
    color: #1A1A1A;
}
.pc-none,
.tab-none,
.for_sp {
    display: none !important;
}
.sp-none {
    display: inline !important;
}
@media (max-width: 1279px) {
    .pc-none {
        display: block !important;
    }
}
@media (max-width: 768px) {
    .tab-none {
        display: block !important;
    }
}
@media (max-width: 480px) {
    .sp-none {
        display: none !important;
    }
    .for_sp {
        display: block;
        line-height: 20px !important;
        margin: 0 !important;
    }
}
/*------------------------------------------------------------------------------------------------------------*/
/* Header */
header a p {
    color: #1A1A1A;
    font-weight: bold;
    transition: .3s;
}
header a:hover p {
    color: #e83d18;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
}
.header_upper {
    background-color: #e83d18;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-logo {
    width: auto;
    height: 40px;
    margin-left: 50px;
    position: relative;
}
.header-logo a {
    width: fit-content;
}
.header-logo a,
.header-logo a img {
    display: block;
    height: 100%;
}
.header-menu {
    z-index: 1500;
}
.header-menu,
.ham-menu {
    display: flex;
    height: 100%;
    align-items: center;
}
@media (max-width: 480px) {
    .header-logo {
        width: 150px;
        height: auto;
        margin-left: 20px;
    }
    .header-logo a,
    .header-logo a img {
        display: block;
        width: 100%;
        height: auto;
    }
}
/* ------------------------ */
/* グローバルナビゲーション */
.gnavi {
    display: flex;
    gap: 30px;
    margin-right: 50px;
}
.nav-link {
    text-decoration: none;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
}
.nav-link_EN {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 5%;
}
.nav-link_JP {
    font-size: 14px;
    font-weight: bold;
    color: #888888;
}
/* ------------------------ */
/* header CTAボタン */
.header-btn-wrap {
    display: flex;
    height: 100%;
}
    @media (max-width: 1279px) {
        .header-btn-wrap {
            flex-direction: column;
            height: auto;
            gap: 20px;
        }
    }
.header-btn , .header-btn a {
    display: block;
    height: 100%;
}
.header-btn a {
    padding: 15px 40px 5px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    background-color: #e83d18;
    position: relative;
    transition: .3s;
}
.header-btn a::before {
    margin: 0 auto 10px;
    content: "";
    display: block;
    width: 40px;
    height: 27px;
    background-image: url(../img/inquiry.png);
    background-position: center;
    background-size: contain;
    pointer-events: none;
}
.header-btn a:hover,
.header-btn a:hover::after{
    background-color: #FD5800;
}

.header-btn {
    position: relative;
    z-index: 1;
}
.header_upper_btn {
    height: auto;
    margin-right: 50px;
}
.header_upper_btn .header-btn a {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    color: #e83d18;
    padding: 10px 20px;
    border-radius: 5px;
    height: auto;
    border: solid 1px #ffffff;
}
.header_upper_btn .header-btn a::before{
    margin: 0 10px 0 0;
    background-image: url(../img/inquiry_red.png);
    background-position: center;
    background-size: contain;
    pointer-events: none;
    transition: .3s;
}
.header_upper_btn .header-btn a:hover {
    background-color: #e83d18;
    border: solid 1px #ffffff;
    color: #ffffff;
}
.header_upper_btn .header-btn a:hover::before {
    background-image: url(../img/inquiry.png);
}
.header_lower {
    height: 80px;
}
@media (max-width: 768px) {
    .header_upper_btn {
        display: none;
    }
    .header_lower {
        height: auto;
    }
}
/* ------------------------ */
/* ハンバーガーメニュー */
.noscroll {
    overflow: hidden;
    height: 100vh;
}  
.hamburger {
    display: none;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 40px;
    height: 30px;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 100;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 100px;
    background: #ffffff;
    transition: 0.3s;
    transform-origin: center center;
}
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .ham-menu {
        position: absolute;
        top: 60px;
        right: -100%;
        width: 100%;
        height: 100vh;
        padding: 50px 30px 150px;
        background-color: rgba(26, 26, 26, 0.8);
        -webkit-backdrop-filter: blur(10px); /* Safari, 古いChrome用 */
        backdrop-filter: blur(10px);
        transition: all 0.3s;
        z-index: 99;
    }
    .gnavi {
        flex-direction: column;
        padding: 10px 0;
        gap: 0;
        overflow-y: auto;
        margin-right: 0;
        margin-bottom: 50px;
    }
    .gnavi li {
        text-align: center;
        border-top: solid 0.5px #ffffff;
        text-align: left;
        padding: 0;
    }
    .gnavi li:last-child {
        border-bottom: solid 0.5px #ffffff;
    }
    .nav-link {
        padding: 30px 20px 30px 20px;
        font-size: 16px;
        display: block;
    }
    .nav-link:hover {
        color: #ffffff;
        background-color: rgba(255, 255, 255, 0.1);
    }
    .nav-link_EN {
        color: #ffffff;
    }
    .nav-link_JP {
        color: #bebebe;
    }
    /* メニューが開いたときの表示 */
    .ham-menu.open {
        display: block;
        overflow-y: auto;
        padding-bottom: 250px;
        right: 0;
    }
    /* ハンバーガーアニメーション */
    .hamburger.open span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
        background: #ffffff;
    }
    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.open span:nth-child(3) {
        transform: translateY(-15px) rotate(-45deg);
        background: #ffffff;
    }
    .blur-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        background-color: rgba(26,26,26,0.2);
        z-index: 900;
        display: none;
    }
    .blur-overlay.active {
        display: block;
    }
    .header-btn a {
        padding: 30px 40px;
    }
    .header-btn a::after {
        content: none;
    }
}
/* ドロップダウン */
.has-dropdown {
    padding-bottom: 20px;
    margin-bottom: -20px;
}

/* 本体 */
.dropdown {
    position: absolute;
    top: 130px;
    right: 0;
    width: fit-content;
    border-radius: 5px;
    border: solid 1px #e6e6e6;
    padding: 25px 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255,255,255,0.8);
    opacity: 0;
    /* opacity: 1; */
    visibility: hidden;
    transform: translateY(-20px);
    transition: .3s;
    z-index: 1000;
}
/* 中身 */
.dropdown-list {
    display: flex;
    gap: 20px;
    justify-content: end;
}
.dropdown-list li {
    width: 100%;
    max-width: 200px;
}
.dropdown-list a {
    display: block;
    text-align: center;
    transition: .3s;
}
.drop_img {
    width: 100%;
    height: 130px;
    border: solid 1px #1A1A1A;
    background-color: #ffffff;
    overflow: hidden;
    margin-bottom: 10px;
    transition: .3s;
    border-radius: 10px;
}
.dropdown-list img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    display: block;
    transition: .3s;
    transform: scale(0.9);
}
.dropdown-list .fit_cover img {
    object-fit: cover;
    transform: none;
}
.dropdown-list p {
    font-size: 14px;
    font-weight: bold;
    transition: .3s;
}

/* hoverアニメーション */
.dropdown-list a:hover .drop_img {
    border-color: #e83d18;
}
.dropdown-list a:hover p {
    color: #e83d18;
}
.dropdown-list a:hover img {
    transform: scale(1.1);
}
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .has-dropdown {
        margin-bottom: 0;
    }
    .dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        padding: 10px 30px;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-bottom: 30px;
    }
    .dropdown-list {
        flex-wrap: wrap;
        justify-content: center;
    }
    .dropdown-list li {
        width: 100%;
        max-width: 200px;
        border: none !important;
    }
    .dropdown-list a {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 10px;
        text-align: left;
    }
    .drop_img {
        max-width: 200px;
        margin-bottom: 0;
    }
}
/*------------------------------------------------------------------------------------------------------------*/
/* Main Visual */
.fv {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #000000;
}
/* 動画 */
.fv-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}
.fv-content {
    position: absolute;
    z-index: 1;
    height: fit-content;
    display: flex;
    flex-direction: column;
    bottom: 10%;
    left: 5%;
    opacity: 0;
    transform: translateY(30px);
    animation: fv-fadeUp 2.5s ease-out forwards;
    animation-delay: 0.5s;
}
    @media (max-width: 480px) {
        .fv {
            height: 90vh;
        }
        .fv-content {
            bottom: 0;
            top: 50%;
            transform: translate(0, 30px);
        }
    }
/* タイトル画像 */
.fv-title {
    width: 100%;
    max-width: 900px;
}
/* アニメーション */
@keyframes fv-fadeUp {
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}
/* テキスト */
.fv-text {
    margin-top: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fv-fadeUp 1.5s ease-out forwards;
    animation-delay: 1.8s;
}
.fv-text p {
    font-size: clamp(16px, 2.2vw, 32px);
    font-weight: 700;
    color: #ffffff;
    line-height: 140%;
    letter-spacing: 0.1em;
}
/* オーバーレイ */
.fv::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 0;
}
/*スクロールダウン*/
.scrolldown1{
	position:absolute;
	left:50%;
	bottom:10px;
	height:50px;
    z-index: 10;
}
.scrolldown1 span{
	position: absolute;
	left:-25px;
	top: -15px;
	color: #ffffff;
	font-size: 0.7rem;
	letter-spacing: 0.2em;
}
.scrolldown1::after{
	content: "";
	position: absolute;
	top: 0;
	width: 1px;
	height: 30px;
	background: #ffffff;
	animation: pathmove 1.4s ease-in-out infinite;
	opacity:0;
}
@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:30px;
		opacity: 1;
	}
	100%{
		height:0;
		top:50px;
		opacity: 0;
	}
}
/* ------------------------------------------------ */
main:not(.front-page) {
    padding-top: 140px;
}
@media (max-width: 768px) {
    main:not(.front-page) {
        padding-top: 60px;
    }
}

/* section 共通スタイル */
section:not(.fv) {
    padding: 50px 50px 100px;
    width: 100%;
}
.sec-title {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    margin-bottom: 40px;
    text-align: left;

    & h2,
    & h2 span {
        font-size: 40px;
        font-weight: bold;
        line-height: 140%;
        letter-spacing: 0.1em;
        color: #e83d18;
        }

    & p {
        font-size: 36px;
        font-weight: bold;
        line-height: 140%;
        letter-spacing: 0.1em;
    }
}
.sec-text {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 64px;

    & h3 {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 24px;
        line-height: 1.3em;
    }
}
@media (max-width: 768px) {
    section:not(.fv) {
        padding: 50px 30px 50px;
    }
    .sec-title h2,
    .sec-title h2 span {
        font-size: 36px;
        line-height: 1.4em;
    }
    .sec-title p {
        font-size: 32px;
    }
}
@media (max-width: 480px) {
    .sec-title h2,
    .sec-title h2 span {
        font-size: 24px;
        margin-bottom: 5px;
    }
    .sec-title p {
        font-size: 20px;
    }
    .sec-text {
        & h3 {
            font-size: 20px;
        }
    }
}
/* ------------------------ */
/* パンくずリスト */
#breadcrumb {
    background-color: #ffffff;
    padding: 15px 50px;
}
@media (max-width: 768px) {
    #breadcrumb {
        display: block;
        padding: 15px 30px;
    }
    #breadcrumb ol li {
        padding: 0;
    }
}
#breadcrumb ol {
    list-style: none;
    display: flex;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    flex-wrap: wrap;
}
#breadcrumb ol li {
    position: relative;
    flex-shrink: 0;
    line-height: 1;
}
#breadcrumb ol li::after {
    font-family: "Material Icons";
    content: "\e5cc";
    vertical-align: middle;
    font-size: 20px;
    margin: 0 10px;
    color: #e83d18;
}
#breadcrumb ol li:last-child::after {
    content: "";
}
#breadcrumb a {
    font-size: 14px;
    color: #e83d18;
}
#breadcrumb a.active {
    color: #1A1A1A;
    pointer-events: none;
}
@media (max-width: 768px) {
    #breadcrumb a {
        font-size: 10px;
    }
}
@media (max-width: 480px) {
    #breadcrumb ol li::after {
        margin: 0;
    }
}
/* ------------------------ */
/* section Concept */
#Concept {
    background-image: url("../img/bgimage_black.png");
    background-repeat: repeat;
    background-position: top left;
    padding: 100px 20px;
    overflow: hidden;
}
#Concept .sec-title {
    text-align: center;
}
#Concept .sec-title h2 {
    color: #ffffff;
    position: relative;
    z-index: 1;
}
#Concept .sec-title h2::before {
    content: "CONCEPT";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: clamp(60px, 18vw, 128px);
    white-space: nowrap;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: #353535;
    z-index: -1;
}
.concept-text {
    margin: 50px auto;
    width: fit-content;
    text-align: center;
}
.concept-text p {
    font-size: clamp(14px, 1.2vw, 20px);
    font-weight: bold;
    color: #ffffff;
    line-height: 160%;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
}
.concept-text p:last-child {
    margin-bottom: 0;
}
.linkbox {
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 30px 60px;
    flex-wrap: wrap;
    justify-content: center;
}
/* button */
.btn_container {
    width: 100%;
    max-width: 350px;
    text-align: center;
}
.btn_round {
    padding: 20px;
    background: linear-gradient(90deg,#e83d18 0%, #FD5800 100%);
    color: #ffffff;
    border-radius: 50px;
    display: block;
    position: relative;
    font-size: clamp(14px, 1.2vw, 20px);
    /* font-weight: bold; */
}
.btn_round::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    transition: .3s;
}
.btn_round:hover::after {
    right: 25px;
}

/* ------------------------ */
/* section 製品案内 */
#Products {
    background-color: #ffffff;
    overflow: hidden;
}
.lineup-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 50px 110px;
    justify-content: start;
    max-width: 1120px;
    margin: 0 auto;
}
@media (max-width: 480px) {
    .lineup-container {
        display: block;
        width: 100%;
    }
}
/* 製品ラインナップ */
.lineup_item {
    width: 100%;
    max-width: 300px;
    margin: auto;
    display: block;
    text-align: center;
}
@media (max-width: 480px) {
    .lineup_item {
        width: 100%;
        max-width: 100%;
        margin: 0;
        margin-bottom: 20px;
    }
    .lineup_item:last-child {
        margin-bottom: 0;
    }
}
.lineup_img {
    width: 100%;
    height: 200px;
    display: block;
    text-align: center;
}
.lineup_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transform: scale(0.8);
    transition: .3s;
}
.lineup_item:hover>.lineup_img img {
    transform: scale(0.9);
}
.product_name {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin: 10px auto 20px;
}
@media (max-width: 480px) {
    .product_name {
        font-size: 16px;
        margin: 10px 0;
    }
}
/* ボタン部分 */
.detail_btn {
    font-weight: bold;
    color: #e83d18;
    padding: 5px 30px;
    border: solid 1px #e83d18;
    width: fit-content;
    position: relative;
    transition: .3s;
    margin: 0 auto;
}
.detail_btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -36px;
    width: 50px;
    height: 1px;
    background-color: #e83d18;
    transform: translateY(-50%);
    transition: .3s;
}
/* 斜め線（矢印の片側だけ） */
.detail_btn::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -36px;
    width: 12px;
    height: 1px;
    background-color: #e83d18;
    transform: translateY(-50%) rotate(45deg);
    transform-origin: right center;
    transition: .3s;
}
.lineup_item:hover>.detail_btn {
    background-color: #e83d18;
    color: #ffffff;
}
.lineup_item:hover>.detail_btn::after,
.lineup_item:hover>.detail_btn::before {
    right: -41px;
}
#Products .btn_container {
    margin: 0 auto;
    padding-top: 100px;
}
@media (max-width: 480px) {
    #Products .btn_container {
        padding-top: 50px;
    }
}
/* ------------------------ */
/* section お知らせ */
#News {
    background-color: #f3f3f3;
}
.news_wrap {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: end;
}
.news-container {
    width: 100%;
    max-width: 800px;
}
@media (max-width: 1124px) {
    .news_wrap {
        flex-direction: column;
        gap: 30px;
        align-items: normal;
    }
    .news-container {
        max-width: none;
        margin: 0 auto;
    }
}
.news_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
    background-color: #ffffff;
    border-top: solid 1px #e83d18;
    gap: 10px;
}
.news_item:last-child {
    border-bottom: solid 1px #e83d18;
}
@media (max-width: 480px) {
    .news_item {
        padding: 10px;
    }
}
.news_comp {
    width: fit-content;
}
.news_date {
    font-size: 14px;
    color: #999999;
    margin-bottom: 10px;
}
.news_title {
    font-weight: bold;
    transition: .3s;
}
.news_item:hover .news_title {
    color: #e83d18;
}
.arrow-circle {
    width: 50px;
    height: 50px;
    border: 1px solid #e83d18;
    border-radius: 50%;
    position: relative;
    background: #ffffff;
    transition: .3s;
    flex-shrink: 0;
}
.arrow-circle::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 45%;
    width: 12px;
    height: 12px;
    border-top: 1px solid #e83d18;
    border-right: 1px solid #e83d18;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: .3s;
    z-index: 1;
}
@media (max-width: 480px) {
    .arrow-circle {
        width: 20px;
        height: 20px;
    }
    .arrow-circle::before {
        width: 6px;
        height: 6px;
    }
}
/* グラデーションレイヤー */
.arrow-circle::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,#e83d18 0%, #FD5800 100%);
    opacity: 0;
    transition: 0.3s;
    border-radius: 50%;
}
/* ホバー */
.news_item:hover .arrow-circle::after {
    opacity: 1;
}
.news_item:hover .arrow-circle::before {
    border-color: #ffffff;
}
.news_wrap .btn_container {
    max-width: 200px;
    margin: 0 auto;
}
@media (max-width: 1124px) {
    .news_wrap .btn_container {
        margin: 0;
    }
}
/* ------------------------ */
/* section パララックス */
section.parallax {
    position: relative;
    color: #ffffff;
    padding: 120px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-attachment: fixed;
    overflow: hidden;
}
    @media (max-width: 480px) {
        section.parallax {
            padding: 25px;
            height: 600px;
        }
    }
.parallax-bg {
    position: fixed;
    inset: 0;
    background-image: url("../img/parallax.jpg");
    background-size: cover;
    background-position: center;
    z-index: -1;
}
.parallax::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
}
.parallax .sec-title {
    position: relative;
    z-index: 2;
}
.parallax .sec-title::after {
    content: "";
    display: block;
    width: 500px;
    height: 500px;
    background-image: url(../img/MAP_topp.png);
    background-position: center;
    background-size: contain;
    pointer-events: none;
    position: absolute;
    top: -90px;
    right: 0;
    z-index: 2;
}
@media (max-width: 480px) {
        .parallax .sec-title::after {
            width: 300px;
            height: 300px;
            top: 0;
            right: 0;
        }
    }
.parallax-text {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.parallax-text p {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.1em;
}
    @media (max-width: 768px) {
        .parallax-text p {
            font-size: 16px;
        }
    }
    @media (max-width: 480px) {
        .parallax-text p {
            font-size: 14px;
        }
    }
.parallax .linkbox {
    justify-content: left;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1120px;
}
/* ------------------------ */
/* お問い合わせ */
#Inquiry {
    background-color: #ffffff;
}
.inquirytxt {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.inquirytxt p {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.1em;
}
    @media (max-width: 768px) {
        .inquirytxt p {
            font-size: 16px;
        }
    }
    @media (max-width: 480px) {
        .inquirytxt {
            margin-bottom: 40px;
        }
        .inquirytxt p {
            font-size: 14px;
        }
    }
.contact-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto 30px;
    padding: 0 30px;
}
.contact-tel,
.contact-mail {
    gap: 30px;
    display: flex;
    align-items: center;
    padding: 40px 30px;
    text-decoration: none;
    transition: .3s;
    width: fit-content;
    flex-wrap: wrap;
}
.tel-text,
.mail-text {
    text-align: center;
    flex-shrink: 0;
}
/* 電話 */
.contact-tel {
    border: 1px solid #e83d18;
    background: #ffffff;
}
.tel-icon {
    content: "";
    display: block;
    width: 70px;
    height: 70px;
    background-image: url(../img/tel_icon.png);
    background-position: center;
    background-size: contain;
    pointer-events: none;
}
.tel-number {
    font-size: 48px;
    font-weight: bold;
}
.tel-time {
    font-size: 16px;
}
/* メール */
.contact-mail {
    background: linear-gradient(90deg,#e83d18 0%, #FD5800 100%);
    color: #fff;
    position: relative;
    transition: .3s;
}
.mail-icon {
    content: "";
    display: block;
    width: 70px;
    height: 70px;
    background-image: url(../img/mail_icon.png);
    background-position: center;
    background-size: contain;
    pointer-events: none;
}
.mail-sub {
    font-size: 16px;
    margin-bottom: 10px;
}
.mail-main {
    font-size: 36px;
    font-weight: bold;
}
/* 矢印 */
.contact-mail::after {
    content: "";
    position: absolute;
    right: 30px;
    bottom: 25px;
    width: 70px;
    height: 1px;
    background: #fff;
    transition: .3s;
}
.contact-mail::before {
    content: "";
    position: absolute;
    right: 30px;
    bottom: 25px;
    width: 12px;
    height: 1px;
    background: #fff;
    transform: rotate(45deg);
    transform-origin: right center;
    transition: .3s;
}
.contact-mail:hover::after,
.contact-mail:hover::before {
    right: 20px;
}
    @media (max-width: 768px) {
        .contact-wrap {
            flex-direction: column;
            align-items: center;
            padding: 0;
        }
        .contact-tel,
        .contact-mail {
            padding: 40px 10px;
            width: 100%;
            justify-content: center;
        }
        .tel-number {
            font-size: 28px;
        }
        .mail-main {
            font-size: 22px;
        }
    }
    @media (max-width: 475px) {
        .contact-tel,
        .contact-mail {
            flex-direction: column;
            gap: 10px;
            padding: 10px 5px 20px;
        }
        .contact-mail::after {
            bottom: 10px;
        }
        .contact-mail::before {
            bottom: 10px;
        }
        .tel-icon,
        .mail-icon {
            width: 40px;
            height: 40px;
        }
    }
/* ------------------------ */
/* pagetopリンク */
#pagetop {
    background-color: rgba(242, 51, 0, 0.8);
    backdrop-filter: blur(10px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: solid 1px #e83d18;
    color: #ffffff;
    transition: .3s;

    & .icon_arrowUp {
        position: relative;
        width: 100%;
        height: 100%;
    }

    & .icon_arrowUp::after {
        position: absolute;
        line-height: 100%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        transition: .3s;
    }
}
#pagetop:hover {
    background-color: #ffffff;
    color: #e83d18;
}
@media (max-width: 480px) {
    #pagetop {
        right: 20px;
    }
}
/* ------------------------ */
/* Footer */
.footer {
    background: #1A1A1A;
    color: #ffffff;
    padding: 50px 20px 30px;
}
@media screen and (max-width: 480px) {
    .footer {
        margin-top: 50px;
    }
}
.footer a {
    color: #ffffff;
    transition: .3s;
}
.footer-privacy:hover,
.footer-inner li a:hover {
    opacity: 0.8;
}
.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    gap: 50px 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}
@media (max-width: 1124px) {
    .footer-inner {
        justify-content: space-around;
    }
}
/* 左：会社情報 */
.footer-company {
    width: fit-content;
}
.footer-logo {
    width: 200px;
    height: auto;
    position: relative;
    margin-bottom: 20px;
}
.footer-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    white-space: nowrap;
}
.footer-address {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.footer-privacy {
    font-size: 14px;
    color: #ffffff;
    padding-bottom: 1px;
    border-bottom: solid 1px #ffffff;
}
.sns-links {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}
.sns-links a {
    display: inline-flex;
    transition: .3s;
    width: 40px;
}
.sns-links a:hover {
    opacity: .7;
}
.sns-links img {
    display: block;
}

/* 右：ナビ */
.footer_right {
    display: flex;
}
@media (max-width: 1124px) {
    .footer_right {
        flex-direction: column;
        gap: 30px;
    }
}
.footer-nav {
    display: flex;
    gap: 30px;
    font-size: 16px;
    font-weight: bold;
    padding-right: 56px;
}
@media (max-width: 1124px) {
    .footer-nav {
        display: flex;
        gap: 30px;
        font-size: 16px;
        font-weight: bold;
        padding-right: 0;
    }
}
.footer-nav a {
    white-space: nowrap;
}
.footer-nav li {
    margin-bottom: 10px;
}
.footer-nav li:last-child {
    margin-bottom: 0;
}
.footer-nav .nav_Products a {
    font-size: 14px;
    font-weight: normal;
}
/* CTA */
.footer-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-left: 56px;
    border-left: solid 0.5px #ffffff;
}
@media (max-width: 1124px) {
    .footer-cta {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding-left: 0;
        border-left: none;
    }
}
.cta-mail,
.cta-tel {
    width: 250px;
    height: 70px;
    justify-content: center;
}
/* メール */
.cta-mail {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    border-radius: 50px;
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    z-index: 0;
}
/* 初期グラデーション */
.cta-mail::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #e83d18 0%, #FD5800 100%);
    z-index: -2;
}
/* ホバー用グラデーション */
.cta-mail::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #FD5800 0%, #FD7E00 100%);
    opacity: 0;
    transition: 0.3s;
    z-index: -1;
}
/* ホバー時にフェード */
.cta-mail:hover::after {
    opacity: 1;
}
.footer_mail-icon {
    content: "";
    display: block;
    width: 40px;
    height: 30px;
    background-image: url(../img/inquiry.png);
    background-position: center;
    background-size: contain;
    pointer-events: none;
}
/* 電話 */
.cta-tel {
    display: flex;
    align-items: center;
    gap: 10px;
    border: solid 1px #e83d18;
    background-color: #ffffff;
    padding: 5px 30px;
    border-radius: 50px;
}
.footer_tel-icon {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background-image: url(../img/phone.png);
    background-position: center;
    background-size: contain;
    pointer-events: none;
}
.cta-tel p {
    color: #e83d18;
}
.cta-tel .tel-number {
    font-size: 20px;
}
.cta-tel .tel-time {
    font-size: 12px;
}

/* コピーライト */
.copyright {
    text-align: right;
    font-size: 13px;
    width: 100%;
    max-width: 1120px;
    margin: 100px auto 0;
}
@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        border: none;
        padding: 0;
        gap: 30px;
    }
    .footer-nav {
        gap: 20px;
    }
    .footer-nav ul {
        flex-grow: 1;
    }
    .footer-cta {
        border: none;
        padding-left: 0;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    .copyright {
        text-align: center;
        font-size: 12px;
    }
}
@media (max-width: 480px) {
    .footer-nav {
        flex-direction: column;
    }
    .copyright {
        font-size: 10px;
        margin-top: 50px;
    }
}
/*------------------------------------------------------------------------------------------------------------*/
/* スクロールフェードイン */
.fadein {
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s ease-out;
}

.fadein.show {
    opacity: 1;
    transform: none;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* 私たちの強み */
section.title_sec {
    background-color: #333333;
    padding-bottom: 50px;
}
.title_sec .sec-title {
    margin-bottom: 0;
}
.title_sec p {
    color: #ffffff;
}
section.strong {
    padding-bottom: 0 !important;
}
.sub-title{
    width: 100%;
    max-width: 1120px;
    margin: 0 auto 30px;
    text-align: center;
}
.sub-title p {
    font-size: clamp(18px, 2.2vw, 32px);
    font-weight: bold;
    letter-spacing: 0.1em;
}
/* タブ */
.tab-group {
    border-bottom: none;
}
.tab-group .tab {
    font-size: 20px;
    font-weight: bold;
    color: #1A1A1A;
    flex-grow: 0;
    width: fit-content;
    padding: 30px 50px;
    outline: solid 1px #FF7712;
    border-radius: 10px 10px 0 0;
    background-color: #ffffff;
    transition: .3s;
}
.tab-group .tab span {
    display: block;
}
@media (max-width: 768px) {
    .tab-group .tab {
        padding: 20px 30px;
        font-size: 18px;
    }
}
@media (max-width: 480px) {
    .tab-group .tab {
        padding: 20px 20px;
        font-size: 14px;
    }
}
.tab-group .tab:hover {
    background-color: #D9D9D9;
}
.tab-group .tab.is-active {
    background-color: #303030;
    color: #ffffff;
}
.tab-panel {
    margin-bottom: 0 !important;
}
.panel-group {
    background: linear-gradient(#303030 10%, #741900 100%);
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-top: solid 1px #FF7712;
    border-bottom: solid 1px #FF7712;
    padding-bottom: 100px;
}
.panel-group p {
    color: #ffffff;
}
.is-show {
    opacity: 0;
    animation: tab-change 0.3s ease-out forwards;
    animation-delay: 0.1s;
}
/* アニメーション */
@keyframes tab-change {
    to {
        opacity: 1;
    }
}
.strong_point {
    padding: 70px 50px;
    text-align: center;
}
.strong-title {
    font-size: 24px;
    font-weight: bold;
}
.strong-text {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.strong-text p {
    line-height: 160%;
}
@media (max-width: 768px) {
    .strong_point {
        padding: 50px 30px;
    }
    .strong-title {
        font-size: 20px;
    }
    .strong-text {
        margin-top: 50px;
    }
}
@media (max-width: 480px) {
    .strong-title {
        font-size: 15px;
    }
}

/* 横移動 */
.run_car_area {
    height: 100px;
    overflow: hidden;
}
.run_car {
    position: relative;
    height: 100%; 
}
.run_car_img {
    position: absolute;
    top: 0; 
    left: 0; 
    height: 100%;
}
.run_FL_img {
    position: absolute;
    top: 0; 
    right: 0; 
    height: 100%;
}
.run_car_img img,
.run_FL_img img {
    height: 100%; 
    width: auto;
}

/* 画像切り替え部分 */
.feature {
    width: 100%;
    max-width: 1120px;
    margin: 200px auto 0;
    padding: 0 50px;
}
.feature_inner {
    display: flex;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .feature {
        margin-top: 50px;
        padding: 0 30px;
    }
    .feature_inner {
        display: block;
    }
}
/* 左（固定） */
.feature_img {
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 280px;
    flex-shrink: 1;
}
.feature_img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s;
}
.feature_img img.active {
    opacity: 1;
}
@media (max-width: 768px) {
    .feature_img {
        display: none;
    }
}
/* 右（スクロール） */
.feature_text {
    width: 50%;
    padding-left: 40px;
    flex-shrink: 0;
}
.feature_text .feature_img_npc {
    display: none;
    margin-bottom: 10px;
    width: 80%;
}
@media (max-width: 768px) {
    .feature_text {
        width: 100%;
        padding-left: 0;
    }
    .feature_text .feature_img_npc {
        display: block;
    }
}
.feature_text .strong-text {
    margin-top: 30px;
}
.text_block {
    margin-bottom: 300px;
}
section#movement {
    padding: 0;
    display: flex;
    gap: 1px;
    margin-bottom: 1px;
}
@media (max-width: 768px) {
    .text_block {
        margin-bottom: 100px;
    }
    section#movement {
        flex-direction: column;
        gap: 1px;
        margin-bottom: 1px;
    }
}
.movement_child {
    width: 49.5%;
    flex-grow: 1;
    padding: 50px 20px;
    background-position: bottom;
    background-size: cover;
}
@media (max-width: 768px) {
    .movement_child {
        width: 100%;
    }
}
.m_left {
    background-image: url(../img/products_bg.jpg);
}
.m_right {
    background-image: url(../img/company_bg.jpg);
}
.movement_child .sec-title {
    text-align: center;
    margin-bottom: 0;
}
.movement_child .sec-title p {
    color: #ffffff;
}
.movement_child .movement_text {
    text-align: center;
    margin: 30px auto;
}
.movement_child .movement_text p {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 0.1em;
}
@media (max-width: 480px) {
    .movement_child .movement_text p {
        font-size: 14px;
    }
}
.movement_child .btn_container {
    max-width: 250px;
    margin: 0 auto;
}
.movement_child .btn_container .btn_round {
    background: #ffffff;
    color: #e83d18;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.movement_child .btn_container .btn_round::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #e83d18 0%, #FD5800 100%);
    opacity: 0;
    transition: .3s;
    z-index: -1;
}
.movement_child .btn_container .btn_round:hover::before {
    opacity: 1;
}
.movement_child .btn_container .btn_round::after {
    border-color: #e83d18;
    transition: .3s;
}
.movement_child .btn_container .btn_round:hover {
    color: #ffffff;
}
.movement_child .btn_container .btn_round:hover::after {
    border-color: #ffffff;
}
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* 製品案内 */
.product_text {
    margin-top: -10px;
    margin-bottom: 20px;
    text-align: left;
}
@media (max-width: 480px) {
    .product_text {
        margin-top: 0;
    }
}
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* 機種カテゴリ */
section.product_head {
    padding: 50px 0;
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    justify-content: space-between;
}
.p_left {
    width: 100%;
    max-width: 600px;
}
.p_left .sub-title {
    text-align: left;
}
.p_left .sub-title .en {
    font-size: 20px;
    font-weight: bold;
}
.p_left .product_text {
    margin-bottom: 50px;
}
.anchor {
    display: flex;
    gap: 50px;
}
.anchor li a{
	position: relative;
    color: #e83d18;
    font-weight: bold;
}
html {
    scroll-padding-top: 140px;
    scroll-behavior: smooth;
}
.anchor li a::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #e83d18;
    border-right: 2px solid #e83d18;
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
    transition: .3s;
}
.anchor li a:hover{
	color:#FF7712;
}
.anchor li a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: calc(100% + 20px);
    height: 2px;
    background:#FF7712;
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: left top;
}
.anchor li a:hover::before {
    transform: scale(1, 1);
}
.anchor li a:hover::after {
    border-color: #FF7712;
}
.p_right {
    width: 100%;
    max-width: 500px;
}
.p_right img {
    max-height: 400px;
    object-fit: scale-down;
}
@media (max-width: 1200px) {
    section.product_head {
        flex-direction: column-reverse;
    }
    .p_left,
    .p_right {
        margin: auto;
        padding: 0 50px;
    }
    .p_left {
        max-width: 100%;
    }
    .anchor {
        flex-wrap: wrap;
        row-gap: 20px;
    }
}
@media (max-width: 480px) {
    .p_left,
    .p_right {
        padding: 0 20px;
    }
    .p_left .product_text {
        margin-bottom: 30px;
    }
}
#Lineup,
#Purpose {
    background: linear-gradient(#FDFBFB 0%, #EBEDEE 100%);
    padding-top: 100px;
}
.Products_lineup-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 50px;
    justify-content: start;
    max-width: 1120px;
    margin: 0 auto;
}
@media (max-width: 480px) {
    .Products_lineup-container {
        display: block;
        width: 100%;
    }
}
.Products_lineup-container .lineup_item {
    width: 100%;
    max-width: 340px;
    margin: auto;
    display: block;
    padding: 10px 20px;
    text-align: left;
    border: solid 1px #888888;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
    background-color: #ffffff;
    transition: .3s;
    position: relative;
}
@media (max-width: 480px) {
    .Products_lineup-container .lineup_item {
        width: 100%;
        max-width: 100%;
        margin: 0;
        margin-bottom: 20px;
    }
    .Products_lineup-container .lineup_item:last-child {
        margin-bottom: 0;
    }
}
.Products_lineup-container .product_name {
    background-color: #393D3E;
    color: #ffffff;
    padding: 5px 10px;
    display: inline-block;
    margin-bottom: 10px;
    transition: .3s;
}
.Simple_specs {
    border-top: solid 1px #9A9A9A;
    padding-top: 10px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
}
.spec_item {
    width: 100%;
    max-width: 50%;
}
.spec_item.fulllength {
    max-width: 100%;
}
.Simple_specs p {
    font-size: 16px;
    font-weight: bold;
}
.Simple_specs .spec_title {
    font-size: 14px;
    font-weight: normal;
    color: #9A9A9A;
}
.Products_lineup-container .lineup_img img {
    transform: scale(1);
}
.Products_lineup-container .lineup_item:hover>.lineup_img img {
    transform: scale(1);
}
.Products_lineup-container .lineup_item:hover {
    border-color: #e83d18;
    box-shadow: 0 0 10px rgba(242, 51, 0, 0.8);
}
.Products_lineup-container .lineup_item:hover>.product_name {
    background-color: #e83d18;
}
.Products_lineup-container .arrow {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top: solid 1px #9A9A9A;
    border-left: solid 1px #9A9A9A;
    border-radius: 10px 0 10px 0;
    width: 50px;
    height: 50px;
}
.Products_lineup-container .lineup_item::after {
    content: "";
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 1px;
    background-color: #e83d18;
    transition: .3s;
}
.Products_lineup-container .lineup_item::before {
    content: "";
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 12px;
    height: 1px;
    background-color: #e83d18;
    transform: rotate(45deg);
    transform-origin: right center;
    transition: .3s;
}
@media (max-width: 480px) {
    .Products_lineup-container .arrow {
        width: 30px;
        height: 30px;
    }
    .Products_lineup-container .lineup_item::after {
        width: 30px;
        bottom: 10px;
        right: 10px;
    }
    .Products_lineup-container .lineup_item::before {
        bottom: 10px;
        right: 10px;
    }
}
.Products_lineup-container .lineup_item:hover>.arrow {
    border-color: #e83d18;
}
.Products_lineup-container .lineup_item:hover::after {
    width: 30px;
    right: 10px;
}
.Products_lineup-container .lineup_item:hover::before {
    right: 10px;
}

#Kaiteki_opt {
    background-image: url("../img/bgimage_black.png");
    background-repeat: repeat;
    background-position: top left;
    padding: 100px 50px;
    overflow: hidden;
    position: relative;
}
#Kaiteki_opt .sub-title {
    text-align: left;
}
#Kaiteki_opt .sub-title p {
    color: #ffffff;
}
.slider-wrap {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: visible;
}
.slider {
    width: 100%;
    margin-left: calc(50% - 560px);
    overflow: hidden;
}
.slick-list {
    overflow: visible;
}

.slick-track {
    display: flex;
}
.slick-slide {
    height: auto;
    display: flex;
}
.card {
    background-color: #ffffff;
    border: solid 1px #DBDFE3;
    border-radius: 10px;
    overflow: hidden;
    width: 400px;
    margin-right: 50px;
    padding: 10px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}
.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    border: solid 1px #DBDFE3;
    box-sizing: content-box;
}
.card .opt_name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}
.opt_text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
/* 矢印カスタム */
.custom-arrow {
    display: flex;
    justify-content: end;
    gap: 30px;
    width: 100%;
    max-width: 1120px;
    margin: 30px auto 0;
}
.custom-arrow button {
    background-color: #e83d18;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: solid 1px #e83d18;
    transition: .3s;
    position: relative;
    cursor: pointer;
}
/* 矢印 */
.custom-arrow .icon_arrow::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translate(-60%, -50%) rotate(45deg);
    transition: .3s;
}
/* prev */
.prev .icon_arrow::after {
    transform: translate(-40%, -50%) rotate(-135deg);
}
.prev:focus,
.next:focus {
    color: #ffffff;
    background-color: #e83d18;
}
.custom-arrow button:hover {
    background-color: #ffffff;
}
.custom-arrow button:hover .icon_arrow::after {
    border-color: #e83d18;
}
/* 操作不可時 */
.custom-arrow button.disabled {
    background-color: #888888;
    border-color: #888888;
    pointer-events: none;
}
.custom-arrow button.disabled .icon_arrow::after {
    border-color: #ffffff;
}
@media (max-width: 1200px) {
    .card {
        width: 350px;
    }
    .slider-wrap,
    .slider {
        margin-left: 0;
    }
}
@media (max-width: 480px) {
    #Kaiteki_opt {
        padding: 50px 30px;
    }
    .custom-arrow {
        margin-top: 20px;
    }
}
.noimage_opt_wrap {
    width: 100%;
    max-width: 1120px;
    border: solid 1px #cccccc;
    margin: auto;
    padding: 50px 20px;
}
.noimage_opt_title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}
.noimage_opt_inner {
    width: fit-content;
    margin: auto;
}

.noimage_opt_inner ul li {
    margin-bottom: 10px;
    align-items: center;
    position: relative;
}
.noimage_opt_inner ul li::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e83d18;
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
}
.noimage_opt_inner ul li:last-child {
    margin-bottom: 0;
}
.noimage_opt_inner ul li::marker {
    color: #e83d18;
    font-size: 2em;
    margin-right: 5px;
}
@media screen and (max-width: 768px) {
    .noimage_opt_inner {
        width: 90%;
    }
}
.catalog_wrap {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 30px 40px;
}
.catalog_link {
    width: 100%;
    max-width: 250px;
    display: block;
    transition: .3s;
}
.catalog_thumbnail {
    border: solid 1px #e83d18;
    margin-bottom: 10px;
    overflow: hidden;
}
.catalog_thumbnail img {
    display: block;
    transition: .3s;
}
.catalog_title {
    font-size: 20px;
    font-weight: bold;
    transition: .3s;
}
.catalog_link:hover .catalog_thumbnail img {
    transform: scale(1.05);
}
.catalog_link:hover {
    filter: brightness(1.1);
}
.catalog_link:hover>p {
    color: #e83d18;
}
@media screen and (max-width: 480px) {
    .catalog_title {
        font-size: 16px;
    }
}

#Movie {
    background: linear-gradient(-60deg, #F6F6F6 0%, #FFFFFF 100%);
    padding-top: 100px;
    text-align: center;
}
.movie-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
    max-width: 720px;
    width: 100%;
}
.movie-thumb {
    width: 100%;
    display: block;
}
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: 0.3s;
}
.movie-wrapper:hover .overlay {
    background: rgba(0, 0, 0, 0.25);
}
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 1);
    border-radius: 50%;
    z-index: 2;
}
.play-button::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 22px;
    border-style: solid;
    border-width: 12px 0 12px 18px;
    border-color: transparent transparent transparent #1A1A1A;
}
.movie-wrapper iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.movie-wrapper {
    position: relative;
    overflow: hidden; /* 枠からはみ出た黒い帯を隠す */
    aspect-ratio: 16 / 9; /* 親要素の比率を16:9に固定 */
}
.movie-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像を比率を保ったまま枠いっぱいに広げ、はみ出しをトリミング */
    /* 4:3の画像（上下黒帯あり）を16:9に引き伸ばして黒帯を画面外に追いやる魔法のプロパティ */
    /* transform: scale(1.34);  */
}
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* 機種詳細 */
#Model_details.product_details_fv {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}
.model-fv-inner {
    display: flex;
    width: 110%;
    margin-left: calc(50% - 560px);
    position: relative;
    height: fit-content;
}
.model-fv-left {
    width: 600px; 
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding-right: 20px;
}
.model-fv-left::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0; 
    width: 100vw;
    height: 100%;
    background: linear-gradient(#393D3E 0%, #1A1A1A 100%);
    border-bottom: solid 10px #e83d18;
    z-index: -1;
}
/* コンテンツ */
.model-fv-left p {
    color: #ffffff;
}
.m-fv-content .sub-title {
    text-align: left;
    margin-bottom: 20px;
}
.m-fv-content .sub-title .en {
    font-size: 20px;
    font-weight: bold;
}
.model_text {
    margin-bottom: 20px;
}
.m-fv-content .license p {
    font-weight: normal;
}
.model_text .catch {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}
.m-fv-content .license {
    display: flex;
    gap: 3px;
    flex-direction: column;
}
.m-fv-content .license .strong {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.1em;
    display: flex;
    gap: 5px;
}
.m-fv-content .license .strong::before {
    content: "";
    display: inline-block;
    width: 10px;
    background-color: #e83d18;
}
@media screen and (max-width: 768px) {
    .m-fv-content .license .strong {
        font-size: 16px;
    }
}
/* ===== 右側 ===== */
.model-fv-right {
    flex: 1;
    position: relative;
}
.model-fv-right img {
    display: block;
    width: calc(100vw - ( (100vw - 1120px) / 2 + 600px ));
    object-fit: cover;
    transition: opacity 1s ease-in-out;
}
.model-fv-right img:not(.active) {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 0;
}
.model-fv-right img.active {
    position: relative;
    opacity: 1;
    z-index: 1;
}
.model-fv-right img.active {
    opacity: 1;
}
@media screen and (max-width: 1240px) {
    #Model_details.product_details_fv {
        padding: 0;
    }
    .model-fv-inner {
        flex-direction: column-reverse;
        margin-left: 0;
        width: 100%;
    }
    .model-fv-left {
        width: 100%;
        padding: 40px 20px;
    }
    .model-fv-left::before {
        width: 100%;
    }
    .m-fv-content .sub-title .en {
        font-size: 2vw;
    }
    .model_text .catch {
        font-size: 1.6vw;
    }
    .model-fv-right {
        width: 100%;
    }
    .model-fv-right img {
        width: 100%;
        height: auto;
    }
}
@media screen and (max-width: 768px) {
    .m-fv-content .sub-title .en {
        font-size: 16px;
    }
    .model_text .catch {
        font-size: 16px;
    }
    .m-fv-content .license {
        flex-direction: column;
        gap: 5px;
    }
    .m-fv-content .license .strong::before {
        height: 30px;
    }
}

section.anchor_area {
    padding: 0 50px;
}
.anchor_inner {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 20px 0;
}
@media screen and (max-width: 768px) {
    section.anchor_area {
        padding: 0 20px;
    }
}
#Spec {
    padding-bottom: 50px;
}
.spec-wrap {
    max-width: 1120px;
    margin: 0 auto;
}
.spec-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
.spec-table th,
.spec-table td {
    width: 50%;
    padding: 10px 20px;
    border: solid 1px #cccccc;
    font-size: 16px;
    font-weight: bold;
}
/* 見出し行（型番） */
.spec-table .head th,
.spec-table .head td {
    background: #555555;
    color: #ffffff;
}
/* セクション見出し */
.spec-table .section th {
    background: #8D8D8D;
    color: #ffffff;
    text-align: left;
}
/* 左カラム */
.spec-table th {
    background: #EEEEEE;
    text-align: left;
}
/* 右カラム */
.spec-table td {
    background: #ffffff;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .spec-table th,
    .spec-table td {
        display: block;
        width: 100%;
        text-align: left;
        font-size: 15px;
    }

    .spec-table td {
        text-align: left;
        border-top: none;
    }
}
@media screen and (max-width: 480px) {
    .spec-table th,
    .spec-table td {
        font-size: 14px;
    }
}
#Options {
    padding-bottom: 50px;
}
.slider_center {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}
.slider_center .slider_inner {
    width: 100%;
    margin-left: auto;
}
.slider_center .slick-list {
    overflow: hidden;
}
.slider_center .card {
    width: 340px;
    margin: 0 auto;
}
@media (max-width: 1240px) {
    .slider_center .card {
        width: 320px;
    }
}

.single_page .btn_container {
    margin: 50px auto 0;
    max-width: fit-content;
}
.single_page .backbtn {
    padding: 20px 30px;
    background: #ffffff;
    color: #e83d18;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: solid 1px #e83d18;
}
.single_page .backbtn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #e83d18 0%, #FD5800 100%);
    opacity: 0;
    transition: .3s;
    z-index: -1;
}
.single_page .backbtn:hover::before {
    opacity: 1;
}
.single_page .backbtn::after {
    border-color: #e83d18;
    transition: .3s;
}
.single_page .backbtn:hover {
    color: #ffffff;
}
.single_page .backbtn:hover::after {
    border-color: #ffffff;
    left: 8px;
}
.backbtn::after {
    transform: translateY(-50%) rotate(-135deg);
    right: auto;
    left: 18px;
}
/* アタッチメント　リンクボタン */
.att_linkbtn {
    width: fit-content;
    margin-top: 10px;
}
.att_linkbtn a {
    padding: 10px 20px;
    background-color: #e83d18;
    border: solid 1px #e83d18;
    display: block;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px;
    transition: .3s;
}
.att_linkbtn a:hover {
    background-color: #ffffff;
    color: #e83d18;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* フォークリフト */
.f_category {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto 100px;
}
.f_category:last-child {
    margin-bottom: 0;
}
.f_category > p {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}
.soukokiki_linup .arrow,
.soukokiki_linup .lineup_item::before,
.soukokiki_linup .lineup_item::after {
    display: none;
}
.soukokiki_linup .lineup_item {
    pointer-events: none;
}
@media (max-width: 480px) {
    .f_category > p {
        font-size: 16px;
        margin-bottom: 10px;
    }
}
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* 販売代理店 */
.dist_text {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 100px;
}
.dist_text p {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}
.dist_text p:last-child {
    margin-bottom: 0;
}

#Distributors .wrapper {
    display: flex;
}
.map-area {
    width: 45%;
    min-width: 600px;
    height: calc(100vh - 140px);
    position: sticky;
    top: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    flex-shrink: 0;
}
.list-area {
    width: 55%;
    padding: 40px;
    flex-shrink: 1;
    background-color: #FFF8F3;
}
@media (max-width: 1240px) {
    .dist_text {
        margin-bottom: 0;
    }
    #Distributors .wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .map-area {
        position: static;
        width: 80%;
        margin: 0 auto;
        height: fit-content;
    }
    .list-area {
        width: 100%;
    }
}
@media (max-width: 600px) {
    .map-area {
        display: none;
    }
    .dist_text {
        margin-bottom: 50px;
    }
}
/* =========================
   地図スタイル
========================= */

.map-area path{
    fill:#F2F2F2;
    stroke:#1A1A1A;
    stroke-width:1;
    transition:.3s;
}
.map-area path:hover {
    fill: #FFC9A0;
}
.map-area path.active {
    fill: #e83d18;
}

/* =========================
   ボタン
========================= */
.region-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}
.region-buttons button {
    padding: 8px 16px;
    border: 1px solid #e83d18;
    background: #ffffff;
    color: #e83d18;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: .3s;
}
.region-buttons button:hover {
    background: #FFC9A0;
}
.region-buttons button.active {
    background: #e83d18;
    color: #ffffff;
    border-color: #e83d18;
}

/* =========================
   リスト
========================= */
.region-block {
    display: none;
}
.region-block.active {
    display: block;
    /* opacity: 0;
    animation: tab-change 0.3s ease-out forwards;
    animation-delay: 0.1s; */
}
.chihou_name {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.1em;
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}
.chihou_name::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 35px;
    background-color: #e83d18;
}
.prefecture {
    margin-bottom: 20px;
    border-top: solid 1px #e83d18;
}
.prefecture_name {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin: 5px 0 25px;
}
.distributors_wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.disributors_item {
    background-color: #ffffff;
    border: solid 1px #888888;
    border-radius: 10px;
    padding: 20px 10px;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: .3s;
}
.disributors_item::after {
    content: "";
    display: block;
    width: 13px;
    height: 13px;
    background-image: url(../img/c-arrows-up.png);
    background-position: center;
    background-size: contain;
    pointer-events: none;
    position: absolute;
    bottom: 20px;
    right: 10px;
}
.disributors_item.notlink {
    pointer-events: none;
    cursor: default;
}
.disributors_item.notlink::after {
    content: none;
}
.company_info {
    width: 100%;
}
.company_info .c_name {
    font-weight: bold;
    transition: .3s;
}
.company_info .address {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.company_info .address p {
    font-size: 14px;
}
.handling {
    padding-top: 10px;
    border-top: solid 1px #CCCCCC;
    margin-top: 10px;
}
.handling_title {
    font-size: 14px;
    font-weight: bold;
    padding: 5px 0;
}
.handling_item {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.handling_item p {
    font-size: 14px;
    font-weight: bold;
    padding: 5px;
    border: solid 1px #e83d18;
    border-radius: 5px;
    color: #ffffff;
    flex-shrink: 0;
}
.handling_item .handling_item_skid {
    background-color: #e83d18;
}
.handling_item .handling_item_fork {
    background-color: #ffffff;
    color: #e83d18;
}
.disributors_item:hover {
    border-color: #e83d18;
    box-shadow: 0 0 10px #ff6f49;
}
.disributors_item:hover .c_name {
    color: #e83d18;
}
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* お知らせ */
#archive_News .news-container {
    max-width: none;
}
.pager_wp {
	width: fit-content;
	margin: 50px auto 0;
}
.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}
.pager_wp a {
    transition: .3s;
    color: #888888;
}
.pager_wp a:hover {
    color: #e83d18;
}
.page-numbers {
    padding: 20px 10px;
    font-size: 20px;
    font-weight: bold;
    display: block;
}
a.page-prev {
    margin-right: 5px;
}
a.page-next {
    margin-left: 5px;
}
a.page-prev,
a.page-next {
    color: #1A1A1A;
    padding: 10px 20px;
    border: solid 1px #D9D9D9;
    transition: .3s;
}
a.page-prev:before {
    content: "＜";
    color: #e83d18;
    margin-right: 5px;
}
a.page-next:after {
    content: "＞";
    color: #e83d18;
    margin-left: 5px;
}
a.page-prev:hover,
a.page-next:hover {
    background-color: #FFC9A0;
    border-color: #e83d18;
}
@media (max-width: 768px){
    .pager_wp .navigation {
        display: block;
    }
    .nav-links {
        gap: 10px;
    }
    .page-numbers {
        font-size: 16px;
    }
}
@media (max-width: 480px){
    .page-numbers {
        font-size: 14px;
        padding: 10px 5px;
    }
    a.page-prev,
    a.page-next {
        padding: 10px;
    }
}
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* お知らせ 詳細 */
.single-news_wrap {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}
#single_News .news_title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}
#single_News .news_title .n_title {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.1em;
}
#single_News .news_title .news_date {
    font-weight: normal;
}
.news_contents {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.news_contents .heading {
    font-size: 20px;
    font-weight: bold;
}
.news_contents .main_txt p {
    margin-bottom: 10px;
}
.news_contents .main_txt p:last-child {
    margin-bottom: 0;
}
.news_contents .news_image {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.news_contents .news_image img {
    width: 500px;
    min-width: 200px;
    height: auto;
}
.news_contents .news_links {
    color: #007EFC;
    border-bottom: solid 1px #007EFC;
    width: fit-content;
}
.news_contents .news_links:hover {
    opacity: 0.7;
}
@media (max-width: 480px) {
    #single_News .news_title .n_title {
        font-size: 20px;
    }
    .news_contents .heading {
        font-size: 16px;
    }
}
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* 企業情報 */
#Company {
    background-color: #ffffff;
}
.company-wrap {
  max-width: 1000px;
  margin: 0 auto;
}
.company-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
/* セル共通 */
.company-table th,
.company-table td {
  border: 1px solid #cccccc;
  padding: 15px 20px;
  vertical-align: middle;
  font-size: 16px;
}
/* 左カラム固定 */
.company-table th {
  width: 300px;
  background: #EEEEEE;
  text-align: left !important;
  font-weight: bold;
}
/* 右カラム */
.company-table td {
  width: calc(100% - 300px);
  background: #ffffff;
  text-align: left !important;
}
@media screen and (max-width: 768px) {
  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    font-size: 14px;
  }
  .company-table th {
    border-bottom: none;
  }
  .company-table td {
    border-top: none;
  }
}
.com_parallax .parallax-bg {
    background-image: url("../img/company_parallax.jpg");
    background-position-y: -50px;
}
.com_parallax .sub-title {
    text-align: left;
    position: relative;
    z-index: 2;
}
.com_parallax .parallax-text {
    margin-bottom: 0;
}
.com_parallax .parallax-text p {
    font-size: inherit;
    letter-spacing: 0.05em;
    font-weight: normal;
}
.com_parallax .linkbox {
    padding-top: 60px;
}
.strong_wrap {
    background-color: #FFFFFF;
    position: relative;
}
@media (max-width: 480px) {
    section.com_parallax {
        height: auto;
        padding: 50px 25px;
    }
    .strong_wrap::after {
        content: "";
        position: absolute;
        width: 100vw;
        height: 50px;
        bottom: -50px;
        left: 0;
        background: #ffffff;
        z-index: 0;
    }
}
.strong-text_wrap {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.strong-text_wrap p {
    text-align: center;
}
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* 沿革 */
section.history {
    position: relative;
}
.history_page .anchor_area {
    background-color: #ffffff;
    padding-bottom: 100px;
}
.history_page .anchor_area .anchor_orange {
    color: #FF7712;
}
.history_page .anchor_area .anchor_orange::after {
    border-color: #FF7712;
}
.history .parallax-bg {
    background-image: url("../img/history_parallax.jpg");
    background-position-y: -50px;
}
.history-inner {
    position: relative;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}
/* 中央ライン */
 .line-base {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 50%;
  width: 1px;
  height: calc(100% - 20px);
  background: #555555;
  transform: translateX(-50%);
}
/* 伸びるライン */
.line-active {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 50%;
  width: 1px;
  height: 0;
  background: #fff;
  transform: translateX(-50%);
  transition: height 0.1s linear;
}
/* 各アイテム */
.history-item {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  margin-bottom: 120px;
  position: relative;
  z-index: 2;
}
/* 丸 */
.history-item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 20px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  transform: translateX(-50%);
}
/* 左配置 */
.history-item.left .content {
  width: 45%;
  text-align: right;
}
.history-item.left .image {
  width: 45%;
}
/* 右配置 */
.history-item.right {
  flex-direction: row-reverse;
}
.history-item.right .content {
  width: 45%;
  text-align: left;
}
.history-item.right .image {
  width: 45%;
}
/* テキスト */
.history-item .year {
  font-size: 50px;
  font-weight: bold;
  line-height: 1em;
  margin-bottom: 10px;
}
.history-item .event_name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
/* 画像 */
.image {
  padding-top: 25px;
}
/* フォークリフト（オレンジ） */
.history-item.right .year,
.history-item.right p {
  color: #FF7712;
}
.history-item.right::before {
  background: #FF7712;
}
@media (max-width: 768px) {
    .history-item {
        flex-direction: column;
        gap: 30px;
    }
    .history-item.left .content,
    .history-item.left .image,
    .history-item.right .content,
    .history-item.right .image {
        width: 90%;
        margin-left: 10%;
        text-align: left;
    }
    .history-item.right {
        flex-direction: column;
    }
    .history-item::before {
        left: 5%;
    }
    .line-base {
        left: 5%;
    }
    .line-active {
        left: 5%;
    }
}
@media (max-width: 480px) {
    section.history {
        height: auto;
        padding: 50px 25px;
        overflow: visible;
    }
    section.history::before {
        content: "";
        position: absolute;
        width: 100vw;
        height: 50px;
        bottom: -50px;
        left: 0;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 1;
    }
    .history_page .anchor_area {
        padding-bottom: 30px;
    }
    .history .parallax-bg {
        background-position-y: center;
    }
    .history-item::before {
        top: 10px;
    }
    .history-item .year {
        font-size: 30px;
    }
    .history-item .event_name {
        font-size: 20px;
    }

}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* お問い合わせ */
.contact_info {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto 30px;
    text-align: center;
}
.contact-form {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}
.contact-form-inner {
    padding: 50px;
    background: #FFF6EF;
}
table.contact-table {
    width: 100%;
    max-width: 800px;
    margin: auto;
    border: none;
    margin-bottom: -32px;
}
/* .contact-table tr {
    vertical-align: top;
} */
table.contact-table th {
    width: 200px !important;
    /* padding: 18px 20px 18px 0; */
    text-align: left;
    font-size: inherit;
    font-weight: bold;
    color: #333333;
}
table.contact-table tbody th,
table.contact-table tbody td {
    padding: 0;
    padding-bottom: 32px;
    border: none !important;
}
.required,
.optional {
    display: inline-block;
    margin-left: 10px;
    padding: 5px 7px;
    border-radius: 5px;
    font-size: 10px;
    /* font-weight: bold; */
    color: #ffffff;
    vertical-align: middle;
}
.required {
    background: #FD5254;
}
.optional {
    background: #888888;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #D9D9D9;
    background: #fff;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}
.contact-form textarea {
    height: 180px;
    resize: vertical;
}
.radio-group {
    display: flex;
    gap: 20px;
}
.radio-group label {
    font-size: inherit;
    color: #333333;
}
.zip-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}
.zip-wrap input {
  width: 160px !important;
}

@media screen and (max-width: 768px) {
  .contact-form-inner {
    padding: 24px;
  }

  table.contact-table,
  table.contact-table tbody,
  table.contact-table tr,
  table.contact-table th,
  table.contact-table td {
    display: block;
    width: 100%;
  }

  table.contact-table th {
    padding-bottom: 8px !important;
  }

  table.contact-table td {
    padding-top: 0;
    padding-bottom: 20px !important;
  }

  .radio-group {
    gap: 10px;
  }

  .zip-wrap {
    flex-wrap: wrap;
    gap: 5px;
    justify-content: space-between;
  }

  .zip-wrap input {
    width: calc(50% - 20px) !important;
    flex-shrink: 1;
  }
}
/* フォーカス（選択）された時の枠線と影の色を変える例 */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border-color: #e83d18; /* 枠線の色 */
  box-shadow: 0 0 5px rgba(255, 94, 0, 0.5); /* 選択時の影 */
  outline: none; /* デフォルトの青い枠線を消す場合 */
}

/* ラジオボタンやチェックボックスの色を変えるプロパティ */
input[type="checkbox"],
input[type="radio"] {
  accent-color: #e83d18;
  /* 大きさ */
  inline-size: 1.2rem;
  block-size: 1.2rem;
}

.contact_note {
    text-align: left;
    margin-top: 10px;
}
.contact_note p {
    color: #FD5800;
}
.to_privacy {
    color: #007EFC;
}
.to_privacy:hover {
    opacity: 0.8;
}
form {
    padding: 0;
}
form {
    > div {
        margin: 0;
        padding: 0;
        border-bottom: none;
    }
}
/* 送信ボタン */
.contact-submit-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    border-radius: 10px;
    overflow: hidden;
    z-index: 0;
    margin: auto;
}
.contact-submit-btn input {
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    white-space: nowrap;
}
/* 初期グラデーション */
.contact-submit-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #e83d18 0%, #FD5800 100%);
    z-index: -2;
}
/* ホバー用グラデーション */
.contact-submit-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #FD5800 0%, #FD7E00 100%);
    opacity: 0;
    transition: 0.3s;
    z-index: -1;
}
/* ホバー時にフェード */
.contact-submit-btn:hover::after {
    opacity: 1;
}
.form_send-icon {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background-image: url(../img/send.svg);
    background-position: center;
    background-size: contain;
    pointer-events: none;
}
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* お問い合わせ-完了- */
.thanks_page .backbtn {
    padding: 20px 50px;
}
.thanks_page .contact_info p {
    font-size: 20px;
}
@media (max-width: 768px) {
    .thanks_page .contact_info p {
        font-size: 16px;
    }
}
@media (max-width: 480px) {
    .thanks_page .contact_info p {
        font-size: 14px;
    }
}
.contact-thanks_info {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-thanks_info p {
    display: flex;
    gap: 5px;
}
.contact-thanks_info p::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50px;
    background-color: #e83d18;
    flex-shrink: 0;
    margin-top: 5px;
}
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* プライバシーポリシー */
.privacy_info {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto 30px;
}
.privacy_info p,
.p_txt_head {
    font-size: 20px;
}
@media (max-width: 768px) {
    .privacy_info p,
    .p_txt_head {
        font-size: 16px;
    }
}
@media (max-width: 480px) {
    .privacy_info p,
    .p_txt_head {
        font-size: 14px;
    }
}
.privacy_txt_wrap {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.p_txt_head {
    font-weight: bold;
    display: flex;
    gap: 5px;
    align-items: center;
    margin-bottom: 5px;
}
.p_txt_head::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 25px;
    background-color: #e83d18;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* Contact Form 7 スタイル打ち消し */
.wpcf7-list-item {
    margin: 0 !important;
}
.wpcf7-spinner {
    display: none !important;
}
/* エラー発生時テキスト */
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #e83d18;
    padding-top: 20px;
    padding-bottom: 20px;
}
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* 404 */
section#page404 {
    padding-bottom: 50px;
}
.error-container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto 50px;
    text-align: center;
}
.error-code {
    font-size: 8rem;
    font-weight: 900;
    color: #2c3e50;
    line-height: 1;
    margin-bottom: 1rem;
    animation: float 4s ease-in-out infinite;
}
.error-message {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    line-height: 1.6;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
/* 404スライダー全体のコンテナを画面いっぱいに広げる */
.full-width-slider {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: hidden;
}
.full-width-slider .slider-wrap {
    width: 100%;
    max-width: 100%;
}
.slider_404 .card {
    margin: 0 15px; 
    box-sizing: border-box;
}
.slider_404 .card img {
    object-fit: contain;
}
.slider_404 .card:hover .detail_btn {
    background-color: #e83d18;
    color: #ffffff;
}
.slider_404 .card:hover .detail_btn::after,
.slider_404 .card:hover .detail_btn::before {
    right: -41px;
}