@charset "UTF-8";
@import url(sanitize.css);
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 62.5%;
}

a {
    text-decoration: none;
}

.btn,
a.btn,
button.btn {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    font: 700 13.5px/1em 'Noto Sans JP', sans-serif;
    color: #FF3E00;
    padding: 1.5rem 5rem 1.7rem 5rem;
    border: 1px solid #FF3E00;
    background: rgba(255, 255, 255, 0.5);
}

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

    .btn,
    a.btn,
    button.btn {
        font-size: 12px;
        padding: 1rem 3rem 1.1rem 3rem;
    }
}

.btn:hover {
    color: #fff;
    background: #FF3E00;
}

.btn::after {
    content: "";
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #FF3E00;
    border-right: 2px solid #FF3E00;
    transform: rotate(45deg) translateY(-50%);
    top: 46%;
    right: 12%;
}

.btn:hover::after {
    border-color: #fff;
}

body {
    overflow-x: hidden;
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
}

/* ヘッダーのスタイル */
.header {
    background: rgba(255, 255, 255, 1);
    position: fixed;
    width: 100%;
    z-index: 100;
    /* ヘッダーを前面に表示する */
    display: flex;
    justify-content: center;
    transition: all 0.3s;
}

.header.scrolled {
    background: rgba(255, 255, 255, 1);
    height: 60px;
}

@media screen and (max-width:1200px) {
    .header.scrolled {
        height: 45px;
    }
}

.header-container {
    padding: 0 3.5vw;
    background: rgba(255, 255, 255, 1);
    height: 75px;
    display: flex;
    align-items: center;
    width: 100%;
    transition: all 0.3s;
    position: relative;
}

@media screen and (max-width:1200px) {
    .header-container {
        height: 60px;
        padding: 0 3.5vw;
    }
}

.header.scrolled .header-container {
    height: 60px;
    padding: 0 3.5vw;
    background: rgba(255, 255, 255, 1);
}

@media screen and (max-width:1200px) {
    .header.scrolled .header-container {
        height: 45px;
        padding: 0 3.5vw;
    }
}

/* ロゴエリアのスタイル */
.logo-area {
    display: flex;
    align-items: center;
}

.logo-link img {
    height: 40px;
    vertical-align: bottom;
}

@media screen and (max-width:1200px) {
    .logo-link img {
        height: 30px;
    }
}

.header.scrolled .logo-link img {
    height: 40px;
}

@media screen and (max-width:1200px) {
    .header.scrolled .logo-link img {
        height: 30px;
    }
}

.company-name {
    color: #5e5e5e;
    margin-left: 12px;
    margin-top: 13px;
    font: 700 12px/1em 'Noto Sans JP', sans-serif;
}

@media screen and (max-width:1200px) {
    .company-name {
        height: 30px;
        margin-left: 10px;
        font: 700 10px/1em 'Noto Sans JP', sans-serif;
    }
}

.header.scrolled .company-name {
    margin-top: 8px;
    font-size: 12px;
}

@media screen and (max-width:1200px) {
    .header.scrolled .company-name {
        font-size: 10px;
    }
}

/* ナビゲーションエリアのスタイル */
.nav-area {
    display: flex;
    align-items: center;
    margin: 0 auto;

}

@media screen and (max-width:1000px) {
    .nav-area {
        display: none;
    }
}

.nav-list {
    display: flex;
    align-items: center;
    transition: all 0.5s ease-in-out;
}

.header.scrolled .nav-list {
    font-size: 15px;
}

@media screen and (max-width:1400px) {
    .header.scrolled .nav-list {
        font-size: 12px;
    }
}

.nav-list li + li {
    margin-left: clamp(20px, 3.2vw, 100px);
}

.nav-list li {
    text-align: center;
    position: relative;
}

.nav-list a {
    color: #5c5c5c;
    font: 500 15px/1em 'Noto Sans JP', sans-serif;
    position: relative;
    transition: all 0.3s;
}

@media screen and (max-width:1400px) {
    .nav-list a {
        font-size: 12px;
    }
}

.nav-list a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 7px;
    right: 0;
    background: #FF3E00;
    transition: width 0.3s ease, right 0.3s ease;
}

@media screen and (max-width:1200px) {
    .nav-list a::after {
        margin-top: 4px;
    }
}

.nav-list a:hover::after {
    width: 100%;
    left: 0;
}

.nav-list a:hover {
    color: #FF3E00;
}

/* お問い合わせボタン */
@media screen and (max-width:1000px) {
    .header-contact {
        display: none;
    }
}

.btn-contact {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    display: inline-block;
    padding: 1.3rem 5rem 1.6rem 5rem;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #FF3E00;
    border: 1px solid #FF3E00;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
    z-index: 100;
}

@media screen and (max-width:1200px) {
    .btn-contact {
        font-size: 12px;
        padding: 1rem 3rem 1.1rem 3rem;
    }
}

.btn-contact:hover {
    color: #fff;
    background: #FF3E00;
}

.header.scrolled .btn-contact {
    font-size: 15px;
    padding: 1rem 4.8rem 1.2rem 4.8rem;
}

@media screen and (max-width:1200px) {
    .header.scrolled .btn-contact {
        font-size: 12px;
        padding: 1rem 3rem 1.1rem 3rem;
    }
}

/* バーガーメニューのスタイル */
.burger-btn {
    position: fixed;
    display: none;
    cursor: pointer;
    z-index: 101;
    bottom: 15px;
    right: 15px;
    border: 1px solid #FF3E00;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 5px 3px;
}

@media screen and (max-width:1000px) {
    .burger-btn {
        display: block;
    }
}

.burger-btn .line {
    width: 25px;
    height: 3px;
    background: #FF3E00;
    margin: 5px;
    transition: all 0.3s ease;
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* バーガーメニューコンテンツのスタイル */
.bugger {
    width: 100%;
    position: fixed;
    bottom: -100%;
    left: 0;
    opacity: 0;
    background: #fff;
    z-index: 100;
    transition: bottom 0.3s ease, opacity 0.3s ease;
    overflow-y: auto;
    padding: 50px 30px;
}

.bugger.active {
    bottom: 0;
    opacity: 1;
}

.bugger-container {
    max-width: 600px;
    margin: 0 auto;
}

@media screen and (max-width:800px) {
    .bugger-container {
        max-width: 400px;
    }
}

.bugger-top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding-bottom: 20px;
}

@media screen and (max-width:800px) {
    .bugger-top {
        padding-bottom: 20px;
    }
}

.bugger-top-left {
    display: flex;
    flex-direction: column;
    /* margin-right: clamp(50px, 9vw, 200px); */
}

/* @media screen and (max-width:1200px) {
    .bugger-top-left {
        margin-right: clamp(110px, 11vw, 200px);
    }
}

@media screen and (max-width:800px) {
    .bugger-top-left {
        margin-right: clamp(30px, 11vw, 110px);
    }
} */

.bugger-top-left a {
    font: 400 20px/2em 'Noto Sans JP', sans-serif;
    color: #5e5e5e;
    margin-bottom: 16px;
}

@media screen and (max-width:1200px) {
    .bugger-top-left a {
        font: 400 16px/2em 'Noto Sans JP', sans-serif;
        color: #5e5e5e;
        margin-bottom: 14px;
    }
}

@media screen and (max-width:800px) {
    .bugger-top-left a {
        font: 400 12px/2em 'Noto Sans JP', sans-serif;
        color: #5e5e5e;
        margin-bottom: 14px;
    }
}

.bugger-top-mid {
    display: flex;
    flex-direction: column;
    /* margin-right: clamp(50px, 9vw, 150px); */
}

/* @media screen and (max-width:1200px) {
    .bugger-top-mid {
        margin-right: clamp(110px, 11vw, 150px);
    }
}

@media screen and (max-width:800px) {
    .bugger-top-mid {
        margin-right: clamp(30px, 11vw, 150px);
    }
} */

@media screen and (max-width:800px) {
    .bugger-top-mid:last-of-type {
        margin-right: 5px;
    }
}



.bugger-top-mid a {
    font: 400 20px/2em 'Noto Sans JP', sans-serif;
    color: #5e5e5e;
    margin-bottom: 6px;
}

@media screen and (max-width:1200px) {
    .bugger-top-mid a {
        font: 400 16px/2em 'Noto Sans JP', sans-serif;
        color: #5e5e5e;
        margin-bottom: 2px;
    }
}

@media screen and (max-width:800px) {
    .bugger-top-mid a {
        font: 400 12px/3em 'Noto Sans JP', sans-serif;
        color: #5e5e5e;
        margin-bottom: 10px;
    }
}

.bugger-top-mid ul {
    padding: 0;
    margin: 0;
}

.bugger-top-mid ul>li {
    list-style: none;
    margin-bottom: 4px;
}

@media screen and (max-width:800px) {
    .bugger-top-mid ul>li {
        margin-bottom: 2px;
    }
}

.bugger-top-mid ul>li>a {
    list-style: none;
    font: 400 14px/2em 'Noto Sans JP', sans-serif;
    color: #929292;
}

@media screen and (max-width:1200px) {
    .bugger-top-mid ul>li>a {
        list-style: none;
        font: 400 12px/2em 'Noto Sans JP', sans-serif;
        color: #929292;
    }
}

@media screen and (max-width:800px) {
    .bugger-top-mid ul>li>a {
        list-style: none;
        font: 400 10px/2em 'Noto Sans JP', sans-serif;
        color: #929292;
    }
}

.bugger-top-mid {
    display: flex;
    flex-direction: column;
}

.bugger-top-mid a {
    font: 400 20px/2em 'Noto Sans JP', sans-serif;
    color: #5e5e5e;
    margin-bottom: 16px;
}

@media screen and (max-width:1200px) {
    .bugger-top-mid a {
        font: 400 16px/2em 'Noto Sans JP', sans-serif;
        color: #5e5e5e;
        margin-bottom: 14px;
    }
}

@media screen and (max-width:800px) {
    .bugger-top-mid a {
        font: 400 12px/2em 'Noto Sans JP', sans-serif;
        color: #5e5e5e;
        margin-bottom: 14px;
    }
}

/* フッターリンクのホバーエフェクト */
.bugger-top a {
    position: relative;
    color: #5e5e5e;
    transition: color 0.3s ease;
    display: inline-block;
    /* 要素がインラインレベルでありながらブロックレベルの特性を持つようにする */
}

.bugger-top a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    /* 下線の位置を調整 */
    left: 0;
    background-color: #FF3E00;
    transition: width 0.3s ease;
}

.bugger-top a:hover {
    color: #FF3E00;
}

