@charset "UTF-8";
/* 基礎設定 */
html, body {
    position: relative;
    font-size: 16px;
    line-height: 1.8;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    color: var(--normal-color);
    background-color: var(--act-color);
    margin: 0;
    padding: 0;
    width: 100%;
    scroll-behavior: auto !important;
    overflow-x: hidden;
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
}

:root {
    --main-color: #AC161E;
    --sub-color: #595757;
    --normal-color: #fff;
    --act-color: #000;

    --font-num: "Roboto", sans-serif;
    --font-en: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "游ゴシック", "游ゴシック体", "メイリオ", sans-serif;
}
.color-red { color: #AC161E;} 
.color-blue { color: #1657E8;}
.color-lblue { color: #E7ECF7;}
.color-wh{ color: #fff;}
.color-gr { color: #D6F0A8;}
.color-dgr { color: #2C4F51;}
.color-vgr { color: #73AE2E;}
.color-yg { color: #ABE8B9;}
.color-lgr{ color: #F4F595;}
.color-ye{ color: #EBC700;}
.color-ly{ color: #FFF9F4;}
.color-or{ color: #FFEABA;}
.color-prp{ color: #721DC8;}
.color-gray{ color: #E6E6E6;}
.color-bw{ color: #4D0001;}
.color-bk{ color: #000;}

.bg-red { background: #AC161E;}
.bg-pn { background: #FCDBE4;}
.bg-blue { background: #1657E8;}
.bg-lblue { background: #E7ECF7;}
.bg-gr { background: #D6F0A8;}
.bg-dgr { background: #2C4F51;}
.bg-lgr { background: #F4F595;}
.bg-vgr { background: #73AE2E;}
.bg-yg { background: #ABE8B9;}
.bg-ye { background: #EBC700;}
.bg-lye { background: #FFF9F4;}
.bg-or { background: #FFEABA;}
.bg-lor { background: #ffecdc;}
.bg-bk { background: #000333;}
.bg-wh { background: #fff;}
.bg-gray { background: #E6E6E6;}
.bg-bw { background: #4D0001;}

h1, h2, h3, h4, h5, h6 {
    color: var(--normal-color);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0;
    margin: 0 auto 1.5rem;
    padding: 0;
}
h1 { font-size: 65px;}
h2 { font-size: 32px;}
h3 { font-size: 26px;}
h4 { font-size: 25px;}
h5 { font-size: 21px;}
h6 { font-size: 16px;}

.top-page hgroup h2 {
    font-family: var(--font-en); 
    font-size: clamp(50px,7vw,65px);
    line-height: 1.2;
}
.top-page hgroup h3 { 
    font-size: 50px;
    font-weight: 500;
}
.top-page hgroup span { 
    display: block;
    font-size: 20px;
    margin-bottom: 1rem;
}

.tit-line { 
    position: relative;  
    padding: 0.2rem 0;

    &::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -0.25rem;
        width: 100%;
        height: 5px;
        background: var(--main-color);
        z-index: 1;
    }
}
h2.tit-line {
    margin-bottom: calc(1.5rem + 0.2rem + 5px);
}
 .tit-bg {
    position: relative;
    display: block;
    color: var(--main-color);
    background: #fff;
    padding: .5rem .75rem;
    z-index: 10;
}
.tit-bd-l {
    position: relative;
    padding-left: .5em;
}
.tit-bd-l::before {
    content: "";
    position: absolute;
    top: calc(50% - 0.5em);
    left: 0;
    width: 3px;
    height: 1.1em;
    background: var(--main-color);
}
.tit-point {
    display: flex;
    align-items: center;
}
.tit-point::before {
    content: "■";
    font-size: 0.5em;
    font-weight: 700;
    padding-right: 0.5em;
    color: var(--main-color);
}
.tit-color {
    color: var(--main-color);
}
.box-wh{
    padding: 2.5em 3em;
    background-color: #fff;
    border: 1px solid #e4e4e4;
    box-sizing: border-box;
}


/*--- grid-box ---*/
.grid-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 15px;
}
.grig-wrap0 { grid-gap: 0; }
.grid1 { grid-template-columns: repeat(1, 1fr); grid-gap: 0;}
.grid2 { grid-template-columns: repeat(2, 1fr); }
.grid3 { grid-template-columns: repeat(3, 1fr); }
.grid5 { grid-template-columns: repeat(5, 1fr); }

.flex-dl { display: flex; margin: 0 auto 10px; }
.flex-dl:last-of-type { margin-bottom: 1em; }
.flex-dl dt { width: 4em; margin-right: 1.5em; }
.flex-dl dd { flex: 1; margin-bottom: 0; }

hr { margin: 10px 0; border-top: 3px solid #466E6E; }

p {
    margin: 0 auto 1.5em;
    padding: 0;
    line-height: 1.8;
    letter-spacing: 0.02em;
}
a {
    -webkit-transition: .3s ease-out;
    transition: .3s ease-out;
}
a:link,a:visited,a:hover,a:active{ text-decoration: none;}

section {
    position: relative;
    z-index: 10;
    padding: 7rem 0;
}
.sec-inline img{
    max-width: 100%;
    height: auto;
}
.sec-inline-start {
    padding-inline-start: calc((100vw - 1000px) / 2);
}
.sec-inline-end {
    padding-inline-end: calc((100vw - 1000px) / 2);
}
.container-fluid{ padding: 0;}


ul {
    margin-bottom: 0;
}
button {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    outline: none;
}
/* input:not([type=checkbox]) {
    appearance: none;
    border: none;
    outline: none;
} */
.aform-radio-ul > li label, input[type="radio"] {
    cursor: pointer;
}

.mt-image-right, .mt-image-left {
    display: flex;
    float: none !important;
}
.mt-image-left {
    justify-content: flex-start;
    margin-right: auto !important;
}
.mt-image-right {
    justify-content: flex-end;
    margin-left: auto !important;
}

/* リキャプチャ非表示用（別途フォームに注記必要） */
.recaptcha_policy {
    padding: 0;
    margin: 0;
    text-align: center;
    font-size: 11px !important;
    color: #ababab !important;
}
.recaptcha_policy a {
    font-size: 11px !important;
    color: #fff !important;
}
.grecaptcha-badge { visibility: hidden; }

/* ナビゲーション */
#head { 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 999;
    transition: .3s;
}
#head h1 { margin: 0}
.nosc #head { background: #272727; }
.h-logo .brand {
    max-width: 250px;
}
.h-logo a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}


.h-logo { 
    position: relative;
    display: flex;
    align-items: flex-start;
    line-height: 1;
    height: 100%;
}
.nosc .menu-list {
    display: none !important;
}
.menu-wrap { 
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    height: 100%;
}
.menu-list { 
    position: absolute;
    right: 0;
    height: 100%;
}
.menu-list > ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding-left: 0;
    column-gap: 2rem;
    margin-right: 2rem;
}
.menu-list > ul > li {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.menu-list > ul > li > a {
    position: relative;
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
}
.dnone .menu-list > ul > li > a, .other-pages .menu-list > ul > li > a { color: #000;}
.menu-list > ul li img {
    max-width: 36px;
}
.nav-menu ul { 
    position: relative;
    margin-bottom: 0;
}
.nav-menu ul li { 
    position: relative;
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.menu-link {
    margin-right: 5rem;
    border: 1px solid #aaa;
    font-family: var(--font-en);

    a {
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--normal-color);
        font-size: 16px;
        max-width: 140px;
        text-wrap: nowrap;
        letter-spacing: 0.05em;
        padding: .25em 1.5em;
        background: var(--act-color);

        span { transition: .3s ease-out;}
    }
}
.nosc .menu-link { display: none !important;}

.nolink {
    display: block;
    width: 100%;
    margin-bottom: .5rem;
}
.menu-main .nolink {
    position: relative;
}
.menu-main .nolink button { 
    display: block;
    width: 100%;
    text-align: left;
}
.menu-main .nolink {
    position: relative;

    &::before, &::after {
        content: "";
        position: absolute;
        background: #fff;
        transition: .3s;
        z-index: 10;
    }
    &::before {
        top: 50%;
        right: 0;
        width: 1px;
        height: 50%;
        transform: translateY(-50%);
        opacity: 1;
    }
    &::after {
        top: 25%;
        right: 8px;
        width: 1px;
        height: 50%;
        transform: rotate(90deg) translateY(-50%);
    }
}
.drop-menu.active .nolink {
    &::before {
        top: 25%;
        opacity: 0;
        transform: rotate(90deg) translateY(0%);
    }
}
.menu-main .nolink button { 
    cursor: pointer;
    pointer-events: initial;
}
.menu-main .sub-menu {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.6s ease, opacity 0.6s ease;
}
.drop-menu.active .sub-menu {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
}

/* ハンバーガーメニュー */
.openbtn {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    z-index: 1001;
    cursor: pointer;
    width: 32px;
    height: 40px;
    transition: 0.3s;
}
.openbtn span {
    display: block;
    transition: .4s;
    position: absolute;
    left: 50%;
    transform: translate(-50%,-50%);
    height: 2px;
    background-color: #fff;
    width: 22px;

    &:nth-of-type(1) { top: 27.5%; }
    &:nth-of-type(2) { top: 50%; }
    &:nth-of-type(3) { top: 72.5%; }
}
  
.openbtn.active span:nth-of-type(1) {
    top: 45%;
    left: 0;
    transform: translateY(0px) rotate(-30deg);
    background: var(--normal-color);
    width: 100%;
}
.openbtn.active span:nth-of-type(2) {
    display: none;
}
.openbtn.active span:nth-of-type(3) {
    top: 60%;
    left: 0;
    transform: translateY(-6px) rotate(30deg);
    background: var(--normal-color);
    width: 100%;
}
  
.openbtn.active span {
    width: 30px;
    background: #fff; 
}
/* ×印が横幅を広くしても消えない設定 */
.openbtn.active { display: block !important;}
.nosc .nav-menu { opacity: 0;}
.nosc .sp-menu.d-md-none {
    display: flex !important;
}
.nosc #top-menu { display: none !important;}

/* ハンバーガーメニュー内部 */
#clickarea {
    position: fixed;
    min-width: 350px;
    width: 25%;
    height: 100vh;
    top: 60px;
    right: 0;
    background: #272727;
    transition: .3s;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    overflow-x: hidden;
}
#clickarea.panelactive {
    opacity: 1;
    visibility: visible;
    z-index: 1000;
}
#clickarea.panelactive .click-list {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    z-index: 0;
}

#clickarea .click-list {
    padding-top: 2rem;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 20rem;
}
.click-list > ul { 
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

.click-list > ul > li {
    position: relative;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 0;
    margin-bottom: 0;
    transition: .3s;
}
.click-list > ul > li > a {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: relative;
    color: var(--normal-color);
    font-size: 16px;
    opacity: 0;
    transition: .3s;
}
.click-link {
    width: 100%;
    background: #000;
    margin-top: 1rem;
    border: 1px solid #414141;
    font-family: var(--font-en);
}
.click-link a { 
    display: block;
    width: 100%;
    height: 100%;
    padding: 1rem;
    text-align: center;
    color: #fff;
}
.click-list > ul.menu-main > li { padding: 1rem;}
.click-list > ul.menu-main > li:not(:last-child) { border-bottom: 1px solid #414141; }
.nosc .click-list > ul > li, .nosc .click-list > ul > li > a {
    opacity: 1;
}
.menu-main .sub-menu {
    list-style: none;
    padding-left: 0;
    width: 100%;

    li {
        position: relative;
        padding-left: 1em;

        &::before {
            content: "";
            position: absolute;
            width: .5em;
            height: 1px;
            top: 50%;
            left: 0;
            background: var(--normal-color);
            z-index: 10;
        }
    }

    li:not(:last-child) {
        margin-bottom: 1rem;
    }
    a { 
        display: block;
        width: 100%;
        height: 100%;
        font-size: 16px;
        color: var(--normal-color);
    }
}


/* ボタン類 */
.btn01 {
    position: relative;
    display: inline-block;
    background: transparent;
    transition: .3s ease-out;
    border: 1px solid #aaa;
    overflow: hidden;
}
.btn01 a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1em;
    width: 100%;
    height: 100%;
    font-size: 16px;
    letter-spacing: 0;
    padding: .5em 2em .5em 1.5em;
    white-space: nowrap;
    color: var(--normal-color);
    transition: .3s ease-out;

    svg {
        width: 2.5em;
        height: 1em;
        stroke: var(--normal-color);
        fill: none;
        stroke-width: 1px;
        transition: .3s ease-out;
    }
}

/* TOPのsection設定 */
.sec-wrap {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.block-center {
    display: flex;
    justify-content: center;
    text-align: center;
}

/* ローディング画面 */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.loader-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}
.loader-img {
    max-width: 200px;
    width: 35%;
    height: auto;
    object-fit: contain;
    animation: spin 3s linear infinite;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.progress-bg {
  max-width: 400px;
  width: 70%;
  height: 4px;
  background: #333;
  border-radius: 2px;
  overflow: hidden;
}
#progress-bar {
  width: 0%;
  height: 100%;
  background: #fff; /* バーの色 */
  transition: width 0.3s ease;
}
.is-loaded {
  opacity: 0;
  pointer-events: none;
}


/* TOP */
#maintop {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 0;

    &::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 20vh;
        background: linear-gradient(180deg,rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%);
        z-index: 2;
    }
    &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #000;
        opacity: .1;
        z-index: 1;
    }
}
#maintop .video-js {
  width: 100% !important;
  height: 100vh !important;
}

#maintop .video-js video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#maintop img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: top;
}

.scroll-dw {
    position: absolute;
    left: 5%;
    bottom: 15%;
    z-index: 998;
    font-size: 16px;
    letter-spacing: 0.04em;
    color: #fff;
    text-wrap: nowrap;
    writing-mode: sideways-lr;

    svg {
        position: absolute;
        bottom: -70%;
        left: calc(5% + 1.5em);
        width: 2em;
        height: 110px;
    }
}

.cacth {
    position: absolute;
    right: 2rem;
    bottom: 10%;
    z-index: 10;

    span {
        display: block;
        font-size: 20px;
        font-weight: 400;
        margin-bottom: .5rem;
    }
}
.cacth .txt {
    font-family: var(--font-en);
    font-size: clamp(48px, 7.5vw ,60px);
    font-weight: 600;
    line-height: 1.1;
}

/* sec01 */
#sec01 {

    hgroup {
        margin-bottom: 4rem;

        h2 { margin-bottom: 0;}
    }
    
    &::after {
        content: "";
        position: absolute;
        top: 2rem;
        right: 2rem;
        width: 90%;
        max-width: 550px;
        height: 400px;
        background: url(../img/sec01-bg.png) center no-repeat;
        background-size: contain;
        z-index: -1;
    }
}

.sec01-box {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    max-width: 1090px;
    width: 100%;
    margin-inline: auto;
    gap: 1.2px;
    padding: 1.2px;
}
.sec01-box .item {
    position: relative;
    overflow: hidden;
    outline: 1.2px solid #414141;
    transition: .3s ease-out;

    a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        font-size: 16px;
        color: #fff;
        padding: 1.5rem;
        padding-top: 3rem;
    }

    span {
        position: absolute;
        top: .5rem;
        left: 1rem;
        z-index: 10;
    }
    img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: .3s;
    }
}
.sec01-box .item.obox img { max-width: 150px;}
.sec01-box .item:nth-of-type(1) {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
}

.sec01-box .item:nth-of-type(2) {
    grid-column: span 3 / span 3;
    grid-column-start: 3;
}

.sec01-box .item:nth-of-type(3) {
    grid-column-start: 3;
    grid-row-start: 2;
    max-height: 220px;
    height: 17.5vw;

    img {
        max-height: 160px;
    }
}

.sec01-box .item:nth-of-type(4) {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-column-start: 4;
    grid-row-start: 2;
}

.sec01-box .item:nth-of-type(5) {
    grid-row-start: 3;
}

.sec01-box .item:nth-of-type(6) {
    grid-column-start: 1;
    grid-row-start: 4;
}

.sec01-box .item:nth-of-type(7) {
    grid-row: span 2 / span 2;
    grid-column-start: 2;
    grid-row-start: 3;

    a {
        padding: 0 1rem;
    }
    img {
        width: 100%;
        height: 100%;
    }
}

.sec01-box .item:nth-of-type(8) {
    grid-column-start: 3;
    grid-row-start: 3;
    max-height: 220px;
    height: 17.5vw;
}

.sec01-box .item:nth-of-type(9) {
    grid-column-start: 3;
    grid-row-start: 4;
}

.sec01-box .item:nth-of-type(10) {
    grid-column-start: 4;
    grid-row-start: 4;
}

.sec01-box .item:nth-of-type(11) {
    grid-column-start: 5;
    grid-row-start: 4;
}

/* sec02 */
#sec02 {
    hgroup {
        text-align: center;
        margin-bottom: 3rem;

        h2 { margin-bottom: 0;}
    }

    &::before {
        content: "";
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background: url(../img/sec02-bg.jpg) top center repeat;
        background-size: cover;
        z-index: -1;
    }
}
.brand-box {
    display: flex;
    padding: 1rem 0;

    ul {
        list-style: none;
        padding-left: 0;
        display: flex;
        &.loop01 { animation: LoopAnime01 80s linear infinite;}
        &.loop02 { animation: LoopAnime02 80s -40s linear infinite;}
    }
    li {
        width: 280px;
        margin: 0 .25rem;

        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }
}
.brand-box:hover {
    ul {
        animation-play-state: paused;
    }
}
@keyframes LoopAnime01 {
    0% {
        transform: translateX(100%);
    }
    
    100% {
        transform: translateX(-100%);
    }
}
@keyframes LoopAnime02 {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-200%);
    }
}

.brand-box-sp {
    display: flex;
    padding: 1rem 0;

    ul {
        list-style: none;
        padding-left: 0;
        display: flex;
        &.loop01 { animation: LoopAnime01 80s linear infinite reverse;}
        &.loop02 { animation: LoopAnime02 80s -40s linear infinite reverse;}
    }
    li {
        width: 280px;
        margin: 0 .25rem;

        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }
    
}
.brand-box-sp:hover {
    ul {
        animation-play-state: paused;
    }
}

/* sec03 */
#sec03 {

    hgroup {
        margin-bottom: 2.5rem;

        h2 { margin-bottom: 0;}
    }
    p {
        margin-bottom: 2.5rem;
    }
    button {
        display: block;
        margin-inline: auto;
    }
    &::before {
        content: "";
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background: url(../img/sec03-bg.jpg) top center repeat;
        background-size: cover;
        z-index: -1;
    }
}
.sec03-box {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
}
.sec03-box .item {
    width: calc(100% / 3);
    overflow: hidden;

    a {
        display: block;
        width: 100%;
        height: 100%;
        font-size: 16px;
        color: var(--normal-color);
    }
    figure {
        margin-bottom: 1rem;
        overflow: hidden;
    }
    img { 
        width: 100%;
        height: 100%;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        transition: .3s;
    }
}

.sec03-box .item .txt, .case-page .item .case-tit {
    padding: .5em .75em;
    /* background: #333; */
    border: 1px solid #aaa;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

    overflow: hidden;
    text-overflow: ellipsis;

    line-height: 1.6;
    max-height: calc(2em * 2);
    transition: .3s;
}
.case-page .item {
    max-width: 300px;
    margin-inline: auto;
    overflow: hidden;

    a {
        display: block;
        width: 100%;
        height: 100%;
        font-size: 16px;
        color: var(--normal-color);
    }
    figure {
        margin-bottom: 1rem;
        overflow: hidden;
    }
    img { 
        width: 100%;
        height: 100%;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        transition: .3s;
    }
}
.outlet-page .item {
    max-width: 300px;
    margin-inline: auto;
    overflow: hidden;

    a {
        /* display: block; */
        width: 100%;
        height: 100%;
        font-size: 16px;
        color: var(--normal-color);
    }
    figure {
        margin-bottom: 1rem;
        overflow: hidden;
    }
    img { 
        width: 100%;
        height: 100%;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        transition: .3s;
    }
}
.outlet-txt {
    font-size: 16px;
}
.outlet-txt .pirce { margin-bottom: .5rem;}

/* sec04 */
#sec04 {
   background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(96, 0, 3, 1) 100%);

    p {
        margin: 4rem auto;
    }
}
.sec04-wrap {
    max-width: 1300px;
    width: 100%;
    margin-inline: auto;
}
.sec04-box {
    display: flex;
    gap: 5rem;
}
.sec04-txt { 
    position: relative;
    margin-left: 7.5%;

    p { line-height: 2.2;}
}

/* sec05 */
#sec05 {
    h2 {
        margin-bottom: 2rem;
    }
    .btn01 {
        margin-top: 3rem;
    }
}
.sec05-wrap {
    max-width: 1300px;
    width: 100%;
    margin-inline: auto;
}
.sec05-box {
    display: flex;
    gap: 3rem;
}
.sec05-txt { 
    position: relative;
    margin-right: 3.5%;

    p { line-height: 2.2;}

    &::after {
        content: "";
        position: absolute;
        top: -10%;
        right: -55%;
        width: 120%;
        height: 120%;
        opacity: .6;
        background-image: url(../img/sec05-bg.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        z-index: -1;
    }
}

/* sec06 */
#sec06 {
    hgroup {
        margin-bottom: 4rem;
    }

    button {
        display: block;
        margin-inline: auto;
    }

    &::before {
        content: "";
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background: url(../img/sec06-bg.jpg) top center repeat;
        background-size: cover;
        z-index: -1;
    }
}

.news-box { 
    width: 100%;
    margin-inline: auto;
    margin-bottom: 4rem;
}
.news-box .news-item {
    position: relative;
    padding: 1.5rem 0.5rem 1.5rem 0;
    border-bottom: 1px solid #414141;
}
.news-box .news-item a {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: .3s ease-out;
    color: var(--normal-color);
}
.news-box .news-item time {
    font-size: 16px;
    padding-right: 6em;
    text-wrap: nowrap;
}
.news-box .news-item .news-txt {
    width: 100%;
    font-size: 16px;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    padding-right: 3rem;
    margin-bottom: 0;
}

.other-pages .news-box .news-item:first-child {
    padding: 0 0.5rem 2rem 0;
}
.top-page .news-box .news-item:first-child { padding-top: 0;}

.news-box .news-item a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0.5em;
    transform: translateY(-50%);
    width: 2em;
    height: 1em;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 46.899 24.604'><g transform='translate(1126.217 -2699.127)'><path d='M-1674.245,836.076v44.949l11.02-7.921' transform='translate(-1962.294 1036.485) rotate(-90)' fill='none' stroke='%23fff' stroke-width='2'/></g></svg>");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: .3s ease-out;
}

/* sec07 */
#sec07 { 
    padding: 0;

    hgroup span {
        margin-bottom: auto;
    }
}
.sec07-wrap {
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
.sec07-wrap .item {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 1.5rem;
    z-index: 10;

    hgroup { text-align: center;}

    h3, p { margin-bottom: 0;}

    button {
        display: block;
        margin-inline: auto;
    }

    &::before {
        content: "";
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }
}
.sec07-wrap .item.sec07-item01 {
    background: #330203;

    &::before {
        content: "";
        background: url(../img/sec07-img01.jpg) center no-repeat;
        background-size: cover;
        opacity: .2;
    }
}
.sec07-wrap .item.sec07-item02 {
    background: #333;

    &::before {
        content: "";
        background: url(../img/sec07-img02.jpg) center no-repeat;
        background-size: cover;
        opacity: .8;
        mix-blend-mode: multiply;
    }
}

/* フッター*/
footer {
    position: relative;
    background: url(../img/ft-bg.jpg) center repeat;
    background-size: cover;
    z-index: 10;
}
.ft-wrap {
    position: relative;
    max-width: 1200px;
    width: 90%;
    margin-inline: auto;
    padding: 3rem 0;
}
.ft-brand {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: .5rem;
}
.ft-address {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 1rem;
}
.ft-box {
    display: block;

    a { color: var(--normal-color);}
}
.ft-item {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 2em;
}
.ft-menu { 
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: right;
}
.ft-menu > ul {
    padding-left: 0;
    list-style: none;

    li:not(:last-child) {
        margin-bottom: 1.5rem;
    }
    a { 
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
        font-size: 14px;
        color: var(--normal-color);
    }
}
.ft-menu ul.sub-menu {
    padding-left: 0;
    list-style: none;
    column-count: 2;

    li {
        position: relative;
        padding-left: 1em;

        &::before {
            content: "";
            position: absolute;
            width: .5em;
            height: 1px;
            top: 50%;
            left: 0;
            background: var(--normal-color);
            z-index: 10;
        }
    }
    li:not(:last-child) {
        margin-bottom: 1rem;
    }
    a {
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
        font-size: 14px;
        color: var(--normal-color);
    }
}

.ft-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;

    .ft-link {
        max-width: 32px;
        a {
            display: block;
            width: 100%;
            height: 100%;
        }
    }
}
.copy { 
    text-align: end;
    margin-bottom: 0;
    font-size: 12px;
}


/* --------------------------------------------
    other page
-------------------------------------------- */
.tit-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    max-width: 1000px;
    width: 90%;
    margin-inline: auto;
    padding: 7rem 0 0;
}
#titbar {
    position: relative;
    margin-bottom: 1.5rem;

    h1 {
        font-family: var(--font-en);
        font-size: clamp(48px,5vw,60px);
        font-weight: 600;
        margin: 0;
    }
    span {
        position: relative;
        display: block;
        font-size: 20px;
        padding-left: 1.5em;

        &::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            width: 1em;
            height: 2px;
            background: var(--normal-color);
            z-index: 10;
        }
    }
}


.sec-inline { padding-inline: calc((100vw - 1000px) / 2);}
.other-pages .sec-inline {
    margin-bottom: auto;
    padding-top: 0;
    padding-bottom: 0;
}

.other-pages .table>:not(caption)>*>* {
    border-width: 1px;
    border-color: #000;
}

/* contact */
.contact-box {
    text-align: center;
    border: 1px solid #b7b7b7;
    margin-inline: auto;
    max-width: 400px;
    width: 100%;
    margin-bottom: 1.5rem;
}
.contact-box th {
    font-weight: 700;
    padding: 0.5rem;
}
.contact-box td {
     padding: 0.5rem;
}
.contact-box tr {
    margin-bottom: 0;
    border-bottom: 1px solid #b7b7b7;
}
.contact-box tr:last-child td { border-bottom: 0;}

/* table-scroll */
.scroll-hint-icon { top: 50%!important; transform: translateY(-50%)!important; }
.scroll-hint-icon:before { width: 30px!important; height: 30px!important; }
.table-calc_list01 table {
    max-width: 100%;
}
.table-calc_list01 th,.table-calc_list01 td{
    font-size: 0.65em !important;
    padding: 3px !important;
}
.js-scrollable {
    width: 100%;
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
}
.scroll-tbl th { width: 8em; }
.scroll-tbl { width: 100%;}
.other-pages .about-tbl {
    width: calc(100% - 18em);
    margin: 1.5em 9em;
}
.other-pages .about-tbl tbody tr > td:nth-of-type(2) { width: 8em; }

.width-tbl {
    width: 100%;
}
.width-tbl>*>* {
    padding: 0.5rem 0.5rem;
    border-width: 2px;
    border-color: #E6E6DC;
}
.width-tbl th {
    border-right: 2px solid #E6E6DC;
    border-bottom: 2px solid #E6E6DC;
    padding: 0.5rem 0.5rem;
    font-weight: normal;
    background: #fff;
}
.width-tbl td { 
    background: #fff;
    padding: 0.5rem 0.5rem;
    border: 2px solid #E6E6DC;
    text-wrap: nowrap;
    width: 25%;
}

.about-list {
    width: 100%;
    margin-bottom: 0;
}
.about-list th {
    width: 9em;
    font-weight: 500;
}
.about-list th, .about-list td {
    padding: 1rem 0.5rem;
    border-bottom: 1px solid #414141;
    margin-bottom: 0;
}
.about-list td {
    width: 80%;
    margin-bottom: 0;
}
.about-list td a {
    color: #fff;
    text-decoration: underline;
}
.principle {
    font-size: 24px;
    font-weight: 500;
}

.rec-tbl { width: 100%;}

/* contact */
.contact-form dl{
    margin: 0.125em 0;
    padding: 0.5em 0;
    display: flex;
    border-bottom: 1px dotted #F2F2F2;
}
.contact-form dl dt {
    font-weight: bold;
    width: 18em;
    margin-right: 2.5%;
    background: #fff;
    padding: 10px 15px;
    white-space: nowrap;
    border-radius: 6px;
}
.contact-form dl label {
    margin-bottom: 0;
}
.contact-form p {
    font-size: 1rem!important;
    width: 100%!important;
    margin-bottom: 0!important;
    list-style: 1.5!important;
    text-wrap: wrap;
}
.contact-form p.form-cp {
    font-size: 0.8em!important;
    line-height: 1.4;
    margin: 5px 0;
}
.contact-form dl dd {
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.contact-form .must {
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    line-height: 1;
    display: inline-block;
    margin-left: 5px;
    padding: 2px 0.3em 3px;
    background: #C30008;
    border-radius: 3px;
    vertical-align: baseline;
}
.aform-button-area input {
    color: #fff;
    font-size: 16px;
    width: 12em;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.1em;
    display: block;
    margin: 30px auto;
    padding: 20px 5em;
    text-align: center;
    background: #000;
    background-size: 110%;
    background-position: center;
    border: 1px solid #fff;
    -moz-transition: .3s ease 0s;
    -o-transition: .3s ease 0s;
    -webkit-transition: .3s ease;
    -webkit-transition: .3s ease 0s;
    transition: .3s ease 0s;
}
.contact-form dl dd textarea {
    width: 100%;
}
.aform-input-example {
    color: #ababab;
}
.aform-button-area {
    background-color: transparent;
}
#aform_btn_back[type="button"] {
    color: #fff;
    background: #595757;
    padding: 20px 1em;
    border-color: #595757;
}
#aform_btn_submit[type="submit"] {
    color: #fff;
    background: #9D2425;
    padding: 20px 1em;
    border: none;
}
#aform-confirm-form .aform-button-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
#aform-confirm-form .aform-button-area input {
    margin: 0;
}
#aform_result {
    color: #fff;
    font-weight: 500;
}

.btn-tel {
    display: flex;
    align-items: center;
    text-wrap: nowrap;
    transition: 0.3s all;
    background: #9D2425;
    border: 1px solid #9D2425;
    border-radius: 100vmax;
    width: 100%;
    max-width: 350px;
    max-height: 120px;
}
.btn-tel a {
    position: relative;
    z-index: 10;
    width: 100%;
    white-space: nowrap;
    padding: 20px 30px 25px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: baseline;
    cursor: pointer;
    border-radius: 100vmax;
}
.btn-tel a:hover {
    background: #fff;
    color: #9D2425;
}
.aform-header { display: none;}


a.anchorpoint {
    display: block;
    padding-top: 70px;
    margin-top: -70px;
}

/* 内部ページ個別設定 */
.breadcrumb {
    display: block;
    margin-bottom: 0 !important;
    padding: 0!important;
}
.breadcrumb ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    padding-left: 0;
    text-align: end;
}
.breadcrumb ul li {
    color: #fff;
    position: relative;
    display: inline-block;
    font-size: 16px;
    margin: 0;
    padding: 0!important;
}
.breadcrumb ul li a {
    color: #fff;
    /* text-decoration: underline; */
}
.breadcrumb ul li a:hover { opacity: 0.5;}
.breadcrumb ul li:last-child {
    max-width: 12em;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: bottom;
}
.breadcrumb ul li:not(:last-child) {
    position: relative;
    margin-right: 30px;

    &::after {
        content: "";
        position: absolute;
        right: -33px;
        bottom: 0px;
        transform: translate(-50%, -50%);
        width: 18px;
        height: 1em;
        background-image: url(../img/bread-arrow.png);
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: contain;
    }
}


.other-pages .sec-inline > div {
    position: relative;
    background: none;
    margin-top: auto;
    margin-bottom: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
}


.other-pages footer { margin-top: 0; }

.pagenate > ul {
    text-align: center;
    display: flex!important;
    justify-content: center;
    flex-flow: wrap;
    list-style: none;
    row-gap: 1rem;
    column-gap: .5rem;
    margin-top: 2rem;
    padding: 0;
}
.pagenate > ul > li > a,
.pagenate > ul > li > span {
    font-family: var(--font-num);
    color: #fff!important;
    font-size: 15px!important;
    font-weight: bold!important;
    line-height: 1.5!important;
    padding: 0.5em 0.8em!important;
    border: 1px solid #aaa!important;
}
.pagenate > ul > li::before { display: none!important; }
.pagenate > ul > li > span, .pagenate > ul > li > a:hover {
    color: #fff!important;
    background-color: #aaa!important;
    border-color: #aaa!important;
}
.pagenate > ul > li > span { padding: 0; }
.maker-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 85%;
    margin-inline: auto;

    li {
        width: calc(100% / 3 - 1rem);
    }
}


/* contact */
.contact-table { margin: auto;}
.contact-table tr { border-bottom: solid 1px #ccc;}
.contact-table th { text-align: center;}
.contact-table td { text-align: left; padding: 0.5em 2em 0.5em 1em;}

/* information */
.full-map {
    display: flex;
    justify-content: center;
    line-height: 0;
    width: 100%;
    /* max-height: 365px; */
    overflow: hidden;
}
.full-map iframe {
    max-width: 600px;
    width: 100%;
    aspect-ratio: 1;
    /* height: 365px; */
    /* margin-top: -150px; */
}
.map-img{
    object-fit: contain;
}

/* 取扱製品 */
.other-pages .prod-page:not(:last-child) {
    margin-bottom: 10rem;
}

.prod-flex {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}
.prod-txt {
    width: 55%;
}

.prod-tit {
    margin-bottom: 2rem;
}
.prod-logo {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}
.prod-logo figure {
    max-width: 200px;
    margin: 0;
}
.prod-name {
    font-size: 32px;
    font-weight: 500;
}

.prod-slider {
    position: relative;
    max-width: 400px;
    width: 45%;
    height: 100%;
    margin-inline: auto;
}
.prod-slider .slide figure {
    max-width: 350px;
    margin-inline: auto;
}
.slick-slide img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: contain;
}
.arrow-box .slide-arrow {
    position: absolute;
    top: 50%;
    width: 20px;
    cursor: pointer;
}
.arrow-box .slide-arrow.prev-btn { left: 0;}
.arrow-box .slide-arrow.next-btn { right: 0;}

.prod-movie {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    margin-bottom: 3.5rem;
}

.prod-tbl {
    padding: 1rem;
    margin-bottom: 3.5rem;
}
.prod-tbl table {
    min-width: 500px;
    width: 100% !important;
    font-size: 16px;
}
.prod-tbl table tr { 
    width: auto !important;
    height: auto !important;
    border-bottom: 1px solid #414141;
}
.prod-tbl table tr:first-child {
    border-bottom: 2px solid #414141;
}
.prod-tbl table tr:last-child {
    border-bottom: none;
}
.prod-tbl table th, .prod-tbl table td {
    width: auto !important;
    height: auto !important;
    padding: .5rem;
}

.prod-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.rtt-page, .bm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.rtt-page .item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    gap: 0;
}
.rtt-box {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
}
.rtt-name {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: .5rem;
}
.rtt-img {
    max-width: 300px;
    width: 100%;
    margin-inline: auto;
}
.rtt-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    aspect-ratio: 1;
}

.bm-top {
    display: block;
    margin-bottom: 3rem;
}
.bm-grid figure { margin-bottom: 0;}


/* 採用インフォグラフィック */

.ig-wrap {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1px;
    padding: 1px;
    margin-bottom: 4rem;
}
.ig-wrap .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 1rem;
    text-align: center;
    outline: 1px solid #414141;
    font-size: 16px;
}
.ig-wrap .item:nth-of-type(1) {
    grid-column: span 5 / span 5;
}
.ig-wrap .item:nth-of-type(2) {
    grid-column: span 4 / span 4;
    grid-column-start: 6;
}
.ig-wrap .item:nth-of-type(3) {
    grid-column: span 4 / span 4;
}
.ig-wrap .item:nth-of-type(4) {
    grid-column: span 5 / span 5;
    grid-column-start: 5;
}

