@charset "UTF-8";
/* CSS Document */

/*
    Theme Name: スマイル便_WebSite
    Version: 1.0
*/
@import url("css/home.css");
@import url("css/page.css");
@import url("css/archive.css");
@import url("css/single.css");

/*********************************************
initialize
*********************************************/
*{
    padding:0;
    margin:0;
    box-sizing:border-box;
    }
h1,h2,h3,h4 {
    font-size: 1rem;
    margin: 0;
    padding: 0;
}
body,html{
    font-size:16px;
    font-family: 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', Quicksand, 游ゴシック体, 'Yu Gothic', YuGothic, メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    color: #333;
    }
a:hover img{
    opacity:0.8;
    }
img{
    border:none;
    outline:none !important;
    height:auto;
    display: block;
    width: 100%
    }
ul>li{
	list-style:none;
	}
p{
    margin: 0;
}
a {
    text-decoration: none;
}
.flex {
    display: flex;
    flex-wrap: wrap;
}
.flex_btw {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.flex_cnt {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
/* -------------------------- */

/* LINK */

/* -------------------------- */
a:link {
	color: #444444;
	text-decoration: none;
}

a:visited {
	color: #444444;
	text-decoration: none;
}

a:hover {
	color: #444444;
	text-decoration: none;
	opacity: 0.5;
}

a:active {
	color: #444444;
	text-decoration: none;
}

p a:link, dl a:link {
	color: #e5270e;
	text-decoration: u;
}

p a:visited, dl a:visited {
	color: #e5270e;
	text-decoration: none;
}

p a:hover, dl a:hover {
	color: #e5270e;
	text-decoration: none;
}

p a:active, dl a:hover {
	color: #e5270e;
	text-decoration: none;
}

/*********************************************
IE alert
*********************************************/
.ie_alert{
    position: fixed;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background: rgb(196, 52, 52); /* rgba未対応の古いIE用 */
    background: rgba(196, 52, 52, 0.95);
    text-align: center;
    padding: 10% 0;
    z-index: 1000;
    color: #fff;
}
.ie_alert span p a{
    color: #fff;
}
.ie_alert span{
    display: block;
    font-size: 50px;
}
.ie_alert span p{
    font-size: 20px;
}
.ie_alert a{
    display: inline-block;
    font-size: 16px;
    margin-top: 20px;
    padding: 8px 80px;
    border: solid 1px #fff;
    color: #fff;
}
.ie_alert a:hover{
    background: rgba(255,255,255,0.1);
}
/*********************************************
header
*********************************************/
/*----- New header -----*/
@media (max-width:1169px) {
    .pc_view {
        display: none;
    }
    .mobile_view {
        height: 43px;
        margin-bottom: 5px;
    }
    .mobile_view header {
        position: absolute;
    }
    /* ---------------------
    ハンバーガーメニュー
    --------------------- */
    #nav-open {
        display: inline-block;
        vertical-align: middle;
        background-color: #000;
        width: 40px;
        height: 40px;
        right: 3px;
        top: 3px;
        position: fixed;
        z-index: 9999;/*最前面*/
    }

    /* ハンバーガーアイコンをCSSだけで表現 */
    .mobile_view #nav-open span, #nav-open span:before, #nav-open span:after {
        position: absolute;
        transition: all 0.4s;
        height: 3px;/*線の太さ*/
        width: 25px;/*長さ*/
        border-radius: 3px;
        background: #fff;
        display: block;
        content: '';
        cursor: pointer;
        z-index: 9998;/*最前面*/
        margin-top: 10px;
        margin-left: 7px;
    }

    .mobile_view #nav-open span:before {
        bottom: -7px;
        left: -7px;
    }

    .mobile_view #nav-open span:after {
        bottom: -14px;
        left: -7px;    }

    /*中身*/
    .mobile_view #nav-content {
        display: none;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        transition: .2s ease-in-out;
    }

    .mobile_view #nav-content.open {
        display: block;
        opacity: 1;
        overflow: auto;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9997;
        width: 100%;
        height: 100%;
        background: rgba(50, 50, 50, 0.9);/*背景色*/
      overflow: hidden;/*ブラー効果でボヤけた部分を非表示*/
    }

    /*:beforeにぼかし効果を設定する*/
    .mobile_view #nav-content.open:before {
        content: '';
        overflow: hidden;
        -webkit-filter: blur(10px);
        -moz-filter: blur(10px);
        -o-filter: blur(10px);
        -ms-filter: blur(10px);
        filter: blur(10px);
        z-index: -1;/*重なり順序を一番下にしておく*/
    }

    /*チェックが入ったら表示する内容*/
    .mobile_view .hamburger-top {
        height: 40px;/*×ボタンと被らないように*/
    }

    .mobile_view .page {
        width: 80%;
        margin: 3rem auto 0;
    }

    .mobile_view .page-title {
        padding: 0.5rem;
        border-bottom: solid 1px #fff;
    }

    .mobile_view .page-title a {
        color: #fff;
        text-decoration: none;
    }

    /*三本線を動かす*/
    .mobile_view #nav-open.active span {
        -webkit-transform: translateY(8px) rotate(-45deg);
        transform: translateY(8px) rotate(-45deg);
    }

    .mobile_view #nav-open.active span:before {
        -webkit-transform: translateY(-8px) rotate(45deg);/*打ち消す*/
        transform: translateY(-8px) rotate(45deg);/*打ち消す*/
        opacity: 0;
    }

    .mobile_view #nav-open.active span:after {
        -webkit-transform: translateY(-16px) rotate(45deg);
        transform: translateY(-14px) rotate(90deg);
    }
    .mobile_view .logo {
        display: inline-block;
        width: 52%;
        margin-top: 3px;
    }
    .mobile_view .logo img {
    }
    .mobile_view .tel_btn {
        display: inline-block;
        width: 35%;
    }
    h1.header_h1{
        font-size: 9px;
        padding: 3px;
        background-color: #e4e4e4;

    }
}
@media (min-width:1170px) {
    .mobile_view {
        display: none;
    }
    .pc_view {
        width: 100%;
        border-bottom: 3px solid #F00;
    }
    .pc_view::after {
       content: "";
       display: block;
       clear: both;
    }
    .pc_view header {
        width: 1170px;
        margin: 0 auto;
    }
    .pc_view header .headerTop {
        width: 100%;
        margin-bottom: 5px;
    }
    .pc_view header .headerTop .dsc {
        font-size: 16px;
        font-weight: 600;
        width: 100%;
        height: 20px;
    }
    .pc_view header .headerTop .logo {
        width: 350px;
        height: auto;
        float: left;
    }
    .pc_view header .headerTop .contact_btn {
        width: 150px;
        height: auto;
        float: right;
    }
    .pc_view header .headerTop .request_btn {
        width: 150px;
        height: auto;
        float: right;
        margin: 0 5px 0 0;
    }
    .pc_view header .headerTop .tel_btn {
        width: 250px;
        height: auto;
        float: right;
        margin: 0 5px 0 0;
    }
    .pc_view header nav {
        clear: both;
    }
    h1.header_h1 {
        padding: 8px 0;
        font-size: 0.75em;
        width: 100%;
    }
    .pc_view nav {
        width: 100%;
        height: auto;
    }
    .pc_view nav ul {
        padding: 5px 0;
        display: block;
    }
    .pc_view nav ul li {
        float: left;
        text-align: center;
        width: 167px;
        border-left: 1px dashed #EF6A04;
    }
    .pc_view nav ul li:last-child {
        border-right: 1px dashed #EF6A04;
        width: 168px;
    }
    .pc_view nav ul li a {
        display: block;
        font-size: 16px;
        line-height: 35px;
        color: #000;
        font-weight: 600;
        width: 100%;
        height: 35px;
    }
}
/*********************************************
container
*********************************************/
.container {}
@media (min-width:480px) {
    .container {
        width: 1170px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row-reverse;
        justify-content: space-between;
    }
}

