@charset "UTF-8"; 
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
追従　在庫管理
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.fixed_zaiko{
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 3000;
     opacity: 1; 
    overflow: visible;
    transition: .4s ease-in;
}

.fixed_zaiko p.txt a {
    font-size: 2.4rem;
    color: #fff;
    text-align: center;
    position: relative;
    background: #005abe;
    border: 4px solid #fff;
    width: 170px;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 41px;
    border-radius: 100%;
    line-height: 1.25;
}

.fixed_zaiko p.txt a::before {
    position: absolute;
    content: "";
    background: url("../images/common/car_zaiko.svg") no-repeat 50% / contain;
    width: 49px;
    height: 26px;
    top: 33px;
    left: 50%;
    transform: translateX(-50%);
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
汎用
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body {
  /* max-width: 1920px; */
  margin: 0 auto;
}

main{
  overflow: hidden;
}

.noimage {
    background: url("../images/common/thum_noimg.svg");
    border-radius: var(--boder_radius_img);
}

/***********************************************
汎用カラー
***********************************************/
.cmn_orange_color{
    color: var(--theme_m_color);
}

.cmn_green_color{
    color: var(--theme_s_color);
}

.cmn_blue_color{
    color: var(--theme_a_color);
}
/***********************************************
汎用ボタン
***********************************************/
p.complete_btn a{
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    background: var(--theme_m_color);
    display: table;
    min-width: 450px;
    letter-spacing: .1em;
    padding: 25px 46px 27px;
    border-radius: 60px;
    position: relative;
    border: 2px solid var(--theme_m_color);
    margin: 0 auto;
}

p.complete_btn a:hover {
	background: #fff;
	color:  var(--theme_m_color);
}

.cmn_btn a {
    font-size: 3.6rem;
    display: table;
    margin: 0 auto;
    min-width: 500px;
    text-align: center;
    border-radius: 70px;
    position: relative;
    padding: 18px 45px;
    border: 2px solid var(--theme_m_color);
    background: var(--theme_m_color);
    color: #fff;
}

.cmn_btn a:hover{
    background: #fff;
    color: var(--theme_m_color);
}

.cmn_btn a::after {
    content: '';
    position: absolute;
    background: url(../images/common/arrow_or.png) no-repeat 50% / 12px 21px #fff;
    border-radius: 100%;
    width: 45px;
    height: 45px;
    top: 50%;
    right: 35px;
    transform: translateY(-50%);
}

.cmn_btn a:hover::after{
    background-image: url(../images/common/arrow_w.png);
    background-color: var(--theme_m_color);
}

.cmn_btn02 a {
    letter-spacing: .06em;
    display: table;
    margin: 0 auto;
    min-width: 320px;
    text-align: center;
    border-radius: var(--boder_radius_btn);
    position: relative;
    padding: 20px 45px;
    border: 1px solid #c8c8c8;
	font-weight: bold;
}

.cmn_btn02 a:hover {
	color: #f39800;
}

.cmn_btn02 a::after {
    content: '';
    position: absolute;
    background: url(../images/common/arrow_w.png) no-repeat 50% / 10px 15px var(--theme_m_color);
    border-radius: 100%;
    width: 26px;
    height: 26px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

p.cmn_read_more {
    font-size: 2.4rem;
    letter-spacing: .06em;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 540px;
    margin: 60px auto 0;
    height: 100px;
    padding: 5px;
    border: 1px solid #c8c8c8;
    border-radius: 50px;
	font-weight: 800;
	transition: .2s ease-in;
}

p.cmn_read_more:hover{
	color: #f39800;
}


p.cmn_read_more::before{
    content: "＋";
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: var(--theme_m_color);
    border-radius: 100%;
    padding-left: 1px;
    font-size: 20px;
    padding-bottom: 1px;
    margin-right: 20px;
    margin-top: 3px;
    color: #fff;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
汎用タイトル
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
h2.cmn_ttl {
    margin-bottom: 50px;
}

h2.cmn_ttl > span {
    display: block;
    text-align: center;
}

h2.cmn_ttl span.en {
    color: var(--theme_m_color);
    font-size: 8rem;
    letter-spacing: .1em;
    font-weight: bold;
    line-height: 1.2;
}

h2.cmn_ttl span.ja {
    font-size: 2.6rem;
    font-weight: bold;
}

/***********************************************
お知らせ　汎用
***********************************************/
.cmn_post_list > div .area_a {
    margin-bottom: 22px;
}

.cmn_post_list > div .area_a p.img {
    border-radius: var(--boder_radius_img);
}

.cmn_post_list > div .area_b {
    padding: 0 20px;
}

.cmn_post_list > div .area_b .f_wrap {
    align-items: center;
    margin-bottom: 5px;
}

.cmn_post_list > div .area_b p.cat {
    background: var(--theme_m_color);
    color: #fff;
    min-width: 90px;
    text-align: center;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
}

.cmn_post_list > div .area_b p.date {
    font-size: 18px;
    color: #979797;
    margin-right: 25px;
}

.cmn_post_list > div .area_b h3.ttl a {
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 2rem;
    line-height: 1.75;
}

/**********************************
ヘッダー
**********************************/
header {
    padding: 45px calc(560px + 50px) 40px 54px;
}

header.contact_header {
    padding: 45px 54px 40px 54px;
}

header .h_inner ul.nav_menu {
    margin-top: -10px;
}

header ul li:not(:last-child) {
    margin-right: 40px;
}

header .h_inner ul.nav_menu li a {
    position: relative;
    padding-bottom: 10px;
	font-weight: 800;
}

header .h_inner ul.nav_menu li a:hover{
    color: var(--theme_m_color);
}

header .h_inner ul.nav_menu li a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 3px;
    background: var(--theme_m_color);
    bottom: 0;
    left: 0;
}

.logged-in header .h_inner .access_wrap{
	padding: 50px 30px 30px 35px;
}

header .h_inner .access_wrap {
    width: 560px;
    background: #ff1d90;
    border-bottom-left-radius: 30px;
    padding: 18px 30px 30px 35px;
    position: fixed;
    top: 0;
    right: 0;
}

header .h_inner .access_wrap .tel_wrap {
    justify-content: space-between;
    gap: 10px;
    align-items: flex-end;
    margin-bottom: 10px;
}

header .h_inner .access_wrap .tel_wrap p.btn.tel a {
    font-size: 3.6rem;
    font-weight: 600;
    color: #fff;
    padding-left: 27px;
    position: relative;
    letter-spacing: .04em;
}

header .h_inner .access_wrap .tel_wrap p.btn.tel a::before {
    position: absolute;
    content: "";
    background: url(../images/common/tel_white.png) no-repeat 50% / contain;
    width: 18px;
    height: 30px;
    top: 7px;
    left: 0;
}

header .h_inner .access_wrap .tel_wrap p.open {
    position: relative;
    color: #fff;
    padding-left: 30px;
    line-height: 1.4;
    position: relative;
    top: 7px;
}

header .h_inner .access_wrap .tel_wrap p.open::before {
    position: absolute;
    content: "";
    background: url(../images/common/time_white.png) no-repeat 50% / contain;
    width: 24px;
    height: 24px;
    top: 0;
    left: 0;
}

header .h_inner .access_wrap .tel_wrap p.open .close {
    font-size: 1.6rem;
    display: block;
}

header .h_inner .access_wrap .mail_wrap {
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

header .h_inner .access_wrap .mail_wrap p.btn.mail a {
    font-weight: bold;
    color: #ff1d90;
    background: #ffff00;
    border-radius: 30px;
    text-align: center;
    min-width: 300px;
    display: table;
    position: relative;
    padding: 11px 30px 11px 60px;
    border: 1px solid #ffff00;
}

header .h_inner .access_wrap .mail_wrap p.btn.mail a:hover {
    background: #ff1d90;
    color: #ffff00;
}

header .h_inner .access_wrap .mail_wrap p.btn.mail a::before {
    position: absolute;
    content: "";
    background: url(../images/common/mail_pink.png) no-repeat 50% / contain;
    width: 24px;
    height: 18px;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
}

header .h_inner .access_wrap .mail_wrap p.btn.mail a:hover::before{
    background-image: url(../images/common/mail_yellow.png);
}

header .h_inner .access_wrap .mail_wrap p.map a {
    position: relative;
    color: #fff;
    padding-left: 25px;
}

header .h_inner .access_wrap .mail_wrap p.map a:hover {
    opacity: .7;
}

header .h_inner .access_wrap .mail_wrap p.map a::before {
    position: absolute;
    content: "";
    background: url(../images/common/map_white.png) no-repeat 50% / contain;
    width: 17px;
    height: 26px;
    top: 0;
    left: 0;
}


/**********************************
スマホ固定
**********************************/
.sp_fixed_bottom {
    opacity: 0;
    visibility: hidden;
    width: 100%;
    bottom: -15px;
    left: 0;
    z-index: 1500;
    position: fixed;
    transition: .2s ease-in;
}

.sp_fixed_bottom.active {
    opacity: 1;
    visibility: visible;
}

.sp_fixed_bottom .sp_nav_menu02 {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.sp_fixed_bottom .sp_nav_menu02 li {
    list-style: none;
}

.sp_fixed_bottom .sp_nav_menu02 li a {
    font-size: 4.5333333vw;
    width: 41.333333vw;
    height: 20vw;
    border: .2rem solid #fff;
    border-radius: 2.6666666vw;
    background: var(--theme_m_color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/**********************************
よくある質問「カスタム」
**********************************/
.faq_wrap {
    max-width: 1100px;
    margin-inline: auto;
}

.faq_wrap .faq_item{
    opacity: 1;
}

.faq_wrap .faq_item:not(.is-hidden){
transition: .3s ease-in;
}

.faq_wrap .faq_item.is-hidden {
    opacity: 0;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: visible;
    position: relative;
    z-index: -1;
}
.faq_wrap .nav-open + nav {
    display: none;
}

.faq_wrap nav .inner {
    padding: 48px 92px 26px 30px;
}

.faq_wrap .nav-open {
    padding: 37px 90px 27px 90px;
    border-bottom: 1px solid #c8c8c8;
    position: relative;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.5;
	cursor: pointer;
}

.faq_wrap .nav-open::before {
    content: "Q";
    font-size: 4.2rem;
    font-weight: bold;
    font-family: "Open Sans", serif;
    vertical-align: -3px;
    color: #c8c8c8;
    margin-right: 20px;
    position: absolute;
    top: 35px;
    left: 30px;
    line-height: 1;
}

.faq_wrap nav .inner .txt_wrap {
    position: relative;
    padding-left: 55px;
    line-height: 2;
}


.faq_wrap nav .inner .txt_wrap::before {
    content: "A";
    font-size: 42px;
    font-weight: bold;
    font-family: "Open Sans", serif;
    vertical-align: -3px;
    margin-right: 20px;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
    color: var(--theme_m_color);
}

.faq_wrap .nav-open::after {
    /* 閉じている時 */
    content: "＋";
    position: absolute;
    font-size: 1.2em;
    top: calc(50% - .6em);
    right: 27px;
}

.faq_wrap .nav-open.active::after {
    /* 開いている時 */
    content: "－";
}

/**********************************
店舗情報
**********************************/
#shop_info {
}

#shop_info .bg_wrap {
    position: relative;
    min-height: 910px;
    background: url(../images/common/shop_bg.jpg) no-repeat 50% / cover;
    position: relative;
    z-index: 0;
    color: #fff;
}

#shop_info .bg_wrap::after {
    position: absolute;
    content: "";
    background: url(../images/common/shop_bg_op.png) no-repeat 50% / cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#shop_info.kugiri_m {
    padding: 50px 0 140px;
}

#shop_info .inner {
    padding: 135px 0;
    max-width: 1100px;
    margin: 0 auto;
}

#shop_info .inner .txt_area {
    width: 480px;
}

#shop_info .inner .txt_area p.logo {
    margin-bottom: 12px;
}

