/* ##############################################################################

    COMMON

############################################################################## */
  
body {
  font: 14px/1.8 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic ProN', Hiragino Kaku Gothic W3 JIS2004, 'YuGothic', '游ゴシック', 'メイリオ', 'Meiryo', sans-serif;
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: .08em;
  *font-size: small;
  *font: x-small;
  color: #202225;
  -webkit-font-smoothing: antialiased;
}
p {
  margin: 0;
}
ul,
ol { list-style: none; }
ul {
  padding-inline-start: 0;
  margin: 0;
}
small { font-size: 86%; }
a {
  color: #202225;
  text-decoration: none;
  transition: all .2s ease-out;
  outline : none;
}
a:hover {
  text-decoration: none;
  color: #1d80b7;
}
address,
em,
i {
  font-style: normal;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  color: #323232;
  margin: 0;
  font-weight: 700;
  font-family: Hiragino Kaku Gothic W6 JIS2004, sans-serif;
}
small {
  font-size: 90%;
}
.h1 .small, .h1 small, .h2 .small, .h2 small, .h3 .small, .h3 small, h1 .small, h1 small, h2 .small, h2 small, h3 .small, h3 small {
  font-size: 93%;
}
img {
  height: auto;
}
th {
  font-family: Hiragino Kaku Gothic W6 JIS2004, sans-serif;
}

/* native-lazyload ブラウザ対応 */
_:-ms-lang(x)::-ms-backdrop, .no-js .native-lazyload-js-fallback {
  display: block !important;
}
:lang(x)+:-webkit-full-screen-document, .no-js .native-lazyload-js-fallback {
  display: block !important;
}

@media all and (-ms-high-contrast:none){
  ul {
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    -webkit-text-size-adjust: none;
    word-break: break-word;
  }
  img {
    max-width: 100%;
    height: auto;
  }
}

/* layout
**************************************** */

/* --- float --- */
.flt-rgt { float: right; }
.flt-lft { float: left; }

/* --- position --- */
.pos_rel {
  position: relative;
  z-index: 0;
}

/* --- margin --- */
.mgn-btm8 { margin-bottom: 8px; }
.mgn-btm16 { margin-bottom: 16px; }
.mgn-btm24 { margin-bottom: 24px; }
.mgn-btm32 { margin-bottom: 32px; }
.mgn-btm40 { margin-bottom: 40px; }
.mgn-btm48 { margin-bottom: 48px; }
.mgn-btm56 { margin-bottom: 56px; }
.mgn-btm64 { margin-bottom: 64px; }
.mgn-btm72 { margin-bottom: 72px; }
.mgn-btm80 { margin-bottom: 80px; }
.mgn-rgt4 { margin-right: 4px; }
.mgn-rgt8 { margin-right: 8px; }
.mgn-rgt16 { margin-right: 16px; }
.mgn-rgt24 { margin-right: 24px; }
.mgn-top32 { margin-top: 32px; }
.mgn-vertical { margin: 24px 0 32px;}
/* jsで追加する要素にのみ使用 */
.mgn-top8 { margin-top: 8px; }

/* --- pc or sp --- */
.disp_none,
.pc-none,
.pc-none-inline,
.pc-none-table,
.pc-none-flex { display: none; }
.sp-none { display: block; }
.sp-none-inline { display: inline; }
.sp-none-table { display: table; }
.sp-none-flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and  (max-width: 767px) {
  .mgn-btm24 { margin-bottom: 16px; }
  .mgn-btm32 { margin-bottom: 24px; }
  .mgn-btm40 { margin-bottom: 24px; }
  .mgn-btm48 { margin-bottom: 24px; }
  .mgn-btm56 { margin-bottom: 32px; }
  .mgn-btm64 { margin-bottom: 32px; }
  .mgn-btm72 { margin-bottom: 40px; }
  .mgn-btm80 { margin-bottom: 40px; }
  .sp-none,
  .sp-none-inline,
  .sp-none-table,
  .sp-none-flex { display: none; }
  .pc-none { display: block; }
  .pc-none-inline { display: inline; }
  .pc-none-table { display: table; }
  .pc-none-flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

/* flex
**************************************** */

/* --- ブロック要素 --- */
.flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

/* --- インライン要素 --- */
.flex-inline {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

/* --- 逆向き --- */
.flex-reverse {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

/* --- 縦並び --- */
.flex-column {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* --- 水平方向揃え --- */
.flex-j-start {
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.flex-j-end {
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.flex-j-ctr {
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex-j-between {
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-j-around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

/* --- 垂直方向揃え --- */
.flex-a-start {
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.flex-a-end {
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.flex-a-ctr {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex-a-baseline {
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.flex-a-stretch {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

/* --- 子要素の折り返し設定 --- */
.flex-c-nowrap {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.flex-c-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* --- 子要素の複数行設定 --- */
.flex-c-reverse {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}
.flex-c-start {
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}
.flex-c-start {
  -webkit-align-items: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}
.flex-c-end {
  -webkit-align-content: flex-end;
  -ms-flex-line-pack: end;
  align-content: flex-end;
}
.flex-c-ctr {
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}
.flex-c-baseline {
  -webkit-align-content: baseline;
  -ms-flex-line-pack: baseline;
  align-content: baseline;
}
.flex-c-stretch {
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

@media screen and (max-width: 1240px) {
  .flex-tab-block {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {

  /* --- 縦並び - sp --- */
  .flex-sp-block {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex.flex-sp-col2 a  {
    width: calc(100% / 2 - 8px);
  }

  /* --- 並び順変更 - sp --- */
  .flex-sp-reverse {
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

/* txt
**************************************** */
.txt-ctr,
.txt-ctr-pc {
  text-align: center;
}
.txt-rgt,
.txt-rgt-pc {
  text-align: right;
}

@media screen and (max-width: 767px) {
  .txt-ctr-pc,
  .txt-rgt-pc { text-align: left; }
}