.bugger-top a:hover::after {
    width: 100%;
    /* テキストの幅に合わせる */
}

.bugger-mid {
    display: flex;
    align-items: start;
    justify-content: start;
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid #929292;
}

@media screen and (max-width:800px) {
    .bugger-mid {
        display: none;
        flex-direction: column;
        align-items: start;
        justify-content: center;
        padding-bottom: 30px;
        padding-top: 30px;
    }
}

.bugger-mid-container {
    display: flex;
    flex-direction: column;
}

@media screen and (max-width:800px) {
    .bugger-mid-container {
        margin: 0 auto;
    }
}

.bugger-mid-container:first-of-type {
    margin-right: 50px;
}

@media screen and (max-width:800px) {
    .bugger-mid-container:first-of-type {
        margin: 0 a;
        margin-bottom: 20px;
    }
}

.bugger-header {
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #929292;
    margin-bottom: 10px;
}

.bugger-header h3 {
    display: flex;
    align-items: center;
    font: 400 20px/2em 'Noto Sans JP', sans-serif;
    color: #5e5e5e;
    margin: 0;
}

@media screen and (max-width:800px) {
    .bugger-header h3 {
        font: 400 16px/2em 'Noto Sans JP', sans-serif;
    }
}

.bugger-header h3::before {
    content: "";
    vertical-align: bottom;
    display: inline-block;
    width: 12px;
    height: 6px;
    background: #FF3E00;
    margin-right: 20px;
}

@media screen and (max-width:800px) {
    .bugger-header h3::before {
        content: "";
        vertical-align: bottom;
        display: inline-block;
        width: 10px;
        height: 5px;
        background: #FF3E00;
        margin-right: 20px;
    }
}

.bugger-address {
    margin-left: 32px;
}

.bugger-address p:first-of-type {
    margin-bottom: 5px;
}

.bugger-address p {
    font: 600 14px/2.5em 'Noto Sans JP', sans-serif;
    color: #5e5e5e;
    margin: 0;
}

@media screen and (max-width:800px) {
    .bugger-address p {
        font: 600 12px/2.5em 'Noto Sans JP', sans-serif;
    }
}

.bugger-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    border-top: 1px solid #929292;
    margin-left: 5px;
}

@media screen and (max-width:800px) {
    .bugger-bottom {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 30px 5px;
    }
}

.bugger-bottom-header {
    padding-right: 30px;
    border-right: 1px solid #929292;
}

@media screen and (max-width:800px) {
    .bugger-bottom-header {
        display: none;
    }
}

.bugger-bottom-header p {
    font: 400 1vw/2.5em 'Noto Sans JP', sans-serif;
    color: #5e5e5e;
    margin: 0;
}

@media screen and (max-width:1200px) {
    .bugger-bottom-header p {
        font: 400 16px/2.5em 'Noto Sans JP', sans-serif;
    }
}

@media screen and (max-width:800px) {
    .bugger-bottom-header p {
        display: none;
    }
}

.bugger-bottom-links {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 30px;
}

@media screen and (max-width:800px) {
    .bugger-bottom-links {
        margin-left: 5px;
    }
}

.bugger-bottom-links a {
    width: clamp(15px, 2.2vw, 40px);
    height: clamp(15px, 2.2vw, 40px);
    margin-right: 20px;
}

@media screen and (max-width:1200px) {
    .bugger-bottom-links a {
        width: 26px;
        height: 26px;
    }
}

@media screen and (max-width:800px) {
    .bugger-bottom-links a {
        margin-right: 15px;
    }
}

.bugger-bottom-links a img {
    width: clamp(15px, 2.2vw, 40px);
    height: clamp(15px, 2.2vw, 40px);
}

@media screen and (max-width:1200px) {
    .bugger-bottom-links a img {
        width: 26px;
        height: 26px;
    }
}

/* フッターのソーシャルリンクのホバーエフェクト */
.bottom-links a img {
    transition: transform 0.3s ease-in-out;
}




/* ナビゲーションリストのスタイル */
.nav-list {
    display: flex;
    align-items: center;
    transition: all 0.5s ease-in-out;
}

.nav-active {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    height: 100vh;
    z-index: 5;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.nav-active {
    transform: translateX(0);
}

@keyframes navLinksFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}


/* ドロップダウンメニューのスタイル */
.dropdown {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100vw;
    background-color: rgba(255, 255, 255, 1);
    height: 0;
    opacity: 0; /* 初期状態で非表示 */
    visibility: hidden; /* 初期状態で非表示 */
    z-index: 1;
    overflow: hidden;
    transition: height 0.5s ease, opacity 0.5s ease, visibility 0s linear 0.5s;
}

@media screen and (max-width:1200px) {
    .dropdown {
        top: 45px;
    }
}

.dropdown-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dropdown-top {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
    margin-top: 30px;
    border-bottom: 1px solid #929292;
}

.dropdown-top-3 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
    margin-top: 30px;
    border-bottom: 0px solid #929292;
}


.has-dropdown:hover .dropdown {
    height: 310px;
    opacity: 1;
    visibility: visible;
    transition: height 0.5s ease, opacity 0.5s ease, visibility 0s;
}

.has-dropdown:hover .dropdown-content {
    opacity: 1;
}

.dropdown:hover {
    display: block;
    height: 310px;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
}

.dropdown-itms {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    margin-right: 20px;
}

.dropdown-itms:last-of-type {
    margin-right: 0;
}

.dropdown-itms:hover .dropdown-items-img img {
    transform: scale(1.1);
}

.dropdown-itms:hover a {
    color: #FF3E00;
}

.dropdown-items-img {
    max-width: 170px;
    max-height: 135px;
    margin-bottom: 10px;
    overflow: hidden;
}



.dropdown-items-img img {
    display: block;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #5c5c5c;
    transition: color 0.3s ease;
}

.dropdown-items-img a {
    padding: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
    object-fit: cover;
}


.dropdown-content a:after {
    content: "";
    height: 0;
}

.dropdown-bottom {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-top: 24px;
    width: 930px;
}

.dropdown-bottom-header {
    border-right: 1px solid #929292;
    padding-right: 42px;
    margin-right: 16px;
    margin-left: 20px;
}

.dropdown-bottom-header h3 {
    margin: 0;
    background: #a4a4a4;
    color: #fff;
    font: 400 13px/1em 'Noto Sans JP', sans-serif;
    padding: 10px 15px;
}



.dropdown-bottom-content a {
    color: #5c5c5c;
    font: 400 13px/1em 'Noto Sans JP', sans-serif;
    padding-left: 0;
}

.dropdown-bottom-content ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-bottom-content li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
}

.dropdown-bottom-content li::before,
.dropdown-bottom-content li::after {
    content: '';
    position: absolute;
    right: 15px;
    transition: 0.3s;
    background-color: #929292;
}

.dropdown-bottom-content li::before {
    top: calc(54% - 1px);
    transform: translateY(calc(-54% - 1px)) rotate(45deg);
    width: 5px;
    height: 2px;
}

.dropdown-bottom-content li::after {
    top: 54%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
}

.dropdown-bottom-content li:hover::before,
.dropdown-bottom-content li:hover::after {
    background-color: #FF3E00;
}


.dropdown-bottom-content li:hover a {
    color: #FF3E00;
}

/* メイン */
main {
    width: 100%;
}

/* メインビジュアルのスタイル */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    text-align: left;
    position: relative;
    overflow: hidden;
    /* コンテナのoverflowを隠す */
}

.mv-item {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    height: 100%;
    animation: img-change 24s infinite; /* 8秒ごとの切り替え */
    opacity: 0; /* 初期状態では非表示 */
}

@media screen and (max-width:1200px) {
    .mv-item {
        top: 60px;
    }
}

.mv-item:nth-child(1) {
    animation-delay: 0s;
    z-index: 3; /* 一番前に表示 */
}

.mv-item:nth-child(2) {
    animation-delay: 8s;
    z-index: 2; /* 次に表示される画像 */
}

.mv-item:nth-child(3) {
    animation-delay: 16s;
    z-index: 1; /* 最後に表示される画像 */
}

.mv-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoom-in 24s infinite;
    transform-origin: center right;
}

/* アニメーションの調整 */
@keyframes img-change {
    0% {
        opacity: 0;
    }
    8.33% { 
        opacity: 1;
    }
    33.33% { 
        opacity: 1;
    }
    41.66% { 
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes zoom-in {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}


.mv-item:nth-child(1)::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}



.hero-content {
    position: absolute;
    left: 3.5vw;
    bottom: 3vw;
    z-index: 10;
}

.hero-txt {
    margin-bottom: 2vw;
}

.hero-txt h2 {
    margin: 1vw 0 1.2vw 0.3vw;
    font: 500 2.5vw/0.8em 'Noto Sans JP', sans-serif;
    color: #fff;
}

.hero-txt.visible h2 {
    opacity: 1;
}

@media screen and (max-width: 800px) {
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        bottom: 50vh;
        width: 100%;
        left: 50%;
        transform: translateX(-50%);
        margin: auto;
    }

    .hero-txt {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-bottom: 15px;
    }

    .hero-txt h2 {
        margin: 0;
        font: 400 4vw/1.3em 'Noto Sans JP', sans-serif;
    }
}

.hero-bij h2 {
    display: inline-block;
    position: relative;
    color: #FF3E00;
    font: 600 10vw/0.8em 'Raleway', sans-serif;
    letter-spacing: 0.1em;
    margin: 0.7vw 0;
}



/* スクロールを促す */
#wrapper {
    display: inline-block;
    position: absolute;
    right: 3.7vw;
    bottom: 3.7vw;
    z-index: 10;
}

#wrapper-inner {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}

#scroll-down {
    display: block;
    position: relative;
    padding-top: 4vw;
    text-align: center;
}

.arrow-down {
    display: block;
    margin: 0 auto;
    width: 10px;
    height: 1.8vw;
}

.arrow-down:after {
    content: '';
    display: block;
    margin: 0;
    padding: 0;
    width: 11px;
    height: 11px;
    border-top: 0.2vw solid #FF3E00;
    border-right: 0.2vw solid #FF3E00;
    behavior: url(-ms-transform.htc);
    -moz-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

#scroll-title {
    display: block;
    text-transform: uppercase;
    color: #FF3E00;
    font-family: Helvetica Neue, Helvetica, Arial;
    font-size: 1vw;
    font-weight: 500;
    letter-spacing: .1em;
}

@media screen and (max-width:800px) {
    #scroll-title {
        font-size: 0.7vw;
    }
}

