/* GLOBAL STYLES
-------------------------------------------------- */
body {
  background: #fff;
  background-size: 95% auto;
  color: #221714;
	font-family: "M PLUS 1", "メイリオ","Meiryo","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック",sans-serif;
}

a {
	-webkit-transition: all ease 0.25s;
	-moz-transition: all ease 0.25s;
	transition: all ease 0.25s;
  color: #0012ff;
}
/*a img:hover, 
a img:focus {
  -webkit-transition: all ease 0.25s;
	-moz-transition: all ease 0.25s;
	transition: all ease 0.25s;
  opacity: 0.8;
}*/

img {
  max-width: 100%;
}


/* common
-------------------------------------------------- */
.row.no-pad {
  margin-right:0;
  margin-left:0;
}
.row.no-pad > [class*='col-'] {
  padding-right:0;
  padding-left:0;
}

h2 {
  font-family: 'M PLUS 1', sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
	line-height: 1.3;
}
h3 {
  font-family: 'M PLUS 1', sans-serif;
  font-weight: 400;
	line-height: 1.6;
}
h4, h5 {
  font-family: 'M PLUS 1', sans-serif;
  font-weight: 400;
}
p {
	font-size: 16px;
  font-weight: 300;
	line-height: 1.6;
  margin-bottom: 1em;
}


/* header section
-------------------------------------------------- */
#header {
	position: fixed;
  width: 100%;
	z-index: 1000;
  -webkit-transition: all ease 0.25s;
	-moz-transition: all ease 0.25s;
	transition: all ease 0.25s;
  display: flex;
  justify-content: space-between;
}
#header .logo {
  background: rgba(255,255,255,0);
  padding: 25px 30px;
}
#header .logo a {
  background: url("../images/logo@2x.png") no-repeat 0 0;
  background-size: 307px 66px;
  display: block;
  height: 66px;
  text-indent: -9999px;
  width: 307px;
}
#header.sticky {
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
#header.sticky .logo {
  padding: 15px 30px;
}
#header.sticky .logo a {
  background: url("../images/logo@2x.png") no-repeat 0 0;
  background-size: 307px 66px;
}
.header_btn {
  display: none;
}
#header.sticky a.header_btn {
  align-items: center;
  background: #d67429 url(../images/arrow.svg) no-repeat right 15px top 50%;
  background-size: 20px 20px;
  color: #fff;
  display: flex;
  font-family: 'M PLUS 1', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.3;
  padding: 0 45px 0 20px;
  text-decoration: none;
}
#header.sticky a.header_btn br {
  display: none;
}
#header.sticky a.header_btn:hover {
  background: #be041a url(../images/arrow.svg) no-repeat right 15px top 50%;
  background-size: 20px 20px;
}


/* main image section
-------------------------------------------------- */
#mainimage {
  position: relative;
}
.mainimage_screen {
  height: 95vh;
  position: relative;
}
.mainimage_screen h1 {
  top: 35%;
  left: 0;
  margin: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}
.mainimage_screen .main_date {
  position: absolute;
  right: 30px;
  top: 50px;
}
.mainimage_screen .main_live {
  position: absolute;
  left: 2%;
  top: 15%;
}

.scroll {
  height: 10vh;
  position: relative;
  top: -4vh;
}
.icon-scroll,
.icon-scroll:before {
  bottom: 5px;
  position: absolute;
  left: 50%;
  margin-left: -15px;
}
.icon-scroll {
  background: rgba(255,255,255,0.8);
  width: 30px;
  height: 50px;
  margin-left: -15px;
  top: 50%;
  margin-top: -35px;
  box-shadow: inset 0 0 0 1px #000;
  border-radius: 25px;
}
.icon-scroll:before {
  content: '';
  width: 8px;
  height: 8px;
  background: #000;
  margin-left: -4px;
  top: 8px;
  border-radius: 4px;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-name: scroll;
}
@-moz-keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(31px);
  }
}
@-webkit-keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(31px);
  }
}
@-o-keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(31px);
  }
}
@keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(31px);
  }
}