/*********************************************
main
*********************************************/
main {}
@media (min-width:480px) {
    main {
        width: 870px;

    }
}
/*********************************************
main front-page用
*********************************************/
.main-wide {}
@media (min-width:480px) {
    .main-wide {
        width: 1170px!important;

    }
}

/*********************************************
sidebar
*********************************************/
@media (max-width:479px){
    .sidebar {
        width: 100%;
        float: none;
        margin: 0px auto;
    }
    .sidebar .productsList {
        display: none;
    }
    .sidebar .shopInfo {
        border: solid 3px #000000;
        display: block;
        width: 46%;
        height: auto;
        background: url(images/common/leftArea_shopInfo_bg.png) no-repeat right 65% #facd00;
        margin: 0 7px 30px 7px;
        float: left;
        font-size: 0.85rem;
    }
    .sidebar .shopInfo .feature {
        height: auto;
    }
    .sidebar .shopInfo.comingsoon{
        display:block;
    }
    .sidebar .subLink {
        clear: both;
    }
    .sidebar .subLink li a {
        margin-bottom: 10px;
        display: block;
        text-indent: -9999px;
        background-repeat: no-repeat;
        border: none;
        -webkit-box-shadow: 0 0px 0px 0px #ffffff;
        -moz-box-shadow: 0 0px 0px 0px #ffffff;
        box-shadow: 0 0px 0px 0px #ffffff;
        font-size: 10px;
    }
    .sidebar .subLink li:nth-of-type(1) a {
        background: url(images/common/leftArea_subLink_btn01SMP.png);
        width: 100%;
        height: 75px;
    }
    .sidebar .subLink li:nth-of-type(2) a {
        background: url(images/common/leftArea_subLink_btn02SMP.png);
        width: 100%;
        height: 95px;
    }
    .sidebar .subLink li:nth-of-type(3) a {
        background: url(images/common/leftArea_subLink_btn03SMP.png);
        width: 100%;
        height: 75px;
    }
    .sidebar .subLink li:nth-of-type(4) a {
        background: url(images/common/leftArea_subLink_btn04SMP.png);
        width: 100%;
        height: 75px;
    }
    .sidebar .shopInfo .tel a {
        display: block;
        clear: both;
        background: #000000;
        color: #facd00;
        padding: 5px;
        font-weight: bold;
        font-size: 18px;
        line-height: 18px;
    }

}