#scroll-down::before {
    -webkit-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
    -moz-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
    -o-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
    animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
    position: absolute;
    top: 0px;
    left: 50%;
    margin-left: -1px;
    width: 0.14vw;
    height: 4.7vw;
    background: #FF3E00;
    content: ' ';
}

@-webkit-keyframes elasticus {
    0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }

    50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
}

@-moz-keyframes elasticus {
    0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }

    50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
}

@-o-keyframes elasticus {
    0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }

    50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
}

@keyframes elasticus {
    0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }

    50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
}

@media screen and (max-width:1200px) {
    #wrapper {
        display: none;
    }
}

@media screen and (max-width:800px) {
    #wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        left: 50%;
        bottom: 90px;
        transform: translateX(-50%);
    }

    #scroll-down {
        padding-top: 49px;
    }

    .arrow-down {
        width: 11px;
        height: 20px;
    }

    .arrow-down:after {
        border-top: 2px solid #FF3E00;
        border-right: 2px solid #FF3E00;
    }

    #scroll-title {
        font-size: 14px;
    }

    #scroll-down::before {
        width: 1.5px;
        height: 60px;
    }
}




/* ABOUT */
.about {
    width: 100%;
    height: 100%;
    padding: 200px 80px;
    display: flex;
    position: relative;
}

@media screen and (max-width:1200px) {
    .about {
        padding: 100px 40px;
    }
}

@media screen and (max-width:800px) {
    .about {
        padding: 100px 40px 100px 44px;
    }
}

.about-container {
    max-width: 1650px;
    margin: 0 auto;

}


@media screen and (max-width:800px) {
    .about-container {
        margin: 0 auto;
    }
}

.about-maintextarea {
    max-width: 1400px;
}

@media screen and (max-width:800px) {
    .about-maintextarea {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        max-width: 450px;
        margin-left: 4px;
    }
}

.about-header {
    margin-bottom: 42px;
    display: flex;
    align-items: end;
}

@media screen and (max-width:1200px) {
    .about-header {
        margin-bottom: 30px;
    }
}

.about-header h3 {
    display: flex;
    align-items: center;
    color: #5e5f5f;
    font: 100 clamp(26px, 5.4vw, 80px)/0.9em 'Raleway', 'Noto Sans JP', sans-serif;
    margin: 0;
}


@media screen and (max-width:800px) {
    .about-header h3 {
        font: 100 clamp(42px, 8vw, 80px)/0.9em 'Raleway','Noto Sans JP', sans-serif;
    }
}

.about-header p {
    font: 100 1.2vw/1.4em  'Noto Sans JP', sans-serif;
    margin: 0;
    margin-left: 2vw;
    color: #5e5f5f;
}


@media screen and (max-width:800px) {
    .about-header p {
        font: 100 clamp(14px, 2.4vw, 24px)/1.4em 'Noto Sans JP', sans-serif;
    }
}



.about-up-textarea {
    display: flex;
    flex-direction: column;
    margin-right: 5.4vw;
    width: 36vw;
}

@media screen and (max-width:800px) {
    .about-up-textarea {
        margin-right: 0;
        width: 100%;
    }
}

.about-up-item {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

@media screen and (max-width:800px) {
    .about-up-item {
        margin-left: 0;
        width: 100%;
    }
}

.about-up-img {
    width: clamp(1px, 34vw, 600px);
    height: clamp(1px, 44vw, 800px);
}


@media screen and (max-width:800px) {
    .about-up-img {
        display: none;
    }
}

.about-up-img img {
    width: clamp(1px, 34vw, 600px);
    height: clamp(1px, 44vw, 800px);
    object-fit: cover;
}



.about-maintext {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    max-width: 900px;
}


@media screen and (max-width:1200px) {
    .about-maintext {
        margin-bottom: 30px;
    }
}

@media screen and (max-width:800px) {
    .about-maintext {
        margin-left: 0px;
        margin-bottom: 25px;
    }
}

.about-maintext h1 {
    color: #5e5f5f;
    font: 100 clamp(26px, 3vw, 54px)/1.3em 'Raleway', 'Noto Sans JP', sans-serif;
    margin: 0;
}


@media screen and (max-width:800px) {
    .about-maintext h1 {
        font: 100 clamp(22px, 6.3vw, 38px)/1.3em 'Raleway', 'Noto Sans JP', sans-serif;
    }
}




.about-subtext {
    width: 100%;
}



@media screen and (max-width:800px) {
    .about-subtext {
        margin: 0;
        margin-left: 0px;
        width: 100%;
    }
}

.about-subtext h2 {
    color: #5e5f5f;
    font: 200 24px/2em 'Noto Sans JP', sans-serif;
    margin: 0;
}

@media screen and (max-width:1650px) {
    .about-subtext h2 {
        font: 200 20px/1.7em 'Noto Sans JP', sans-serif;
    }
}

@media screen and (max-width:1200px) {
    .about-subtext h2 {
        font: 200 16px/1.7em 'Noto Sans JP', sans-serif;
    }
}

@media screen and (max-width:800px) {
    .about-subtext h2 {
        font: 200 14px/1.5em 'Noto Sans JP', sans-serif;
    }
}

.about-subtext span {
    color: #FF3E00;
    font-weight: 300;
}

.about-b {
    float: right;
    margin-right: 10px;
}

@media screen and (max-width:1200px) {
    .about-b {
        margin: 0;
    }
}

.about-b a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 40px;
    max-width: 300px;
    padding: 30px 40px 30px 60px;
    font-family: "Noto Sans Japanese";
    line-height: 1.8;
    text-decoration: none;
    color: #333;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}

@media screen and (max-width:1200px) {
    .about-b a {
        max-width: 300px;
        padding: 30px 30px 30px 60px;
        margin-top: 15px;
    }
}

@media screen and (max-width:800px) {
    .about-b a {
        max-width: 300px;
        padding: 30px 20px 30px 60px;
        margin-top: 15px;
    }
}


.about-b a:before,
.about-b a:after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
}

.about-b a:before {
    width: 0.5rem;
    height: 0.5rem;
    left: 4.3rem;
    border-top: solid 2px #333;
    border-right: solid 2px #333;
    z-index: 2;
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.3s;
}


@media screen and (max-width:1200px) {
    .about-b a:before {
        left: 2.3rem;
    }
}

.about-b a:after {
    left: 0;
    background: #ff40003b;
    z-index: 1;
    width: 9rem;
    height: 9rem;
    border-radius: 5rem;
    transform: translateY(-50%);
    transition: all 0.5s;
}

@media screen and (max-width:1200px) {
    .about-b a:after {
        width: 5rem;
        height: 5rem;
    }
}


.about-b a span {
    position: relative;
    transition: all 0.3s;
    z-index: 3;
    font: 300 30px/0.8em 'Noto Sans JP', sans-serif;
    color: #5e5e5e;
}


@media screen and (max-width:1200px) {
    .about-b a span {
        font: 300 20px/0.8em 'Noto Sans JP', sans-serif;
    }
}

.about-b a:hover span {
    color: #fff;
}

.about-b a:hover:before {
    left: 2.5rem;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
}

.about-b a:hover:after {
    right: 0;
    width: 100%;
    background: #FF3E00;
}


/* OUR SERVICE */
.ourservice {
    width: 100%;
    height: 100%;
    padding: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ourservice-container {
    width: 100%;
    background: #fff;
}



.ourservice-header {
    width: 100vw;
    height: 30vw;
    background: url(../img/ourworks/untitled.jpg) no-repeat border-box left top/cover fixed content-box;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


@media screen and (max-width:1200px) {
    .ourservice-header {
        width: 100vw;
        height: 70vw;
    }
}

@media screen and (max-width:800px) {
    .ourservice-header {
        width: 100vw;
        height: 70vw;
        background: #f9f9f9;
    }
}

.ourservice-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    transition: 0.2s;
}


@media screen and (max-width:800px) {
    .ourservice-header::after {
        display: none;
    }
}



.header-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.header-left h3 {
    display: flex;
    align-items: center;
    color: #fff;
    font: 300 clamp(26px, 6vw, 80px)/0.9em 'Raleway', 'Noto Sans JP', sans-serif;
    margin: 0;

}


@media screen and (max-width:800px) {
    .header-left h3 {
        font: 300 clamp(36px, 8vw, 80px)/0.9em 'Raleway', 'Noto Sans JP', sans-serif;
        color: #5E5F5F;
    }
}




.header-left p {
    font: 200 2vw/1em 'Noto Sans JP', sans-serif;
    margin: 1.4vw 0 0;
    color: #fff;
}


@media screen and (max-width:800px) {
    .header-left p {
        font: 200 clamp(14px, 2.4vw, 24px)/1em 'Noto Sans JP', sans-serif;
        margin: 2.8vw 0 0;
        color: #5E5F5F;
    }
}

.header-right {
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width:800px) {
    .header-right {
        display: none;
    }
}

.header-right h3 {
    font: 300 2vw/1.5em 'Raleway', 'Noto Sans JP', sans-serif;
    color: #5E5F5F;
}

@media screen and (max-width:800px) {
    .header-right h3 {
        font: 300 5.4vw/1.5em 'Raleway', 'Noto Sans JP', sans-serif;
    }
}

@media screen and (max-width:800px) {
    .header-right br {
        display: none;
    }
}



.ourservice-item-left-1 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 20vw;
    grid-column-gap: 3px;
    grid-row-gap: 3px;
    margin-top: 3px;
    cursor: pointer;
}

.ourservice-item-left-top1 {
    grid-area: 1 / 1 / 3 / 3;
}

@media screen and (max-width:800px) {
    .ourservice-item-left-1 {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        grid-column-gap: 2px;
        grid-row-gap: 2px;
        margin-top: 2px;
    }
}

@media screen and (max-width:550px) {
    .ourservice-item-left-1 {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 75vw 50vw 50vw 50vw;
    }
}

@media screen and (max-width:800px) {
    .ourservice-item-left-top1 {
        grid-area: auto;
    }
}

@media screen and (max-width:550px) {
    .ourservice-item-left-top1 {
        grid-area: 1 / 1 / 2 / 3;
    }
}

.ourservice-item-left-top1:hover .ourservice-item-more p,
.ourservice-item-left-top1:hover .ourservice-item-textarea-head h2,
.ourservice-item-left-top1:hover .ourservice-item-textarea-head p,
.ourservice-item-left-top1:hover .ourservice-item-maintext h3 {
    color: #fff;
}

.ourservice-item-left-top1:hover {
    background: #a4a4a4
}

.ourservice-item-left-top1:hover .ourservice-item-more p::before {
    right: -52px;
}

