@charset "UTF-8";
/*
 * style.css
 *
 *  version --- 1.0
 *  updated --- 2017/11/30
 */


/* !wrapper
---------------------------------------------------------- */
#wrapper {
  width: 100%;
  overflow: hidden;
  min-width: 1024px;
  /*padding-top: 170px;*/
}
.inner{
  max-width: 1140px;
  padding: 0 20px;
  box-sizing: border-box;
  position: relative;
  margin: 0 auto;
}
/* !header
---------------------------------------------------------- */
#header {
	position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 996;
    box-sizing: border-box;
    padding: 0 60px;
}

#headerIn {
	height: 90px;
	/*max-width: 1340px;*/
	margin: 0 auto;
	background: #000;
    box-sizing: border-box;
}
#headerLogo {
	float: left;
	margin-left: 9%;
	margin-top: 36px;
}
@media screen and (max-width: 1100px) {
	#header {/*padding: 0 40px*/}
	#headerIn {}
	#headerLogo{margin-left: 20px;}
}
.contactBtn{
	margin-right: 145px;
	margin-top: 25px;
	float: right;
}
.contactBtn a{
	display: block;
	font-size: 1.5rem;
	color: #fff;
	width: 250px;
	line-height: 42px;
	border: 1px solid #4a4a4a;
	padding-left: 58px;
	background: url(../img/email.png)no-repeat left 17px center;
	background-size: auto;
	box-sizing: border-box;
}
.contactBtn a:hover{
	background: url(../img/email_on.png)no-repeat left 17px center #fff;
	background-size: auto;
	text-decoration: none;
	color: #000;
}
.telBtn a{
	float: right;
	font-size: 2.3rem;
	line-height: 44px;
	color: #fff;
	pointer-events: none;
	margin-right: 25px;
	margin-top: 25px;
}
.snsUl{
	position: absolute;
	z-index: 996;
	right: 70px;
	top: 140px;
}
.snsUl li + li{padding-top: 20px;}
.snsUl a:hover{opacity: .7}


/* !gNavi
---------------------------------------------------------- */
		
