/* @charaset "UTF-8"; */
/* Author: FUMIHIKO OKAMURA / Seiren Graphico
/* my design parts library */

/* AddQuickTag に追加して便利にする */

/* B */

/* -------------------------------- */
/* BackGround style */
/* -------------------------------- */

/* BackGround color 背景色のみの指定
	 ========================================================================== */

.bggrey {
  background-color: #cecece;
}

.bglight-grey {
  background-color: #f8f8f8;
}

.bgblack {
  background-color: #181818;
}

.bgred {
  background-color: #213f99;
}

.bgwhite {
  background-color: rgba(255, 255, 255, 0.8);
}

/* Balloon Style (吹き出し)
========================================================================== */
.balloon-think {
  position: relative;
  margin: 2em 0 2em 40px;
  padding: 15px;
  background: #fff0c6;
  border-radius: 30px;
}

.balloon-think:before {
  content: "";
  position: absolute;
  left: -38px;
  width: 13px;
  height: 12px;
  bottom: 0;
  background: #fff0c6;
  border-radius: 50%;
}

.balloon-think:after {
  content: "";
  position: absolute;
  left: -24px;
  width: 20px;
  height: 18px;
  bottom: 3px;
  background: #fff0c6;
  border-radius: 50%;
}
.balloon-think p {
  margin: 0;
  padding: 0;
}

/* -------------------------------- */
/* Box style コンテンツを囲む背景など
/* -------------------------------- */

/* Box style
	 ========================================================================== */

.line-h {
  line-height: 1.8;
}

.box-bl {
  margin: 5px 0;
  padding: 4px 6px 4px 6px;
  border-radius: 5px;
  line-height: 2em;
  font-size: 1em;
  color: rgb(255, 255, 255);
  background: rgba(22, 180, 253, 0.8);
}

.mini-box-bl {
  margin: 5px 0;
  padding: 4px 6px 4px 6px;
  border-radius: 5px;
  line-height: 2em;
  color: rgb(255, 255, 255);
  background: rgba(22, 180, 253, 0.8);
}

.mini-box-pink {
  margin: 5px 0;
  padding: 4px 6px 4px 6px;
  border-radius: 5px;
  /* line-height: 2em; */
  color: rgb(255, 255, 255);
  /* border-bottom: 2px solid rgba(247, 74, 232, 0.9); */
  background: rgba(253, 135, 243, 0.8);
}

.mini-box-red {
  margin: 3px 0;
  padding: 4px 6px 4px 6px;
  border-radius: 5px;
  line-height: 2em;
  color: rgb(255, 255, 255);
  /* border-bottom: 2px solid rgba(247, 74, 232, 0.9); */
  background: rgba(247, 24, 61, 0.8);
}

/* 上下辺にラインのボックス リスト
	 ========================================================================== */

.tbline-box-red {
  border-top: solid 4px #213f99;
  border-bottom: solid 4px #213f99;
  background: rgba(255, 255, 255, 1);
  width: auto;
}

/* Button Style
	 ========================================================================== */

.button {
  display: inline-block;
  font-weight: 700;
  text-align: center;
}

.button-medium {
  display: block;
  margin: 0 auto;
  padding: 10px;
  border-radius: 36px;
  font-size: 1rem;
  max-width: 180px;
}

.button-large {
  display: block;
  margin: 0 auto;
  padding: 12px;
  border-radius: 36px;
  font-size: 1.2rem;
  max-width: 320px;
}

.button-x-large {
  display: block;
  margin: 0 auto;
  padding: 12px;
  border-radius: 36px;
  font-size: 1.2rem;
  max-width: 420px;
}

.button-red,
.button-blue {
  border: 1px solid;
  color: #fff;
}

.button-red {
  background: #213f99;
  border-color: #213f99;
  transition: 0.4s;
}

.button-red a {
  text-decoration: none;
}

.button-red:hover {
  background-color: #db767c;
  border-color: #213f99;
  text-decoration: none;
}