.ourservice-item-left-top1:hover .ourservice-item-more p::after {
    right: -50px;
}

.ourservice-item-left-top:hover .ourservice-item-more p::before {
    right: -52px;
}

.ourservice-item-left-top:hover .ourservice-item-more p::after {
    right: -50px;
}

.ourservice-item-left-top:hover .ourservice-item-more p,
.ourservice-item-left-top:hover .ourservice-item-textarea-head p,
.ourservice-item-left-top:hover .ourservice-item-textarea-head h2,
.ourservice-item-left-top:hover .ourservice-item-maintext h3 {
    color: #fff;
}

.ourservice-item-left-top:hover {
    background: #a4a4a4
}

.ourservice-item-left:last-child:hover .ourservice-item-left-top {
    background: #f9f9f9;
}

.ourservice-item-left:last-child:hover .ourservice-item-textarea-head p,
.ourservice-item-left:last-child:hover .ourservice-item-textarea-head h2,
.ourservice-item-left:last-child:hover .ourservice-item-maintext h3 {
    color: #5E5F5F;
}

.ourservice-item-left {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    grid-template-rows: 20vw;
    grid-column-gap: 3px;
    grid-row-gap: 3px;
    margin-top: 3px;
    cursor: pointer;
}

@media screen and (max-width:800px) {
    .ourservice-item-left {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        grid-column-gap: 2px;
        grid-row-gap: 2px;
        margin-top: 2px;
    }
}

@media screen and (max-width:550px) {
    .ourservice-item-left-top {
        grid-area: 1 / 1 / 2 / 3;
    }
}

@media screen and (max-width:550px) {
    .ourservice-item-left {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 70vw;
    }
}

@media screen and (max-width:800px) {
    .ourservice-item-left-img2 {
        display: none;
    }
}

@media screen and (max-width:550px) {
    .ourservice-item-left-img2 {
        display: block;
    }
}


.ourservice-item-left-top1 {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    padding: 8% 16% 8% 20%;
    transition: 0.2s;
}

.ourservice-item-left-top {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    padding: 8% 16% 8% 20%;
    transition: 0.2s;
}

.ourservice-item-textarea-head {
    display: flex;
    align-items: end;
    margin-bottom: 1.8vw;
}

@media screen and (max-width:800px) {
    .ourservice-item-textarea-head {
        flex-direction: column;
        align-items: start;
    }
}

.ourservice-item-textarea-head p {
    font: 300 clamp(16px, 2.5vw, 50px)/1.1em 'Raleway', 'Noto Sans JP', sans-serif;
    color: #5E5F5F;
    margin: 0;
}


@media screen and (max-width:800px) {
    .ourservice-item-textarea-head p {
        font: 300 5vw/1.1em 'Raleway', 'Noto Sans JP', sans-serif;
    }
}

@media screen and (max-width:550px) {
    .ourservice-item-textarea-head p {
        font: 300 8vw/1.1em 'Raleway', 'Noto Sans JP', sans-serif;
    }
}


.ourservice-item-textarea-head h2 {
    font: 300 clamp(8px, 1vw, 18px)/1.5em 'Raleway', 'Noto Sans JP', sans-serif;
    color: #5E5F5F;
    margin: 0;
    margin-left: 20px;
}

@media screen and (max-width:1400px) {
    .ourservice-item-textarea-head h2 {
        margin-left: 10px;
    }
}

@media screen and (max-width:800px) {
    .ourservice-item-textarea-head h2 {
        margin-left: 2px;
        font: 300 2vw/2.2em 'Raleway', 'Noto Sans JP', sans-serif;
    }
}

@media screen and (max-width:550px) {
    .ourservice-item-textarea-head h2 {
        margin-left: 2px;
        font: 300 2.6vw/2.2em 'Raleway', 'Noto Sans JP', sans-serif;
    }
}

.ourservice-item-maintext {
    margin-bottom: 1.6vw;
}

.ourservice-item-maintext h3 {
    font: 300 clamp(8px, 1vw, 18px)/1.7em 'Raleway', 'Noto Sans JP', sans-serif;
    color: #5E5F5F;
    margin: 0;
}


@media screen and (max-width:800px) {
    .ourservice-item-maintext h3 {
        font: 300 1.8vw/1.5em 'Raleway', 'Noto Sans JP', sans-serif;
        margin-left: 2px;
    }
}

@media screen and (max-width:550px) {
    .ourservice-item-maintext h3 {
        font: 300 3vw/1.5em 'Raleway', 'Noto Sans JP', sans-serif;
        margin-left: 2px;
    }
}



.ourservice-item-more {
    display: flex;
    align-items: center;
}

.ourservice-item-more p {
    font: 300 clamp(12px, 1.4vw, 27px)/1em 'Raleway', 'Noto Sans JP', sans-serif;
    color: #5E5F5F;
    margin: 0;
    position: relative;
    transition: 0.2s;
}

@media screen and (max-width:800px) {
    .ourservice-item-more p {
        font: 300 2.4vw/1.5em 'Raleway', 'Noto Sans JP', sans-serif;
        margin-left: 2px;
    }
}

@media screen and (max-width:550px) {
    .ourservice-item-more p {
        font: 300 4vw/1.5em 'Raleway', 'Noto Sans JP', sans-serif;
        margin-left: 2px;
    }
}


.ourservice-item-more p::before,
.ourservice-item-more p::after {
    content: '';
    position: absolute;
    right: -46px;
    transition: 0.3s;
    background-color: #FF3E00;
}

.ourservice-item-more p::after {
    right: -44px;
}


.ourservice-item-more p::before {
    top: calc(54% - 1px);
    transform: translateY(calc(-55% - 3px)) rotate(45deg);
    width: 15px;
    height: 3px;
    border-radius: 2px;
}

@media screen and (max-width:1200px) {
    .ourservice-item-more p::before {
        width: 6px;
        height: 1px;
        right: -27px;
    }
}

.ourservice-item-more p::after {
    top: 54%;
    transform: translateY(-50%);
    width: 28px;
    height: 3px;
    border-radius: 2px;
}

@media screen and (max-width:1200px) {
    .ourservice-item-more p::after {
        width: 16px;
        height: 1px;
        right: -26px;
        top: 44%;
    }
}


.ourservice-item-left-img {
    width: 100%;
    height: 100%;
}

.ourservice-item-left-img2 {
    width: 100%;
    height: 100%;
}

.ourservice-item-left-img4 {
    width: 100%;
    height: 100%;
    display: none;
}

@media screen and (max-width:550px) {
    .ourservice-item-left-img4 {
        display: block;
    }
}

.ourservice-item-left-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ourservice-item-left-img2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ourservice-item-left-img4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ourservice-item-left-img-a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    object-fit: cover;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}


.ourservice-item-left-img-a img {
    width: 100%;
    height: 80%;
    object-fit: cover;
}

.ourservice-item-left-img-a:last-child {
    display: none;
}

@media screen and (max-width:550px) {
    .ourservice-item-left-img-a:last-child {
        display: block;
    }
}

@media screen and (max-width:550px) {
    .ourservice-item-left-img-a:last-child a {
        display: block;
    }
}

.oursurvice-other-text {
    background: #f9f9f9;
    height: 20%;
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    margin-top: 3px;
}

.oursurvice-other-text h3 {
    color: #5E5F5F;
    font: 300 1vw/1.2em 'Noto Sans JP', sans-serif;
    margin: 0;
    margin-bottom: 2px;
    transition: 0.2s;
}


@media screen and (max-width:800px) {
    .oursurvice-other-text h3 {
        font: 300 2.6vw/1.1em 'Noto Sans JP', sans-serif;
    }
}



p.ij {
    margin-left: -1vw;
}

@media screen and (max-width:800px) {
    p.ij {
        margin-left: 2px;
    }
}

.ourservice-item-left-img-a:hover .oursurvice-other-text h3 {
    color: #FF3E00;
}




/* strongpoint */
.strongpoint {
    width: 100%;
    height: 100%;
    padding: 0;
    background: #f9f9f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3px;
}

@media screen and (max-width:1200px) {
    .strongpoint {
        padding-top: 0;
    }
}

.strongpoint-container {
    width: 100%;
    max-width: 1100px;
    padding: 0 0 150px;
    z-index: 3;
    margin-top: -100px;
}


@media screen and (max-width:1200px) {
    .strongpoint-container {
        max-width: 80vw;
    }
}

@media screen and (max-width:600px) {
    .strongpoint-container {
        max-width: 85vw;
        padding: 0 0 60px;
        margin-top: 0;
    }
}

.strongpoint-header {
    width: 100%;
    height: 500px;
    background: url(../img/strongpoint/bg_01_02.jpg) no-repeat border-box left top/cover fixed content-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}


@media screen and (max-width:1200px) {
    .strongpoint-header {
        width: 100vw;
        height: 70vw;
    }
}

@media screen and (max-width:600px) {
    .strongpoint-header {
        width: 100vw;
        height: 70vw;
        background: #f9f9f9;
    }
}

.strongpoint-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    transition: 0.2s;
}

@media screen and (max-width:600px) {
    .strongpoint-header::after {
        display: none;
    }
}



.strongpoint-header h3 {
    display: flex;
    align-items: center;
    color: #fff;
    font: 300 clamp(26px, 6vw, 80px)/0.9em 'Raleway', 'Noto Sans JP', sans-serif;
    margin: 0;
    z-index: 2;
}



@media screen and (max-width:600px) {
    .strongpoint-header h3 {
        font: 300 clamp(42px, 8vw, 80px)/0.9em 'Raleway', 'Noto Sans JP', sans-serif;
        color: #5E5F5F;
    }
}


.strongpoint-header p {
    font: 200 2vw/1em 'Noto Sans JP', sans-serif;
    margin: 1.4vw 0 90px;
    color: #fff;
    z-index: 2;
}


@media screen and (max-width:600px) {
    .strongpoint-header p {
        font: 200 clamp(14px, 2.4vw, 24px)/1em 'Noto Sans JP', sans-serif;
        margin: 2.8vw 0 0;
        color: #5E5F5F
    }
}



.strongpoint-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

@media screen and (max-width:1200px) {
    .strongpoint-item {
        margin-bottom: 30px;
        position: relative;
    }
}

@media screen and (max-width:600px) {
    .strongpoint-item {
        flex-direction: column;
        margin-bottom: 14vw;
    }
}

.strongpoint-left {
    padding: 30px 80px;
    background: #fff;
    height: 400px;
}

@media screen and (max-width:1200px) {
    .strongpoint-left {
        padding: 30px 10vw 30px 5vw;
        margin-right: 25vw;
        height: 100%;
    }
}