#shop_info .inner .txt_area p.shop_name {
    font-size: 2.6rem;
    font-weight: bold;
    margin-bottom: 13px;
}

#shop_info .inner .txt_area p.addr {
    font-size: 2rem;
}

#shop_info .inner .txt_area p.tel {
    font-size: 2.4rem;
    margin-bottom: 35px;
}

#shop_info .inner .txt_area .btn_wrap {
    gap: 20px;
    margin-bottom: 40px;
}

#shop_info .inner .txt_area .btn_wrap p.btn a {
    min-width: 220px;
    font-size: 1.8rem;
    padding: 12px 42px 14px 22px;
    text-align: left;
}

#shop_info .inner .txt_area .btn_wrap p.btn a::after {
    width: 20px;
    height: 20px;
    background-size: 5px 10px;
    right: 20px;
}

#shop_info .inner .txt_area .hours dl {
    margin-bottom: 14px;
    align-items: center;
}

#shop_info .inner .txt_area .hours dl dt {
    font-size: 20px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 8px;
    margin-right: 20px;
    min-width: 116px;
    padding: 7px 10px;
    text-align: center;
}

#shop_info .inner .txt_area .hours dl dd {
    font-size: 24px;
}

#shop_info .inner .map_wrap {
    position: absolute;
    top: 45px;
    right: calc(50% - 835px);
}

