@charset 'UTF-8';
/* --------------------------------------------------------------------------------
*
*   layout sss
*
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
*
*   color
*
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
*
*   font
*
-------------------------------------------------------------------------------- */
/*
*
*   web font
*
*/
@font-face
{
}@font-face
{
    font-family: 'Mincho';
    font-style: normal;

    src: url('/water/tennensui/mizunoyama/assets/resource/font/Mincho.otf') format('opentype');
}

.Mincho
{
    font-family: 'Mincho';
}

.ie11 .Mincho
{
    font-family: 'ヒラギノ明朝 Pro W6', 'Hiragino Mincho Pro', 'HGS明朝E', 'ＭＳ Ｐ明朝', serif, verdana, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', Sans-Serif;
}

/* --------------------------------------------------------------------------------
*
*   easing
*
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
*
*   prefix
*
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
*
*   media query
*
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
*
*   font-size対応表
*
-------------------------------------------------------------------------------- */
/*  ================================================================================
Base font = 12px
================================================================================ */
/* ================================================================================
Base font = 13px
================================================================================ */
/* ================================================================================
Base font = 15px
================================================================================ */
/* ================================================================================
Base font = 16px
================================================================================ */
/* --------------------------------------------------------------------------------
*
*   mixin
*
-------------------------------------------------------------------------------- */
/*
  *
  *   how to
  *
  */
/* --------------------------------------------------------------------------------
*
*   transform
*
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
*
*   transition
*
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
*
*   animation
*
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
*
*   media query
*
-------------------------------------------------------------------------------- */
/*
    *
    *   how to   
    *
    */
/* --------------------------------------------------------------------------------
*
*   portrait,landscape
*
-------------------------------------------------------------------------------- */
/*
  *
  *   how to
  *
  */
/* --------------------------------------------------------------------------------
*
*   function
*
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
*
*   common
*
-------------------------------------------------------------------------------- */
/*
*
*   how to
*
*/
/*
*
*   font
*
*/
/*
 *
 *   web font   
 *
 */
body
{
    margin: 0;
    padding: 0;

    border: none;
}

/* image */
img,
div,
p,
blockquote,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
form,
fieldset,
textarea
{
    font-size: 100%;
    font-weight: normal;
    font-style: normal;

    margin: 0;
    padding: 0;

    list-style: none;

    text-decoration: none;

    border: 0;
}

a
{
    cursor: pointer;
}

table
{
    font-size: 100%;
}

hr.separator
{
    display: none;
}

input,
button,
select,
textarea
{
    resize: none;

    border: none;
    border-radius: 0;
    outline: none;
    background-color: transparent;

    -webkit-appearance: none;
}

img
{
    vertical-align: bottom;
}

/* --------------------------------------------------------------------------------
*
*   html,body
*
-------------------------------------------------------------------------------- */
html
{
    font-size: 16px;

    letter-spacing: 0;

    color: #000;
    background-color: #fff;

    -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
            text-size-adjust: 100%;
}

/* --------------------------------------------------------------------------------
*
*   wrapper,inner
*
-------------------------------------------------------------------------------- */
#wrapper
{
    height: 100vh;
}

#border
{
    height: 100%;
}

#inner
{
    height: 100%;
}

/* --------------------------------------------------------------------------------
*
*   link
*
-------------------------------------------------------------------------------- */
a
{
    text-decoration: underline;

    color: #1bafe8;
}

a:hover
{
    text-decoration: underline;

    color: #1bafe8;
}

a:visited
{
    text-decoration: underline;

    color: #1bafe8;
}

a:active
{
    text-decoration: underline;

    color: #1bafe8;
}

/* --------------------------------------------------------------------------------
*
*   hover
*
-------------------------------------------------------------------------------- */
/*
    *
    *   img hovers
    *
    */
.op
{
    transition: opacity .25s cubic-bezier(.25, .46, .45, .94) 0s;
}

.op:hover
{
    cursor: pointer;

    opacity: .4 !important;
}

.scale
{
    transition: -webkit-transform .35s cubic-bezier(.25, .46, .45, .94) 0s;
    transition:         transform .35s cubic-bezier(.25, .46, .45, .94) 0s;
    transition:         transform .35s cubic-bezier(.25, .46, .45, .94) 0s, -webkit-transform .35s cubic-bezier(.25, .46, .45, .94) 0s;
}

