@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  color: #535660;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
}
@media screen and (max-width: 768px) {
  * {
    font-size: 14px;
  }
}

#wrapper {
  overflow-x: hidden;
}

/*_______COMMON______________*/
a:hover {
  opacity: 0.5;
}

img {
  width: 100%;
}

.sp {
  display: none;
}

.pc {
  display: block;
}
.hidden {
  opacity: 0;
  transform: translateY(50px);
  visibility: hidden;
}
.svg_wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .svg_wrapper {
    width: 100%;
  }
}

.svg {
  width: 150%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .svg {
    width: 100%;
  }
}

.draw {
  stroke-dasharray: 2000;
  stroke-dashoffset: 0;
  -webkit-animation: dash 3s linear alternate infinite;
          animation: dash 3s linear alternate infinite;
}
.draw.f{
  stroke-dasharray: 1500;
  stroke-dashoffset: 0;
  -webkit-animation: dash 2s linear;
  animation: dash 2s linear;
}
@-webkit-keyframes dash {
  from {
    stroke-dashoffset: 1500;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes dash {
  from {
    stroke-dashoffset: 1500;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.draw1 {
  stroke-dasharray: 500;
  stroke-dashoffset: 0;
  -webkit-animation: dash1 3s linear alternate infinite;
          animation: dash1 3s linear alternate infinite;
}

@-webkit-keyframes dash1 {
  from {
    stroke-dashoffset: 500;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes dash1 {
  from {
    stroke-dashoffset: 500;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.draw2 {
  stroke-dasharray: 700;
  stroke-dashoffset: 0;
  -webkit-animation: dash2 3s linear alternate infinite;
          animation: dash2 3s linear alternate infinite;
}
@-webkit-keyframes dash2 {
  from {
    stroke-dashoffset: 700;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes dash2 {
  from {
    stroke-dashoffset: 700;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.draw3 {
  stroke-dasharray: 3000;
  stroke-dashoffset: 0;
  -webkit-animation: dash3 3s linear alternate infinite;
          animation: dash3 3s linear alternate infinite;
}
@-webkit-keyframes dash3 {
  from {
    stroke-dashoffset: 3000;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes dash3 {
  from {
    stroke-dashoffset: 3000;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.draw4 {
  stroke-dasharray: 1500;
  stroke-dashoffset: 0;
  -webkit-animation: dash4 3s linear alternate infinite;
          animation: dash4 3s linear alternate infinite;
}
@-webkit-keyframes dash4 {
  from {
    stroke-dashoffset: 1500;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes dash4 {
  from {
    stroke-dashoffset: 1500;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
.sp-max{
  display: none;
}
.sp-min{
  display: none;
}
@media screen and (max-width: 430px) and (min-width: 396px){
  .sp-max{
    display: block;
  }
}
@media screen and (max-width: 395px){
  .sp-min{
    display: block;
  }
}
a {
  text-decoration: none;
}

.text {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px){
  .text {
    font-size: 14px;
    line-height: 22px;
  }
}
.text.med {
  font-weight: 500;
}

.open_sans {
  font-family: "Open Sans", sans-serif;
}

.open_sans.r {
  font-weight: 400;
}

.open_sans.m {
  font-weight: 500;
}

.open_sans.sb {
  font-weight: 600;
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.container.max {
  max-width: 1230px;
}

.breadcrump {
  background-color: #EDEDED;
  padding: 8px 0;
}
.breadcrump ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.breadcrump ul li {
  font-size: 12px;
  color: #000;
  font-weight: 300;
  position: relative;
  letter-spacing: 0.1em;
  padding-left: 10px;
  white-space: nowrap;
  overflow-y: visible;
  overflow-x: clip;
  text-overflow: ellipsis;
  max-width: 20ch;
}
.breadcrump ul li.now{
  overflow-y: visible;
  overflow-x: clip;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.breadcrump ul li::after {
  content: "/";
  right: 0;
  margin-left: 10px;
}

.breadcrump ul li:last-of-type::after {
  display: none;
}
.breadcrump ul li a {
  color: #000;
}

.view_more a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.view_more a:hover {
  opacity: 1;
  color: #2886E5;
}
.view_more a:hover span {
  background-color: #2886E5;
}
.view_more a:hover span::after {
  background-color: #2886E5;
}
.view_more a span {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #535660;
  margin-left: 23px;
}
.view_more a span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 35px;
  height: 1px;
  background-color: #535660;
  -webkit-transform: translate(7.5px, 0);
          transform: translate(7.5px, 0);
}
.view_more a span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 7.5px;
  height: 1px;
  background-color: #fff;
  -webkit-transform: translate(7.5px, 0);
          transform: translate(7.5px, 0);
  z-index: 1;
}

.drp_shadow {
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.07);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.07);
}

.title {
  position: relative;
}
.title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 108px;
  height: 64px;
  -webkit-transform: translate(-35%, -100%);
          transform: translate(-35%, -100%);
  aspect-ratio: 1/1;
  background: radial-gradient(circle, rgba(38, 143, 237, 0.16), rgba(38, 143, 237, 0.16));
  border-radius: 50%;
  -webkit-filter: blur(25px);
          filter: blur(25px);
}
.title .jp_name {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-top: 14px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .title .jp_name {
    font-size: 12px;
  }
}

.top {
  padding-top: 30px;
  position: relative;
  margin: 0 0 0 10%;
}
@media screen and (max-width: 768px) {
  .top {
    margin: 0 0 0 20px;
    padding-top: 12px;
  }
}
.top .top_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .top .top_inner {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.ttl_btm {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .ttl_btm {
    font-size: 26px;
    padding-bottom: 15px;
  }
}
.ttl_btm::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 1px;
  background-color: #535660;
}
.ttl_btm span {
  font-size: 14px;
  font-weight: 400;
  background: -webkit-gradient(linear, left top, right bottom, from(#64B2EB), to(#2055A7));
  background: linear-gradient(to right bottom, #64B2EB, #2055A7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lb_ttl {
  position: relative;
  font-size: 25px;
  font-weight: 500;
  padding-left: 20px;
  line-height: 25px;
  letter-spacing: 0.05em;
  border-left: 2px solid #2886E5;
}
.lb_ttl.blue {
  font-size: 18px;
  color: #2886E5;
  line-height: 18px;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .lb_ttl {
    font-size: 21px;
    padding-left: 13px;
  }
}

.counter {
  border: 1px solid #BCC1D0;
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
  padding: 40px 97px;
}
@media screen and (max-width: 768px) {
  .counter {
    padding: 30px 20px 25px;
  }
}
.counter .lb_ttl.blue {
  text-align: center;
  border: none;
  margin: 0 !important;
}
.counter .text.mrg {
  text-align: center;
  margin: 21px 0 24px !important;
}
.counter .text_area {
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .counter .text_area {
    padding: 0;
  }
}
.counter .text_area .text.med {
  margin: 0 0 13px;
}

.contact_button {
  max-width: 360px;
  height: 72px;
  margin: 0 auto;
  border: 1px solid #2886E5;
  border-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: hidden;
}
.contact_button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #2886E5;
  left: -100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  z-index: -1;
}
.contact_button:hover::before {
  left: 0;
}
.contact_button:hover a {
  color: #fff;
  opacity: 1;
}
.contact_button:hover a span {
  color: #fff;
}
.contact_button a {
  color: #2886E5;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 20px;
}
.contact_button a span {
  color: #2886E5;
  font-size: 14px;
  font-weight: 400;
}

/*============================================
HEADER
============================================*/
#screen.active {
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
}

header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
}
header .header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 40px 15px 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  header .header_inner {
    padding: 12px 18px;
  }
}
header .header_inner .logo {
  max-width: 295px;
}
@media screen and (max-width: 768px) {
  header .header_inner .logo {
    max-width: 210px;
    z-index: 999;
  }
}
@media screen and (max-width: 768px) {
  header .header_inner .nav {
    position: fixed;
    top: -150%;
    left: 0;
    width: 100%;
    -webkit-transition: 0.4s;
    transition: 1.5s;
    padding: 65px 0 30px 40px;
  }
  header .header_inner .nav.active {
    top: 0;
    /* background: -webkit-gradient(linear, left top, right bottom, from(#FFFFFF), to(#F7FBFF));
    background: linear-gradient(to right bottom, #FFFFFF, #F7FBFF); */
    background: #fff;
  }
}
header .header_inner .nav .nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-content: flex-end;
}
header .header_inner .nav .nav_list.top{
  padding: 0;
}
@media screen and (max-width: 768px) {
  header .header_inner .nav .nav_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 35px 40px 0 0;
    max-height: 85vh;
    overflow-y: scroll;
    justify-content: flex-start;
  }
  header .header_inner .nav .nav_list.top{
    display: none;
  }
}
header .header_inner .nav .nav_list li {
  margin-left: 35px;
}
@media screen and (max-width: 768px) {
  header .header_inner .nav .nav_list li {
    width: 100%;
    margin: 0 0 20px;
    padding: 0 0 18px;
    border-bottom: 1px solid #DCDFE6;
  }
}
header .header_inner .nav .nav_list li a {
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 20px;
}
@media screen and (max-width: 768px) {
  header .header_inner .nav .nav_list li a {
    font-size: 16px;
  }
  header .header_inner .nav .nav_list li a span {
    font-size: 7px;
    color: #2886E5;
  }
}
header .header_inner .nav .nav_list li a.udl:hover {
  border-bottom: 1px solid #535660;
  /* padding-bottom: 2px; */
  opacity: 1;
  color: #535660;
}
/* header .header_inner .nav .nav_list li a:hover {
  color: #2886E5;
  opacity: 1;
} */
header .header_inner .nav .nav_list li.contact {
  margin: 0 0 0 30px;
  padding: 0 0 0 20px;
  border-left: 1px solid #535660;
}
header .header_inner .nav .nav_list li.contact a {
  padding: 0 0 0 30px;
  position: relative;
  /* overflow: hidden;
  display: inline-block; */
}
header .header_inner .nav .nav_list li.contact a::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  background-image: url(../img/contact.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 10px;
  transform: translate(0%,-50%);
}

/* header .header_inner .nav .nav_list li.contact a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  background: -webkit-gradient(linear, left top, right bottom, from(#fff), to(#fff));
  background: linear-gradient(to right bottom, #64B2EB, #2055A7);
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: -1;
} */
/* header .header_inner .nav .nav_list li.contact a.color {
  color: #535660;
  -webkit-transition: 1s;
  transition: 1s;
} */
@media screen and (max-width: 768px) {
  header .header_inner .nav .nav_list li.contact a.color {
    font-size: 15px;
    color: #2886E5;
    border: 1px solid #2886E5;
    border-radius: 25px;
    display: inline-block;
    background: #fff;
    -webkit-transition: 1s;
    transition: 1s;
  }
}
/* header .header_inner .nav .nav_list li.contact a:hover {
  color: #fff;
} */
/* header .header_inner .nav .nav_list li.contact a:hover::before {
  right: 0;
} */
/* header .header_inner .nav .nav_list li.contact a:hover.color {
  color: #fff;
  border: 1px solid #2055A7;
} */
@media screen and (max-width: 768px) {
  header .header_inner .nav .nav_list li.contact a:hover.color {
    color: #fff;
    background-color: #2886E5;
  }
}
@media screen and (max-width: 768px) {
  header .header_inner .nav .nav_list li.contact {
    border-bottom: none;
    text-align: center;
    margin: 5px 0 0;
    display: flex;
    justify-content: center;
    border-left: none;
  }
  header .header_inner .nav .nav_list li.contact a {
    font-size: 15px;
    color: #2886E5;
    border: 1px solid #2886E5;
    border-radius: 25px;
    display: inline-block;
    padding: 14px 0;
    width: 200px;
    background: #fff;
    -webkit-transition: 1s;
    transition: 1s;
    display: block;
  }
  header .header_inner .nav .nav_list li.contact a::before{
    display: none;
  }
}
header .header_inner .nav .nav_list li .dropbtn {
  background: none;
  outline: none;
  border: none;
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 20px;
  position: relative;
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;

}
/* header .header_inner .nav .nav_list li.active .dropbtn{
  background: none;
  outline: none;
  border: none;
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 20px;
  position: relative;
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
} */
header .header_inner .nav .nav_list li.dropdown.active .dropbtn{
  position: relative;
}
@media screen and (min-width: 768px){
  header .header_inner .nav .nav_list li.dropdown.active .dropbtn::after{
    content: "";
    position: absolute;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background-color: #535660;
    left: 0;
  }
}

@media screen and (max-width: 768px) {
  header .header_inner .nav .nav_list li .dropbtn .non-click {
    pointer-events: all;
  }
}
@media screen and (max-width: 768px) {
  header .header_inner .nav .nav_list li .dropbtn {
    font-size: 16px;
    text-align: left;
  }
  header .header_inner .nav .nav_list li.dropdown .dropbtn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    background-color: #2886E5;
    width: 1px;
    height: 11px;
    -webkit-transform: translateY(-45%);
            transform: translateY(-45%);
  }
  header .header_inner .nav .nav_list li .dropbtn::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    background-color: #2886E5;
    height: 1px;
    width: 11px;
    -webkit-transform: translateX(45%);
            transform: translateX(45%);
  }
  header .header_inner .nav .nav_list li.active .dropbtn::after {
    -webkit-transform: translate(-150%, -45%) rotate(45deg);
            transform: translate(-150%, -45%) rotate(45deg);
  }
  header .header_inner .nav .nav_list li.active .dropbtn::before {
    -webkit-transform: translate(100%, 0) rotate(45deg);
            transform: translate(100%, 0) rotate(45deg);
  }
  header .header_inner .nav .nav_list li .dropbtn span {
    color: #2886E5;
    font-size: 7px;
  }
}
header .header_inner .nav .nav_list li .dropdown-content {
  /* display: none; */
  position: absolute;
  min-width: 550px;
  z-index: 1;
  left: -100%;
  /* background-color: #fff; */
  -webkit-transform: translate(-35%, 0);
          transform: translate(-35%, 0);
  -webkit-box-shadow: -10px 10px 18px rgba(0, 0, 0, 0.07);
          box-shadow: -10px 10px 18px rgba(0, 0, 0, 0.07);
  /* padding: 20px 0; */

}
header .header_inner .nav .nav_list li .dropdown-content .dropdown-content-inner{
  background-color: #fff;
  width: 100%;
  padding: 20px 0;
  margin: 10px 0 0;
  padding: 25px 35px 0;
}
@media screen and (min-width: 769px){
  header .header_inner .nav .nav_list li .dropdown-content{
    max-height: 0;
    padding: 0;
    overflow: hidden;
    transition: .3s ease-in-outs;
    opacity: 0;
  }
}
@media screen and (max-width: 768px) {
  header .header_inner .nav .nav_list li .dropdown-content {
    position: inherit;
    left: 0;
    right: 0;
    width: 100%;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0;
    min-width: auto;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    background-color: transparent;
    /* max-height: 100%;
    overflow: auto;
    opacity: 1; */
    display: none;
  }
  header .header_inner .nav .nav_list li .dropdown-content.active {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    flex-direction: column;
  }
}
header .header_inner .nav .nav_list li .dropdown-content .left {
  width: 100%;
  /* border-right: 1px solid #BCC1D0; */
  /* padding: 0 35px; */
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  header .header_inner .nav .nav_list li .dropdown-content .left {
    display: none;
  }
}
header .header_inner .nav .nav_list li .dropdown-content .left .grad_ttl {
  max-width: 121px;
  width: 100%;
  position: relative;
  margin-bottom: 5px;
}
header .header_inner .nav .nav_list li .dropdown-content .left .grad_ttl.max {
  max-width: 200px;
}
header .header_inner .nav .nav_list li .dropdown-content .left .grad_ttl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/ttl_bg.png);
  background-size: contain;
  width: 75px;
  height: 75px;
  -webkit-transform: translate(-50%, -25%);
          transform: translate(-50%, -25%);
  background-repeat: no-repeat;
  opacity: 0.13;
}
header .header_inner .nav .nav_list li .dropdown-content .left .jp_name {
  font-size: 11px;
  margin-bottom: 10px;
}
header .header_inner .nav .nav_list li .dropdown-content .link {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      /* -ms-flex-direction: column;
          flex-direction: column; */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; */
}
header .header_inner .nav .nav_list li .dropdown-content .link ul{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  header .header_inner .nav .nav_list li .dropdown-content .link {
    width: 100%;
    margin-top: 18px;
    padding-top: 20px;
    border-top: 1px solid #DCDFE6;
    align-items: flex-start;
    padding-left: 3.5em;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 0;
    transition: 1s ease-in-out;
    overflow: hidden;
  }
  header .header_inner .nav .nav_list li .dropdown-content.active .link{
    height: auto !important;
  }
  header .header_inner .nav .nav_list li .dropdown-content .link ul{
    display: block;
  }
}
header .header_inner .nav .nav_list li .dropdown-content .link li {
  position: relative;
  margin: 0 0 15px;
  width: calc(100% / 2 - 20px);
  border-bottom: 0.8px solid #BCC1D0;
  padding-bottom: 5px;
}
header .header_inner .nav .nav_list li .dropdown-content .link li.width_full{
  margin: 0 10% 15px 0;
}
header .header_inner .nav .nav_list li .dropdown-content .link li::after {
  content: "";
  width: 12px;
  height: 3px;
  border-bottom: 2px solid #535660;
  border-right: 2px solid #535660;
  -webkit-transform: skew(35deg, 0deg) translate(-100%, -50%);
          transform: skew(35deg, 0deg) translate(-100%, -50%);
  position: absolute;
  top: 50%;
  left: auto;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  header .header_inner .nav .nav_list li .dropdown-content .link li {
    border-bottom: none;
    margin-bottom: 17px;
    padding-bottom: 0;
    width: 100%;
  }
  header .header_inner .nav .nav_list li .dropdown-content .link li.width_full{
    margin: 0 0 17px;
  }
  header .header_inner .nav .nav_list li .dropdown-content .link li:last-of-type {
    margin-bottom: 0;
  }
  header .header_inner .nav .nav_list li .dropdown-content .link li::after {
    content: "";
    width: 12px;
    height: 3px;
    border-bottom: 1px solid #535660;
    border-right: 1px solid #535660;
    -webkit-transform: skew(35deg, 0deg) translate(-400%, -50%);
            transform: skew(35deg, 0deg) translate(-400%, -50%);
    position: absolute;
    top: 50%;
    left: 1em;
  }
}
header .header_inner .nav .nav_list li .dropdown-content .link li a{
  display: block;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  header .header_inner .nav .nav_list li .dropdown-content .link li a {
    font-size: 14px;
  }
}
header .header_inner .nav .nav_list li.dropdown {
  position: relative;
  /* display: inline-block; */
}

header .header_inner .nav .nav_list li.active .dropdown-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
      -ms-flex-align: flex-start;
          align-items: flex-start;
  flex-direction: column;

}
@media screen and (min-width: 769px) {

  header .header_inner .nav .nav_list li.active .dropdown-content{
    max-height: 335px;
    overflow: auto;
    transition: all .5s ease-in-out;
    opacity: 1;
  }
  
}
@media screen and (max-width: 768px) {
  header .header_inner .nav .nav_list li .dropdown-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: flex-start;
        -ms-flex-align: flex-start;
            align-items: flex-start;
    flex-direction: column;
    padding: 40px 35px;
    /* max-height: 335px;
    transition: all .5s ease-in-out;
    opacity: 1; */
    display: none;
  }
  header .header_inner .nav .nav_list li.dropdown.active .dropbtn{
    border-bottom: none;
    line-height: 20px;
  }
  /* header .header_inner .nav .nav_list li.active .dropdown-content{
    padding: 0;
  } */
  header .header_inner .nav .nav_list li .dropdown-content {
    /* display: none; */
    padding: 0;
    /* height: 0; */
    transition: all .5s ease-in-out;
    transform: translateX(-100%);
  }
  header .header_inner .nav .nav_list li.active .dropdown-content.active{
    /* height: auto; */
    transition: all .5s ease-in-out;
    transform: translateX(0);
  }
  
  header .header_inner .nav .nav_list li .dropdown-content .dropdown-content-inner{
    padding: 0;
    margin: 0;
  }
}
/* header .header_inner .nav .nav_list li:hover .dropdown-content .top_page{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 0 0;
  border-bottom: 0.8px solid #535660;
  width: 100%;
  padding-bottom: 5px;
  position: relative;
}
@media screen and (max-width: 768px){
  header .header_inner .nav .nav_list li:hover .dropdown-content .top_page{
    display: none !important;
  }
}
header .header_inner .nav .nav_list li:hover .dropdown-content .top_page::after{
  content: "";
  width: 12px;
  height: 3px;
  border-bottom: 2px solid #535660;
  border-right: 2px solid #535660;
  -webkit-transform: skew(35deg, 0deg) translate(-100%, -50%);
  transform: skew(35deg, 0deg) translate(-100%, -50%);
  position: absolute;
  top: 50%;
  left: auto;
  right: 0;
} */


/*__HAMBURGER__*/
@media screen and (max-width: 768px) {
  .ham {
    position: fixed;
    top: 25px;
    right: 20px;
    width: 30px;
    height: 25px;
  }
  .ham span {
    width: 30px;
    height: 1px;
    display: block;
    background-color: #535660;
    position: relative;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .ham span::after {
    content: "";
    position: absolute;
    bottom: -8px;
    width: 30px;
    height: 1px;
    display: block;
    background-color: #535660;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .ham.active span {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .ham.active span::after {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    bottom: 0;
  }
}
/*============================================
FOOTER
============================================*/
footer {
  background: -webkit-gradient(linear, left top, right bottom, from(#FCFCFC), to(#F8F8F8));
  background: linear-gradient(to right bottom, #FCFCFC, #F8F8F8);
}
footer .footer_inner {
  padding: 95px 0 145px;
}
@media screen and (max-width: 768px) {
  footer .footer_inner {
    padding: 60px 0;
  }
}
footer .logo {
  max-width: 350px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  footer .logo {
    max-width: 250px;
  }
}
footer .foo_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 45px;
}
@media screen and (max-width: 768px) {
  footer .foo_link {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-gap: 10px;
  }
}
footer .foo_link .foo_list {
  margin-right: 35px;
}
footer .foo_link .foo_list:last-of-type {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  footer .foo_link .foo_list {
    margin: 0 0 15px 0;
  }
  footer .foo_link .foo_list:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  footer .foo_link .foo_list:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  footer .foo_link .foo_list:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }
  footer .foo_link .foo_list:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }
}
footer .foo_link .foo_list a {
  font-size: 15px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  footer .foo_link .foo_list a {
    font-size: 11px;
  }
}
footer .copy {
  text-align: center;
  letter-spacing: 0.05em;
  padding: 20px 0 40px;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  footer .copy {
    font-size: 8px;
    padding: 0 0 10px;
  }
}/*# sourceMappingURL=base.css.map */