@charset "utf-8";
/* CSS Document */
/* --------------mobaile_fast--------------------- */

/* ======================================
  ・.ja-text 日本語縦書き
====================================== */
.ja-text {
  width: 100%;
  text-orientation: upright;
  /*-ms-writing-mode: tb-rl; */
  -webkit-writing-mode: vertical-rl; 
  writing-mode: vertical-rl; 
}
.jp-text {
  /*width: 1em;*/
  margin: 1em 1em 0 2em;
  line-height: 1.5em;
  font-size: 1.75;
  float: right;
  display: block;
}
/*  点位置調整クラス */
.punctuation {
  float: none;
  margin: 0;
  position: relative;
  left: .2em;
}
/* ======================================
  ・h2 /記号 (SP)
====================================== */
.titleSlash {
  position: relative;
}
.titleSlash::before,  
.titleSlash::after {
  display: inline-block;
  content: "";
  width: 1px;
  height: 1.5em;
  background: #fff;
  transform: rotate(45deg);
  vertical-align: bottom;
}
.titleSlash::before{
  margin-right: 1em;
}  
.titleSlash::after {
  margin-left: 1em;
}
/* .titleSlash バリエーション
---------------------------------------- */
.titleSlash_b.titleSlash::before,  
.titleSlash_b.titleSlash::after {
  background: #29303a;
}
/* ======================================
  ・水平バー (SP)
====================================== */
.h_bar {
  text-indent: -30px;
  padding-left: 30px;
}
.h_bar:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 5px;
  background: #29303a;
  margin-right: 10px;
  margin-bottom: 3px;
  vertical-align: middle;
}
/* ========================================
  ・ button(SP)
======================================== */
.button {
  display: block;
	width: 100%;
	height: 50px;
	border: 1px solid #29303a;
  border-radius: 4px;
	margin: 0 auto 10px;
	line-height: 48px;
	font-size: 1.5rem;
  color: #29303a;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
/* .btn color バリエーション
---------------------------------------- */
.btnWhite {
	border: 1px solid #fff;
  color: #fff;
}
/* =======================================
  ・ ＞マーク(SP) ボックスの端につける場合
		-r:right	-b:bottom	-l:right
======================================== */
.box_arrow-r,
.box_arrow-l,
.box_arrow-t,
.box_arrow-b {
  position: relative;
}
.box_arrow-r::after,
.box_arrow-l::after,
.box_arrow-t::after,
.box_arrow-b::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  width: 4px;
  height: 4px;
  margin: auto;
  content: "";
  vertical-align: middle;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  				transform: rotate(45deg);
}
.box_arrow-l::after {
  left: 15px;
}
/* =======================================
  ・ ＞マーク(SP)
		-r:right	-b:bottom	-l:right
======================================== */
.arrow-r::after,
.arrow-l::before,
.arrow-t::after,
.arrow-b::after {
  display: inline-block;
  margin: auto;
  margin-bottom: 4px;
  content: "";
  vertical-align: middle;
  width: .5em;
  height: .5em;
  -webkit-transform: rotate(45deg);
  				transform: rotate(45deg);
}
.arrow-r::after {
  margin-left: 4px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.arrow-l::before {
  margin-right: 4px;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
}
/* .arrow color バリエーション
---------------------------------------- */
.arrowBlack::after,
.arrowBlack::before {
  border-color: #000;
}

/* ========================================
  ・ PDFアイコン(SP)
======================================== */
.icon_pdf {
  display: inline-block ;
  padding: .1em 1em;
  margin-left: 2em;
  margin-right: .5em;
  background: #a40000;
  font-size: 1.5rem;
  color: #fff;
}

/* ========================================
  ・ ページトップへ(SP)
======================================== */
#page-top {
  position: fixed;
  bottom: 30px;
  right: 4%;
  z-index: 100;
}
#page-top a {
  display: block;
  z-index: 999;
  padding: 0;
  /* border-radius: 30px; */
  width: 45px;
  height: 45px;
  background-color: rgba(255,255,255,0.6);
  color: rgba(128,128,128,0.80);
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  line-height: 45px;
  border: 1px solid rgba(128,128,128,0.80);
}
#page-top a::before {
  content:  '';
  width: 10px;
  height: 10px;
  display:  block;
  border-top: solid 2px;
  border-right: solid 2px;
  transform: rotate(-45deg);
  position:  absolute;
  top: 5px;
  bottom:  0;
  left:  0;
  right:  0;
  margin:  auto;
}

/*================================
  ▼ブレイクポイントのルール▼
  -スマホを基本設計にする-
  *〜479px：SP縦
  *480px〜：SP横
  *600px〜タブレット
  *960px〜小型PC
  *1280px〜大型PC
================================*/

/* --------------mobaile_fast--------------------- */

@media screen and (min-width:600px) {
  .button {
    width: 240px;
  }
}


@media screen and (min-width:960px) {
  /*　for PC　*/
	/* ======================================
  ・ btn(min-width:960px)
  ======================================== */
  .button:hover {
    color: #fff;
    background: #29303a;
  }
  .button:hover::after {
    border-color: #29303a #29303a transparent transparent;
    z-index: 11;
  }

  /* .btn color バリエーション
  ---------------------------------------- */
  /* 白 */
  .btnWhite:hover::after{
    border-color: #29303a #29303a transparent transparent;
  }
  .btnWhite:hover {
    background: #fff;
    color: #29303a;
  }
	/* =======================================
  ・ ページトップへ  (min-width:960px)
	======================================== */
	#page-top {
		position: fixed;
		right: 30px;
	}
	#page-top a:hover {
		text-decoration: none;
		opacity: 0.7;
	}
}