.button-red:visited {
  color: #fff;
  border-color: #213f99;
}

/* C */
/*--------------------------------------------------------------
>>> copy guard
----------------------------------------------------------------*/

img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

.undraggable {
  display: block;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
}

/* D */
/*--------------------------------------------------------------
>>> display
----------------------------------------------------------------*/
.d-block {
  display: block;
}

/* F */
/*--------------------------------------------------------------
>>> Filter STYLE フィルターのスタイル
----------------------------------------------------------------*/
.filter-sepia {
  filter: sepia(90%);
}

.filter-sepia-blur {
  filter: blur(10px) contrast(108%) sepia(48%);
}

/*--------------------------------------------------------------
>>> Font weight STYLE
----------------------------------------------------------------*/

.bold {
  font-weight: bold;
}

/* H */
/*--------------------------------------------------------------
>>> HEADING STYLE タイトルのスタイル
----------------------------------------------------------------*/

/* 矢印 + underline
========================================================================== */
.arrowline {
  position: relative;
  padding-left: 30px;
}

.arrowline::before {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 0;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 15px transparent;
  border-bottom: solid 15px rgb(119, 195, 223);
}
.arrowline::after {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 10px;
  width: 100%;
  border-bottom: solid 3px rgb(119, 195, 223);
}

.arrowline-red {
  position: relative;
  padding-left: 30px;
}

.arrowline-red::before {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 0;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 15px transparent;
  border-bottom: solid 15px #213f99;
}
.arrowline-red::after {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 10px;
  width: 100%;
  border-bottom: solid 4px #213f99;
}

/* under line
========================================================================== */
.under-line-ttl {
  border-bottom: 1px solid #181818;
}

.under-line-double-ttl {
  border-bottom: 1px double #181818;
}

.under-line-ttl-red {
  border-bottom: 2px solid #213f99;
  padding-left: 3px;
}

/* 左右に縦ライン style
========================================================================== */
.sayuu-line-double-ttl {
  position: relative;
  display: inline-block;
  padding: 0 55px;
}

.sayuu-line-double-ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 2px;
  border-top: solid 1px black;
  border-bottom: solid 1px black;
}

.sayuu-line-double-ttl::before {
  left: 0;
}

.sayuu-line-double-ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 2px;
  border-top: solid 1px black;
  border-bottom: solid 1px black;
}

.sayuu-line-double-ttl::after {
  right: 0;
}

/* 左側に縦ライン style
========================================================================== */

.left-line-ttl-red {
  padding: 0.25em 0.5em; /*上下 左右の余白*/
  color: #494949; /*文字色*/
  background: transparent; /*背景透明に*/
  border-left: solid 10px #213f99; /*左線*/
}

/* I */

/*--------------------------------------------------------------
>>> image 関連の指定
----------------------------------------------------------------*/

/* img Lazy 遅延読み込み
========================================================================== */
img {
  transition: filter 0.3s;
}

img.lazy {
  width: 100%;
  filter: blur(8px);
}

/* L */

/* -------------------------------- */
/* LIST style */
/* -------------------------------- */

/* 上辺にラインのボックス リスト
	 ========================================================================== */

.topline-box-list {
  padding: 0.7em 1.5em;
  margin: 1em 0;
  color: #323232;
  /* border-top: solid 4px #55a8dc; */
  border-top: solid 4px #213f99;
  background: rgba(50, 50, 50, 0.07);
  width: auto;
}
.topline-box-list ul {
  margin: 0;
  padding: 10px 20px;
}
.topline-box-list ul li {
  margin-bottom: 5px;
}

/* M */

/* -------------------------------- */
/* Margin style */
/* -------------------------------- */

/* margin remove margin 0
	 ========================================================================== */

.no-mg {
  margin: 0;
}

.nmg20 {
  margin-bottom: -20px;
}
.nmgt40 {
  margin-top: -40px;
}