.ig-wrap .item .tit { font-size: 22px;}
.ig-wrap .item .ig-box {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    line-height: 1;
}

.ig-wrap .item:nth-of-type(1) {
    gap: 1rem;
}
.ig-wrap .item:nth-of-type(1) .ig-content {
    font-size: 35px;
    font-weight: 700;

    img {
        max-width: 105px;
        width: 70%;
        object-fit: contain;
        margin-top: .5rem;
    }
}

.ig-wrap .item:nth-of-type(1) .ig-box .img01 {
    max-width: 150px;

    img {
        width: 100%;
        max-width: 100px;
        object-fit: contain;
    }
}
.ig-wrap .item:nth-of-type(1) .ig-box .img02 {
    max-width: 117px;

    img {
        width: 100%;
        max-width: 100px;
        object-fit: contain;
    }
}

.ig-wrap .item:nth-of-type(2) .ig-content {
    font-size: 40px;
    font-weight: 700;

    img {
        width: 1.25em;
        height: 1.25em;
        object-fit: contain;
        margin-bottom: .5rem;
    }
}
.ig-wrap .item:nth-of-type(2) .ig-box { margin-bottom: 1rem;}
.ig-wrap .item:nth-of-type(2) .ig-num {
    font-size: clamp(125px,14vw,196px);
    font-weight: 700;
    text-wrap: nowrap;
    font-family: var(--font-num);
    letter-spacing: -0.15em;
    margin-right: 0.2em;
    margin-bottom: -1.5rem;
}