.scale:hover
{
    cursor: pointer;
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}

.scale_img
{
    transition: -webkit-transform .3s cubic-bezier(.25, .46, .45, .94) 0s;
    transition:         transform .3s cubic-bezier(.25, .46, .45, .94) 0s;
    transition:         transform .3s cubic-bezier(.25, .46, .45, .94) 0s, -webkit-transform .3s cubic-bezier(.25, .46, .45, .94) 0s;
}

.scale_img:hover
{
    cursor: pointer;
    -webkit-transform: scale(1.15);
        -ms-transform: scale(1.15);
            transform: scale(1.15);
}

.borderTransit
{
    transition: all .3s cubic-bezier(.25, .46, .45, .94) 0s;

    border: 4px solid transparent;
}

.borderTransit:hover
{
    cursor: pointer;

    border: 4px solid #2babde;
}

/*
    *
    *   text hover
    *   広がる、色が変わる(背景色と文字色)
    */
.under
{
    text-decoration: underline !important;
}

.under:hover
{
    text-decoration: none !important;
}

._under
{
    text-decoration: none !important;
}

._under:hover
{
    text-decoration: underline !important;
}

.under__red
{
    border-bottom: none;
}

.under__red:hover
{
    border-bottom: 1px solid #c30000;
}

/*
    *
    *   cursor
    *
    */
.cp
{
    cursor: pointer;
}

/*
    *
    *   linkarea
    *
    */
.linkArea:hover .link
{
    border-bottom: 1px solid #1c426d;
}

.linkArea img
{
    transition: all .25s cubic-bezier(.25, .46, .45, .94) 0s;
}

.linkArea:hover img
{
    opacity: .5;
}

/* --------------------------------------------------------------------------------
*
*   title
*
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
*
*   p
*
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
*
*   header
*
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
*
*   nav
*
-------------------------------------------------------------------------------- */
/*
*
*   media query   
*
*/
/* --------------------------------------------------------------------------------
*
*   contents
*
-------------------------------------------------------------------------------- */
/*
*
*   top visual
*
*/
/*
*
*   media query   
*
*/
/* --------------------------------------------------------------------------------
*
*   footer
*
-------------------------------------------------------------------------------- */
/*
*
*   media query   
*
*/
/* --------------------------------------------------------------------------------
*
*   landscape
*
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
*
*   sns
*
-------------------------------------------------------------------------------- */
.fbShare,
.twShare
{
    cursor: pointer;
}

/* --------------------------------------------------------------------------------
*
*   bg
*
-------------------------------------------------------------------------------- */
.bgWhite
{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 500px;

    background-color: #fff;
}

/* --------------------------------------------------------------------------------
*
*   bg 固定
*
-------------------------------------------------------------------------------- */
.bgAttachFixed
{
    background-attachment: fixed !important;
}

/* --------------------------------------------------------------------------------
*
*   menu
*
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
*
*   row
*
-------------------------------------------------------------------------------- */
.row
{
    font-size: 0;

    text-align: center;
}

.row .item
{
    display: inline-block;
}

.row.row_col2 > .item
{
    width: 50%;
}

.row.row_col3 > .item
{
    width: 33.3333%;
}

.row.row_col4 > .item
{
    width: 25%;
}

.row .item:last-child
{
    margin-right: 0 !important;
    padding-right: 0 !important;
}

/* --------------------------------------------------------------------------------
*
*   loading
*
-------------------------------------------------------------------------------- */
#loading
{
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
}

#loading .top
{
    position: absolute;
    top: 0;
    left: 0;

    width: 0;
    height: 10px;

    background-color: #fff;
}

#loading .right
{
    position: absolute;
    top: 0;
    right: 0;

    width: 10px;
    height: 0;

    background-color: #fff;
}

#loading .bottom
{
    position: absolute;
    right: 0;
    bottom: 0;

    width: 0;
    height: 10px;

    background-color: #fff;
}

#loading .left
{
    position: absolute;
    bottom: 0;
    left: 0;

    width: 10px;
    height: 0;

    background-color: #fff;
}

.loadingBar
{
    position: fixed;
    z-index: 100000;
    top: 50%;
    left: 0;

    width: 0;
    height: 1px;
    margin-top: -.5px;

    background-color: #fff;
}