@media screen and (max-width:600px) {
    .strongpoint-left {
        padding: 15px 8vw;
        margin-right: 0;
        order: 2;
        margin-top: -30px;
    }
}

.strongpoint-left h3 {
    font: 300 36px/1.3em 'Raleway', 'Noto Sans JP', sans-serif;
    color: #5e5f5f;
}


@media screen and (max-width:1200px) {
    .strongpoint-left h3 {
        font: 300 2.8vw/1.4em 'Raleway', 'Noto Sans JP', sans-serif;
    }
}

@media screen and (max-width:600px) {
    .strongpoint-left h3 {
        font: 300 7vw/1.4em 'Raleway', 'Noto Sans JP', sans-serif;
    }
}

@media screen and (max-width:600px) {
    .strongpoint-left br {
        display: none;
    }
}

.strongpoint-left p {
    font: 300 18px/1.7em 'Raleway', 'Noto Sans JP', sans-serif;
    color: #5e5f5f;
}

@media screen and (max-width:1200px) {
    .strongpoint-left p {
        font: 300 1.4vw/1.7em 'Raleway', 'Noto Sans JP', sans-serif;
    }
}

@media screen and (max-width:600px) {
    .strongpoint-left p {
        font: 300 4vw/1.7em 'Raleway', 'Noto Sans JP', sans-serif;
        margin-bottom: 8vw;
    }
}

.strongpoint-right {
    width: 400px;
    height: 400px;
}

@media screen and (max-width:1200px) {
    .strongpoint-right {
        width: 30vw;
        height: 30vw;
        position: absolute;
        left: 50vw;
    }
}

@media screen and (max-width:600px) {
    .strongpoint-right {
        width: 100vw;
        height: 80vw;
        position: static;
        order: 1;
    }
}

.strongpoint-right img {
    width: 400px;
    height: 400px;
    object-fit: cover;
}

@media screen and (max-width:1200px) {
    .strongpoint-right img {
        width: 30vw;
        height: 30vw;
    }
}

@media screen and (max-width:600px) {
    .strongpoint-right img {
        width: 100vw;
        height: 80vw;
    }
}

/* ceo */
.ceo {
    width: 100%;
    height: 100%;
    background: #fff;
    margin: 3px 0;
    z-index: 1;
}

@media screen and (max-width:800px) {
    .ceo {
        display: none;
    }
}

.ceo-container {
    display: grid;
    grid-template-columns: 2fr 3fr;
    grid-template-rows: 1100px;
    grid-column-gap: 3px;
    grid-row-gap: 3px;
    z-index: 1;
}


@media screen and (max-width:1200px) {
    .ceo-container {
        grid-template-rows: 800px;
    }
}

@media screen and (max-width:800px) {
    .ceo-container {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        grid-column-gap: 3px;
        grid-row-gap: 3px;
        position: relative;
    }
}


.ceo-img {
    background: url(../img/ceo/nonomiya.jpg);
    background-attachment: fixed;
    background-position: center left;
    background-size: cover;
    background-repeat: no-repeat;
}

@media screen and (max-width:1200px) {
    .ceo-img {
        background: url(../img/ceo/nonomiya2.jpg);
        background-attachment: fixed;
        background-position: center left;
        background-size: cover;
        background-repeat: no-repeat;
    }
}

@media screen and (max-width:800px) {
    .ceo-img {
        display: none;
    }
}

.ceo-textarea {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    background: #f9f9f9;
    padding: 7vw;
    z-index: 1;
}


@media screen and (max-width:800px) {
    .ceo-textarea {
        background: url(../img/ceo/nonomiya3.jpg);
        background-position: center left;
        background-size: cover;
        background-repeat: no-repeat;
        padding: 20vw 10vw;
        position: relative;
    }
}


@media screen and (max-width:800px) {
    .ceo-textarea::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        transition: 0.2s;
        z-index: 1;
    }
}

.ceo-text {
    z-index: 100;
}

.ceo-title h2 {
    font: 400 clamp(40px, 6.4vw, 120px)/1em 'Raleway', 'Noto Sans JP', sans-serif;
    color: #FF3E00;
    margin: 0;
    letter-spacing: 0.1rem;
}


@media screen and (max-width:800px) {
    .ceo-title h2 {
        font: 500 clamp(42px, 11vw, 120px)/1em 'Raleway', 'Noto Sans JP', sans-serif;
        color: #fff;
        margin: 0;
        letter-spacing: 0.1rem;
    }
}

.ceo-maintext {
    margin: 2vw 0 2vw 0.2vw;
    z-index: 2;
}

.ceo-maintext h3 {
    font: 300 clamp(18px, 2vw, 34px)/1em 'Raleway', 'Noto Sans JP', sans-serif;
    color: #5E5F5F;
    margin: 0;
    z-index: 2;
}


@media screen and (max-width:800px) {
    .ceo-maintext h3 {
        font: 400 clamp(15px, 4vw, 26px)/1.4em 'Raleway', 'Noto Sans JP', sans-serif;
        color: #fff;
        margin: 0;
        margin-bottom: 4vw;
    }
}


.ceo-subtext {
    margin-left: 0.2vw;
    z-index: 2;
}

.ceo-subtext p {
    font: 300 clamp(13px, 1vw, 19px)/1.8em 'Noto Sans JP', sans-serif;
    color: #5E5F5F;
    margin: 0;
}


@media screen and (max-width:800px) {
    .ceo-subtext p {
        font: 300 clamp(12px, 2.2vw, 30px)/1.4em 'Raleway', 'Noto Sans JP', sans-serif;
        color: #fff;
        margin: 0;
    }
}


.ceo-subtext span {
    font: 300 clamp(16px, 1.2vw, 22px)/2.2em 'Noto Sans JP', sans-serif;
    color: #FF3E00;
}

@media screen and (max-width:800px) {
    .ceo-subtext span {
        font: 400 clamp(14px, 2.6vw, 36px)/3em 'Raleway', 'Noto Sans JP', sans-serif;
        color: #fff;
        margin: 0;
    }
}

.ceo-CEO {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-top: 2.5vw;
    margin-left: 0.2vw;
    z-index: 2;
}

.ceo-CEO h3 {
    font: 300 clamp(18px, 1.8vw, 30px)/1.8em 'Noto Sans JP', sans-serif;
    color: #5E5F5F;
    margin: 0;
}

@media screen and (max-width:800px) {
    .ceo-CEO h3 {
        font: 400 clamp(18px, 3.6vw, 40px)/2.6em 'Raleway', 'Noto Sans JP', sans-serif;
        color: #fff;
        margin: 0;
    }
}

/* ブログ */
.blog {
    width: 100%;
    height: 100%;
    padding: 0 0 150px;
    background: #f9f9f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3px;
}


@media screen and (max-width:800px) {
    .blog {
        padding: 100px 0;
        background: #fff;
    }
}

.blog-header {
    width: 100%;
    height: 500px;
    background: url(../img/blog/blogkizi.jpg) no-repeat border-box left top/cover fixed content-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}


@media screen and (max-width:1200px) {
    .blog-header {
        width: 100vw;
        height: 70vw;
    }
}

@media screen and (max-width:800px) {
    .blog-header {
        background: #fff;
        height: 100%;
    }
}

.blog-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.2s;
}



.blog-header h3 {
    display: flex;
    align-items: center;
    color: #fff;
    font: 300 clamp(26px, 6vw, 80px)/0.9em 'Raleway', 'Noto Sans JP', sans-serif;
    margin: 0;
    z-index: 2;
}

@media screen and (max-width:800px) {
    .blog-header h3 {
        font: 300 clamp(42px, 8vw, 80px)/0.9em 'Raleway', 'Noto Sans JP', sans-serif;
        color: #5E5F5F;
    }
}

.blog-header p {
    font: 200 2vw/1em 'Raleway', 'Noto Sans JP', sans-serif;
    margin: 1.4vw 0 80px;
    color: #fff;
    z-index: 2;
}

@media screen and (max-width:800px) {
    .blog-header p {
        font: 200 clamp(14px, 2.4vw, 24px)/1em 'Raleway', 'Noto Sans JP', sans-serif;
        margin: 2.8vw 0 0;
        color: #5E5F5F;
    }
}


.blog-container {
    width: 100%;
    max-width: 1100px;
    padding: 50px 50px 20px;
    background: #fff;
    margin-top: -100px;
    z-index: 2;
}

@media screen and (max-width:1200px) {
    .blog-container {
        max-width: 90vw;
        padding: 30px;
    }
}

@media screen and (max-width:800px) {
    .blog-container {
        max-width: 100vw;
        margin-top: 0;
    }
}

.parent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 60px;
    grid-row-gap: 30px;
}


@media screen and (max-width:1200px) {
    .parent {
        grid-column-gap: 30px;
        grid-row-gap: 20px;
    }
}

@media screen and (max-width:800px) {
    .parent {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

.div1 {
    grid-area: 1 / 1 / 4 / 2;
    cursor: pointer;
    transition: 0.2s;
    background: #fff;
}

@media screen and (max-width:800px) {
    .div1 {
        margin-bottom: 6vw;
    }
}

.div2 {
    grid-area: 1 / 2 / 2 / 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: 0.2s;
    background: #fff;
}

.div3 {
    grid-area: 2 / 2 / 3 / 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: 0.2s;
    background: #fff;
}

.div4 {
    grid-area: 3 / 2 / 4 / 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: 0.2s;
    background: #fff;
}

.blog-textarea-1 {
    padding: 0 2px;
}

.div1 img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    margin-bottom: clamp(10px, 2vw, 40px);
}

@media screen and (max-width:1200px) {
    .div1 img {
        width: 100%;
        height: 41vw;
    }
}


@media screen and (max-width:800px) {
    .div1 img {
        width: 100%;
        height: 100%;
    }
}

.div2 img,
.div3 img,
.div4 img {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

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

    .div2 img,
    .div3 img,
    .div4 img {
        width: 17vw;
        height: 17vw;
    }
}

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

    .div2 img,
    .div3 img,
    .div4 img {
        width: 20vw;
        height: 20vw;
    }
}

.blog-textarea {
    margin-left: 30px;
}


@media screen and (max-width:1200px) {
    .blog-textarea {
        margin-left: 2.4vw;
    }
}

@media screen and (max-width:800px) {
    .blog-textarea {
        margin-left: 3vw;
    }
}

.blog-date {
    display: flex;
    align-items: center;
    margin: 0 0 20px;
}

@media screen and (max-width:1200px) {
    .blog-date {
        margin-bottom: 1.5vw;
    }
}


