@charset "utf-8";
/*	レイアウト
---------------------------------*/
.l-container {
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 4rem;
  position: relative;
  transition: all 0.5s;
}
@media screen and (max-width: 959px) {
  .l-container {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-container {
    padding: 0;
  }
}
.main-cts {
  padding: 0 1.5rem;
}
.side-nav {
  display: none
}
@media only screen and (min-width:1024.1px) {
  .main-wrap {
    display: flex;
  }
  .main-cts {
    width: 68%;
    margin-top: 6rem;
    margin-left: 32%;
  }
  .side-nav {
    width: 32%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .side-nav::before {
    width: 100%;
    height: 167px;
    content: '';
    background: url(../images/side-nav-bg-top.png) top right / contain no-repeat;
    position: absolute;
    top: 0;
    right: 0;
  }
  .side-nav::after {
    width: 100%;
    height: 167px;
    content: '';
    background: url(../images/side-nav-bg-bottom.png) bottom left / contain no-repeat;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .side-nav__logo {
    width: 351px;
    max-width: 60%;
  }
  .side-nav-sns {
    max-width: 80%;
    display: flex;
    gap: 10px;
    position: absolute;
    bottom: 60px;
    z-index: 1
  }
  .side-nav-sns li {
    width: 57px;
    height: 57px;
  }
}
/*	ヘッダー
---------------------------------*/
header {
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  line-height: 1;
  z-index: 100;
}
.header__inner {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem 0 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.header-logo {
  width: 25%;
  max-width: 68px;
  margin: 0;
  transition: all 0.5s;
}
.header-nav {
  width: 100%;
  height: 45px;
  padding-left: 2rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: all 0.5s;
  overflow: hidden
}
.header-nav__inner {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}
.header-nav__link a {
  height: 35px;
  padding: .2rem 2rem 0;
  background: var(--main);
  border: 1px solid var(--main);
  border-radius: 35px;
  color: #fff;
  font-weight: 700;
  font-family: DIN Condensed, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.header-nav__link a:hover {
  background: #fff;
  border: 1px solid var(--main);
  color: var(--main);
  opacity: 1
}
@media screen and (max-width: 1024px) {
  header {
    height: 80px;
  }
  .header__inner {
    padding: 0 2rem;
  }
  .header-nav {
    height: 40px;
  }
  .header-nav__inner {
    gap: 10px
  }
  .header-nav__link {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 767px) {
  header {
    height: 65px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
  }
  .header__inner {
    padding: 0 1.5rem;
  }
  .header-logo {
    width: 25%;
    max-width: 48px;
  }
  .header-nav {
    display: none
  }
}
/*	ハンバーガーメニュー
---------------------------------*/
@media only screen and (min-width: 768px) {
  .header-hum {
    display: none !important
  }
}
.header-hum {}
@keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
@-webkit-keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
#overlay-input {
  width: 85px;
  height: 65px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  cursor: pointer;
  opacity: 0;
}
#overlay-button {
  position: absolute;
  right: 25px;
  top: 28px;
  z-index: 5;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
#overlay-button span {
  height: 4px;
  width: 40px;
  background-color: var(--main);
  border-radius: 4px;
  position: relative;
  display: block;
  transition: all .2s ease-in-out;
}
#overlay-button span:before {
  top: -10px;
  visibility: visible;
}
#overlay-button span:after {
  top: 10px;
}
#overlay-button span:before, #overlay-button span:after {
  height: 4px;
  width: 40px;
  background-color: var(--main);
  border-radius: 4px;
  position: absolute;
  content: "";
  transition: all .2s ease-in-out;
}
input[type=checkbox]:checked ~ #overlay {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
  background: transparent;
}
input[type=checkbox]:checked ~ #overlay-button span:before {
  transform: rotate(45deg) translate(7px, 7px);
}
input[type=checkbox]:checked ~ #overlay-button span:after {
  transform: rotate(-45deg) translate(7px, -7px);
}
#overlay {
  height: calc(100vh - 60px);
  width: 100vw;
  padding: 6rem;
  background: #0051A4;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 30px;
  z-index: 2;
  visibility: hidden;
  position: fixed;
  opacity: 0;
  pointer-events: none;
  transition: .4s;
}
#overlay::before {
  width: 100%;
  height: 100%;
  content: '';
  background: url(../images/hamburger_bg_lion.png) top right / contain no-repeat;
  position: absolute;
  top: 0;
  right: 0;
}
.header-hum-menu {
  min-width: 270px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  z-index: 1
}
.header-hum-menu__item {
  display: contents;
}
.header-hum-menu__item a {
  width: 100%;
  font-family: DIN Condensed, sans-serif;
  font-size: 10rem;
  letter-spacing: 2px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-hum-menu__item a::before {
  width: 24px;
  height: 30px;
  content: '';
  background: url(../images/hamburger_arrow.png) center center / contain no-repeat;
}
@media screen and (max-width:767px) {
  #overlay {
    padding: 6rem 2rem;
    flex-direction: column;
    gap: 0
  }
  .header-hum-menu {
    width: 100%;
    flex-direction: column;
  }
  .header-hum-menu__item a {
    font-size: 4.5rem;
    gap: 15px
  }
}
/*	パンくず
---------------------------------*/
.l-breadcrumb {
  margin-bottom: 2rem;
}
.l-breadcrumb__list {
  padding: 1rem 2rem;
  background: #F2F6FA;
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
}
.l-breadcrumb__item {
  display: flex;
  align-items: center;
	gap:5px
}
.l-breadcrumb__item a {
	margin-right: .5rem;
  display: flex;
  align-items: center;
	gap:5px
}
.breadcrumb__logo {
	width: 20px;
	height: 20px
}
* + .l-breadcrumb__item::before {
	    width: 10px;
    height: 12px;
    content: '';
    background: url(../images/pankuzu_arrow.png) center center / contain no-repeat;
  display: inline-block;
}
@media only screen and (max-width:767px) {
  .l-breadcrumb {
    margin: 2rem 0;
  }
  .l-breadcrumb__list {
  padding: 1rem;
    white-space: nowrap;
    line-height: 32px;
    height: 32px;
    overflow: auto;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
  }
}
/*	メイン
---------------------------------*/
main {
  position: relative
}
/**header + main {
  margin-top: 10rem
}**/
/*	セクション
---------------------------------*/
section {
  padding: 6rem 0
}
.l-breadcrumb + main section:first-child {
  padding-top: 5rem
}
@media screen and (max-width: 1024px) {
  section {
    padding: 5rem 0
  }
}
@media only screen and (max-width:767px) {
  section {
    padding: 4rem 0
  }
  .l-breadcrumb + main section:first-child {
    padding-top: 2rem
  }
}
/*	フッター
---------------------------------*/
footer {
  width: 100%;
  padding: 8rem 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 60px;
  position: relative
}
.footer-nav {
  font-size: 4rem;
  font-family: DIN Condensed, sans-serif;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 30px;
}
.footer-nav a {
  text-decoration: underline
}
.footer-sns {
  display: flex;
  gap: 10px;
}
.footer-sns li {
  width: 57px;
  height: 57px;
}
#copyright {
	font-size: 1.2rem
}
@media screen and (min-width: 1024.1px) {
  .footer-sns {
    display: none
  }
}
@media only screen and (max-width:767px) {
  footer {
    gap: 40px
  }
#copyright {
	font-size: 1rem
}
}