/* --------------------------------------------------------------------------------
*
*   table
*
-------------------------------------------------------------------------------- */
.table
{
    width: 100%;
    margin-bottom: 30px;

    border-spacing: 0;
    border-collapse: collapse;
}

.table .tr
{
    position: static;
}

.table .td
{
    line-height: 24px;

    position: static;

    padding: 9px 20px 8px;

    border: 1px solid #ccc;
}

.table .map
{
    padding: 15px 20px;
}

.table #map
{
    margin-top: 5px;
    margin-bottom: 10px;
}

.table .td:nth-child(1)
{
    width: 25%;

    background-color: #f6f6f6;
}

.table__wrap
{
    max-width: 990px;
    margin: 0 auto;
    margin-bottom: 50px;
}

@media only screen and (max-width: 1100px)
{
    .table__wrap
    {
        padding: 0 30px;
    }
}

.table__wrap .businessOurs p
{
    line-height: 20px;

    margin-bottom: 20px;
}

.table__wrap .businessOurs p:last-child
{
    margin-bottom: 0;
}

.table__wrap .price
{
    padding-right: 40px;
}

/* --------------------------------------------------------------------------------
*
*   sp Menu
*
-------------------------------------------------------------------------------- */
.menu_button
{
    position: absolute;
    top: 19px;
    left: 25px;

    display: none;

    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
}

.menu_button .menu_button_inner
{
    top: 20px;
    left: 10px;
}

.type-1 span
{
    top: 50%;

    display: block;

    width: 20px;
    height: 2px;

    transition: all .3s;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);

    background: #fff;
}

.type-1 .top
{
    -webkit-transform: translateY(-3px);
        -ms-transform: translateY(-3px);
            transform: translateY(-3px);
}

.type-1 .bottom
{
    -webkit-transform: translateY(3px);
        -ms-transform: translateY(3px);
            transform: translateY(3px);
}

.type-1.is-open .middle
{
    background: rgba(255, 255, 255, 0);
}

.type-1.is-open .top
{
    -webkit-transform: rotate(-45deg) translateY(0);
        -ms-transform: rotate(-45deg) translateY(0);
            transform: rotate(-45deg) translateY(0);
}

.type-1.is-open .bottom
{
    -webkit-transform: rotate(45deg) translate(-1px, -1px);
        -ms-transform: rotate(45deg) translate(-1px, -1px);
            transform: rotate(45deg) translate(-1px, -1px);
}

/* --------------------------------------------------------------------------------
*
*   error
*
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
*
*   copy
*
-------------------------------------------------------------------------------- */
#copy
{
    line-height: 1;

    text-align: center;
}

/* --------------------------------------------------------------------------------
*
*   bread
*
-------------------------------------------------------------------------------- */
.bread
{
    font-size: 13px;

    position: absolute;
    z-index: 5;
    top: 56px;
    left: 27px;
}

.bread a
{
    color: #fff;
}

.bread .arrow
{
    position: relative;
    top: -1px;
}

/* --------------------------------------------------------------------------------
*
*   overlay
*
-------------------------------------------------------------------------------- */
.overlay
{
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-color: rgba(0, 0, 0, .6);
}

/* --------------------------------------------------------------------------------
*
*   checkbox
*
-------------------------------------------------------------------------------- */
[type='checkbox']:not(:checked),
[type='checkbox']:checked
{
    position: absolute;
    left: -9999px;
}

[type='checkbox']:not(:checked) + label,
[type='checkbox']:checked + label
{
    position: relative;

    padding-left: 25px;

    cursor: pointer;
}

[type='checkbox']:not(:checked) + label:before,
[type='checkbox']:checked + label:before
{
    position: absolute;
    top: 1px;
    left: 1px;

    box-sizing: border-box;
    width: 16px;
    height: 16px;

    content: '';

    border: 1px solid #aaa;
    background: #fff;
}

/* checked mark aspect */
[type='checkbox']:not(:checked) + label:after,
[type='checkbox']:checked + label:after
{
    font-size: 14px;

    position: absolute;
    top: 0;
    left: 4px;

    content: '✔';
    transition: all .2s;

    color: #00cdff;
}

/* checked mark aspect changes */
[type='checkbox']:not(:checked) + label:after
{
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);

    opacity: 0;
}

