@charset "UTF-8";
/*---------------------------------
 変数
---------------------------------*/
/*  
breakpoint（bootstrap基準）
---------------------------------*/
/*  
色
---------------------------------*/
/*  
　フォントサイズ
---------------------------------*/
/*---------------------------------
 Body ページ全体
---------------------------------*/
body {
  color: #202020; }
  body p {
    margin: 0;
    padding: 0; }

/*---------------------------------
 ヘッダー
---------------------------------*/
header .micol_logo {
  background-color: #232F77;
  height: 50px;
  text-align: center;
  line-height: 50px; }

/*---------------------------------
 フッター
---------------------------------*/
footer {
  background-color: #E1E2E9; }
  footer img {
    margin-top: 20px;
    margin-bottom: 10px; }
  footer p {
    font-weight: bold;
    color: #253371; }

/*---------------------------------
パンくず
---------------------------------*/
.pankuzu {
  font-size: 14px;
  margin-top: 8px;
  margin-left: 20px;
  z-index: 100; }
  .pankuzu a {
    color: #007bff; }
    .pankuzu a:link, .pankuzu a:visited, .pankuzu a:hover, .pankuzu a:active {
      color: #007bff; }

/*---------------------------------
 ページの内容
---------------------------------*/
/* スペーサー
====================================================*/
/* 上マージン */
.mt-10 {
  margin-top: 10px; }

.mt-20 {
  margin-top: 20px; }

.mt-30 {
  margin-top: 30px; }

.mt-40 {
  margin-top: 40px; }

.mt-43 {
  margin-top: 43px; }

/* 下マージン */
.mb-0 {
  margin-bottom: 0; }

.mb-10 {
  margin-bottom: 10px; }

.mb-20 {
  margin-bottom: 20px; }

.mb-30 {
  margin-bottom: 30px; }

.mb-40 {
  margin-bottom: 40px; }

/* 画像調整
====================================================*/
/* 横幅100% 最大1200px 中央寄せ */
.img-w1200 {
  width: 100%;
  max-width: 1200px;
  margin: auto; }

/* 横幅100% 最大800px 中央寄せ */
.img-w800 {
  width: 100%;
  max-width: 800px;
  margin: auto; }

/* 横幅100% 最大500px 中央寄せ */
.img-w500 {
  width: 100%;
  max-width: 500px;
  margin: auto; }

/* 横幅100% 最大300px 中央寄せ */
.img-w300 {
  width: 100%;
  max-width: 300px;
  margin: auto; }

/* 横幅100% 最大150px 中央寄せ */
.img-w150 {
  width: 100%;
  max-width: 150px;
  margin: auto; }

/* キャプション用
====================================================*/
.caption {
  font-size: 0.8em; }

/* MiCOLで購入ボタン
========================*/
.btn-micol {
  padding: 10px;
  border-radius: 10px;
  /*角の丸み*/
  background: #F4603A;
  /*オレンジ色*/
  color: #FFF;
  width: 60%;
  margin: auto;
  text-align: center;
  margin-top: 20px; }

/* 動画サイズ制御
========================*/
.p-movie-area {
  width: 60%;
  margin: auto; }

.p-movie-wrap {
  position: relative;
  height: 0;
  padding-top: 30px;
  padding-bottom: 56.25%;
  overflow: hidden; }
  .p-movie-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

/*特集ページリンク用
=================================*/
.t-small {
  font-size: 18px;
  font-weight: bold; }

/* topへ戻るボタン
========================*/
html {
  scroll-behavior: smooth; }

.gotop {
  display: block;
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  background: #FFF;
  border: 1px solid #999;
  padding-top: 30px;
  text-align: center;
  letter-spacing: -1px;
  font-size: 85%;
  text-decoration: none;
  color: #333;
  opacity: 0.5;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000; }

.gotop::before {
  content: "";
  display: block;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  width: 25%;
  height: 25%;
  top: 25%;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  transform: rotate(-45deg); }

.gotop:hover {
  opacity: 1; }

@media (max-width: 750px) {
  .gotop {
    width: 40px;
    height: 40px;
    text-indent: -9999px;
    opacity: 1;
    border: none;
    background: none;
    bottom: 10px;
    right: 10px; }

  .gotop::before {
    bottom: 0; } }
/* 表示画像切り替え
====================================================*/
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important; }

.sp {
  display: none !important; }

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important; }

  .sp {
    display: block !important; } }
/* カテゴリボタン
====================================================*/
.category {
  padding: 5px 25px;
  border-radius: 50px;
  /*角の丸み*/
  background: #f3f3f3;
  color: #666666;
  display: inline-block;
  text-align: center;
  font-size: 11px;
  margin: 10px 5px; }

/* 見出し
====================================================*/
.midashi {
  /*見出し1：大項目など*/
  font-weight: bold;
  padding-bottom: 0.5em;
  text-align: center;
  position: relative; }

.midashi::before, .midashi::after {
  content: '';
  position: absolute;
  margin: auto;
  left: 0;
  bottom: 0;
  width: 2em;
  background-color: #e3e3e3;
  /*色変更可能*/
  height: 5px;
  right: 2em; }

.midashi::before {
  background-color: #CB90A2;
  /*色変更可能*/
  left: 2em;
  width: 4em; }

.midashi2 {
  /*見出し2：商品名など*/
  font-weight: bold;
  padding: 0 3em;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  position: relative; }

.midashi2::before, .midashi2::after {
  content: '';
  background: #CB90A2;
  /*色変更可能*/
  width: 2em;
  height: 3px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%); }

.midashi2::before {
  left: 0; }

.midashi2::after {
  right: 0; }

/* スクロールに合わせて画像出現　★jQuery
====================================================*/
/* レイアウトや見た目のスタイル */
/* ---------------------------- */
.single-item + .single-item {
  margin-top: 80px; }

/* アニメーションスタイル */
/* ---------------------------- */
/* アニメーション前 */
.u-fade-type-up {
  transform: translateY(50px);
  opacity: 0; }

/* トリガー発火でis-activeを付与 */
.u-fade-type-up.is-active {
  transition: .6s;
  transform: translateY(0);
  opacity: 1; }

/* 背景画像あり
====================================================*/
.haikei {
  background-image: url("../images/cloth_00158.jpg"); }