#gNavi {
	display: none;
	position: fixed;
    z-index: 998;
    width: 100%;
    height: 100vh;
    height: var(--view-height,100vh);
    top: 0;
    right: 0;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
    background: #3f230d;
}
#gNavi ul{width: 100%; max-width: 420px}
#gNavi li {
	border-bottom: 1px solid #fff;
}
#gNavi li + li{margin-top: 32px;}
#gNavi li a {
	display: block;
	color: #fff;
	font-size: 2.3rem;
	letter-spacing: 0.1em;
	padding: 12px 0;
}
#gNavi li a:hover{text-decoration: none;opacity: .7}
#gNavi .navBox{
	min-height: 700px;
	height: 100%;
	position: relative;
	overflow: hidden;
}
#gNavi .lf{
	width: 50%;
	height: 100%;
	background: url(../img/bg_nav.jpg)no-repeat left center;
	/*background-attachment: fixed;*/
	background-size: cover;
	float: left;
}
.nav_logo{
	position: absolute;
	left: 12.9%;
	top: 36px;
}
#gNavi .telBtn{
	position: absolute;
	left: 12%;
	top: 0px;
}
#gNavi .rt{
	float: right;
	width: 50%;
	display: flex;
	align-items: center;
	height: 100%;
	padding: 70px 6%;
	box-sizing: border-box;
	position: relative;
}
@-webkit-keyframes hideaway{
	0%{-webkit-transform:scaleX(1);transform:scaleX(1);-webkit-transform-origin:right center;transform-origin:right center}
	50%{-webkit-transform:scaleX(0);transform:scaleX(0);-webkit-animation-timing-function:cubic-bezier(.165,.84,.44,1);animation-timing-function:cubic-bezier(.165,.84,.44,1);-webkit-transform-origin:right center;transform-origin:right center}
	50.1%{-webkit-transform-origin:left center;transform-origin:left center}to{-webkit-transform:scaleX(1);transform:scaleX(1);-webkit-animation-timing-function:cubic-bezier(.895,.03,.685,.22);animation-timing-function:cubic-bezier(.895,.03,.685,.22);-webkit-transform-origin:left center;transform-origin:left center}
}
@keyframes hideaway{0%{-webkit-transform:scaleX(1);transform:scaleX(1);-webkit-transform-origin:right center;transform-origin:right center}50%{-webkit-transform:scaleX(0);transform:scaleX(0);-webkit-animation-timing-function:cubic-bezier(.165,.84,.44,1);animation-timing-function:cubic-bezier(.165,.84,.44,1);-webkit-transform-origin:right center;transform-origin:right center}50.1%{-webkit-transform-origin:left center;transform-origin:left center}to{-webkit-transform:scaleX(1);transform:scaleX(1);-webkit-animation-timing-function:cubic-bezier(.895,.03,.685,.22);animation-timing-function:cubic-bezier(.895,.03,.685,.22);-webkit-transform-origin:left center;transform-origin:left center}}
.btnMenu {
	position: fixed;
    right: 60px;
    top: 0px;
    z-index: 999;
}
.btnMenu.active a{background:#3f230d }
.btnMenu a {
	display: block;
    width: 120px;
    height: 90px;
    box-sizing: border-box;
    position: relative;
    background: #603813;
}
.btnMenu a span {
    display: block;
    width: 60px;
    height: 1px;
    position: absolute;
    left: 30px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
}
.btnMenu a span:before {
    content: "";
    background-color: #fff;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
}
.btnMenu a:hover span:before {
	animation: .4s hideaway;
	-webkit-animation: .4s hideaway;
}
.btnMenu a:hover span:nth-child(2):before {
	animation-delay: .14s;
}
.btnMenu a:hover span:nth-child(3):before {
	animation-delay: .28s;
}
.btnMenu a span:first-child {
	top: 16px;
}

.btnMenu a span:nth-child(2) {
	top: 31px;
}

.btnMenu a span:nth-child(3){
    top:46px;
}


.btnMenu.active a span{width: 40px;left: 40px}
.btnMenu.active a span:first-child {
    -webkit-transform: translateY(16px) rotate(45deg);
    -moz-transform: translateY(16px) rotate(45deg);
    -ms-transform: translateY(16px) rotate(45deg);
    transform: translateY(16px) rotate(45deg);
}

.btnMenu.active a span:nth-child(2) {
    opacity: 0;
}

.btnMenu.active a span:nth-child(3) {
    -webkit-transform: translateY(-14px) rotate(-45deg);
    -moz-transform: translateY(-14px) rotate(-45deg);
    -ms-transform: translateY(-14px) rotate(-45deg);
    transform: translateY(-14px) rotate(-45deg);
}
.btnMenu a em {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    line-height: 1;
    position: absolute;
    left: 0;
    top:60px;
    z-index: 2;
    width: 100%;
    color: #fff;
    text-align: center;
}
.btnMenu a em:nth-of-type(2){display: none}
.btnMenu.active a em:nth-of-type(1){display: none}
.btnMenu.active a em:nth-of-type(2){display: block;}
/* !mainVisual
---------------------------------------------------------- */
#mainVisual {
	height: 500px;
	background: url(../img/bg_mainv.jpg)center center;
	background-size: cover;
	text-align: center;
	padding-top: 207px;
	box-sizing: border-box;
	color: #fff;
	position: relative;
}
@media screen and (max-height: 700px) {
	#mainVisual {
		padding-top: 100px;
		min-height: 600px;
	}
}
.mainVisual{
	text-align: center;
	margin: 20px auto 40px;
}
.mainVisual .p01{
	font-size: 2.5rem;
	padding-top: 30px;
}
.mainVisual .p02{
	font-size: 1.9rem;
	line-height: 2;
	padding: 25px 0;
}
.mainVisual .p03{
	font-size: 2.2rem;
}
.line-1{
    position: relative;
    width:570px;
    margin: 0 auto;
    border-right: 2px solid transparent;
    box-sizing: border-box;
    font-size: 12.4rem;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
}
/* Animation */
.anim-typewriter{
  animation: typing 1.5s steps(12) 4s 1 normal both,
             blink-caret 500ms steps(12) 0s 13 normal;
}
@keyframes typing{
  from{width: 0;}
  to{width: 570px;}
}
@keyframes blink-caret{
  from{border-right-color: transparent;}
  to{border-right-color: rgba(255,255,255,.75);}
}
@keyframes scroller{
	0% {
	    bottom:73px;
	    height: 0;
	}
	20% {
	    bottom: 31px;
	    height: 42px;
	}
	20.1% {
	    bottom: 31px;
	    height: 42px;
	}
	50% {
	    bottom: 31px;
	    height: 0;
	}
	100% {
	    bottom: 31px;
	    height: 0;
	}
}
.scrollP,.scrollAn{
    position: absolute;
    bottom: 31px;
    left: 50%;
    z-index: 9;
    transform: translateX(-50%);
}
.scrollP {
	bottom: 10px;
	color: #fff;
	font-size: 1.4rem;
}
.scrollAn{
    border-right: 1px solid #fff;
    height: 42px;
    -webkit-animation: scroller 2s cubic-bezier(.65,.05,.36,1) 0s infinite;
    animation: scroller 2s cubic-bezier(.65,.05,.36,1) 0s infinite;
}