@media (min-width:480px) {
    .sidebar {
        width: 270px;
        margin-right: 30px;
    }
    .sidebar .productsList {
        margin: 0 0 30px 0;
    }
    .sidebar .productsList h2 {
    width: 270px;
    height: 65px;
    background: url(images/common/leftArea_productsList_h2.png);
    margin: 0 0 10px 0;
    display: block;
    text-indent: -9999px;
    background-repeat: no-repeat;
    }

     .sidebar .productsList {
        margin: 0 0 30px 0;
    }
    .sidebar .productsList h2 {
        width: 270px;
        height: 65px;
        background: url(images/common/leftArea_productsList_h2.png);
        margin: 0 0 10px 0;
        display: block;
        text-indent: -9999px;
        background-repeat: no-repeat;
    }
    .sidebar .productsList ul li {
        width: 270px;
        height: 68px;
        font-weight: bold;
        border: solid 1px #d9d9d9;
        border-bottom: solid 7px #d9d9d9;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        overflow: hidden;
    }
    .sidebar .productsList ul li img {
        width: auto;
        height: 68px;
        display: block;
    }
    .sidebar .productsList ul li span {
        width: 160px;
        height: 68px;
        display: inline-block;
        font-weight: bold;
        padding-top: 20px;
        font-size: 14px;
        line-height: 22px;
        overflow: hidden;
    }
    .sidebar .shopInfo {
        border: solid 3px #000000;
        display: block;
        width: 270px;
        height: auto;
        background: url(images/common/leftArea_shopInfo_bg.png) no-repeat right 65% #facd00;
        margin: 0 0 30px 0;
    }
    .sidebar .shopInfo img {
        width: 265px;
    }
    .sidebar .shopInfo h2 {
        font-size: 14px;
        font-weight: bold;
        margin: 15px 0 10px 15px;
    }
    .sidebar .shopInfo h2 em {
        font-size: 23px;
        font-weight: bold;
        display: block;
        line-height: 1.1;
        margin-top: 2px;
    }
    .sidebar .shopInfo .access {
        margin: 0 0 15px 15px;
        line-height: 1.3;
        font-size: 15px;
    }
    .sidebar .shopInfo .access a {
        color: #e5270e;
    }
    .sidebar .shopInfo dl {
        margin: 0 0 20px 15px;
        font-size: 15px;
        display: block;
        height: 35px;
    }
    .sidebar .shopInfo dl dt {
        font-weight: bold;
        float: left;
        width: 75px;
        margin-bottom: 10px;
    }
    .sidebar .shopInfo dl dd {
        float: left;
        width: 160px;
        font-weight: normal;
        margin-bottom: 10px;
    }
    .sidebar .shopInfo .tel a {
        display: block;
        clear: both;
        background: url(images/common/leftArea_shopInfo_icoTel.png) 15px 18px #000000 no-repeat;
        color: #facd00;
        padding: 20px 0 20px 55px;
        font-weight: bold;
        font-size: 24px;
        line-height: 24px;
    }
    .sidebar .shopInfo.comingsoon{
        display:none;
    }

    .sidebar .subLink li a {
        width: 270px;
        height: 115px;
        margin-bottom: 15px;
        display: block;
        text-indent: -9999px;
        background-repeat: no-repeat;
        border: solid 1px #000000;
        -webkit-box-shadow: 0 5px 0px 0px #d9d9d9;
        -moz-box-shadow: 0 5px 0px 0px #d9d9d9;
        box-shadow: 0 5px 0px 0px #d9d9d9;
    }
    .sidebar .subLink li:nth-of-type(1) a {
        background: url(images/common/leftArea_subLink_btn01.png)
    }
    .sidebar .subLink li:nth-of-type(2) a {
        background: url(images/common/leftArea_subLink_btn02.png)
    }
    .sidebar .subLink li:nth-of-type(3) a {
        background: url(images/common/leftArea_subLink_btn03.png)
    }
    .sidebar .subLink li:nth-of-type(4) a {
        background: url(images/common/leftArea_subLink_btn04.png)
    }
}
.sidebar .shopInfo .feature .shop_link {
    width: 95%;
    margin: 30px auto 5px auto;
}
.sidebar .shopInfo .feature .shop_link a.link_btn {
    display: block;
    padding: 8px;
    text-align: center;
    background-color: #CE1F21;
    color: #FFF;
    font-weight: 400;
    border-radius: 4px;
}
@media (max-width:479px) {
    .sidebar .shopInfo .feature .shop_link a.link_btn {
        font-size: 10px;
    }
}

/*********************************************
buyArea
*********************************************/
@media (max-width:479px) {
    main .common_inquery .buyArea {
        margin-bottom: 0px;
        background: none;
        padding: 0 0 15px 0;
    }
    main .common_inquery .buyArea p img {
        display: none;
    }
    main .common_inquery .buyArea h2 {
        background: url(images/top/buyArea_h2.png);
        width: 287px;
        height: 48px;
        margin: 0 0 25px 0;
        display: block;
        text-indent: -9999px;
        background-repeat: no-repeat;
    }
    main .common_inquery .buyArea h3 {
        margin: 0 0 10px 0;
        display: inline-block;
        background: #000000;
        padding: 10px 15px;
        color: #ffffff;
        font-size: 20px;
        font-weight: bold;
    }
    main .common_inquery .buyArea p.list {
        margin: 0 0 25px 0;
        width: 100%;
        display: block;
        line-height: 1.2;
        font-weight: bold;
    }
}