#shop_info .inner .map {
    position: relative;
}

#shop_info .inner .map iframe {
    overflow: hidden;
    border-radius: 60px;
}
/**********************************
お問い合わせ
**********************************/
#contact_area {
    margin-top: -325px;
    padding: 0;
}

#contact_area .inner {
    border-radius: 60px;
    max-width: 1840px;
    margin: 0 auto;
    background: url(../images/common/f_offer01.png) no-repeat left 170px bottom 0px / 320px 415px #ff1d90;
    position: relative;
    min-height: 460px;
    padding: 60px 0 0;
}

#contact_area .inner::after {
    position: absolute;
    content: "";
    background: url(../images/common/f_offer_deco01.png) no-repeat 50% / contain;
    width: 242px;
    height: 366px;
    bottom: -20px;
    right: calc(50% - 725px);
}

#contact_area .inner h2.main_ttl {
    text-align: center;
}

#contact_area .inner h2.main_ttl img {
    max-width: 704px;
    width: 100%;
    margin-bottom: 45px;
}

#contact_area .inner .btn_wrap {
    max-width: 990px;
    margin: 0 auto;
    justify-content: space-between;
    gap: 10px;
}

#contact_area .inner .btn_wrap p.btn a {
    width: 480px;
    text-align: center;
    border-radius: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 160px;
}