/* !pageTop
---------------------------------------------------------- */
.pageTop{
	position: absolute;
	right: 10px;
	bottom: 5px;
	/*border: 2px solid #8c8c8c*/
}
/* !footer
---------------------------------------------------------- */
#footer {
	background: #1a1a1a;
}

.footerIn {
	max-width: 1040px;
	padding: 44px 20px 37px;
	box-sizing: border-box;
	margin: 0 auto;
	color: #fff;
}
.footerIn .lf{
	float: left;
}
.ft_logo img{width: 140px;padding-bottom: 8px}
.footerIn .rt{
	float: right;
	padding-right: 125px;
	padding-top: 8px;
	position: relative;
	text-align: right;
}
.privacyP{
	position: absolute;
	right: 304px;
	bottom: 0;
}
.privacyP a{
	font-size: 1.5rem;
	color: #fff;
	display: block;
	white-space: nowrap;
}
.ftUl li{
	display: inline-block;
	vertical-align: middle;
}
.ftUl li + li{margin-left: 30px}
#copyright {
	font-size: 1.5rem;
	padding-top: 24px;
}



.start {
	background: #FFF;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9000;
}
.start p {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 9999;
	width: 304px;
}


/*sec01*/
.sec01{
	background: url(../img/bg_sec01.png)no-repeat left top;
	background-size: 77% auto;
	padding: 50px 0 120px;
}
.sec01 .hd{
	text-align: center;
	font-size: 3.9rem;
	color: #603813;
	padding-bottom: 35px;
}
.list01{/*margin-left: -60px;*/}
.list01 li{
	float: left;
	width: calc(25% - 4.09%);
	box-sizing: border-box;
}
.list01 li + li{margin-left: 5.45%;}
.list01 dl{
	padding: 10px 0 17px;
}
.list01 dt{
	float: left;
	font-size: 1.4rem;
	line-height: 21px;
	margin-right: 12px;
}
.list01 dd{
	overflow: hidden;
}
.list01 dd span{
	display: block;
	max-width: 150px;
	text-align: center;
	color: #fff;
	background: #603813;
	line-height: 21px;
	font-size: 1.5rem;
}
.list01 .title{
	font-size: 1.5rem;
	line-height: 1.73;
}
.sec01 .btn{
	position: absolute;
	right: 20px;
	top: 35px;
	font-size: 1.6rem;
}