/* contents section
-------------------------------------------------- */
.contents {
	padding-top: 11vh;
  padding-bottom: 80px;
  text-align: center;
  margin-top: -10vh;
}
.contents .subtitle {
  padding-bottom: 1px;
  text-align: center;
}
.contents .subtitle img.subtitle_icon {
  margin-bottom: 30px;
  width: 90px;
}
.contents .subtitle h2 {
  font-size: 3em;
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 50px;
  position: relative;
}
.contents .subtitle h2 span {
  font-size: 0.75em;
  font-weight: 400;
  display: inline-block;
  padding: 0 8px;
  position: relative;
}
.contents .subtitle h2 span:before, 
.contents .subtitle h2 span:after {
  background: #221714;
  content: "";
  display: block;
  height: 70%;
  position: absolute;
  bottom: 10px;
  width: 2px;
}
.contents .subtitle h2 span:before {
  left: -20px;
  transform: rotate(-25deg);
}
.contents .subtitle h2 span:after {
  right: -10px;
  transform: rotate(25deg);
}
.contents .row {
  position: relative;
}
.contents .contents_img {
  align-items: center;
  display: flex;
  margin-bottom: 90px;
  margin-top: 50px;
  position: relative;
  width: 100%;
}
.contents .contents_img:before {
  background: #fff;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 200px;
}
.contents .contents_img.img01 {
  background: #e1eefe;
  margin-bottom: 15px;
}
.contents .contents_img.img02 {
  background: #e7d9e9;
}
.contents .contents_img.img03 {
  background: #f5f0e7;
  margin-bottom: 30px;
}
.contents .contents_img .content_img  {  
  position: relative;
  top: -50px;
  width: 45%;
}
.contents .contents_img .contents_txt {
  text-align: left;
  padding: 10px 4%;
  position: relative;
  width: 55%;
}
.contents .contents_img.img01 .contents_txt {
  text-align: center;
}
.contents .contents_img.img02 img.content_img02_LIVE {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 100;
}
.contents_txt h3 {
  font-size: 2em;
  font-weight: 500;
  margin: 0 0 15px;
  width: 100%;
}
.contents_txt p {
  font-family: 'M PLUS 1', sans-serif;
  font-size: 2rem;
  line-height: 1.8;
  margin-bottom: 0;
  width: 100%;
}
.contents_txt p small {
  font-size: 1.3rem;
}
.contents_desc p {
  font-size: 12px;
  line-height: 1.4;
  margin: 0 0 90px;
  padding-left: 200px;
  opacity: 0.7;
  text-align: left;
}
.contents .contents_note {
  display: block;
  margin-top: 0px;
}
.contents .contents_note p {
  font-size: 12px;
  opacity: 0.7;
}

/* date section
-------------------------------------------------- */
.date {
  background: #efefef;
  padding-bottom: 80px;
  padding-top: 80px;
  text-align: center;
}
.datetime {
  color: #221714;
  display: inline-block;
  font-family: 'M PLUS 1', sans-serif;
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 50px;
  padding: 5px 20px 5px 5px;
  text-align: center;
}
.datetime .flex {
  align-items: center;
  display: flex;
}
.datetime .title {
  background: #be041a;
  border-radius: 2px;
  color: #fff;
  display: inline-block;
  font-size: 2.6rem;
  margin-right: 2rem;
  padding: 1.5rem 2rem;
  letter-spacing: 0.1rem;
}
.datetime .day {
  align-items: center;
  color: #221714;
  display: flex;
  font-size: 5rem;
  letter-spacing: -0.2rem;
}
.datetime .day small {
  color: #221714;
  font-size: 2.6rem;
}


/* contact section
-------------------------------------------------- */
.contact {
  padding-bottom: 70px;
  text-align: center;
}
.contact_btn a {
	background: #d67429 url(../images/arrow.svg) no-repeat right 30px top 50%;
  background-size: 28px 28px;
	border-radius: 2px;
	box-shadow: 3px 3px 0 rgba(0,0,0,0.1);
  bottom: 20px;
	color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: 'M PLUS 1', sans-serif;
	font-size: 26px;
	font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.3;
	padding: 2rem 10rem 2rem 8rem;
}
.contact_btn a:hover, 
.contact_btn a:focus {
	background: #be041a url(../images/arrow.svg) no-repeat right 20px top 50%;
  background-size: 28px 28px;
  color: #fff;
}
/*.contact_btn a br {
  display: none;
}*/

.contact2 {
  padding-bottom: 100px;
}