.ig-wrap .item:nth-of-type(3) img {
    max-width: 70px;
    width: 20%;
    object-fit: contain;
}
.ig-wrap .item:nth-of-type(3) .ig-num {
    font-size: clamp(120px,14vw,186px);
    font-weight: 700;
    text-wrap: nowrap;
    font-family: var(--font-num);
    letter-spacing: -0.15em;
    margin-bottom: -1rem;
}
.ig-wrap .item:nth-of-type(3) .ig-content {
    font-size: 57px;
    font-weight: 700;
}

.ig-wrap .item:nth-of-type(4) { gap: 1.5rem;}
.ig-wrap .item:nth-of-type(1) .ig-box, .ig-wrap .item:nth-of-type(4) .ig-box { gap: 1rem;}
.ig-wrap .item:nth-of-type(4) img {
    max-height: 120px;
    object-fit: contain;
    height: 100%;
    object-position: bottom;
}

/* END 採用インフォグラフィック */

.entry-tbl {
    border: 1px solid #414141;
    padding: 1rem;
}
.entry-tbl table {
    width: 100% !important;
    font-size: 16px;
}
.entry-tbl table tr { 
    width: auto !important;
    height: auto !important;
    border-bottom: 1px solid #414141;
}
.entry-tbl table tr:last-child {
    border-bottom: none;
}
.entry-tbl table th, .entry-tbl table td {
    width: auto !important;
    height: auto !important;
    padding: 1rem .5rem;
}

