@charset "UTF-8";
/* CSS Document */
*, *:before, *:after {
box-sizing: border-box;
}
body {
  font-family: sans-serif;
}
.media_pc{
	display: block !important;
}
.media_sp{
	display: none !important;
}
img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width:768px){
.media_pc{
	display: none !important;
}
.media_sp{
	display: block !important;
}	
}

/*--------------------------------------
header
--------------------------------------*/
#header {
  width: 100%;
  max-width: 1200px;
  position: fixed;
  top: 16px;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 10;	
}
.header_ribbon_wrap {
  background: #fff;
  height: 84px;
  border-radius: 50px;
  padding: 0 40px;
box-shadow: 0 0 8px #ccc;	
}
.header_ribbon_wrap h1{
  margin-right: 56px;	
}
.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 16px;	
}
.header_ribbon_wrap {
  display: flex;
  align-items: center;
}
.header_nav {
  display: flex;
  column-gap: 32px;
  
}
.link_nav {
  display: flex;
  column-gap: 16px;	
}
.nav_li a {
  font-size: 16px;
  font-size: calc(100vw * 16 / 1200);	
  font-weight: 600;
  color: #000;
  text-decoration: none;
  white-space: nowrap;	
}
.nav_li a:hover{
/*	opacity: 0.6;
*/	transition: 0.5s;
	color: #e6002d;
}
.link_nav_li img {
  box-shadow: 0 0 8px #ccc;
  border-radius: 50px;
}
.nav_sp_wrap{
	display: none;
}

@media screen and (min-width:1200px){
.nav_li a {
  font-size: 16px;
}
}

@media screen and (max-width:1000px){
#header {
  width: calc(100% - 16px);
  top: 10px;	
}	
.header_nav {
  display: flex;
  column-gap: 10px;
}
.header_ribbon_wrap h1 {
  margin-right: 20px;
}
.link_nav {
  column-gap: 10px;
}
.link_nav_li {
  width: 58px;
}
.header_ribbon_wrap {
  height: 64px;
  box-shadow: none;
padding: 0;	
	}
.header_ribbon_wrap h1 img {
  height: auto;
  width: 80px;
}
.header_inner {
  display: flex;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 0 8px #ccc;
  padding: 4px 32px;	
}
}

