<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */ * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body a, a:visited, a:hover, a:active {
  color: inherit;
  text-decoration: none;
  opacity: 1;
}
/* PC横並び スマホ縦組み コンテンツ */
.flex_cont {
  display: flex;
  padding: 0 0px;
  margin: 0 auto ;
	
}
.flex_cont2 {
  display: flex;
  justify-content: space-between;
margin: 0 auto;
}
.flex_cont3 {
  display: flex;
  padding: 0 0px;
  margin: 5px auto 15px ;
	
}
.align-center {
  align-items: center;
}
.cont_reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .flex_cont {
    display: block;
	  
  }
  .cont_reverse {
    flex-direction: row;
  }
}
@media screen and (max-width: 1200px) {
  .flex_cont2 {
    display: block;
  }
	.flex_cont3 {
  display: inline-block;
  margin: 0 auto ;
	text-align: center;
}
  .cont_reverse {
    flex-direction: row;
	  
  }
}


/* スマホ版改行 */
br.br-sp {
  display: none;
  width: 0;
  height: 0;
  visibility: hidden;
  content: "";
  font-size: 0;
}
@media screen and (max-width: 767px) {
  br.br-sp {
    display: block;
  }
}

/* PC版改行 */
br.br-pc {
    display: block;
}
@media screen and (max-width: 767px) {
  br.br-pc {
  display: none;
  width: 0;
  height: 0;
  visibility: hidden;
  content: "";
  font-size: 0;
  }
}

/* レスポンシブ改行 */
.br-span {
    display: inline-block;
}



/* 画像調整 */

img {
  max-width: 100%;
  height: auto;
  outline: none;
  border: none;
  object-fit: cover;
  vertical-align: top;
}

/* 上下余白 クリアランス */
.clt-10 {
  margin-top: 10px !important;
}
.clb-10 {
  margin-bottom: 10px !important;
}
.clt-20 {
  margin-top: 20px !important;
}
.clb-20 {
  margin-bottom: 20px !important;
}
.clt-30 {
  margin-top: 30px !important;
}
.clb-30 {
  margin-bottom: 30px !important;
}
.clb-40 {
  margin-bottom: 40px !important;
}
.clt-60 {
  margin-top: 60px !important;
}
.clb-60 {
  margin-bottom: 60px !important;
}
.clt-90 {
  margin-top: 90px !important;
}
.clb-90 {
  margin-bottom: 90px !important;
}
@media screen and (max-width: 767px) {
  .clt-10 {
    margin-top: 5px !important;
  }
  .clb-10 {
    margin-bottom: 5px !important;
  }
  .clt-20 {
    margin-top: 10px !important;
  }
  .clb-20 {
    margin-bottom: 10px !important;
  }
  .clt-30 {
    margin-top: 15px !important;
  }
  .clb-30 {
    margin-bottom: 15px !important;
  }
  .clb-40 {
    margin-bottom: 20px !important;
  }
  .clt-60 {
    margin-top: 30px !important;
  }
  .clb-60 {
    margin-bottom: 30px !important;
  }
  .clt-90 {
    margin-top: 45px !important;
  }
  .clb-90 {
    margin-bottom: 45px !important;
  }
}
/* hidden */
@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none !important;
  }
}
/* pc版クリアランス */
.cl_pc150 {
  margin-bottom: 150px
}
.cl_pc120 {
  margin-bottom: 120px
}
.cl_pc100 {
  margin-bottom: 100px;
}
.cl_pc80 {
  margin-bottom: 80px;
}
.cl_pc50 {
  margin-bottom: 50px;
}
.cl_pc30 {
  margin-bottom: 30px;
}
.cl_pc20 {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .cl_pc150 {
    margin-bottom: 75px;
  }
  .cl_pc120 {
    margin-bottom: 60px;
  }
  .cl_pc100 {
    margin-bottom: 50px;
  }
  .cl_pc80 {
    margin-bottom: 40px;
  }
  .cl_pc50 {
    margin-bottom: 25px;
  }
  .cl_pc30 {
    margin-bottom: 15px;
  }
}
/* smp版クリアランス */
.cl_sm10 {
  margin-bottom: 5px;
}
.cl_sm20 {
  margin-bottom: 10px;
}
.cl_sm40 {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .cl_sm10 {
    margin-bottom: 10px;
  }
  .cl_sm20 {
    margin-bottom: 20px;
  }
  .cl_sm40 {
    margin-bottom: 40px;
  }
}
/* 固定クリアランス */
.cl_10 {
  margin-bottom: 10px;
}
.cl_30 {
  margin-bottom: 30px;
}
</pre></body></html>