@charset "UTF-8";

/* ━━━━━━━━━━━━━━━━

 ■初期化

━━━━━━━━━━━━━━━━ */

body {
    font-family: 'Noto Sans Japanese', sans-serif;
    min-width: auto !important;
}



/* ━━━━━━━━━━━━━━━━

 ■ユーティリティ

━━━━━━━━━━━━━━━━ */


/*=================================

* media

=================================*/
@media print {
    .l-header__sp-menu {
        display: none;
    }
}



/* ━━━━━━━━━━━━━━━━

 ■コンポーネント

━━━━━━━━━━━━━━━━ */


/*
　H2タイトル
================================*/
h2.tit {
    position: relative;
    margin: 0 auto 30px auto;
    padding: 5px 8px;
    text-align: center;
    line-height: 1.4;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    background-color: transparent !important;
}

h2.tit::after {
    content: '';
    position: absolute;
    left: calc(50% - 23px);
    bottom: -5px;
    display: block;
    width: 46px;
    border: 2px solid #1d2d50;
    border-radius: 50px;
}

/* PC */
@media screen and (min-width:768px) {
    h2.tit {
        max-width: 1140px;
        margin: 0 auto 50px auto;
        padding: 5px 8px 7px 8px;
        font-size: clamp(28px, 28 / 1140 * 100vw, 30px);
    }
}

/*
　H3タイトル（システム標準）
================================*/
h3.tit {
    position: relative;
    border-bottom: 4px solid #ccc;
    margin: 0 0 20px 0;
    padding: 15px 10px 15px 0;
    font-size: 1.1rem;
    background: transparent;
    text-shadow: none;
    border-top: none;
}

h3.tit:after {
    position: absolute;
    bottom: -4px;
    left: 0;
    z-index: 2;
    content: '';
    width: 20%;
    height: 4px;
    background-color: #1d2d50;
}

/* PC */
@media screen and (min-width:768px) {
    h3.tit {
        max-width: 1140px;
        margin: 0 auto 20px auto;
        padding: 0 0 10px 0;
    }
}


/* ━━━━━━━━━━━━━━━━

 ■レイアウト

━━━━━━━━━━━━━━━━ */


/*=================================

* ヘッダー

=================================*/
header {
    margin-bottom: 0;
    border-bottom: none;
}

.l-header {
    position: relative;
    width: 100%;
    height: 65px;
    margin: 0;
}

.l-header__wrapper {
    position: fixed;
    width: 100%;
    height: 65px;
    padding: 5px 10px;
    background-color: #fff;
    box-shadow: 0 0 6px rgb(0 0 0 / 20%);
    z-index: 99;
    box-sizing: border-box;
}

.l-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 55px;
}
 
/* ロゴ */
.l-header__logo {
    margin: 10px 0 10px 0;
    width: 200px;
}

.l-header__logo a {
    display: block;
    text-decoration: none;
}

.l-header__logo span {
    font-size: 18px !important;
    font-weight: 900;
    color: #333;
}
            
.l-header__logo img {
    display: block;
    max-width: 200px;
    max-height: 50px;
}

/* 問合わせ */
.l-header__contact {
    display: none;
}

/* ナビゲーション */
.l-header__nav {
    display: none;
}

/* ハンバーガーメニュー */
.l-header__menu__button {
    display: block;
    padding-right: 10px;
}

.l-header__menu__button a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #1f2a34;
}
                    
.l-header__menu__button i {
    font-size: 35px;
}

.l-header__sp-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 100px 20px 65px 20px;
    background: #fefefe;
    transform: translateY(min(-100%,-1000px));
    transition: transform .5s;
    z-index: 50;
}

.l-header__sp-menu.__open {
    transform: translateY(0);
    transition: transform .5s;
}

.l-header__sp-menu ul li {
    width: 100%;
    height: auto;
    border-top: 1px solid #919191;
}

.l-header__sp-menu ul li:hover {
    background: #747474;
}

.l-header__sp-menu ul li:last-child {
    border-bottom: 1px solid #919191;
}

.l-header__sp-menu ul li a {
    display: block;
    width: 100%;
    height: 3em;
    margin-left: 1em;
    line-height: 3em;
    text-decoration: none;
    font-size: 1em;
    color: #1d2d50;
}