.blog-date-1 {
    display: flex;
    align-items: center;
    margin: 30px 0 10px 3px;
}

@media screen and (max-width:800px) {
    .blog-date-1 {
        margin: 7vw 0 2vw 2px;
    }
}


.date {
    color: #929292;
    font: 300 14px/1em 'Noto Sans JP', sans-serif;
    padding-right: 15px;
    margin: 0;
}


@media screen and (max-width:1200px) {
    .date {
        font: 300 1.3vw/1em 'Noto Sans JP', sans-serif;
    }
}

@media screen and (max-width:800px) {
    .date {
        font: 300 2.4vw/1em 'Noto Sans JP', sans-serif;
    }
}

.blog-category {
    display: none;
}


@media screen and (max-width:1200px) {
    .blog-category {
        font: 300 1.3vw/1em 'Noto Sans JP', sans-serif;
    }
}

@media screen and (max-width:800px) {
    .blog-category {
        font: 300 2.4vw/1em 'Noto Sans JP', sans-serif;
    }
}


.blog-title-1 h3 {
    margin: 0;
    color: #5E5F5F;
    font: 300 22px/1.4em 'Noto Sans JP', sans-serif;
}


@media screen and (max-width:1200px) {
    .blog-title-1 h3 {
        font: 300 2.2vw/1.4em 'Noto Sans JP', sans-serif;
    }
}

@media screen and (max-width:800px) {
    .blog-title-1 h3 {
        font: 300 4vw/1.4em 'Noto Sans JP', sans-serif;
    }
}

.blog-title h3 {
    margin: 0;
    color: #5E5F5F;
    font: 300 18px/1.4em 'Noto Sans JP', sans-serif;
}

@media screen and (max-width:1200px) {
    .blog-title h3 {
        font: 300 1.6vw/1.4em 'Noto Sans JP', sans-serif;
    }
}

@media screen and (max-width:800px) {
    .blog-title h3 {
        font: 300 3vw/1.4em 'Noto Sans JP', sans-serif;
    }
}

.blog-text {
    margin-left: 3px;
}

.blog-text p {
    margin: 10px 0 0;
    color: #5E5F5F;
    font: 300 15px/1.4em 'Raleway', 'Noto Sans JP', sans-serif;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    /* ブラウザがサポートしていない場合のフェールセーフ */
    max-height: 2.8em;
}

@media screen and (max-width:1200px) {
    .blog-text p {
        font: 300 1.1vw/1.4em 'Noto Sans JP', sans-serif;
        margin-top: 15px;
    }
}

@media screen and (max-width:800px) {
    .blog-text p {
        font: 300 2.6vw/1.4em 'Noto Sans JP', sans-serif;
        margin-top: 2vw;
    }
}

.div1:hover,
.div2:hover,
.div3:hover,
.div4:hover {
    scale: 1.05;
}


.blog-all {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    margin-bottom: 60px;
}

@media screen and (max-width:1200px) {
    .blog-all {
        margin-top: clamp(40px, 4vw, 80px);
        margin-bottom: 3.6vw;
    }
}

.blog-btn {
    font: 300 18px/1.4em 'Noto Sans JP', sans-serif;
    color: #FF3E00;
    background: #fff;
    padding: 1.9rem 7rem 2.1rem 7rem;
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    border-radius: 40px;
    border: 1px solid #FF3E00;
}


@media screen and (max-width:1200px) {
    .blog-btn {
        font: 300 clamp(12px, 1.5vw, 40px)/1.4em 'Noto Sans JP', sans-serif;
        padding: 1.5rem 5rem 1.7rem 5rem;
    }
}

.blog-btn:hover {
    color: #fff;
    background: #FF3E00;
    border: 1px solid #FF3E00;
}

.blog-btn::after {
    content: "";
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #FF3E00;
    border-right: 2px solid #FF3E00;
    transform: rotate(45deg) translateY(-50%);
    top: 46%;
    right: 12%;
}

.blog-btn:hover::after {
    border-color: #fff;
}



/* カテゴリー */
.category {
    width: 100%;
    height: 100%;
    padding: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.category-container {
    width: 100%;
}

.category-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 35vw 35vw;
    grid-column-gap: 3px;
    grid-row-gap: 3px;
    z-index: -1;
}

@media screen and (max-width:600px) {
    .category-main {
        grid-template-columns: 1fr;
        grid-template-rows: 60vw 60vw 60vw 60vw;
        grid-column-gap: 2px;
        grid-row-gap: 2px;
    }
}


.category-item {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #f9f9f9;
    z-index: 0;
    transition: 0.3s;
}

.category-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f9f9f9;
    transition: 0.2s;
    z-index: 2;
}


@media screen and (max-width:600px) {
    .category-item::after {
        background: rgba(0, 0, 0, 0.4);
    }
}

.category-item:hover::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: 0.2s;
    z-index: 2;
}

.category-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: 0.3s;
}


.category-item h3 {
    font: 300 clamp(16px, 3vw, 44px)/0.2em 'Raleway', 'Noto Sans JP', sans-serif;
    color: #5E5F5F;
    z-index: 3;
    transition: 0.3s;
}


@media screen and (max-width:600px) {
    .category-item h3 {
        font: 400 clamp(24px, 3vw, 44px)/0.2em 'Raleway', 'Noto Sans JP', sans-serif;
        color: #fff;
    }
}

.category-item:hover h3 {
    color: #fff;
    font: 400 clamp(16px, 3vw, 44px)/0.2em 'Raleway', 'Noto Sans JP', sans-serif;
    scale: 1.2;
}

.btn-category {
    color: #5E5F5F;
    border: 1px solid #5E5F5F;
    background: none;
    font: 300 clamp(16px, 0.8vw, 20px)/1.1em 'Raleway', 'Noto Sans JP', sans-serif;
    border-radius: 0;
    z-index: 3;
}


@media screen and (max-width:600px) {
    .btn-category {
        border: 1px solid #5E5F5F;
        background: #fff;
        font: 400 clamp(12px, 0.8vw, 20px)/1.1em 'Raleway', 'Noto Sans JP', sans-serif;
        border-radius: 40px;
        z-index: 3;
        padding: 0.8em 2em 0.9em 2em;
        margin: 1vw;
    }
}

.category-item:hover .btn-category {
    border-radius: 30px;
    background: #fff;
    color: #5E5F5F;
    font: 500 clamp(16px, 0.8vw, 20px)/1.1em 'Raleway', 'Noto Sans JP', sans-serif;
    border: 1px solid #fff;
    scale: 1.2;
}

.btn-category::after {
    content: "";
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg) translateY(-50%);
    top: 46%;
    right: 12%;
}

.btn-category::after {
    border-color: #fff;
}

/* ニュース */
.news {
    width: 100%;
    height: 100%;
    padding: 0 0 150px;
    background: #f9f9f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3px;
}

@media screen and (max-width:800px) {
    .news {
        padding: 100px 0;
        background: #fff;
    }
}

.news-header {
    width: 100%;
    height: 500px;
    background: url(../img/news/1_machine‗10.jpg) no-repeat border-box center/cover fixed content-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

@media screen and (max-width:1200px) {
    .news-header {
        width: 100vw;
        height: 70vw;
    }
}

@media screen and (max-width:800px) {
    .news-header {
        background: #fff;
        height: 100%;
    }
}

.news-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    transition: 0.2s;
}


@media screen and (max-width:800px) {
    .news-header::after {
        display: none;
    }
}

.news-header h3 {
    display: flex;
    align-items: center;
    color: #fff;
    font: 300 clamp(26px, 6vw, 80px)/0.9em 'Raleway', 'Noto Sans JP', sans-serif;
    margin: 0;
    z-index: 2;
}

@media screen and (max-width:800px) {
    .news-header h3 {
        font: 300 clamp(42px, 8vw, 80px)/0.9em 'Raleway', 'Noto Sans JP', sans-serif;
        color: #5E5F5F;
    }
}

.news-header p {
    font: 200 2vw/1em 'Raleway', 'Noto Sans JP', sans-serif;
    margin: 1.4vw 0 80px;
    color: #fff;
    z-index: 2;
}

@media screen and (max-width:800px) {
    .news-header p {
        font: 200 clamp(14px, 2.4vw, 24px)/1em 'Raleway', 'Noto Sans JP', sans-serif;
        margin: 2.8vw 0 0;
        color: #5E5F5F;
    }
}

.news-container {
    width: 100%;
    max-width: 1100px;
    padding: 50px 50px 20px;
    background: #fff;
    margin-top: -100px;
    z-index: 2;
}

@media screen and (max-width:1200px) {
    .news-container {
        max-width: 90vw;
        padding: 30px;
    }
}

@media screen and (max-width:800px) {
    .news-container {
        max-width: 100vw;
        margin-top: 0;
    }
}

.news-item {
    display: grid;
    display: grid;
    grid-template-columns: 1fr 1fr 2fr 1fr;
    grid-template-rows: 1fr;
    border-bottom: 1px solid #c4c4c4;
    padding: 3vw 3vw;
    align-items: center;
    transition: 0.3s;
}

@media screen and (max-width:800px) {
    .news-item {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 0px;
    }
}

@media screen and (max-width:800px) {
    .news-date {
        grid-area: 1 / 1 / 2 / 6;
    }

    .news-title {
        grid-area: 2 / 1 / 3 / 6;
    }
}

.news-item:hover {
    scale: 1.05;
}

.news-item:hover h3 {
    color: #FF3E00;
}



.news-date {
    font: 300 clamp(14px, 1.2vw, 18px)/2em 'Noto Sans JP', sans-serif;
    color: #5E5F5F;
    margin: 0;
    padding: 0 3vw 0 0;
}

.news-category {
    font: 300 clamp(14px, 1.2vw, 18px)/2em 'Noto Sans JP', sans-serif;
    color: #5E5F5F;
    margin: 0;
    padding: 0 3vw 0 0;
}

@media screen and (max-width:800px) {
    .news-category {
        display: none;
    }
}


.news-title {
    font: 400 clamp(14px, 1.2vw, 18px)/2em 'Noto Sans JP', sans-serif;
    color: #5E5F5F;
    margin: 0;
    padding: 0 3vw 0 0;
    transition: 0.3s;
}

.news-more {
    font: 300 clamp(14px, 1.2vw, 18px)/2em 'Noto Sans JP', sans-serif;
    color: #5E5F5F;
    margin: 0;
    padding: 0 0 0 3vw;
    position: relative;
}

@media screen and (max-width:800px) {
    .news-more {
        display: none;
    }
}