[type='checkbox']:checked + label:after
{
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);

    opacity: 1;
}

/* disabled checkbox */
[type='checkbox']:disabled:not(:checked) + label:before,
[type='checkbox']:disabled:checked + label:before
{
    border-color: #bbb;
    background-color: #ddd;
    box-shadow: none;
}

[type='checkbox']:disabled:checked + label:after
{
    color: #999;
}

[type='checkbox']:disabled + label
{
    color: #aaa;
}

[type='checkbox']:checked:focus + label:before,
[type='checkbox']:not(:checked):focus + label:before
{
    border: 1px dotted blue;
}

/* --------------------------------------------------------------------------------
*
*   select box
*
-------------------------------------------------------------------------------- */
.selectBox
{
    display: none;
}

.selectBoxArea
{
    box-sizing: border-box;
    width: 410px;
    height: 30px;

    border: 1px solid #bebebe;
}

.selectBoxArea .selectBoxArea__display
{
    line-height: 30px;

    height: 100%;
    padding-left: 20px;
}

.selectBoxArea .selectBoxArea__listWrap
{
    position: relative;
    z-index: 99999;
    left: -1px;

    display: none;
    overflow-y: scroll;

    box-sizing: border-box;
    width: calc(100% + 2px);
    height: 140px;

    border: 1px solid #bebebe;
    background-color: #fff;
}

.selectBoxArea .selectBoxArea__list
{
    height: 100%;
    padding-top: 3px;
}

.selectBoxArea .selectBoxArea__listItem
{
    line-height: 25px;

    padding: 2px 0;
}

.selectBoxArea .selectBoxArea__listItem .item
{
    display: block;

    box-sizing: border-box;
    margin-right: 10px;
    margin-left: 10px;
    padding-left: 10px;
}

.selectBoxArea .selectBoxArea__listItem .item:hover
{
    background-color: #eee;
}

/* --------------------------------------------------------------------------------
*
*   その他
*
-------------------------------------------------------------------------------- */
/*
*
*  transition 無効化s
*
*/
.preload *
{
    transition: none !important;
}

/*
*
*   triangle
*
*/
.triangle
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 0;
    height: 0;

    border-width: 7px 7px 7px 0;
    border-style: solid;
    border-color: transparent #eee transparent transparent;
}

.triangle.over
{
    z-index: 2;
}

/*
*
*   shadow
*
*/
.shadow
{
    box-shadow: 4px 2px 10px 1px #ccc inset;
}

/*
*
*   design(見本)
*
*/
.sample
{
    position: absolute;
    z-index: 2;
    top: 0;

    display: none;

    opacity: .7;
}

/* --------------------------------------------------------------------------------
*
*   font-size
*
-------------------------------------------------------------------------------- */
/* Font-Size */
.fz10
{
    font-size: 10px;
    font-size: .625rem;
}

.fz12
{
    font-size: 12px;
    font-size: .75rem;
}

.fz14
{
    font-size: 14px;
    font-size: .875rem;
}

.fz16
{
    font-size: 16px;
    font-size: 1rem;
}

.fz18
{
    font-size: 18px;
    font-size: 1.125rem;
}

.fz20
{
    font-size: 20px;
    font-size: 1.25rem;
}

.fz22
{
    font-size: 22px;
    font-size: 1.375rem;
}

.fz30
{
    font-size: 30px;
    font-size: 1.875rem;
}

.fz40
{
    font-size: 40px;
    font-size: 2.5rem;
}

.fz50
{
    font-size: 50px;
    font-size: 3.125rem;
}

.fz60
{
    font-size: 60px;
    font-size: 3.75rem;
}

.fz70
{
    font-size: 70px;
    font-size: 4.375rem;
}

.fz80
{
    font-size: 80px;
    font-size: 5rem;
}

.fz90
{
    font-size: 90px;
    font-size: 5.625rem;
}

/* Margin-Top & Padding-Top */
.mt00
{
    margin-top: 0 !important;
}

.pt00
{
    padding-top: 0 !important;
}

.mt05
{
    margin-top: 5px !important;
}

.pt05
{
    padding-top: 5px !important;
}

.mt10
{
    margin-top: 10px !important;
}

.pt10
{
    padding-top: 10px !important;
}

.mt15
{
    margin-top: 15px !important;
}