.l-header__sp-menu ul li a:hover {
    color: #fff;
}

.l-header__sp-menu--tel,
.l-header__sp-menu--mail {
    text-align: center;
}

.l-header__sp-menu--tel a {
    display: inline-block;
    margin-top: 50px;
    text-decoration: none;
    line-height: 1;
    font-family: "Arial", 'Noto Sans Japanese', sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #1d2d50;
}

.l-header__sp-menu--tel a i {
    margin-right: 5px;
}

.l-header__sp-menu--tel p {
    text-align: center;
    font-size: 16px;
    color: #5f5f5f;
}

.l-header__sp-menu--mail a {
    display: inline-block;
    margin: 30px auto;
    padding: 15px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    color: #FFF;
    background-color: #1d2d50;
    box-sizing: border-box;
}

.l-header__sp-menu--mail a i {
    margin-right: 5px;
}

/* ページタイトル */
.l-header__page-title {
    padding: 10px 8px;
    font-size: 13px;
}

/* PC */
@media screen and (min-width:768px) {
    .l-header {
        height: auto;
    }

    .l-header__wrapper {
        position: relative;
        display: block;
        height: auto;
        padding: 0;
    }
    
    .l-header__inner {
        max-width: 1140px;
        height: auto;
        margin: 0 auto;
        padding: 13px 8px;
    }

    /* ロゴ */
    .l-header__logo {
        width: 300px;
        margin-left: 0;
    }

    .l-header__logo span {
        line-height: 40px;
        font-size: clamp(24px, 30 / 1140 * 100vw, 30px) !important;
    }

    .l-header__logo img {
        max-width: clamp(200px, 270 / 1140 * 100vw, 270px);
        max-height: 60px;
    }

    /* コンタクト */
    .l-header__contact {
        display: flex;
        justify-content: flex-end;
        flex-wrap: wrap;
        align-items: center;
        width: 55%;
    }

    .l-header__contact__tel {
        width: 60%;
        margin-right: 10px;
        line-height: 1.2;
        text-align: right;
        font-size: 26px;
        font-family: 'Century Gothic', "Arial", 'Noto Sans Japanese', sans-serif;
    }

    .l-header__contact__tel i {
        margin-right: 5px;
    }

    .l-header__contact__mail {
        width: 170px;
    }
    
    .l-header__contact__mail a {
        display: block;
        padding: 4px 25px 6px 25px;
        text-align: center;
        text-decoration: none;
        font-weight: 500;
        color: #fff;
        border-radius: 3px;
        background: #1d2d50;
    }

    .l-header__contact__mail a i {
        margin-right: 5px;
    }
    
    .l-header__contact__mail a:hover {
        background-color: #133b5c;
    }
    
    /* ナビゲーション */
    .l-header__nav {
        display: block;
        border-bottom: 3px solid #1d2d50;
        border-top: 1px solid #ccc;
        background: #fff;
    }
                
    .l-header__nav ul {
        display: flex;
        align-items: center;
        max-width: 1140px;
        height: auto;
        margin: 0 auto;
    }

    .l-header__nav ul li {
        width: 16.5%;
        border-left: solid 1px #ccc;
    }

    .l-header__nav ul li:last-child {
        border-right: solid 1px #ccc;
    }

    .l-header__nav ul li a {
        display: block;
        padding: 10px 5px;
        text-align: center;
        text-decoration: none;
        font-size: clamp(15px, 16 / 1140 * 100vw, 16px);
        color: #333;
    }

    .l-header__nav ul li a:hover {
        color: #fff;
        background-color: #1d2d50;
    }

    .l-header__menu__button {
        display: none;
    }

    .l-header__sp-menu {
        display: none;
    }

    /* ページタイトル */
    .l-header__page-title {
        max-width: 1140px;
        margin: 0 auto;
        padding: 10px 8px;
        font-size: 14px;
    }
}


/*=================================

* メインビジュアル

=================================*/

.l-main-visual {
    min-height: 250px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/main-visual.jpg);
    background-position: center;
    margin-bottom: 50px;
}

.l-main-visual__inner {
    width: 90%;
    margin: 0 auto;
}

