@charset "UTF-8";
/* $col-space-wide: 30px; */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&family=Anton&display=swap");
/*
@font-face {
    font-family: "highsummit";
    src: url("./font/HighSummit.woff2") format("woff2"),
		url("./font/HighSummit.woff") format("woff");
}
.material-symbols-rounded { font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48 } //icon@googlefonts
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("webfonts/fa-solid-900.eot");
  src: url("webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("webfonts/fa-solid-900.woff2") format("woff2"), url("webfonts/fa-solid-900.woff") format("woff"), url("webfonts/fa-solid-900.ttf") format("truetype"), url("webfonts/fa-solid-900.svg#fontawesome") format("svg");
}
*/
/*---------------------------------------------
	目次
  ---------------------------------------------
	リセット
	リンク
	フォント
	メインコンテンツ
	強制指定
	[CL]  カラム
	[HD]  見出し
	[TX]  テキスト
	[HR]  区切り線
	[IG]  画像
	[LT]  リスト
	[LK1]  アイコンリンク
	[LK2]  横並びリンク
	[TG2] ラベル
	[BT]  ボタン
	[BT5] ページトップボタン
	[BX]  ボックス
	[FR]  枠
	[TB]  表
	[SL]  スライダー
	[SC]  スクロールエフェクト

	1200px未満
	$breakpoint-width未満
	480px未満
	印刷用
 ----------------------------------------------*/
/*---------------------------------------------
	リセット
  ---------------------------------------------*/
html {
  overflow-y: scroll;
  font-size: 62.5%;
}