.news-more::before,
.news-more::after {
    content: '';
    position: absolute;
    right: -15px;
    transition: 0.3s;
    background-color: #FF3E00;
}

.news-more::after {
    right: -14px;
}


.news-more::before {
    top: calc(54% - 1px);
    transform: translateY(calc(-55% - 3px)) rotate(45deg);
    width: 7px;
    height: 1px;
    border-radius: 2px;
}

@media screen and (max-width:1200px) {
    .news-more::before {
        width: 6px;
        height: 1px;
        right: -27px;
    }
}

.news-more::after {
    top: 47%;
    transform: translateY(-50%);
    width: 20px;
    height: 1px;
    border-radius: 2px;
}

@media screen and (max-width:1200px) {
    .news-more::after {
        width: 16px;
        height: 1px;
        right: -26px;
        top: 44%;
    }
}



/* CONTACT US */
.contactus {
    width: 100%;
    height: 100%;
    background: url(../img/ourworks/untitled.jpg) no-repeat border-box left top/cover fixed content-box;
    position: relative;
    z-index: 0;
}


@media screen and (max-width:800px) {
    .contactus {
        padding: 100px 0;
        background: url(../img/ourworks/untitled.jpg) no-repeat center/cover;
    }
}

@media screen and (max-width:550px) {
    .contactus {
        background: #fff;
    }
}

.contactus::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    transition: 0.2s;
    z-index: 0;
}


@media screen and (max-width:550px) {
    .contactus::after {
        display: none;
    }
}

.contactus-container {
    width: 100%;
    padding: 120px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
}


@media screen and (max-width:1200px) {
    .contactus-container {
        padding: 10vw 5vw;
    }
}

@media screen and (max-width:800px) {
    .contactus-container {
        max-width: 100vw;
        margin-top: 0;
    }
}

@media screen and (max-width:550px) {
    .contactus-container {
        padding: 0;
    }
}

.contactus-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
}

.contactus-header h3 {
    display: flex;
    align-items: center;
    color: #fff;
    font: 300 clamp(26px, 6vw, 80px)/0.9em 'Raleway', 'Noto Sans JP', sans-serif;
    margin: 0;
}



@media screen and (max-width:800px) {
    .contactus-header h3 {
        font: 300 clamp(36px, 8vw, 80px)/0.9em 'Raleway', 'Noto Sans JP', sans-serif;
        color: #fff;
    }
}

@media screen and (max-width:550px) {
    .contactus-header h3 {
        font: 300 clamp(36px, 8vw, 80px)/0.9em 'Raleway', s'Noto Sans JP', sans-serif;
        color: #5E5F5F;
    }
}


.contactus-header p {
    font: 200 2vw/1em 'Raleway', 'Noto Sans JP', sans-serif;
    margin: 1.4vw 0 0;
    color: #fff;
}


@media screen and (max-width:800px) {
    .contactus-header p {
        font: 200 clamp(14px, 2.4vw, 24px)/1em 'Raleway', 'Noto Sans JP', sans-serif;
        margin: 2.8vw 0 0;
        color: #fff;
    }
}

@media screen and (max-width:550px) {
    .contactus-header p {
        font: 200 clamp(14px, 2.4vw, 24px)/1em 'Raleway', 'Noto Sans JP', sans-serif;
        margin: 2.8vw 0 0;
        color: #5E5F5F;
    }
}

.contactus-main {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 2fr 4fr;
    grid-column-gap: 3px;
    grid-row-gap: 3px;
    width: 100%;
    height: 100%;
    background: #fff;
    margin-top: 80px;
    max-width: 1100px;
    z-index: 1;
}


@media screen and (max-width:550px) {
    .contactus-main {
        margin-top: 0;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 3fr;
        grid-column-gap: 2px;
        grid-row-gap: 2px;
    }
}

.contactus-top {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
    background: #f9f9f9;
}

@media screen and (max-width:550px) {
    .contactus-top {
       padding: 4vw 0 6vw;
       background: #fff;
    }
}

.contactus-top h3 {
    font: 300 24px/1.6em 'Raleway', 'Noto Sans JP', sans-serif;
    color: #5E5F5F;
    z-index: 1;
    margin: 0;
}

@media screen and (max-width:1200px) {
    .contactus-top h3 {
        font: 300 clamp(12px, 2vw, 40px)/1.6em 'Raleway', 'Noto Sans JP', sans-serif;
    }
}

.contactus-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 3px;
    grid-row-gap: 3px;
    z-index: 1;
}


@media screen and (max-width:550px) {
    .contactus-box {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        grid-column-gap: 2px;
        grid-row-gap: 2px;
    }
}

.contactus-left {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    grid-column-gap: 3px;
    grid-row-gap: 3px;
    z-index: 1;
}


@media screen and (max-width:550px) {
    .contactus-left {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
        grid-column-gap: 2px;
        grid-row-gap: 2px;
    }
}



.contactus-left-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 60px 0 90px;
    background: #f9f9f9;
    z-index: 1;
    transition: 0.3s;
    transition: background-size 0.5s ease, background-color 0.3s ease;
    /* 背景のサイズと色のトランジション */
    background-size: 100%;
    /* デフォルトの背景サイズ */
    position: relative;
    z-index: 1;
}

.contactus-left-box h3 {
    font: 300 26px/3em 'Raleway', 'Noto Sans JP', sans-serif;
    color: #5E5F5F;
    margin: 0;
    z-index: 3;
    display: inline-block;
    transition: 0.3s;
}


@media screen and (max-width:1200px) {
    .contactus-left-box h3 {
        font: 300 clamp(16px, 2vw, 60px)/3em 'Raleway', 'Noto Sans JP', sans-serif;
    }
}

.contactus-left-box p {
    font: 300 40px/1.6em 'Noto Sans JP', sans-serif;
    color: #5E5F5F;
    letter-spacing: 0.1rem;
    cursor: pointer;
    z-index: 3;
    margin: 0;
    display: inline-block;
    transition: 0.3s;
}

@media screen and (max-width:1200px) {
    .contactus-left-box p {
        font: 300 clamp(22px, 3vw, 80px)/1.6em 'Noto Sans JP', sans-serif;
    }
}

.contactus-right {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #f9f9f9;
    transition: 0.3s;
    position: relative;
}

.contactus-right h3 {
    font: 300 20px/1.6em 'Noto Sans JP', sans-serif;
    color: #5E5F5F;
    letter-spacing: 0.1rem;
    z-index: 1;
    border: 1px solid #5E5F5F;
    padding: 1.5rem 3rem 1.7rem 3rem;
    transition: 0.3s;
}

@media screen and (max-width:1200px) {
    .contactus-right h3 {
        font: 300 clamp(14px, 1.8vw, 60px)/1.6em 'Noto Sans JP', sans-serif;
    }
}

.contactus-left-box:first-of-type:hover {
    background: url(../img/contactus/fact.jpg) no-repeat center / 110%;
    /* 背景サイズを拡大してトランジション */
    z-index: 2;
}

.contactus-left-box:last-of-type:hover {
    background: url(../img/contactus/_DSC1520.JPG) no-repeat center / 110%;
    /* 背景サイズを拡大してトランジション */
    z-index: 2;
}

.contactus-left-box:hover::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    transition: 0.2s;
    z-index: -200;
}

.contactus-left-box:hover h3 {
    color: #fff;
    font-weight: 500;
    z-index: 100;
    scale: 1.2;
}

.contactus-left-box:hover p {
    color: #fff;
    font-weight: 500;
    z-index: 100;
    scale: 1.2;
}

.contactus-right:hover {
    background: url(../img/contactus/メール.jpg) no-repeat center / cover;
    /* 背景サイズを拡大してトランジション */
    z-index: 2;
}

.contactus-right:hover h3 {
    color: #fff;
    font-weight: 600;
    background: #FF3E00;
    scale: 1.2;
    border: 1px solid #FF3E00;
}

.contactus-right::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    transition: 0.2s;
    z-index: -200;
}





/* フッター */
.footer {
    background: #fff;
    width: 100%;
    z-index: 1;
    padding: 80px 80px 80px 60px;
}

@media screen and (max-width:1200px) {
    .footer {
        /* display: none; */
        padding: 60px 35px;
        display: flex;
        align-items: center;
    }
}

@media screen and (max-width:800px) {
    .footer {
        padding: 0 20px;
        margin-bottom: 0;
    }
}

.footer-container {
    max-width: 1600px;
    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
    margin: 0 auto;
}

@media screen and (max-width:1200px) {
    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: start;
    }
}

@media screen and (max-width:800px) {
    .footer-container {
        max-width: 640px;
    }
}

.footer-left {
    margin-right: 100px;
    width: 100%;
}

@media screen and (max-width:1200px) {
    .footer-left {
        display: flex;
        flex-direction: column;
        align-items: start;
        margin: 0 auto;
    }
}

.footer-title {
    margin-bottom: 500px;
}

@media screen and (max-width:1200px) {
    .footer-title {
        margin-bottom: 50px;
    }
}

.title-txt {
    margin-left: 4px;
}

.title-txt p {
    margin: 0;
    font: 400 clamp(14px, 1.3vw, 19px)/3em 'Raleway', 'Noto Sans JP', sans-serif;
    color: #5e5e5e;
}

@media screen and (max-width:1200px) {
    .title-txt p {
        font: 400 clamp(20px, 1.3vw, 20px)/3em 'Raleway', 'Noto Sans JP', sans-serif;
    }
}

@media screen and (max-width:800px) {
    .title-txt p {
        font: 400 clamp(14px, 1.3vw, 30px)/1.4em 'Raleway', 'Noto Sans JP', sans-serif;
    }
}

.title-bij h1 {
    margin: 0;
    font: 500 clamp(30px, 4.2vw, 70px)/1em 'Raleway', 'Noto Sans JP', sans-serif;
    color: #FF3E00;
}

@media screen and (max-width:1200px) {
    .title-bij h1 {
        font: 500 clamp(50px, 4.6vw, 80px)/1.2em 'Raleway', 'Noto Sans JP', sans-serif;
    }
}

@media screen and (max-width:800px) {
    .title-bij h1 {
        font: 500 clamp(40px, 3.2vw, 80px)/1.2em 'Raleway', 'Noto Sans JP', sans-serif;
    }
}

.footer-companyname {
    display: flex;
    align-items: end;
}

@media screen and (max-width:1200px) {
    .footer-companyname {
        display: none;
    }
}

.footer-companyname img {
    width: 150px;
    margin-right: 18px;
}

.footer-companyname p {
    font: 400 16px/2em 'Noto Sans JP', 'Noto Sans JP', sans-serif;
    color: #5e5e5e;
    margin: 0;
}