/*sec02*/
.sec02{
	padding-bottom: 50px;
}
.dl01 dt{
	float: left;
	margin-right: 70px;
}
.dl01 dd{overflow: hidden;}
.hd01{
	width: 420px;
	background: url(../img/bg_hd01.png)no-repeat right top;
	background-size: auto 100%;
	color: #fff;
	padding: 11px 0;
	position: relative;
}
.hd01:before{
	content: '';
	width: 10000%;
	height: 100%;
	position: absolute;
	right: 100px;
	top: 0;
	background: #1a1a1a;
}
.hd01 .enFt{
	font-size: 7.7rem;
	line-height: 1.15;
	position: relative;
}
.hd01 .jp{
	font-size: 2rem;
	padding: 10px 0;
	position: relative;
}
.hd01 .jp:before{
	content: '';
	width: 10000%;
	height: 1px;
	background: #fff;
	position: absolute;
	right: 90px;
	top: 0;
	z-index: 2;
}
.dl01 dd .img{text-align: center;padding-bottom: 40px}
.dl01 dd .text{
	font-size: 1.6rem;
	line-height: 1.75;
	padding-bottom: 37px
}

.fixBg{
	background: url(../img/bg_fix.jpg)no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
	padding-top: 25px;
}
.worksItem{
	padding-bottom: 15px;
}
.worksItem .hd{
	background: #333;
	padding: 16px 50px;
	color: #fff;
}
.worksItem.nth02 .hd{
	background: #5e4a26
}
.worksItem .hd .for{
	float: left;
	border: 1px solid rgba(255,255,255,0.3);
	background: url(../img/icon01.png)no-repeat left 15px center;
	background-size: 29px auto;
	width: 160px;
	line-height: 48px;
	padding-left: 57px;
	box-sizing: border-box;
	margin-right: 25px;
}
.worksItem.nth02 .hd .for{
	background: url(../img/icon02.png)no-repeat left 19px center;
	background-size: 22px auto;
}
.worksItem .hd .tt{
	overflow: hidden;
	display: flex;
	align-items: center;
	height: 50px;
	font-size: 2.4rem;
}
.worksItem .tab_wrap{
	background: rgba(247,247,248,0.9);
	margin-bottom: 10px;
}
.worksItem .tab_title{
  font-size: 1.8rem;
  cursor: pointer;
  padding: 19px 50px;
  padding-right: 110px;
  background: url(../img/tab_open.png)right 50px center no-repeat;
  background-size: 40px auto;
  position: relative;
}
.worksItem .tab_title.change {
  background: url(../img/tab_close.png)right 50px center no-repeat;
  background-size: 40px auto;
}
.worksItem.nth02 .tab_title{
  background: url(../img/tab_open02.png)right 50px center no-repeat;
  background-size: 40px auto;
}
.worksItem.nth02 .tab_title.change {
  background: url(../img/tab_close02.png)right 50px center no-repeat;
  background-size: 40px auto;
}
.worksItem .tab_inner{
  padding: 0 50px 25px;
  display: none;
}
.worksItem .tab_inner .img{
	float: left;
	margin-right: 25px;
}
.worksItem .tab_inner .text{
	overflow: hidden;
	font-size: 1.6rem;
	line-height: 1.9375;
}

/*sec03*/
.sec03{
	background: url(../img/bg_sec03.png)no-repeat bottom 300px right;
	background-size: 100% auto;
	position: relative;
	padding-bottom: 75px;
}
.sec03 .hd01{
	background: url(../img/bg_hd02.png)no-repeat right top;
	background-size: auto 100%;
}
.sec03 .hd01:before{
	background: #603813;
}
.sec03 .bgImg{
	position: absolute;
	right: 0;
	top: 45px;
	width: 56%;
	height: 412px;
	background: url(../img/img_sec03.jpg)no-repeat center center;
	background-size: cover;
	max-width: ;
}
.sec03 .box{
	max-width: 414px;
	padding: 37px 0 32px;
}
.sec03 .box .p01{
	font-size: 2.7rem;
	line-height: 1.59;
	padding-bottom: 20px;
}
.sec03 .box .p02{
	font-size: 1.6rem;
	line-height: 2.0625;
}
.sec03 .list01 li{
	width: calc(33.33% - 2.7%);
}
.sec03 .list01 li + li{margin-left: 4%;}
.hd02{
	text-align: center;
	font-size: 2rem;
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 25px;
}
.hd02:before{
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 100%;
	width: 72px;
	height: 1px;
	background: #603813;
}