.nmgt47 {
  margin-top: -47px;
}
.nmgt48 {
  margin-top: -48px;
}
.nmgt49 {
  margin-top: -49px;
}
.nmgt50 {
  margin-top: -50px;
}
.nmgt55 {
  margin-top: -55px;
}
.nmgt58 {
  margin-top: -58px;
}

.nmgt60 {
  margin-top: -60px;
}
.nmgt62 {
  margin-top: -62px;
}
.nmgt80 {
  margin-top: -80px;
}
.nmgt100 {
  margin-top: -100px;
}

/* margin サイズ別 上下左右指定
	 ========================================================================== */

.mg2 {
  margin: 2px;
}

.mg5 {
  margin: 5px;
}

.mg10 {
  margin: 10px;
}

.mg20 {
  margin: 20px;
}

/* margin サイズ別 上下のみの指定
	 ========================================================================== */

.mgtb5 {
  margin: 5px 0;
}

.mgtb10 {
  margin: 10px 0;
}

.mgtb20 {
  margin: 20px 0;
}

.mgtb30 {
  margin: 30px 0;
}

.mgtb40 {
  margin: 40px 0;
}

.mgtb50 {
  margin: 50px 0;
}

/* margin サイズ別 マージントップのみの指定
	 ========================================================================== */

.mgt3 {
  margin-top: 3px;
}

.mgt5 {
  margin-top: 5px;
}

.mgt10 {
  margin-top: 10px;
}

.mgt15 {
  margin-top: 15px;
}

.mgt20 {
  margin-top: 20px;
}

.mgt30 {
  margin-top: 30px;
}

.mgt40 {
  margin-top: 40px;
}

.mgt50 {
  margin-top: 50px;
}

.mgt60 {
  margin-top: 60px;
}

/* margin サイズ別 マージンボトムのみの指定
	 ========================================================================== */

.mgb2 {
  margin-bottom: 2px;
}

.mgb5 {
  margin-bottom: 5px;
}

.mgb10 {
  margin-bottom: 10px;
}

.mgb16 {
  margin: 16px;
}

.mgb15 {
  margin-bottom: 30px;
}

.mgb20 {
  margin-bottom: 20px;
}

.mgb25 {
  margin-bottom: 25px;
}

.mgb40 {
  margin-bottom: 40px;
}

.mgb50 {
  margin-bottom: 50px;
}

.mgb60 {
  margin-bottom: 60px;
}
.mgb80 {
  margin-bottom: 80px;
}
.mgb100 {
  margin-bottom: 100px;
}

/* margin サイズ別 マージン左のみの指定
	 ========================================================================== */

.mgl2 {
  margin-left: 2px;
}

.mgl5 {
  margin-left: 5px;
}
.mgl10 {
  margin-left: 10px;
}

.mgl15 {
  margin-left: 15px;
}

.mgl20 {
  margin-left: 20px;
}

.mgl17 {
  margin-left: 17px;
}

/* margin サイズ別 マージン右のみの指定
	 ========================================================================== */

.mgr5 {
  margin-right: 5px;
}
.mgr10 {
  margin-right: 10px;
}

.mgr17 {
  margin-right: 17px;
}

/* opacity style
     ========================================================================== */
.op-08 {
  opacity: 0.8;
}

/* padding style
     ========================================================================== */

.pdd1 {
  padding: 1px;
}

.pdd2 {
  padding: 2px;
}

.pdd5 {
  padding: 5px;
}

.pdd10 {
  padding: 10px;
}

.pdd20 {
  padding: 20px;
}

.pdd30 {
  padding: 30px;
}

.pdd40 {
  padding: 40px;
}

/* padding サイズ別 topのみの指定
	 ========================================================================== */

.pddt20 {
  padding-top: 20px;
}

/* padding サイズ別 bottomのみの指定
	 ========================================================================== */

.pddb20 {
  padding-bottom: 20px;
}

/* padding サイズ別 左のみの指定
	 ========================================================================== */
.pddl5 {
  padding-left: 5px;
}

.pddl10 {
  padding-left: 10px;
}

/* padding サイズ別 右のみの指定
	 ========================================================================== */
