@charset "utf-8";


/*=======================================================================

TOPページ (top.css)

========================================================================*/

#menu #gNav li ul li {
  background: rgba(255,255,255,.8);
}

#main {
  width: 100%;
	margin: 0;
  padding: 0;
}

#main .main_visual {
  width: 100%;
}
#main .main_visual img {
	width: 100%;
  height: 28vw;
	object-fit: cover;
}


#main #content {
	width: 100%;
  margin: 0;
  padding: 40px 0 32px;
}
#main #content .inner {
	width: 1040px;
  margin: auto;
}

#content .banner,
#content .banner02 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
	gap: 16px;
	margin-bottom: 40px;
}
#content .banner02 {
	margin-bottom: 56px;
}
#content .banner div {
	width: calc(100% / 3 - 12px);
}
#content .banner02 div:nth-of-type(1) {
	width: 424px;
}
#content .banner02 div:nth-of-type(2) {
	width: 600px;
}
#content .banner div img {
	width: 100%;
}

#content .banner .kanyu {
	background: url("../images/index/banner_kanyu_on.svg") no-repeat;
}
#content .banner .jukyusha {
	background: url("../images/index/banner_jukyusha_on.svg") no-repeat;
}
#content .banner .jigyonushi {
	background: url("../images/index/banner_jigyonushi_on.svg") no-repeat;
}
#content .banner .faq {
	background: url("../images/index/banner_faq_on.svg") no-repeat;
}
#content .banner .about {
	background: url("../images/index/banner_about_on.svg") no-repeat;
}
#content .banner .mikanyu {
	background: url("../images/index/banner_mikanyu_on.svg") no-repeat;
}

#content .banner02 .kohoshi {
	background: url("../images/index/banner_kohoshi_on.svg") no-repeat;
}
#content .banner02 .access {
	background: url("../images/index/banner_access_on.svg") no-repeat;
}

#content .banner a:hover,
#content .banner02 a:hover {
	opacity: 0;
	transition: .2s;
}


#content .news {
	padding: 24px;
	border: 3px solid #924898;
}
#content .news ul li {
  margin: 0 0 16px;
}

#content h2 {
	margin: 0;
	padding: 0;
  border: 0;
}
#content h2::before {
	display: none;
	content: none;
}
#content h2.news {
  margin: 0 0 16px;
	padding: 0;
	border: 0;
  color: #924898;
  font-size: 162.5%;
  font-weight: bold;
	text-align: center;
}
#content h2.news::after {
	display: inline-block;
	content: '';
	width: 40px;
	height: 30px;
	margin-left: 4px;
	background: url("../images/index/icon_news.svg") left bottom no-repeat;
	background-size: contain;
	border: 0;
	position: inherit;
}

#content .news .btn_more {
	margin: 16px 0 0;
	text-align: right;
}
#content .news .btn_more a {
	display: inline-block;
	padding: 0 32px;
	border: 1px solid #888;
	border-radius: 100px;
	color: #888;
	font-size: 87.5%;
	text-decoration: none;
	position: relative;
}
#content .news .btn_more a::after {
  content: '';
  width: 6px;
  height: 6px;
  border-top: solid 1px #888;
  border-right: solid 1px #888;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 16px;
	margin-top: -4px;
}

#counterbox {
	margin-top: 8px;
	text-align: right;
}

/*----------------------------------------------------------------------
 Smartphone css
----------------------------------------------------------------------*/
@media screen and (max-width: 960px) {

  #main #content {
    width: 100%;
    padding: 24px 0;
  }
  #main #content .inner {
    width: 100%;
    padding: 0 16px;
  }
  

	
#content .banner02 div:nth-of-type(1) {
	width: 40%;
}
#content .banner02 div:nth-of-type(2) {
	width: calc(60% - 16px);
}
	
	


}

@media screen and (max-width: 767px) {

  #main .main_visual img {
    height: auto;
    object-fit: contain;
  }
	
  #content .banner {
    gap: 8px;
    margin-bottom: 24px;
  }
  #content .banner02 {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 48px;
  }
  #content .banner div {
    width: calc(100% / 2 - 4px);
  }
  #content .banner02 div:nth-of-type(1),
  #content .banner02 div:nth-of-type(2),
  #content .banner02 div:nth-of-type(1) img,
  #content .banner02 div:nth-of-type(2) img {
    width: 100%;
  }
	
	
  #content h2.news {
    font-size: 150%;
  }
  #content .news {
    padding: 16px;
  }
  
  
}