@media (min-width:480px) {
    main .common_inquery .buyArea {
        margin-bottom: 30px;
        background: url(images/top/buyArea_bg.png) bottom no-repeat;
        padding: 0 0 15px 0;
    }
    main .common_inquery .buyArea h2 {
        background: url(images/top/buyArea_h2.png);
        width: 287px;
        height: 48px;
        margin: 0 0 25px 35px;
        display: block;
        text-indent: -9999px;
        background-repeat: no-repeat;
    }
    main .common_inquery .buyArea h3 {
        margin: 0 0 10px 35px;
        display: inline-block;
        background: #000000;
        padding: 10px 15px;
        color: #ffffff;
        font-size: 20px;
        font-weight: bold;
    }
    main .common_inquery .buyArea p.list {
        margin: 0 0 25px 35px;
        width: 800px;
        display: block;
        line-height: 1.2;
        font-weight: bold;
    }
}
/*********************************************
footer
*********************************************/
@media (min-width:479px) {
    .movMenuBtn{
        display: none;
    }
}
@media (max-width:478px) {
    .movMenuBtn {
        background-color:rgba(0, 0, 0, 0.5);;
		position:fixed;
		bottom:0;
		width:100%;
        height: 60px;
    }
    .movMenuBtn ul {
        width: 98%;
        margin: 5px auto 0;
    }
    .movMenuBtn .btn1,
    .movMenuBtn .btn2,
    .movMenuBtn .btn3 {
        display: inline-block;
        width: 49%;
    }
    .movMenuBtn .btn2 {}
    .movMenuBtn .btn3 {}
    footer {
        display: block;
        clear: both;
        padding: 50px 0 0 0;
        background:#FCEEAF;
        margin:50px 0 0;
    }
    footer .inner{
        width:100%;
        margin:auto;
        padding:10px;
    }
    footer .inner .logo{
        height: 50px;
        width: 80%;
        background: url(images/header/h1_logo.png) no-repeat;
        background-size:100%;
        display: block;
        text-indent: -9999px;
        background-repeat: no-repeat;
        margin:0 auto;
    }
    footer .inner .application{
        float:none;
        margin:30px;
        width: 85%;
        height: 50px;
        display: block;
        text-indent: -9999px;
        background: url(images/item/under/itemFeature_btn.png) no-repeat;
        background-size:100%;
    }
    footer .inner .freedial{
        float:none;
        width:100%;
        height:auto;
        margin:0 auto 30px;
        text-align:center;
    }
    footer .inner .freedial dl{
        display:block;
        width:100%;
    }
    footer .inner .freedial dl dt{
        display:block;
        width:100%;
        height:auto;
        padding:10px;
    }
    footer .inner .freedial dl dd{
        display:block;
        width:100%;
        height:auto;
        padding:10px;
    }
    footer .inner .shopList{
        clear:both;
        overflow:hidden;
        line-height:1.8em;
    }
    footer .inner .shopList dl{
        float:none;
        width:100%;
        margin:0 10px 30px;
    }
    footer .inner .link{
        text-align:center;
        margin:0 0 30px;
    }
    footer .inner .link a{
        color:#333;
    }
}
@media (min-width:480px) {
    footer {
        display: block;
        clear: both;
        padding: 50px 0 0 0;
    /*	background:#FACD00;*/
        background:#FCEEAF;
        margin:50px 0 0;
    }
    footer .inner{
        width:1170px;
        margin:auto;
    }
    footer .inner .logo{
        width: 400px;
        height: 75px;
        background: url(images/header/h1_logo.png);
        background-size:100%;
        display: block;
        text-indent: -9999px;
        background-repeat: no-repeat;
    }
    footer .inner .application{
        float:left;
        margin:0 50px 50px 0;
        width: 560px;
        height: 82px;
        display: block;
        text-indent: -9999px;
        background: url(images/item/under/itemFeature_btn.png);
        background-size:100%;
    }
    footer .inner .freedial{
        float:right;
        width:560px;
        height:82px;
        text-align:center;
    }
    footer .inner .freedial dl{
        display:table;
        width:100%;
    }
    footer .inner .freedial dl dt{
        display:table-cell;
        width:33%;
        height:82px;
        margin:0;
        padding:0;
        background:#FACD00;
        border:2px solid #000;
        color:#000;
        font-size:1.3em;
        font-weight:bold;
        vertical-align:middle;
    }
    footer .inner .freedial dl dd{
        display:table-cell;
        width:67%;
        height:82px;
        background:#000;
        color:#F20007;
        font-size:2em;
        vertical-align:middle;
    }
    footer .inner .freedial dl dd span{
        display:block;
        color:#333333;
        padding-top: 0.5em;
        font-size:0.5em;
      text-indent: 3em;
    }
    footer .inner .shopList{
        clear:both;
        overflow:hidden;
        line-height:1.8em;
    }
    footer .inner .shopList dl{
        float:left;
        width:370px;
        margin:0 30px 30px 0;
    }
    footer .inner .shopList dl:last-child{
        margin:0 0 30px;
    }
    footer .inner .shopList dl dt{
        margin:0 0 5px 0;
        padding:0;
        font-weight:bold;
        font-size:1.45em;
    }
    footer .inner .shopList dl dd{
        font-size:1.1em;
    }
    footer .inner .shopList dl dd .tel{
        display:block;
        background:#000 url(images/common/leftArea_shopInfo_icoTel.png) no-repeat 55px center;
        color:#FACD00;
        padding:10px 0 10px 40px;
        text-align:center;
        font-size:1.5em;
        font-weight:bold;
    }
    footer .inner .shopList dl dd .tel a{
        color:#FACD00;
    }
    footer .inner .link{
        text-align:center;
        margin:0 0 30px;
    }
    footer .inner .link a{
        color:#333;
    }

    footer p.copyright {
        background: #000000;
        text-align: center;
        color: #ffffff;
        font-size: 14px;
        padding: 30px 0;
        width: 100%;
        clear: both;
    }
}