@media screen and (max-width:768px){
.link_nav_li {
    width: 56px;
  }
.link_nav {
    width: calc(100% - 64px);
    justify-content: end;
  }	
.header_nav {
  display: none;
}
.nav_sp_wrap{
	display: block;
}
.nav_sp_content {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #23392f;
  top: 0;
  left: 0;
  right: 0;
  padding: 100px 20px 20px 20px;
  transform: translateY(-100%);
  transition: 0.5s;
}
.nav_sp_wrap.open .nav_sp_content {
  transform: translateY(0);
	}
.nav_sp {
  width: 40px;
  height: 24px;
  margin-left: 24px;
  position: relative;
  z-index: 10;	
}
.nav_sp span {
  width: 100%;
  height: 2px;
  background: #000;
  display: block;
  transition: 0.5s;	
}
.nav_sp span:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.nav_sp span:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.nav_sp span:nth-child(3) {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.nav_sp_wrap.open .nav_sp span:nth-child(1) {
  transform: rotate(45deg);
  bottom: 0;
  top: 0;
  margin: auto;	
  background: #fff;	
}
.nav_sp_wrap.open .nav_sp span:nth-child(2) {
  display: none;
}
.nav_sp_wrap.open .nav_sp span:nth-child(3) {
  transform: rotate(-45deg);
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;		
}
/*.nav_sp_wrap .deco_wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}
.nav_sp_wrap .deco.deco01 {
  position: absolute;
  top: 10px;
  left: 10px;
}
.nav_sp_wrap .deco.deco02 {
  position: absolute;
  top: 10px;
  right: 10px;
}
.nav_sp_wrap .deco.deco03 {
  position: absolute;
  bottom: 10px;
  left: 10px;
}
.nav_sp_wrap .deco.deco04 {
  position: absolute;
  bottom: 10px;
  left: 10px;
}*/
.nav_sp_wrap .nav_sp_li a {
  width: 100%;
  display: block;
  padding-bottom: 20px;
  border-bottom: solid 2px #0b1812;
  margin-bottom: 20px;
}	
.nav_sp_wrap .nav_sp_li a img {
  width: 280px;
}	
}

@media screen and (max-width:599px){
.header_inner {
    padding: 4px 16px;
}
  .nav_sp {
    margin-left: 16px;
	}
 .link_nav_li {
    width: 50px;
  }	
 .link_nav {
    width: calc(100% - 110px);
  }	
	
	
}

/*--------------------------------------
footer
--------------------------------------*/
#footer::before {
  content: "";
  width: 100%;
  height: 12px;
  background: linear-gradient(to right, #009a53 33%, #fff 33% 66%, #e6002d 66%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
#footer {
  position: relative;	
  background: #233729;
  padding: 48px 20px 80px 20px;
  background-image: url("../images/common/footer_img_bottom.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100%;
}
.footer_inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 48px auto;
  display: flex;
  justify-content: space-between;
  column-gap: 20px;	
}
.footer_nav_li a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
}
.footer_nav .head a {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  display: block;
  padding-bottom: 8px;
  border-bottom: solid 1px #fff;
  margin-bottom: 16px;
}
.footer_block {
  width: 30%;
}
.footer_nav {
  width: 25%;
}
.footer_nav_li {
  margin-bottom: 4px;
}
.footer_nav_li:last-child {
  margin-bottom: 0;
}
#footer .copyright {
  font-size: 14px;
  color: #fff;
  text-align: center;
  border-top: solid 2px #111d14;
  padding: 20px;	
}
#footer .sns_area {
  display: flex;
  align-items: center;
  column-gap: 16px;	
}
#footer .sns_ul {
  display: flex;
  column-gap: 16px;
}
#footer .app_area {
  margin-bottom: 16px;
}


@media screen and (max-width:768px){
#footer {
  padding: 40px 16px 24px 16px;
}
.footer_inner {
  margin: 0 auto 20px auto;
  flex-wrap: wrap;
	}
.footer_nav {
  width: 100%;
  margin-bottom: 32px;
  order: 1;	
}
.footer_block {
  width: 100%;
  margin: 0 auto;
  order: 2;	
}
.footer_nav_li a {
  padding-bottom: 8px;
  display: block;
}
.footer_nav .head a {
  font-size: 15px;
  margin-bottom: 8px;
}
#footer .logo {
margin-top: 32px;
  order: 3;
  text-align: center;
  width: 100%;
}
#footer .logo img {
  width: 72px;
}	
}

@media screen and (max-width:599px){
#footer .copyright {
  font-size: 13px;
  border-top: solid 1px #111d14;
  padding: 16px;
}
}


/*--------------------------------------
ページトップボタン
--------------------------------------*/
#page-top {
  bottom: 10px;
  position: fixed;
  right: 10px;
}
#page-top a {
  font-size: 20px;
  font-weight: 600;	
  color: #fff;
}
#page-top span {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}
#page-top img:hover {
  transform: rotate(8deg);
  transition: 5s;
}
/* レイアウトのためのcss */
body {
  position: relative;
}

@media screen and (max-width:599px){
#page-top {
  width: 60px;
}
#page-top a {
  font-size: 16px;
	}
#page-top span {
  bottom: 17px;
	}
}

/*--------------------------------------
パンクズ
--------------------------------------*/
.breadcrumb {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 20px 0 40px 0;
  margin: 0 auto;
}
.breadcrumb li{
  position: relative;
  padding-right: 22px;
  line-height: 1.5;	
}
.breadcrumb li::after {
  content: ">";
  position: absolute;
  top: -1px;
  right: 7px;
}
.breadcrumb li:last-child::after {
  display: none;
}
.breadcrumb a {
  color: #e6002d;
}

@media screen and (max-width:1200px){
.breadcrumb {
  padding: 20px 20px 40px 20px;
}
}

@media screen and (max-width:768px){
.breadcrumb {
  padding: 20px 16px;
}
}