.pt15
{
    padding-top: 15px !important;
}

.mt20
{
    margin-top: 20px !important;
}

.pt20
{
    padding-top: 20px !important;
}

.mt25
{
    margin-top: 25px !important;
}

.pt25
{
    padding-top: 25px !important;
}

.mt30
{
    margin-top: 30px !important;
}

.pt30
{
    padding-top: 30px !important;
}

.mt35
{
    margin-top: 35px !important;
}

.pt35
{
    padding-top: 35px !important;
}

.mt40
{
    margin-top: 40px !important;
}

.pt40
{
    padding-top: 40px !important;
}

.mt45
{
    margin-top: 45px !important;
}

.pt45
{
    padding-top: 45px !important;
}

.mt50
{
    margin-top: 50px !important;
}

.pt50
{
    padding-top: 50px !important;
}

.mt55
{
    margin-top: 55px !important;
}

.pt55
{
    padding-top: 55px !important;
}

.mt60
{
    margin-top: 60px !important;
}

.pt60
{
    padding-top: 60px !important;
}

.mt65
{
    margin-top: 65px !important;
}

.pt65
{
    padding-top: 65px !important;
}

.mt70
{
    margin-top: 70px !important;
}

.pt70
{
    padding-top: 70px !important;
}

.mt75
{
    margin-top: 75px !important;
}

.pt75
{
    padding-top: 75px !important;
}

.mt80
{
    margin-top: 80px !important;
}

.pt80
{
    padding-top: 80px !important;
}

.mt85
{
    margin-top: 85px !important;
}

.pt85
{
    padding-top: 85px !important;
}

.mt90
{
    margin-top: 90px !important;
}

.pt90
{
    padding-top: 90px !important;
}

.mt95
{
    margin-top: 95px !important;
}

.pt95
{
    padding-top: 95px !important;
}

.mt100
{
    margin-top: 100px !important;
}

.pt100
{
    padding-top: 100px !important;
}

/* Margin-Right & Padding-Right */
.mr00
{
    margin-right: 0 !important;
}

.pr00
{
    padding-right: 0 !important;
}

.mr05
{
    margin-right: 5px !important;
}

.pr05
{
    padding-right: 5px !important;
}

.mr10
{
    margin-right: 10px !important;
}

.pr10
{
    padding-right: 10px !important;
}

.mr15
{
    margin-right: 15px !important;
}

.pr15
{
    padding-right: 15px !important;
}

.mr20
{
    margin-right: 20px !important;
}

.pr20
{
    padding-right: 20px !important;
}

.mr25
{
    margin-right: 25px !important;
}

.pr25
{
    padding-right: 25px !important;
}

.mr30
{
    margin-right: 30px !important;
}

.pr30
{
    padding-right: 30px !important;
}

.mr35
{
    margin-right: 35px !important;
}

.pr35
{
    padding-right: 35px !important;
}

.mr40
{
    margin-right: 40px !important;
}

.pr40
{
    padding-right: 40px !important;
}

.mr45
{
    margin-right: 45px !important;
}

.pr45
{
    padding-right: 45px !important;
}

.mr50
{
    margin-right: 50px !important;
}

.pr50
{
    padding-right: 50px !important;
}

.mr55
{
    margin-right: 55px !important;
}

.pr55
{
    padding-right: 55px !important;
}

.mr60
{
    margin-right: 60px !important;
}

.pr60
{
    padding-right: 60px !important;
}

.mr65
{
    margin-right: 65px !important;
}

.pr65
{
    padding-right: 65px !important;
}

.mr70
{
    margin-right: 70px !important;
}

.pr70
{
    padding-right: 70px !important;
}

.mr75
{
    margin-right: 75px !important;
}

.pr75
{
    padding-right: 75px !important;
}

.mr80
{
    margin-right: 80px !important;
}

.pr80
{
    padding-right: 80px !important;
}

.mr85
{
    margin-right: 85px !important;
}

.pr85
{
    padding-right: 85px !important;
}

.mr90
{
    margin-right: 90px !important;
}

.pr90
{
    padding-right: 90px !important;
}

.mr95
{
    margin-right: 95px !important;
}

.pr95
{
    padding-right: 95px !important;
}

.mr100
{
    margin-right: 100px !important;
}