.entry-wrap .item {
    display: block;
    border-bottom: 1px solid #414141;
    padding-bottom: .25rem;
    margin-bottom: 1rem;
}
.entry-wrap a[target="_blank"] {
    position: relative;
    display: block;
    width: 100%;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding-right: 1.5em;
    transition: .3s;
}
.entry-wrap a[target="_blank"] span {
    position: relative;

    &::after {
        content: "\f1c1";
        font-family: "Font Awesome 7 Free";
        font-weight: 400;
        position: absolute;
        top: 0;
        right: -1.5em;
        font-size: 1em;
        z-index: 10;
    }
}

@media (max-width: 991px){
    .breadcrumb ul {
        padding-inline: initial;
    }
    .sec-inline-start {
        padding-inline: initial;
        padding-left: 6%;
    }
    .sec-inline-end {
        padding-inline: initial;
        padding-right: 6%;
    }
    .sec-inline {
        padding-inline: initial;
        padding-left: 6%;
        padding-right: 6%;
    }
    .grid-box {
        grid-gap: 1.5vw;
    }

    .str-wrap {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);

        .str-item:nth-of-type(2) {
            grid-column-start: auto;
            grid-row-start: 2;
        }
        .str-item:nth-of-type(3) {
            grid-row-start: 2;
        }
        .str-item:nth-of-type(4) {
            grid-row-start: 3;
        }
        .str-item:nth-of-type(5) {
            grid-row-start: 3;
        }
    }

    .sec01-box {
        max-width: 600px;
        grid-template-columns: repeat(2, 1fr);
    }
    .sec01-box .item {
        a {
            font-size: 14px;
        }
        img {
            display: flex;
            width: 80%;
            margin-inline: auto;
        }
    }
    .sec01-box .item:nth-of-type(1) {
        grid-column: auto;
        grid-row: auto;
    }

    .sec01-box .item:nth-of-type(2) {
        grid-column: span 2 / span 2;
        grid-column-start: 1;
        grid-row-start: 2;
        max-height: 250px;
    }

    .sec01-box .item:nth-of-type(3) {
        grid-column-start: 2;
        grid-row-start: 1;
        max-height: none;
        height: auto;

        img {
            max-height: none;
        }
    }

    .sec01-box .item:nth-of-type(4) {
        grid-column: auto;
        grid-row: auto;
        grid-column-start: auto;
        grid-row-start: 3;
    }

    .sec01-box .item:nth-of-type(5) {
        grid-row-start: 3;
    }

    .sec01-box .item:nth-of-type(6) {
        grid-column-start: auto;
        grid-row-start: auto;
    }

    .sec01-box .item:nth-of-type(7) {
        grid-row: span 2 / span 2;
        grid-row-start: 4;
        grid-column-start: auto;
    }

    .sec01-box .item:nth-of-type(8) {
        grid-column: span 2 / span 2;
        grid-column-start: 1;
        grid-row-start: 6;
        max-height: 250px;
        height: auto;
    }

    .sec01-box .item:nth-of-type(9) {
        grid-column-start: 1;
        grid-row-start: 5;
    }

    .sec01-box .item:nth-of-type(10) {
        grid-row-start: 7;
        grid-column-start: auto;

        img {
            max-width: 125px;
        }
    }

    .sec01-box .item:nth-of-type(11) {
        grid-row-start: 7;
        grid-column-start: auto;
    }

    .rtt-page, .bm-grid {
        grid-template-columns: repeat(2,1fr);
    }
}
/* SPサイズ */
@media (max-width: 767px) {
    /* 基礎設定 */
    html, body { 
        font-size: 16px;
    }

    .openbtn { right: 1rem;}
    h1 { font-size: 26px; }
    #titbar h1 { font-size: 40px;}
    h2 { font-size: 24px; }
    h3 { font-size: 22px; }
    h4 { font-size: 20px; }
    h5 { font-size: 16px; }
    h6 { font-size: 16px; }
    .grid-box {
        grid-gap: 15px;
    }
    .grid2 { grid-template-columns: repeat(1, 1fr) !important; }
    .grid3 { grid-template-columns: repeat(1, 1fr) !important; }
    .grid4 { grid-template-columns: repeat(2, 1fr) !important; }
    .grid5 { grid-template-columns: repeat(2, 1fr) !important; }
    .box-wh, .box-gray, .box-grad { padding: 1.5em 1.2em; }
    .is-hidden{
        visibility: hidden;
        opacity: 0;
    }
    .breadcrumb ul li { font-size: 12px; }
    .breadcrumb ul li:not(:last-child)::after {
        font-size: 10px;
        padding: 0 6px;
    }
    .sec-inline {
        padding-left: 7.5%;
        padding-right: 7.5%;
    }
    section { padding: calc(40px + 1rem) 0 calc(40px + 1rem);}

    .about-list th,
    .about-list td { display: block;
        width: 100%;
        padding: 16px 12px;
    }
    .about-list th {
        position: relative;
        border-bottom: none; padding-bottom: 0;
    }
    .about-list td { font-size: 15px; }

    .scroll-dw {
        display: none;
    }

    .cacth {
        span {
            font-size: 19px;
        }
    } 
    .cacth .txt {
        font-size: clamp(25px,7vw,48px);
    }
    .top-page hgroup h2 {
        font-size: clamp(42px,6vw,49px);
    }
    .top-page hgroup span {
        font-size: 16px;
        margin-bottom: 1rem;
    }

    .rec-tbl { 
        th { width: 8em;}
    }

    #clickarea { width: 100%; }
    #clickarea .click-list {
        padding-top: 2rem;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 25rem;
    }
    .click-list > ul > li::before { left: 10px!important; opacity: 1!important; }
    .click-list > ul > li::after { display: none!important; }

    .nosc .menu-wrap .img-none {
        display: block;
        opacity: 1;
    }
    .nosc .menu-wrap .img-block {
        display: none;
        opacity: 0;
    }

    .click-list > ul > li > a { font-size: 16px;}
    .menu-main .sub-menu {
        a { font-size: 14px;}
    }

    .prod-item { 
        width: calc(100% / 2 - 1rem);

        figcaption {
            line-height: 1.3;
        }
    }

    .sec01-box .item.obox img { max-width: none;}

    #sec02, #sec03 {
        hgroup { margin-bottom: 2rem;}
    }

    .sec03-box {
        flex-direction: column;
        gap: 3rem;
    }
    .sec03-box .item { 
        width: 100%;
        max-width: 300px;
        margin-inline: auto;
    }

    .sec04-box { gap: 3rem;}
    .sec04-txt { margin-left: 5%;}

    .sec07-wrap {
        grid-template-columns: auto;
    }

    .brand-box, .brand-box-sp {
        align-items: center;

        ul {
            margin-inline: auto;
        }
        li {
            width: 200px;
        }
    }
    .brand-box-sp {
        padding-bottom: 0;

        ul {
            flex-direction: row-reverse;
        }
    }

    .scroll-txt {
        height: 200px;
    }

    .news-box dt {
        padding-left: 1em;
        padding-right: 3em;
    }

    .contact-form dl > div.contact-short-item { display: block;}
    .contact-form dl dt {
        width: 100%;
        margin-right: 0;
        margin-bottom: auto;
        padding: 5px 0;
    }
    .contact-form dl dd { 
        width: 100%;
    }
    .contact-form dl dd input, .contact-form dl dd textarea { max-width: 100%;}

    .about-list {
        padding: 0;
    }

    .tit-wrap { display: block;}

    .other-pages .prod-page:not(:last-child) { margin-bottom: 7.5rem;}

    .prod-flex {
        flex-direction: column-reverse;
        gap: 1rem;
    }

    .prod-txt, .prod-slider { width: 100%;}

    .prod-tbl table { font-size: 14px;}

    .prod-name { font-size: 24px;}
    .prod-btn {
        flex-direction: column;
        gap: 2rem;
    }

    .maker-list {
        width: 75%;

        li { width: 100%;}
    }

    .ct-flex {
        flex-direction: column;

        .cfi01 { 
            width: 80%;
            margin-inline: auto;
        }
        .cfi02 { width: 100%;}
    }

    .ct-prod-tbl {
        table {
            width: 650px !important;
            text-wrap: nowrap !important;
        }
    }

    .ct-prod-img {
        a {
            figcaption {
                font-size: 14px;
                line-height: 1.3;
            }
        }
    }

    .ct-grid {
        grid-template-columns: repeat(2, 1fr);
        &.ct-grid-1 {
            grid-template-columns: repeat(1, 1fr);
        }
    }

    .str-wrap {
        display: block;
        .str-item:nth-of-type(4) {
            .large-txt {
                font-size: 110px;
            }
        }
        .str-item:nth-of-type(5) {
            .large-txt {
                font-size: 110px;
            }
        }
        .str-item { margin-bottom: 1rem;}
    }
    .cnd-wrap {
        .cnd-item {
            display: block;
            margin-top: 4rem;
            margin-bottom: 1.5rem;

            .cnd-img {
                position: absolute;
                top: 0;
                left: 50%;
                transform: translate(-50%,-50%);
                width: 75px;
                height: 75px;
            }

            .cnd-txt {
                width: 100%;
                font-size: 16px;
                padding-top: 3rem;
                padding-bottom: 2rem;
            }
        }  
    }

    .str-wrap {
        .str-box01 {
            .num-txt {
                margin-bottom: -20px;
            }
        }

        .str-item:nth-of-type(2), .str-item:nth-of-type(3) {
            img {
                max-width: 100px;
            }
        }
    }

    
    .ft-wrap { 
        width: 85%;
        padding-top: 3rem;
    }
    .ft-address { width: 100%;}
    .ft-box {
        gap: 2rem;
        margin-right: auto;
        margin-left: 0;        
        margin-bottom: 0;
    }
    .ft-menu {
        width: 100%;
        gap: 1.5rem;

        li:not(:last-child) {
            margin-bottom: 1rem;
        }
    }
    .ft-icon {
        .ft-link {
            max-width: 27px;
        }
    }
    .f-wrap {
        width: 80%;
        margin-inline: auto;
        padding: 5rem 0 10rem;
    }
    .f-menu > ul {
        flex-direction: column;
        align-items: center;
        text-align: center;
        row-gap: 1rem;
    }
    .f-menu ul li:not(:first-child) { border-left: none;}
    
    .f-menu ul li { width: 100%;}

    .pagenate > ul.hidden-xs { display: none!important; }
    .pagenate > ul.visible-xs { display: flex!important; }
    .pagenate > ul.visible-xs:last-child { margin-top: 0!important; }

    .contact-table tr { border-bottom: none; }
    .contact-table td { display: block; text-align: center;}
    .contact-table td.td1 { padding-bottom: 12px; border-bottom: 1px solid #ccc!important; }
    .contact-table td.td2 { border-bottom: 1px solid #333; }

    .copy { 
        font-size: 0.8em;
        text-wrap: nowrap;
    }

    .principle {
        font-size: 21px;
    }

    .ig-wrap {
        grid-template-columns: repeat(1, 1fr);
    }
    .ig-wrap .item:nth-of-type(1) {
        grid-column: auto;
    }
    .ig-wrap .item:nth-of-type(2) {
        grid-column: auto;
        grid-column-start: auto;
    }
    .ig-wrap .item:nth-of-type(3) {
        grid-column: auto;
    }
    .ig-wrap .item:nth-of-type(4) {
        grid-column: auto;
        grid-column-start: auto;
    }
    .ig-wrap .item .tit { font-size: 20px;}
    .ig-wrap .item:nth-of-type(1) .ig-content { font-size: 20px;}
    .ig-wrap .item:nth-of-type(1) .ig-box { gap: 0rem;}

}

@media(max-width: 575px){
    .h-logo .brand { max-width: 250px;}
    
    #clickarea {
        min-width: auto;
        width: 100%;
    }
    #clickarea.panelactive .click-list {
        display: block;
    }

    #maintop .video-js {
        height: 75vh !important;
    }

    #maintop, #maintop img, #maintop::after { 
        height: 75vh;
    }

    #titbar {
        span {
            font-size: 16px;
        }
    }


    .sec-wrap {
        width: 85%;
    }
    .btn01 { 
        display: block;
        /* width: 100%; */
    }
    .btn01 a { 
        text-align: center;
        padding: .5em 1.5em .5em 1.5em;
        font-size: 14px;
    }
    .ct-grid-item {
        .btn01 {
            a { 
                font-size: 14px;
                line-height: 1.2;
                svg { 
                    width: 1.5em;
                    margin-left: .5em;
                }
            }
        }
    }

    .cacth .txt {
        font-size: clamp(22px, 6vw, 25px);
    }
    .cacth {
        span {
            font-size: clamp(16px, 5.25vw, 19px);
        }
    } 

    #sec01 {
        padding-top: 5rem;

        hgroup { margin-bottom: 2rem;}

        &::after {
            content: "";
            position: absolute;
            top: 0rem;
            right: -1rem;
            width: 90%;
            max-width: 335px;
            height: 250px;
        }
    }
    .sec01-box .item {
        img { width: 100%;}
    }

    .sec03-box {
        max-width: 350px;
        margin-inline: auto;
        flex-direction: column;
    }

    .used-flex {
        flex-direction: column;
    }
    .used-flex .used-item {
        width: 100%;
    }
    
    #sec04 {
        p {
            margin: 2rem auto 2.5rem;
        }
    }

    .sec04-box {
        display: block;
    }
    .sec04-img { 
        text-align: center;
        margin-bottom: 2.5rem;
    }
    .sec04-txt {
        margin-left: 10%;
        margin-right: 10%;
    }

    #sec05 {
        .btn01 {
            margin-top: auto;
        }
    }
    
    .sec05-box {
        display: block;
    }
    .sec05-txt { 
        margin: auto;
        
        p { margin-bottom: 2.5rem;}
    }
        
    .sec05-img { 
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .sec05-txt {
        margin-left: 10%;
        margin-right: 10%;

        &::after {
            top: 0%;
            right: -115%;
            width: 200%;
            height: 200%;
            background-position: top;
        }
    }

    #sec06 {
        hgroup {
            margin-bottom: 2.5rem;
        }
    }

    .top-page hgroup h3 { font-size: 49px;}

    .news-box .news-item {
        padding: .75rem .5rem .75rem 0;
    }
    .news-box .news-item .news-txt { 
        -webkit-line-clamp: 2;
        padding-right: 0;
        font-size: 16px;
    }

    .scroll-txt {
        height: 150px;
    }

    .sec-tit {
        width: 80%;
        margin: 0 auto 1.5rem;
        padding-left: 1em;
    }
    .news-box {
        width: 100%;
        margin: 2rem auto;
        margin-bottom: 3rem;
    }
    .news-box a dd {
        width: 100%;
        -webkit-line-clamp: 2;
        padding-right: 3rem;
    }
    .news-box .news-item a { 
        display: block;
        font-size: 16px;
    }
    .news-box .news-item a::before,.news-box .news-item a::after { 
        content: none;
        top: 80%;
    }
    .news-box .news-item time { font-size: 14px;}

    #sec07 {
        hgroup span {
            margin-bottom: auto;
        }
    }
    .sec07-wrap .item {
        padding: 3rem;
    }

    .slick-slide img {
        width: 80%;
        margin-inline: auto;
    }

    .prod-box { 
        column-gap: 1rem;
        row-gap: 1rem;
        align-items: flex-start;
    }
    
    .rtt-page .btn01 a {
        text-wrap: wrap;
        padding: .5em 1em .5em 1em;
        line-height: 1.4;

        svg { width: 1.5em;}
    }

    .used-slider {
        width: calc(100%);
    }

    .news-box dt {
        padding-left: 0;
        padding-right: 0;
    }

    .table th, .table td {
        display: block;
        width: 100%;
    }
    .table th { border-bottom: none; padding-top: 20px; }
    .table td { padding-top: 0; padding-bottom: 25px; }
    .table td *:last-of-type { margin-bottom: 0; }
    .box-wh, .box-gray, .box-grad { padding: 1.5em 1.2em; }
    .sec-inline { padding-inline: initial; padding-left: 20px; padding-right: 20px; }
    
    .js-scrollable {
        width: 100%;
        overflow: scroll !important;
        margin-bottom: 1rem;
    }
    .scroll-tbl, .about-tbl {
        width: 500px;
    }

    .breadcrumb ul { padding: 3px 20px 8px; }

    .ft-box, .ft-menu, .ft-item {
        flex-direction: column;
    }
    .f-wrap {
        &::before {
            width: 60vw;
            max-height: 160px;
        }
        &::after {
            width: 50vw;
            max-height: 180px;
        }
    }
    .ft-menu ul.sub-menu { column-count: 1;}
    .ft-box { margin-bottom: .5rem;}
    .ft-item {
        gap: .5rem;
    }
    .ft-address, .ft-icon {
        margin-bottom: 2rem;
    }
    .ft-menu, .ft-item {
        align-items: flex-start;
    }

    .sec-custom {
        .slick-dots { bottom: 5px;}
    }

    .entry-tbl table { font-size: 15px;}

    .case-txt, .outlet-txt { font-size: 14px;}
}
    
