@charset "utf-8";
/*----------------------------------------------
	.l_all
---------------------------------------------*/
.l_all {
  display: flex;
  flex-flow: column;
  min-height: 100vh;
  padding-top: 80px;
}
.l_all .l_wrap {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .l_all {
    padding-top: 60px;
  }
}
/*----------------------------------------------
	.l_contents
---------------------------------------------*/
.l_contents {
  position: relative;
  width: 100%;
  height: 100%;
}

/*----------------------------------------------
	.l_wrap_large
---------------------------------------------*/
.l_wrap_large {
	width: 1500px;
	margin: auto;
}
@media screen and (max-width: 1600px) {
	.l_wrap_large {
		width: 90%;
	}
}
/*----------------------------------------------
	.l_wrap_small
---------------------------------------------*/
.l_wrap_small {
	width: 960px;
	margin: auto;
}
@media screen and (max-width: 1280px) {
	.l_wrap_small {
		width: 90%;
		margin: auto;
	}
}
/*----------------------------------------------
	.l_wrap
---------------------------------------------*/
.l_wrap {
  width: 1200px;
  margin: auto;
}
@media screen and (max-width: 1280px) {
  .l_wrap {
    width: 90%;
  }
  .l_wrap.l_header_wrap {
    width: 95%;
  }
}

/*----------------------------------------------
	.l_wrap_inner
---------------------------------------------*/
.l_wrap_inner {
  max-width: 1050px;
}

/*----------------------------------------------
	.l_top
---------------------------------------------*/
.l_top{
	z-index: 2;
    position: relative;
}