.pr100
{
    padding-right: 100px !important;
}

/* Margin-Bottom & Padding-Bottom */
.mb00
{
    margin-bottom: 0 !important;
}

.pb00
{
    padding-bottom: 0 !important;
}

.mb05
{
    margin-bottom: 5px !important;
}

.pb05
{
    padding-bottom: 5px !important;
}

.mb10
{
    margin-bottom: 10px !important;
}

.pb10
{
    padding-bottom: 10px !important;
}

.mb15
{
    margin-bottom: 15px !important;
}

.pb15
{
    padding-bottom: 15px !important;
}

.mb20
{
    margin-bottom: 20px !important;
}

.pb20
{
    padding-bottom: 20px !important;
}

.mb25
{
    margin-bottom: 25px !important;
}

.pb25
{
    padding-bottom: 25px !important;
}

.mb30
{
    margin-bottom: 30px !important;
}

.pb30
{
    padding-bottom: 30px !important;
}

.mb35
{
    margin-bottom: 35px !important;
}

.pb35
{
    padding-bottom: 35px !important;
}

.mb40
{
    margin-bottom: 40px !important;
}

.pb40
{
    padding-bottom: 40px !important;
}

.mb45
{
    margin-bottom: 45px !important;
}

.pb45
{
    padding-bottom: 45px !important;
}

.mb50
{
    margin-bottom: 50px !important;
}

.pb50
{
    padding-bottom: 50px !important;
}

.mb55
{
    margin-bottom: 55px !important;
}

.pb55
{
    padding-bottom: 55px !important;
}

.mb60
{
    margin-bottom: 60px !important;
}

.pb60
{
    padding-bottom: 60px !important;
}

.mb65
{
    margin-bottom: 65px !important;
}

.pb65
{
    padding-bottom: 65px !important;
}

.mb70
{
    margin-bottom: 70px !important;
}

.pb70
{
    padding-bottom: 70px !important;
}

.mb75
{
    margin-bottom: 75px !important;
}

.pb75
{
    padding-bottom: 75px !important;
}

.mb80
{
    margin-bottom: 80px !important;
}

.pb80
{
    padding-bottom: 80px !important;
}

.mb85
{
    margin-bottom: 85px !important;
}

.pb85
{
    padding-bottom: 85px !important;
}

.mb90
{
    margin-bottom: 90px !important;
}

.pb90
{
    padding-bottom: 90px !important;
}

.mb95
{
    margin-bottom: 95px !important;
}

.pb95
{
    padding-bottom: 95px !important;
}

.mb100
{
    margin-bottom: 100px !important;
}

.pb100
{
    padding-bottom: 100px !important;
}

/* Margin-Left & Padding-Left */
.ml00
{
    margin-left: 0 !important;
}

.pl00
{
    padding-left: 0 !important;
}

.ml05
{
    margin-left: 5px !important;
}

.pl05
{
    padding-left: 5px !important;
}

.ml10
{
    margin-left: 10px !important;
}

.pl10
{
    padding-left: 10px !important;
}

.ml15
{
    margin-left: 15px !important;
}

.pl15
{
    padding-left: 15px !important;
}

.ml20
{
    margin-left: 20px !important;
}

.pl20
{
    padding-left: 20px !important;
}

.ml25
{
    margin-left: 25px !important;
}

.pl25
{
    padding-left: 25px !important;
}

.ml30
{
    margin-left: 30px !important;
}

.pl30
{
    padding-left: 30px !important;
}

.ml35
{
    margin-left: 35px !important;
}

.pl35
{
    padding-left: 35px !important;
}

.ml40
{
    margin-left: 40px !important;
}

.pl40
{
    padding-left: 40px !important;
}

.ml45
{
    margin-left: 45px !important;
}

.pl45
{
    padding-left: 45px !important;
}

.ml50
{
    margin-left: 50px !important;
}

.pl50
{
    padding-left: 50px !important;
}

.ml55
{
    margin-left: 55px !important;
}

.pl55
{
    padding-left: 55px !important;
}

.ml60
{
    margin-left: 60px !important;
}

.pl60
{
    padding-left: 60px !important;
}

.ml65
{
    margin-left: 65px !important;
}

.pl65
{
    padding-left: 65px !important;
}

.ml70
{
    margin-left: 70px !important;
}

