@charset "UTF-8";

/* update 2021-04-15 CMSテンプレート対応化 */


/* ie11ハック */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    img[src$=".svg"] {
        width: 100%;
        height: auto;
    }
}

/* デフォルト定義/* デフォルト定義 */
*,*:before,*:after {
    -webkit-box-sizing: border-box;
    box-sizing        : border-box;
}
html {
    font-size: 10px;
}
body {
	font-family:'Yu Gothic UI','Meiryo UI','メイリオ','Yu Gothic','ヒラギノ角ゴ ProN W3','MS PGothic', 'arial', 'helvetica', sans-serif;
    line-height: 1;
    min-height: 100%;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    font-size: 14px;
    color: #000;
    font-weight: 500;
}
a {
    color: #000;
    text-decoration: none;
}
/*a > * {
    -webkit-backface-visibility: hidden;
    backface-visibility        : hidden;
}*/
img {
    vertical-align: bottom;
    max-width: 100%;;
    height: auto;
}
ul,ol {
    list-style: none;
}

/* 各種パーツ定義 */
.static { position:static; }
.relative { position:relative; }
.absolute { position:absolute; }
.sticky { position:sticky; }
.fixed { position:fixed; }
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}
.flex.space-between {/* 両端揃え */
    justify-content: space-between;
}
.flex.space-around {/* 均等割り */
    justify-content: space-around;
}
.displaynone {
    display: none !important;
}
.bold {
    font-weight: 600;
    text-shadow: 0 0 black;
}
strong{
    font-weight: 600;
    text-shadow: 0 0 black;
}
.msie .bold {
    font-weight: 600;
}
.block {
    display: block;
}
.colbox ,
.colbox > .colbox {
    letter-spacing: -0.4em;
}
.colbox > * {
    letter-spacing: normal;
}
.col {
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
}
.table {
    display: table;
    table-layout: fixed;
    width: 100%;
}
.table-header {
    display: table-header-group;
}
.table-body {
    display: table-row-group;
}
.table-footer {
    display: table-footer-group;
}
.table-row {
    display: table-row;
}
.table-cell {
    display: table-cell;
    vertical-align: top;
}
.image {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 100%;
}
.image.no-image {
    position: relative;
    background-color: #ccc;
}
.image.no-image:before {
    position: absolute;
    content: 'NO IMAGE';
    font-weight: bold;
    font-size: 1.285rem;
    line-height: 1;
    margin-top: -0.5em;
    color: #fff;
    width: 100%;
    top: 50%;
    left: 0;
    text-align: center;
}
.vt { vertical-align: top; }
.vm { vertical-align: middle; }
.vb { vertical-align: bottom; }
.vd { vertical-align: baseline; }
.ac { text-align: center; }
.al { text-align: left; }
.ar { text-align: right; }
.middle-pc ,
.sp {
    display: none !important;
}
.ua-tb a[href^="tel:"] ,
.ua-pc a[href^="tel:"] {
    pointer-events: none;
}
@media only screen and (max-width: 968px){
    .big-pc {
        display: none;
    }
    .middle-pc {
        display: block !important;
    }
}
@media only screen and (max-width: 768px){
    .sp {
        display: block !important;
    }
    a.sp ,
    img.sp ,
    svg.sp ,
    span.sp ,
    br.sp {
        display: inline-block !important;
    }
    .pc {
        display: none !important;
    }
}

/* スマホ対策 */
select ,
input[type="button"],
input[type="text"],
input[type="number"],
input[type="url"],
input[type="submit"] {
    -webkit-appearance: none !important;
    border-radius: 0;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
}
input[type="text"]{
    line-height:1;
    padding: 5px 3px;
}
::-webkit-input-placeholder {
    padding-top: 2px;
}
.fadeinUP {
    opacity: 0;
    -webkit-transform: translate3d(0, 45px, 0);
            transform: translate3d(0, 45px, 0);
}
.fadeinUP.on {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    -webkit-transition: all 1200ms cubic-bezier(0.215, 0.61, 0.355, 1);
    transition        : all 1200ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.fadeinUP + .fadeinUP.on {
    transition-delay: 200ms;
}
.fadein {
    opacity: 0;
}
.fadein.on {
    opacity: 1;
    -webkit-transition: all 1200ms cubic-bezier(0.215, 0.61, 0.355, 1);
            transition: all 1200ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
*:focus {
  outline: none;
}
/* IE8+, Chrome */
input, button {
  outline: none;
}

/* Firefox */
input::-moz-focus-inner, button::-moz-focus-inner {
  border: 0;
}

/* test sitemap */
.test-sitemap #mainContents ul ul {
  margin-left: 1em;
}
.test-sitemap #mainContents ul a.nolink {
  pointer-events: none;
  color: #ccc;
}
.test-sitemap #mainContents ul a.nolink:after {
    content: '';
    display: block;
    margin: 0;
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 6px;
    border-color: transparent transparent transparent #ccc;
}
.test-sitemap #mainContents ul a:not(.nolink) {
    counter-increment: link;
}
.test-sitemap #mainContents ul a:not(.nolink):before {
    content: counter(link, decimal-leading-zero) '. ';
}