@charset "UTF-8";

/* ======================================================
 * layout.css
====================================================== */


/* common
========================================== */
* {
	box-sizing: border-box;
}
a {
	transition: 0.6s ease-in-out;
}
img {
	height: auto;
	max-width: 100%;
}
/* PC */
@media screen and (min-width: 769px) {
	a:hover {
		opacity: 0.6;
	}
}


/* header
========================================== */
#l-header {
  background: #fff;
  border-top: 6px solid #005bac;
  border-bottom: 1px solid #C9C9C9;
  height: 82px;
  position: fixed;
  top: 0;
  left: 0;
	width: 100%;
  z-index: 300;
}
#l-header .l-header__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	height: 100%;
  padding-inline: 20px;
}
#l-header .l-header__logo {
  width: 220px;
}
#l-header .l-header__logo > a {
	display: block;
}
#l-header .l-header__menuTrigger {
	height: 18px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
	transition: 0.4s ease-in-out;
	width: 22px;
}
#l-header .l-header__menuTrigger button {
	display: block;
	height: 100%;
	width: 100%;
}
#l-header .l-header__menuTrigger img {
	width: 100%;
}
#l-header.is-open .l-header__menuTrigger {
  opacity: 0;
}
#l-header.is-open .l-header__menuTrigger button {
  pointer-events: none;
}
#l-header .l-header__menu_list > li a {
  line-height: 1.5;
  padding: 12px 20px;
  display: block;
}
#l-header .l-header__menu_list > li.contact a {
  background: #005bac;
  color: #fff;
}
#l-header .l-header__menu_list > li a span {
  position: relative;
  font-size: 1.4rem;
  font-weight: bold;
}
#l-header .l-header__menu_list > li a[target="_blank"] span {
  padding-right: 20px;
}
#l-header .l-header__menu_list > li a[target="_blank"] span:after {
  background-image: url(/assetm/assets/images/common/icon_blank.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
  content: "";
  height: 13px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 14px;
}
#l-header .l-header__menuClose {
	height: 18px;
  position: fixed;
  top: 14px;
  right: 18px;
  width: 18px;
}
#l-header .l-header__menuClose button {
	display: block;
	height: 100%;
	width: 100%;
}
#l-header .l-header__menuClose img {
  width: 100%;
}
/* PC */
@media screen and (min-width: 769px) {
	#l-header .l-header__inner {
    max-width: 1240px;
    margin-inline: auto;
	}
	#l-header .l-header__menu {
    display: block !important;
  }
	#l-header .l-header__menu_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
  }
	#l-header .l-header__menu_list > li {
    text-align: center;
    width: 200px;
  }
  #l-header .l-header__menu_list > li.contact {
    margin-left: 22px;
  }
	#l-header .l-header__menuTrigger,
	#l-header .l-header__menuClose {
		display: none !important;
	}
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  #l-header .l-header__menu_list > li {
    width: auto;
  }
  #l-header .l-header__menu_list > li a {
    padding-inline: 15px;
  }
  #l-header .l-header__menu_list > li a span {
    font-size: 1.2rem;
  }
}
/* SP */
@media screen and (max-width: 768px) {
	#l-header {
    border-top-width: 3px;
    height: 45px;
	}
	#l-header .l-header__inner {
    padding-inline: 16px;
    position: relative;
  }
  #l-header .l-header__logo {
    width: 131px;
  }
  #l-header .l-header__menu {
    display: none;
		height: calc(100vh - 45px);
		height: calc(100dvh - 45px);
    overflow-y: auto;
    position: fixed;
    top: 45px;
    left: 0;
    width: 100vw;
  }
  #l-header .l-header__menu_list > li {
    border-bottom: 1px solid #fff;
  }
  #l-header .l-header__menu_list > li a {
    background: #F1F1F1;
    padding: 15px 40px;
  }
}



/* main
========================================== */
#l-main {
	padding-top: 82px;
	position: relative;
	z-index: 0;
}
/* SP */
@media screen and (max-width: 768px) {
	#l-main {
		padding-top: 45px;
	}
}




/* footer
========================================== */

.siteFooter {
  background-color: #f1f1f1;
  padding: 55px 96px;
}
.siteFooter__contList > li a {
  font-weight: bold;
}
.siteFooter__contList_other {
  margin-top: 40px;
}
.siteFooter__contList_other > li a {
  padding-left: 24px;
  position: relative;
}
.siteFooter__contList_other > li a:before {
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  content: "";
  height: 8px;
  position: absolute;
  top: 3px;
  left: 0;
  transform: rotate(45deg);
  width: 8px;
}
/* PC */
@media screen and (min-width: 769px) {
  .siteFooter__contList,
  .siteFooter__contList_other {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .siteFooter__contList > li:nth-of-type(n+2) {
    margin-left: 124px;
  }
  .siteFooter__contList_other > li:nth-of-type(n+2) {
    margin-left: 80px;
  } 
}
/* SP */
@media screen and (max-width: 768px) {
  .siteFooter {
    padding: 40px 40px 50px;
  }
  .siteFooter__contList > li {
    border-bottom: 1px solid #fff;
  }
  .siteFooter__contList > li a {
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .siteFooter__contList_other {
    margin-top: 28px;
  }
  .siteFooter__contList_other > li:nth-of-type(n+2) {
    margin-top: 24px;
  }
  .siteFooter__contList_other > li a {
    padding-left: 22px;
  }
  .siteFooter__contList_other > li a:before {
    height: 7px;
    top: 3px;
    width: 7px;
  }
}


.Footer__logo {
  width: 340px;
}
@media screen and (max-width: 768px) {
  .Footer__logo {
    max-width: 100%;
  }
}



/* animation
------------------------------------------ */
.animation-fadein {
  opacity: 0;
  transition: 0.8s all;
  transform: translateY(20px);
}
.animation-fadein.is-active {
  opacity: 1;
  transform: translateY(0);
}