@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');
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Raleway:ital,wght@0,100..900;1,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: 400;
    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;
    top: 0;
    left: 0;
}

.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: 500 12px/1em 'Noto Sans JP', sans-serif;
}

@media screen and (max-width:1200px) {
    .company-name {
        height: 30px;
        margin-left: 10px;
        font: 400 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: 100;
    bottom: 15px;
    right: 15px;
    border: 1px solid #FF3E00;
    background: rgba(0, 0, 0, 0.2);
    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: 5;
    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: 400 14px/2.5em 'Noto Sans JP', sans-serif;
    color: #5e5e5e;
    margin: 0;
}

@media screen and (max-width:800px) {
    .bugger-address p {
        font: 400 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;
}



/* パンくずリスト */
.breadcrumb {
    margin: 120px 0 30px 15.2vw;
    /* H1に左合わせるため ml 6px */
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: start;
}

@media screen and (max-width:1200px) {
    .breadcrumb {
        margin-top: 90px;
        margin-bottom: 20px;
        margin-left: 15.2vw;
    }
}

@media screen and (max-width:800px) {
    .breadcrumb {
        margin-top: 70px;
        margin-left: 6.4vw;
        margin-bottom: 10px;
    }
}

.breadcrumb li {
    display: inline-block;
    vertical-align: middle;
    /* 必要に応じて追加 */
}


.breadcrumb li:after {
    /* ▶を表示*/
    content: '>';
    padding: 0 10px;
    color: #5f5f60;
}

@media screen and (max-width:800px) {
    .breadcrumb li:after {
        padding: 0 5px;
        color: #fff;
    }
}

.breadcrumb li:last-child:after {
    opacity: 0;
}

.breadcrumb li a {
    display: inline-block;
    padding: 6px 20px 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    color: #5f5f60;
    background: #fff;
    border: 1px solid #5f5f60;
    font: 300 12px/1em 'Noto Sans JP', sans-serif;
    transition: 0.3s;
}

@media screen and (max-width:800px) {
    .breadcrumb li a {
        font: 300 6px/1em 'Noto Sans JP', sans-serif;
        padding: 4px 12px 6px 12px;
    }
}

.breadcrumb li a:hover {
    background: #5f5f60;
    color: #fff;

}


@media screen and (max-width:800px) {
    .breadcrumb li a:hover {
        border: 1px solid #5f5f60;
    }
}


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

/* メインビジュアル */
.mv {
    width: 100%;
    height: 100%;
    max-width: 1920px;
}

.mv-container {
    margin-left: 15vw;
}

@media screen and (max-width:800px) {
    .mv-container {
        margin-left: 0;
        padding: 0 6vw;
    }
}

.mv-maitext h1 {
    color: #FF3E00;
    font: 600 130px/1.2em 'Raleway', sans-serif;
    margin: 0;
}

@media screen and (max-width:1200px) {
    .mv-maitext h1 {
        font: 600 100px/0.9em 'Raleway', sans-serif;
        margin-bottom: 16px;
    }
}

@media screen and (max-width:800px) {
    .mv-maitext h1 {
        font: 600 clamp(60px, 14vw, 120px)/0.9em 'Raleway', sans-serif;
        margin-bottom: 8px;
    }
}

.mv-maitext h3 {
    color: #5e5f5f;
    font: 500 29px/0.8em 'Noto Sans JP', sans-serif;
    margin: 0 0 60px 6px;
    /* H1に左合わせるため ml 6px */
}

@media screen and (max-width:1200px) {
    .mv-maitext h3 {
        font: 500 24px/0.8em 'Noto Sans JP', sans-serif;
        margin-bottom: 30px;
    }
}

@media screen and (max-width:800px) {
    .mv-maitext h3 {
        font: 600 18px/0.8em 'Noto Sans JP', sans-serif;
        margin-bottom: 30px;
        color: #5E5F5F;
    }
}

.mv-img {
    max-width: 1728px;
    max-height: 893px;
}


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

.mv-img img {
    width: 100%;
    height: 100%;
    max-height: 893px;
    object-fit: cover;
}


/* CEO */
.CEO {
    width: 100%;
    height: 100%;
    padding: 50px 10vw 8vw 15vw;
    margin-bottom: 8vw;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}


@media screen and (max-width:800px) {
    .CEO {
        padding: 20px 6vw 60px;
    }
}

.CEO-container {
    max-width: 1410px;
    width: 100%;
    /* border-top: 1px solid #FF3E00;
    border-bottom: 1px solid #FF3E00; */
}

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


.CEO-head {
    width: 100%;
    border-bottom: 1px solid #FF3E00;
    margin-bottom: clamp(10px, 3.5vw, 60px);
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    width: 100%;
}

.CEO-head h2 {
    color: #FF3E00;
    font: 200 clamp(40px, 7vw, 110px)/1em 'Raleway', sans-serif;
    margin: 0;
}

.CEO-head h3 {
    color: #FF3E00;
    font: 200 clamp(16px, 2vw, 40px)/1.8em 'Raleway', sans-serif;
    margin: 0;
    margin-left: 4px;
    margin-bottom: 10px;
}


.CEO-maintext p {
    color: #929292;
    font: 200 clamp(16px, 1.6vw, 28px)/1.7em 'Noto Sans JP', sans-serif;
    margin: 0;
    margin-left: 3px;
    margin-bottom: clamp(10px, 3vw, 20px);
}

.CEO-maintext h2 {
    color: #5E5F5F;
    font: 300 clamp(20px, 2.5vw, 48px)/1.4em 'Noto Sans JP', sans-serif;
    margin: 0;
    margin-left: 3px;
    margin-bottom: clamp(10px, 3vw, 60px);
}


@media screen and (max-width:800px) {
    .CEO-maintext h2 {
        font: 300 clamp(18px, 4.8vw, 24px)/1.4em 'Noto Sans JP', sans-serif;
    }
}

/* @media screen and (max-width:500px) {
    .CEO-maintext br {
        display: none;
    }
} */


.CEO-textarea {
    display: flex;
    align-items: start;
    justify-content: center;
    margin-left: 5px;
}

@media screen and (max-width:800px) {
    .CEO-textarea {
        flex-direction: column;
        align-items: center;
        margin-left: 0;
        padding: 0 5px;
    }
}

@media screen and (max-width:800px) {
    .CEO-maintext {
        order: 2;
    }
}

.CEO-maintext h3 {
    color: #5E5F5F;
    font: 200 clamp(12px, 1.4vw, 22px)/1.7em 'Noto Sans JP', sans-serif;
    margin: 0;
    margin-left: 3px;
}

.CEO-img {
    margin-left: clamp(40px, 4.2vw, 80px);
    margin-top: clamp(40px, 4.2vw, 80px);
    width: clamp(240px, 30vw, 480px);
    height: clamp(400px, 50vw, 800px);
}

@media screen and (max-width:800px) {
    .CEO-img {
        width: 100%;
        height: 100%;
        margin-left: 0;
        margin-bottom: clamp(20px, 3vw, 40px);
        margin-top: 0;
    }
}


.CEO-img img {
    width: clamp(240px, 30vw, 480px);
    height: clamp(400px, 50vw, 800px);
    object-fit: cover;          /* 比率を維持したまま枠に収める */
    object-position: top center; /* トップに寄せる */
    margin-bottom: 10px;
}


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


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

.CEO-img h2 {
    font: 200 clamp(20px, 2vw, 40px)/1.2em 'Noto Sans JP', sans-serif;
    margin: 0;
    color: #5E5F5F;
}

@media screen and (max-width:800px) {
    .CEO-img img {
        order: 1;
    }
}



.requirements {
    width: 100%;
    height: 100%;
    padding: 20px clamp(100px, 12vw, 200px) 200px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

@media screen and (max-width:800px) {
    .requirements {
        padding: 8px 30px 60px;
    }
}

.requirements-container {
    max-width: 1410px;
    width: 100%;
}

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

.requirements-textarea {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-column-gap: clamp(30px, 5vw, 100px);
    grid-row-gap: clamp(30px, 5vw, 100px);
}


@media screen and (max-width:800px) {
    .requirements-textarea {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr ;
    }
}

.requirements-item {
    padding: 2px;
}

.requirements-header {
    width: 100%;
    border-bottom: 1px solid #a4a4a4;
}

.requirements-header h2 {
    font: 300 clamp(20px, 1.8vw, 48px)/2.5em 'Noto Sans JP', sans-serif;
    color: #5e5e5e;
    margin: 0;
}

.requirements-box {
    margin: clamp(12px, 1.6vw, 26px) 2px;
    padding-left: 1vw;
    border-left: 1px solid #FF3E00;
}

.requirements-box h3 {
    font: 300 clamp(14px, 1vw, 24px)/1em 'Noto Sans JP', sans-serif;
    color: #5e5e5e;
    margin: 0;
    margin-bottom: clamp(8px, 0.6vw, 20px);
}

.requirements-box p {
    font: 200 clamp(10px, 0.8vw, 16px)/1.2em 'Noto Sans JP', sans-serif;
    color: #5e5e5e;
    margin: 0;
}





/* 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', sans-serif;
    margin: 0;
}



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

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


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


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

@media screen and (max-width:550px) {
    .contactus-header p {
        font: 300 clamp(14px, 2.4vw, 24px)/1em 'Raleway', 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', 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', 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', 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', sans-serif;
    }
}

.contactus-left-box p {
    font: 300 40px/1.6em 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 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 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 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: 60px 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', sans-serif;
    color: #5e5e5e;
}

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

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

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

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

@media screen and (max-width:800px) {
    .title-bij h1 {
        font: 500 clamp(40px, 3.2vw, 80px)/1.2em 'Raleway', 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', 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 h2 {
    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 h2 {
        font: 500 clamp(50px, 4.6vw, 80px)/1.2em 'Raleway', 'Noto Sans JP', sans-serif;
    }
}

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