#contact_area .inner .btn_wrap p.btn.tel a {
    background: #fff;
    flex-direction: column;
}

#contact_area .inner .btn_wrap p.btn.tel a span.num {
    font-size: 4.6rem;
    font-weight: 600;
    color: #ff1d90;
    letter-spacing: .04em;
    display: block;
    position: relative;
    line-height: 1;
    padding-left: 35px;
    margin-bottom: 0;
}

#contact_area .inner .btn_wrap p.btn.tel a span.num::before {
    position: absolute;
    content: "";
    background: url(../images/common/tel_pink.png) no-repeat 50% / contain;
    width: 24px;
    height: 40px;
    top: 0;
    left: 0;
}

#contact_area .inner .btn_wrap p.btn.tel a span.open {
    font-size: 2.2rem;
    padding-right: 30px;
}

#contact_area .inner .btn_wrap p.btn.mail a {
    position: relative;
    background: #ffff00;
    color: #ff1d90;
    font-size: 3.6rem;
    text-align: left;
    line-height: 1.25;
    padding-left: 48px;
    font-weight: 700;
	border: 2px solid #ffff00;
}

#contact_area .inner .btn_wrap p.btn.mail a:hover{
	background: #ff1d90;
	color: #ffff00;
}

#contact_area .inner .btn_wrap p.btn.mail a::before {
    position: absolute;
    content: "";
    background: url(../images/common/mail_pink.png) no-repeat 50% / contain;
    width: 32px;
    height: 24px;
    top: 50%;
    left: 86px;
    transform: translateY(-50%);
	transition: .2s ease-in;
}
#contact_area .inner .btn_wrap p.btn.mail a:hover::before {
	background-image: url("../images/common/mail_yellow.png");
	
}
/**********************************
フッター
**********************************/
footer {
    background: transparent;
    padding: 80px 0;
	position: relative;
}

footer .f_inner p.logo {
    text-align: center;
    margin-bottom: -10px;
}

footer .f_inner p.logo img {
    max-width: 246px;
}

footer .f_inner .f_box {
    justify-content: center;
    gap: 90px;
    align-items: flex-end;
    margin-bottom: 45px;
}