.pl70
{
    padding-left: 70px !important;
}

.ml75
{
    margin-left: 75px !important;
}

.pl75
{
    padding-left: 75px !important;
}

.ml80
{
    margin-left: 80px !important;
}

.pl80
{
    padding-left: 80px !important;
}

.ml85
{
    margin-left: 85px !important;
}

.pl85
{
    padding-left: 85px !important;
}

.ml90
{
    margin-left: 90px !important;
}

.pl90
{
    padding-left: 90px !important;
}

.ml95
{
    margin-left: 95px !important;
}

.pl95
{
    padding-left: 95px !important;
}

.ml100
{
    margin-left: 100px !important;
}

.pl100
{
    padding-left: 100px !important;
}

/* line-height */
/* Float */
.fl
{
    float: left;
}

.fr
{
    float: right;
}

.cl
{
    clear: both;
}

.fList > li,
.fList > dt,
.fList > dd,
.fList > .item
{
    float: left;
}

.fList > .item:last-child
{
    margin-right: 0 !important;
    padding-right: 0 !important;
}

.fBoth > li:first-child
{
    float: left;
}

.fBoth > li:last-child
{
    float: right;
}

.fBoth > dt,
.fBoth > .item:nth-child(1)
{
    float: left;
}

.fBoth > dd,
.fBoth > .item:nth-child(2)
{
    float: right;
}

/* Clearfix*/
.cf,
.wrap,
.fList
{
    zoom: 1;
}

.cf:after,
.wrap:after,
.fList:after,
.fBoth:after
{
    line-height: 0;

    display: block;
    visibility: hidden;
    clear: both;

    height: 0;

    content: '.';
}

/* TextAlign */
.al
{
    text-align: left;
}

.ar
{
    text-align: right;
}

.ac
{
    text-align: center;
}

/* TextAlign */
.vb
{
    vertical-align: baseline;
}

/* position relative */
div,
section,
article,
ul,
header,
footer,
tr,
td
{
    position: relative;
}

/* Nav*/
.nav
{
    zoom: 1;
}

.nav:after
{
    line-height: 0;

    display: block;
    visibility: hidden;
    clear: both;

    height: 0;

    content: '.';
}

/* --------------------------------------------------------------------------------
*
*   font
*
-------------------------------------------------------------------------------- */
.captalize
{
    text-transform: capitalize;
}

.uppercase
{
    text-transform: uppercase;
}

.lowercase
{
    text-transform: lowercase;
}

/* --------------------------------------------------------------------------------
*
*   responsive
*
-------------------------------------------------------------------------------- */
img.fitted
{
    width: 100% !important;
    height: auto !important;
}

img.flex
{
    width: 100% !important;
    height: auto !important;
}

/* --------------------------------------------------------------------------------
*
*   overflow hidden
*
-------------------------------------------------------------------------------- */
.oh
{
    overflow: hidden;
}

/* --------------------------------------------------------------------------------
*
*   word breadk
*
-------------------------------------------------------------------------------- */
.wb
{
    word-break: break-all;
}

/* --------------------------------------------------------------------------------
*
*   font-weight
*
-------------------------------------------------------------------------------- */
.fwb
{
    font-weight: bold;
}