/* フッター右 */
.footer-right {
    max-width: 100%;
}

.footer-top {
    display: flex;
    align-items: start;
    justify-content: start;
    padding-bottom: 30px;
    margin-left: 5px;
}

@media screen and (max-width:800px) {
    .footer-top {
        padding-bottom: 20px;
    }
}


.top-left {
    display: flex;
    flex-direction: column;
    margin-right: clamp(50px, 9vw, 200px);
}

@media screen and (max-width:1200px) {
    .top-left {
        margin-right: clamp(110px, 11vw, 200px);
    }
}

@media screen and (max-width:800px) {
    .top-left {
        margin-right: clamp(30px, 11vw, 110px);
    }
}

.top-left a {
    font: 400 20px/2em 'Noto Sans JP', sans-serif;
    color: #5e5e5e;
    margin-bottom: 16px;
}

@media screen and (max-width:1200px) {
    .top-left a {
        font: 400 16px/2em 'Noto Sans JP', sans-serif;
        color: #5e5e5e;
        margin-bottom: 14px;
    }
}

@media screen and (max-width:800px) {
    .top-left a {
        font: 400 12px/2em 'Noto Sans JP', sans-serif;
        color: #5e5e5e;
        margin-bottom: 14px;
    }
}

.top-mid {
    display: flex;
    flex-direction: column;
    margin-right: clamp(50px, 9vw, 200px);
}

@media screen and (max-width:1200px) {
    .top-mid {
        margin-right: clamp(110px, 11vw, 200px);
    }
}

@media screen and (max-width:800px) {
    .top-mid {
        margin-right: clamp(30px, 11vw, 110px);
    }
}


.top-mid a {
    font: 400 20px/2em 'Noto Sans JP', sans-serif;
    color: #5e5e5e;
    margin-bottom: 6px;
}

@media screen and (max-width:1200px) {
    .top-mid a {
        font: 400 16px/2em 'Noto Sans JP', sans-serif;
        color: #5e5e5e;
        margin-bottom: 2px;
    }
}

@media screen and (max-width:800px) {
    .top-mid a {
        font: 400 12px/2em 'Noto Sans JP', sans-serif;
        color: #5e5e5e;
        margin-bottom: 10px;
    }
}

.top-mid ul {
    padding: 0;
    margin: 0;
}

.top-mid ul>li {
    list-style: none;
    margin-bottom: 4px;
}

.top-mid ul>li>a {
    list-style: none;
    font: 400 14px/2em 'Noto Sans JP', sans-serif;
    color: #929292;
}

@media screen and (max-width:1200px) {
    .top-mid ul>li>a {
        list-style: none;
        font: 400 12px/2em 'Noto Sans JP', sans-serif;
        color: #929292;
    }
}

@media screen and (max-width:800px) {
    .top-mid ul>li>a {
        list-style: none;
        font: 400 10px/1.7em 'Noto Sans JP', sans-serif;
        color: #929292;
    }
}

.top-right {
    display: flex;
    flex-direction: column;
}

.top-right a {
    font: 400 20px/2em 'Noto Sans JP', sans-serif;
    color: #5e5e5e;
    margin-bottom: 16px;
}

@media screen and (max-width:1200px) {
    .top-right a {
        font: 400 16px/2em 'Noto Sans JP', sans-serif;
        color: #5e5e5e;
        margin-bottom: 14px;
    }
}

@media screen and (max-width:800px) {
    .top-right a {
        font: 400 12px/2em 'Noto Sans JP', sans-serif;
        color: #5e5e5e;
        margin-bottom: 14px;
    }
}

/* フッターリンクのホバーエフェクト */
.footer-top a {
    position: relative;
    color: #5e5e5e;
    transition: color 0.3s ease;
    display: inline-block;
    /* 要素がインラインレベルでありながらブロックレベルの特性を持つようにする */
}

.footer-top a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    /* 下線の位置を調整 */
    left: 0;
    background-color: #FF3E00;
    transition: width 0.3s ease;
}

.footer-top a:hover {
    color: #FF3E00;
}

.footer-top a:hover::after {
    width: 100%;
    /* テキストの幅に合わせる */
}




.footer-mid {
    display: flex;
    align-items: start;
    justify-content: start;
    padding-top: 50px;
    padding-bottom: 40px;
    border-top: 1px solid #929292;
}

@media screen and (max-width:800px) {
    .footer-mid {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: center;
        padding-bottom: 30px;
        padding-top: 30px;
    }
}

.footer-mid-container {
    display: flex;
    flex-direction: column;
}

.footer-mid-container:first-of-type {
    margin-right: 50px;
}

@media screen and (max-width:800px) {
    .footer-mid-container:first-of-type {
        margin: 0;
        margin-bottom: 20px;
    }
}

.footer-header {
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #929292;
    margin-bottom: 10px;
}

.footer-header h3 {
    display: flex;
    align-items: center;
    font: 400 20px/2em 'Noto Sans JP', sans-serif;
    color: #5e5e5e;
    margin: 0;
}

@media screen and (max-width:800px) {
    .footer-header h3 {
        font: 400 16px/2em 'Noto Sans JP', sans-serif;
    }
}

.footer-header h3::before {
    content: "";
    vertical-align: bottom;
    display: inline-block;
    width: 12px;
    height: 6px;
    background: #FF3E00;
    margin-right: 20px;
}

@media screen and (max-width:800px) {
    .footer-header h3::before {
        content: "";
        vertical-align: bottom;
        display: inline-block;
        width: 10px;
        height: 5px;
        background: #FF3E00;
        margin-right: 20px;
    }
}

.footer-address {
    margin-left: 32px;
}

.footer-address p:first-of-type {
    margin-bottom: 5px;
}

.footer-address p {
    font: 400 14px/2.5em 'Noto Sans JP', sans-serif;
    color: #5e5e5e;
    margin: 0;
}

@media screen and (max-width:800px) {
    .footer-address p {
        font: 400 12px/2.5em 'Noto Sans JP', sans-serif;
    }
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid #929292;
    margin-left: 5px;
}

@media screen and (max-width:800px) {
    .footer-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 30px 5px;
    }
}

.bottom-header {
    padding-right: 30px;
    border-right: 1px solid #929292;
}

@media screen and (max-width:800px) {
    .bottom-header {
        display: none;
    }
}


.bottom-header p {
    font: 400 1vw/2.5em 'Noto Sans JP', sans-serif;
    color: #5e5e5e;
    margin: 0;
}


@media screen and (max-width:1200px) {
    .bottom-header p {
        font: 400 16px/2.5em 'Noto Sans JP', sans-serif;
    }
}

@media screen and (max-width:800px) {
    .bottom-header p {
        display: none;
    }
}



.bottom-links {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 30px;
}

@media screen and (max-width:800px) {
    .bottom-links {
        margin-left: 5px;
    }
}

.bottom-links a {
    width: clamp(15px, 2.2vw, 40px);
    height: clamp(15px, 2.2vw, 40px);
    margin-right: 20px;
}

@media screen and (max-width:1200px) {
    .bottom-links a {
        width: 26px;
        height: 26px;
    }
}

@media screen and (max-width:800px) {
    .bottom-links a {
        margin-right: 15px;
    }
}


.bottom-links a img {
    width: clamp(15px, 2.2vw, 40px);
    height: clamp(15px, 2.2vw, 40px);
}

@media screen and (max-width:1200px) {
    .bottom-links a img {
        width: 26px;
        height: 26px;
    }
}

a.btn-hooter {
    font: 400 clamp(15px, 1vw, 16px)/1.4em 'Noto Sans JP', sans-serif;
    margin-left: 20px;
    padding: 1.6rem 5rem 1.7rem 4rem;
    color: #FF3E00;
    background: #fff;
    transition: all 0.3s;
    border-radius: 10px;
}

@media screen and (max-width:1200px) {
    a.btn-hooter {
        font: 400 13px/2.5em 'Noto Sans JP', sans-serif;
    }
}

@media screen and (max-width:800px) {
    a.btn-hooter {
        font-size: 0;
        padding: 15px 15px;
        border-radius: 20px;
        margin-left: 0;
        margin-right: 5px;
    }
}

a.btn-hooter::after {
    content: "";
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #FF3E00;
    border-right: 2px solid #FF3E00;
    transform: rotate(-45deg) translateY(-50%);
    top: 50%;
    right: 10%;
}

@media screen and (max-width:800px) {
    a.btn-hooter::after {
        top: 50%;
        right: 26%;
    }
}

/* フッターのソーシャルリンクのホバーエフェクト */
.bottom-links a img {
    transition: transform 0.3s ease-in-out;
}

.bottom-links a:hover img {
    transform: scale(1.2);
}




.copyright {
    background: #fff;
    width: 100%;
    z-index: 1;
    padding: 0px 80px 0px 60px;
}


@media screen and (max-width:1200px) {
    .copyright {
        /* display: none; */
        padding: 0 35px;
        display: flex;
        align-items: center;
    }
}

@media screen and (max-width:800px) {
    .copyright {
        padding: 0 26px;
        margin-bottom: 0;
    }
}

.copyright-container {
    max-width: 1600px;
    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
    margin: 0 auto;
    border-top: 1px solid #a4a4a4;
}


@media screen and (max-width:1200px) {
    .copyright-container {
        width: 100%;
        max-width: 663px;

    }
}

@media screen and (max-width:800px) {
    .copyright-container {
        max-width: 640px;
        width: 100%;
        align-items: center;
        justify-content: center;
    }
}

.copyright-container h3 {
    margin: 0;
    font: 200 clamp(10px, 1.3vw, 14px)/4em sans-serif;
    color: #5e5e5e;
}


/* マウスストーカー */
#stalker {
    pointer-events: none;
    position: fixed;
    top: -8px;
    left: -8px;
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, top, 0.5s, left 0.5s, width .5s, height .5s, background-color .5s;
    transition-timing-function: ease-out;
    z-index: 999;
}

.title-bij h3 {
    margin: 0;
    font: 500 clamp(30px, 4.2vw, 70px)/1em 'Raleway', 'Noto Sans JP', sans-serif;
    color: #FF3E00;
}

@media screen and (max-width:1200px) {
    .title-bij h3 {
        font: 500 clamp(50px, 4.6vw, 80px)/1.2em 'Raleway', 'Noto Sans JP', sans-serif;
    }
}

@media screen and (max-width:800px) {
    .title-bij h3 {
        font: 500 clamp(40px, 3.2vw, 80px)/1.2em 'Raleway', 'Noto Sans JP', sans-serif;
    }
}