

a:hover img{
  opacity: 0.8;
}

/*画像opacity設定除外*/
#slider1-pager a:hover img,
.slider1 a:hover img,
nav a:hover img{
  opacity: 1;
}


/*  申し込みボタン */

.btn_frame {
  text-align: center;
  margin: 40px 0 0 0;
}

.btn_frame a:link,
.btn_frame a:visited{
  color:#fff !important;
  text-decoration:none;
}

.btn_frame a:active,
.btn_frame a:hover{
  text-decoration: none !important;
  box-shadow: 0 0 15px var(--deep_color);
}

.btn_item a {
    font-size: 1.6em;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 12em;
    padding: 20px 30px;
    color: #FFF;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    background:  var(--deep_color);
    box-shadow: 0 0 8px #FFF;
    border-radius: 3px;
    border-radius: 50px;
    overflow: hidden;
}

.btn_item a:before{
content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
     background-image: linear-gradient( 130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 55%);
  animation: shine 3s infinite;
}
@keyframes shine {
  33% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}




/* ボタン　フォーム内など中村さん連携 */

.button {
	background: var(--baseblack_color);
	color: #fff;
	margin: 10px 0 0;
	padding: 10px 0 13px;
	width: 200px;
	border-radius: 3px;
	text-align: center;
	vertical-align: middle;
	overflow: hidden;
	-webkit-transition: .4s;
	transition: .4s;
	cursor:pointer;
}

.tableline tr td button{
	background:var(--baseblack_color);
	color: #fff;
	font-size:1.5rem;
	margin:0;
	padding: 3px 0 3px;
	width: 80px;
	border-radius: 3px;
	text-align: center;
	vertical-align: middle;
	overflow: hidden;
	-webkit-transition: .4s;
	transition: .4s;
	cursor:pointer;
}

.button:hover, .tableline tr td button:hover{
	opacity: 0.7;
}


/*------ ボタン カンファレンス申込みデフォルト ------*/

a.btn, a.btn:link, a.btn-base:active, btn-base:hover
 {color: #fff; text-decoration:none !important}

.btn-base {
	display:inline-block;
	 /* width: 15em; */
  position: relative;
  padding: 0.8em 1.4em;
  padding-right: 4.7em;
  background: var(--deep_color);
  border: none;
  color: #fff  !important;
  transition: 0.2s;
	font-weight: 500;
	font-size: 2.8rem;
  border-radius: 50px;
}
.btn-base:before,
.btn-base:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding-top: inherit;
  padding-bottom: inherit;
  width: 2.8em;
  content: "\00a0";
  font-family: 'FontAwesome', sans-serif;
  font-size: 1.2em;
  text-align: center;
  transition: 0.2s;
  /*--- transform-origin: 50% 60%; ---*/
  border-radius: 50px;
}
.btn-base:before {
  background: rgba(0, 0, 0, 0.1);
}
.btn-base:hover {
  background: var(--deep_color);
	opacity: 0.8;
}
.btn-base:active,
.btn-base:focus {
  background: var(--deep_color);
  outline: none;
}


/*------ ボタン カンファレンス申込み派生 ------*/
/* アイコン拡大バージョン */

.download:after {
  content: "\f019"; /* fa-download アイコン */
}
.file:after {
  content: "\f15c"; /* fa-file-text アイコン */
	font-size: 4rem;
	padding-top: 15px;
	padding-left: 25px;
}
.linkout:after {
  content: "\f08e"; /* fa-external-link 別ウィンドウアイコン */
	font-size: 2.5rem;
	padding-top: 15px;
	padding-left: 13px;
}
.pen:after {
  content: "\f044"; /* fa-pencil-square-o アイコン */
	font-size: 3rem;
  padding-top: 15px;
  padding-left: 30px;
}
.question:after {
  content: "\f059"; /* fa-question-circle アイコン */
	font-size: 3rem;
  padding-top: 15px;
  padding-left: 25px;
}
.search_btn:after {
  content: "\f002"; /* fa-search アイコン */
	font-size: 3rem;
	padding-top: 15px;
	padding-left: 25px;
}

.download:hover:after,
.file:hover:after,
.linkout:hover:after,
.pen:hover:after,
.question:hover:after,
.search_btn:hover:after {/*アイコン拡大*/
  -webkit-animation: none;
  -webkit-transform: scale(1.5);
  animation: none;
	transform: scale(1.5);
  right: 5px;
  top: -1px;
}

@media screen and (max-width: 675px) {
.search_btn:hover:after
{/*2行になったボタンのアイコン拡大*/
  top: 20px;
}
	}


/* 矢印アイコン横移動バージョン */
.arrow:after {
  content: "\F054"; /* arrowアイコン */
}

.arrow:hover:after {/*アイコン横移動*/
  -webkit-animation: bounceright 0.3s alternate ease infinite !important;
  animation: bounceright 0.3s alternate ease infinite !important;
}
@keyframes bounceright {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(3px);
  }
}
@keyframes wiggle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(30deg);
  }
}

@media screen and (max-width: 500px) {
.btn-base {
font-size: 1.8rem;
}
.btn-base:before,
.btn-base:after {
  border-radius: 30px;
}
.file:after {
	font-size: 3rem;
	padding-top: 5px;
	padding-left: 25px;
}
}


/*--------------------------------------
/* Youtube動画
/*-------------------------------------- */

.youtube-wrap iframe {
width: 100%;
height: auto;
aspect-ratio: 16 / 9;
max-width: 560px;
display: block;
margin: auto;
}


/*--------------------------------------
/* ガイドページvimeo動画
/*-------------------------------------- */
.vimeo-wrap {
	width: 60%;
}

.vimeo-caption {
  font-size: 0.9em;
  line-height: 1.6em;
  margin: 5px auto 30px;
}

@media screen and (max-width: 767px) {
.vimeo-wrap {
	width: 100%;
}
}

/*-------------------------------------- */
/* Utility　　　　　　　　　							 */
/*-------------------------------------- */

/* フォントサイズ */
.u-fontSize120 {
font-size:120%;
}
.u-fontSize80 {
font-size:80%;
}
.u-fontSize70 {
font-size:70%;
}
.u-fontSize50 {
font-size:50%;
}

/* 位置調整 */
.u-txtAlineL{
text-align: left !important;
margin-right: auto;
margin-left: 0px;
}
.u-txtAlineC{
text-align: center !important;
margin:0 auto !important;
}
.u-txtAlineR{
text-align: right!important;
margin-left: auto;
margin-right: 0px;
}

.u-mt10{
	margin-top: 10px !important;
}
.u-mt20{
	margin-top: 20px !important;
}
.u-mt30{
	margin-top: 30px !important;
}

.u-pt10{
	padding-top: 10px !important;
}
.u-pt20{
	padding-top: 20px !important;
}
.u-pt30{
	padding-top: 30px !important;
}

.u-p20{
	padding: 20px !important;
}

.u-mp0{
	margin: 0 !important;
	padding: 0 !important;
}

.u-frex-img{
	display: flex;
  justify-content: center;
  align-items: center;
}


/* ブロック */
.u-inlineBlock{
	display: inline-block;
}

/* インデント */
p.u-indent1 {
	padding-left:1.5em;
	text-indent:-1.5em;
}