/*sec04*/
.sec04{
	background: url(../img/bg_sec04.png)no-repeat center bottom 18%;
	background-size: 100% auto;
	position: relative;
}
.sec04:before{
	content: '';
	background: url(../img/line.png)no-repeat;
	background-size: 100% auto;
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: -120px;
	left: 0
}
.sec04 .hd01{width: 93%;padding: 8px 0}
.sec04 .hd01 p{
	display: inline-block;
}
.sec04 .hd01 .jp{
	margin-left: 30px;
	vertical-align: super;
}
.sec04 .hd01 .jp:before{content: none;}
.dl02{padding:50px 0 40px;}
.dl02 dt{
	float: left;
	margin-right: 60px
}
.shadow{
	position: relative;
	display: inline-block;
	margin-right: 14px;
}
.shadow img{
	position: relative;
}
.shadow:before{
	content: '';
	position: absolute;
	left: 13px;
	top: 13px;
	width: 100%;
	height: 100%;
	border: 1px solid #c0c0c0;
}
.dl02 .shadow{margin-right: 0}
.dl02 .shadow:before{
	left: auto;
	right: 16px;
	border-width: 2px;
}
.dl02 dd{overflow: hidden;padding-top: 30px}
.dl02 .title{
	border-bottom: 1px solid #808080;
	padding-bottom: 11px;
	margin-bottom: 38px;
}
.table01{width: 100%}
.table01 th,.table01 td{
	line-height: 1.4375;
	padding-bottom: 29px;
}
.table01 th{
	vertical-align: top;
	width: 25.14%;
	min-width: 120px;
	box-sizing: border-box;
	padding-left: 10px;
}
.sec04 .title01{
	position: relative;
	padding-bottom: 7px;
	margin-bottom: 11px;
}
.sec04 .title01:before{
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 100%;
	background: #808080;
	height: 1px;
	width: 110%;
}
.sec04 .title01.mb{
	margin-bottom: 18px
}
.dl03 dt{
	float: left;
	margin-right: 40px;
	margin-top: 33px;
}
.dl03.rt dt{
	float: right;
	margin-right: 0;
	margin-left: 40px;
}
.dl03 dd{
	overflow: hidden;
}
.dl03 dd .text{
	font-size: 1.5rem;
	line-height: 28px;
	padding-bottom: 28px;
}
.dl03 dd .text span{
	font-size: 1.6rem
}
.dl03 dd .text font{
	font-size: 2rem
}
.sec04 .tab_title{display: none;}