/* --------------------------------------------------------------------------------
*
*   center
*
-------------------------------------------------------------------------------- */
.posCenter
{
    position: absolute;
    top: 50%;
    left: 50%;

    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

/* --------------------------------------------------------------------------------
*
*   opacity
*
-------------------------------------------------------------------------------- */
.is-unvisible
{
    opacity: 0 !important;
}

.is-visible
{
    opacity: 1 !important;
}

/* --------------------------------------------------------------------------------
*
*   display
*
-------------------------------------------------------------------------------- */
.is-block
{
    display: block !important;
}

.is-none
{
    display: none !important;
}

/* --------------------------------------------------------------------------------
*
*   overflow
*
-------------------------------------------------------------------------------- */
.is-scroll
{
    overflow: scroll !important;
}

.is-scroll-x
{
    overflow-x: scroll !important;
}

.is-scroll-y
{
    overflow-y: scroll !important;
}

.is-hidden
{
    overflow: hidden !important;
}

.is-hidden-x
{
    overflow-x: hidden !important;
}

.is-hidden-y
{
    overflow-y: hidden !important;
}

/* --------------------------------------------------------------------------------
*
*   position
*
-------------------------------------------------------------------------------- */
.is-fixed
{
    position: fixed !important;
}

.is-absolute
{
    position: absolute !important;
}

.is-relative
{
    position: relative !important;
}

.is-static
{
    position: static !important;
}

/* --------------------------------------------------------------------------------
*
*   その他
*
-------------------------------------------------------------------------------- */
#top
{
    /* --------------------------------------------------------------------------------
*
*   section01 
*
-------------------------------------------------------------------------------- */
    /* --------------------------------------------------------------------------------
  *
  *   media query
  *
  -------------------------------------------------------------------------------- */
}

#top .section01
{
    overflow: hidden;

    box-sizing: border-box;
    max-width: 500px;
    height: 100vh;
    margin: 0 auto;
    /* --------------------------------------------------------------------------------
  *
  *   media query
  *
  -------------------------------------------------------------------------------- */
}

#top .section01 .lottery
{
    height: 100%;
}

#top .section01 .lotteryInner
{
    height: 100%;
}

#top .section01 .stand
{
    position: absolute;
    bottom: 147px;
    left: 50%;

    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}

#top .section01 .bodyWrap
{
    position: absolute;
    bottom: 205px;
    left: 50%;

    width: 204px;
    height: 204px;

    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}

#top .section01 .body_img
{
    opacity: 0;
}

#top .section01 canvas.body_img
{
    opacity: 1;
}

#top .section01 .partsWrap
{
    position: absolute;
    z-index: 2;
    bottom: 39px;
    left: 50%;

    -webkit-transform: translate(-100%, 36%);
        -ms-transform: translate(-100%, 36%);
            transform: translate(-100%, 36%);
}

#top .section01 .partsWrap .bar
{
    position: absolute;
    top: -7px;
    left: 94px;
}

#top .section01 .partsWrap .ballPos
{
    position: absolute;
    top: 71px;
    left: 12px;

    width: 20px;
    height: 20px;

    opacity: 0;
}

#top .section01 .ballWrap
{
    position: absolute;
    bottom: 224px;
    left: 50%;

    height: 129px;

    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}

#top .section01 .ballWrap .img
{
    position: absolute;
}

#top .section01 .ballWrap .shadow01
{
    position: absolute;
    bottom: -20px;
    left: 50%;

    opacity: 0;
}

#top .section01 .ballWrap .light01
{
    position: absolute;
    top: 3px;
    left: 50%;

    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);

    opacity: 0;
}

#top .section01 .ballWrap .light02
{
    position: absolute;
    top: 0;
    left: 50%;

    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);

    opacity: 0;
}

#top .section01 .ballWrap .ball
{
    position: relative;

    opacity: 0;
}

#top .section01 .ballWrap .starWrap
{
    opacity: 1;
}

#top .section01 .ballWrap .star01
{
    top: -220px;
    left: 18px;
}

#top .section01 .ballWrap .star02
{
    top: -175px;
    left: -55px;
}

#top .section01 .ballWrap .star03
{
    top: -36px;
    left: -64px;
}

#top .section01 .ballWrap .star04
{
    top: -86px;
    left: 138px;
}

#top .section01 .ballWrap .star05
{
    top: -184px;
    left: 105px;
}

#top .section01 .ballWrap .star06
{
    top: -138px;
    left: -33px;
}

#top .section01 .ballWrap .rect01
{
    top: -144px;
    left: 92px;
}

#top .section01 .ballWrap .rect02
{
    top: -175px;
    left: 6px;
}

#top .section01 .ballWrap .rect03
{
    top: -81px;
    left: -37px;
}

#top .section01 .ballWrap .rect04
{
    top: -118px;
    left: 162px;
}

#top .section01 .ballWrap .rect05
{
    top: -36px;
    left: 162px;
}

#top .section01 .btn
{
    position: absolute;
    z-index: 10000;
    bottom: 63px;
    left: 50%;

    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}

#top .section01 .border
{
    position: absolute;
    z-index: 9999;
    top: 0;
    left: 0;

    box-sizing: border-box;
    width: 100%;
    height: 100%;
    height: 100%;

    border: 10px solid #cc9f61;
}

#top .ballDrop
{
    position: absolute;

    opacity: 0;
}
