@charset "UTF-8";

/* ie11ハック
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    img[src$=".svg"] {
        width: 100%;
        height: auto;
    }
}
 */
 
/* デフォルト定義/* デフォルト定義 */
@font-face {
  font-family: "Custom Yu Gothic";
  src: local("Yu Gothic");
  font-weight: 400;
}
@font-face {
  font-family: "Custom Yu Gothic";
  src: local("Yu Gothic");
  font-weight: 500;
}
@font-face {
  font-family: "Custom Yu Gothic";
  src: local("Yu Gothic");
  font-weight: bold;
}
*,*:before,*:after {
    -webkit-box-sizing: border-box;
    box-sizing        : border-box;
}
html {
    font-size: 10px;
}
body {
    font-family: Helvetica,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
    line-height: 1;
    min-height: 100%;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    font-size: 14px;
    color: #212121;
}
a {
    color: #212121;
    text-decoration: none;
}
a > * {
    -webkit-transition:all 200ms linear;
    transition        :all 200ms linear;
    box-shadow: #fff 0 0 0;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}
h1, h2, h3, h4, h5 {
    font-weight: normal;
}
img {
    vertical-align: bottom;
    max-width: 100%;;
    height: auto;
}
ul,ol {
    list-style: none;
}
.mintyou {
    /*font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
    font-family: YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

/* 各種パーツ定義 */
.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: bold;
}
.block {
    display: block;
}
.colbox ,
.colbox > .colbox {
    letter-spacing: -0.4em;
}
.colbox > * {
    letter-spacing: normal;
}
.col {
    display: inline-block;
    vertical-align: top;
}
.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;
}
.ac { text-align: center; }
.al {
    text-align: justify;
    text-justify: inter-ideograph;
}
.ar { text-align: right; }
.vaba {vertical-align: baseline;}
.vab {vertical-align: bottom;}
.vam {vertical-align: middle;}
.vat {vertical-align: top;}
.sp {
    display: none !important;
}
.ua-tb a[href^="tel:"] ,
.ua-pc a[href^="tel:"] {
    pointer-events: none;
}
@media only screen and (max-width: 767px){
    .sp {
        display: block !important;
    }
    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;
}


/*add 1219*/

.label--darkgray {
  background: #595757;
  border-color: #595757;
  color: #fff;
}
.label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 122px;
  padding: 4px 8px;
  border: 1px solid #000;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-size: 1.4rem;
  text-align: center;
}
@media (max-width: 767px) {
  .label {
    min-width: 108px;
    font-size: 1.2rem;
  }
  
}
.news__timely-label {
  min-width: 140px;
}  
@media (min-width: 768px) {
  .news__link {
    display: flex;
    justify-content: space-between;
    padding-right: 2em;
  }

  .news__timely-label {
    margin-left: 1rem;
    margin-left: 20px;
    align-self: flex-end;
    float: right;
  }

  .news__timely-label::after {
    content: none;
  }
}
@media (max-width: 767px) {
  .news__timely-label {
    float: right;
    margin-top: 10px;
  }
  .news__link {
    display: block;
  }
}
