@charset "utf-8";

/* =====================================
common
===================================== */
:root {
    --main-blue: #013CA6;
    --white: #FFFFFF;
    --sumi: #353638;
    --navy: #09174E;
    --royalblue: #4474C9;
    --lightblue: #6EC5E3;
    --dimgray: #52555C;
    --lightgray: #F3F3F4;
    --emeraldgreen: #9DC7CC;
    --dimgray: #52555C;
    --LINE_color: #06C755;
    --black: #000000;
    --contentWidth279: 74.4%;
    --contentPadding48: 12.8%;
    --contentPadding32: 8.5%;
}

html {
    font-size: 62.5%;
}

body {
    font-family:
        'Noto Sans JP',
        Roboto,
        Urbanist;
    font-style: normal;
    color: var(--sumi,#353638);
    background-color: var(--white,#FFFFFF);
    line-height: normal;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.business__header,.case__header,.sustainability__header {
    color: var(--white,#FFFFFF);
    text-align: left;
    font-size: 2.0rem;
    font-weight: 700;
    padding: 10px 3.2%;
    width: fit-content;
}

.business__header {
    background-color: var(--navy,#09174E);
    margin-left: calc(((100vw - 100%) / 2) * -1);
}

.case__header {
    background-color: var(--main-blue,#013CA6);
    margin-left: calc(((100vw - 100%) / 2) * -1);
    margin-top: 32px;
}

.sustainability__header {
    background-color: var(--emeraldgreen,#9DC7CC);
    margin-left: calc(((100vw - 100%) / 2) * -1);
    /* margin-top: 32px; */
}

.btn {
    display: flex;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-weight: 700;
    width: 250px;
    height: 48px;
    padding: 0 5.3%;
    align-items: center;
    position: relative;
    transition: 0.4s;
}

.btn::after {
    content: '';
    display: inline;
    width: 20px;
    height: 20px;
    background-image: url(../images/arrows_icon_royalblue.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 5.3%;
    top: 50%;
    transform: translateY(-50%);
}

.btn:hover {
    opacity: 0.5;
}


/* common pc */
@media screen and (min-width: 768px) {
        .business__header,
        .case__header,
        .sustainability__header {
            text-align: center;
            font-size: 32px;
            font-weight: 700;
            width: 300;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            /* margin-top: 96px; */
    }


@media screen and (min-width: 1280px) {
        .business__header,
        .case__header,
        .sustainability__header {
            text-align: center;
            font-size: 32px;
            font-weight: 700;
            width: 400px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 0;
    }

    .btn {
        font-size: 24px;
        font-weight: 700;
        width: 365px;
        height: 80px;
        padding: 10px 20px;
    }
    
    .btn::after {
        width: 40px;
        height: 40px;
        right: 20px;
    }
}
}


/* =====================================
.header
===================================== */

.header {
    background: rgba(255, 255, 255, 0.85);
    width: 100%;
    padding-left:8.5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    z-index: 100;
    top: 0;
}

.logo img,
.nav__logo img {
    max-width: 180px;
}

.nav__logo {
  display: inline-block; /* ← まずはこれでブロック化 */
  padding: 12px 0;       /* ← 必要に応じて上下に余白を */
}

.nav__logo img {
  height: 40px;          /* またはmax-height等で調整 */
  display: block;        /* スマートに中央揃えしたいなら */
}



/* nav初期表示 */

.nav-pc {
    display: none;
}

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

.nav {
    background-color: var(--white);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav__header {
    height: 60px;
    padding: 0 5.4% 0 8.5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.nav__close {
    width: fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__close img {
    margin: 0 auto;
}

.nav__list {
    padding: 24px 18.1%;
}

.nav__item {
    color: var(--sumi);
    font-size: 2.0rem;
    font-weight: 700;
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-etween;
    position: relative;
}


.dropdown__lists {
    display: none;
    position: static;
    opacity: 1;
    transform: none;
  }

.dropdown__lists.open {
    display: block;
  }

.nav__item {
    position: relative;
  }


.nav__item-en {
    display: none;
}



/* お問い合わせボタン 375*/
.nav-contact-btn {
    padding: 0 16.6%;
}

.nav-contact-btn-sales {
    width: fit-content;
    margin: 0 auto;
}

.nav-contact-btn__read {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* btnの設定 */
/* 修正中 */

/* 営業 375*/
.nav-contact-btn__salesBtn {
    color: var(--white);
    background-color: var(--main-blue);
    margin-top: 10px;
}

.nav-contact-btn__salesBtn::after {
    background-image: url(../images/arrows_icon_white.svg);
}

/* 店舗 375*/

.contact-btn-shop {
    width: fit-content;
    margin: 0 auto;
}

.nav-contact-btn__shopBtn {
    color: var(--white);
    background-color: var(--lightblue);
    margin-top: 10px;
}

.nav-contact-btn__shopBtn::after {
    background-image: url(../images/arrows_icon_white.svg);
}

/* LINE 375*/

.contact-btn-line {
    width: fit-content;
    margin: 0 auto;
}


.nav-contact-btn__read img {
    padding-left: 10px;
    display: inline-block;
    align-items: center;
    width: 35px;
    height: 25px;
}


.nav-contact-btn__lineBtn {
    color: var(--LINE_color);
    background-color: var(--white);
    border:1px solid var(--LINE_color) ;
    box-sizing: border-box;
    margin-top: 10px;
}

.nav-contact-btn__lineBtn::after {
    background-image: url(../images/arrows_icon_line_color.svg);
}

/* ドロップダウンメニュー */
    .dropdown__lists {
        display: none;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 80px;
        left: 0;
    }

    .dropdown__list {
        background-color: rgba(255, 255, 255, 0.85);
        width: 100%;
        height: auto;
        padding: 10px;
        transition: all .3s;
        position: relative;
        top: 40px;
    }

    .dropdown__list:not(:first-child)::before{
        content: "";
        width: 100%;
        height: 1px;
        background-color: #3492d1;
        position: absolute;
        top: 0;
        left: 0;
    }
    .dropdown__list:click {
        background-color:var(--navy);
    }

    .dropdown__list a:hover {
        width: 100%;
        color: #fff;
    }

    .dropdown__list a {
        width: 100%;
        height: 100%;
        font-size: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--navy);
        text-decoration: none;
        position: relative;
    }


/* header pc 768*/

@media screen and (min-width: 768px) {
    .header {
        max-width: 100%;
        margin: 0 auto;
        padding-left:32px ;
        display: flex;
        justify-content:space-between;
        align-items: center;
    }
}

@media screen and (min-width: 1280px) {
    .header {
        height: 120px;
        margin: 0 auto;
        padding-left:32px ;
        display: flex;
        justify-content:space-between;
        align-items: center;
    }


    .nav {
        background-color: transparent;
        width: 100%;
        height: auto;
        padding: 0;
        position: static;
        transform: translate(0);
    }

    .nav__list {
        margin-top: 0;
        padding: 0;
        display: flex;
        justify-content: flex-end;
    }

    .nav__list:last-child {
        display: none;
    }

    .nav__item {
        min-width: 190px;
        height: 120px;
        margin-top: 0;
        padding: 0 16px;
        justify-content: center;
    }

    .spNav {
        display: none;
    }

    .nav__item ::after {
        display: none;
    }

    .nav__item-en {
        display: block;
        text-align: center;
        font-family: Roboto;
        font-size: 20px;
        font-weight: 400;
    }

    /* ドロップダウンメニュー */
    .dropdown__lists {
        display: none;/*デフォルトでは非表示の状態にしておく*/
        width: 100%;
        position: absolute;
        top: 80px;
        left: 0;
    }
    .nav__item:hover .dropdown__lists {
        display: block;/*Gナビメニューにホバーしたら表示*/
    }
    .dropdown__list {
        background-color: rgba(255, 255, 255, 0.85);
        width: 100%;
        height: auto;
        padding: 10px;
        transition: all .3s;
        position: relative;
        top: 40px;
    }

    .dropdown__list:not(:first-child)::before{
        content: "";
        width: 100%;
        height: 1px;
        background-color: #3492d1;
        position: absolute;
        top: 0;
        left: 0;
    }
    .dropdown__list:hover {
        background-color:var(--navy);
    }

    .dropdown__list a:hover {
        width: 100%;
        color: #fff;
    }

    .dropdown__list a {
        width: 100%;
        height: 100%;
        font-size: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--navy);
        text-decoration: none;
        position: relative;
    }

    /* btnの設定 */
    /* 打ち消し */
    .nav-contact-btn {
        display: none;
    }

    .nav-contact-btn-pc {
        display: flex;
    }

    .nav-contact-btn-all {
        color: var(--white);
        background-color: var(--navy);
        text-align: center;
        font-family: Roboto;
        font-size: 28px;
        font-weight: 500;
        width: 120px;
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        padding: 9px;
    }

    .nav-pc {
        display: flex;
    }

    /* .nav-contact-btn-parts {
        display: block;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    } */


    /* 営業 1280 */
    .nav-contact-btn-sales-pc {
        color: var(--white);
        background-color: var(--main-blue);
        width: 302px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }


    .nav-pc-name-sales {
        color: var(--white);
        text-align: center;
        font-family: Roboto;
        font-size: 24px;
        font-weight: 700;
        width: 72px;
        margin-right: 24px;
    }

    .nav-pc-name-shop{
        color: var(--white);
        text-align: center;
        font-family: Roboto;
        font-size: 24px;
        font-weight: 700;
        width: 72px;
        margin-right: 44px;
    }


    .nav-pc-call {
        color: var(--white);
        text-align: center;
        font-family: Roboto;
        font-size: 24px;
        font-weight: 700;
    }

    /* 店舗 */
    .nav-contact-btn-shop-pc {
        color: var(--white);
        background-color: var(--lightblue);
        width: 302px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav__header {
        display: none;
    }

    .header__btn {
        display: none;
    }
}  
/* pc 1280 */

/* header pc 1600*/
@media screen and (min-width: 1600px) {
    .logo img {
        max-width: 250px;
    }
}

/* 1600 header pc*/

/* header pc 1920*/
@media screen and (min-width: 1920px) {
    .nav__item {
        font-size: 30px;
    }

    .logo img {
        max-width: 250px;
        height: auto;
    }
}

/* 1920 header pc*/


/* =====================================
pr　全ページ共通
===================================== */

#pr {
    width: 100%;
    padding: 32px 12.8%;
    margin: 0 auto;
}

.pr__banner {
    list-style: none;
    width: 100%
}

.pr__banner-item {
    margin-top: 20px;
}

.pr__banner-item :hover {
    opacity: 0.6;
}


/* pr tablet 769*/
@media screen and (min-width: 768px) {
    .pr__banner {
        display: flex;
        flex-wrap: wrap;
    }

    .pr__banner-item {
        width: 45%;
        gap: 10px;
        margin: 0 auto;
        margin-top: 20px;
    }
}
/* 768 pr tablet*/


/* pr pc 1280*/
@media screen and (min-width: 1280px) {

    #pr {
        padding: 0 160px;
        margin-top: 100px;
        margin-bottom: 100px;
}
    .pr__banner {
        display: flex;
        flex-wrap: nowrap;
        gap: 20px;
    }
}
/* 1280 pr pc*/



/* =====================================
article__footer　contact　全ページ共通　※SNSはindexだけ
===================================== */

/* nav-contact-btn */
/* 営業課ボタン　375 */


.article__footer__contact {
    padding: 48px;
}

.article__footer__sales-list {
    max-width: 100%;
    border: 2px solid var(--main-blue, #013CA6);
    box-sizing: border-box;
    padding: 20px 3.3%;
    display: flex;
    justify-content: center;
}

.article__footer__read {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
}

.article__footer__section {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin-top: 20px;
}

/* 問い合わせボタン */
/* 営業メール */
.article__footer__sales-mail {
    color: var(--white);
    background-color: var(--main-blue);
    margin-top: 40px;
}

.article__footer__sales-mail::after {
    background-image: url(../images/arrows_icon_white.svg);        
}

/* 営業電話 */
.article__footer__sales-call {
    color: var(--main-blue);
    background-color: var(--white);
    border: 2px solid var(--main-blue, #013CA6);
    box-sizing: border-box;
    margin-top: 40px;
}

.article__footer__sales-call::after {
    display: none;
}

.call__number {
    font-size: 2.0rem;
}


.article__footer__sales-call::before {
    content: '';
    display: inline-block;
    background-image: url(../images/call_main-blue.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 5.3%;
}

/* ボタン上部余白 */
.footer__sales-btn,
.footer__shop-btn,
.article__footer__sales-call,
.article__footer__shop-call,
.contact-info__mail,
.contact-info__call,
.contact-info__line {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: center;
}


/* 店舗 */

.article__footer__shop-list {
    max-width: 100%;
    border: 2px solid var(--lightblue, #013CA6);
    box-sizing: border-box;
    padding: 20px 3.3%;
    display: flex;
    justify-content: center;
    margin-top: 24px;
}


/* 問い合わせボタン */
/* 店舗メール */

.article__footer__shop-mail {
    color: var(--white);
    background-color: var(--lightblue);
    margin-top: 40px;
}

.article__footer__shop-mail::after {
    background-image: url(../images/arrows_icon_white.svg);
}

/* 店舗電話 */
.article__footer__shop-call {
    color: var(--lightblue);
    background-color: var(--white);
    border: 2px solid var(--lightblue);
    box-sizing: border-box;
    margin-top: 40px;
}

.article__footer__shop-call::after {
    display: none;
}

.article__footer__shop-call::before{
    content: '';
    display: inline-block;
    background-image: url(../images/call_lightblue.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 5.3%;
}

/* LINE */
.article__footer-line {
    display: block;
}

.article__footer__shop-line-read {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    /* margin-top: 24px; */
    padding-left:10px ;
    display: flex;
    justify-content: center;
}

.article__footer__shop-line-read img {
    padding-left: 10px;
    display: inline-block;
    align-items: center;
    width: 35px;
    height: 25px;
}


/* 問い合わせボタン */
.article__footer__shop-line {
    color: var(--LINE_color);
    background-color: var(--white);
    border: 1px solid var(--LINE_color);
    box-sizing: border-box;
    margin-top: 15px;
    justify-content: space-between;
    padding: 0 5.3%;
}

.article__footer__shop-line::after {
    display: none;
}

.article__footer__shop-line::before {
    content: '';
    display: inline-block;
    background-image: url(../images/arrows_icon_line_color.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 5.3%;
}


/* article__footer 1280 */
@media screen and (min-width:1280px) {
    .article__footer__read,
    .article__footer__shop-line-read {
        font-size: 20px;
        font-weight: 500;
    }

    .article__footer__shop-line {
        padding: 0 20px;
    }

    .article__footer__shop-line::before {
        width: 40px;
        height: 40px;
    }

    .call__number {
        font-size: 28px;
        font-weight: 700;
    }

    .division-call__number {
        font-size: 24px;
        font-weight: 700;
    }

    .division {
        font-size: 24px;
        font-weight: 700;
    }

    .article__footer__sales-call::before,
    .article__footer__shop-call::before {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 5.3%;
}

}
/* pc 1280 */



/* =====================================
article__footer　access　全ページ共通　
===================================== */

.access__contents {
    padding: 24px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.access__detiail {
    display: block;
    width: 100%;
}


.address__name {
    font-size: 1.6rem;
    font-weight: 500;
}

address {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 8px;
}

.zip-code,
.address {
    display: block;
    margin-top: 8px;
}

.access__call {
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 8px;
    display: flex;
}

.access__name {
    width: 40px;
}

.map iframe {
    width: 100%;
    object-fit: cover;
}

.access__num {
    margin-left: 2.1%;
}

.sns {
    display: flex;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
    justify-content: space-between;
}

.sns img {
    display: flex;
    width: 24px;
    height: 24px;
}

/* access pc 768  */
@media screen and (min-width:768px) {
    .access__contents {
        justify-content: center;
        gap: 60px;
    }

    .access__detiail {
        width: fit-content;
    }


    .address__name {
        font-size: 20px;
        font-weight: 500;
    }
    
    .zip-code,
    .address,
    .access__call {
        font-size: 16px;
    }
    
    .access__name {
        width: 60px;
    }

    .sns {
    gap: 10px;
    margin-top: 20px;
}

    .sns img {
        width: 30px;
        height: 30px;
    }

    iframe {
        width: 100%;
        height: 100%;
        object-fit: cover;
    } 
}

/* pc 768 */

/* access pc 1280  */
@media screen and (min-width:1280px) {
    .access__contents {
        gap: 100px;
    }

    .address__name {
        font-size: 36px;
        font-weight: 700;
    }
    
    .zip-code,
    .address,
    .access__call {
        font-size: 20px;
    }
    
    .access__name {
        width: 60px;
    }

    .sns {
    gap: 10px;
    margin-top: 30px;
    }

    .sns img {
        width: 35px;
        height: 35px;
    }

    .map {
        width:800px;
        height: 500px;
    }


}

/* pc 1280 */

/* =====================================
footer id="footer  footer　共通
===================================== */
#footer {
    background-color: var(--navy);
    padding: 32px 8%;
}

.footerNav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.footerNav__list {
    width: 45%;
}

.footerNav__topic {
    display: inline-block;
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 16px;
}

.footerNav__topic a {
    display: inline-block;
    width: 145px;
}

.footerNav__item {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 400;
    margin-top: 8px;
}

.policy {
    color: var(--white);
    font-size: 1.0rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 39px;
    gap: 20px;
}

.sct {
    margin-left: 30px;
}

.copy {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.topBtn img {
    width: 30px;
    height: 30px;
    position: fixed;
    bottom: 16px;
    right: 16px;
}

/* footer id="footer  footer　共通 768 pc  */
@media screen and (min-width:768px) {
    .footerNav {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 24px;
    }
    
    .footerNav__list {
        width: fit-content;
    }
}
/* footer id="footer  footer　共通 768 pc  */
/* 768pc */

/* footer id="footer  footer　共通 1280 pc  */
@media screen and (min-width:1280px) {

    .footerNav__topic {
        font-size: 24px;
        font-weight: 700;
    }

    .footerNav__item {
    font-size: 20px;
    font-weight: 400;
    }

    .topBtn img {
        width: 50px;
        height: 50px;
        position: fixed;
        bottom: 20px;
        right: 30px;
    }
    .policy {
        font-size: 14px;
        font-weight: 400;
    }

    .copy {
        font-size: 14px;
    }
}
/* 1280pc */



/* footer id="footer  footer　共通 1920 pc  */
@media screen and (min-width:1920px) {
    #footer {
        padding: 48px 160px;
        position: relative;
    }
    
    /* .footerNav {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 24px;
    }
    
    .footerNav__list {
        width: fit-content;
    } */
    
    .footerNav__topic {
        font-size: 30px;
        font-weight: 700;
    }
    
    .footerNav__item {
        font-size: 20px;
        font-weight: 400;
    }
    
    .policy {
        font-size: 10px
        font-weight: 400;
        display: flex;
    }
    
    .sct {
        margin-left: 30px;
    }
    
    .copy {
        font-size: 10px ;
        position: relative;
    }
}