.cmn_sns_area{
	max-width: 700px;
}

.cmn_sns_area h3.ttl_wrap {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-left: 130px;
    margin-bottom: -25px;
}

.cmn_sns_area h3.ttl_wrap .deco{
    position: relative;
    top: 30px;
    z-index: -1;
}

.cmn_sns_area h3.ttl_wrap .deco img {
    max-width: 75px;
}

.cmn_sns_area h3.ttl_wrap .ttl img {
    max-width: 252px;
}

.cmn_sns_area ul.sns_items {
    gap: 30px;
}

.cmn_sns_area ul.sns_items li a img {
    width: 335px;
}

footer .f_inner .f_box ul.f_nav_list {
    height: 200px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px 60px;
    position: relative;
    bottom: -8px;
}

footer .f_inner .f_box ul.f_nav_list li a {
    font-size: 1.8rem;
    position: relative;
    padding-left: 20px;
}

footer .f_inner .f_box ul.f_nav_list li a::before {
    position: absolute;
    content: "";
    background: url(../images/common/arrow_or.png) no-repeat 50% / contain;
    width: 9px;
    height: 14px;
    top: 8px;
    left: 0;
}

footer .parent_logo {
    text-align: center;
    margin-bottom: 80px;
}

footer .parent_logo p.txt {
    font-size: 26px;
    margin-bottom: 25px;
}

footer .parent_logo p.chubu_logo {
}

footer .f_inner .f_bottom_item {
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
}

footer .f_inner .f_bottom_item p.privacy a {
    font-size: 1.6rem;
    color: #979797;
}

footer .f_inner .f_bottom_item p.copyright {
    font-size: 1.6rem;
    color: #979797;
}

footer p.floating{
	position: fixed;
	bottom: 50px;
	right: 30px;
	z-index: 500;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ノート対策
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (min-width: 751px) and (max-width: 1600px) {
    header {
        padding-right: 480px;
    }

    .h_inner .logo {
        width: 250px;
    }

    header ul li:not(:last-child) {
        margin-right: 20px;
    }

    header .h_inner ul.nav_menu li a {
        font-size: 1.5rem;
    }

    .logged-in header .h_inner .access_wrap {
        padding: 40px 30px 20px 35px;
    }

    header .h_inner .access_wrap {
        width: 450px;
    }

    header .h_inner .access_wrap .tel_wrap p.btn.tel a {
        font-size: 2.6rem;
    }

    header .h_inner .access_wrap .tel_wrap p.btn.tel a::before {
        width: 14px;
        height: 20px;
    }

    header .h_inner .access_wrap .tel_wrap p.open {
        font-size: 1.6rem;
    }

    header .h_inner .access_wrap .tel_wrap p.open::before {
        width: 20px;
        height: 20px;
    }

    header .h_inner .access_wrap .tel_wrap p.open .close {
        font-size: 1.2rem;
    }

    header .h_inner .access_wrap .mail_wrap p.btn.mail a {
        min-width: 200px;
        font-size: 1.6rem;
        padding: 11px 30px 11px 45px;
    }

    header .h_inner .access_wrap .mail_wrap p.btn.mail a::before {
        width: 16px;
        height: 12px;
        left: 20px;
    }

    header .h_inner .access_wrap .mail_wrap p.map a {
        font-size: 1.6rem;
    }

    header .h_inner .access_wrap .mail_wrap p.map a::before {
        width: 15px;
        height: 22px;
    }
	
    /**********************************
店舗情報
**********************************/
    #shop_info .inner .map_wrap {
        right: calc(50% - 595px);
    }

    #shop_info .inner .map iframe {
        width: 600px;
        height: 470px;
    }

    /**********************************
お問い合わせ
**********************************/
    #contact_area .inner {
        background: url(../images/common/f_offer01.png) no-repeat left 20px bottom 0px / 240px 335px #ff1d90;
    }

    #contact_area .inner::after {
        width: 202px;
        height: 306px;
        right: calc(50% - 675px);
    }

    #contact_area .inner h2.main_ttl img {
        width: 560px;
    }

    .fixed_zaiko p.txt a {
        width: 140px;
        height: 140px;
        font-size: 2rem;
    }

    .fixed_zaiko p.txt a::before {
        width: 42px;
        height: 23px;
    }
}

