@charset "utf-8";
body {
    font-family: 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    color: #000;
    line-height: 1.5;
    margin: 0;
}

img {
    display: block;
}
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}


/* -----------------
header
----------------- */

#nav-header {
    width: 100%;
    background-color: #ed6d00;
    padding: 8px 0 12px 0;
    margin: 0 auto;
}
#col-logo {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}
@media (max-width: 767px){
  #main_visual .container {
	padding: 0;
	}
  #main_visual .main-title-area{
    border-radius: 0;
  }
  #main_visual .main-title-area-head{
    top: 8px;
  }
}

/* -----------------
footer
----------------- */
.footer-link {

text-align: center;
}

.footer-link li {
display: inline-block;

}
.footer-sns {
margin: 100px 0 30px 0;
}

.footer-link li:after {
    content: "|";
    padding-left: 10px;
    color: #ccc;;
}

.footer-link li:last-child::after {
    content: "";
}


.footer-link a {
  color: #000;
  font-size: 12px;
}

.footer-sns {
text-align: center;
}

.copyright {
  background: #ed6d00;
  color: #fff;
  padding: 20px 0;
  border-top: none;
  font-size: 12px;
  text-align: center;
  margin-top: 60px;
}

/* ------------------
パンくず
--------------------- */

#breadcrumb{
	margin: 60px 0 0 0;
	border-top: 1px solid #e7e7e7;
	padding: 20px 0 20px 0;
	background: #fff;
}
.breadcrumb-list-set li{
	float: left;
	font-size: 12px;
	margin-bottom: 5px;
}
.breadcrumb-list-set li:last-child{
	margin-bottom: 0;
}
.breadcrumb-list-set li:after{
	content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  margin: 0 15px;
  position: relative;
  transform: rotate(-45deg);
}
.breadcrumb-list-set li:last-child:after{
	display: none;
}
.breadcrumb-list-set li a{
	text-decoration: none;
    color: #000;
}
.breadcrumb-list-set li a:hover{
	text-decoration: underline;
}
@media (max-width: 767px){
	#section-breadcrumb{
		padding: 20px 0 20px 0;
	}
}



/* ---------------------------------
TOPに戻る
--------------------------------- */
.side_top {
    position: fixed;
    right: 4px;
    bottom: 20px;
    margin-top: 6px;
    width: 40px;
    height: 40px;
    background-color: #44af35;
    border-radius: 80px;
    margin-right: 2px;
    /* padding:10px 12px 12px; */
    z-index: 1000;
    opacity: 0;
    transition: all 0.65s;
    border: none;
    border: 2px solid white;
    display: flex;              /* フレックスボックスを使う */
    align-items: center;        /* 縦方向中央揃え */
    justify-content: center; 
    padding: 0;
    }

    .side_top.isActive {
      opacity: 1;
      transition: all 0.65s;
    }
     .side_top img {
        width: 13px;
        transform: rotate(-90deg);
    }
    @media(min-width:768px){
      .side_top {
      right: 10px;
      bottom: 15px;
      width: 44px;
      height: 44px;
      /* padding:10px 12px; */
    }

    .side_top.isActive {
      opacity: 1;
      transition: all 0.65s;
    }
     .side_top img {
        width: 17px;
        transform: rotate(-90deg);
    }
    }
    @media(min-width:920px) {
      .side_top {
    bottom: 38px;
    width: 44px;
    height: 44px;
    margin-right: 4px;
    /* padding: 6px 13px 13px; */
    right: 15px;
    }
.side_top img {
        width: 13px;
    }
        .side_top:hover {
        background-color: #39922c;
        transition: 0.3s;
    }
    }