@charset "utf-8";
/* 目次-------------------

・RESRT
・OFTEN USE
・FONT SIZE
・MARGIN
・TEXT ALIGN
・LINE HIEGHT
・FLEX BOX

よく使われるプロパティ用のクラスをbase.cssにまとめてます。
基本的にこのスタイルシートはいじりません。
※--pcは、PCのみに適用され、--spは、スマホのみに適用されます。

------------------------*/
/*--------------------------------------------------------------
   RESRT
--------------------------------------------------------------*/
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box
}
h1,
h2,
h3,
h4,
h5,
h6{
  font-size:100%;
  font-weight:normal
}
ol,
ul{
  list-style:none
}
table{
  border-collapse:collapse;
  border-spacing:0
}
img{
  vertical-align: top;
}
a{
  display: inline-block;
}
:focus{
  outline:none;
}
address{
  font-style: normal;
}
/*--------------------------------------------------------------
   OFTEN USE
--------------------------------------------------------------*/
/*フォントの太さ*/
.fW__b{
  font-weight: bold;
}
.fW__n{
  font-weight: normal;
}
@media screen and (max-width: 767px){
  .fW__b--sp{
    font-weight: bold;
  }
  .fW__n--sp{
    font-weight: normal;
  }
}
@media screen and (min-width: 768px){
  .fW__b--pc{
    font-weight: bold;
  }
  .fW__n--pc{
    font-weight: normal;
  }
}
/*折り返さない*/
.nowrap{
  white-space: nowrap;
}
/*表示非表示*/
.pc{
  display: none;
}
.sp{
  display: block;
}
@media screen and (max-width: 767px){
  .none--sp{
    display: none !important;
  }
}
@media screen and (min-width: 768px){
  .none--pc{
    display: none !important;
  }
  .pc{
    display: block;
  }
  .sp{
    display: none;
  }
}
/*--------------------------------------------------------------
   FONT SIZE
--------------------------------------------------------------*/
@media screen and (max-width: 767px){
  .f__size10--sp{
    font-size: 1rem;
  }
  .f__size11--sp{
    font-size: 1.1rem;
  }
  .f__size12--sp{
    font-size: 1.2rem;
  }
  .f__size13--sp{
    font-size: 1.3rem;
  }
  .f__size14--sp{
    font-size: 1.4rem;
  }
  .f__size15--sp{
    font-size: 1.5rem;
  }
  .f__size16--sp{
    font-size: 1.6rem;
  }
  .f__size17--sp{
    font-size: 1.7rem;
  }
  .f__size18--sp{
    font-size: 1.8rem;
  }
  .f__size19--sp{
    font-size: 1.9rem;
  }
  .f__size20--sp{
    font-size: 2rem;
  }
  .f__size21--sp{
    font-size: 2.1rem;
  }
  .f__size23--sp{
    font-size: 2.3rem;
  }
  .f__size24--sp{
    font-size: 2.4rem;
  }
  .f__size25--sp{
    font-size: 2.5rem;
  }
  .f__size27--sp{
    font-size: 2.7rem;
  }
  .f__size30--sp{
    font-size: 3rem;
  }
}
@media screen and (min-width: 768px){
  .f__size10--pc{
    font-size: 1rem;
  }
  .f__size11--pc{
    font-size: 1.1rem;
  }
  .f__size12--pc{
    font-size: 1.2rem;
  }
  .f__size13--pc{
    font-size: 1.3rem;
  }
  .f__size14--pc{
    font-size: 1.4rem;
  }
  .f__size15--pc{
    font-size: 1.5rem;
  }
  .f__size16--pc{
    font-size: 1.6rem;
  }
  .f__size18--pc{
    font-size: 1.8rem;
  }
  .f__size20--pc{
    font-size: 2rem;
  }
  .f__size22--pc{
    font-size: 2.4rem;
  }
  .f__size24--pc{
    font-size: 2.4rem;
  }
  .f__size26--pc{
    font-size: 2.6rem;
  }
  .f__size27--pc{
    font-size: 2.7rem;
  }
  .f__size30--pc{
    font-size: 3rem;
  }
  .f__size32--pc{
    font-size: 3.2rem;
  }
  .f__size34--pc{
    font-size: 3.2rem;
  }
  .f__size36--pc{
    font-size: 3.6rem;
  }
  .f__size40--pc{
    font-size: 4rem;
  }
}
/*--------------------------------------------------------------
   MARGIN
--------------------------------------------------------------*/
.m__auto{
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px){
  .m__auto--sp{
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px){
  .m__auto--pc{
    margin-left: auto;
    margin-right: auto;
  }
}
/*--------------------------------------------------------------
   TEXT ALIGN
--------------------------------------------------------------*/
.t__c{
  text-align: center;
}
.t__r{
  text-align: right;
}
@media screen and (max-width: 767px){
  .t__c--sp{
    text-align: center;
  }
  .t__r--sp{
    text-align: right;
  }
  .t__l--sp{
    text-align: left;
  }
}
@media screen and (min-width: 768px){
  .t__c--pc{
    text-align: center;
  }
  .t__r--pc{
    text-align: right;
  }
  .t__l--pc{
    text-align: left;
  }
}
/*--------------------------------------------------------------
   LINE HIEGHT
--------------------------------------------------------------*/
.lH__15{
  line-height: 1.5;
}
.lH__18{
  line-height: 1.8;
}
.lH__20{
  line-height: 2;
}
@media screen and (max-width: 767px){
  .lH__15--sp{
    line-height: 1.5;
  }
  .lH__18--sp{
    line-height: 1.8;
  }
  .lH__20--sp{
    line-height: 2;
  }
}
@media screen and (min-width: 768px){
  .lH__15--pc{
    line-height: 1.5;
  }
  .lH__18--pc{
    line-height: 1.8;
  }
  .lH__20--pc{
    line-height: 2;
  }
}
/*--------------------------------------------------------------
   FLEX BOX
--------------------------------------------------------------*/
/* 解説-------------------
flex --> flex-box
between --> 折り返しなし
center --> 縦横中央
------------------------*/
.flexShrink{
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.elementCenter{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.flexCenter{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flexBetween{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.flexBetweenCenter{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flexList{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.flexListCenter{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px){
  /*縦横中央寄せ*/
  .elementCenter--sp{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  /*上合わせ左から右に並ぶ*/
  .flex--sp{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  /*縦中央寄せ左から右に並ぶ*/
  .flexCenter--sp{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  /*上合わせ両端揃え(折り返さない)*/
  .flexBetween--sp{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  /*上合わせ両端揃え右から並ぶ(折り返さない)*/
  .flexBetweenRight--sp{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  /*縦中央寄せ両端揃え(折り返さない)*/
  .flexBetweenCenter--sp{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
            align-items: center;
  }
  .flexList--sp{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .flexListCenter--sp{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 768px){
  /*縦横中央寄せ*/
  .elementCenter--pc{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  /*上合わせ左から右に並ぶ*/
  .flex--pc{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  /*縦中央寄せ左から右に並ぶ*/
  .flexCenter--pc{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  /*上合わせ両端揃え(折り返さない)*/
  .flexBetween--pc{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  /*上合わせ両端揃え右から並ぶ(折り返さない)*/
  .flexBetweenRight--pc{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
            align-items: flex-start;
  }
  /*縦中央寄せ両端揃え(折り返さない)*/
  .flexBetweenCenter--pc{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
            align-items: center;
  }
  /*上合わせ左から右に並ぶ (折り返さない)*/
  .flexList--pc{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .flexListCenter--pc{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
            align-items: center;
  }
}
