/*------------------------------------------

	common

------------------------------------------*/
html {
  width: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
  scroll-padding-top: 120px;
}
body {
  width: 100%;
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

ul, ol, li {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  display: block;
}
iframe {
  max-width: 100%;
  border: 0;
  display: block;
}
a, a img {
  transition: 0.3s;
}
/* 
a:hover {
  opacity: 0.5;
}
a:hover img {
  opacity: 0.5;
  filter: alpha(opacity=50);
  zoom: 1;
} */


/*------------------------------------------

	汎用クラス

------------------------------------------*/
.block {
  display: block;
}
.inb {
  display: inline-block;
}
.anchor {
  display: inline-block;
}
.mauto {
  margin-left: auto;
  margin-right: auto;
}

/* PC */
@media print, screen and (min-width: 820px) {
  .pcno, .fb.pcno {
    display: none;
  }
}
/* Tb */
@media print, screen and (max-width: 820px) {
  .tbno, .fb.tbno {
    display: none;
  }
}
/* Sm */
@media print, screen and (max-width: 480px) {
  .smno, .fb.smno {
    display: none;
  }
}


/*------------------------------------------

	テキスト関係

------------------------------------------*/
.t-center {
  text-align: center;
}
.t-left {
  text-align: left;
}
.t-right {
  text-align: right;
}
.t-jus {
  text-align: justify;
  hanging-punctuation: last allow-end;
  /* ぶら下がり有※Safariのみ */
}
.t-tate {
  writing-mode: vertical-rl;
}
.t-rgl {
  font-weight: 400;
}
.t-bold {
  font-weight: 700;
}
.t-exbold {
  font-weight: 800;
}
.t-ita {
  font-style: italic !important;
}

/* Tb */
@media print, screen and (max-width: 820px) {
  .tb-t-center {
    text-align: center;
  }
  .tb-t-left {
    text-align: left;
  }
  .tb-t-right {
    text-align: right;
  }
}
/* Sm */
@media print, screen and (max-width: 480px) {
  .sm-t-center {
    text-align: center;
  }
  .sm-t-left {
    text-align: left;
  }
  .sm-t-right {
    text-align: right;
  }
}
.mincho {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  transform: rotate(0.03deg);
}
.gothic {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}


/*------------------------------------------

	ホバー透過

------------------------------------------*/
/* PC hover */
@media (hover: hover) {
  .op:hover {
    opacity: 0.5;
    filter: alpha(opacity=50);
    zoom: 1;
  }
  img.op:hover {
    opacity: 0.5;
    filter: alpha(opacity=50);
    zoom: 1;
  }
}
/* mobile hover */
@media (hover: none) {
  .op:active {
    opacity: 0.5;
    filter: alpha(opacity=50);
    zoom: 1;
  }
  img.op:active {
    opacity: 0.5;
    filter: alpha(opacity=50);
    zoom: 1;
  }
}


/*------------------------------------------

	画像アスペクト

------------------------------------------*/
.fit {
  object-fit: cover;
}


/*------------------------------------------

	ページ内リンク

------------------------------------------*/
.page-anchor-link {
  display: block;
  padding-top: 150px;
  margin-top: -150px;
}

/*------------------------------------------

	リスト

------------------------------------------*/
/* 番号なしリスト - 点 */
ul.dot {
  text-indent: -1.2em;
  margin-left: 1em;

  > li:before {
    content: "・";
    margin-right: 0.2em;
  }
}
/* 番号ありリスト - (1) */
ol {
  text-indent: -1em;
  padding-left: 1em;

  > li {
    counter-increment: cnt;
  }
  > li::before {
    content: "（" counter(cnt) "）";
  }
}


/*------------------------------------------

	flexbox

------------------------------------------*/
.fb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.fb-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.fb-both {
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.fb-right {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.fb-center {
  justify-content: center;
  -webkit-justify-content: center;
}
.fb-rev {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.fb-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.fb-col-rev {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.fb-al-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.fb-al-top {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.fb-al-bottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

/* Tb */
@media print, screen and (max-width: 820px) {
  .tb-fb-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .tb-fb-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .tb-fb-col-rev {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .tb-fb-left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
/* Tb END */

/* Sm */
@media print, screen and (max-width: 480px) {
  .sm-fb {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .sm-fb-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .sm-fb-both {
    justify-content: space-between;
    -webkit-justify-content: space-between;
  }
  .sm-fb-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .sm-fb-col-rev {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .sm-fb-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .sm-fb-al-top {
    align-items: flex-start;
  }
}


/*------------------------------------------

	float

------------------------------------------*/
.fl-r {
  float: right;
}
.fl-l {
  float: left;
}
/* Sm */
@media print, screen and (max-width: 480px) {
  .sm-fl-none {
    float: none;
  }
}


/*------------------------------------------

	clearfix

------------------------------------------*/
.cb {
  clear: both;
}
.cf::after {
  content: "";
  display: block;
  clear: both;
}


/*------------------------------------------

	フォントサイズ・行間・カーニング

------------------------------------------*/
.fs10 {
  font-size: 1.0rem;
}
.fs11 {
  font-size: 1.1rem;
}
.fs12 {
  font-size: 1.2rem;
}
.fs13 {
  font-size: 1.3rem;
}
.fs14 {
  font-size: 1.4rem;
}
.fs15 {
  font-size: 1.5rem;
}
.fs16 {
  font-size: 1.6rem;
}
.fs17 {
  font-size: 1.7rem;
}
.fs18 {
  font-size: 1.8rem;
}
.fs19 {
  font-size: 1.9rem;
}
.fs20 {
  font-size: 2.0rem;
}
.fs22 {
  font-size: 2.2rem;
}
.fs24 {
  font-size: 2.4rem;
}
.fs26 {
  font-size: 2.6rem;
}
.fs28 {
  font-size: 2.8rem;
}
.fs30 {
  font-size: 3.0rem;
}
.fs32 {
  font-size: 3.2rem;
}
.fs34 {
  font-size: 3.4rem;
}
.fs36 {
  font-size: 3.6rem;
}
.fs38 {
  font-size: 3.8rem;
}
.fs40 {
  font-size: 4.0rem;
}
.fs42 {
  font-size: 4.2rem;
}
.fs44 {
  font-size: 4.4rem;
}
.fs46 {
  font-size: 4.6rem;
}
.fs48 {
  font-size: 4.8rem;
}
.fs50 {
  font-size: 5.0rem;
}

/* line-height */
.lh10 {
  line-height: 1 !important;
}
.lh12 {
  line-height: 1.2 !important;
}
.lh14 {
  line-height: 1.4 !important;
}
.lh16 {
  line-height: 1.6 !important;
}
.lh18 {
  line-height: 1.8 !important;
}
.lh20 {
  line-height: 2.0 !important;
}

/* letter-spacing */
.ls0 {
  letter-spacing: 0 !important;
}
.ls05 {
  letter-spacing: .05em !important;
}
.ls10 {
  letter-spacing: .1em !important;
}
.ls20 {
  letter-spacing: .2em !important;
}
.ls30 {
  letter-spacing: .3em !important;
}

/* Tb */
@media print, screen and (max-width: 820px) {
  .fs13 {
    font-size: 1.2rem;
  }
  .fs14 {
    font-size: 1.3rem;
  }
  .fs15 {
    font-size: 1.4rem;
  }
  .fs16 {
    font-size: 1.5rem;
  }
  .fs17 {
    font-size: 1.5rem;
  }
  .fs18 {
    font-size: 1.6rem;
  }
  .fs19 {
    font-size: 1.7rem;
  }
  .fs20 {
    font-size: 1.8rem;
  }
  .fs22 {
    font-size: 2.0rem;
  }
  .fs24 {
    font-size: 2.0rem;
  }
  .fs26 {
    font-size: 2.4rem;
  }
  .fs28 {
    font-size: 2.6rem;
  }
  .fs30 {
    font-size: 2.6rem;
  }
  .fs32 {
    font-size: 2.6rem;
  }
  .fs34 {
    font-size: 2.8rem;
  }
  .fs36 {
    font-size: 3.2rem;
  }
  .fs38 {
    font-size: 3.6rem;
  }
  .fs40 {
    font-size: 3.8rem;
  }
  .fs42 {
    font-size: 4.0rem;
  }
  .fs44 {
    font-size: 4.2rem;
  }
  .fs46 {
    font-size: 4.4rem;
  }
  .fs48 {
    font-size: 4.6rem;
  }
  .fs50 {
    font-size: 4.6rem;
  }
}
/* Tb END */

/* Sm */
@media print, screen and (max-width: 480px) {
  .fs11 {
    font-size: 1rem;
  }
  .fs12 {
    font-size: 1rem;
  }
  .fs13 {
    font-size: 1.1rem;
  }
  .fs16 {
    font-size: 1.4rem;
  }
  .fs17 {
    font-size: 1.4rem;
  }
  .fs18 {
    font-size: 1.5rem;
  }
  .fs19 {
    font-size: 1.6rem;
  }
  .fs20 {
    font-size: 1.6rem;
  }
  .fs24 {
    font-size: 1.8rem;
  }
  .fs26 {
    font-size: 2.2rem;
  }
  .fs28 {
    font-size: 2.2rem;
  }
  .fs30 {
    font-size: 2.2rem;
  }
  .fs32 {
    font-size: 2.2rem;
  }
  .fs34 {
    font-size: 2.4rem;
  }
  .fs36 {
    font-size: 2.4rem;
  }
  .fs38 {
    font-size: 2.6rem;
  }
  .fs40 {
    font-size: 2.6rem;
  }
  .fs42 {
    font-size: 2.8rem;
  }
  .fs44 {
    font-size: 2.9rem;
  }
  .fs46 {
    font-size: 3.0rem;
  }
  .fs48 {
    font-size: 3.1rem;
  }
  .fs50 {
    font-size: 3.2rem;
  }

  .lh16 {
    line-height: 1.5 !important;
  }
  .lh18 {
    line-height: 1.6 !important;
  }
  .lh20 {
    line-height: 1.8 !important;
  }

  .ls05 {
    letter-spacing: .03em !important;
  }
  .ls10 {
    letter-spacing: .05em !important;
  }
  .ls20 {
    letter-spacing: .1em !important;
  }
  .ls30 {
    letter-spacing: .2em !important;
  }
}
/* Sm END */


/*------------------------------------------

	マージン

------------------------------------------*/
/* margin-top */
.mt0 {
  margin-top: 0;
}
.mt5 {
  margin-top: 5px;
}
.mt10 {
  margin-top: 10px;
}
.mt15 {
  margin-top: 15px;
}
.mt20 {
  margin-top: 20px;
}
.mt25 {
  margin-top: 25px;
}
.mt30 {
  margin-top: 30px;
}
.mt35 {
  margin-top: 35px;
}
.mt40 {
  margin-top: 40px;
}
.mt45 {
  margin-top: 45px;
}
.mt50 {
  margin-top: 50px;
}
.mt55 {
  margin-top: 55px;
}
.mt60 {
  margin-top: 60px;
}
.mt65 {
  margin-top: 65px;
}
.mt70 {
  margin-top: 70px;
}
.mt75 {
  margin-top: 75px;
}
.mt80 {
  margin-top: 80px;
}
.mt85 {
  margin-top: 85px;
}
.mt90 {
  margin-top: 90px;
}
.mt95 {
  margin-top: 95px;
}
.mt100 {
  margin-top: 100px;
}
.mt150 {
  margin-top: 150px;
}
.mt200 {
  margin-top: 200px;
}

/* margin-bottom */
.mb0 {
  margin-bottom: 0;
}
.mb5 {
  margin-bottom: 5px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb25 {
  margin-bottom: 25px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb35 {
  margin-bottom: 35px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb45 {
  margin-bottom: 45px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb55 {
  margin-bottom: 55px;
}
.mb60 {
  margin-bottom: 60px;
}
.mb65 {
  margin-bottom: 65px;
}
.mb70 {
  margin-bottom: 70px;
}
.mb75 {
  margin-bottom: 75px;
}
.mb80 {
  margin-bottom: 80px;
}
.mb85 {
  margin-bottom: 85px;
}
.mb90 {
  margin-bottom: 90px;
}
.mb95 {
  margin-bottom: 95px;
}
.mb100 {
  margin-bottom: 100px;
}
.mb150 {
  margin-bottom: 150px;
}
.mb200 {
  margin-bottom: 200px;
}

/* padding-top */
.pt0 {
  padding-top: 0;
}
.pt5 {
  padding-top: 5px;
}
.pt10 {
  padding-top: 10px;
}
.pt15 {
  padding-top: 15px;
}
.pt20 {
  padding-top: 20px;
}
.pt25 {
  padding-top: 25px;
}
.pt30 {
  padding-top: 30px;
}
.pt35 {
  padding-top: 35px;
}
.pt40 {
  padding-top: 40px;
}
.pt45 {
  padding-top: 45px;
}
.pt50 {
  padding-top: 50px;
}
.pt55 {
  padding-top: 55px;
}
.pt60 {
  padding-top: 60px;
}
.pt65 {
  padding-top: 65px;
}
.pt70 {
  padding-top: 70px;
}
.pt75 {
  padding-top: 75px;
}
.pt80 {
  padding-top: 80px;
}
.pt85 {
  padding-top: 85px;
}
.pt90 {
  padding-top: 90px;
}
.pt95 {
  padding-top: 95px;
}
.pt100 {
  padding-top: 100px;
}
.pt150 {
  padding-top: 150px;
}
.pt200 {
  padding-top: 200px;
}

/* padding-bottom */
.pb0 {
  padding-bottom: 0;
}
.pb5 {
  padding-bottom: 5px;
}
.pb10 {
  padding-bottom: 10px;
}
.pb15 {
  padding-bottom: 15px;
}
.pb20 {
  padding-bottom: 20px;
}
.pb25 {
  padding-bottom: 25px;
}
.pb30 {
  padding-bottom: 30px;
}
.pb35 {
  padding-bottom: 35px;
}
.pb40 {
  padding-bottom: 40px;
}
.pb45 {
  padding-bottom: 45px;
}
.pb50 {
  padding-bottom: 50px;
}
.pb55 {
  padding-bottom: 55px;
}
.pb60 {
  padding-bottom: 60px;
}
.pb65 {
  padding-bottom: 65px;
}
.pb70 {
  padding-bottom: 70px;
}
.pb75 {
  padding-bottom: 75px;
}
.pb80 {
  padding-bottom: 80px;
}
.pb85 {
  padding-bottom: 85px;
}
.pb90 {
  padding-bottom: 90px;
}
.pb95 {
  padding-bottom: 95px;
}
.pb100 {
  padding-bottom: 100px;
}
.pb150 {
  padding-bottom: 150px;
}
.pb200 {
  padding-bottom: 200px;
}

/* Tb */
@media print, screen and (max-width: 820px) {
  /* 自動:margin-top */
  .mt5 {
    margin-top: 2px;
  }
  .mt10 {
    margin-top: 5px;
  }
  .mt15 {
    margin-top: 7px;
  }
  .mt20 {
    margin-top: 15px;
  }
  .mt25 {
    margin-top: 20px;
  }
  .mt30 {
    margin-top: 25px;
  }
  .mt35 {
    margin-top: 30px;
  }
  .mt40 {
    margin-top: 35px;
  }
  .mt45 {
    margin-top: 40px;
  }
  .mt50 {
    margin-top: 42px;
  }
  .mt55 {
    margin-top: 44px;
  }
  .mt60 {
    margin-top: 46px;
  }
  .mt65 {
    margin-top: 48px;
  }
  .mt70 {
    margin-top: 50px;
  }
  .mt75 {
    margin-top: 55px;
  }
  .mt80 {
    margin-top: 60px;
  }
  .mt85 {
    margin-top: 65px;
  }
  .mt90 {
    margin-top: 70px;
  }
  .mt95 {
    margin-top: 75px;
  }
  .mt100 {
    margin-top: 80px;
  }
  .mt150 {
    margin-top: 90px;
  }
  .mt200 {
    margin-top: 100px;
  }
  /* 自動:margin-bottom */
  .mb5 {
    margin-bottom: 2px;
  }
  .mb10 {
    margin-bottom: 5px;
  }
  .mb15 {
    margin-bottom: 7px;
  }
  .mb20 {
    margin-bottom: 15px;
  }
  .mb25 {
    margin-bottom: 20px;
  }
  .mb30 {
    margin-bottom: 25px;
  }
  .mb35 {
    margin-bottom: 30px;
  }
  .mb40 {
    margin-bottom: 35px;
  }
  .mb45 {
    margin-bottom: 40px;
  }
  .mb50 {
    margin-bottom: 42px;
  }
  .mb55 {
    margin-bottom: 44px;
  }
  .mb60 {
    margin-bottom: 46px;
  }
  .mb65 {
    margin-bottom: 48px;
  }
  .mb70 {
    margin-bottom: 50px;
  }
  .mb75 {
    margin-bottom: 55px;
  }
  .mb80 {
    margin-bottom: 60px;
  }
  .mb85 {
    margin-bottom: 65px;
  }
  .mb90 {
    margin-bottom: 70px;
  }
  .mb95 {
    margin-bottom: 75px;
  }
  .mb100 {
    margin-bottom: 80px;
  }
  .mb150 {
    margin-bottom: 90px;
  }
  .mb200 {
    margin-bottom: 100px;
  }

  /* 自動:padding-top */
  .pt10 {
    padding-top: 7px;
  }
  .pt15 {
    padding-top: 10px;
  }
  .pt20 {
    padding-top: 13px;
  }
  .pt25 {
    padding-top: 17px;
  }
  .pt30 {
    padding-top: 20px;
  }
  .pt35 {
    padding-top: 24px;
  }
  .pt40 {
    padding-top: 27px;
  }
  .pt45 {
    padding-top: 30px;
  }
  .pt50 {
    padding-top: 34px;
  }
  .pt55 {
    padding-top: 37px;
  }
  .pt60 {
    padding-top: 40px;
  }
  .pt65 {
    padding-top: 44px;
  }
  .pt70 {
    padding-top: 47px;
  }
  .pt75 {
    padding-top: 54px;
  }
  .pt80 {
    padding-top: 57px;
  }
  .pt85 {
    padding-top: 61px;
  }
  .pt90 {
    padding-top: 60px;
  }
  .pt95 {
    padding-top: 64px;
  }
  .pt100 {
    padding-top: 67px;
  }
  .pt150 {
    padding-top: 100px;
  }
  .pt200 {
    padding-top: 150px;
  }

  /* 自動:padding-bottom */
  .pb10 {
    padding-bottom: 7px;
  }
  .pb15 {
    padding-bottom: 10px;
  }
  .pb20 {
    padding-bottom: 13px;
  }
  .pb25 {
    padding-bottom: 17px;
  }
  .pb30 {
    padding-bottom: 20px;
  }
  .pb35 {
    padding-bottom: 24px;
  }
  .pb40 {
    padding-bottom: 27px;
  }
  .pb45 {
    padding-bottom: 30px;
  }
  .pb50 {
    padding-bottom: 34px;
  }
  .pb55 {
    padding-bottom: 37px;
  }
  .pb60 {
    padding-bottom: 40px;
  }
  .pb65 {
    padding-bottom: 44px;
  }
  .pb70 {
    padding-bottom: 47px;
  }
  .pb75 {
    padding-bottom: 54px;
  }
  .pb80 {
    padding-bottom: 57px;
  }
  .pb85 {
    padding-bottom: 61px;
  }
  .pb90 {
    padding-bottom: 60px;
  }
  .pb95 {
    padding-bottom: 64px;
  }
  .pb100 {
    padding-bottom: 67px;
  }
  .pb150 {
    padding-bottom: 100px;
  }
  .pb200 {
    padding-bottom: 150px;
  }
}
/* Tb END */

/* Sm */
@media print, screen and (max-width: 480px) {
  /* 自動:margin-top */
  .mt20 {
    margin-bottom: 10px;
  }
  .mt25 {
    margin-bottom: 12px;
  }
  .mt30 {
    margin-bottom: 15px;
  }
  .mt35 {
    margin-bottom: 17px;
  }
  .mt40 {
    margin-bottom: 20px;
  }
  .mt45 {
    margin-bottom: 20px;
  }
  .mt50 {
    margin-bottom: 25px;
  }
  .mt55 {
    margin-bottom: 28px;
  }
  .mt60 {
    margin-bottom: 30px;
  }
  .mt65 {
    margin-bottom: 32px;
  }
  .mt70 {
    margin-bottom: 35px;
  }
  .mt75 {
    margin-bottom: 38px;
  }
  .mt80 {
    margin-bottom: 40px;
  }
  .mt85 {
    margin-bottom: 42px;
  }
  .mt90 {
    margin-bottom: 45px;
  }
  .mt95 {
    margin-bottom: 40px;
  }
  .mt100 {
    margin-bottom: 50px;
  }
  .mt150 {
    margin-bottom: 75px;
  }
  .mt200 {
    margin-bottom: 130px;
  }
  /* 自動:margin-bottom */
  .mb20 {
    margin-bottom: 10px;
  }
  .mb25 {
    margin-bottom: 12px;
  }
  .mb30 {
    margin-bottom: 15px;
  }
  .mb35 {
    margin-bottom: 17px;
  }
  .mb40 {
    margin-bottom: 20px;
  }
  .mb45 {
    margin-bottom: 20px;
  }
  .mb50 {
    margin-bottom: 25px;
  }
  .mb55 {
    margin-bottom: 28px;
  }
  .mb60 {
    margin-bottom: 30px;
  }
  .mb65 {
    margin-bottom: 32px;
  }
  .mb70 {
    margin-bottom: 35px;
  }
  .mb75 {
    margin-bottom: 38px;
  }
  .mb80 {
    margin-bottom: 40px;
  }
  .mb85 {
    margin-bottom: 42px;
  }
  .mb90 {
    margin-bottom: 45px;
  }
  .mb95 {
    margin-bottom: 40px;
  }
  .mb100 {
    margin-bottom: 50px;
  }
  .mb150 {
    margin-bottom: 75px;
  }
  .mb200 {
    margin-bottom: 130px;
  }

  /* SM:margin-top */
  .sm-mt0 {
    margin-top: 0;
  }
  .sm-mt5 {
    margin-top: 5px;
  }
  .sm-mt10 {
    margin-top: 10px;
  }
  .sm-mt15 {
    margin-top: 15px;
  }
  .sm-mt20 {
    margin-top: 20px;
  }
  .sm-mt25 {
    margin-top: 25px;
  }
  .sm-mt30 {
    margin-top: 30px;
  }
  .sm-mt35 {
    margin-top: 35px;
  }
  .sm-mt40 {
    margin-top: 40px;
  }
  .sm-mt45 {
    margin-top: 45px;
  }
  .sm-mt50 {
    margin-top: 50px;
  }
  .sm-mt55 {
    margin-top: 55px;
  }
  .sm-mt60 {
    margin-top: 60px;
  }
  .sm-mt65 {
    margin-top: 65px;
  }
  .sm-mt70 {
    margin-top: 70px;
  }
  .sm-mt75 {
    margin-top: 75px;
  }
  .sm-mt80 {
    margin-top: 80px;
  }
  .sm-mt85 {
    margin-top: 85px;
  }
  .sm-mt90 {
    margin-top: 90px;
  }
  .sm-mt95 {
    margin-top: 95px;
  }
  .sm-mt100 {
    margin-top: 100px;
  }
  .sm-mt150 {
    margin-top: 150px;
  }
  .sm-mt200 {
    margin-top: 200px;
  }

  /* SM:margin-bottom */
  .sm-mb0 {
    margin-bottom: 0;
  }
  .sm-mb5 {
    margin-bottom: 5px;
  }
  .sm-mb10 {
    margin-bottom: 10px;
  }
  .sm-mb15 {
    margin-bottom: 15px;
  }
  .sm-mb20 {
    margin-bottom: 20px;
  }
  .sm-mb25 {
    margin-bottom: 25px;
  }
  .sm-mb30 {
    margin-bottom: 30px;
  }
  .sm-mb35 {
    margin-bottom: 35px;
  }
  .sm-mb40 {
    margin-bottom: 40px;
  }
  .sm-mb45 {
    margin-bottom: 45px;
  }
  .sm-mb50 {
    margin-bottom: 50px;
  }
  .sm-mb55 {
    margin-bottom: 55px;
  }
  .sm-mb60 {
    margin-bottom: 60px;
  }
  .sm-mb65 {
    margin-bottom: 65px;
  }
  .sm-mb70 {
    margin-bottom: 70px;
  }
  .sm-mb75 {
    margin-bottom: 75px;
  }
  .sm-mb80 {
    margin-bottom: 80px;
  }
  .sm-mb85 {
    margin-bottom: 85px;
  }
  .sm-mb90 {
    margin-bottom: 90px;
  }
  .sm-mb95 {
    margin-bottom: 95px;
  }
  .sm-mb100 {
    margin-bottom: 100px;
  }
  .sm-mb150 {
    margin-bottom: 150px;
  }
  .sm-mb200 {
    margin-bottom: 200px;
  }

  /* 自動:padding-top */
  .pt0 {
    padding-top: 0;
  }
  .pt5 {
    padding-top: 2px;
  }
  .pt10 {
    padding-top: 5px;
  }
  .pt15 {
    padding-top: 7px;
  }
  .pt20 {
    padding-top: 10px;
  }
  .pt25 {
    padding-top: 12px;
  }
  .pt30 {
    padding-top: 15px;
  }
  .pt35 {
    padding-top: 17px;
  }
  .pt40 {
    padding-top: 20px;
  }
  .pt45 {
    padding-top: 22px;
  }
  .pt50 {
    padding-top: 25px;
  }
  .pt55 {
    padding-top: 27px;
  }
  .pt60 {
    padding-top: 30px;
  }
  .pt65 {
    padding-top: 32px;
  }
  .pt70 {
    padding-top: 35px;
  }
  .pt75 {
    padding-top: 37px;
  }
  .pt80 {
    padding-top: 40px;
  }
  .pt85 {
    padding-top: 42px;
  }
  .pt90 {
    padding-top: 45px;
  }
  .pt95 {
    padding-top: 47px;
  }
  .pt100 {
    padding-top: 50px;
  }
  .pt150 {
    padding-top: 75px;
  }
  .pt200 {
    padding-top: 100px;
  }

  /* 自動:padding-bottom */
  .pb0 {
    padding-bottom: 0;
  }
  .pb5 {
    padding-bottom: 2px;
  }
  .pb10 {
    padding-bottom: 5px;
  }
  .pb15 {
    padding-bottom: 7px;
  }
  .pb20 {
    padding-bottom: 10px;
  }
  .pb25 {
    padding-bottom: 12px;
  }
  .pb30 {
    padding-bottom: 15px;
  }
  .pb35 {
    padding-bottom: 17px;
  }
  .pb40 {
    padding-bottom: 20px;
  }
  .pb45 {
    padding-bottom: 22px;
  }
  .pb50 {
    padding-bottom: 25px;
  }
  .pb55 {
    padding-bottom: 27px;
  }
  .pb60 {
    padding-bottom: 30px;
  }
  .pb65 {
    padding-bottom: 32px;
  }
  .pb70 {
    padding-bottom: 35px;
  }
  .pb75 {
    padding-bottom: 37px;
  }
  .pb80 {
    padding-bottom: 40px;
  }
  .pb85 {
    padding-bottom: 42px;
  }
  .pb90 {
    padding-bottom: 45px;
  }
  .pb95 {
    padding-bottom: 47px;
  }
  .pb100 {
    padding-bottom: 50px;
  }
  .pb150 {
    padding-bottom: 75px;
  }
  .pb200 {
    padding-bottom: 100px;
  }

  /* SM:padding-top */
  .sm-pt0 {
    padding-top: 0;
  }
  .sm-pt5 {
    padding-top: 5px;
  }
  .sm-pt10 {
    padding-top: 10px;
  }
  .sm-pt15 {
    padding-top: 15px;
  }
  .sm-pt20 {
    padding-top: 20px;
  }
  .sm-pt25 {
    padding-top: 25px;
  }
  .sm-pt30 {
    padding-top: 30px;
  }
  .sm-pt35 {
    padding-top: 35px;
  }
  .sm-pt40 {
    padding-top: 40px;
  }
  .sm-pt45 {
    padding-top: 45px;
  }
  .sm-pt50 {
    padding-top: 50px;
  }
  .sm-pt55 {
    padding-top: 55px;
  }
  .sm-pt60 {
    padding-top: 60px;
  }
  .sm-pt65 {
    padding-top: 65px;
  }
  .sm-pt70 {
    padding-top: 70px;
  }
  .sm-pt75 {
    padding-top: 75px;
  }
  .sm-pt80 {
    padding-top: 80px;
  }
  .sm-pt85 {
    padding-top: 85px;
  }
  .sm-pt90 {
    padding-top: 90px;
  }
  .sm-pt95 {
    padding-top: 95px;
  }
  .sm-pt100 {
    padding-top: 100px;
  }
  .sm-pt150 {
    padding-top: 150px;
  }
  .sm-pt200 {
    padding-top: 200px;
  }

  /* SM:padding-bottom */
  .sm-pb0 {
    padding-bottom: 0;
  }
  .sm-pb5 {
    padding-bottom: 5px;
  }
  .sm-pb10 {
    padding-bottom: 10px;
  }
  .sm-pb15 {
    padding-bottom: 15px;
  }
  .sm-pb20 {
    padding-bottom: 20px;
  }
  .sm-pb25 {
    padding-bottom: 25px;
  }
  .sm-pb30 {
    padding-bottom: 30px;
  }
  .sm-pb35 {
    padding-bottom: 35px;
  }
  .sm-pb40 {
    padding-bottom: 40px;
  }
  .sm-pb45 {
    padding-bottom: 45px;
  }
  .sm-pb50 {
    padding-bottom: 50px;
  }
  .sm-pb55 {
    padding-bottom: 55px;
  }
  .sm-pb60 {
    padding-bottom: 60px;
  }
  .sm-pb65 {
    padding-bottom: 65px;
  }
  .sm-pb70 {
    padding-bottom: 70px;
  }
  .sm-pb75 {
    padding-bottom: 75px;
  }
  .sm-pb80 {
    padding-bottom: 80px;
  }
  .sm-pb85 {
    padding-bottom: 85px;
  }
  .sm-pb90 {
    padding-bottom: 90px;
  }
  .sm-pb95 {
    padding-bottom: 95px;
  }
  .sm-pb100 {
    padding-bottom: 100px;
  }
  .sm-pb150 {
    padding-bottom: 150px;
  }
  .sm-pb200 {
    padding-bottom: 200px;
  }
}
/* Sm END */


/*------------------------------------------

	画像サイズ（％）

------------------------------------------*/
img.img-w50 {
  width: 50%;
}
img.img-w60 {
  width: 60%;
}
img.img-w70 {
  width: 70%;
}
img.img-w80 {
  width: 80%;
}
img.img-w90 {
  width: 90%;
}
img.img-w100 {
  width: 100%;
}

/* Sm */
@media print, screen and (max-width: 480px) {
  img.sm-img-w50 {
    width: 50%;
  }
  img.sm-img-w60 {
    width: 60%;
  }
  img.sm-img-w70 {
    width: 70%;
  }
  img.sm-img-w80 {
    width: 80%;
  }
  img.sm-img-w90 {
    width: 90%;
  }
  img.sm-img-w100 {
    width: 100%;
  }
}
/* Sm END */