/*----------------------------------------------
	.l_header
---------------------------------------------*/
.l_header {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 80px;
    background: var(--wh-color);
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}
.l_header.shadow {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.l_header_wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media screen and (max-width: 768px) {
  .l_header {
    padding: 0 0 0 0.5rem;
    height: 60px;
  }
}
/*  .l_logo
---------------------------------------------*/
.l_logo {
  font-size: inherit;
  max-width: 150px;
	margin-left: 10rem;
}
.l_logo a{
  transition: .3s;
}
.l_logo a:hover{
  opacity: .8;
  transition: .3s;
}
.l_logo img {
  width: 100%;
}
@media screen and (max-width: 900px) {
	.l_logo {
	margin-left: 2rem;
  }
	
}
@media screen and (max-width: 760px) {
  .l_logo {
    max-width: 80px;
	margin-left: 0;
  }
}
/*  .l_nav
---------------------------------------------*/
.l_nav_list {
  display: flex;
}
.l_nav_list > li {
  position: relative;
  padding: 30px 20px;
  text-align: center;
}

.l_nav_list a {
  position: relative;
  text-decoration: none;
  color: #fff;
}
/*
.l_nav_list a:after {
    position: absolute;
    right: 0;
    bottom: -10px;
    left: 0;
    opacity: 0;
    content: '';
    width: 6px;
    height: 6px;
    background-color: #222;
    border-radius: 3px;
    margin: auto;
    transition: all .2s ease;
}
.single .l_nav_list li:first-child a:after,
.l_nav_list li.current-menu-item a:after,
.l_nav_list a:hover:after {
    opacity: 1;
}*/
.menu-checkbox {
  display: none;
}

.menu-item:hover .drawer-menu-child {
  animation: fadeUp 0.3s forwards;
}

.drawer-menu-child {
  position: absolute;
  margin: 2.8rem 0 0;
  opacity: 0;
  transform: translateY(20px);
}

.menu-item-title {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 600;
}

.menu-item-description {
  font-size: 1.4rem;
}

.sub-menu li a {
  text-align: left;
  display: block;
  width: 100%;
  min-width: 200px;
  background: #f5f5f5;
  border-bottom: 1px solid #d9d9d9;
  padding: 10px 10px;
}

@media (max-width: 960px) {
  .l_nav {
    font-size: calc(16px + ((1vw - 9.6px) * (16 / 6)));
  }
}
@media (max-width: 768px) {
  .l_nav {
    font-size: 1.2rem;
  }
  .l_nav_list {
    flex-direction: column;
  }
  .l_nav_list a {
    color: #fff;
  }

  .drawer-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out 0s;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 20;
  }

  .drawer-menu-list {
    margin-top: 100px;
  }

  .drawer-menu-item-link {
    display: block;
    text-align: center;
    font-size: 20px;
    color: #fff;
    margin-top: 20px;
  }

  .menu-checkbox:checked ~ .drawer-menu {
    transform: translateX(0);
  }

  .drawer-icon {
    cursor: pointer;
    position: fixed;
    top: 40px;
    right: 60px;
    justify-content: center;
    align-items: center;
    z-index: 30;
    background-color: #fff;
  }

  .drawer-icon span,
  .drawer-icon span:before,
  .drawer-icon span:after {
    content: "";
    display: block;
    height: 6px;
    width: 40px;
    border-radius: 3px;
    background-color: #222;
    position: absolute;
    transition: all 0.5s ease-in-out 0s;
  }

  .drawer-icon span::before {
    bottom: 12px;
  }

  .drawer-icon span::after {
    top: 12px;
  }

  .menu-checkbox:checked ~ .drawer-icon {
    background-color: #3584bb;
  }

  .menu-checkbox:checked ~ .drawer-icon span {
    background-color: rgba(255, 255, 255, 0);
  }

  .menu-checkbox:checked ~ .drawer-icon span::before {
    bottom: 0;
    transform: rotate(-45deg);
    background-color: #fff;
  }

  .menu-checkbox:checked ~ .drawer-icon span::after {
    top: 0;
    transform: rotate(45deg);
    background-color: #fff;
  }

  .menu-background {
    display: none;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    transition: all 0.5s ease-in-out 0s;
  }

  .menu-checkbox:checked ~ .menu-background {
    display: block;
    opacity: 0.3;
  }
}
/*----------------------------------------------
	.l_page_title
---------------------------------------------*/
.l_page_title {
  display: flex;
  position: relative;
  width: 100%;
  padding: 40px;
  justify-content: center;
  align-items: center;
}
.l_page_title h1 {
  position: static;
  width: 90%;
  max-width: 1260px;
  z-index: 1;
  font-size: 3rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.l_bg_title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.l_bg_title img {
  position: absolute;
  top: -100%;
  right: -100%;
  bottom: -100%;
  left: -100%;
  width: 100%;
  z-index: 0;
  margin: auto;
  filter: blur(4px);
}
@media (max-width: 960px) {
  .l_page_title h1 {
    font-size: calc(32px + ((1vw - 9.6px) * (16 / 6)));
  }
}
@media (max-width: 768px) {
  .l_page_title {
    height: auto;
    padding: 20px 0;
  }
  .l_page_title h1 {
    font-size: 1.8rem;
  }
}
/*----------------------------------------------
	.l_breadcrumb
---------------------------------------------*/
.l_breadcrumb ul {
  display: flex;
  padding: 20px 0;
  font-size: 1.4rem;
}
.l_breadcrumb a {
  color: #222;
}
@media (max-width: 960px) {
  .l_breadcrumb ul {
    font-size: calc(14px + ((1vw - 9.6px) * (16 / 6)));
  }
}
@media (max-width: 768px) {
  .l_breadcrumb ul {
    font-size: 1.2rem;
  }
}

/*----------------------------------------------
	.l_pagetop　必要なら復活
---------------------------------------------*/
/* .l_pagetop {
    position: fixed;
    right: 10px;
    bottom: 10px;
}
.l_pagetop a {
    display: block;
    background: #fff;
    padding: .7em .7em .5em;
    font-size: 1.4rem;
    color: #222;
    text-align: center;
    text-decoration: none;
    line-height: 1.2;
    transition: all .2s ease;
}
.l_pagetop a:hover {
    color: #222;
    opacity: .5;
}
@media (max-width: 1280px) {
    .l_pagetop a  {
      font-size: calc(14px + ((1vw - 12.6px)*(16/10)));
    }
}
@media (max-width: 768px) {
    .l_pagetop {
        position: static;
    }
    .l_pagetop a {
        background: #222;
        border-bottom: 1px solid #000;
        padding: 1em;
        font-size: 1.2rem;
        color: #fff;
    }
    .l_pagetop a:hover {
        color: #fff;
    }
} */
/*----------------------------------------------
	.l_footer
---------------------------------------------*/
.l_footer {
  background-color: #1939B1;
  padding: 30px 0;
  font-size: 1.4rem;
  color: #fff;
}
.l_f_nav li:not(:last-child) {
  margin-right: 20px;
}
.l_f_nav a {
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
}
.l_f_nav a:hover {
  opacity: 0.4;
}
.l_footer_logo{
  max-width: 120px;
  margin: 0 0 1rem;
  transition: .3s;
}
.l_footer_logo:hover{
  opacity: .8;
  transition: .3s;
}
.l_footer_link a {
    font-weight: 500;
    color: var(--bk-color);
    padding: 0px 1rem;
    border-radius: 50px;
    text-decoration: none;
    background: var(--wh-color);
    transition: 0.3s;
}
.l_footer_link a:hover {
  opacity: .8;
  transition: .3s;	
}
@media screen and (max-width: 968px) {
  .l_footer_logo {
    max-width: 80px;
  }
}

/*  .l_copyright
---------------------------------------------*/
@media (max-width: 1280px) {
  .l_footer {
    font-size: calc(14px + ((1vw - 12.6px) * (16 / 10)));
  }
}

/*  .l_pagetop
---------------------------------------------*/
.l_pagetop {
  position: fixed;
  right: 0;
  bottom: 0;
  margin: 0 5rem 5rem 0;
  z-index: 100;
}

@media (max-width: 1600px) {
  .l_pagetop{
    margin: 0 3rem 2rem 0;
  }
}

@media (max-width: 768px) {
  .l_footer {
    font-size: 1.2rem;
    text-align: center;
  }
  .l_footer .l_wrap {
    width: 100%;
  }
  .l_info .l_logo {
    margin-left: auto;
    margin-right: auto;
  }
  .l_f_nav {
    margin-bottom: 30px;
  }
  .l_f_nav li:not(:last-child) {
    margin-right: 0;
  }
  .l_f_nav li {
    border-top: 1px solid #000;
  }
  .l_f_nav li:last-child {
    border-bottom: 1px solid #000;
  }
  .l_f_nav li a {
    display: block;
    padding: 0.8rem 0 1rem;
  }
  .l_copyright {
    text-align: center;
  }
  .l_pagetop {
    display: none;
  }
}

/*  .float-button
---------------------------------------------*/
.float-button__wrap {
    display: none;
    width: 100%;
    position: fixed;
    bottom: 10px;
    left: auto;
    right: auto;
    margin: 0 auto;
    z-index: 100;
    text-align: center;
}
.float-button__wrap .c_btn_type01 {
    display: inline-block;
}
.float-button__wrap .c_btn_type01 a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 100%;
    text-decoration: none;
    color: #fff;
	box-shadow: 0px 3px 5px 0px #6b49001f;
}
@media (min-width: 768px) {
	.float-button__wrap {
		width: auto;
		right: 2rem;
		bottom: 13rem;
	}
	.float-button__wrap .c_btn_type01 a {
		width: 120px;
		height: 120px;
		display: flex;
		border-radius: 50%;
	}
}