/*********************************************
under
*********************************************/
  main .clumb {
      margin: 0 0 15px 0;
      display: block;
      width: 100%;
      text-align: left;
  }
  main p {
      line-height: 1.5;
  }
  main .notfound {
      padding: 60px 0 0 0;
      text-align: center;
  }
  main .notfound h1 {
      font-size: 30px;
      font-weight: bold;
      margin-bottom: 30px;
      color: #ff0000;
  }
  main .flow h2 {
      background: url(images/beginner/flow_h2.png);
      width: 870px;
      height: 60px;
      margin: 0 0 40px 0;
      display: block;
      text-indent: -9999px;
      background-repeat: no-repeat;
      background-position: center;
  }
  main .flow ol li {
      display: block;
      width: 870px;
      padding: 0 0 0 230px;
      height: 273px;
      font-weight: bold;
      line-height: 1.5;
  }
  main .flow ol li:nth-of-type(1) {
      background: url(images/beginner/flow_01_img.png) top left no-repeat;
  }
  main .flow ol li:nth-of-type(2) {
      background: url(images/beginner/flow_02_img.png) top left no-repeat;
  }
  main .flow ol li:nth-of-type(3) {
      background: url(images/beginner/flow_03_img.png) top left no-repeat;
  }
  main .flow ol li:nth-of-type(4) {
      background: url(images/beginner/flow_04_img.png) top left no-repeat;
      height: 210px;
      margin-bottom: 45px;
  }
  main .flow ol li:nth-of-type(1) strong {
      background: url(images/beginner/flow_01_st.png) top left no-repeat;
      display: block;
      margin-bottom: 15px;
      width: 450px;
      height: 58px;
      text-indent: -9999px;
  }
  main .flow ol li:nth-of-type(2) strong {
      background: url(images/beginner/flow_02_st.png) top left no-repeat;
      display: block;
      margin-bottom: 15px;
      width: 450px;
      height: 58px;
      text-indent: -9999px;
  }
  main .flow ol li:nth-of-type(3) strong {
      background: url(images/beginner/flow_03_st.png) top left no-repeat;
      display: block;
      margin-bottom: 15px;
      width: 450px;
      height: 58px;
      text-indent: -9999px;
  }
  main .flow ol li:nth-of-type(4) strong {
      background: url(images/beginner/flow_04_st.png) top left no-repeat;
      display: block;
      margin-bottom: 15px;
      width: 450px;
      height: 58px;
      text-indent: -9999px;
  }
  main .flow p.caution {
      font-size: 12px;
  }
  @media (max-width:479px) {
      main .flow h2 {
          background: url(images/beginner/flow_h2.png);
          width: 100%;
          background-size: contain;
          height: 60px;
          margin: 0 0 40px 0;
          display: block;
          text-indent: -9999px;
          background-repeat: no-repeat;
          background-position: center;
      }
      main .flow ol li {
          display: block;
          width: 100%;
          padding: 0;
          height: auto;
          font-weight: bold;
          line-height: 1.5;
          margin-bottom: 20px;
      }
      main .flow ol li:nth-of-type(1) {
          background: none;
      }
      main .flow ol li:nth-of-type(2) {
          background: none;
      }
      main .flow ol li:nth-of-type(3) {
          background: none;
      }
      main .flow ol li:nth-of-type(4) {
          background: none;
      }
      main .flow ol li:nth-of-type(1) strong {
          background: url(images/beginner/flow_01_st.png) top left no-repeat;
          display: block;
          margin-bottom: 15px;
          width: 100%;
          height: 50px;
          text-indent: -9999px;
          background-size: contain;
      }
      main .flow ol li:nth-of-type(2) strong {
          background: url(images/beginner/flow_02_st.png) top left no-repeat;
          display: block;
          margin-bottom: 15px;
          width: 100%;
          height: 50px;
          text-indent: -9999px;
          background-size: contain;
      }
      main .flow ol li:nth-of-type(3) strong {
          background: url(images/beginner/flow_03_st.png) top left no-repeat;
          display: block;
          margin-bottom: 15px;
          width: 100%;
          height: 50px;
          text-indent: -9999px;
          background-size: contain;
      }
      main .flow ol li:nth-of-type(4) strong {
          background: url(images/beginner/flow_04_st.png) top left no-repeat;
          display: block;
          margin-bottom: 15px;
          width: 100%;
          height: 50px;
          text-indent: -9999px;
          background-size: contain;
      }

  }

/*********************************************
共通お問い合わせエリア
*********************************************/
main .common_inquery .inquiryBox h2 {
	background: url(images/item/under/inquiryBox_h2.png);
	width: 870px;
	height: 38px;
	margin: 0 0 40px 0;
	display: block;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: center;
}
main .common_inquery .inquiryBox .inquiryInfo {
	border: solid 3px #000000;
	/*background: #facd00;*/
	background: #FCEEAF;
	text-align: center;
	/*width: 420px;*/
	width:100%;
	margin-bottom: 30px;
}
main .common_inquery .inquiryBox .inquiryInfo h3 {
	margin: 15px 0;
}
main .common_inquery .inquiryBox .inquiryInfo h3 em {
	font-size: 25px;
	font-weight: bold;
	display: block;
}
main .common_inquery .inquiryBox .inquiryInfo p.tel a {
	color: #facd00;
	width: 100%;
	display: block;
	padding: 15px 0 15px 80px;
	font-size: 35px;
	font-weight: bold;
/*	background: url(images/common/leftArea_shopInfo_icoTel.png) no-repeat 170px 20px #000000;*/
	background: #000000 url(images/ico/freedial.png) no-repeat scroll 130px 24px;
}

main .common_inquery .inquiryBox .inquiryInfo p.tel a span{
	font-size:0.6em;
	font-weight: normal;
}
/*
main .inquiryBox .inquiryInfo:nth-of-type(1) {
	float: left;
}
main .inquiryBox .inquiryInfo:nth-of-type(2) {
	float: right;
}
*/
main .common_inquery .inquiryBox .application a {
	width: 872px;
	height: 129px;
	display: block;
	text-indent: -9999px;
	background: url(images/item/under/itemFeature_btn.png);
	clear: both;
}