@media (any-hover: hover) {
    .h-logo a:hover, .menu-list ul li a:hover, .menu-main a:hover, .nosc .click-list > ul > li > a:hover, .news-item a:hover, footer a:hover, .entry-wrap a[target="_blank"]:hover { opacity: .5;}
    .menu-link a:hover {
        background: #fff;
        span {
            color: #000;
        }
    }
    .click-link a:hover {
        color: #000;
        background: #fff;
    }
    .btn01:hover { 
        border-color: #fff;
        background: #fff;

        a {
            color: #000;

            svg { stroke: #000;}
        }
    }
    .btn01.btn-red:hover {
        border-color: #9D2425;
        background: #9D2425;

        a {
            color: #fff;

            svg { stroke: #fff;}
        }
    }

    .aform-button-area input:hover {
        border-color: #9D2425;
        background: #9D2425;

        a {
            color: #fff;

            svg { stroke: #fff;}
        }
    }

    .sec01-box a:hover img,
    .sec03-box .item a:hover img,
    .case-page .item a:hover img { 
        scale: 1.1;
    }
    .prod-item a:hover .gleaming::before, .slide a:hover picture::before, .gleam-wrap a:hover .gleaming::before {
        top: 0;
        left: 100%;
    }
    .sec03-box .item a:hover .txt, .case-page .item a:hover .case-tit {
        border-color: #9D2425;
        background: #9D2425;
    }
    .slide a:hover .used-txt .used-svg svg { stroke: #AC161E;}

    .um-btn:hover {
        border-color: #AC161E;
        background: #fff;
        color: #AC161E;
    }
    .um-btn:hover a { color: #AC161E;}

}