@charset "utf-8";

/* body font
_____________________________________________________________________ */
@media only screen and (max-width: 576px) {
	body, p{
		font-size:13px;
}
}


body, p, a{
      font-family: Roboto, "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
    color: #000;
	font-size:16px;
}




h1, h2, h3{
    font-family:Roboto, "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
    color: #000;
	font-weight: bold;
}



.l-bloc{
	color: inherit;
}

/*PCでは無効（改行しない）
____________________________ */
.sma{
    display: none;
}

/*スマートフォンでは有効（改行する）
____________________________ */
@media screen and (max-width:768px) {
    .sma{
        display: block;
    }
}

/* table ta-type1
_____________________________________________________________________ */

table.ta-type1 {
  margin : 15px 0 25px 0;
  border-collapse : collapse;
  border : 1px solid #b9d8b2;
  width:99%;
	text-align: left;
}

table.ta-type1 th {
  padding : 15px 15px;
  color:#222;
  background-color:#e0f0dd;
  border : 1px solid #b9d8b2;
  font-weight:bold;
  text-align:left;
}

table.ta-type1 th.ta-tit2 {
  padding : 15px 15px;
  color:#222;
  border : 1px solid #b9d8b2;
  text-align:left;
  vertical-align:middle;
  background-color:#b2dffa;
}

table.ta-type1 td {
  padding : 15px 15px;
  border : 1px solid #b9d8b2;
	background-color:#fff;
}

table.ta-type1 td.ta-tit1{
	background-color:#eeecb7;
}

@media (max-width: 500px){
    table.ta-type1{
        font-size: 14px;
    }
}


/* table ta-schedule
_____________________________________________________________________ */


table.ta-schedule {
  margin : 10px 0 20px 0;
  border-collapse : collapse;
  border : 1px solid #b9d8b2;
  width:99%;
	text-align:center;
}

table.ta-schedule th {
  padding : 10px 10px;
  color:#222;
  background-color:#e0f0dd;
  border : 1px solid #b9d8b2;
  font-weight:bold;
  text-align:center;
}

table.ta-schedule th.ta-tit2 {
  padding : 10px 10px;
  color:#222;
  border : 1px solid #b9d8b2;
  text-align:center;
  vertical-align:middle;
  background-color:#b2dffa;
}


table.ta-schedule td {
  padding : 10px 10px;
  border : 1px solid #b9d8b2;
  background-color:#fff;
  vertical-align: middle;
  padding: 0.4rem 0.8rem;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
	color: #b9d8b2;
}

@media (max-width: 500px){
    table.ta-schedule.td{
        font-size: 14px;
    }
}

/* = Table
-------------------------------------------------------------- */
table.ta-line{
    font-size: 15px;
	line-height: 1.5rem;
	width: 100%;
	border-top: 3px solid #e1e1e1!important;
}
@media (max-width: 500px){
    table.ta-line{
        font-size: 14px;
    }
}

.ta-line tr th,
.ta-line tr td{
	color: #282828!important;	
    border-bottom: 3px solid #e1e1e1!important;
	padding: 10px 0!important;
}


/* list
_____________________________________________________________________ */
ol li {
  padding-top:5px;
  padding-bottom:5px;
  }
ul li {
  padding-top:5px;
}

@media (max-width: 500px){
    ol li,
	ul li{
        font-size: 14px;
    }


/* dropdown
_____________________________________________________________________ */
.dropdown:hover .dropdown-menu {
    display: block;
}


/* ie11 card内の画像を使った時に縦に伸びるバグ修正
_____________________________________________________________________ */
.card{
display: block;
}



/* ------------------------------------------------ */
/* 動画
/* ------------------------------------------------ */
.movie {
position: relative;
width:100%;
padding-top: 56.25%;
}

.movie iframe {
position: absolute;
top: 0;
right: 0;
width: 100%;
height: 100%;
}

.embed-responsive-2by1::before {
 padding-top:50%;
}




/* ------------------------------------------------ */
/* 動くボタン
/* ------------------------------------------------ */
.button_line001 a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 200px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 600;
}
.button_line001 a:before {
    position: absolute;
    bottom: 0px;
    left: 50%;
    content: '';
    width: 100%;
    height: 2px;
    background: rgba(0,0,0,.1);
    transform: translateX(-50%);
}
.button_line001 a:after {
    position: absolute;
    bottom: 0px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #000;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
}
.button_line001 a:hover {
    opacity: 0.7;
}
.button_line001 a:hover:after {
    transform: scale(1, 1);
}



.button_line002 a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 100%;
    padding: 10px 25px;
    color: #A92124;
    transition: 0.3s ease-in-out;
    font-weight: 600;
}
.button_line002 a:before {
    position: absolute;
    bottom: 0px;
    left: 50%;
    content: '';
    width: 100%;
    height: 2px;
    background: rgba(0,0,0,.1);
    transform: translateX(-50%);
}
.button_line002 a:after {
    position: absolute;
    bottom: 0px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #000;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
}
.button_line002 a:hover {
    opacity: 0.7;
}
.button_line002 a:hover:after {
    transform: scale(1, 1);
}


/* ------------------------------------------------ */
/* 画像ループ　右
/* ------------------------------------------------ */
.loop {
    padding-top: 30px;
    padding-bottom: 30px;
    overflow: hidden;
}
.loop__box {
    display: flex;
    width: 100vw;
}
.loop__box img {
    min-width: 100vw;
}
.loop__box img:first-child {
    animation: loop 50s -25s linear infinite;
}
.loop__box img:last-child {
    animation: loop2 50s linear infinite;
}

@keyframes loop {
    0% {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
@keyframes loop2 {
    0% {
        transform: translateX(0);
    }
    to {
        transform: translateX(-200%);
    }
}

/* ロゴ画像のimgタグに対して指定します */
.navbar-brand img {
    height: auto !important;
}

/* ------------------------------------------------ */
/* タイムスケジュール
/* ------------------------------------------------ */

*{
  margin:0;
  padding:0;
  line-height: 1.3em;
} 
/* time-schedule */
.time-schedule {
  min-width: auto;
  max-width: auto;
  list-style: none;
  margin: 0 auto 0 6em;
  padding-left: 20px;
  border-left: 6px solid #61C45D;
  box-sizing: border-box;
}

.time-schedule li {
  width: 100%;
  margin: 0 0;
  padding: 5px 0;
  position: relative;
}

.time-schedule span.time {
  width: 5em;
  display: inline-block;
  margin-left: -8em;
  padding: 0 0 5px;
  margin-top: 15px;
  vertical-align: top;
  position: relative;
  text-align: right;
  box-sizing: border-box;
}

.time-schedule span.time::after {
  content: "";
  position: absolute;
  right: -35px;
  top: 0;
  background: #61C45D;
  width: 20px;
  height: 20px;
  border-radius: 10px;
}

.time-schedule .sch_box {
  display: inline-block;
  width: 100%;
  margin-left: 30px;
  padding: 15px 10px 15px 10px;
  vertical-align: middle;
  background: #efefef;
  box-sizing: border-box;
  border-radius: 6px;
}

.time-schedule .sch_title {
  font-size: 16px;
  font-weight: 700;
}

.time-schedule .sch_tx {
  font-size: 14px;
  font-weight: normal;
}