body, div, dl, dt, dd, ul, ul li, h1, h2, h3, h4, h5, h6,
pre, form, fieldset, input, textarea, p, blockquote, th, td,
section, nav, article, aside, header, address,
figure, figcaption {
  margin: 0;
  padding: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th {
  text-align: left;
}

q:before,
q:after {
  content: "";
}

object,
embed {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1rem;
  font-weight: normal;
}

img, abbr, acronym, fieldset {
  border: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  -ms-interpolation-mode: bicubic;
}

ul li {
  list-style-type: none;
}

input,
select,
textarea,
button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

button {
  background: none;
  border: 0 none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

input:focus,
button:focus {
  outline: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

/*---------------------------------------------
  基本フォント
---------------------------------------------*/
body {
  color: #222;
  text-align: left;
  line-height: 1.8;
  text-size-adjust: 100%;
  font-size: 1.5rem;
  -webkit-text-size-adjust: 100%;
}

table {
  font-size: 1.5rem;
}

/*---------------------------------------------
	リンク
  ---------------------------------------------*/
a {
  text-decoration: none;
  color: #000;
  transition: color 0.2s linear;
  text-decoration: underline;
}
a.txt_deco_none {
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  a:hover {
    text-decoration: none;
    color: #259DE0;
  }
}
/*---------------------------------------------
	フォント
  ---------------------------------------------*/
body {
  font-family: "Noto Sans JP", Meiryo, sans-serif;
  font-feature-settings: "palt";
}

/*---------------------------------------------
	メインコンテンツ
  ---------------------------------------------*/
#wrapper {
  min-width: 320px;
  overflow: hidden;
}

main {
  display: block;
}

.fixed {
  position: fixed;
  z-index: 10000;
  width: 100%;
  height: 0;
}

/*---------------------------------------------
	強制指定
  ---------------------------------------------*/
/* ----- 上下左右中央寄せ ----- */
.left {
  text-align: left !important;
}

.center {
  text-align: center !important;
}

.right {
  text-align: right !important;
}

.top {
  vertical-align: top !important;
}

.middle {
  vertical-align: middle !important;
}

.bottom {
  vertical-align: bottom !important;
}

@media screen and (max-width: 767px) {
  .sp-left {
    text-align: left !important;
  }
  .sp-center {
    text-align: center !important;
  }
  .sp-right {
    text-align: right !important;
  }
}
/* ----- display ----- */
.disp-block {
  display: block;
}

.disp-ib {
  display: inline-block;
}

/* ----- 表示／非表示 ----- */
.hidden-all {
  display: none !important;
}

@media screen and (min-width: 1024px), print {
  .show-tb {
    display: none !important;
  }
}
@media screen and (min-width: 768px), print {
  .show-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .show-pc {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) {
  .show-pc-wide {
    display: none !important;
  }
}
/* ----- 文字サイズ ----- */
.l {
  font-size: 1.3em !important;
}

.m {
  font-size: 1em !important;
}

.s {
  font-size: 0.8em !important;
}

/* ----- 文字装飾 ----- */
.normal {
  font-weight: normal !important;
}

.winChrome .normal {
  font-weight: 500 !important;
}

.bold {
  font-weight: bold !important;
}

.italic {
  font-style: italic !important;
  margin-right: 0.15em;
}

.oblique {
  font-style: oblique !important;
}

.nodecoration {
  text-decoration: none;
}

.ffs_palt {
  font-feature-settings: "palt";
}

.ws_nowrap {
  white-space: nowrap;
}

/* ----- flex 逆並び ----- */
.flexrowreverse {
  flex-direction: row-reverse;
}

/* ----- 幅 ----- */
.w0 {
  width: 0px;
  max-width: 100%;
}

.max-w0 {
  max-width: 0px !important;
}

.max-w0p {
  max-width: 0% !important;
}

.min-w0 {
  min-width: 0px !important;
}

.min-w0p {
  min-width: 0% !important;
}

.w10 {
  width: 10px;
  max-width: 100%;
}

.max-w10 {
  max-width: 10px !important;
}

.max-w10p {
  max-width: 10% !important;
}

.min-w10 {
  min-width: 10px !important;
}

.min-w10p {
  min-width: 10% !important;
}

.w20 {
  width: 20px;
  max-width: 100%;
}

.max-w20 {
  max-width: 20px !important;
}

.max-w20p {
  max-width: 20% !important;
}

.min-w20 {
  min-width: 20px !important;
}

.min-w20p {
  min-width: 20% !important;
}

.w30 {
  width: 30px;
  max-width: 100%;
}

.max-w30 {
  max-width: 30px !important;
}

.max-w30p {
  max-width: 30% !important;
}

.min-w30 {
  min-width: 30px !important;
}

.min-w30p {
  min-width: 30% !important;
}

.w40 {
  width: 40px;
  max-width: 100%;
}

.max-w40 {
  max-width: 40px !important;
}

.max-w40p {
  max-width: 40% !important;
}

.min-w40 {
  min-width: 40px !important;
}

.min-w40p {
  min-width: 40% !important;
}

.w50 {
  width: 50px;
  max-width: 100%;
}

.max-w50 {
  max-width: 50px !important;
}

.max-w50p {
  max-width: 50% !important;
}

.min-w50 {
  min-width: 50px !important;
}

.min-w50p {
  min-width: 50% !important;
}

.w60 {
  width: 60px;
  max-width: 100%;
}

.max-w60 {
  max-width: 60px !important;
}

.max-w60p {
  max-width: 60% !important;
}

.min-w60 {
  min-width: 60px !important;
}

.min-w60p {
  min-width: 60% !important;
}

.w70 {
  width: 70px;
  max-width: 100%;
}

.max-w70 {
  max-width: 70px !important;
}

.max-w70p {
  max-width: 70% !important;
}

.min-w70 {
  min-width: 70px !important;
}

.min-w70p {
  min-width: 70% !important;
}

.w80 {
  width: 80px;
  max-width: 100%;
}

.max-w80 {
  max-width: 80px !important;
}

.max-w80p {
  max-width: 80% !important;
}

.min-w80 {
  min-width: 80px !important;
}

.min-w80p {
  min-width: 80% !important;
}

.w90 {
  width: 90px;
  max-width: 100%;
}

.max-w90 {
  max-width: 90px !important;
}

.max-w90p {
  max-width: 90% !important;
}

.min-w90 {
  min-width: 90px !important;
}

.min-w90p {
  min-width: 90% !important;
}

.w100 {
  width: 100px;
  max-width: 100%;
}

.max-w100 {
  max-width: 100px !important;
}

.max-w100p {
  max-width: 100% !important;
}

.min-w100 {
  min-width: 100px !important;
}

.min-w100p {
  min-width: 100% !important;
}

.w110 {
  width: 110px;
  max-width: 100%;
}

.max-w110 {
  max-width: 110px !important;
}

.max-w110p {
  max-width: 110% !important;
}

.min-w110 {
  min-width: 110px !important;
}

.min-w110p {
  min-width: 110% !important;
}

.w120 {
  width: 120px;
  max-width: 100%;
}

.max-w120 {
  max-width: 120px !important;
}

.max-w120p {
  max-width: 120% !important;
}

.min-w120 {
  min-width: 120px !important;
}

.min-w120p {
  min-width: 120% !important;
}

.w130 {
  width: 130px;
  max-width: 100%;
}

.max-w130 {
  max-width: 130px !important;
}

.max-w130p {
  max-width: 130% !important;
}

.min-w130 {
  min-width: 130px !important;
}

.min-w130p {
  min-width: 130% !important;
}

.w140 {
  width: 140px;
  max-width: 100%;
}

.max-w140 {
  max-width: 140px !important;
}

.max-w140p {
  max-width: 140% !important;
}

.min-w140 {
  min-width: 140px !important;
}

.min-w140p {
  min-width: 140% !important;
}

.w150 {
  width: 150px;
  max-width: 100%;
}

.max-w150 {
  max-width: 150px !important;
}

.max-w150p {
  max-width: 150% !important;
}

.min-w150 {
  min-width: 150px !important;
}

.min-w150p {
  min-width: 150% !important;
}

.w160 {
  width: 160px;
  max-width: 100%;
}

.max-w160 {
  max-width: 160px !important;
}

.max-w160p {
  max-width: 160% !important;
}

.min-w160 {
  min-width: 160px !important;
}

.min-w160p {
  min-width: 160% !important;
}

.w170 {
  width: 170px;
  max-width: 100%;
}

.max-w170 {
  max-width: 170px !important;
}

.max-w170p {
  max-width: 170% !important;
}

.min-w170 {
  min-width: 170px !important;
}

.min-w170p {
  min-width: 170% !important;
}

.w180 {
  width: 180px;
  max-width: 100%;
}

.max-w180 {
  max-width: 180px !important;
}

.max-w180p {
  max-width: 180% !important;
}

.min-w180 {
  min-width: 180px !important;
}

.min-w180p {
  min-width: 180% !important;
}

.w190 {
  width: 190px;
  max-width: 100%;
}

.max-w190 {
  max-width: 190px !important;
}

.max-w190p {
  max-width: 190% !important;
}

.min-w190 {
  min-width: 190px !important;
}

.min-w190p {
  min-width: 190% !important;
}

.w200 {
  width: 200px;
  max-width: 100%;
}

.max-w200 {
  max-width: 200px !important;
}

.max-w200p {
  max-width: 200% !important;
}

.min-w200 {
  min-width: 200px !important;
}

.min-w200p {
  min-width: 200% !important;
}

.w210 {
  width: 210px;
  max-width: 100%;
}

.max-w210 {
  max-width: 210px !important;
}

.max-w210p {
  max-width: 210% !important;
}

.min-w210 {
  min-width: 210px !important;
}

.min-w210p {
  min-width: 210% !important;
}

.w220 {
  width: 220px;
  max-width: 100%;
}

.max-w220 {
  max-width: 220px !important;
}

.max-w220p {
  max-width: 220% !important;
}

.min-w220 {
  min-width: 220px !important;
}

.min-w220p {
  min-width: 220% !important;
}

.w230 {
  width: 230px;
  max-width: 100%;
}

.max-w230 {
  max-width: 230px !important;
}

.max-w230p {
  max-width: 230% !important;
}

.min-w230 {
  min-width: 230px !important;
}

.min-w230p {
  min-width: 230% !important;
}

.w240 {
  width: 240px;
  max-width: 100%;
}

.max-w240 {
  max-width: 240px !important;
}

.max-w240p {
  max-width: 240% !important;
}

.min-w240 {
  min-width: 240px !important;
}

.min-w240p {
  min-width: 240% !important;
}

.w250 {
  width: 250px;
  max-width: 100%;
}

.max-w250 {
  max-width: 250px !important;
}

.max-w250p {
  max-width: 250% !important;
}

.min-w250 {
  min-width: 250px !important;
}

.min-w250p {
  min-width: 250% !important;
}

.w260 {
  width: 260px;
  max-width: 100%;
}

.max-w260 {
  max-width: 260px !important;
}

.max-w260p {
  max-width: 260% !important;
}

.min-w260 {
  min-width: 260px !important;
}

.min-w260p {
  min-width: 260% !important;
}

.w270 {
  width: 270px;
  max-width: 100%;
}

.max-w270 {
  max-width: 270px !important;
}

.max-w270p {
  max-width: 270% !important;
}

.min-w270 {
  min-width: 270px !important;
}

.min-w270p {
  min-width: 270% !important;
}

.w280 {
  width: 280px;
  max-width: 100%;
}

.max-w280 {
  max-width: 280px !important;
}

.max-w280p {
  max-width: 280% !important;
}

.min-w280 {
  min-width: 280px !important;
}

.min-w280p {
  min-width: 280% !important;
}

.w290 {
  width: 290px;
  max-width: 100%;
}

.max-w290 {
  max-width: 290px !important;
}

.max-w290p {
  max-width: 290% !important;
}

.min-w290 {
  min-width: 290px !important;
}

.min-w290p {
  min-width: 290% !important;
}

.w300 {
  width: 300px;
  max-width: 100%;
}

.max-w300 {
  max-width: 300px !important;
}

.max-w300p {
  max-width: 300% !important;
}

.min-w300 {
  min-width: 300px !important;
}

.min-w300p {
  min-width: 300% !important;
}

.w310 {
  width: 310px;
  max-width: 100%;
}

.max-w310 {
  max-width: 310px !important;
}

.max-w310p {
  max-width: 310% !important;
}

.min-w310 {
  min-width: 310px !important;
}

.min-w310p {
  min-width: 310% !important;
}

.w320 {
  width: 320px;
  max-width: 100%;
}

.max-w320 {
  max-width: 320px !important;
}

.max-w320p {
  max-width: 320% !important;
}

.min-w320 {
  min-width: 320px !important;
}

.min-w320p {
  min-width: 320% !important;
}

.w330 {
  width: 330px;
  max-width: 100%;
}

.max-w330 {
  max-width: 330px !important;
}

.max-w330p {
  max-width: 330% !important;
}

.min-w330 {
  min-width: 330px !important;
}

.min-w330p {
  min-width: 330% !important;
}

.w340 {
  width: 340px;
  max-width: 100%;
}

.max-w340 {
  max-width: 340px !important;
}

.max-w340p {
  max-width: 340% !important;
}

.min-w340 {
  min-width: 340px !important;
}

.min-w340p {
  min-width: 340% !important;
}

.w350 {
  width: 350px;
  max-width: 100%;
}

.max-w350 {
  max-width: 350px !important;
}

.max-w350p {
  max-width: 350% !important;
}

.min-w350 {
  min-width: 350px !important;
}

.min-w350p {
  min-width: 350% !important;
}

.w360 {
  width: 360px;
  max-width: 100%;
}

.max-w360 {
  max-width: 360px !important;
}

.max-w360p {
  max-width: 360% !important;
}

.min-w360 {
  min-width: 360px !important;
}

.min-w360p {
  min-width: 360% !important;
}

.w370 {
  width: 370px;
  max-width: 100%;
}

.max-w370 {
  max-width: 370px !important;
}

.max-w370p {
  max-width: 370% !important;
}

.min-w370 {
  min-width: 370px !important;
}

.min-w370p {
  min-width: 370% !important;
}

.w380 {
  width: 380px;
  max-width: 100%;
}

.max-w380 {
  max-width: 380px !important;
}

.max-w380p {
  max-width: 380% !important;
}

.min-w380 {
  min-width: 380px !important;
}

.min-w380p {
  min-width: 380% !important;
}

.w390 {
  width: 390px;
  max-width: 100%;
}

.max-w390 {
  max-width: 390px !important;
}

.max-w390p {
  max-width: 390% !important;
}

.min-w390 {
  min-width: 390px !important;
}

.min-w390p {
  min-width: 390% !important;
}

.w400 {
  width: 400px;
  max-width: 100%;
}

.max-w400 {
  max-width: 400px !important;
}

.max-w400p {
  max-width: 400% !important;
}

.min-w400 {
  min-width: 400px !important;
}

.min-w400p {
  min-width: 400% !important;
}

.w410 {
  width: 410px;
  max-width: 100%;
}

.max-w410 {
  max-width: 410px !important;
}

.max-w410p {
  max-width: 410% !important;
}

.min-w410 {
  min-width: 410px !important;
}

.min-w410p {
  min-width: 410% !important;
}

.w420 {
  width: 420px;
  max-width: 100%;
}

.max-w420 {
  max-width: 420px !important;
}

.max-w420p {
  max-width: 420% !important;
}

.min-w420 {
  min-width: 420px !important;
}

.min-w420p {
  min-width: 420% !important;
}

.w430 {
  width: 430px;
  max-width: 100%;
}

.max-w430 {
  max-width: 430px !important;
}

.max-w430p {
  max-width: 430% !important;
}

.min-w430 {
  min-width: 430px !important;
}

.min-w430p {
  min-width: 430% !important;
}

.w440 {
  width: 440px;
  max-width: 100%;
}

.max-w440 {
  max-width: 440px !important;
}

.max-w440p {
  max-width: 440% !important;
}

.min-w440 {
  min-width: 440px !important;
}

.min-w440p {
  min-width: 440% !important;
}

.w450 {
  width: 450px;
  max-width: 100%;
}

.max-w450 {
  max-width: 450px !important;
}

.max-w450p {
  max-width: 450% !important;
}

.min-w450 {
  min-width: 450px !important;
}

.min-w450p {
  min-width: 450% !important;
}

.w460 {
  width: 460px;
  max-width: 100%;
}

.max-w460 {
  max-width: 460px !important;
}

.max-w460p {
  max-width: 460% !important;
}

.min-w460 {
  min-width: 460px !important;
}

.min-w460p {
  min-width: 460% !important;
}

.w470 {
  width: 470px;
  max-width: 100%;
}

.max-w470 {
  max-width: 470px !important;
}

.max-w470p {
  max-width: 470% !important;
}

.min-w470 {
  min-width: 470px !important;
}

.min-w470p {
  min-width: 470% !important;
}

.w480 {
  width: 480px;
  max-width: 100%;
}

.max-w480 {
  max-width: 480px !important;
}

.max-w480p {
  max-width: 480% !important;
}

.min-w480 {
  min-width: 480px !important;
}

.min-w480p {
  min-width: 480% !important;
}

.w490 {
  width: 490px;
  max-width: 100%;
}

.max-w490 {
  max-width: 490px !important;
}

.max-w490p {
  max-width: 490% !important;
}

.min-w490 {
  min-width: 490px !important;
}

.min-w490p {
  min-width: 490% !important;
}

.w500 {
  width: 500px;
  max-width: 100%;
}

.max-w500 {
  max-width: 500px !important;
}

.max-w500p {
  max-width: 500% !important;
}

.min-w500 {
  min-width: 500px !important;
}

.min-w500p {
  min-width: 500% !important;
}

.w510 {
  width: 510px;
  max-width: 100%;
}

.max-w510 {
  max-width: 510px !important;
}

.max-w510p {
  max-width: 510% !important;
}

.min-w510 {
  min-width: 510px !important;
}

.min-w510p {
  min-width: 510% !important;
}

.w520 {
  width: 520px;
  max-width: 100%;
}

.max-w520 {
  max-width: 520px !important;
}

.max-w520p {
  max-width: 520% !important;
}

.min-w520 {
  min-width: 520px !important;
}

.min-w520p {
  min-width: 520% !important;
}

.w530 {
  width: 530px;
  max-width: 100%;
}

.max-w530 {
  max-width: 530px !important;
}

.max-w530p {
  max-width: 530% !important;
}

.min-w530 {
  min-width: 530px !important;
}

.min-w530p {
  min-width: 530% !important;
}

.w540 {
  width: 540px;
  max-width: 100%;
}

.max-w540 {
  max-width: 540px !important;
}

.max-w540p {
  max-width: 540% !important;
}

.min-w540 {
  min-width: 540px !important;
}

.min-w540p {
  min-width: 540% !important;
}

.w550 {
  width: 550px;
  max-width: 100%;
}

.max-w550 {
  max-width: 550px !important;
}

.max-w550p {
  max-width: 550% !important;
}

.min-w550 {
  min-width: 550px !important;
}

.min-w550p {
  min-width: 550% !important;
}

.w560 {
  width: 560px;
  max-width: 100%;
}

.max-w560 {
  max-width: 560px !important;
}

.max-w560p {
  max-width: 560% !important;
}

.min-w560 {
  min-width: 560px !important;
}

.min-w560p {
  min-width: 560% !important;
}

.w570 {
  width: 570px;
  max-width: 100%;
}

.max-w570 {
  max-width: 570px !important;
}

.max-w570p {
  max-width: 570% !important;
}

.min-w570 {
  min-width: 570px !important;
}

.min-w570p {
  min-width: 570% !important;
}

.w580 {
  width: 580px;
  max-width: 100%;
}

.max-w580 {
  max-width: 580px !important;
}

.max-w580p {
  max-width: 580% !important;
}

.min-w580 {
  min-width: 580px !important;
}

.min-w580p {
  min-width: 580% !important;
}

.w590 {
  width: 590px;
  max-width: 100%;
}

.max-w590 {
  max-width: 590px !important;
}

.max-w590p {
  max-width: 590% !important;
}

.min-w590 {
  min-width: 590px !important;
}

.min-w590p {
  min-width: 590% !important;
}

.w600 {
  width: 600px;
  max-width: 100%;
}

.max-w600 {
  max-width: 600px !important;
}

.max-w600p {
  max-width: 600% !important;
}

.min-w600 {
  min-width: 600px !important;
}

.min-w600p {
  min-width: 600% !important;
}

.w610 {
  width: 610px;
  max-width: 100%;
}

.max-w610 {
  max-width: 610px !important;
}

.max-w610p {
  max-width: 610% !important;
}

.min-w610 {
  min-width: 610px !important;
}

.min-w610p {
  min-width: 610% !important;
}

.w620 {
  width: 620px;
  max-width: 100%;
}

.max-w620 {
  max-width: 620px !important;
}

.max-w620p {
  max-width: 620% !important;
}

.min-w620 {
  min-width: 620px !important;
}

.min-w620p {
  min-width: 620% !important;
}

.w630 {
  width: 630px;
  max-width: 100%;
}

.max-w630 {
  max-width: 630px !important;
}

.max-w630p {
  max-width: 630% !important;
}

.min-w630 {
  min-width: 630px !important;
}

.min-w630p {
  min-width: 630% !important;
}

.w640 {
  width: 640px;
  max-width: 100%;
}

.max-w640 {
  max-width: 640px !important;
}

.max-w640p {
  max-width: 640% !important;
}

.min-w640 {
  min-width: 640px !important;
}

.min-w640p {
  min-width: 640% !important;
}

.w650 {
  width: 650px;
  max-width: 100%;
}

.max-w650 {
  max-width: 650px !important;
}

.max-w650p {
  max-width: 650% !important;
}

.min-w650 {
  min-width: 650px !important;
}

.min-w650p {
  min-width: 650% !important;
}

.w660 {
  width: 660px;
  max-width: 100%;
}

.max-w660 {
  max-width: 660px !important;
}

.max-w660p {
  max-width: 660% !important;
}

.min-w660 {
  min-width: 660px !important;
}

.min-w660p {
  min-width: 660% !important;
}

.w670 {
  width: 670px;
  max-width: 100%;
}

.max-w670 {
  max-width: 670px !important;
}

.max-w670p {
  max-width: 670% !important;
}

.min-w670 {
  min-width: 670px !important;
}

.min-w670p {
  min-width: 670% !important;
}

.w680 {
  width: 680px;
  max-width: 100%;
}

.max-w680 {
  max-width: 680px !important;
}

.max-w680p {
  max-width: 680% !important;
}

.min-w680 {
  min-width: 680px !important;
}

.min-w680p {
  min-width: 680% !important;
}

.w690 {
  width: 690px;
  max-width: 100%;
}

.max-w690 {
  max-width: 690px !important;
}

.max-w690p {
  max-width: 690% !important;
}

.min-w690 {
  min-width: 690px !important;
}

.min-w690p {
  min-width: 690% !important;
}

.w700 {
  width: 700px;
  max-width: 100%;
}

.max-w700 {
  max-width: 700px !important;
}

.max-w700p {
  max-width: 700% !important;
}

.min-w700 {
  min-width: 700px !important;
}

.min-w700p {
  min-width: 700% !important;
}

.w710 {
  width: 710px;
  max-width: 100%;
}

.max-w710 {
  max-width: 710px !important;
}

.max-w710p {
  max-width: 710% !important;
}

.min-w710 {
  min-width: 710px !important;
}

.min-w710p {
  min-width: 710% !important;
}

.w720 {
  width: 720px;
  max-width: 100%;
}

.max-w720 {
  max-width: 720px !important;
}

.max-w720p {
  max-width: 720% !important;
}

.min-w720 {
  min-width: 720px !important;
}

.min-w720p {
  min-width: 720% !important;
}

.w730 {
  width: 730px;
  max-width: 100%;
}

.max-w730 {
  max-width: 730px !important;
}

.max-w730p {
  max-width: 730% !important;
}

.min-w730 {
  min-width: 730px !important;
}

.min-w730p {
  min-width: 730% !important;
}

.w740 {
  width: 740px;
  max-width: 100%;
}

.max-w740 {
  max-width: 740px !important;
}

.max-w740p {
  max-width: 740% !important;
}

.min-w740 {
  min-width: 740px !important;
}

.min-w740p {
  min-width: 740% !important;
}

.w750 {
  width: 750px;
  max-width: 100%;
}

.max-w750 {
  max-width: 750px !important;
}

.max-w750p {
  max-width: 750% !important;
}

.min-w750 {
  min-width: 750px !important;
}

.min-w750p {
  min-width: 750% !important;
}

.w760 {
  width: 760px;
  max-width: 100%;
}

.max-w760 {
  max-width: 760px !important;
}

.max-w760p {
  max-width: 760% !important;
}

.min-w760 {
  min-width: 760px !important;
}

.min-w760p {
  min-width: 760% !important;
}

.w770 {
  width: 770px;
  max-width: 100%;
}

.max-w770 {
  max-width: 770px !important;
}

.max-w770p {
  max-width: 770% !important;
}

.min-w770 {
  min-width: 770px !important;
}

.min-w770p {
  min-width: 770% !important;
}

.w780 {
  width: 780px;
  max-width: 100%;
}

.max-w780 {
  max-width: 780px !important;
}

.max-w780p {
  max-width: 780% !important;
}

.min-w780 {
  min-width: 780px !important;
}

.min-w780p {
  min-width: 780% !important;
}

.w790 {
  width: 790px;
  max-width: 100%;
}

.max-w790 {
  max-width: 790px !important;
}

.max-w790p {
  max-width: 790% !important;
}

.min-w790 {
  min-width: 790px !important;
}

.min-w790p {
  min-width: 790% !important;
}

.w800 {
  width: 800px;
  max-width: 100%;
}

.max-w800 {
  max-width: 800px !important;
}

.max-w800p {
  max-width: 800% !important;
}

.min-w800 {
  min-width: 800px !important;
}

.min-w800p {
  min-width: 800% !important;
}

.w810 {
  width: 810px;
  max-width: 100%;
}

.max-w810 {
  max-width: 810px !important;
}

.max-w810p {
  max-width: 810% !important;
}

.min-w810 {
  min-width: 810px !important;
}

.min-w810p {
  min-width: 810% !important;
}

.w820 {
  width: 820px;
  max-width: 100%;
}

.max-w820 {
  max-width: 820px !important;
}

.max-w820p {
  max-width: 820% !important;
}

.min-w820 {
  min-width: 820px !important;
}

.min-w820p {
  min-width: 820% !important;
}

.w830 {
  width: 830px;
  max-width: 100%;
}

.max-w830 {
  max-width: 830px !important;
}

.max-w830p {
  max-width: 830% !important;
}

.min-w830 {
  min-width: 830px !important;
}

.min-w830p {
  min-width: 830% !important;
}

.w840 {
  width: 840px;
  max-width: 100%;
}

.max-w840 {
  max-width: 840px !important;
}

.max-w840p {
  max-width: 840% !important;
}

.min-w840 {
  min-width: 840px !important;
}

.min-w840p {
  min-width: 840% !important;
}

.w850 {
  width: 850px;
  max-width: 100%;
}

.max-w850 {
  max-width: 850px !important;
}

.max-w850p {
  max-width: 850% !important;
}

.min-w850 {
  min-width: 850px !important;
}

.min-w850p {
  min-width: 850% !important;
}

.w860 {
  width: 860px;
  max-width: 100%;
}

.max-w860 {
  max-width: 860px !important;
}

.max-w860p {
  max-width: 860% !important;
}

.min-w860 {
  min-width: 860px !important;
}

.min-w860p {
  min-width: 860% !important;
}

.w870 {
  width: 870px;
  max-width: 100%;
}

.max-w870 {
  max-width: 870px !important;
}

.max-w870p {
  max-width: 870% !important;
}

.min-w870 {
  min-width: 870px !important;
}

.min-w870p {
  min-width: 870% !important;
}

.w880 {
  width: 880px;
  max-width: 100%;
}

.max-w880 {
  max-width: 880px !important;
}

.max-w880p {
  max-width: 880% !important;
}

.min-w880 {
  min-width: 880px !important;
}

.min-w880p {
  min-width: 880% !important;
}

.w890 {
  width: 890px;
  max-width: 100%;
}

.max-w890 {
  max-width: 890px !important;
}

.max-w890p {
  max-width: 890% !important;
}

.min-w890 {
  min-width: 890px !important;
}

.min-w890p {
  min-width: 890% !important;
}

.w900 {
  width: 900px;
  max-width: 100%;
}

.max-w900 {
  max-width: 900px !important;
}

.max-w900p {
  max-width: 900% !important;
}

.min-w900 {
  min-width: 900px !important;
}

.min-w900p {
  min-width: 900% !important;
}

@media screen and (min-width: 768px) {
  .min-w0-pc {
    min-width: 0px !important;
  }
  .min-w0p-pc {
    min-width: 0% !important;
  }
  .min-w10-pc {
    min-width: 10px !important;
  }
  .min-w10p-pc {
    min-width: 10% !important;
  }
  .min-w20-pc {
    min-width: 20px !important;
  }
  .min-w20p-pc {
    min-width: 20% !important;
  }
  .min-w30-pc {
    min-width: 30px !important;
  }
  .min-w30p-pc {
    min-width: 30% !important;
  }
  .min-w40-pc {
    min-width: 40px !important;
  }
  .min-w40p-pc {
    min-width: 40% !important;
  }
  .min-w50-pc {
    min-width: 50px !important;
  }
  .min-w50p-pc {
    min-width: 50% !important;
  }
  .min-w60-pc {
    min-width: 60px !important;
  }
  .min-w60p-pc {
    min-width: 60% !important;
  }
  .min-w70-pc {
    min-width: 70px !important;
  }
  .min-w70p-pc {
    min-width: 70% !important;
  }
  .min-w80-pc {
    min-width: 80px !important;
  }
  .min-w80p-pc {
    min-width: 80% !important;
  }
  .min-w90-pc {
    min-width: 90px !important;
  }
  .min-w90p-pc {
    min-width: 90% !important;
  }
  .min-w100-pc {
    min-width: 100px !important;
  }
  .min-w100p-pc {
    min-width: 100% !important;
  }
  .min-w110-pc {
    min-width: 110px !important;
  }
  .min-w110p-pc {
    min-width: 110% !important;
  }
  .min-w120-pc {
    min-width: 120px !important;
  }
  .min-w120p-pc {
    min-width: 120% !important;
  }
  .min-w130-pc {
    min-width: 130px !important;
  }
  .min-w130p-pc {
    min-width: 130% !important;
  }
  .min-w140-pc {
    min-width: 140px !important;
  }
  .min-w140p-pc {
    min-width: 140% !important;
  }
  .min-w150-pc {
    min-width: 150px !important;
  }
  .min-w150p-pc {
    min-width: 150% !important;
  }
  .min-w160-pc {
    min-width: 160px !important;
  }
  .min-w160p-pc {
    min-width: 160% !important;
  }
  .min-w170-pc {
    min-width: 170px !important;
  }
  .min-w170p-pc {
    min-width: 170% !important;
  }
  .min-w180-pc {
    min-width: 180px !important;
  }
  .min-w180p-pc {
    min-width: 180% !important;
  }
  .min-w190-pc {
    min-width: 190px !important;
  }
  .min-w190p-pc {
    min-width: 190% !important;
  }
  .min-w200-pc {
    min-width: 200px !important;
  }
  .min-w200p-pc {
    min-width: 200% !important;
  }
  .min-w210-pc {
    min-width: 210px !important;
  }
  .min-w210p-pc {
    min-width: 210% !important;
  }
  .min-w220-pc {
    min-width: 220px !important;
  }
  .min-w220p-pc {
    min-width: 220% !important;
  }
  .min-w230-pc {
    min-width: 230px !important;
  }
  .min-w230p-pc {
    min-width: 230% !important;
  }
  .min-w240-pc {
    min-width: 240px !important;
  }
  .min-w240p-pc {
    min-width: 240% !important;
  }
  .min-w250-pc {
    min-width: 250px !important;
  }
  .min-w250p-pc {
    min-width: 250% !important;
  }
  .min-w260-pc {
    min-width: 260px !important;
  }
  .min-w260p-pc {
    min-width: 260% !important;
  }
  .min-w270-pc {
    min-width: 270px !important;
  }
  .min-w270p-pc {
    min-width: 270% !important;
  }
  .min-w280-pc {
    min-width: 280px !important;
  }
  .min-w280p-pc {
    min-width: 280% !important;
  }
  .min-w290-pc {
    min-width: 290px !important;
  }
  .min-w290p-pc {
    min-width: 290% !important;
  }
  .min-w300-pc {
    min-width: 300px !important;
  }
  .min-w300p-pc {
    min-width: 300% !important;
  }
  .min-w310-pc {
    min-width: 310px !important;
  }
  .min-w310p-pc {
    min-width: 310% !important;
  }
  .min-w320-pc {
    min-width: 320px !important;
  }
  .min-w320p-pc {
    min-width: 320% !important;
  }
  .min-w330-pc {
    min-width: 330px !important;
  }
  .min-w330p-pc {
    min-width: 330% !important;
  }
  .min-w340-pc {
    min-width: 340px !important;
  }
  .min-w340p-pc {
    min-width: 340% !important;
  }
  .min-w350-pc {
    min-width: 350px !important;
  }
  .min-w350p-pc {
    min-width: 350% !important;
  }
  .min-w360-pc {
    min-width: 360px !important;
  }
  .min-w360p-pc {
    min-width: 360% !important;
  }
  .min-w370-pc {
    min-width: 370px !important;
  }
  .min-w370p-pc {
    min-width: 370% !important;
  }
  .min-w380-pc {
    min-width: 380px !important;
  }
  .min-w380p-pc {
    min-width: 380% !important;
  }
  .min-w390-pc {
    min-width: 390px !important;
  }
  .min-w390p-pc {
    min-width: 390% !important;
  }
  .min-w400-pc {
    min-width: 400px !important;
  }
  .min-w400p-pc {
    min-width: 400% !important;
  }
  .min-w410-pc {
    min-width: 410px !important;
  }
  .min-w410p-pc {
    min-width: 410% !important;
  }
  .min-w420-pc {
    min-width: 420px !important;
  }
  .min-w420p-pc {
    min-width: 420% !important;
  }
  .min-w430-pc {
    min-width: 430px !important;
  }
  .min-w430p-pc {
    min-width: 430% !important;
  }
  .min-w440-pc {
    min-width: 440px !important;
  }
  .min-w440p-pc {
    min-width: 440% !important;
  }
  .min-w450-pc {
    min-width: 450px !important;
  }
  .min-w450p-pc {
    min-width: 450% !important;
  }
  .min-w460-pc {
    min-width: 460px !important;
  }
  .min-w460p-pc {
    min-width: 460% !important;
  }
  .min-w470-pc {
    min-width: 470px !important;
  }
  .min-w470p-pc {
    min-width: 470% !important;
  }
  .min-w480-pc {
    min-width: 480px !important;
  }
  .min-w480p-pc {
    min-width: 480% !important;
  }
  .min-w490-pc {
    min-width: 490px !important;
  }
  .min-w490p-pc {
    min-width: 490% !important;
  }
  .min-w500-pc {
    min-width: 500px !important;
  }
  .min-w500p-pc {
    min-width: 500% !important;
  }
  .min-w510-pc {
    min-width: 510px !important;
  }
  .min-w510p-pc {
    min-width: 510% !important;
  }
  .min-w520-pc {
    min-width: 520px !important;
  }
  .min-w520p-pc {
    min-width: 520% !important;
  }
  .min-w530-pc {
    min-width: 530px !important;
  }
  .min-w530p-pc {
    min-width: 530% !important;
  }
  .min-w540-pc {
    min-width: 540px !important;
  }
  .min-w540p-pc {
    min-width: 540% !important;
  }
  .min-w550-pc {
    min-width: 550px !important;
  }
  .min-w550p-pc {
    min-width: 550% !important;
  }
  .min-w560-pc {
    min-width: 560px !important;
  }
  .min-w560p-pc {
    min-width: 560% !important;
  }
  .min-w570-pc {
    min-width: 570px !important;
  }
  .min-w570p-pc {
    min-width: 570% !important;
  }
  .min-w580-pc {
    min-width: 580px !important;
  }
  .min-w580p-pc {
    min-width: 580% !important;
  }
  .min-w590-pc {
    min-width: 590px !important;
  }
  .min-w590p-pc {
    min-width: 590% !important;
  }
  .min-w600-pc {
    min-width: 600px !important;
  }
  .min-w600p-pc {
    min-width: 600% !important;
  }
  .min-w610-pc {
    min-width: 610px !important;
  }
  .min-w610p-pc {
    min-width: 610% !important;
  }
  .min-w620-pc {
    min-width: 620px !important;
  }
  .min-w620p-pc {
    min-width: 620% !important;
  }
  .min-w630-pc {
    min-width: 630px !important;
  }
  .min-w630p-pc {
    min-width: 630% !important;
  }
  .min-w640-pc {
    min-width: 640px !important;
  }
  .min-w640p-pc {
    min-width: 640% !important;
  }
  .min-w650-pc {
    min-width: 650px !important;
  }
  .min-w650p-pc {
    min-width: 650% !important;
  }
  .min-w660-pc {
    min-width: 660px !important;
  }
  .min-w660p-pc {
    min-width: 660% !important;
  }
  .min-w670-pc {
    min-width: 670px !important;
  }
  .min-w670p-pc {
    min-width: 670% !important;
  }
  .min-w680-pc {
    min-width: 680px !important;
  }
  .min-w680p-pc {
    min-width: 680% !important;
  }
  .min-w690-pc {
    min-width: 690px !important;
  }
  .min-w690p-pc {
    min-width: 690% !important;
  }
  .min-w700-pc {
    min-width: 700px !important;
  }
  .min-w700p-pc {
    min-width: 700% !important;
  }
  .min-w710-pc {
    min-width: 710px !important;
  }
  .min-w710p-pc {
    min-width: 710% !important;
  }
  .min-w720-pc {
    min-width: 720px !important;
  }
  .min-w720p-pc {
    min-width: 720% !important;
  }
  .min-w730-pc {
    min-width: 730px !important;
  }
  .min-w730p-pc {
    min-width: 730% !important;
  }
  .min-w740-pc {
    min-width: 740px !important;
  }
  .min-w740p-pc {
    min-width: 740% !important;
  }
  .min-w750-pc {
    min-width: 750px !important;
  }
  .min-w750p-pc {
    min-width: 750% !important;
  }
  .min-w760-pc {
    min-width: 760px !important;
  }
  .min-w760p-pc {
    min-width: 760% !important;
  }
  .min-w770-pc {
    min-width: 770px !important;
  }
  .min-w770p-pc {
    min-width: 770% !important;
  }
  .min-w780-pc {
    min-width: 780px !important;
  }
  .min-w780p-pc {
    min-width: 780% !important;
  }
  .min-w790-pc {
    min-width: 790px !important;
  }
  .min-w790p-pc {
    min-width: 790% !important;
  }
  .min-w800-pc {
    min-width: 800px !important;
  }
  .min-w800p-pc {
    min-width: 800% !important;
  }
  .min-w810-pc {
    min-width: 810px !important;
  }
  .min-w810p-pc {
    min-width: 810% !important;
  }
  .min-w820-pc {
    min-width: 820px !important;
  }
  .min-w820p-pc {
    min-width: 820% !important;
  }
  .min-w830-pc {
    min-width: 830px !important;
  }
  .min-w830p-pc {
    min-width: 830% !important;
  }
  .min-w840-pc {
    min-width: 840px !important;
  }
  .min-w840p-pc {
    min-width: 840% !important;
  }
  .min-w850-pc {
    min-width: 850px !important;
  }
  .min-w850p-pc {
    min-width: 850% !important;
  }
  .min-w860-pc {
    min-width: 860px !important;
  }
  .min-w860p-pc {
    min-width: 860% !important;
  }
  .min-w870-pc {
    min-width: 870px !important;
  }
  .min-w870p-pc {
    min-width: 870% !important;
  }
  .min-w880-pc {
    min-width: 880px !important;
  }
  .min-w880p-pc {
    min-width: 880% !important;
  }
  .min-w890-pc {
    min-width: 890px !important;
  }
  .min-w890p-pc {
    min-width: 890% !important;
  }
  .min-w900-pc {
    min-width: 900px !important;
  }
  .min-w900p-pc {
    min-width: 900% !important;
  }
}
@media screen and (max-width: 767px) {
  .w0-sp {
    width: 0px !important;
    max-width: 100% !important;
  }
  .min-w0-sp {
    min-width: 0px !important;
  }
  .max-w0-sp {
    max-width: 0px !important;
  }
  .w10-sp {
    width: 10px !important;
    max-width: 100% !important;
  }
  .min-w10-sp {
    min-width: 10px !important;
  }
  .max-w10-sp {
    max-width: 10px !important;
  }
  .w20-sp {
    width: 20px !important;
    max-width: 100% !important;
  }
  .min-w20-sp {
    min-width: 20px !important;
  }
  .max-w20-sp {
    max-width: 20px !important;
  }
  .w30-sp {
    width: 30px !important;
    max-width: 100% !important;
  }
  .min-w30-sp {
    min-width: 30px !important;
  }
  .max-w30-sp {
    max-width: 30px !important;
  }
  .w40-sp {
    width: 40px !important;
    max-width: 100% !important;
  }
  .min-w40-sp {
    min-width: 40px !important;
  }
  .max-w40-sp {
    max-width: 40px !important;
  }
  .w50-sp {
    width: 50px !important;
    max-width: 100% !important;
  }
  .min-w50-sp {
    min-width: 50px !important;
  }
  .max-w50-sp {
    max-width: 50px !important;
  }
  .w60-sp {
    width: 60px !important;
    max-width: 100% !important;
  }
  .min-w60-sp {
    min-width: 60px !important;
  }
  .max-w60-sp {
    max-width: 60px !important;
  }
  .w70-sp {
    width: 70px !important;
    max-width: 100% !important;
  }
  .min-w70-sp {
    min-width: 70px !important;
  }
  .max-w70-sp {
    max-width: 70px !important;
  }
  .w80-sp {
    width: 80px !important;
    max-width: 100% !important;
  }
  .min-w80-sp {
    min-width: 80px !important;
  }
  .max-w80-sp {
    max-width: 80px !important;
  }
  .w90-sp {
    width: 90px !important;
    max-width: 100% !important;
  }
  .min-w90-sp {
    min-width: 90px !important;
  }
  .max-w90-sp {
    max-width: 90px !important;
  }
  .w100-sp {
    width: 100px !important;
    max-width: 100% !important;
  }
  .min-w100-sp {
    min-width: 100px !important;
  }
  .max-w100-sp {
    max-width: 100px !important;
  }
  .w110-sp {
    width: 110px !important;
    max-width: 100% !important;
  }
  .min-w110-sp {
    min-width: 110px !important;
  }
  .max-w110-sp {
    max-width: 110px !important;
  }
  .w120-sp {
    width: 120px !important;
    max-width: 100% !important;
  }
  .min-w120-sp {
    min-width: 120px !important;
  }
  .max-w120-sp {
    max-width: 120px !important;
  }
  .w130-sp {
    width: 130px !important;
    max-width: 100% !important;
  }
  .min-w130-sp {
    min-width: 130px !important;
  }
  .max-w130-sp {
    max-width: 130px !important;
  }
  .w140-sp {
    width: 140px !important;
    max-width: 100% !important;
  }
  .min-w140-sp {
    min-width: 140px !important;
  }
  .max-w140-sp {
    max-width: 140px !important;
  }
  .w150-sp {
    width: 150px !important;
    max-width: 100% !important;
  }
  .min-w150-sp {
    min-width: 150px !important;
  }
  .max-w150-sp {
    max-width: 150px !important;
  }
  .w160-sp {
    width: 160px !important;
    max-width: 100% !important;
  }
  .min-w160-sp {
    min-width: 160px !important;
  }
  .max-w160-sp {
    max-width: 160px !important;
  }
  .w170-sp {
    width: 170px !important;
    max-width: 100% !important;
  }
  .min-w170-sp {
    min-width: 170px !important;
  }
  .max-w170-sp {
    max-width: 170px !important;
  }
  .w180-sp {
    width: 180px !important;
    max-width: 100% !important;
  }
  .min-w180-sp {
    min-width: 180px !important;
  }
  .max-w180-sp {
    max-width: 180px !important;
  }
  .w190-sp {
    width: 190px !important;
    max-width: 100% !important;
  }
  .min-w190-sp {
    min-width: 190px !important;
  }
  .max-w190-sp {
    max-width: 190px !important;
  }
  .w200-sp {
    width: 200px !important;
    max-width: 100% !important;
  }
  .min-w200-sp {
    min-width: 200px !important;
  }
  .max-w200-sp {
    max-width: 200px !important;
  }
  .w210-sp {
    width: 210px !important;
    max-width: 100% !important;
  }
  .min-w210-sp {
    min-width: 210px !important;
  }
  .max-w210-sp {
    max-width: 210px !important;
  }
  .w220-sp {
    width: 220px !important;
    max-width: 100% !important;
  }
  .min-w220-sp {
    min-width: 220px !important;
  }
  .max-w220-sp {
    max-width: 220px !important;
  }
  .w230-sp {
    width: 230px !important;
    max-width: 100% !important;
  }
  .min-w230-sp {
    min-width: 230px !important;
  }
  .max-w230-sp {
    max-width: 230px !important;
  }
  .w240-sp {
    width: 240px !important;
    max-width: 100% !important;
  }
  .min-w240-sp {
    min-width: 240px !important;
  }
  .max-w240-sp {
    max-width: 240px !important;
  }
  .w250-sp {
    width: 250px !important;
    max-width: 100% !important;
  }
  .min-w250-sp {
    min-width: 250px !important;
  }
  .max-w250-sp {
    max-width: 250px !important;
  }
  .w260-sp {
    width: 260px !important;
    max-width: 100% !important;
  }
  .min-w260-sp {
    min-width: 260px !important;
  }
  .max-w260-sp {
    max-width: 260px !important;
  }
  .w270-sp {
    width: 270px !important;
    max-width: 100% !important;
  }
  .min-w270-sp {
    min-width: 270px !important;
  }
  .max-w270-sp {
    max-width: 270px !important;
  }
  .w280-sp {
    width: 280px !important;
    max-width: 100% !important;
  }
  .min-w280-sp {
    min-width: 280px !important;
  }
  .max-w280-sp {
    max-width: 280px !important;
  }
  .w290-sp {
    width: 290px !important;
    max-width: 100% !important;
  }
  .min-w290-sp {
    min-width: 290px !important;
  }
  .max-w290-sp {
    max-width: 290px !important;
  }
  .w300-sp {
    width: 300px !important;
    max-width: 100% !important;
  }
  .min-w300-sp {
    min-width: 300px !important;
  }
  .max-w300-sp {
    max-width: 300px !important;
  }
  .w310-sp {
    width: 310px !important;
    max-width: 100% !important;
  }
  .min-w310-sp {
    min-width: 310px !important;
  }
  .max-w310-sp {
    max-width: 310px !important;
  }
  .w320-sp {
    width: 320px !important;
    max-width: 100% !important;
  }
  .min-w320-sp {
    min-width: 320px !important;
  }
  .max-w320-sp {
    max-width: 320px !important;
  }
  .w330-sp {
    width: 330px !important;
    max-width: 100% !important;
  }
  .min-w330-sp {
    min-width: 330px !important;
  }
  .max-w330-sp {
    max-width: 330px !important;
  }
  .w340-sp {
    width: 340px !important;
    max-width: 100% !important;
  }
  .min-w340-sp {
    min-width: 340px !important;
  }
  .max-w340-sp {
    max-width: 340px !important;
  }
  .w350-sp {
    width: 350px !important;
    max-width: 100% !important;
  }
  .min-w350-sp {
    min-width: 350px !important;
  }
  .max-w350-sp {
    max-width: 350px !important;
  }
  .w360-sp {
    width: 360px !important;
    max-width: 100% !important;
  }
  .min-w360-sp {
    min-width: 360px !important;
  }
  .max-w360-sp {
    max-width: 360px !important;
  }
  .w370-sp {
    width: 370px !important;
    max-width: 100% !important;
  }
  .min-w370-sp {
    min-width: 370px !important;
  }
  .max-w370-sp {
    max-width: 370px !important;
  }
  .w380-sp {
    width: 380px !important;
    max-width: 100% !important;
  }
  .min-w380-sp {
    min-width: 380px !important;
  }
  .max-w380-sp {
    max-width: 380px !important;
  }
  .w390-sp {
    width: 390px !important;
    max-width: 100% !important;
  }
  .min-w390-sp {
    min-width: 390px !important;
  }
  .max-w390-sp {
    max-width: 390px !important;
  }
  .w400-sp {
    width: 400px !important;
    max-width: 100% !important;
  }
  .min-w400-sp {
    min-width: 400px !important;
  }
  .max-w400-sp {
    max-width: 400px !important;
  }
  .w410-sp {
    width: 410px !important;
    max-width: 100% !important;
  }
  .min-w410-sp {
    min-width: 410px !important;
  }
  .max-w410-sp {
    max-width: 410px !important;
  }
  .w420-sp {
    width: 420px !important;
    max-width: 100% !important;
  }
  .min-w420-sp {
    min-width: 420px !important;
  }
  .max-w420-sp {
    max-width: 420px !important;
  }
  .w430-sp {
    width: 430px !important;
    max-width: 100% !important;
  }
  .min-w430-sp {
    min-width: 430px !important;
  }
  .max-w430-sp {
    max-width: 430px !important;
  }
  .w440-sp {
    width: 440px !important;
    max-width: 100% !important;
  }
  .min-w440-sp {
    min-width: 440px !important;
  }
  .max-w440-sp {
    max-width: 440px !important;
  }
  .w450-sp {
    width: 450px !important;
    max-width: 100% !important;
  }
  .min-w450-sp {
    min-width: 450px !important;
  }
  .max-w450-sp {
    max-width: 450px !important;
  }
  .w460-sp {
    width: 460px !important;
    max-width: 100% !important;
  }
  .min-w460-sp {
    min-width: 460px !important;
  }
  .max-w460-sp {
    max-width: 460px !important;
  }
  .w470-sp {
    width: 470px !important;
    max-width: 100% !important;
  }
  .min-w470-sp {
    min-width: 470px !important;
  }
  .max-w470-sp {
    max-width: 470px !important;
  }
  .w480-sp {
    width: 480px !important;
    max-width: 100% !important;
  }
  .min-w480-sp {
    min-width: 480px !important;
  }
  .max-w480-sp {
    max-width: 480px !important;
  }
  .w490-sp {
    width: 490px !important;
    max-width: 100% !important;
  }
  .min-w490-sp {
    min-width: 490px !important;
  }
  .max-w490-sp {
    max-width: 490px !important;
  }
  .w500-sp {
    width: 500px !important;
    max-width: 100% !important;
  }
  .min-w500-sp {
    min-width: 500px !important;
  }
  .max-w500-sp {
    max-width: 500px !important;
  }
  .w510-sp {
    width: 510px !important;
    max-width: 100% !important;
  }
  .min-w510-sp {
    min-width: 510px !important;
  }
  .max-w510-sp {
    max-width: 510px !important;
  }
  .w520-sp {
    width: 520px !important;
    max-width: 100% !important;
  }
  .min-w520-sp {
    min-width: 520px !important;
  }
  .max-w520-sp {
    max-width: 520px !important;
  }
  .w530-sp {
    width: 530px !important;
    max-width: 100% !important;
  }
  .min-w530-sp {
    min-width: 530px !important;
  }
  .max-w530-sp {
    max-width: 530px !important;
  }
  .w540-sp {
    width: 540px !important;
    max-width: 100% !important;
  }
  .min-w540-sp {
    min-width: 540px !important;
  }
  .max-w540-sp {
    max-width: 540px !important;
  }
  .w550-sp {
    width: 550px !important;
    max-width: 100% !important;
  }
  .min-w550-sp {
    min-width: 550px !important;
  }
  .max-w550-sp {
    max-width: 550px !important;
  }
  .w560-sp {
    width: 560px !important;
    max-width: 100% !important;
  }
  .min-w560-sp {
    min-width: 560px !important;
  }
  .max-w560-sp {
    max-width: 560px !important;
  }
  .w570-sp {
    width: 570px !important;
    max-width: 100% !important;
  }
  .min-w570-sp {
    min-width: 570px !important;
  }
  .max-w570-sp {
    max-width: 570px !important;
  }
  .w580-sp {
    width: 580px !important;
    max-width: 100% !important;
  }
  .min-w580-sp {
    min-width: 580px !important;
  }
  .max-w580-sp {
    max-width: 580px !important;
  }
  .w590-sp {
    width: 590px !important;
    max-width: 100% !important;
  }
  .min-w590-sp {
    min-width: 590px !important;
  }
  .max-w590-sp {
    max-width: 590px !important;
  }
  .w600-sp {
    width: 600px !important;
    max-width: 100% !important;
  }
  .min-w600-sp {
    min-width: 600px !important;
  }
  .max-w600-sp {
    max-width: 600px !important;
  }
  .w610-sp {
    width: 610px !important;
    max-width: 100% !important;
  }
  .min-w610-sp {
    min-width: 610px !important;
  }
  .max-w610-sp {
    max-width: 610px !important;
  }
  .w620-sp {
    width: 620px !important;
    max-width: 100% !important;
  }
  .min-w620-sp {
    min-width: 620px !important;
  }
  .max-w620-sp {
    max-width: 620px !important;
  }
  .w630-sp {
    width: 630px !important;
    max-width: 100% !important;
  }
  .min-w630-sp {
    min-width: 630px !important;
  }
  .max-w630-sp {
    max-width: 630px !important;
  }
  .w640-sp {
    width: 640px !important;
    max-width: 100% !important;
  }
  .min-w640-sp {
    min-width: 640px !important;
  }
  .max-w640-sp {
    max-width: 640px !important;
  }
  .w650-sp {
    width: 650px !important;
    max-width: 100% !important;
  }
  .min-w650-sp {
    min-width: 650px !important;
  }
  .max-w650-sp {
    max-width: 650px !important;
  }
  .w660-sp {
    width: 660px !important;
    max-width: 100% !important;
  }
  .min-w660-sp {
    min-width: 660px !important;
  }
  .max-w660-sp {
    max-width: 660px !important;
  }
  .w670-sp {
    width: 670px !important;
    max-width: 100% !important;
  }
  .min-w670-sp {
    min-width: 670px !important;
  }
  .max-w670-sp {
    max-width: 670px !important;
  }
  .w680-sp {
    width: 680px !important;
    max-width: 100% !important;
  }
  .min-w680-sp {
    min-width: 680px !important;
  }
  .max-w680-sp {
    max-width: 680px !important;
  }
  .w690-sp {
    width: 690px !important;
    max-width: 100% !important;
  }
  .min-w690-sp {
    min-width: 690px !important;
  }
  .max-w690-sp {
    max-width: 690px !important;
  }
  .w700-sp {
    width: 700px !important;
    max-width: 100% !important;
  }
  .min-w700-sp {
    min-width: 700px !important;
  }
  .max-w700-sp {
    max-width: 700px !important;
  }
  .w710-sp {
    width: 710px !important;
    max-width: 100% !important;
  }
  .min-w710-sp {
    min-width: 710px !important;
  }
  .max-w710-sp {
    max-width: 710px !important;
  }
  .w720-sp {
    width: 720px !important;
    max-width: 100% !important;
  }
  .min-w720-sp {
    min-width: 720px !important;
  }
  .max-w720-sp {
    max-width: 720px !important;
  }
  .w730-sp {
    width: 730px !important;
    max-width: 100% !important;
  }
  .min-w730-sp {
    min-width: 730px !important;
  }
  .max-w730-sp {
    max-width: 730px !important;
  }
  .w740-sp {
    width: 740px !important;
    max-width: 100% !important;
  }
  .min-w740-sp {
    min-width: 740px !important;
  }
  .max-w740-sp {
    max-width: 740px !important;
  }
  .w750-sp {
    width: 750px !important;
    max-width: 100% !important;
  }
  .min-w750-sp {
    min-width: 750px !important;
  }
  .max-w750-sp {
    max-width: 750px !important;
  }
  .w760-sp {
    width: 760px !important;
    max-width: 100% !important;
  }
  .min-w760-sp {
    min-width: 760px !important;
  }
  .max-w760-sp {
    max-width: 760px !important;
  }
  .w770-sp {
    width: 770px !important;
    max-width: 100% !important;
  }
  .min-w770-sp {
    min-width: 770px !important;
  }
  .max-w770-sp {
    max-width: 770px !important;
  }
  .w780-sp {
    width: 780px !important;
    max-width: 100% !important;
  }
  .min-w780-sp {
    min-width: 780px !important;
  }
  .max-w780-sp {
    max-width: 780px !important;
  }
  .w790-sp {
    width: 790px !important;
    max-width: 100% !important;
  }
  .min-w790-sp {
    min-width: 790px !important;
  }
  .max-w790-sp {
    max-width: 790px !important;
  }
  .w800-sp {
    width: 800px !important;
    max-width: 100% !important;
  }
  .min-w800-sp {
    min-width: 800px !important;
  }
  .max-w800-sp {
    max-width: 800px !important;
  }
  .w810-sp {
    width: 810px !important;
    max-width: 100% !important;
  }
  .min-w810-sp {
    min-width: 810px !important;
  }
  .max-w810-sp {
    max-width: 810px !important;
  }
  .w820-sp {
    width: 820px !important;
    max-width: 100% !important;
  }
  .min-w820-sp {
    min-width: 820px !important;
  }
  .max-w820-sp {
    max-width: 820px !important;
  }
  .w830-sp {
    width: 830px !important;
    max-width: 100% !important;
  }
  .min-w830-sp {
    min-width: 830px !important;
  }
  .max-w830-sp {
    max-width: 830px !important;
  }
  .w840-sp {
    width: 840px !important;
    max-width: 100% !important;
  }
  .min-w840-sp {
    min-width: 840px !important;
  }
  .max-w840-sp {
    max-width: 840px !important;
  }
  .w850-sp {
    width: 850px !important;
    max-width: 100% !important;
  }
  .min-w850-sp {
    min-width: 850px !important;
  }
  .max-w850-sp {
    max-width: 850px !important;
  }
  .w860-sp {
    width: 860px !important;
    max-width: 100% !important;
  }
  .min-w860-sp {
    min-width: 860px !important;
  }
  .max-w860-sp {
    max-width: 860px !important;
  }
  .w870-sp {
    width: 870px !important;
    max-width: 100% !important;
  }
  .min-w870-sp {
    min-width: 870px !important;
  }
  .max-w870-sp {
    max-width: 870px !important;
  }
  .w880-sp {
    width: 880px !important;
    max-width: 100% !important;
  }
  .min-w880-sp {
    min-width: 880px !important;
  }
  .max-w880-sp {
    max-width: 880px !important;
  }
  .w890-sp {
    width: 890px !important;
    max-width: 100% !important;
  }
  .min-w890-sp {
    min-width: 890px !important;
  }
  .max-w890-sp {
    max-width: 890px !important;
  }
  .w900-sp {
    width: 900px !important;
    max-width: 100% !important;
  }
  .min-w900-sp {
    min-width: 900px !important;
  }
  .max-w900-sp {
    max-width: 900px !important;
  }
}
.w0p {
  width: 0% !important;
}

.w1p {
  width: 1% !important;
}

.w2p {
  width: 2% !important;
}

.w3p {
  width: 3% !important;
}

.w4p {
  width: 4% !important;
}

.w5p {
  width: 5% !important;
}

.w6p {
  width: 6% !important;
}

.w7p {
  width: 7% !important;
}

.w8p {
  width: 8% !important;
}

.w9p {
  width: 9% !important;
}

.w10p {
  width: 10% !important;
}

.w11p {
  width: 11% !important;
}

.w12p {
  width: 12% !important;
}

.w13p {
  width: 13% !important;
}

.w14p {
  width: 14% !important;
}

.w15p {
  width: 15% !important;
}

.w16p {
  width: 16% !important;
}

.w17p {
  width: 17% !important;
}

.w18p {
  width: 18% !important;
}

.w19p {
  width: 19% !important;
}

.w20p {
  width: 20% !important;
}

.w21p {
  width: 21% !important;
}

.w22p {
  width: 22% !important;
}

.w23p {
  width: 23% !important;
}

.w24p {
  width: 24% !important;
}

.w25p {
  width: 25% !important;
}

.w26p {
  width: 26% !important;
}

.w27p {
  width: 27% !important;
}

.w28p {
  width: 28% !important;
}

.w29p {
  width: 29% !important;
}

.w30p {
  width: 30% !important;
}

.w31p {
  width: 31% !important;
}

.w32p {
  width: 32% !important;
}

.w33p {
  width: 33% !important;
}

.w34p {
  width: 34% !important;
}

.w35p {
  width: 35% !important;
}

.w36p {
  width: 36% !important;
}

.w37p {
  width: 37% !important;
}

.w38p {
  width: 38% !important;
}

.w39p {
  width: 39% !important;
}

.w40p {
  width: 40% !important;
}

.w41p {
  width: 41% !important;
}

.w42p {
  width: 42% !important;
}

.w43p {
  width: 43% !important;
}

.w44p {
  width: 44% !important;
}

.w45p {
  width: 45% !important;
}

.w46p {
  width: 46% !important;
}

.w47p {
  width: 47% !important;
}

.w48p {
  width: 48% !important;
}

.w49p {
  width: 49% !important;
}

.w50p {
  width: 50% !important;
}

.w51p {
  width: 51% !important;
}

.w52p {
  width: 52% !important;
}

.w53p {
  width: 53% !important;
}

.w54p {
  width: 54% !important;
}

.w55p {
  width: 55% !important;
}

.w56p {
  width: 56% !important;
}

.w57p {
  width: 57% !important;
}

.w58p {
  width: 58% !important;
}

.w59p {
  width: 59% !important;
}

.w60p {
  width: 60% !important;
}

.w61p {
  width: 61% !important;
}

.w62p {
  width: 62% !important;
}

.w63p {
  width: 63% !important;
}

.w64p {
  width: 64% !important;
}

.w65p {
  width: 65% !important;
}

.w66p {
  width: 66% !important;
}

.w67p {
  width: 67% !important;
}

.w68p {
  width: 68% !important;
}

.w69p {
  width: 69% !important;
}

.w70p {
  width: 70% !important;
}

.w71p {
  width: 71% !important;
}

.w72p {
  width: 72% !important;
}

.w73p {
  width: 73% !important;
}

.w74p {
  width: 74% !important;
}

.w75p {
  width: 75% !important;
}

.w76p {
  width: 76% !important;
}

.w77p {
  width: 77% !important;
}

.w78p {
  width: 78% !important;
}

.w79p {
  width: 79% !important;
}

.w80p {
  width: 80% !important;
}

.w81p {
  width: 81% !important;
}

.w82p {
  width: 82% !important;
}

.w83p {
  width: 83% !important;
}

.w84p {
  width: 84% !important;
}

.w85p {
  width: 85% !important;
}

.w86p {
  width: 86% !important;
}

.w87p {
  width: 87% !important;
}

.w88p {
  width: 88% !important;
}

.w89p {
  width: 89% !important;
}

.w90p {
  width: 90% !important;
}

.w91p {
  width: 91% !important;
}

.w92p {
  width: 92% !important;
}

.w93p {
  width: 93% !important;
}

.w94p {
  width: 94% !important;
}

.w95p {
  width: 95% !important;
}

.w96p {
  width: 96% !important;
}

.w97p {
  width: 97% !important;
}

.w98p {
  width: 98% !important;
}

.w99p {
  width: 99% !important;
}

.w100p {
  width: 100% !important;
}

.w101p {
  width: 101% !important;
}

.w102p {
  width: 102% !important;
}

.w103p {
  width: 103% !important;
}

.w104p {
  width: 104% !important;
}

.w105p {
  width: 105% !important;
}

.w106p {
  width: 106% !important;
}

.w107p {
  width: 107% !important;
}

.w108p {
  width: 108% !important;
}

.w109p {
  width: 109% !important;
}

.w110p {
  width: 110% !important;
}

.w111p {
  width: 111% !important;
}

.w112p {
  width: 112% !important;
}

.w113p {
  width: 113% !important;
}

.w114p {
  width: 114% !important;
}

.w115p {
  width: 115% !important;
}

.w116p {
  width: 116% !important;
}

.w117p {
  width: 117% !important;
}

.w118p {
  width: 118% !important;
}

.w119p {
  width: 119% !important;
}

.w120p {
  width: 120% !important;
}

@media screen and (min-width: 768px) {
  .w0p-pc {
    width: 0% !important;
  }
  .w1p-pc {
    width: 1% !important;
  }
  .w2p-pc {
    width: 2% !important;
  }
  .w3p-pc {
    width: 3% !important;
  }
  .w4p-pc {
    width: 4% !important;
  }
  .w5p-pc {
    width: 5% !important;
  }
  .w6p-pc {
    width: 6% !important;
  }
  .w7p-pc {
    width: 7% !important;
  }
  .w8p-pc {
    width: 8% !important;
  }
  .w9p-pc {
    width: 9% !important;
  }
  .w10p-pc {
    width: 10% !important;
  }
  .w11p-pc {
    width: 11% !important;
  }
  .w12p-pc {
    width: 12% !important;
  }
  .w13p-pc {
    width: 13% !important;
  }
  .w14p-pc {
    width: 14% !important;
  }
  .w15p-pc {
    width: 15% !important;
  }
  .w16p-pc {
    width: 16% !important;
  }
  .w17p-pc {
    width: 17% !important;
  }
  .w18p-pc {
    width: 18% !important;
  }
  .w19p-pc {
    width: 19% !important;
  }
  .w20p-pc {
    width: 20% !important;
  }
  .w21p-pc {
    width: 21% !important;
  }
  .w22p-pc {
    width: 22% !important;
  }
  .w23p-pc {
    width: 23% !important;
  }
  .w24p-pc {
    width: 24% !important;
  }
  .w25p-pc {
    width: 25% !important;
  }
  .w26p-pc {
    width: 26% !important;
  }
  .w27p-pc {
    width: 27% !important;
  }
  .w28p-pc {
    width: 28% !important;
  }
  .w29p-pc {
    width: 29% !important;
  }
  .w30p-pc {
    width: 30% !important;
  }
  .w31p-pc {
    width: 31% !important;
  }
  .w32p-pc {
    width: 32% !important;
  }
  .w33p-pc {
    width: 33% !important;
  }
  .w34p-pc {
    width: 34% !important;
  }
  .w35p-pc {
    width: 35% !important;
  }
  .w36p-pc {
    width: 36% !important;
  }
  .w37p-pc {
    width: 37% !important;
  }
  .w38p-pc {
    width: 38% !important;
  }
  .w39p-pc {
    width: 39% !important;
  }
  .w40p-pc {
    width: 40% !important;
  }
  .w41p-pc {
    width: 41% !important;
  }
  .w42p-pc {
    width: 42% !important;
  }
  .w43p-pc {
    width: 43% !important;
  }
  .w44p-pc {
    width: 44% !important;
  }
  .w45p-pc {
    width: 45% !important;
  }
  .w46p-pc {
    width: 46% !important;
  }
  .w47p-pc {
    width: 47% !important;
  }
  .w48p-pc {
    width: 48% !important;
  }
  .w49p-pc {
    width: 49% !important;
  }
  .w50p-pc {
    width: 50% !important;
  }
  .w51p-pc {
    width: 51% !important;
  }
  .w52p-pc {
    width: 52% !important;
  }
  .w53p-pc {
    width: 53% !important;
  }
  .w54p-pc {
    width: 54% !important;
  }
  .w55p-pc {
    width: 55% !important;
  }
  .w56p-pc {
    width: 56% !important;
  }
  .w57p-pc {
    width: 57% !important;
  }
  .w58p-pc {
    width: 58% !important;
  }
  .w59p-pc {
    width: 59% !important;
  }
  .w60p-pc {
    width: 60% !important;
  }
  .w61p-pc {
    width: 61% !important;
  }
  .w62p-pc {
    width: 62% !important;
  }
  .w63p-pc {
    width: 63% !important;
  }
  .w64p-pc {
    width: 64% !important;
  }
  .w65p-pc {
    width: 65% !important;
  }
  .w66p-pc {
    width: 66% !important;
  }
  .w67p-pc {
    width: 67% !important;
  }
  .w68p-pc {
    width: 68% !important;
  }
  .w69p-pc {
    width: 69% !important;
  }
  .w70p-pc {
    width: 70% !important;
  }
  .w71p-pc {
    width: 71% !important;
  }
  .w72p-pc {
    width: 72% !important;
  }
  .w73p-pc {
    width: 73% !important;
  }
  .w74p-pc {
    width: 74% !important;
  }
  .w75p-pc {
    width: 75% !important;
  }
  .w76p-pc {
    width: 76% !important;
  }
  .w77p-pc {
    width: 77% !important;
  }
  .w78p-pc {
    width: 78% !important;
  }
  .w79p-pc {
    width: 79% !important;
  }
  .w80p-pc {
    width: 80% !important;
  }
  .w81p-pc {
    width: 81% !important;
  }
  .w82p-pc {
    width: 82% !important;
  }
  .w83p-pc {
    width: 83% !important;
  }
  .w84p-pc {
    width: 84% !important;
  }
  .w85p-pc {
    width: 85% !important;
  }
  .w86p-pc {
    width: 86% !important;
  }
  .w87p-pc {
    width: 87% !important;
  }
  .w88p-pc {
    width: 88% !important;
  }
  .w89p-pc {
    width: 89% !important;
  }
  .w90p-pc {
    width: 90% !important;
  }
  .w91p-pc {
    width: 91% !important;
  }
  .w92p-pc {
    width: 92% !important;
  }
  .w93p-pc {
    width: 93% !important;
  }
  .w94p-pc {
    width: 94% !important;
  }
  .w95p-pc {
    width: 95% !important;
  }
  .w96p-pc {
    width: 96% !important;
  }
  .w97p-pc {
    width: 97% !important;
  }
  .w98p-pc {
    width: 98% !important;
  }
  .w99p-pc {
    width: 99% !important;
  }
  .w100p-pc {
    width: 100% !important;
  }
  .w101p-pc {
    width: 101% !important;
  }
  .w102p-pc {
    width: 102% !important;
  }
  .w103p-pc {
    width: 103% !important;
  }
  .w104p-pc {
    width: 104% !important;
  }
  .w105p-pc {
    width: 105% !important;
  }
  .w106p-pc {
    width: 106% !important;
  }
  .w107p-pc {
    width: 107% !important;
  }
  .w108p-pc {
    width: 108% !important;
  }
  .w109p-pc {
    width: 109% !important;
  }
  .w110p-pc {
    width: 110% !important;
  }
  .w111p-pc {
    width: 111% !important;
  }
  .w112p-pc {
    width: 112% !important;
  }
  .w113p-pc {
    width: 113% !important;
  }
  .w114p-pc {
    width: 114% !important;
  }
  .w115p-pc {
    width: 115% !important;
  }
  .w116p-pc {
    width: 116% !important;
  }
  .w117p-pc {
    width: 117% !important;
  }
  .w118p-pc {
    width: 118% !important;
  }
  .w119p-pc {
    width: 119% !important;
  }
  .w120p-pc {
    width: 120% !important;
  }
}
/* ----- 高さ ----- */
.h0 {
  height: 0px !important;
}

.max-h0 {
  max-height: 0px !important;
}

.h10 {
  height: 10px !important;
}

.max-h10 {
  max-height: 10px !important;
}

.h20 {
  height: 20px !important;
}

.max-h20 {
  max-height: 20px !important;
}

.h30 {
  height: 30px !important;
}

.max-h30 {
  max-height: 30px !important;
}

.h40 {
  height: 40px !important;
}

.max-h40 {
  max-height: 40px !important;
}

.h50 {
  height: 50px !important;
}

.max-h50 {
  max-height: 50px !important;
}

.h60 {
  height: 60px !important;
}

.max-h60 {
  max-height: 60px !important;
}

.h70 {
  height: 70px !important;
}

.max-h70 {
  max-height: 70px !important;
}

.h80 {
  height: 80px !important;
}

.max-h80 {
  max-height: 80px !important;
}

.h90 {
  height: 90px !important;
}

.max-h90 {
  max-height: 90px !important;
}

.h100 {
  height: 100px !important;
}

.max-h100 {
  max-height: 100px !important;
}

.h110 {
  height: 110px !important;
}

.max-h110 {
  max-height: 110px !important;
}

.h120 {
  height: 120px !important;
}

.max-h120 {
  max-height: 120px !important;
}

.h130 {
  height: 130px !important;
}

.max-h130 {
  max-height: 130px !important;
}

.h140 {
  height: 140px !important;
}

.max-h140 {
  max-height: 140px !important;
}

.h150 {
  height: 150px !important;
}

.max-h150 {
  max-height: 150px !important;
}

.h160 {
  height: 160px !important;
}

.max-h160 {
  max-height: 160px !important;
}

.h170 {
  height: 170px !important;
}

.max-h170 {
  max-height: 170px !important;
}

.h180 {
  height: 180px !important;
}

.max-h180 {
  max-height: 180px !important;
}

.h190 {
  height: 190px !important;
}

.max-h190 {
  max-height: 190px !important;
}

.h200 {
  height: 200px !important;
}

.max-h200 {
  max-height: 200px !important;
}

.h210 {
  height: 210px !important;
}

.max-h210 {
  max-height: 210px !important;
}

.h220 {
  height: 220px !important;
}

.max-h220 {
  max-height: 220px !important;
}

.h230 {
  height: 230px !important;
}

.max-h230 {
  max-height: 230px !important;
}

.h240 {
  height: 240px !important;
}

.max-h240 {
  max-height: 240px !important;
}

.h250 {
  height: 250px !important;
}

.max-h250 {
  max-height: 250px !important;
}

.h260 {
  height: 260px !important;
}

.max-h260 {
  max-height: 260px !important;
}

.h270 {
  height: 270px !important;
}

.max-h270 {
  max-height: 270px !important;
}

.h280 {
  height: 280px !important;
}

.max-h280 {
  max-height: 280px !important;
}

.h290 {
  height: 290px !important;
}

.max-h290 {
  max-height: 290px !important;
}

.h300 {
  height: 300px !important;
}

.max-h300 {
  max-height: 300px !important;
}

.h310 {
  height: 310px !important;
}

.max-h310 {
  max-height: 310px !important;
}

.h320 {
  height: 320px !important;
}

.max-h320 {
  max-height: 320px !important;
}

.h330 {
  height: 330px !important;
}

.max-h330 {
  max-height: 330px !important;
}

.h340 {
  height: 340px !important;
}

.max-h340 {
  max-height: 340px !important;
}

.h350 {
  height: 350px !important;
}

.max-h350 {
  max-height: 350px !important;
}

.h360 {
  height: 360px !important;
}

.max-h360 {
  max-height: 360px !important;
}

.h370 {
  height: 370px !important;
}

.max-h370 {
  max-height: 370px !important;
}

.h380 {
  height: 380px !important;
}

.max-h380 {
  max-height: 380px !important;
}

.h390 {
  height: 390px !important;
}

.max-h390 {
  max-height: 390px !important;
}

.h400 {
  height: 400px !important;
}

.max-h400 {
  max-height: 400px !important;
}

.h410 {
  height: 410px !important;
}

.max-h410 {
  max-height: 410px !important;
}

.h420 {
  height: 420px !important;
}

.max-h420 {
  max-height: 420px !important;
}

.h430 {
  height: 430px !important;
}

.max-h430 {
  max-height: 430px !important;
}

.h440 {
  height: 440px !important;
}

.max-h440 {
  max-height: 440px !important;
}

.h450 {
  height: 450px !important;
}

.max-h450 {
  max-height: 450px !important;
}

.h460 {
  height: 460px !important;
}

.max-h460 {
  max-height: 460px !important;
}

.h470 {
  height: 470px !important;
}

.max-h470 {
  max-height: 470px !important;
}

.h480 {
  height: 480px !important;
}

.max-h480 {
  max-height: 480px !important;
}

.h490 {
  height: 490px !important;
}

.max-h490 {
  max-height: 490px !important;
}

.h500 {
  height: 500px !important;
}

.max-h500 {
  max-height: 500px !important;
}

.h510 {
  height: 510px !important;
}

.max-h510 {
  max-height: 510px !important;
}

.h520 {
  height: 520px !important;
}

.max-h520 {
  max-height: 520px !important;
}

.h530 {
  height: 530px !important;
}

.max-h530 {
  max-height: 530px !important;
}

.h540 {
  height: 540px !important;
}

.max-h540 {
  max-height: 540px !important;
}

.h550 {
  height: 550px !important;
}

.max-h550 {
  max-height: 550px !important;
}

.h560 {
  height: 560px !important;
}

.max-h560 {
  max-height: 560px !important;
}

.h570 {
  height: 570px !important;
}

.max-h570 {
  max-height: 570px !important;
}

.h580 {
  height: 580px !important;
}

.max-h580 {
  max-height: 580px !important;
}

.h590 {
  height: 590px !important;
}

.max-h590 {
  max-height: 590px !important;
}

.h600 {
  height: 600px !important;
}

.max-h600 {
  max-height: 600px !important;
}

.h610 {
  height: 610px !important;
}

.max-h610 {
  max-height: 610px !important;
}

.h620 {
  height: 620px !important;
}

.max-h620 {
  max-height: 620px !important;
}

.h630 {
  height: 630px !important;
}

.max-h630 {
  max-height: 630px !important;
}

.h640 {
  height: 640px !important;
}

.max-h640 {
  max-height: 640px !important;
}

.h650 {
  height: 650px !important;
}

.max-h650 {
  max-height: 650px !important;
}

.h660 {
  height: 660px !important;
}

.max-h660 {
  max-height: 660px !important;
}

.h670 {
  height: 670px !important;
}

.max-h670 {
  max-height: 670px !important;
}

.h680 {
  height: 680px !important;
}

.max-h680 {
  max-height: 680px !important;
}

.h690 {
  height: 690px !important;
}

.max-h690 {
  max-height: 690px !important;
}

.h700 {
  height: 700px !important;
}

.max-h700 {
  max-height: 700px !important;
}

.h710 {
  height: 710px !important;
}

.max-h710 {
  max-height: 710px !important;
}

.h720 {
  height: 720px !important;
}

.max-h720 {
  max-height: 720px !important;
}

.h730 {
  height: 730px !important;
}

.max-h730 {
  max-height: 730px !important;
}

.h740 {
  height: 740px !important;
}

.max-h740 {
  max-height: 740px !important;
}

.h750 {
  height: 750px !important;
}

.max-h750 {
  max-height: 750px !important;
}

.h760 {
  height: 760px !important;
}

.max-h760 {
  max-height: 760px !important;
}

.h770 {
  height: 770px !important;
}

.max-h770 {
  max-height: 770px !important;
}

.h780 {
  height: 780px !important;
}

.max-h780 {
  max-height: 780px !important;
}

.h790 {
  height: 790px !important;
}

.max-h790 {
  max-height: 790px !important;
}

.h800 {
  height: 800px !important;
}

.max-h800 {
  max-height: 800px !important;
}

.h810 {
  height: 810px !important;
}

.max-h810 {
  max-height: 810px !important;
}

.h820 {
  height: 820px !important;
}

.max-h820 {
  max-height: 820px !important;
}

.h830 {
  height: 830px !important;
}

.max-h830 {
  max-height: 830px !important;
}

.h840 {
  height: 840px !important;
}

.max-h840 {
  max-height: 840px !important;
}

.h850 {
  height: 850px !important;
}

.max-h850 {
  max-height: 850px !important;
}

.h860 {
  height: 860px !important;
}

.max-h860 {
  max-height: 860px !important;
}

.h870 {
  height: 870px !important;
}

.max-h870 {
  max-height: 870px !important;
}

.h880 {
  height: 880px !important;
}

.max-h880 {
  max-height: 880px !important;
}

.h890 {
  height: 890px !important;
}

.max-h890 {
  max-height: 890px !important;
}

.h900 {
  height: 900px !important;
}

.max-h900 {
  max-height: 900px !important;
}

/* ----- 高さが横幅のxx% ----- */
.h33p:before,
.h33p > a:before {
  height: 0;
  padding-top: 33%;
}

.h66p:before,
.h66p > a:before {
  height: 0;
  padding-top: 66%;
  content: "";
  position: absolute;
  display: block;
}

.h25p:before,
.h25p > a:before {
  height: 0;
  padding-top: 25% !important;
}

.h30p:before,
.h30p > a:before {
  height: 0;
  padding-top: 30% !important;
}

.h35p:before,
.h35p > a:before {
  height: 0;
  padding-top: 35% !important;
}

.h40p:before,
.h40p > a:before {
  height: 0;
  padding-top: 40% !important;
}

.h45p:before,
.h45p > a:before {
  height: 0;
  padding-top: 45% !important;
}

.h50p:before,
.h50p > a:before {
  height: 0;
  padding-top: 50% !important;
}

.h55p:before,
.h55p > a:before {
  height: 0;
  padding-top: 55% !important;
}

.h60p:before,
.h60p > a:before {
  height: 0;
  padding-top: 60% !important;
}

.h65p:before,
.h65p > a:before {
  height: 0;
  padding-top: 65% !important;
}

.h70p:before,
.h70p > a:before {
  height: 0;
  padding-top: 70% !important;
}

.h75p:before,
.h75p > a:before {
  height: 0;
  padding-top: 75% !important;
}

.h80p:before,
.h80p > a:before {
  height: 0;
  padding-top: 80% !important;
}

.h85p:before,
.h85p > a:before {
  height: 0;
  padding-top: 85% !important;
}

.h90p:before,
.h90p > a:before {
  height: 0;
  padding-top: 90% !important;
}

.h95p:before,
.h95p > a:before {
  height: 0;
  padding-top: 95% !important;
}

.h100p:before,
.h100p > a:before {
  height: 0;
  padding-top: 100% !important;
}

.h105p:before,
.h105p > a:before {
  height: 0;
  padding-top: 105% !important;
}

.h110p:before,
.h110p > a:before {
  height: 0;
  padding-top: 110% !important;
}

.h115p:before,
.h115p > a:before {
  height: 0;
  padding-top: 115% !important;
}

.h120p:before,
.h120p > a:before {
  height: 0;
  padding-top: 120% !important;
}

.h125p:before,
.h125p > a:before {
  height: 0;
  padding-top: 125% !important;
}

.h130p:before,
.h130p > a:before {
  height: 0;
  padding-top: 130% !important;
}

.h135p:before,
.h135p > a:before {
  height: 0;
  padding-top: 135% !important;
}

.h140p:before,
.h140p > a:before {
  height: 0;
  padding-top: 140% !important;
}

.h145p:before,
.h145p > a:before {
  height: 0;
  padding-top: 145% !important;
}

.h150p:before,
.h150p > a:before {
  height: 0;
  padding-top: 150% !important;
}

.h155p:before,
.h155p > a:before {
  height: 0;
  padding-top: 155% !important;
}

.h160p:before,
.h160p > a:before {
  height: 0;
  padding-top: 160% !important;
}

.h165p:before,
.h165p > a:before {
  height: 0;
  padding-top: 165% !important;
}

.h170p:before,
.h170p > a:before {
  height: 0;
  padding-top: 170% !important;
}

.h175p:before,
.h175p > a:before {
  height: 0;
  padding-top: 175% !important;
}

.h180p:before,
.h180p > a:before {
  height: 0;
  padding-top: 180% !important;
}

.h185p:before,
.h185p > a:before {
  height: 0;
  padding-top: 185% !important;
}

.h190p:before,
.h190p > a:before {
  height: 0;
  padding-top: 190% !important;
}

.h195p:before,
.h195p > a:before {
  height: 0;
  padding-top: 195% !important;
}

.h200p:before,
.h200p > a:before {
  height: 0;
  padding-top: 200% !important;
}

@media screen and (max-width: 1023px) {
  .h25p-sp:before,
  .h25p-sp > a:before {
    height: 0;
    padding-top: 25% !important;
  }
  .h30p-sp:before,
  .h30p-sp > a:before {
    height: 0;
    padding-top: 30% !important;
  }
  .h35p-sp:before,
  .h35p-sp > a:before {
    height: 0;
    padding-top: 35% !important;
  }
  .h40p-sp:before,
  .h40p-sp > a:before {
    height: 0;
    padding-top: 40% !important;
  }
  .h45p-sp:before,
  .h45p-sp > a:before {
    height: 0;
    padding-top: 45% !important;
  }
  .h50p-sp:before,
  .h50p-sp > a:before {
    height: 0;
    padding-top: 50% !important;
  }
  .h55p-sp:before,
  .h55p-sp > a:before {
    height: 0;
    padding-top: 55% !important;
  }
  .h60p-sp:before,
  .h60p-sp > a:before {
    height: 0;
    padding-top: 60% !important;
  }
  .h65p-sp:before,
  .h65p-sp > a:before {
    height: 0;
    padding-top: 65% !important;
  }
  .h70p-sp:before,
  .h70p-sp > a:before {
    height: 0;
    padding-top: 70% !important;
  }
  .h75p-sp:before,
  .h75p-sp > a:before {
    height: 0;
    padding-top: 75% !important;
  }
  .h80p-sp:before,
  .h80p-sp > a:before {
    height: 0;
    padding-top: 80% !important;
  }
  .h85p-sp:before,
  .h85p-sp > a:before {
    height: 0;
    padding-top: 85% !important;
  }
  .h90p-sp:before,
  .h90p-sp > a:before {
    height: 0;
    padding-top: 90% !important;
  }
  .h95p-sp:before,
  .h95p-sp > a:before {
    height: 0;
    padding-top: 95% !important;
  }
  .h100p-sp:before,
  .h100p-sp > a:before {
    height: 0;
    padding-top: 100% !important;
  }
  .h105p-sp:before,
  .h105p-sp > a:before {
    height: 0;
    padding-top: 105% !important;
  }
  .h110p-sp:before,
  .h110p-sp > a:before {
    height: 0;
    padding-top: 110% !important;
  }
  .h115p-sp:before,
  .h115p-sp > a:before {
    height: 0;
    padding-top: 115% !important;
  }
  .h120p-sp:before,
  .h120p-sp > a:before {
    height: 0;
    padding-top: 120% !important;
  }
  .h125p-sp:before,
  .h125p-sp > a:before {
    height: 0;
    padding-top: 125% !important;
  }
  .h130p-sp:before,
  .h130p-sp > a:before {
    height: 0;
    padding-top: 130% !important;
  }
  .h135p-sp:before,
  .h135p-sp > a:before {
    height: 0;
    padding-top: 135% !important;
  }
  .h140p-sp:before,
  .h140p-sp > a:before {
    height: 0;
    padding-top: 140% !important;
  }
  .h145p-sp:before,
  .h145p-sp > a:before {
    height: 0;
    padding-top: 145% !important;
  }
  .h150p-sp:before,
  .h150p-sp > a:before {
    height: 0;
    padding-top: 150% !important;
  }
  .h155p-sp:before,
  .h155p-sp > a:before {
    height: 0;
    padding-top: 155% !important;
  }
  .h160p-sp:before,
  .h160p-sp > a:before {
    height: 0;
    padding-top: 160% !important;
  }
  .h165p-sp:before,
  .h165p-sp > a:before {
    height: 0;
    padding-top: 165% !important;
  }
  .h170p-sp:before,
  .h170p-sp > a:before {
    height: 0;
    padding-top: 170% !important;
  }
  .h175p-sp:before,
  .h175p-sp > a:before {
    height: 0;
    padding-top: 175% !important;
  }
  .h180p-sp:before,
  .h180p-sp > a:before {
    height: 0;
    padding-top: 180% !important;
  }
  .h185p-sp:before,
  .h185p-sp > a:before {
    height: 0;
    padding-top: 185% !important;
  }
  .h190p-sp:before,
  .h190p-sp > a:before {
    height: 0;
    padding-top: 190% !important;
  }
  .h195p-sp:before,
  .h195p-sp > a:before {
    height: 0;
    padding-top: 195% !important;
  }
  .h200p-sp:before,
  .h200p-sp > a:before {
    height: 0;
    padding-top: 200% !important;
  }
}
/* ----- 上余白 ----- */
.mt {
  margin-top: 40px !important;
}

.pt {
  padding-top: 20px !important;
}

.pt0 {
  padding-top: 0px !important;
}

@media screen and (max-width: 767px) {
  .mt {
    margin-top: 20px !important;
  }
  .pt {
    padding-top: 10px !important;
  }
}
.mt0 {
  margin-top: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.pt100 {
  padding-top: 100px !important;
}

@media screen and (min-width: 768px) {
  .mt0-pc {
    margin-top: 0px !important;
  }
  .pt0-pc {
    padding-top: 0px !important;
  }
  .mt10-pc {
    margin-top: 10px !important;
  }
  .pt10-pc {
    padding-top: 10px !important;
  }
  .mt20-pc {
    margin-top: 20px !important;
  }
  .pt20-pc {
    padding-top: 20px !important;
  }
  .mt30-pc {
    margin-top: 30px !important;
  }
  .pt30-pc {
    padding-top: 30px !important;
  }
  .mt40-pc {
    margin-top: 40px !important;
  }
  .pt40-pc {
    padding-top: 40px !important;
  }
  .mt50-pc {
    margin-top: 50px !important;
  }
  .pt50-pc {
    padding-top: 50px !important;
  }
  .mt60-pc {
    margin-top: 60px !important;
  }
  .pt60-pc {
    padding-top: 60px !important;
  }
  .mt70-pc {
    margin-top: 70px !important;
  }
  .pt70-pc {
    padding-top: 70px !important;
  }
  .mt80-pc {
    margin-top: 80px !important;
  }
  .pt80-pc {
    padding-top: 80px !important;
  }
  .mt90-pc {
    margin-top: 90px !important;
  }
  .pt90-pc {
    padding-top: 90px !important;
  }
  .mt100-pc {
    margin-top: 100px !important;
  }
  .pt100-pc {
    padding-top: 100px !important;
  }
}
@media screen and (max-width: 767px) {
  .mt0-sp {
    margin-top: 0px !important;
  }
  .pt0-sp {
    padding-top: 0px !important;
  }
  .mt10-sp {
    margin-top: 10px !important;
  }
  .pt10-sp {
    padding-top: 10px !important;
  }
  .mt20-sp {
    margin-top: 20px !important;
  }
  .pt20-sp {
    padding-top: 20px !important;
  }
  .mt30-sp {
    margin-top: 30px !important;
  }
  .pt30-sp {
    padding-top: 30px !important;
  }
  .mt40-sp {
    margin-top: 40px !important;
  }
  .pt40-sp {
    padding-top: 40px !important;
  }
  .mt50-sp {
    margin-top: 50px !important;
  }
  .pt50-sp {
    padding-top: 50px !important;
  }
  .mt60-sp {
    margin-top: 60px !important;
  }
  .pt60-sp {
    padding-top: 60px !important;
  }
  .mt70-sp {
    margin-top: 70px !important;
  }
  .pt70-sp {
    padding-top: 70px !important;
  }
  .mt80-sp {
    margin-top: 80px !important;
  }
  .pt80-sp {
    padding-top: 80px !important;
  }
  .mt90-sp {
    margin-top: 90px !important;
  }
  .pt90-sp {
    padding-top: 90px !important;
  }
  .mt100-sp {
    margin-top: 100px !important;
  }
  .pt100-sp {
    padding-top: 100px !important;
  }
}
/* ----- 下余白 ----- */
.mb {
  margin-bottom: 40px !important;
}

.pb {
  padding-bottom: 20px !important;
}

@media screen and (max-width: 767px) {
  .mb {
    margin-bottom: 20px !important;
  }
  .pb {
    padding-bottom: 10px !important;
  }
}
.mb0 {
  margin-bottom: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

@media screen and (min-width: 768px) {
  .mb0-pc {
    margin-bottom: 0px !important;
  }
  .pb0-pc {
    padding-bottom: 0px !important;
  }
  .mb10-pc {
    margin-bottom: 10px !important;
  }
  .pb10-pc {
    padding-bottom: 10px !important;
  }
  .mb20-pc {
    margin-bottom: 20px !important;
  }
  .pb20-pc {
    padding-bottom: 20px !important;
  }
  .mb30-pc {
    margin-bottom: 30px !important;
  }
  .pb30-pc {
    padding-bottom: 30px !important;
  }
  .mb40-pc {
    margin-bottom: 40px !important;
  }
  .pb40-pc {
    padding-bottom: 40px !important;
  }
  .mb50-pc {
    margin-bottom: 50px !important;
  }
  .pb50-pc {
    padding-bottom: 50px !important;
  }
  .mb60-pc {
    margin-bottom: 60px !important;
  }
  .pb60-pc {
    padding-bottom: 60px !important;
  }
  .mb70-pc {
    margin-bottom: 70px !important;
  }
  .pb70-pc {
    padding-bottom: 70px !important;
  }
  .mb80-pc {
    margin-bottom: 80px !important;
  }
  .pb80-pc {
    padding-bottom: 80px !important;
  }
  .mb90-pc {
    margin-bottom: 90px !important;
  }
  .pb90-pc {
    padding-bottom: 90px !important;
  }
  .mb100-pc {
    margin-bottom: 100px !important;
  }
  .pb100-pc {
    padding-bottom: 100px !important;
  }
}
@media screen and (max-width: 767px) {
  .mb0-sp {
    margin-bottom: 0px !important;
  }
  .pb0-sp {
    padding-bottom: 0px !important;
  }
  .mb10-sp {
    margin-bottom: 10px !important;
  }
  .pb10-sp {
    padding-bottom: 10px !important;
  }
  .mb20-sp {
    margin-bottom: 20px !important;
  }
  .pb20-sp {
    padding-bottom: 20px !important;
  }
  .mb30-sp {
    margin-bottom: 30px !important;
  }
  .pb30-sp {
    padding-bottom: 30px !important;
  }
  .mb40-sp {
    margin-bottom: 40px !important;
  }
  .pb40-sp {
    padding-bottom: 40px !important;
  }
  .mb50-sp {
    margin-bottom: 50px !important;
  }
  .pb50-sp {
    padding-bottom: 50px !important;
  }
  .mb60-sp {
    margin-bottom: 60px !important;
  }
  .pb60-sp {
    padding-bottom: 60px !important;
  }
  .mb70-sp {
    margin-bottom: 70px !important;
  }
  .pb70-sp {
    padding-bottom: 70px !important;
  }
  .mb80-sp {
    margin-bottom: 80px !important;
  }
  .pb80-sp {
    padding-bottom: 80px !important;
  }
  .mb90-sp {
    margin-bottom: 90px !important;
  }
  .pb90-sp {
    padding-bottom: 90px !important;
  }
  .mb100-sp {
    margin-bottom: 100px !important;
  }
  .pb100-sp {
    padding-bottom: 100px !important;
  }
}
/* ----- 左余白 ----- */
.ml0 {
  margin-left: 0px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.ml85 {
  margin-left: 85px !important;
}

.ml90 {
  margin-left: 90px !important;
}

.ml95 {
  margin-left: 95px !important;
}

.ml100 {
  margin-left: 100px !important;
}

/* ----- 左右margin:auto ----- */
.margin-side-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

@media screen and (min-width: 768px) {
  .margin-side-auto-pc {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media screen and (max-width: 767px) {
  .margin-side-auto-sp {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
/* ----- 左右余白なし ----- */
.no-padding-side {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media screen and (min-width: 768px) {
  .no-padding-side-sp {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
/* ----- 文字色 ----- */
.txt-white * {
  color: #fff !important;
}

.f-color-sky {
  color: #259DE0 !important;
}

.f-color-green {
  color: #91bd54 !important;
}

.f-color-purple {
  color: #9580B7 !important;
}

.f-color-tarquoise {
  color: #18B8AC !important;
}

.f-color-orange {
  color: #FF6633 !important;
}

/* ----- 背景色 ----- */
.bg-paleblue2 {
  background-color: #D9F3FF !important;
}

.bg-palegreen1 {
  background-color: #e7f8df !important;
}

/*---------------------------------------------
	[CL] カラム
  ---------------------------------------------*/
.col-set {
  display: flex;
  width: calc(100% + 2vw);
  flex-wrap: wrap;
}

.no-gutter {
  width: 100%;
}

.row .no-gutter {
  margin-bottom: 20px;
}

.col1-2 {
  width: calc(50% - 2vw);
}

.col1-3 {
  width: calc(33.33333333% - 2vw);
}

.col2-3 {
  width: calc(66.66666666% - 2vw);
}

.col1-4 {
  width: calc(25% - 2vw);
}

.col3-4 {
  width: calc(75% - 2vw);
}

.col1-5 {
  width: calc(20% - 2vw);
}

.col1-6 {
  width: calc(16.66666666% - 2vw);
}

.no-gutter > .col1-2 {
  width: 50%;
}
.no-gutter > .col1-3 {
  width: 33.33333333%;
}
.no-gutter > .col2-3 {
  width: 66.66666666%;
}
.no-gutter > .col1-4 {
  width: 25%;
}
.no-gutter > .col3-4 {
  width: 75%;
}
.no-gutter > .col1-5 {
  width: 20%;
}
.no-gutter > .col1-6 {
  width: 16.66666666%;
}

.col1-2,
.col1-3,
.col2-3,
.col1-4,
.col3-4,
.col1-5,
.col1-6 {
  margin-right: 2vw;
}

.no-gutter > .col1-2,
.no-gutter > .col1-3,
.no-gutter > .col2-3,
.no-gutter > .col1-4,
.no-gutter > .col3-4,
.no-gutter > .col1-5,
.no-gutter > .col1-6 {
  margin-right: 0;
}

.txt-white h2:not([class*=heading]):after,
.txt-white h3:not([class*=heading]):after,
.txt-white h4:not([class*=heading]):after,
.txt-white .heading1:after,
.txt-white .heading2:after,
.txt-white .heading3:after,
.txt-white ul li:before {
  background-color: #fff;
}
.txt-white h3:not([class*=heading]) {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

/*---------------------------------------------
	[TX] テキスト
  ---------------------------------------------*/
p.p,
.mod p {
  margin-bottom: 1.7em;
  font-size: 1.5rem;
  text-align: left;
}

b,
strong,
em {
  font-weight: bold;
}

.em {
  color: #259DE0;
}

.caution {
  color: #f2646e !important;
}

.copy {
  color: #000;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.6;
}

/* ----- 注記 ----- */
.note:not(ul.note),
ul.note li {
  position: relative;
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 0.5em;
  z-index: 100;
}

ul.note_fsizenormal li {
  font-size: 1.4rem;
}

.note-num {
  position: relative;
  margin-bottom: 1em;
}

.note + .note {
  margin-top: 1em;
}

.note-num {
  margin: 0.4em 0 0;
  line-height: 1.4;
}

.note-num:before {
  content: "※" attr(data-num);
  width: initial;
  margin-right: 1em;
}

/* ----- 省略 ----- */
.txt-ellipsis {
  overflow: hidden;
}
.txt-ellipsis:not([data-line]), .txt-ellipsis[data-line="1"] {
  white-space: nowrap;
  text-overflow: ellipsis;
}
.txt-ellipsis[data-line]:not([data-line="1"]) {
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.txt-ellipsis[data-line="2"] {
  height: 3.6em;
  -webkit-line-clamp: 2;
}
.txt-ellipsis[data-line="3"] {
  height: 5.4em;
  -webkit-line-clamp: 3;
}
.txt-ellipsis[data-line="4"] {
  height: 7.2em;
  -webkit-line-clamp: 4;
}
.txt-ellipsis[data-line="5"] {
  height: 9em;
  -webkit-line-clamp: 5;
}
[class*=panel] .txt-ellipsis[data-line="2"] {
  height: 3.2em;
}
[class*=panel] .txt-ellipsis[data-line="3"] {
  height: 4.8em;
}
[class*=panel] .txt-ellipsis[data-line="4"] {
  height: 6.4em;
}
[class*=panel] .txt-ellipsis[data-line="5"] {
  height: 8em;
}

/*---------------------------------------------
	[HR] 区切り線
  ---------------------------------------------*/
hr {
  clear: both;
  margin-bottom: 20px;
  color: #fff;
  background: none transparent;
  border-top: 0px none transparent;
  border-right: 0px none transparent;
  border-left: 0px none transparent;
  border-bottom: 1px solid #e5ebf0;
}

/*---------------------------------------------
	[IG] 画像
  ---------------------------------------------*/
.img {
  margin-bottom: 5px;
  text-align: center;
  display: block;
}
.img > a {
  position: relative;
  display: inline-block;
  max-width: 100%;
  vertical-align: top;
  overflow: hidden;
}

.img .modal-video:before,
.modal-video .img:before {
  content: "";
  position: absolute;
  z-index: 1;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  /* width: 64px; height: 64px; background-image: url(../images/icon_play.png); */
  width: 100px;
  height: 100px;
  background-image: url(../images/icon_play2.png);
  background-repeat: no-repeat;
  background-size: 100%;
}

.img.full img {
  width: 100%;
}

/* ホバーエフェクト *

.img > a:after,
a .img:after

.img > a:not(.nohoverbg):after,
a:not(.nohoverbg) .img:after {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: $color-black;
	opacity: 0;
	transition: opacity .2s linear;
}

.img .modal-video:after,
.modal-video .img:after {opacity: .5 !important;}

html:not(.sp) .img > a:hover:after,
html:not(.sp) a:hover .img:after {opacity: .1;}
*/
.img > a img,
.img > a .bg-img,
a .img img,
a .img .bg-img {
  transition: transform 0.2s ease-out;
}

html:not(.sp) .img > a:hover img,
html:not(.sp) .img > a:hover .bg-img,
html:not(.sp) a:hover .img img,
html:not(.sp) a:hover .img .bg-img {
  transform: scale(1.05);
}

/* ----- [IG2] 画像 > キャプションあり ----- */
figure {
  margin-bottom: 20px;
}

.caption {
  display: block;
  margin-top: -10px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.8em;
  text-align: center;
  line-height: 1.3;
  font-weight: bold;
  color: #666;
}
.left .caption {
  margin-left: 0;
}
.right .caption {
  margin-right: 0;
}
.img .caption {
  margin-top: 10px;
}

/* ----- [IG3] 画像 > 画像＋テキスト ----- */
.img-set {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .img-set > .txt + .img,
  .img-set > .img + .txt {
    margin-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .img-set {
    flex-direction: column;
  }
  .img-set > .txt + .img,
  .img-set > .img + .txt {
    margin-top: 10px;
  }
}

/*---------------------------------------------
	[LT] リスト
  ---------------------------------------------*/
ul.list,
.mod ul:not(.nolist):not(.link-icon) {
  margin-bottom: 20px;
}
ul.list > li,
.mod ul:not(.nolist):not(.link-icon) > li {
  position: relative;
  margin-bottom: 1.0em;
  line-height: 1.3;
}
ul.list > li:last-of-type,
.mod ul:not(.nolist):not(.link-icon) > li:last-of-type {
  margin-bottom: 0;
}
ul.list > li:not(.link-icon),
.mod ul:not(.nolist):not(.link-icon) > li:not(.link-icon) {
  padding: 0 0 0 1.4em;
}
ul.list > li:not(.link-icon):before,
.mod ul:not(.nolist):not(.link-icon) > li:not(.link-icon):before {
  content: "";
  position: absolute;
  display: block;
  width: 0.8em;
  height: 0.8em;
  top: 0.4em;
  left: 0;
  margin: -2px 0 0 0.2em;
  background-color: #fff;
  border-radius: 100%;
}
ul.list.col-set,
.mod ul:not(.nolist):not(.link-icon).col-set {
  margin-bottom: 0;
}
ul.list.col-set > li,
.mod ul:not(.nolist):not(.link-icon).col-set > li {
  margin-bottom: 30px;
  padding-left: 0;
}
ul.list.col-set > li:before,
.mod ul:not(.nolist):not(.link-icon).col-set > li:before {
  display: none;
}

ul.list1 { margin:0 auto 20px auto; padding:20px 0 0 0rem; text-align:center; font-size: 2.2rem; font-feature-settings: initial; }
ul.list1 li { list-style-type: none; padding: 0 0 2px 0; margin-left:2rem; margin-bottom: 5px; }
ul.list1 li:before { content: "・"; font-size: 2.2rem; margin:0 0rem 0 -2rem; }
ul.list1 li span { border-bottom: 2px solid #c00; }

.mod ol {
  margin-bottom: 20px;
  padding: 0;
  counter-reset: item;
  list-style-type: none;
}
.mod ol > li {
  margin: 0 0 10px 0.2em;
  padding: 0 0 0 2em;
  text-indent: -2em;
}
.mod ol > li:last-of-type {
  margin-bottom: 0;
}
.mod ol > li:before {
  counter-increment: item;
  content: counter(item) ".";
  color: #115d98;
  /*padding-right: 1em;*/
  display: inline-block;
  width: 2em;
  text-indent: 0;
}
.mod ol > li * {
  text-indent: 0;
}
.mod ol > li *:first-child {
  display: inline-block;
}

.mod ul ul,
ol ol,
.mod ol ul {
  margin: 10px 0 0;
}

.list-inline li {
  display: inline-block;
}

/* ----- [LT3] リスト > 定義リスト ----- */
/* .mod */
dl {
  display: flex;
  margin-bottom: 20px;
  overflow: hidden;
  flex-wrap: wrap;
  align-items: stretch;
}
dl.border-set {
  border-bottom: solid 1px #e5ebf0;
}
dl.border-set > dt {
  border-top: solid 1px #e5ebf0;
  padding: 40px 0 40px 40px;
}
dl.border-set > dd {
  border-top: solid 1px #e5ebf0;
  padding: 40px 0 40px 30px;
}
dl dt {
  width: 200px;
  padding: 0 0 10px;
  font-weight: bold;
  color: #000;
}
dl dt.w50 ~ dt {
  width: 50px;
}
dl dt.w50 ~ dd {
  width: calc(100% - 50px);
}
dl dt.w60 ~ dt {
  width: 60px;
}
dl dt.w60 ~ dd {
  width: calc(100% - 60px);
}
dl dt.w70 ~ dt {
  width: 70px;
}
dl dt.w70 ~ dd {
  width: calc(100% - 70px);
}
dl dt.w80 ~ dt {
  width: 80px;
}
dl dt.w80 ~ dd {
  width: calc(100% - 80px);
}
dl dt.w90 ~ dt {
  width: 90px;
}
dl dt.w90 ~ dd {
  width: calc(100% - 90px);
}
dl dt.w100 ~ dt {
  width: 100px;
}
dl dt.w100 ~ dd {
  width: calc(100% - 100px);
}
dl dt.w110 ~ dt {
  width: 110px;
}
dl dt.w110 ~ dd {
  width: calc(100% - 110px);
}
dl dt.w120 ~ dt {
  width: 120px;
}
dl dt.w120 ~ dd {
  width: calc(100% - 120px);
}
dl dt.w130 ~ dt {
  width: 130px;
}
dl dt.w130 ~ dd {
  width: calc(100% - 130px);
}
dl dt.w140 ~ dt {
  width: 140px;
}
dl dt.w140 ~ dd {
  width: calc(100% - 140px);
}
dl dt.w150 ~ dt {
  width: 150px;
}
dl dt.w150 ~ dd {
  width: calc(100% - 150px);
}
dl dt.w160 ~ dt {
  width: 160px;
}
dl dt.w160 ~ dd {
  width: calc(100% - 160px);
}
dl dt.w170 ~ dt {
  width: 170px;
}
dl dt.w170 ~ dd {
  width: calc(100% - 170px);
}
dl dt.w180 ~ dt {
  width: 180px;
}
dl dt.w180 ~ dd {
  width: calc(100% - 180px);
}
dl dt.w190 ~ dt {
  width: 190px;
}
dl dt.w190 ~ dd {
  width: calc(100% - 190px);
}
dl dt.w200 ~ dt {
  width: 200px;
}
dl dt.w200 ~ dd {
  width: calc(100% - 200px);
}
dl dd {
  width: calc(100% - 200px);
  padding: 0 0 10px 30px;
}
dl:not(.border-set) dt:last-of-type, dl:not(.border-set) dd:last-of-type {
  padding-bottom: 0;
}
dl p:last-child,
dl ul:last-child,
dl ol:last-child,
dl dl:last-child {
  margin-bottom: 0;
}

dl.news > dt {
  width: 11em;
  color: #707070;
  font-weight: normal;
  padding-bottom: 20px;
}
dl.news > dd {
  width: calc(100% - 11em);
  padding-left: 0;
  padding-bottom: 20px;
}
dl.news > dd .tag {
  clear: both;
  float: left;
  height: 1.8em;
  margin: 0 20px 0 0;
  align-items: center;
}
dl.news > dd .tag a,
dl.news > dd .tag button {
  width: 10em;
  margin: 0;
  padding: 6px 10px;
  font-size: 1.2rem;
}
dl.news > dd p {
  overflow: hidden;
  margin-bottom: 10px;
}
dl.news > dd p a {
  text-decoration: none;
  color: #000;
}
dl.news > dd p a:hover {
  text-decoration: underline;
  color: #115d98;
}
dl.news > dd .link-icon:not(li) + .link-icon {
  margin-top: 0;
}
dl.news > dd p:last-child {
  margin-bottom: 0;
}
dl.news > dd .link-icon a {
  font-weight: inherit;
}
dl.news > dd .link-icon a:not(:hover) {
  /*color: $color-txt;*/
}

/*---------------------------------------------
	[LK1] アイコンリンク
  ---------------------------------------------*/
.link-icon:not(li) + .link-icon {
  margin-top: -10px;
}

.link-icon[class*=col] + .link-icon {
  margin-top: 0;
}

.link-icon a,
a .link-icon {
  position: relative;
  display: inline-block;
  text-decoration: none;
  margin: 0 0.4em;
  font-weight: bold;
}

a .link-icon {
  display: block;
}

.link-icon a:after,
a .link-icon:after {
  content: "\f0a9";
  font-family: "FontAwesome";
  font-weight: normal;
  display: inline-block;
  margin: -2px 0 0 0.4em;
  vertical-align: middle;
}

.page-link-icon {
  text-decoration: none;
}

.page-link-icon:after {
  content: "\f0ab";
  font-family: "FontAwesome";
  font-weight: normal;
  display: inline-block;
  margin: -2px 0 0 0.4em;
  vertical-align: middle;
}

.link-icon a:not([class*=icon-]):after,
a .link-icon:not([class*=icon-]):after {
  transition: transform 0.2s linear;
}

html:not(.sp) .link-icon a:not([class*=icon-]):hover:after,
html:not(.sp) a:hover .link-icon:not([class*=icon-]):after {
  transform: translate3d(2px, 0, 0);
}

[class*=icon-]:after {
  display: inline-block;
  margin: -0.1em 0 0 0.1em;
  vertical-align: middle;
  content: "";
  width: 1.3em;
  height: 1.3em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.icon-ext {
  color: #222;
}
.icon-ext:after {
  background-image: url(../images/icon_newwin.svg);
  width: 12px;
  vertical-align: top;
  margin-left: 0.3em;
}

a.icon-ext:hover {
  text-decoration: underline;
}

.icon-window:after {
  background-image: url(../images/icon_newwin_blue.svg);
}

.icon-download:after {
  content: "\f0ed";
}

.icon-pdf:after {
  content: "\f15c";
}

.icon-enlarge:after {
  content: "\f002";
}

.icon-search:after {
  content: "\f002";
}

.icon-contact:after {
  content: "\f0e0";
}

.icon-play:after {
  content: "\f04b";
}

.icon-store:after {
  content: "\f07a";
}

.icon-anchor a:after {
  transform: rotate(90deg);
  transition: transform 0.2s linear;
}

html:not(.sp) .link-icon .icon-anchor:hover:after,
html:not(.sp) a:hover .link-icon.icon-anchor a:after {
  transform: translate3d(0, 3px, 0) rotate(90deg);
}

li.link-icon {
  padding-left: 0;
}

li.link-icon:before {
  display: none;
}

.icon-head a,
a .icon-head {
  position: relative;
  padding-left: 1.5em;
}

.icon-head a:after,
a .icon-head:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
}

/*
[class*="icon-"]:after { font-family:'FontAwesome'; font-weight:normal; line-height:1.3;
	display: inline-block; margin: -2px 0 0 .3em; vertical-align:middle; }
.icon-window:after { content:'\f24d'; }
.icon-time:after { content:'\f017'; font-size:1.2em; }

.icon-head:before {
	font-family:'FontAwesome'; font-weight:normal; line-height:1.3;
	display: inline-block; margin: -2px 0 0 .3em; vertical-align:middle;
	}
*/
/*---------------------------------------------
	[LK2] 横並びリンク
  ---------------------------------------------*/
.mod p.link-horizontal,
p.link-horizontal,
.link-horizontal {
  display: flex;
  margin-bottom: 10px;
  line-height: 1.6;
  flex-wrap: wrap;
}
.mod p.link-horizontal a,
p.link-horizontal a,
.link-horizontal a {
  position: relative;
  margin: 0 30px 10px 0;
  text-decoration: none;
}
html:not(.sp) .mod p.link-horizontal a:hover,
html:not(.sp) p.link-horizontal a:hover,
html:not(.sp) .link-horizontal a:hover {
  text-decoration: underline;
}
.mod p.link-horizontal a:last-child,
p.link-horizontal a:last-child,
.link-horizontal a:last-child {
  margin-right: 15px;
}
.mod p.link-horizontal a:not(:last-child):before,
p.link-horizontal a:not(:last-child):before,
.link-horizontal a:not(:last-child):before {
  content: "";
  position: absolute;
  display: block;
  width: 1px;
  height: 1em;
  top: 0.25em;
  right: -15px;
  vertical-align: top;
  background-color: rgba(0, 0, 0, 0.15);
}

.txt-white .link-horizontal a:not(:last-child):before {
  background-color: rgba(255, 255, 255, 0.2);
}

/*---------------------------------------------
	[TG] タグ／ラベル
  ---------------------------------------------*/
.tag {
  display: flex;
  flex-wrap: wrap;
}
.tag.center {
  justify-content: center;
}
.tag.right {
  justify-content: flex-end;
}

.tag {
  margin: 0 -8px 12px 0;
}
.tag button,
.tag a {
  display: block;
  margin: 0 8px 8px 0;
  padding: 8px 15px;
  font-size: 1.3rem;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  border-radius: 100px;
}

.label {
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
  vertical-align: text-bottom;
  display: inline-block;
  padding: 2px 6px;
  border-radius: 10px;
}

.label-inline {
  display: inline-block;
  margin: 0 10px;
  padding: 4px 6px 3px;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  vertical-align: middle;
}

.tag a,
.label span,
.label-inline {
  color: #fff !important;
  background-color: #115d98;
}

.tag a.bg-white,
.tag a.bg-light,
.tag a.bg-gray,
.label span.bg-white,
.label span.bg-light,
.label span.bg-gray,
.label-inline.bg-white,
.label-inline.bg-light,
.label-inline.bg-gray {
  color: #222 !important;
}

.tag a {
  transition: opacity 0.2s linear;
}
html:not(.sp) .tag a:hover {
  opacity: 0.8;
}

/*---------------------------------------------
	[TB] 表
  ---------------------------------------------*/
.mod table,
table.tbl {
  width: 100%;
  margin-bottom: 30px;
  border-spacing: 0;
}
.mod table td,
table.tbl td {
  padding: 15px;
  border: solid 1px #e5ebf0;
}
.mod table th,
table.tbl th {
  padding: 15px;
  color: #000;
  font-weight: bold;
  background-color: #f8f8f8;
  border: solid 1px #e5ebf0;
}
.mod table th.th2, .mod table th + th,
table.tbl th.th2,
table.tbl th + th {
  background-color: #fafafa;
}
.mod table thead th,
table.tbl thead th {
  color: #000;
  background-color: #f8f8f8;
  /* border: solid 1px $color-gray * .92; */
}
.mod table td p:last-child,
.mod table td ul:last-child,
.mod table td ol:last-child,
.mod table td dl:last-child,
table.tbl td p:last-child,
table.tbl td ul:last-child,
table.tbl td ol:last-child,
table.tbl td dl:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .tbl-res {
    width: 100%;
  }
  .tbl-res .last td:last-child {
    border-bottom: solid 1px #e5ebf0;
    width: 100%;
  }
  .tbl-res th,
  .tbl-res td {
    border-bottom: none;
    display: block;
    width: 100%;
  }
}
/*---------------------------------------------
	[BL1] バルーン
  ---------------------------------------------*/
.balloon1 {
  position: relative;
  display: inline-block;
  margin: 15px 0;
  padding: 7px 10px;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 5px;
}

.balloon1:before {
  content: "";
  position: absolute;
}

.balloon1-top:before {
  top: -20px;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-bottom: 10px solid rgba(255, 255, 255, 0.7);
}

.balloon1-bottom:before {
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid rgba(255, 255, 255, 0.7);
}

.balloon1-left:before {
  top: 50%;
  left: -20px;
  margin-top: -10px;
  border: 10px solid transparent;
  border-right: 10px solid rgba(255, 255, 255, 0.7);
}

.balloon1-right:before {
  top: 50%;
  left: 100%;
  margin-top: -10px;
  border: 10px solid transparent;
  border-left: 10px solid rgba(255, 255, 255, 0.7);
}

/*---------------------------------------------
	[SL] スライダー
  ---------------------------------------------*/
.slider {
  position: relative;
  margin-bottom: 30px;
}
.slider-container {
  width: 100%;
  overflow: hidden;
}
.slider .panel-vertical,
.slider .panel-covered {
  margin-bottom: 0;
}

/*---------------------------------------------
	[SC] スクロールエフェクト
  ---------------------------------------------*/
/* ----- [SC1] フェードイン ----- */
.fadein {
  opacity: 0;
  transform: translate3d(0, 50px, 0);
}

/* ----- [SC2] スライドイン ----- */
.slidein {
  visibility: hidden;
}
.slidein-bg {
  position: absolute;
  z-index: 1000;
  display: block;
  overflow: hidden;
}
.slidein-bg span {
  position: absolute;
  display: block;
  width: 120%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #434c4d;
  transform: translate3d(-100%, 0, 0);
}

/* 水平スクロールバー */
.scroll:not(button) {
  margin: 0 0 15px;
  overflow-x: auto;
}
.scroll:not(button)::-webkit-scrollbar {
  height: 5px;
}
.scroll:not(button)::-webkit-scrollbar-track {
  background: #f0f0f0;
  -webkit-border-radius: 100px;
}
.scroll:not(button)::-webkit-scrollbar-thumb {
  background: #115d98;
  -webkit-border-radius: 100px;
}
.scroll:not(button) > * {
  /*min-width: 738px;*/
  margin-bottom: 5px;
}

/*---------------------------------------------
	1200px未満
  ---------------------------------------------*/
@media screen and (max-width: 1299px), print {
  /* ----- 基本フォントサイズ ----- */
  body {
    font-size: 1.5rem;
  }
  /* ----- [CL] カラム ----- */
  .col-set {
    width: calc(100% + 1.5vw);
  }
  .no-gutter {
    width: 100%;
  }
  .col1-2 {
    width: calc(50% - 1.5vw);
  }
  .col1-3 {
    width: calc(33.33333333% - 1.5vw);
  }
  .col2-3 {
    width: calc(66.66666666% - 1.5vw);
  }
  .col1-4 {
    width: calc(25% - 1.5vw);
  }
  .col3-4 {
    width: calc(75% - 1.5vw);
  }
  .col1-5 {
    width: calc(20% - 1.5vw);
  }
  .col1-6 {
    width: calc(16.66666666% - 1.5vw);
  }
  .col1-2,
  .col1-3,
  .col2-3,
  .col1-4,
  .col3-4,
  .col1-5,
  .col1-6 {
    margin-right: 1.5vw;
  }
  /* ----- [LT] リスト ----- */
  ul.col-set li {
    margin-bottom: 20px;
  }
  /* ----- [BX] ボックス ----- *

  .box {
  	margin-bottom: 30px;
  	padding: 30px $col-space-wide 0;
  	.heading:first-child {
  		margin: -$col-space-wide -$col-space-wide $col-space-wide;
  		padding: $col-space-wide/2 $col-space-wide;
  	}
  }
  */
  /* ----- [FR] 枠 ----- */
  .frame {
    margin-bottom: 20px;
  }
  .frame .heading:first-child {
    margin: -20px -20px 20px;
  }
  /* ----- [SL] スライダー ----- */
  .slider {
    margin-bottom: 20px;
  }
}
/*---------------------------------------------
	$breakpoint-width未満
  ---------------------------------------------*/
@media screen and (max-width: 767px) {
  /* ----- 強制指定 ----- */
  /* 中央寄せ */
  .sp-center {
    text-align: center !important;
  }
  /* ----- 幅 ----- */
  .sp-w50 {
    width: 50px !important;
  }
  .sp-w60 {
    width: 60px !important;
  }
  .sp-w70 {
    width: 70px !important;
  }
  .sp-w80 {
    width: 80px !important;
  }
  .sp-w90 {
    width: 90px !important;
  }
  .sp-w100 {
    width: 100px !important;
  }
  .sp-w110 {
    width: 110px !important;
  }
  .sp-w120 {
    width: 120px !important;
  }
  .sp-w130 {
    width: 130px !important;
  }
  .sp-w140 {
    width: 140px !important;
  }
  .sp-w150 {
    width: 150px !important;
  }
  .sp-w160 {
    width: 160px !important;
  }
  .sp-w170 {
    width: 170px !important;
  }
  .sp-w180 {
    width: 180px !important;
  }
  .sp-w190 {
    width: 190px !important;
  }
  .sp-w200 {
    width: 200px !important;
  }
  /* ----- 上余白 ----- */
  .sp-mt0 {
    margin-top: 0px !important;
  }
  .sp-mt10 {
    margin-top: 10px !important;
  }
  .sp-mt20 {
    margin-top: 20px !important;
  }
  .sp-mt30 {
    margin-top: 30px !important;
  }
  .sp-mt40 {
    margin-top: 40px !important;
  }
  .sp-mt50 {
    margin-top: 50px !important;
  }
  .sp-mt60 {
    margin-top: 60px !important;
  }
  .sp-mt70 {
    margin-top: 70px !important;
  }
  .sp-mt80 {
    margin-top: 80px !important;
  }
  .sp-mt90 {
    margin-top: 90px !important;
  }
  .sp-mt100 {
    margin-top: 100px !important;
  }
  /* ----- 下余白 ----- */
  .sp-mb0 {
    margin-bottom: 0px !important;
  }
  .sp-mb10 {
    margin-bottom: 10px !important;
  }
  .sp-mb20 {
    margin-bottom: 20px !important;
  }
  .sp-mb30 {
    margin-bottom: 30px !important;
  }
  .sp-mb40 {
    margin-bottom: 40px !important;
  }
  .sp-mb50 {
    margin-bottom: 50px !important;
  }
  .sp-mb60 {
    margin-bottom: 60px !important;
  }
  .sp-mb70 {
    margin-bottom: 70px !important;
  }
  .sp-mb80 {
    margin-bottom: 80px !important;
  }
  .sp-mb90 {
    margin-bottom: 90px !important;
  }
  .sp-mb100 {
    margin-bottom: 100px !important;
  }
  /* 表示／非表示 */
  .show-pc {
    display: none !important;
  }
  /* 文字サイズ */
  .sp-l {
    font-size: 1.7rem !important;
  }
  .sp-m {
    font-size: 1.4rem !important;
  }
  .sp-s {
    font-size: 1.2rem !important;
  }
  /* ----- [CL] カラム ----- */
  .col-set {
    width: calc(100% + 15px);
  }
  .no-gutter {
    width: 100%;
  }
  .row .no-gutter {
    margin-bottom: 15px;
  }
  .col1-2,
  .col1-3,
  .col2-3,
  .col1-4,
  .col3-4,
  .col1-5,
  .col1-6 {
    width: calc(100% - 15px);
    margin-right: 15px;
  }
  .no-gutter > .col1-2,
  .no-gutter > .col1-3,
  .no-gutter > .col2-3,
  .no-gutter > .col1-4,
  .no-gutter > .col3-4,
  .no-gutter > .col1-5,
  .no-gutter > .col1-6 {
    width: 100%;
  }
  .sp-col1-2 {
    width: calc(50% - 15px);
  }
  .no-gutter > .sp-col1-2 {
    width: 50%;
  }
  .sp-col1-3 {
    width: calc(33.33333333% - 15px);
  }
  .no-gutter > .sp-col1-3 {
    width: 33.33333333%;
  }
  .sp-col1-4 {
    width: calc(25% - 15px);
  }
  .no-gutter > .sp-col1-4 {
    width: 25%;
  }
  /* ----- [TX] テキスト ----- */
  .mod p {
    margin-bottom: 15px;
  }
  .copy {
    font-size: 2.1rem;
  }
  /*
  .note + .note,
  .note-num + .note-num {
  	margin-top: -10px;
  }
  */
  /* ----- [HR]  区切り線 ----- */
  hr {
    margin-bottom: 15px;
  }
  /* ----- [IG] 画像 ----- */
  .img {
    margin-bottom: 10px;
  }
  figure {
    margin-bottom: 80px;
  }
  .caption {
    margin-top: -5px;
  }
  .right .caption {
    margin-right: auto;
  }
  /*
  .img-set:not(.img-set-sp) .img {
  	&,
  	&.right {
  		float: none;
  		width: auto;
  		max-width:100%; //max-width: none;
  		text-align: center;
  		margin-left:0;
  	}
  	& {
  		margin-right: 0;
  		padding-right: 0;
  	}
  	&.left { text-align:left; }
  	&.right { text-align:right;
  		//margin-left: 0;
  		//padding-left: 0;
  	}
  }
  */
  .thumb-set .img {
    margin-right: 3.75px;
    padding-right: 3.75px;
  }
  .thumb-set .img.right {
    margin-right: 0;
    padding-right: 0;
    margin-left: 3.75px;
    padding-left: 3.75px;
  }
  /* ----- [LT] リスト ----- */
  .mod ul {
    margin-bottom: 15px;
  }
  .mod ul.col-set li {
    margin-bottom: 15px;
  }
  ol {
    margin-bottom: 15px;
  }
  /* .mod dl { */
  dl {
    display: block;
    margin-bottom: 15px;
  }
  dl dt {
    width: auto !important;
    padding-bottom: 5px !important;
  }
  dl dd {
    width: auto !important;
    padding: 0 0 15px;
  }
  dl.border-set {
    border-bottom: 0 none;
    border-top: solid 1px #e5ebf0;
  }
  dl.border-set > dt {
    padding: 15px 0 5px;
    border-top: 0 none;
  }
  dl.border-set > dd {
    width: auto;
    padding: 0 0 15px;
    border-top: 0 none;
    border-bottom: solid 1px #e5ebf0;
  }
  /* ----- [LK1] アイコンリンク ----- */
  .link-icon:not(li) + .link-icon {
    margin-top: -5px;
  }
  .link-icon[class*=col] + .link-icon {
    margin-top: 0;
  }
  /* ----- [LK2] 横並びリンク ----- */
  .mod p.link-horizontal,
  p.link-horizontal,
  .link-horizontal {
    margin-bottom: 5px;
  }
  /* ----- [BX] ボックス ----- */
  .box {
    margin-bottom: 15px;
    padding: 15px;
  }
  .box .heading:first-child {
    margin: -15px -15px 15px;
    padding: 12px 15px;
  }
  /* ----- [FR]  枠 ----- */
  .frame {
    margin-bottom: 15px;
    padding: 15px;
  }
  .frame .heading:first-child {
    margin: -15px -15px 15px;
  }
  /* ----- [TB] 表 ----- */
  .mod table {
    margin-bottom: 15px;
  }
  /* ----- [SL] スライダー ----- */
  .slider {
    margin-bottom: 15px;
  }
  .row .slider {
    margin-left: -2vw;
    margin-right: -2vw;
  }
}
/*---------------------------------------------
	480px未満
  ---------------------------------------------*/
/*---------------------------------------------
	印刷用
  ---------------------------------------------*/
@media print {
  * {
    -webkit-print-color-adjust: exact;
  }
  body {
    width: 1024px;
    background-color: #fff;
  }
  .slick-track {
    width: 50000px !important;
    transform: translate3d(0, 0, 0) !important;
  }
  .slider .col1-2 {
    width: 482px !important;
  }
  .slider .col1-3 {
    width: 314.66666666px !important;
  }
  .slider .col1-4 {
    width: 231px !important;
  }
  .slider .col1-5 {
    width: 180.8px !important;
  }
  .slider .col1-6 {
    width: 147.33333333px !important;
  }
  .slick-list {
    padding: 0 !important;
  }
  .slick-arrow {
    display: none !important;
  }
  .slick-dots {
    display: none !important;
  }
  /* エフェクトを印刷対応するための記述 */
  .fadein {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .slidein {
    visibility: visible;
  }
  .slidein-bg {
    display: none;
  }
}