/*sec05*/
.hd01.tc{
	text-align: center;
	background: none;
	color: #000;
	padding: 0;
	width: auto;
	padding: 47px 0 12px;
}
.hd01.tc:before,
.hd01.tc .jp:before{content: none;}
.hd01.tc p{display: inline-block;}
.hd01.tc .enFt{
	margin-right: 15px;
	font-size: 6.7rem;
}
.sliderUl a{
	overflow: hidden;
	display: block;
}
.sliderUl a img{
	transition: transform 1.0s;
	-moz-transition: transform 1.0s;
	-webkit-transition: transform 1.0s;
}
.sliderUl a:hover img {
	transform: scale(1.1);
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
/*sec06*/
.sec06{
	padding: 28px 0 46px
}
.map,
.map iframe{
	display: block;
	width: 100%;
	height: 340px;
}

.sec06 ul{
	padding-top: 36px;
}
.sec06 li{
	float: left;
	width: 50%;
	box-sizing: border-box;
	min-height: 130px;
	padding-top: 14px;
	padding-left: 7.7%;
	font-size: 1.8rem;
}
.sec06 li + li{border-left: 2px solid #c6c6c6;}
.sec06 li p{padding-left: 45px}
.sec06 li .title{
	background: url(../img/car.png)no-repeat left center;
	background-size: 35px auto;
	margin-bottom: 10px;
}
.sec06 li:last-of-type .title{
	background: url(../img/bus.png)no-repeat left center;
	background-size: 35px auto;
}

/*sec07*/
.sec07{
	background: url(../img/bg_sec07.jpg)no-repeat top center;
	background-size: cover;
	padding: 35px 0 89px;
}
.sec07 .inner{max-width: 1040px;}
.sec07 .hd{
	text-align: center;
	color: #fff;
	font-size: 7.7rem;
	line-height: 1.15;
	padding-bottom: 4px;
}
.sec07 .tab_wrap{
	background: #353535;
}
.sec07 .tab_title{
  font-size: 1.6rem;
  color: #fff;
  cursor: pointer;
  padding: 43px 85px;
  background: url(../img/tab_open03.png)right 55px center no-repeat;
  background-size: 29px auto;
  position: relative;
}
.sec07 .tab_title.change {
  background: url(../img/tab_close03.png)right 55px center no-repeat;
  background-size: 29px auto;
}
.sec07 .tab_title span{
	font-size: 2.6rem;
	background: url(../img/email02.png)left center no-repeat;
 	background-size: auto auto;
 	padding-left: 75px;
 	display: inline-block;
}
.sec07 .tab_inner{
  display: none;
  margin: 0 40px;
  border-top: 2px solid #676767;
  padding: 30px 50px 50px;
}
.sec07 .lf{
	float: left;
	width: calc(50% - 25px);
}
.sec07 .rt{
	float: right;
	width: calc(50% - 25px);
}
.sec07 .tr{
	color: #fff;
	font-size: 1.8rem;
	line-height: 1.33;
	padding-bottom: 6px;
}
.sec07 .tr span{
	display: inline-block;
	margin-left: 10px;
	font-size: 1.3rem;
	letter-spacing: 0.1em;
	text-align: center;
	width: 52px;
	line-height: 24px;
	background: #bc272d;
	vertical-align: top;
}
.sec07 .td {
  color: #fff;
}
.sec07 .td + .tr{padding-top: 27px}
.sec07 input[type='text'], 
.sec07 input[type='number'], 
.sec07 input[type='tel'], 
.sec07 input[type='email'], 
.sec07 textarea {
    height: 39px;
    width: 100%;
    box-sizing: border-box;
    padding: 0px 10px;
    font-size: 1.6rem;
  color: #333;
}
.sec07 textarea{
	height: 250px;
	resize: none;
	padding: 10px;
	display: block;
}
.sec07 .btn {
  text-align: center;
  padding-top: 25px;
}
.sec07 input[type='submit']{
	width: 190px;
	height: 55px;
	border: 2px solid #8c8c8c; 
	color: #fff;
	font-size: 1.8rem;
	background: transparent;
	margin: 0 1px;
	display: inline-block;
	transition: opacity .3s;
} 
.sec07 input[type='submit']:hover{opacity: .7}

.message {
  display: block;
  height: 150px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

span.colorRed {
  color: #f00;
  display: block;
}

.thanks {
  color: #fff;
  text-align: center;
}
.pc_hide{
	display: none;
}
.new_button a{
	width: 40rem;
	height: 8rem;
	font-size: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	border: 1px solid #333;
	color: #333;
	margin: auto;
}
.new_button a:hover{
	color: white;
	background-color: #333;
	text-decoration: none
}
.pageTop{
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: rgba(211,211,211,0.6);
}
.worksItem .hd{
	position: relative;
}
.ryokin_btn{
	position: absolute;
    top: 17px;
    right: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    color: white;
    border: 1px solid white;
}
.ryokin_btn a{
	color: white;
}
.ryokin_btn:hover{
	background-color: white;
}
.ryokin_btn:hover a,.ryokin_btn a:hover{
	text-decoration: none;
	color: #333;
}
.inner.inner_up{
	display: none;
}
.seminar_btn{
	position: absolute;
	bottom: 20px;
	right: 20px;
}
.seminar_btn a{
	display: flex;
    justify-content: center;
    align-items: center;
    width: 35vw;
    padding: 5%;
    box-sizing: border-box;
    background-color: #8B0000;
    color: white;
	font-size: 2rem;
	font-weight: bold;
}
.seminar_btn a:hover{
	color: #8B0000;
	background-color: #fff;
	text-decoration: none;
}
p.img{
	height: 198px;
	text-align: center;
}
p.img img{
	width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
	position: relative;
top: 50%;
transform: translateY(-50%);
}
p.img a{
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	.list01 dd span{
		padding: 7px 7px 0;
	}
	
}
