html { font-size: 62.5%;}

body {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  word-break: break-all;
  overflow-y: scroll;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #323433;
  line-height: 1.8 !important;
}

@media screen and (max-width: 768px) {
  body { font-size: 1.4rem;}
}

button, input, select, textarea { font-family: inherit; font-size: 1.6rem;}

*:focus { outline: none!important;}

a { transition: 0.5s;}
a img { transition: 0.5s;}
a:hover img { opacity: 0.8;}
img { max-width: 100%;}

.em { font-weight: bold; }

.nopost { font-size: 1.6rem; text-align: left; }
/*======================================
l-root
======================================*/
.l-root { overflow: hidden;}


/*======================================
l-header
======================================*/
.l-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 95px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  background: #fff;
  z-index: 10;
}
#top .l-header { background: none;}

.l-header__logo {}
.l-header__logo img {}

@media screen and (max-width: 1200px) {
  .l-header { height: 80px;}
}
@media screen and (max-width: 1024px) {

}
@media screen and (max-width: 600px) {
  .l-header { height: 60px;}
  .l-header__logo { line-height: 0;}
  .l-header__logo img { width: 150px;}
}


/*======================================
l-gNav
======================================*/
.l-gNav { margin-left: 60px;}
.l-gNav__inner { display: block!important;}
.l-gNav__list { display: flex; align-items: center;}
.l-gNav__item { margin-left: 35px;}
.l-gNav__item:first-child { margin-left: 0;}
.l-gNav__item a { font-size: 1.4rem; font-weight: 700; color: #1E2F36;}

@media screen and (max-width: 1024px) {
  .l-gNav { display: none!important;}
}

@media screen and (max-width: 768px) {
  .l-gNav { position: relative;}
  .l-gNav__inner {
    display: none;
    width: 100%;
    position: fixed;
    padding: 80px 0 0 0;
    background: rgba(34, 47, 53, 0.94);
    box-sizing: border-box;
    height: 100vh;
    z-index: 99;
    top: 0;
    left: 0;
    right: 0;
  }
  .l-gNav__logo {
    width: 153px;
    height: 60px;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 20px;
  }
  .l-gNav__list { border-top: 1px #6B828E solid;}
  .l-gNav__item { border-bottom: 1px #6B828E solid;}
  .l-gNav__item:first-child {}
  .l-gNav__item a {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    padding: 20px;
    display: block;
    position: relative;
  }
  .l-gNav__item a:after {
    content: "";
    display: block;
    width: 2.6vw;
    height: 2.6vw;
    border-right: 2px #0096de solid;
    border-bottom: 2px #0096de solid;
    position: absolute;
    right: 20px;
    top: calc(50% - 10px);
    transform: rotate(45deg);
  }
}

/* l-gNav__toggle
----------------------------- */
@media screen and (max-width: 768px) {
  .l-gNav__toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    cursor: pointer;
  }
  .l-gNav__toggle div {
    position: relative;
    width: 19px;
    height: 12px;
  }
  .l-gNav__toggle span {
    display: block;
    height: 2px;
    background: #1E2F36;
    position: absolute;
    width: 100%;
    left: 0;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  .l-gNav__toggle span:nth-child(1) { top: 0px;}
  .l-gNav__toggle span:nth-child(2) { top: 50%;}
  .l-gNav__toggle span:nth-child(3) { top: 100%;}
  .is-active .l-gNav__toggle span { background: #ffffff; }
  .is-active .l-gNav__toggle span:nth-child(1) {
    top: 50%;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .is-active .l-gNav__toggle span:nth-child(2) { width: 0; left: 50%;}
  .is-active .l-gNav__toggle span:nth-child(3) { top: 50%; -webkit-transform: rotate(-135deg); -moz-transform: rotate(-135deg); transform: rotate(-135deg);}
}


/*======================================
l-main
======================================*/
.l-main {}
.l-main.-column {max-width: 1340px; padding: 80px 70px 110px 70px; margin: auto;}
.l-main__inner { display: flex; justify-content: space-between; }
.l-main__head {}
.l-main__body {}
.l-main__inner .l-main__body { flex: 1;}

@media screen and (max-width: 1200px) {
  .l-main.-column { padding: 80px 40px  110px 40px;}
}
@media screen and (max-width: 1024px) {
  .l-main.-column { padding: 50px 20px 80px 20px;}
  .l-main__inner { display: block;}
}
@media screen and (max-width: 600px) {
  .l-main.-column { padding: 40px 20px 60px 20px;}
}


/*======================================
l-sidebar
======================================*/
.l-sidebar { width: 300px; margin-left: 40px;}
.l-sidebar__item { margin-top: 40px;}
.l-sidebar__item:first-child { margin-top: 0;}

@media screen and (max-width: 1200px) {
  
}
@media screen and (max-width: 1024px) {
  .l-sidebar { width: 100%; margin-left: 0; margin-top: 80px; display: flex;}
  .l-sidebar__item { width: 50%; margin-top: 0; margin-left: 30px;}
  .l-sidebar__item:first-child { margin-left: 0;}

}
@media screen and (max-width: 600px) {
  .l-sidebar { display: block;}
  .l-sidebar__item { width: 100%; margin-left: 0; margin-top: 30px;}
  .l-sidebar__item:first-child { margin-top: 0;}

}


/*======================================
l-pageHeader
======================================*/
.l-pageHeader {
  padding: 95px 70px 0 70px;
  background: #56C2DB url(../image/common/title_bg.svg) no-repeat bottom -110px right;
  overflow: hidden;
  position: relative;
}
.l-pageHeader__inner {
  max-width: 1200px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  height: 280px;
  display: flex;
  align-items: center;
}
.l-pageHeader__image {
  position: absolute;
  right: 100px;
  bottom: -120px;
  width: 565px;
}
.l-pageHeader__image img { max-width: none; width: 100%;}

.l-pageHeader__heading { line-height: 1.5; padding-left: 20px;}

.l-pageHeader__title { font-size: 5.2rem; font-weight: 700; color: #fff; position: relative;}
.l-pageHeader__title::before {
  content: "";
  background: url(../image/common/ico_title_002.svg) no-repeat center center/cover;
  width: 11px;
  height: 27px;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(calc(-100% - 10px),-50%);
}
.l-pageHeader__en {
  font-size: 1.8rem;
  font-weight: 600;
  font-family: "Overpass";
  color: #fff;
  position: relative;
  text-transform: uppercase; 
}


@media screen and (max-width: 1500px) {
  .l-pageHeader__image { width: 450px; right: 50px; bottom: -75px;}
}

@media screen and (max-width: 1200px) {
  .l-pageHeader { padding:  80px 40px 0 40px;}
  .l-pageHeader__inner { height: 260px;}
  .l-pageHeader__image { width: 400px; right: -5px; bottom: -40px;}
}
@media screen and (max-width: 1024px) {
  .l-pageHeader { padding:  80px 20px 0 20px;}
  .l-pageHeader__inner { height: 240px;}
  .l-pageHeader__title { font-size: 4.4rem;}
  .l-pageHeader__image { width: 350px;}
}
@media screen and (max-width: 600px) {
  .l-pageHeader { padding:  60px 20px 0 20px;}
  .l-pageHeader__inner { height: 160px;}
  .l-pageHeader__title { font-size: 2.5rem; text-align: left; }
  .l-pageHeader__title::before { width: 7px; height: 16px;}
  .l-pageHeader__en { font-size: 1.5rem;}

  .l-pageHeader__image { display: none;}
}


/*======================================
l-breadcrumbs
======================================*/
.l-breadcrumbs { padding: 30px 70px 0 70px;}
.l-breadcrumbs__list { max-width: 1200px; width: 100%; margin: auto; display: flex; align-items: center; flex-wrap: wrap;}
.l-breadcrumbs__list li { font-size: 1.1rem; font-weight: 500; text-align: left; }
.l-breadcrumbs__list li::after {
  content: ">";
  margin: 0 5px;
}
.l-breadcrumbs__list li:last-child::after { display: none;}

@media screen and (max-width: 1200px) {
  .l-breadcrumbs { padding:  30px 40px 0 40px;}
}
@media screen and (max-width: 1024px) {
  .l-breadcrumbs { padding:  20px 20px 0 20px;}
}
@media screen and (max-width: 600px) {
  .l-breadcrumbs { padding:  10px 20px 0 20px;}
}


/*======================================
l-footer
======================================*/
.l-footer { padding: 110px 70px; position: relative;}
.l-footer__inner {
  max-width: 1200px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.l-footer__head { display: flex; justify-content: space-between;}
.l-footer__headLogo {}
.l-footer__headLogo img {}
.l-footer__headNav { margin-left: 30px;}

.l-footerNav {}
.l-footerNav__list { display: flex; flex-wrap: wrap; justify-content: flex-end; margin: -10px 0 0 -35px;}
.l-footerNav__item {
  margin: 10px 0 0 35px;
  font-size: 1.4rem;
}

.l-footerSubNav { margin-top: 30px;}
.l-footerSubNav__list { display: flex; flex-wrap: wrap; justify-content: flex-end; margin: -10px 0 0 -35px;}
.l-footerSubNav__item {
  margin: 10px 0 0 35px;
  font-size: 1.2rem;
  color: #818181;
}

.l-footer__body { margin-top: 10px;}
.l-footer__address {}
.l-footer__address dt { font-size: 1.4rem; font-weight: 400;}
.l-footer__address dd { font-size: 1.2rem; margin-top: 10px;}

.l-footer__copyright {
  margin-top: 40px;
  font-size: 1.2rem;
  font-family: "Overpass";
  color: #898989;
}

.l-footer__pageTop {
  width: fit-content;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%,0);
  text-align: center;
}
.l-footer__pageTop span {
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "Overpass";
  margin-bottom: 10px;
}
.l-footer__pageTop a {
  display: block;
  width: 50px;
  height: 95px;
  border-radius: 100px 100px 0 0;
  background: #E57048;
  margin: auto;
  position: relative;
}
.l-footer__pageTop a::before {
  content: "";
  background: url(../image/common/ico_arr_003_w.svg) no-repeat center center/cover;
  width: 12px;
  height: 6px;
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translate(-50%,0);
}

@media screen and (max-width: 1200px) {
  .l-footer { padding: 110px 40px;}
}
@media screen and (max-width: 1024px) {
  .l-footer { padding: 80px 20px 120px 20px;}
  .l-footer__head { flex-direction: column; align-items: center;}
  .l-footer__headNav { margin: 30px 0 0 0;}
  .l-footerNav__list {
    justify-content: center;
  }
  .l-footerSubNav { margin: 20px 0 0 0;}
  .l-footerSubNav__list {
    justify-content: center;
  }
  .l-footer__body {
    margin-top: 30px;
}
.l-footer__address { text-align: center;}
.l-footer__copyright { text-align: center;}
.l-footer__pageTop a {
  width: 40px;
  height: 80px;
}
}
@media screen and (max-width: 600px) {
  .l-footer { padding: 60px 20px 120px;}
}


/* ===== footer layout fix ===== */

.l-footer__headLogo img {
  width: 180px !important;
  height: auto !important;
}

.l-footer__headNav {
  margin-top: 20px !important;
  margin-right: 40px !important;
}

.l-footerNav__list,
.l-footerSubNav__list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.l-footerNav__item,
.l-footerSubNav__item {
  margin-bottom: 14px !important;
}

.l-footerNav__item a,
.l-footerSubNav__item a {
  line-height: 1.8 !important;
  white-space: nowrap !important;
}