.pddr5 {
  padding-right: 5px;
}

.pddl10 {
  padding-left: 10px;
}

/* padding サイズ別 左右の指定
	 ========================================================================== */

.pddlr1 {
  padding: 0 1px;
}

.pddlr10 {
  padding: 0 10px;
}

/* padding 0の指定
	 ========================================================================== */
.pdd0 {
  padding: 0 0 0 0;
}

/* p のStyle
	 ========================================================================== */
.pl-height-15 {
  line-height: 1.5;
}

.pl-height-20 {
  line-height: 2;
}

/* Radius 角丸の設定
	 ========================================================================== */

.radi5 {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}

.radi10 {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}

.enn {
  width: 200px;
  height: 200px;
  border-radius: 50%;
}

/* T  */

/* -------------------------------- */
/* TEXT  style */
/* -------------------------------- */

/* text color
========================================================================== */

.tx-white {
  color: #ffffff;
}

.tx-grey {
  color: #999;
}

.tx-black {
  color: #222;
}

.tx-red {
  color: #213f99;
}

/* text 縁取り
========================================================================== */

.tx-fuchi-white {
  color: #000;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}

/* text 文字の大きさ
========================================================================== */
.txsize-06 {
  font-size: 0.6em;
}

.txsize-07 {
  font-size: 0.7em;
}

.txsize-08 {
  font-size: 0.8em;
}

.txsize-09 {
  font-size: 0.9em;
}

.txsize-10 {
  font-size: 1em;
}

.txsize-11 {
  font-size: 1.1em;
}

.txsize-12 {
  font-size: 1.2em;
}

.txsize-13 {
  font-size: 1.3em;
}

.txsize-14 {
  font-size: 1.4em;
}

.txsize-15 {
  font-size: 1.5em;
}

.txsize-16 {
  font-size: 1.6em;
}

.txsize-17 {
  font-size: 1.7em;
}

.txsize-18 {
  font-size: 1.8em;
}

.txsize-19 {
  font-size: 1.9em;
}

.txsize-20 {
  font-size: 2em;
}

.txsize-25 {
  font-size: 2.5em;
}

.txsize-30 {
  font-size: 3em;
}

.txsize-31 {
  font-size: 3.1em;
}

.txsize-32 {
  font-size: 3.2em;
}

@media screen and (max-width: 767px) {
  /* ここから -0.2 */
  .txsize-10 {
    font-size: 0.8em;
  }

  .txsize-11 {
    font-size: 0.9em;
  }

  .txsize-12 {
    font-size: 1em;
  }

  .txsize-13 {
    font-size: 1.1em;
  }

  .txsize-14 {
    font-size: 1.2em;
  }

  .txsize-15 {
    font-size: 1.3em;
  }

  .txsize-16 {
    font-size: 1.4em;
  }

  .txsize-17 {
    font-size: 1.5em;
  }

  .txsize-18 {
    font-size: 1.6em;
  }

  .txsize-19 {
    font-size: 1.7em;
  }

  /* ここから-0.6 */
  .txsize-20 {
    font-size: 1.4em;
  }

  .txsize-25 {
    font-size: 1.9em;
  }

  .txsize-30 {
    font-size: 2.4em;
  }

  .txsize-31 {
    font-size: 2.5em;
  }

  .txsize-32 {
    font-size: 2.5em;
  }
}

/* W  */
/* w 
========================================================================== */
.wid40 {
  width: 40%;
}
.wid60 {
  width: 60%;
}
.wid80 {
  width: 80%;
}
.wid90 {
  width: 90%;
}
.wid100 {
  width: 100%;
}

/* Z  */
/* z index
========================================================================== */
.posi-ab-center {
  position: absolute;
  /* bottom: 0; */
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.rela-box {
  position: relative;
  height: auto;
}

.nz1 {
  z-index: -1;
}
.z1 {
  z-index: 1;
}

.z2 {
  z-index: 2;
}

.z10 {
  z-index: 10;
}