/* requirements section
-------------------------------------------------- */
.requirements {
  background: #fff;
	padding-top: 80px;
  padding-bottom: 50px;
  text-align: center;
}
.requirements_box {
  border: 1px solid #ccc;
  padding: 30px;
}
.requirements_box h3 {
  margin: 0 0 30px;
}
.requirements_list {
  margin: 0;
  padding: 0;
  text-align: left;
}
.requirements_list li {
  font-weight: 300;
  font-size: 1.2rem;
  list-style: none;
  padding: 0 0 2px 15px;
  position: relative;
}
.requirements_list li:before {
  background: #999;
  border-radius: 50%;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 5px;
  height: 4px;
  width: 4px;
}
.requirements_box p {
  font-weight: 300;
  font-size: 1.2rem;
  margin: 15px 0 0;
}


/* bottom illust
-------------------------------------------------- */
.btm_illust {
  text-align: right;
  position: relative;
  bottom: 5px;
  z-index: 10;
}


/* slider section
-------------------------------------------------- */
.secSlider {
	overflow: hidden;
}
.secSlider #sliderBtm {
  position: relative;
}
.secSlider .swiper-container {
  overflow: visible;
}
.secSlider .swiper-wrapper {
  margin: 0;
  padding: 0;
}
.secSlider .swiper-wrapper li {
  list-style: none;
}


/* logos section
-------------------------------------------------- */
.logos {
  background: #fff;
	padding-top: 100px;
  padding-bottom: 70px;
  text-align: center;
}
.logo_sabm {
  margin-bottom: 30px;
}
.logo_list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0 0 0;
}
.logo_list p {
  margin: 0;
  padding: 5px 20px;
  text-align: center;
}
.logo_list p img {
  max-height: 60px;
  max-width: 150px;
}


/* notes section
-------------------------------------------------- */
.notes {
  background: #fff;
	padding-top: 50px;
  padding-bottom: 70px;
  text-align: left;
}
.notes p {
  color: #999;
  font-size: 12px;
}


/* footer
-------------------------------------------------- */
#footer {
}
#footer .copyright {
  background: #fff;
}
#footer .copyright p {
  color: #555;
	font-size: 13px;
  margin: 0;
  padding: 20px 0;
  text-align: center;
}


/* bottom contact button
-------------------------------------------------- */
.btm_contact_btn {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: calc(100% - 60px);
  z-index: 10;
}
.btm_contact_btn a {
  align-items: center;
  background: #d67429;
  color: #fff;
  display: flex;
  font-family: 'M PLUS 1', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  justify-content: center;
  line-height: 1.3;
  text-decoration: none;
  height: 60px;
}
.btm_contact_btn a img {
  margin-left: 10px;
  width: 20px;
}
.btm_contact_btn a:hover {
  background: #be041a url(../images/arrow.svg) no-repeat right 15px top 50%;
  background-size: 20px 20px;
}


/* gotop
-------------------------------------------------- */
#gotop {
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 1000;
}
#gotop a {
	background-color: #0b152a;
	background-image: url(../images/gotop.svg);
	background-position: 50% 50%;
	background-repeat: no-repeat;
	box-sizing: border-box;
	display: block;
	height: 60px;
	width: 60px;
}
#gotop a:hover {
  opacity: 0.75;
}


/* responsive CSS
-------------------------------------------------- */

@media (max-width: 1199px) and (min-width: 992px) {
  
  
	
}

@media (min-width: 1141px) {
  
  .logo_list_break {
    display: block;
    padding: 0 !important;
    width: 100%;
  }
  
}

