@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap");
@import url("https://use.typekit.net/mwo6hse.css");
/*共通部分*/
.sp_nav_btn {
  position: absolute;
  right: 0;
  top: 0;
}
.sp_nav_btn a {
  color: white;
}

img {
  width: 100%;
}

/**********************************************************************
	ページヘッダ - className : Header
***********************************************************************/
#header {
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #000;
  color: white;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}
#header a {
  color: white;
}
#header a:hover {
  text-decoration: none;
}
#header h1 {
  z-index: 1;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  padding: 20px 40px 30px 60px !important;
  transition: .5s;
  z-index: 1000;
}
#header.active {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 0px 7px #ddd;
  padding: 10px 40px 10px 60px !important;
}
@media only screen and (max-width: 767px) {
  #header {
    padding: 20px !important;
  }
  #header.active {
    padding: 10px 20px !important;
  }
  #header h1 {
    width: 23vw;
  }
}

/**********************************************************************
	ページタイトル - className : Page_title
***********************************************************************/
.page_title {
  padding: 10px 0 !important;
}

/**********************************************************************
	SPナビゲーション - className : Page_title
***********************************************************************/
/*
.Sp-nav{
	opacity : 0;
	height : 0;
}

 */
@media only screen and (min-width: 768px) {
  #btn_menu {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  #btn_menu {
    position: fixed;
    width: 25px;
    height: 25px;
    right: 25px;
    top: 18px;
    transform: translate3d(0, 0, 0);
    z-index: 10000;
    cursor: pointer;
  }
  #btn_menu div {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 25px;
    height: 1px;
    margin: auto;
    transition: all .4s;
  }
  #btn_menu div:nth-child(1) {
    transform: translateY(-2px);
    width: 25px;
    height: 1px;
    background: #000;
  }
  #btn_menu div:nth-child(2) {
    opacity: 0;
  }
  #btn_menu div:nth-child(3) {
    transform: translateY(7px);
    width: 21px;
    background: #000;
  }
  #btn_menu img {
    display: inherit;
    width: 100%;
  }
  #btn_menu.on div:nth-child(1) {
    top: -12px;
    transform: translateY(6px) rotate(-25deg);
    background: #fff;
  }
  #btn_menu.on div:nth-child(2) {
    opacity: 0;
  }
  #btn_menu.on div:nth-child(3) {
    top: 12px;
    transform: translateY(-6px) rotate(25deg);
    width: 25px;
    background: #fff;
  }
}

/**********************************************************************
	ぱんくず - className : Breadcrumb
***********************************************************************/
/*
.Breadcrumb{
	background : $color_base_bg;
	padding : 10px $sp_side_space;

	.Breadcrumb-separator{
		li{
			display: inline-block;

			&:after{
				font-family: 'FontAwesome';
				content : '';
				font-size: 120%;
				padding : 0 0.5em;
			}

			&:last-child{
				&:after{
					content : none;
				}
			}
		}
	}
}

 */
/**********************************************************************
	ページフッタ - className : Footer
***********************************************************************/
#footer {
  background: #fff;
  padding-top: 60px;
  padding-bottom: 20px;
  color: white;
}
#footer .logo_footer {
  width: 21%;
  margin: 0 auto;
}
#footer ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 45px;
  padding-bottom: 20px;
  border-bottom: solid 1px #DFDFDF;
  width: auto;
  margin: 45px auto;
}
#footer ul a {
  color: #888;
}
#footer ul a span {
  font-weight: bold;
  font-size: clamp(1.2rem, 1.2vw, 1.5rem);
  display: block;
}
#footer ul li {
  font-size: 1.0rem;
  letter-spacing: 2px;
}
#footer ul li + li {
  margin-left: 3.0vw;
}
#footer .copyright {
  text-align: center;
  font-size: 1.3rem;
  color: #000;
}
@media only screen and (max-width: 767px) {
  #footer .logo_footer {
    width: 50%;
  }
  #footer ul {
    width: 100%;
    justify-content: space-between;
    margin-top: 0;
  }
  #footer ul li {
    width: 50%;
    margin-top: 20px;
  }
  #footer ul li + li {
    margin-left: 0;
  }
}

/**********************************************************************
	ページトップ - className : Pagetop
***********************************************************************/
.Pagetop {
  cursor: pointer;
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 80px;
  height: 80px;
}
.Pagetop.fixed {
  position: absolute;
  top: -40px;
}
