
/* ==============================================================================
	CSS for touch-screen : common.css
============================================================================== */

/* ----------------------------------------------------------
  Common Settings : css-reset
---------------------------------------------------------- */
html{
    font-family: Meiryo,'Hiragino Kaku Gothic ProN','Hiragino Sans',sans-serif;
    overflow-y:scroll;
    -webkit-text-size-adjust:none;
    -webkit-font-smoothing: antialiased;
    -webkit-backface-visibility:hidden;
    backface-visibility:hidden;
    }
    
    body,div,h1,h2,h3,h4,h5,h6,p,ul,ol,li,dl,dt,dd,form,fieldset,legend,input,textarea,pre,code,blockquote,th,td{
    margin:0;
    padding:0;
    }
    
    div,h2,h3,h4,h5,h6,p,li,dt,dd,pre,code,blockquote,th,td{
    word-break:break-all;
    }
    
    br{
    letter-spacing:0;
    }
    
    fieldset,img{
    border:0;
    }
    
    li{
    list-style:none;
    }
    
    caption,th{
    text-align:left;
    }
    
    h1,h2,h3,h4,h5,h6,th{
    font-size:100%;
    font-weight:normal;
    font-style:normal;
    }
    
    input,textarea,select{
    font-family:inherit;
    font-size:inherit;
    font-weight:inherit;
    color:#333;
    }
    
    input[type="submit"]{
    cursor:pointer;
    }
    
    select{
    background-color:#ffffff !important;
    }
    
    address,caption,cite,code,dfn,var{
    font-style:normal;
    font-weight:normal;
    }
    
    abbr,acronym{
    border:0;
    font-variant:normal;
    }
    
    del,u{
    text-decoration:none;
    }
    
    /*=================================================
     * CSS MAIN
     * ================================================= */
    
    body{
        text-align	: center;
        font-size	: 16px;
        line-height	: 16px;
        font-family: Meiryo,'Hiragino Kaku Gothic ProN','Hiragino Sans',sans-serif;
        -webkit-text-size-adjust: 100%;
        scrollbar-face-color: #ffffff;
        scrollbar-3dlight-color: #553f09;
        scrollbar-highlight-color: #ffffff;
        scrollbar-shadow-color: #ffffff;
        scrollbar-darkshadow-color: #553f09;
        scrollbar-arrow-color: #553f09;
        scrollbar-track-color: #ffffff;
        -webkit-font-smoothing: subpixel-antialiased;
    }
    
    a{
        text-decoration	: none;
    }
    
    a:hover{
        text-decoration	: underline;
    }
    
    h1,h2,h3{
        font-size	: 13px;
    }
    
    ul{
        list-style-type	: none;
    }
    
    li{
        margin		: 0px;
        padding		: 0px;
    }
    
    table{
        font-size	: 13px;
    }
    
    table tr{
        vertical-align	: top;
    }
    
    em{
        font-style		: normal;
    }
    
    
    /*=================================================
     * CSS for PC
     * ================================================= */
    
    header,
    nav,
    main,
    footer{
        width: 650px;
        margin: 0 auto;
    }
    
    body:before{
        content: '';
        width: 650px;
        height: 100%;
        position: fixed;
        z-index: -2;
        top: 0;
        left: calc(50% - 325px);
    }
    
    
    /** header **/
    
    header{
        position: relative;
        height: 100vh;
    }
    
    header h1{
        width: 100%;
        font-size: 10px;
        line-height: 12px;
        text-align: left;
        padding: 0 20px;
        position: absolute;
        bottom: 20px;
        left: 0;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    
    
    /** navToggle **/
    
    #navToggle{
        display: block;
    }
    #navToggle button{
        position: fixed;
        z-index: 9999;
        top: 10px;
        right: calc(50% - 315px);
        cursor: pointer;
        display:block;
        width: 60px;
        height: 60px;
        text-indent: -9999px;
        border: none;
        border-radius: 2px;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    #navToggle button span,
    #navToggle button span:before,
    #navToggle button span:after{
        display: inline-block;
        width: 30px;
        border-bottom-width: 1px;
        border-bottom-style: solid;
        -webkit-transition	: 0.2s ease-in-out;
        -moz-transition	: 0.2s ease-in-out;
        -o-transition	: 0.2s ease-in-out;
        transition		: 0.2s ease-in-out;
    }
    #navToggle button span{
        position: absolute;
        top: 20px;
        right: 15px;
    }
    #navToggle button span:before,
    #navToggle button span:after{
        content: "";
        display: block;
        clear: both;
    }
    #navToggle button span:before{
        position: absolute;
        top: 10px;
        right: 0;
    }
    #navToggle button span:after{
        position: absolute;
        top: 20px;
        right: 0;
    }
    #navToggle .closebt span{
        position: absolute;
        top: 30px;
        right: 15px;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
    }
    #navToggle .closebt span:before{
        content: "";
        clear: both;
        position: absolute;
        top: 0px;
        right: 0px;
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        opacity:0;
    }
    #navToggle .closebt span:after{
        content: "";
        display: block;
        clear: both;
        position: absolute;
        top: 0px;
        left: 0px;
        transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
    }
    
    
    /** nav **/
    
    nav{
        position: fixed;
        z-index: 9998;
        top: -750px;
        left: calc(50% - 325px);
        -webkit-transition	: 0.2s ease-in-out;
        -moz-transition	: 0.2s ease-in-out;
        -o-transition	: 0.2s ease-in-out;
        transition		: 0.2s ease-in-out;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    nav.opennav{	top: 0;}
    
    nav #navshop{
        width: 100%;
        height: 80px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        align-content: center;
        justify-content: flex-start;
        text-align: left;
        padding: 0 75px 0 15px;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    
    nav #navshop p{
        width: 100%;
        font-size: 11px;
        line-height: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        -o-text-overflow: ellipsis;
    }
    
    nav #navshop h2{
        width: 100%;
        font-size: 20px;
        line-height: 24px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        -o-text-overflow: ellipsis;
    }
    
    nav .menu{
        padding: 10px 20px 20px 20px;
    }
    
    nav li{
        text-align: left;
        border-bottom-width: 1px;
        border-bottom-style: solid;
    }
    
    nav li a{
        display: block;
        font-size: 20px;
        line-height: 20px;
        padding: 13px 0 13px 10px;
    }
    nav li a:hover{	text-decoration: none;}
    
    nav li a i{
        display: inline-block;
        vertical-align: middle;
        margin-right: 10px;
        margin-top: -2px;
    }
    
    nav .sub{	padding-top: 10px;}
    
    nav .sub li{	border-bottom: none;}
    
    nav .sub li a{
        font-size: 20px;
        line-height: 20px;
        padding: 5px 0 5px 15px;
    }
    
    nav .sub li a i{
        font-size: 10px;
        line-height: 10px;
        margin-right: 20px;
        margin-top: -5px;
    }
    
    
    /** main **/
    
    main{
        overflow: hidden;
    }
    
    section:before{
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        position: fixed;
        top: 0;
        left: calc(50% - 325px);
        width: 650px;
        height: 100%;
        content: "";
        z-index: -1;
        opacity: 0;
        filter: alpha(opacity=0);
    }
    section.on:before{
        opacity: 1;
        filter: alpha(opacity=100);
    }
    
    section.cnt > div{	padding: 50px 40px;}
    
    .s_title{
        position: relative;
        font-size: 30px;
        line-height: 40px;
        text-align: center;
        margin: 0 0 50px 0;
        padding: 0 0 15px 0;
    }
    
    .s_title:before{
        content: '';
        width: 50px;
        border-bottom-width: 1px;
        border-bottom-style: solid;
        position: absolute;
        bottom: 0;
        left: calc(50% - 25px);
    }
    .s_title:after{
        content: '';
        width: 7px;
        height: 7px;
        transform: rotate(45deg);
        position: absolute;
        bottom: -3px;
        left: calc(50% - 3.5px);
    }
    
    
    /** footer **/
    
    footer{
        padding: 30px 0 120px 0;
    }
    
    footer .foot_contact{
        margin: 0 40px;
        padding: 0 0 20px 0;
    }
    
    footer .foot_contact > a,
    footer .foot_contact > div{
        width: 100%;
        display: flex;
        align-items: center;
        align-content: center;
        margin: 0 0 10px 0;
    }
    footer .foot_contact > a:last-child,
    footer .foot_contact > div:last-child{	margin-bottom: 0;}
    footer .foot_contact > a:hover{	text-decoration: none;}
    
    footer .foot_contact span{
        width: 30px;
        height: 30px;
        border-radius: 50%;
    }
    
    footer .foot_contact span i{
        font-size: 16px;
        line-height: 30px;
        text-align: center;
    }
    
    footer .foot_contact p{
        width: calc(100% - 30px);
        font-size: 16px;
        line-height: 20px;
        text-align: left;
        padding: 0 0 0 5px;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    
    footer .foot_time{
        font-size: 16px;
        line-height: 20px;
        text-align: left;
        margin: 0 40px 0 40px;
        padding: 10px 0 10px 0;
        border-top-width: 1px;
        border-top-style: solid;
    }
    
    footer .foot_contact p em{
        font-size: 11px;
    }
    
    footer .foot_time i{
        display: inline-block;
        vertical-align: bottom;
        font-size: 18px;
        line-height: 20px;
        margin: 0;
    }
    
    footer .foot_dis{
        font-size: 11px;
        line-height: 18px;
        text-align: left;
        margin: 0 40px;
        padding: 0 0 20px 0;
    }
    
    footer .sns_bt{
        font-size: 0;
        line-height: 0;
        text-align: center;
        margin: 0 40px 20px 40px;
        padding-top: 20px;
        border-top-width: 1px;
        border-top-style: solid;
    }
    
    footer .sns_bt a,
    footer .sns_bt span{
        display: inline-block;
        vertical-align: top;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin: 0 5px;
    }
    footer .sns_bt img{
        width: 50px;
        height: auto;
    }
    footer .sns_bt span img{
        opacity: 0.7;
        filter: alpha(opacity=70);
    }
    
    footer #copyright{
        font-size: 10px;
        line-height: 20px;
        text-align: center;
    }
    
    
    /** footermenu **/
    
    #footermenu_box .floating-footer-preview {
        position: fixed;
        bottom: 0;
        left: calc(50% - 325px);
        right: 0;
        width: 100%;
        max-width: 650px;
        height: 60px;
        background: #fff;
        border-top: 1px solid #e9ecef;
        display: flex;
        z-index: 1000;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    @media screen and (max-width: 768px) {
        #footermenu_box .floating-footer-preview {
            left: 0; /* 画面幅に合わせて左端から配置 */
            width: 100%; /* 幅を画面いっぱいに */
            max-width: 650px; /* 最大幅は650px */
            margin: 0 auto; /* 中央寄せ */
        }
    }

    #footermenu_box .footer-item-preview {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 8px 4px;
        text-decoration: none;
        color: #fff;
        transition: all 0.2s ease;
        font-size: 10px;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }

    #footermenu_box .footer-item-preview i {
        font-size: 16px;
        margin-bottom: 2px;
    }
    
    #footermenu_box .footer-item-preview span {
        font-size: 9px;
        text-align: center;
        line-height: 1.1;
        color: inherit;
    }
    
    
    /****************************
    IMGUP & MVUP
    *****************************/
    
    /** imgup **/
    
    #imgup{
        font-size: 0;
        line-height: 0;
        padding: 50px 40px;
    }
    
    #imgup a,
    #imgup span{
        display: block;
        margin-bottom: 20px;
    }
    #imgup a:last-child,
    #imgup span:last-child{	margin-bottom: 0;}
    
    #imgup img{
        width: 100%;
        height: auto;
    }
    
    
    /** mvup **/
    
    #mvup{
        position: relative;
        padding: 50px 0 50px 0;
    }
    
    #imgup + #mvup{
        padding-top: 0;
    }
    
    #mvup .mv_t{
        position: relative;
        z-index: 2;
        width: calc(100% - 40px);
        margin: 0 20px 10px 20px;
        padding: 5px 10px;
        border-radius: 20px;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    #mvup .mv_t:after{
        content: '';
        width: 0;
        height: 0;
        position: absolute;
        top: 40px;
        right: 52px;
    }
    
    #mvup h3{
        width: 100%;
        font-size: 20px;
        line-height: 30px;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        -o-text-overflow: ellipsis;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    
    #mvup h3 i{
        display: inline-block;
        vertical-align: middle;
        font-size: 24px;
        line-height: 28px;
        margin: -4px 5px 0 0;
    }
    
    .mv_bg{
        margin: 0 0 50px 0;
        padding: 0 40px;
    }
    .mv_bg:last-of-type{	margin-bottom: 0;}
    
    .movie-wrap{
        position: relative;
        z-index: 2;
        font-size: 0;
        line-height: 0;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
    }
    
    .movie-wrap iframe{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .video-wrap{
        font-size: 0;
        line-height: 0;
    }
    .video-wrap video{
        width: 100%;
        height: auto;
    }
    
    
    /****************************
    CH
    *****************************/
    
    #ch{	padding: 50px 0;}
    
    #ch .chbox{
        position: relative;
        width: calc(100% - 80px);
        margin: 0 auto 20px auto;
        z-index: 2;
    }
    #ch .chbox:last-of-type{	margin-bottom: 0;}
    
    #ch .chbox_top{
        position: relative;
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
        width: 100%;
        margin: 0 auto;
        padding: 20px 20px 0 20px;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    
    #ch .chbox h3{
        width: 100%;
        order: 2;
        z-index: 2;
        font-size: 20px;
        line-height: 24px;
        text-align: left;
        padding: 6px 0;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    
    #ch .chbox h3:after{
        content: '';
        position: absolute;
        z-index: -1;
        top: 0;
    }
    #ch .chbox:nth-of-type(odd) h3:after{	left: 0;}
    #ch .chbox:nth-of-type(even) h3:after{	right: 0;}
    
    #ch .chbox:nth-of-type(odd){ border-radius: 0 8px 0 8px;}
    #ch .chbox:nth-of-type(even){ border-radius: 8px 0 8px 0;}
    
    #ch .chimg{
        position: relative;
        z-index: 3;
        align-self: flex-start;
        width: 90px;
        height: 90px;
        font-size: 0;
        line-height: 0;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    
    #ch .chimg img{
        width: 90px;
        height: 90px;
        border-radius: 50%;
    }
    
    #ch .chtxt{
        position: relative;
        z-index: 2;
        width: 100%;
        font-size: 16px;
        line-height: 25px;
        text-align: left;
        padding: 20px;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    
    #ch .chbox:nth-of-type(odd) h3{	order: 2; padding-left: 20px;}
    #ch .chbox:nth-of-type(odd) .chimg{ order: 1;}
    #ch .chbox:nth-of-type(even) h3{	order: 1; padding-right: 20px;}
    #ch .chbox:nth-of-type(even) .chimg{ order: 2;}
    
    
    
    /****************************
    FLOW
    *****************************/
    
    #flow{	padding: 50px 40px;}
    
    #flow .topimg{
        font-size: 0;
        line-height: 0;
        margin: 0 0 20px 0;
    }
    #flow .topimg img{
        width: 100%;
        height: auto;
    }
    
    #flow .fbox{
        position: relative;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        margin: 0 0 20px 0;
    }
    
    #flow .fbox:last-of-type{	margin-bottom: 0;}
    
    #flow .fbox h4{
        order: 2;
        width: 100%;
        font-size: 18px;
        line-height: 22px;
        text-align: left;
        padding: 10px;
    }
    
    #flow .fbox h4 span{
        display: inline-block;
    }
    
    #flow .fbox .fimg{
        position: relative;
        order: 1;
        width: 100%;
        font-size: 0;
        line-height: 0;
    }
    #flow .fbox .fimg img{
        width: 100%;
        height: auto;
    }
    
    #flow .fbox .fstep{
        display: inline-flex;
        flex-wrap: wrap;
        align-items: center;
        align-content: center;
        justify-content: center;
        width: 45px;
        height: 100%;
        font-size: 16px;
        line-height: 16px;
        padding-top: 9px;
        position: absolute;
        z-index: 2;
        top: 0;
        left: 0;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    #flow .fbox .fstep i{
        display: inline-block;
        font-style: normal;
        position: relative;
        z-index: 2;
        right: -8px;
    }
    #flow .fbox .fstep em{
        width: 100%;
        font-size: 30px;
        line-height: 30px;
        text-align: center;
    }
    #flow .fbox .fstep:after{
        content: '';
        position: absolute;
        top: 0;
        right: -30px;
        width: 30px;
        height: 100%;
    }
    
    #flow .fbox .ftxt{
        position: relative;
        order: 3;
        width: 100%;
        font-size: 16px;
        line-height: 25px;
        text-align: left;
        padding: 15px;
        border-radius: 0 0 8px 8px;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    
    #flow .fbox .ftxt:after{
        content: '';
        width: 0;
        height: 0;
        position: absolute;
        bottom: -35px;
        left: calc(50% - 25px);
        z-index: 100;
    }
    #flow .fbox:last-of-type .ftxt:after{	display: none;}
    
    
    /****************************
    VOICE
    *****************************/
    
    #voice{	padding: 50px 0;}
    
    #voice .topimg{
        font-size: 0;
        line-height: 0;
        margin: 0 0 35px 0;
        padding: 0 40px;
    }
    #voice .topimg img{
        width: 100%;
        height: auto;
    }
    
    #voice .vbox_bg{
        padding: 0 40px;
    }
    
    #voice .vbox{
        position: relative;
        display: flex;
        align-items: flex-start;
        align-content: flex-start;
        width: 100%;
        margin: 0 0 35px 0;
    }
    #voice .vbox:last-of-type{	margin-bottom: 0;}
    
    #voice .vbox .vbox_top{
        width: 120px;
        height: 120px;
    }
    
    #voice .vbox:nth-of-type(odd) .vbox_top{	order: 1;	margin-right: 10px;}
    #voice .vbox:nth-of-type(odd) .vbox_txt{	order: 2;}
    #voice .vbox:nth-of-type(even) .vbox_top{	order: 2;	margin-left: 10px;}
    #voice .vbox:nth-of-type(even) .vbox_txt{	order: 1;}
    
    #voice .vbox_img{
        position: relative;
        display: inline-block;
        vertical-align: top;
    }
    #voice .vbox_img img{
        width: 120px;
        height: auto;
        border-radius: 50%;
    }
    
    #voice .vbox_img span{
        width: 120px;
        font-size: 11px;
        line-height: 20px;
        text-align: center;
        border-radius: 10px;
        position: absolute;
        bottom: 10px;
        left: 0;
    }
    
    #voice .vbox_txt{
        position: relative;
        width: 100%;
        margin-top: 32px;
        border-radius: 8px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    
    #voice .vbox_txt h4{
        font-size: 18px;
        line-height: 22px;
        text-align: left;
        padding: 15px;
        border-radius: 8px 8px 0 0;
    }
    
    #voice .vbox_txt h4:only-child{
        border-radius: 8px;
    }
    
    #voice .vbox_txt p{
        font-size: 16px;
        line-height: 25px;
        text-align: left;
        padding: 15px;
        border-radius: 0 0 8px 8px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    
    #voice .vbox_txt p:only-child{
        border-radius: 8px;
    }
    
    #voice .vbox_txt h4:after,
    #voice .vbox_txt p:only-child:after{
        content: '';
        display: inline-block;
        width: 0;
        height: 0;
        position: absolute;
        top: 20px;
    }
    #voice .vbox:nth-of-type(odd) .vbox_txt h4:after,
    #voice .vbox:nth-of-type(odd) .vbox_txt p:only-child:after{
        left: -20px;
        transform: rotate(-90deg);
    }
    #voice .vbox:nth-of-type(even) .vbox_txt h4:after,
    #voice .vbox:nth-of-type(even) .vbox_txt p:only-child:after{
        right: -20px;
        transform: rotate(90deg);
    }
    
    
    /****************************
    QA
    *****************************/
    
    #qa{	padding: 50px 40px;}
    
    #qa .topimg{
        font-size: 0;
        line-height: 0;
        margin: 0 0 20px 0;
    }
    #qa .topimg img,
    #qa .qaimg img{
        width: 100%;
        height: auto;
    }
    
    #qa .qa_title{
        position: relative;
        font-size: 24px;
        line-height: 25px;
        text-align: left;
        margin: 0 0 20px 0;
        padding: 11.5px 10px 13.5px 40px;
        border-radius: 5px;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    #qa .qa_title:after{
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 10px 6px 0 6px;
        position: absolute;
        bottom: -10px;
        left: 15px;
    }
    #qa .qa_title span{
        font-size: 26px;
        line-height: 30px;
        position: absolute;
        top: 10px;
        left: 8px;
    }
    
    #qa .qabox{
        margin: 0 0 20px 0;
    }
    #qa .qabox:last-of-type{	margin-bottom: 0;}
    
    #qa .qabox h4{
        position: relative;
        font-size: 18px;
        line-height: 22px;
        text-align: left;
        padding: 15px 10px 20px 50px;
        border-radius: 8px 0 0 0;
    }
    
    #qa .qabox h4:after{
        content: 'Q';
        width: 40px;
        height: 40px;
        font-size: 22px;
        line-height: 40px;
        text-align: center;
        padding-left: 0;
        position: absolute;
        top: calc(50% - 20px);
        left: 0;
        border-radius: 0 2px 2px 0;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    
    #qa .qatxt{
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        font-size: 0;
        line-height: 0;
        padding: 0 0 20px 0;
        border-radius: 0 0 8px 0;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    
    #qa .qatxt_in{
    }
    
    #qa .qaimg{
        width: 100%;
        font-size: 0;
        line-height: 0;
        padding: 15px;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    
    #qa .qatxt p{
        width: 100%;
        font-size: 16px;
        line-height: 25px;
        text-align: left;
        padding: 15px;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    
    #qa .qaimg + p{	padding-top: 0;}
    
    .bt_more{	display: none;}
    
    .bt_more + label{
        width: 110px;
        cursor: pointer;
        order: 2;
        position: relative;
        z-index: 2;
        margin: -10px auto 0 auto;
        font-size: 14px;
        line-height: 20px;
        border-radius: 10px;
        border-width: 1px;
        border-style: solid;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
        -webkit-transition	: 0.2s ease-in-out;
        -moz-transition	: 0.2s ease-in-out;
        -o-transition	: 0.2s ease-in-out;
        transition		: 0.2s ease-in-out;
        /*
        position: absolute;
        z-index: 2;
        bottom: 40px;
        left: calc(50% - 165px);
        */
    }
    .bt_more + label:before{	content: '回答を見る';}
    .bt_more + label:hover{
        cursor			: pointer;
        text-decoration: none;
        opacity: 0.8;
        filter: alpha(opacity=80);
    }
    
    .bt_more + label + .qatxt_in{
        width: 100%;
        height: 0;
        overflow: hidden;
    }
    .bt_more:checked + label{	margin-top: 0;}
    .bt_more:checked + label:before{	content: '×閉じる';}
    .bt_more:checked + label + .qatxt_in{	height: auto;}
    
    
    /****************************
    INFO
    *****************************/
    
    #info{	padding: 50px 30px;}
    
    #info .topimg{
        font-size: 0;
        line-height: 0;
        margin: 0 0 20px 0;
        padding: 0 10px;
    }
    #info .topimg img{
        width: 100%;
        height: auto;
    }
    
    #info h4{
        position: relative;
        font-size: 24px;
        line-height: 30px;
        text-align: left;
        padding: 5px 5px 5px 30px;
        border-radius: 8px 0 8px 0;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    
    #info h4 i{
        display: inline-block;
        vertical-align: top;
        font-size: 15px;
        line-height: 15px;
        position: absolute;
        top: 12.5px;
        left: 10px;
    }
    
    #info .txt{
        text-align: left;
        margin: 0 10px;
        padding: 20px 20px 40px 20px;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    
    #info .s_title + .txt{
        margin-bottom: 20px;
        border-radius: 8px;
    }
    
    #info .txt:last-of-type{
        border-bottom-right-radius: 8px;
        border-bottom-left-radius: 8px;
    }
    
    #info .rec_free{
        line-height: 1.5;
        text-align: left;
    }
    
    #info .txt p{
        font-size: 16px;
        line-height: 25px;
        text-align: left;
    }
    
    #info .txt ul{
        font-size: 0;
        line-height: 0;
        padding: 0 0 10px 0;
    }
    
    #info .txt li{
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
        line-height: 20px;
        margin: 0 5px 5px 0;
        padding: 0 5px;
        border-radius: 11px;
        border-width: 1px;
        border-style: solid;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    
    
    /****************************
    AWAY
    *****************************/
    
    #away{
        padding: 50px 30px;
    }
    
    #away .topimg{
        font-size: 0;
        line-height: 0;
        margin: 0 0 20px 0;
    }
    #away .topimg img{
        width: 100%;
        height: auto;
    }
    
    #away .away_toptxt{
        font-size: 16px;
        line-height: 1.5;
        text-align: left;
        margin: 0 0 20px 0;
        padding: 15px;
        border-radius: 10px;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    
    .away_box{
        margin: 0 0 20px 0;
    }
    .away_box:last-of-type{	margin-bottom: 0;}
    
    #away h4{
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: flex-start;
        width: 100%;
        min-height: 60px;
        margin: 0 0 1px 0;
        padding: 15px 10px;
        border-radius: 10px 10px 0 0;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    
    #away h4 span{
        width: 30px;
        height: 30px;
        font-size: 24px;
        line-height: 30px;
        text-align: center;
        border-radius: 50%;
        margin-right: 10px;
    }
    
    #away h4 em{
        width: calc(100% - 30px);
        font-size: 24px;
        line-height: 26px;
        text-align: left;
        margin-right: 5px;
    }
    
    .away_main{
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    
    .away_main dl{
        display: table;
        width: 100%;
        font-size: 0;
        line-height: 0;
        margin: 0 0 1px 0;
    }
    .away_main dl:last-child{
        margin-bottom: 0;
    }
    .away_main dl:last-child dt{	border-radius: 0 0 0 10px;}
    .away_main dl:last-child dd{	border-radius: 0 0 10px 0;}
    
    .away_main dt,
    .away_main dd{
        display: table-cell;
        vertical-align: middle;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    
    .away_main dt{
        width: 95px;
        font-size: 18px;
        line-height: 1.2;
        text-align: center;
        padding: 10px;
    }
    
    .away_main dd{
        font-size: 16px;
        line-height: 22px;
        text-align: left;
        padding: 10px 0 10px 10px;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    .away_main dd em{
        font-size: 20px;
        font-weight: bold;
    }
    
    .away_main .away_free_bg{
        padding: 10px 15px 15px 15px;
        border-radius: 0 0 10px 10px;
    }
    
    .away_main .away_free{
        font-size: 16px;
        line-height: 1.5;
        text-align: left;
        margin: 0;
        padding: 13px;
        border-width: 2px;
        border-style: solid;
        border-radius: 5px;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    
    .away_main .rec_staff_voice{
        position: relative;
        border-radius: 0 0 10px 10px;
        margin: 0 0 0 0;
        padding: 20px;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    
    .away_main .rec_staff_voice h5{
        position: relative;
        font-size: 18px;
        font-weight: normal;
        line-height: 25px;
        text-align: left;
        margin: 0 0 10px 0;
        padding: 0 0 0 33px;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    
    .away_main .rec_staff_voice h5 span{
        font-size: 30px;
        line-height: 30px;
        position: absolute;
        top: -3px;
        left: -3px;
    }
    
    .away_main .rec_staff_voice p{
        font-size: 16px;
        line-height: 1.5;
        text-align: left;
    }
    
    
    /****************************
    ABOUT
    *****************************/
    
    #about .topimg{
        font-size: 0;
        line-height: 0;
        margin: 0 0 20px 0;
    }
    #about .topimg img{
        width: 100%;
        height: auto;
    }
    
    #about .about_in{
        position: relative;
        text-align: center;
        margin: 0 0 20px 0;
        padding: 20px;
        border-radius: 8px;
    }
    #about .about_in:last-of-type{	margin-bottom: 0;}
    
    #about h4{
        font-size: 24px;
        line-height: 28px;
        margin: 0 0 5px 0;
    }
    #about h4:before{
        content: '';
        width: 0;
        height: 0;
        position: absolute;
        top: 5px;
        left: 5px;
    }
    #about h4:after{
        content: '';
        width: 0;
        height: 0;
        position: absolute;
        top: 5px;
        right: 5px;
    }
    
    #about .about_time{
        font-size: 15px;
        line-height: 18px;
        margin: 0;
    }
    #about .about_time i{
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
        line-height: 25px;
        margin: -3px 3px 0 0;
    }
    
    #about .about_tel{
        font-size: 15px;
        line-height: 18px;
        margin: 0 0 10px 0;
    }
    #about .about_tel i{
        display: inline-block;
        vertical-align: top;
        font-size: 16px;
        line-height: 25px;
        margin: -3px 3px 0 0;
    }
    
    #about .about_area{
        position: relative;
        margin: 0 0 20px 0;
    }
    #about .about_area:after{
        content: '';
        width: 100%;
        border-bottom-width: 1px;
        border-bottom-style: solid;
        position: absolute;
        left: 0;
        top: 7px;
    }
    
    #about .about_area span{
        display: inline-block;
        vertical-align: top;
        position: relative;
        z-index: 2;
        font-size: 12px;
        line-height: 16px;
        padding: 0 30px;
        border-radius: 8px;
    }
    
    #about .about_bt{
        display: flex;
        width: 100%;
        flex-wrap: nowrap;
        justify-content: center;
    }
    
    #about .about_bt > a,
    #about .about_bt > span{
        width: 70px;
        height: 70px;
        display: inline-flex;
        flex-wrap: wrap;
        align-items: center;
        align-content: center;
        justify-content: center;
        font-size: 13px;
        line-height: 14px;
        text-align: center;
        border-radius: 50%;
        margin: 0 5px;
        -webkit-transition	: 0.2s ease-in-out;
        -moz-transition	: 0.2s ease-in-out;
        -o-transition	: 0.2s ease-in-out;
        transition		: 0.2s ease-in-out;
    }
    #about .about_bt a:hover{
        text-decoration: none;
        opacity: 0.8;
        filter: alpha(opacity=80);
    }
    #about .about_bt .fbt_img{	overflow: hidden;}
    #about .about_bt .fbt_img img{
        width: 100%;
        height: auto;
    }
    
    #about .about_bt a i,
    #about .about_bt span i{
        display: block;
        width: 100%;
        font-size: 30px;
        line-height: 30px;
    }
    
    #about .about_bt .fbt_tel{	display: none;}
    
    
    
    /****************************
    BLOG
    *****************************/
    
    #blog .bloglist{
    }
    
    #blog .bloglist a{
        position: relative;
        display: block;
        text-align: left;
        padding: 15px 0 15px 40px;
        border-bottom-width: 1px;
        border-bottom-style: dotted;
    }
    #blog .bloglist a:first-of-type{	padding-top: 0;}
    #blog .bloglist a:hover{
        text-decoration: none;
    }
    
    #blog .bloglist span{
        display: block;
        font-size: 11px;
        line-height: 14px;
        margin: 0 0 2px 0;
    }
    
    #blog .bloglist p{
        width: 100%;
        font-size: 16px;
        line-height: 18px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        -o-text-overflow: ellipsis;
    }
    
    #blog .bloglist i{
        display: inline-block;
        vertical-align: top;
        font-size: 34px;
        line-height: 34px;
        position: absolute;
        top: 8px;
        left: 0;
    }
    #blog .bloglist a:first-of-type i{	top: -6px;}
    
    
    /****************************
    STAFF
    *****************************/
    
    #staff{
        padding: 50px 30px;
    }
    
    #staff .topimg{
        font-size: 0;
        line-height: 0;
        margin: 0 0 20px 0;
    }
    #staff .topimg img{
        width: 100%;
        height: auto;
    }
    
    #staff .ch{
        margin: 0 0 20px 0;
        padding: 20px;
        border-radius: 10px;
    }
    
    #staff .ch h4{
        font-size: 20px;
        line-height: 24px;
        text-align: center;
        padding: 0 0 20px 0;
        border-bottom: 3px double currentColor;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    #staff .ch h4 em{
        display: inline-block;
        vertical-align: top;
        position: relative;
        padding: 0 25px
    }
    #staff .ch h4 em:before,
    #staff .ch h4 em:after{
        content: '';
        width: 1px;
        height: 30px;
        background: currentColor;
        border-radius: 1.5px;
        position: absolute;
        bottom: -10px;
    }
    #staff .ch h4 em:before{
        left: 10px;
        -webkit-transform: rotate(-45deg);
           -moz-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
             -o-transform: rotate(-45deg);
                transform: rotate(-45deg);
    }
    #staff .ch h4 em:after{
        right: 10px;
        -webkit-transform: rotate(45deg);
           -moz-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
             -o-transform: rotate(45deg);
                transform: rotate(45deg);
    }
    
    #staff .away_box h4{
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: flex-start;
        width: 100%;
        min-height: 60px;
        padding: 15px 10px;
        border-radius: 10px 10px 0 0;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    
    #staff .away_box h4 span{
        width: 30px;
        height: 30px;
        font-size: 24px;
        line-height: 30px;
        text-align: center;
        border-radius: 50%;
        margin-right: 10px;
    }
    
    #staff .away_box h4 em{
        width: calc(100% - 30px);
        font-size: 20px;
        line-height: 26px;
        text-align: left;
        margin-right: 5px;
    }
    
    #staff .ch p{
        font-size: 16px;
        line-height: 25px;
        text-align: left;
        padding: 20px 0 0 0;
    }
    #staff .ch p:only-child{	padding-top: 0;}
    
    #staff .rec_point{
        margin: 0 0 10px 0;
    }
    
    #staff .rec_point ul{
        display: flex;
        flex-wrap: wrap;
        font-size: 0;
        line-height: 0;
        text-align: left;
    }
    
    #staff .rec_point li{
        display: inline-flex;
        align-items: center;
        align-content: center;
        justify-content: center;
        vertical-align: top;
        width: calc(100% / 2 - 5px);
        font-size: 16px;
        line-height: 1.3;
        text-align: center;
        border-radius: 20px;
        margin: 0 0 10px 0;
        padding: 10px;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    #staff .rec_point li:nth-of-type(odd){	margin-right: 5px;}
    #staff .rec_point li:nth-of-type(even){	margin-left: 5px;}
    
    #staff .rec_mess{
        position: relative;
        border-radius: 10px;
        margin: 0 0 20px 0;
        padding: 0 20px 20px 20px;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    #staff .rec_mess:last-of-type{	margin-bottom: 0;}
    
    #staff .rec_mess h4{
        width: 100%;
        height: 54px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        align-content: center;
        justify-content: center;
        text-align: left;
        margin: 0 0 20px 0;
        padding: 0 0 0 40px;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    
    #staff .rec_mess h4 span{
        width: 100%;
        font-size: 18px;
        line-height: 20px;
    }
    
    #staff .rec_mess h4 em{
        width: 100%;
        font-family: "FontA";
        font-size: 11px;
        line-height: 14px;
    }
    
    #staff .rec_mess .mess_i{
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
        width: 40px;
        height: 54px;
        text-align: center;
        border-radius: 0 0 5px 5px;
        position: absolute;
        top: 0;
        left: 10px;
    }
    
    #staff .rec_mess .mess_i span{
        width: 30px;
        height: 30px;
        font-size: 26px;
        line-height: 30px;
        border-radius: 50%;
    }
    
    #staff .rec_mess p{
        font-size: 16px;
        line-height: 25px;
        text-align: left;
    }
    
    
    /****************************
    TWITTER
    *****************************/
    
    .shop_twitter_bt{
        font-size: 0;
        line-height: 0;
    }
    
    .shop_twitter_bt > a{
        display: inline-flex;
        align-items: center;
        align-content: center;
        justify-content: center;
        width: 100%;
        width: calc(100% - 20px);
        max-width: 280px;
        font-size: 19px;
        line-height: 24px;
        padding: 10px 0;
        color: #fff !important;
        background: #000 !important;
        border: 1px solid #fff !important;
        text-align: center;
        text-decoration: none;
        border-radius: 35px;
        border: none;
        -webkit-transition	: 0.2s ease-in-out;
        -moz-transition	: 0.2s ease-in-out;
        -o-transition	: 0.2s ease-in-out;
        transition		: 0.2s ease-in-out;	-webkit-appearance: none;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    .shop_twitter_bt > a:hover{
        opacity: 0.7;
        filter: alpha(opacity=70);
    }
    
    .shop_twitter_bt span{
        width: 40px;
        height: 40px;
        background: url(../../img/tmp/sns_bt1.png) no-repeat 50% 50%;
        background-size: 40px auto;
    }
    
    
    
    /****************************
    CONTACT
    *****************************/
    
    #contact{	padding: 50px 0;}
    
    #contact .topimg{
        font-size: 0;
        line-height: 0;
        margin: 0 0 20px 0;
        padding: 0 40px;
    }
    #contact .topimg img{
        width: 100%;
        height: auto;
    }
    
    #contact .form{
        position: relative;
        text-align: center;
        margin: 0 40px;
        padding: 20px;
        border-radius: 8px;
    }
    
    #contact .cbox{
        margin: 0 0 20px 0;
    }
    
    #contact .cbox h4{
        position: relative;
        font-size: 24px;
        line-height: 30px;
        text-align: left;
        margin: 0 0 10px 0;
        padding: 5px 5px 5px 30px;
        border-radius: 3px;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    
    #contact .cbox h4 i{
        display: inline-block;
        vertical-align: top;
        font-size: 15px;
        line-height: 15px;
        position: absolute;
        top: 12.5px;
        left: 10px;
    }
    
    #contact .cbox h4 .hissu{
        display: inline-block;
        vertical-align: middle;
        width: 35px;
        font-family: Meiryo,'Hiragino Kaku Gothic ProN','Hiragino Sans',sans-serif;
        font-size: 13px;
        font-weight: bold;
        line-height: 18px;
        text-align: center;
        margin-left: 5px;
        border-radius: 2px;
    }
    
    #contact .cbox p{
        font-size: 16px;
        line-height: 20px;
        text-align: left;
        padding: 0 10px;
    }
    
    #contact .size_bg input{	margin-bottom: 5px;}
    #contact .size_bg input:last-of-type{	margin-bottom: 0;}
    
    .form .submit{
        font-size: 0;
        line-height: 0;
        text-align: center;
        margin: 20px 0 0 0;
    }
    
    .submit p{
        font-size: 14px;
        line-height: 20px;
        margin: 0 0 20px 0;
        padding: 0 0 0 0;
    }
    
    .form .submit .fade{
    }
    .form .submit br{	display: none;}
    .form .submit .error_text br{	display: inline;}
    
    .form .submit input,
    .form .co_bt{
        display: inline-block;
        width: 100%;
        width: calc(100% - 20px);
        max-width: 280px;
        font-size: 24px;
        line-height: 30px;
        padding: 15px 0;
        color: #fff;
        text-align: center;
        text-decoration: none;
        border-radius: 3px;
        border: none;
        -webkit-transition	: 0.2s ease-in-out;
        -moz-transition	: 0.2s ease-in-out;
        -o-transition	: 0.2s ease-in-out;
        transition		: 0.2s ease-in-out;	-webkit-appearance: none;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    .form .submit input:hover,
    .form .co_bt:hover{
        opacity: 0.7;
        filter: alpha(opacity=70);
    }
    
    
    /** form item **/
    
    input[type="text"],
    input[type="url"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    input[type="number"]
    {
        padding: 10px;
        font-size		: 16px;
        line-height: 20px;
        font-family: Meiryo,'Hiragino Kaku Gothic ProN','Hiragino Sans',sans-serif;
        border			: 1px solid #ddd;
        border-radius: 3px;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    
    input[type="radio"]{
        padding			:0;
        margin			:0;
    }
    
    .w1{	width: 60%;}
    .w2{	width: 100%;}
    .w3{	width: 59px;}
    .w4{	width: 150px;}
    .s1{	width: 60%;}
    .s2{	width: 180px;}
    .s3{	width: 90px;}
    @media screen and (max-width: 650px) {
        .w1{	width: 80%;}
        .s1{	width: 80%;}
    }
    
    select{
        font-size: 16px;
        line-height: 20px;
        padding: 10px 20px 10px 10px;
        border: 1px solid #ddd;
        border-radius: 3px;
        font-family: Meiryo,'Hiragino Kaku Gothic ProN','Hiragino Sans',sans-serif;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    .select_bg{
        position: relative;
        display: inline-block;
    }
    .select_bg:before{
        content: '';
        display: inline-block;
        width: 20px;
        height: 40px;
        background: #999;
        border-radius: 0 3px 3px 0;
        position: absolute;
        top: 1px;
        right: 1px;
    }
    .select_bg:after{
        content: '';
        display: inline-block;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 8px 4px 0 4px;
        border-color: #fff transparent transparent transparent;
        position: absolute;
        top: calc(50% - 4px);
        right: 7px;
    }
    
    .form textarea{
        width: 100%;
        height: 200px;
        padding: 10px;
        font-size		: 16px;
        font-family: Meiryo,'Hiragino Kaku Gothic ProN','Hiragino Sans',sans-serif;
        vertical-align: top;
        border			: 1px solid #ddd;
        border-radius: 3px;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    
    .chk_bar{
        font-size: 0;
        line-height: 0;
        text-align: left;
    }
    
    .chk_bar input[type="checkbox"],
    .chk_bar input[type="radio"]{	display: none;}
    
    .chk_bar input[type="checkbox"] + label,
    .chk_bar input[type="radio"] + label{
        display: inline-block;
        vertical-align: top;
        width: calc(50% - 5px);
        max-width: 150px;
        height: 38px;
        font-size: 14px;
        line-height: 38px;
        text-align: center;
        border-radius: 20px;
        border-width: 1px;
        border-style: solid;
        cursor: pointer;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    
    .chk_bar input[type="checkbox"]:checked + label,
    .chk_bar input[type="radio"]:checked + label{
        box-shadow:none;
        -moz-box-shadow:none;
        -webkit-box-shadow:none;
    }
    
    .chk_bar input[type="checkbox"]:nth-of-type(1) + label,
    .chk_bar input[type="radio"]:nth-of-type(1) + label{	margin-right: 5px;}
    .chk_bar input[type="checkbox"]:nth-of-type(2) + label,
    .chk_bar input[type="radio"]:nth-of-type(2) + label{	margin-left: 5px;}
    
    .form input::placeholder,
    .form textarea::placeholder{	color: #ccc;}
    .form input:-ms-input-placeholder,
    .form textarea:-ms-input-placeholder{	color: #ccc;}
    .form input::-ms-input-placeholder,
    .form textarea::-ms-input-placeholder{	color: #ccc;}
    
    .error{
        font-size: 20px;
        line-height: 30px;
        text-align: center;
    }
    .error span{
        color			: #ff0000;
    }
    
    .over{
        font-size: 20px;
        font-weight: bold;
        line-height: 30px;
        text-align: center;
        margin			: 0 0 50px 0;
        padding			: 40px 0 0 0;
    }
    .error+.bt_bg,
    .over+.bt_bg{
        text-align: center;
        padding: 30px 0 0 0;
    }
    
    .error_text{
        display: inline-block;
        font-weight: bold;
        font-size: 14px;
        line-height: 20px;
        color: #ff0000;
        margin: 0 0 0 0;
    }
    #submit .error_text br{	display: inline;}
    
    .error_text:empty{ display: block;}
    
    .error_block .th{
        color: #ff0000 !important;
        animation-name: indfade;
        animation-duration: 2.0s;
        animation-timing-function: ease-out;
        animation-delay: 0.0s;
        animation-iteration-count: infinite;
        animation-fill-mode: backwards;
    }
    @keyframes indfade {
        0%{
            opacity: 1.0;
            filter: alpha(opacity=100);
        }
        80% {
            opacity: 1.0;
            filter: alpha(opacity=100);
        }
        85% {
            opacity: 0.3;
            filter: alpha(opacity=30);
        }
        90% {
            opacity: 1.0;
            filter: alpha(opacity=100);
        }
        95% {
            opacity: 0.3;
            filter: alpha(opacity=30);
        }
        100%{
            opacity: 1.0;
            filter: alpha(opacity=100);
        }
    }
    
    .error_block input[type="text"],
    .error_block input[type="email"],
    .error_block input[type="tel"],
    .error_block select,
    .error_block textarea{
        border-color: #ff0000 !important;
        background: #fff5f5 !important;
    }
    
    br.pc_none{	display: none;}
    
    
    /** capt **/
    
    
    .capt{
        width: 100%;
        max-width: 280px;
        min-width: 260px;
        border-width: 1px;
        border-style: solid;
        border-radius: 5px;
        margin: 20px auto;
        padding: 10px;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    
    .capt div{
        width: 100%;
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: space-between;
        margin: 0 0 10px 0;
    }
    
    .capt div span{
        font-size: 34px;
        line-height: 40px;
    }
    
    .capt div input[type="text"]{
        width: 100px;
        padding: 7px;
        font-size : 16px;
        line-height: 20px;
        font-family: Meiryo,'Hiragino Kaku Gothic ProN','Hiragino Sans',sans-serif;
        border: 1px solid #ddd;
        border-radius: 3px;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    
    .capt p{
        font-size: 10px;
        line-height: 14px;
        text-align: left;
        padding: 0 0;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    .capt p em{	color: #ff0000;}
    
    
    /** rollover **/
    
    .fade{
        display: inline-block;
        padding: 0;
        font-size: 0;
        line-height: 0;
    }
    
    .hover,
    .fade input{
        -webkit-transition	: 0.3s ease-in-out;
        -moz-transition	: 0.3s ease-in-out;
        -o-transition	: 0.3s ease-in-out;
        transition		: 0.3s ease-in-out;
        -webkit-backface-visibility:hidden;
        backface-visibility:hidden;
    }
    
    .hover:hover,
    .fade input:hover{
        opacity: 0.8;
        filter: alpha(opacity=80);
    }
    
    
    /***************************************************
    ANIMATION CSS
    ***************************************************/
    
    
    /** BASE **/
    .delighter{
        opacity: 0;
        filter: alpha(opacity=0);
    }
    
    /** START **/
    .delighter.started{
        -webkit-transition	: 0.5s ease-in-out;
        -moz-transition	: 0.5s ease-in-out;
        -o-transition	: 0.5s ease-in-out;
        transition		: 0.5s ease-in-out;
        opacity: 1;
        filter: alpha(opacity=100);
    }
    
    /** END **/
    .delighter.started.ended{
        opacity: 1;
        filter: alpha(opacity=100);
    }
    
    
    /*=================================================
     * COMMON CSS for SP
     * ================================================= */
    
    @media screen and (max-width: 650px) {
        header,
        nav,
        main,
        footer{
            width: 100%;
            margin: 0;
        }
        nav{	left: 0;}
        body:before,
        section:before,
        #page-top{
            width: 100vw;
            left: 0;
        }
        footer .foot_contact,
        footer .foot_time,
        footer .sns_bt,
        footer .foot_dis{
            margin-left: 20px;
            margin-right: 20px;
        }
        #imgup,
        section.cnt > div{	padding: 50px 20px;}
        #ch{	padding: 50px 0;}
        #ch .chbox{		width: calc(100% - 40px);}
        #about .about_bt .fbt_tel{	display: inline-flex;}
    
        #page-top #fbt_tel_pc{	display: none;}
        #page-top #fbt_tel_sp{	display: inline-flex;}
    
        .mv_bg{ padding: 0 20px;}
        
        #flow{	padding: 50px 20px;}
    
        #voice .topimg{	padding: 0 20px;}
        #voice .vbox_bg{	padding: 0 20px;}
        #voice .vbox{
            display: block;
        }
        #voice .vbox .vbox_top{
            width: auto;
            height: auto;
        }
        #voice .vbox:nth-of-type(odd) .vbox_top{	text-align: left; margin: 0;}
        #voice .vbox:nth-of-type(even) .vbox_top{	text-align: right; margin: 0;}
        #voice .vbox .vbox_txt{	margin-top: 10px;}
        #voice .vbox_txt h4:after,
        #voice .vbox_txt p:only-child:after{
            content: '';
            display: inline-block;
            width: 0;
            height: 0;
            position: absolute;
            top: -20px;
        }
        #voice .vbox:nth-of-type(odd) .vbox_txt h4:after,
        #voice .vbox:nth-of-type(odd) .vbox_txt p:only-child:after{
            left: 50px;
            transform: rotate(0deg);
        }
        #voice .vbox:nth-of-type(even) .vbox_txt h4:after,
        #voice .vbox:nth-of-type(even) .vbox_txt p:only-child:after{
            right: 50px;
            transform: rotate(0deg);
        }
    
        #qa{	padding: 50px 20px;}
        #info{	padding: 50px 10px;}
        #away{	padding: 50px 20px;}
        #staff{	padding: 50px 20px;}
    
        #contact .topimg{	padding: 0 20px;}
        #contact .form{	margin: 0 20px; padding: 10px 10px 20px 10px;}
    
        /** navToggle **/
        #navToggle button{	right: 10px;}
        
    
    }