@media (max-width: 991px) {
	
	.container {
		width: 100%;
	}

  .mainimage_screen h1 {
    top: 40%;
  }
  .mainimage_screen h1 img {
    width: 70%;
  }
  .mainimage_screen .main_date {
    right: 10px;
    width: 160px;
  }
  .mainimage_screen .main_live {
    width: 250px;
  }
  
  .contents .contents_img .contents_txt {
    padding: 15px 3%;
  }
  .contents_txt h3 {
    font-size: 2rem;
    margin-bottom: 5px;
  }
  .contents_txt p {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  
  .datetime {
    font-size: 2.4rem;
  }
  .datetime span.title {
    font-size: 2.4rem;
  }
  .datetime span.day {
    font-size: 4rem;
  }
  .datetime span.day small {
    font-size: 2.4rem;
  }
  
  .contact_btn a {
    font-size: 21px;
  }
  
  .logo_list_break {
    display: none;
  }
  
}

@media (max-width: 767px) {
  
  #header.sticky .logo {
    padding: 15px 15px;
  }
  #header.sticky a.header_btn br {
    display: block;
  }
  .logo_sabm {
    width: 300px;
  }
  
  .mainimage_screen h1 {
    top: 45%;
  }
  .mainimage_screen h1 img {
    width: 80%;
  }
  
  .contents .subtitle h2 {
    font-size: 3rem;
    margin: 0 0 40px;
  }
  .contents .subtitle h2 span:before, 
  .contents .subtitle h2 span:after {
    bottom: 4px;
  }
  .contents .contents_img {
    display: block;
    margin-bottom: 50px;
    margin-top: 0;
  }
  .contents .contents_img:before {
    display: none;
}
  .contents .contents_img .content_img {
    top: 0;
    width: 100%;
  }
  .contents .contents_img .contents_txt {
    padding: 20px 4% 30px;
    width: 100%;
  }
  .contents_desc p {
    margin: 0 0 50px;
    padding-left: 0;
  }
  
  .contact_btn a {
    font-size: 20px;
  }
  
	
}

@media (min-width: 668px) {
  
  .mb {
    display: none;
  }
  
}

@media (max-width: 667px) {
  
  .mb {
    display: block;
  }
  
  #header .logo {
    padding: 25px 15px;
  }
  #header .logo a {
    background-size: 250px 54px;
    height: 54px;
    width: 250px;
  }
  #header.sticky {
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  #header.sticky .logo {
    padding: 15px 15px;
  }
  #header.sticky .logo a {
    background-size: 250px 54px;
  }
  #header .header_btn {
    display: none !important;
  } 
  
  #mainimage {
    background: url("../images/main_image.jpg") no-repeat center 0 top 0 !important;
  }
  .mainimage_screen h1 {
    top: 40%;
  }
  .mainimage_screen .main_date {
    right: 0px;
    top: 70px;
    width: 120px;
  }
  .mainimage_screen .main_live {
    width: 220px;
  }
  
  .datetime {
    display: block;
    padding: 5px 0 10px;
  }
  .datetime .flex {
    display: block;
  }
  .datetime .flex .title {
    display: block;
    font-size: 2rem;
    margin: 0 0 10px;
    padding: 0.5rem;
  }
  .datetime .flex .day {
    display: block;
  }
  .datetime .flex .time {
    padding: 0 1rem;
  }
  
  .contact_btn a {
    font-size: 18px;
    padding: 2rem 8rem 2rem 2rem;
  }
  .contact_btn a br {
    display: block;
  }
  
  #footer .copyright p {
    font-size: 10px;
  }
	
}

@media (min-width: 481px) {
  
  .sp_none {
    display: block;
  }
  
  .btm_contact_btn {
    display: none !important;
  }
  
}

@media (max-width: 480px) {
  
  .sp_none {
    display: none;
  }
  
  #mainimage {
    background-position: right -150px top 0 !important;
  }
  .mainimage_screen h1 img {
    width: 90%;
  }
  .mainimage_screen .main_live {
    bottom: 60px;
    left: 50%;
    margin-left: -100px;
    top: auto;
    width: 200px;
  }
  
  .contents .subtitle h2 {
    font-size: 2.4rem;
  }
  .contents .row.note {
    margin-top: 0;
  }
  .contents .row.note p {
    font-size: 0.8em;
    margin-top: 0px;
    margin-bottom: 50px;
  }
  
  .date {
    padding-bottom: 50px;
    padding-top: 50px;
  }
  .datetime {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .datetime .flex .title {
    font-size: 2rem;
  }
  .datetime .flex .day {
    display: block;
  }
  
  .contact {
    padding-bottom: 50px;
  }
  .contact_btn a {
    background: #d67429 url(../images/arrow.svg) no-repeat right 20px top 50%;
    background-size: 20px 20px;
    font-size: 16px;
    padding: 1.5rem 5rem 1.5rem 1.5rem;
    text-align: left;
  }
  
  .btm_contact_btn a {
    font-size: 16px;
  }
  
  .notes {
    padding-top: 0px;
    padding-bottom: 30px;
  }
  .notes p {
    font-size: 10px;
  }
  
  #footer{
    padding-bottom: 60px;
  }
	
}

@media (max-width: 414px) {
	
}