.l-main-visual__inner h1 {
    padding: 40px 0;
    line-height: 1.6;
    font-size: 24px;
    font-weight: 700;
    color: #1d2d50;
    text-shadow: 
        #fff 3px 3px 3px, #fff -3px -3px 3px, 
        #fff -3px 3px 3px, #fff 3px -3px 3px, 
        #fff 3px 0px 3px, #fff -3px 0px 3px, 
        #fff 0px 3px 3px, #fff 0px -3px 3px;
}

/* PC */
@media screen and (min-width:768px) {
    .l-main-visual {
        min-height: 550px;
        margin-bottom: 80px;
    }

    .l-main-visual__inner {
        max-width: 1140px;
        padding: 0 8px;
    }

    .l-main-visual__inner h1 {
        padding: 100px 0;
        font-size: clamp(44px, 54 / 1140 * 100vw, 54px);
    }
}

/*=========================================

* フッター

==========================================*/
.l-footer {
    background-color: #F8F8F8;
    border-top: none;
}

.l-footer__inner {
    width: 90%;
    margin: 0 auto;
    padding: 20px 0;
}

.l-footer__logo {
    margin-bottom: 15px;
    font-size: clamp(28px, 28 / 768 * 100vw, 35px);
    font-weight: 900;
    line-height: 1;
    color: #000;
}

.l-footer__logo img {
    width: 70%;
    margin-bottom: 15px;
}

.l-footer__contact {
    margin-top: 30px;
}

.l-footer__contact h3 {
    position: relative;
    width: 100%;
    height: 14px;
    text-align: center;
    border-bottom: 1px solid #000;
}

.l-footer__contact h3 span {
    padding: 0 10px;
    font-size: 18px;
    background-color: #f8f8f8;
}

.l-footer__contact__shop__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.l-footer__contact__shop__tel a {
    font-size: clamp(35px, 40/768*100vw, 40px);
    font-family: "Arial", sans-serif;
    color: #333;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
}

.l-footer__contact__shop__tel i {
    margin-right: 5px;
}

.l-footer__contact__inquiry {
    margin-top: 15px;
}

.l-footer__contact__inquiry a {
    display: block;
    width: 100%;
    padding: 12px 0;
    color: #133b5c;
    text-align: center;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #133b5c;
}

.l-footer__contact__inquiry a:hover {
    color: #fff;
    background-color: #133b5c;
}

/* スマホ */
@media screen and (max-width: 400px) {
    .l-footer__info {
        text-align: center;
    }

    .l-footer__contact__shop__info {
        flex-direction: column-reverse;
        text-align: center;
    }
}

/* PC */
@media screen and (min-width: 768px) {
    .l-footer__inner {
        display: flex;
        justify-content: space-between;
        width: unset;
        max-width: 1140px;
        margin: 0 auto;
        padding: 20px 10px;
    }
    
    .l-footer__info {
        padding-top: 5px;
        width: 40%;
    }

    .l-footer__logo {
        font-size: clamp(25px, 25 / 1140 * 100vw, 35px);
    }

    .l-footer__logo img {
        width: 60%;
        margin-bottom: 0;
    }

    .l-footer__contact__shop__open {
        width: 45%;
    }

    .l-footer__info p {
        font-size: 17px;
    }

    .l-footer__contact__shop__tel a {
        font-size: clamp(30px, 35/1140*100vw, 40px);
    }
    
    .l-footer__contact {
        width: 50%;
        margin-top: 0;
    }

    .l-footer__contact__inquiry {
        margin-top: 10px;
    }

    .copyright {
        background-color: #1d2d50;
    }
}

/* フッターナビゲーション
==============================*/

.l-footer__nav {
    padding: 20px 10px;
    background-color: #fff;
}

.l-footer__nav__inner {
    padding: 0 8px
}

.l-footer__nav__inner ul {
    display: flex;
    flex-wrap: wrap;
}

.l-footer__nav__inner li:not(:last-child) {
    margin-right: 30px;
}

.l-footer__nav__inner li a {
    font-size: 15px;
    color: #000;
    text-decoration: none;
}

.l-footer__nav__inner li a::before {
    content: ">";
    margin-right: 3px;
}

/* PC */
@media screen and (min-width: 768px) { 
    .l-footer__nav__inner {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0;
    }
}

/* SP */
@media screen and (max-width:767px) {
    .btn__page_top {
        display: none !important;
    }
}