main .common_inquery .trouble h2 {
	background: url(images/top/trouble_h2.png);
	width: 617px;
	height: 52px;
	margin: 0 auto 25px auto;
	display: block;
	text-indent: -9999px;
	background-repeat: no-repeat;
}
main .common_inquery .trouble ul li {
	display: block;
	text-indent: -9999px;
	background-repeat: no-repeat;
	float: left;
}
main .common_inquery .trouble ul li:nth-of-type(1) {
	background: url(images/top/trouble_h2_img01.png);
	width: 173px;
	height: 178px;
	margin-right: 2px;
}
main .common_inquery .trouble ul li:nth-of-type(2) {
	background: url(images/top/trouble_h2_img02.png);
	width: 171px;
	height: 183px;
	margin-right: 2px;
}
main .common_inquery .trouble ul li:nth-of-type(3) {
	background: url(images/top/trouble_h2_img03.png);
	width: 170px;
	height: 183px;
	margin-right: 2px;
}
main .common_inquery .trouble ul li:nth-of-type(4) {
	background: url(images/top/trouble_h2_img04.png);
	width: 173px;
	height: 178px;
}
main .common_inquery .trouble ul li:nth-of-type(5) {
	background: url(images/top/trouble_h2_img05.png);
	width: 174px;
	height: 175px;
	float: right;
}
@media (max-width:479px) {
  main .common_inquery .inquiryBox h2 {
  	background: url(images/item/under/inquiryBox_h2.png);
    background-size: contain;
  	width: 100%;
  	height: 38px;
  	margin: 0 0 20px 0;
  	display: block;
  	text-indent: -9999px;
  	background-repeat: no-repeat;
  	background-position: center;
  }
  main .common_inquery .inquiryBox .application a {
    background-size:contain;
  	width: 95%;
    margin: 0 auto;
  	height: 100px;
  	display: block;
  	text-indent: -9999px;
    background-repeat: no-repeat;
    background-position: center;
  	clear: both;
  }

  main .common_inquery .trouble h2 {
    background: url(images/top/trouble_bgSMP.png);
    background-size:contain;
    width: 100%;
    height: 400px;
    background-repeat: no-repeat;
  	background-position: center;
  }
  main .common_inquery .trouble ul li {
      display: none;
  }
  section.inquiryBox {
    margin-bottom: 0;
  }
}
h2.thanks_title {
  display: block;
    background: #000;
    padding: 30px;
    color: #fff;
    text-align: center;
    margin-bottom: 80px;
}
p.thanks_message {
  text-align: center;
}
/*********************************************
共通理由エリア
*********************************************/
main .common_inquery .reason h2 {
	background: url(images/beginner/reason_h2.png);
	width: 870px;
	height: 140px;
	margin: 0 0 40px 0;
	display: block;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: center;
}
main .common_inquery .reason ol li {
	display: block;
	width: 870px;
	padding: 0 0 0 128px;
	height: 135px;
	font-weight: bold;
	line-height: 1.5;
}
main .common_inquery .reason ol li:nth-of-type(1) {
	background: url(images/beginner/reason_01_img.png) top left no-repeat;
}
main .common_inquery .reason ol li:nth-of-type(2) {
	background: url(images/beginner/reason_02_img.png) top left no-repeat;
}
main .common_inquery .reason ol li:nth-of-type(3) {
	background: url(images/beginner/reason_03_img.png) top left no-repeat;
}
main .common_inquery .reason ol li:nth-of-type(1) strong {
	background: url(images/beginner/reason_01_st.png) top left no-repeat;
	display: block;
	margin-bottom: 10px;
	width: 730px;
	height: 31px;
	text-indent: -9999px;
}
main .common_inquery .reason ol li:nth-of-type(2) strong {
	background: url(images/beginner/reason_02_st.png) top left no-repeat;
	display: block;
	margin-bottom: 10px;
	width: 730px;
	height: 31px;
	text-indent: -9999px;
}
main .common_inquery .reason ol li:nth-of-type(3) strong {
	background: url(images/beginner/reason_03_st.png) top left no-repeat;
	display: block;
	margin-bottom: 10px;
	width: 730px;
	height: 31px;
	text-indent: -9999px;
}
main .common_inquery .reason h3 {
	background: url(images/beginner/reason_h3.png);
	width: 870px;
	height: 54px;
	margin: 0 0 10px 0;
	display: block;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: center;
}
main .common_inquery .reason p {
	font-weight: bold;
	line-height: 1.5;
}
main .common_inquery .company {
	margin-bottom: 30px;
}
main .common_inquery .company {
	background: url(images/item/company_bg.png) 20px 20px no-repeat #ffe400;
	padding: 30px 25px 0 210px;
	height: 240px;
}
main .common_inquery .company h2 {
	color: #c41212;
	display: block;
	margin-bottom: 10px;
	font-weight: bold;
	font-size: 20px;
}
main .common_inquery .company p {
	font-size: 12px;
	line-height: 1.8;
}
@media (max-width:479px) {
    main .common_inquery .reason h2 {
        background: url(images/beginner/reason_h2.png);
        width: 100%;
        background-size: contain;
        height: 140px;
        margin: 0 0 20px 0;
        display: block;
        text-indent: -9999px;
        background-repeat: no-repeat;
        background-position: center;
    }
    main .common_inquery .reason h3 {
        background: url(images/beginner/reason_h3.png);
        width: 100%;
        background-size: contain;
        height: 54px;
        margin: 0 0 10px 0;
        display: block;
        text-indent: -9999px;
        background-repeat: no-repeat;
        background-position: center;
    }
    main .common_inquery .reason ol li {
        display: block;
        width: 100%;
        padding: 0 0 0 80px;
        height: auto;
        font-weight: bold;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    main .common_inquery .reason ol li:nth-of-type(1) {
        background: url(images/beginner/reason_01_img.png) top left no-repeat;
        background-size: 80px;
    }
    main .common_inquery .reason ol li:nth-of-type(2) {
        background: url(images/beginner/reason_02_img.png) top left no-repeat;
        background-size: 80px;
    }
    main .common_inquery .reason ol li:nth-of-type(3) {
        background: url(images/beginner/reason_03_img.png) top left no-repeat;
        background-size: 80px;
    }
    main .common_inquery .reason ol li:nth-of-type(1) strong {
        background: url(images/beginner/reason_01_st.png) top left no-repeat;
        background-size: contain;
        display: block;
        margin-bottom: 10px;
        width: 100%;
        height: auto;
        text-indent: -9999px;
    }
    main .common_inquery .reason ol li:nth-of-type(2) strong {
        background: url(images/beginner/reason_02_st.png) top left no-repeat;
        background-size: contain;
        display: block;
        margin-bottom: 10px;
        width: 100%;
        height: auto;
        text-indent: -9999px;
    }
    main .common_inquery .reason ol li:nth-of-type(3) strong {
        background: url(images/beginner/reason_03_st.png) top left no-repeat;
        background-size: contain;
        display: block;
        margin-bottom: 10px;
        width: 100%;
        height: auto;
        text-indent: -9999px;
    }
    main .common_inquery .company {
    	background: url(images/item/company_bg.png) 20px 20px no-repeat #ffe400;
    	padding: 20px 10px 10px 10px;
    	height: auto;
    }
    main .common_inquery .company h2 {
    	color: #c41212;
    	display: block;
    	margin-bottom: 10px;
    	font-weight: bold;
    	font-size: 1rem;
    }
    main .common_inquery .company p {
    	font-size: 12px;
    	line-height: 1.8;
    }
}
/*********************************************
新規追加CSS
*********************************************/
.newBuyArea {
    position: relative;
    margin-top: -450px;
    z-index: 911;
}

.newBuyArea h3 {
    margin: 15px 0 10px 35px;
    display: inline-block;
    background: #000000;
    border-radius: 5px;
    padding: 10px 15px;
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
}
.newBuyArea p {
    display: inline-block;
    margin: 0 0 10px 35px;
    width: 95%;
}
.shutchou_area_box {
	margin: 5px auto;
	padding: 8px;
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 10px;
	width:90%;
}
@media only screen and (max-width: 480px) {
    .newBuyArea {
        margin-top: -100px;
    }
    .newBuyArea p {
        margin: 0;
    }
    .shutchou_area_box {
        font-size: 12px;
    }
}


/*********************************************
ページネーション
*********************************************/
/* 共通 */
.pagenatin_box {
	display: block;
	width: 100%;
	clear: both;
}
.pagination {
    text-align: center;
    width: 100%;
    display: block
}
.pagination a {
    background: #f6f6f6;
    color: #000;
    text-decoration: none
}
/* スマホ　*/
@media only screen and (max-width: 480px) {
    .pagination .inner {
        width: 90%;
        margin: 0 5%;
        position: relative;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
        height: 46px
    }
    .pagination .page-of {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 2;
        -webkit-order: 2;
        order: 2;
        position: absolute;
        left: 37%;
        width: 26%;
        font-weight: bold;
        color: #fff;
        background: #2C2D2F;
        height: 46px;
        line-height: 46px;
        font-size: 1.3rem
    }
    .pagination .m-prev {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: 0;
        -webkit-order: 0;
        order: 0;
        width: 15%;
        position: absolute;
        left: 0%
    }
    .pagination .pn-prev {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 1;
        -webkit-order: 1;
        order: 1;
        width: 22%;
        position: absolute;
        left: 15%
    }
    .pagination .pn-next {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 3;
        -webkit-order: 3;
        order: 3;
        width: 22%;
        position: absolute;
        left: 63%
    }
    .pagination .m-next {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 4;
        -webkit-order: 4;
        order: 4;
        width: 15%;
        position: absolute;
        left: 85%
    }
    .pagination .current, .pagination .pn-numbers {
        display: none
    }
    .pagination a {
        line-height: 46px;
        height: 46px;
        font-weight: bold;
        font-size: 1.3rem
    }
}
/* PC */
@media only screen and (min-width: 480px) {
    .pagination .page-of {
        display: block;
        width: 100%;
        font-size: 108%;
        color: #000;
        text-align: center;
        margin-bottom: 2em
    }
    .pagination a, .pagination .current {
        display: inline-block;
        padding: 0 1.5em;
        font-size: 116%;
        font-weight: bold;
        line-height: 50px;
        height: 50px
    }
    .pagination .current {
        background: #2C2D2F;
        color: #fff
    }
    .pagination a:hover {
        background: #2C2D2F;
        color: #fff
    }
  }
@media screen and (min-width:641px) {
    .SMP {
        display: none;
    }
}
/* -------------------------- */

/* GLOBAL MENU */

/* -------------------------- */
.MenuBar {
    width: 100%;
    max-width: 1170px;
    background: linear-gradient(#F33,#F33);
    margin: 0 auto;

}
.MenuItems {
    display: flex;
    flex-wrap: nowrap;
    text-align: center;
    justify-content: center;
    align-items: center;
    list-style: none;
    font-weight: 800;
}
.MenuItems li {
    width: 12.5%;
    color: #fff;
    line-height: 3em;
}
.MenuItems li a {
    color: #FFF;
}
.MenuItems li:hover {
    color: #fff;
    background: linear-gradient(#F66,#F77,#E66);
    transition: 2.0s;
}
.MenuItems li:first-child {
    display: none;
}
.MenuItems li:nth-child(n+3) {
    border-left: 1px dashed #fff;
}
@media screen and (max-width:480px) {
    .MenuBar {
        display: none;
    }
}

/***ブログボタン追加******/
.button-frame  {
width:98%;
background-color: #FFEEC4;
border-radius: 10px;
border:1px #f07a1a solid;
margin: 0 auto 0;
}

.button-title {
font-size:20px;
background-color: #f07a1a;
text-align:center;
border-radius: 10px 10px 0 0;
color:white;
font-weight:bold;
}

.button-container {
  display: flex; /* ボタンを横並びにする */
  justify-content:space-around; /* ボタンを両端に均等に配置 */
  width: 100%;
  margin: 0 auto;
}

.button-wrapper {
  text-align: center; /* 中央揃え */
}

.my-button {
  font-weight:bold;
  padding: 15px 32px; /* パディング */
  text-align: center; /* テキストの配置 */
  text-decoration: none; /* 下線なし */
  display: inline-block; /* ボタンをインラインブロック要素にする */
  font-size: 40px; /* フォントサイズ */
  margin: 2px 2px; /* マージン */
  cursor: pointer; /* カーソルのスタイル */
  border-radius: 10px; /* ボタンの角を丸める */
}

.my-button:hover {
  background-color: white; /* ホバー時の背景色を透明にする */
  border: 2px red solid; /* ホバー時のボーダー色を黒にする */
}

.button-description {
  display:block;
  font-weight:bold;
  color: black;
  font-size: 16px;
}

/* ボタンの色を指定 */
.button-01 {
  color: ;
  border: 2px #1BC556 solid;
  background-color: #4BFB88;
}

.button-02 {
  color: ;
  border: 2px #E9AF21 solid;
  background-color: #FBC84B;
}

.button-03 {
  color: ;
  border: 2px #BE64F1 solid;
  background-color: #E7BCFF;
}


/* 店舗紹介テンプレート */
.shop-inner3{
border-radius: 20px;
background: #f8efe7;
padding: 0 0 1% 0;
margin: 1% 1%!important;
border:1px solid #f07a1a;
}

.shop-inner3 h4 {
font-size: 150%!important;
color: #fff!important;
background: #f07a1a;
border-bottom: none!important;
margin-bottom:0;
padding: 2% 3%;
border-radius: 20px 20px 0 0;
margin-top: 0em!important;
}

.shop-inner3 h4::before {
display: none!important;
}

.shop-inner3 .textel3{
display:flex;
justify-content:space-evenly;
align-items:center;
}

.shop-inner3 .text3{
font-size:90%!important;
width:40%;
margin:0 15px;
background: #fff;
border-radius: 20px;
padding: 2%;
text-align: justify;
border:1px solid #f07a1a;
}

.shop-inner3 .tel3 {
font-size:160%!important;
width:;
color: #f07a1a;
margin: 10px;
background: #fff;
border-radius: 20px;
padding:20px 10px 20px;
border:1px solid #f07a1a;
}

.shop-inner3 .tel3 a{
color: #f07a1a!important;
text-decoration: none!important;
}

.line-qrcode{
border:1px solid #f07a1a;
width:130px;
height:130px;
}

.shop-intro-bottom-02 {
background: #fbeded;
padding: 3% 10% 6% 10%;
margin: 5% 0!important;
border-radius: 20px;
border:1px solid #f07a1a;
}
.shop-intro-bottom-02 > h4 {
font-size: 160%!important;
color: #f01a1a!important;
border-bottom: none!important;
text-align: center;
margin: 0 0 1em 0;
line-height: 1.6!important;
}
.shop-intro-bottom-02 > h4::before {
display: none!important;
}
.shop-intro-bottom-02 > .text {
width: 100%;
margin: 0 auto;
background: #fff;
border-radius: 20px;
padding: 2%;
text-align: center;
font-size: 100%;
border:1px solid #f07a1a;
}

/* レスポンシブ対応 */
@media (max-width: 600px) {

.button-frame  {
margin: -15px auto 15px;
}
  .button-container {
    flex-direction: column;
   /*align-items: center;*/ /* ボタンを中央揃え */
  }
  .button-container {
    width: 90%; /* レスポンシブ時は90%にする */
  }

  .my-button {
    width: 100%; /* レスポンシブ時は幅を100%にする */
  }

.shop-inner3 h4 {
font-size: 120%!important;
}

.shop-inner3 .textel3{
display:block;
width:98%;
margin:0 auto;
}

.shop-inner3 .text3{
display:block;
width:95%;
margin:10px auto 20px;
}

.line-qrcode{
margin:0 auto;
text-align:center;
width:160px;
height:160px;
}

.shop-intro-bottom-02 {
padding: 3% 5% 6% 5%;
}
.shop-intro-bottom-02 > h4 {
font-size: 120%!important;
}
.shop-intro-bottom-02 > .text {
padding: 5%;
text-align: left;
font-size: 80%;
word-break: break-all;
line-height: 1.2;
}

}
@media only screen and (min-width: 600px) {
.spbr {
display: none;
}
}

.gmap_iframe {
    aspect-ratio: 16 / 5;
    max-width: 850px;
    width: 100%;
    height: auto;
}