@charset "UTF-8";
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
.header__cv-area, .header__inner {
  display: -webkit-box;
  display: -ms-flexbox
}

.footer, .header, footer .btn-area {
  min-width: 1170px
}

.header {
  width: 100%;
  border-bottom: 2px solid #12b3c7;
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

.header * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

.header__inner {
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 1170px;
  height: 128px;
  margin: 0 auto;
  padding: 0 30px
}

.header .logo {
  width: 165px;
  height: 45px;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center
}

.header .logo__link {
  -webkit-transition: opacity .1s ease-in;
  transition: opacity .1s ease-in
}

.header .logo__link:hover {
  opacity: .6;
  -webkit-transition: opacity .1s ease-in;
  transition: opacity .1s ease-in
}

.header .logo img {
  width: 100%;
  height: auto
}

.header__contents {
  position: relative
}

.header__cv-area {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 14px 0 30px
}

.header__cv-area .nav__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.header__cv-area .nav__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  -webkit-transition: color .1s ease-in;
  transition: color .1s ease-in
}

.header__cv-area .nav__link:hover {
  color: #12b3c7;
  -webkit-transition: color .1s ease-in;
  transition: color .1s ease-in
}

.header__cv-area .nav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 20px
}

.header__cv-area .nav__item+.nav__item::before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 32px;
  margin-right: 20px;
  background-color: #ccc
}

.header__cv-area .search-box__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.header__cv-area .search-box__txt {
  padding: 5px 32px 5px 5px;
  width: 200px;
  height: 32px;
  font: inherit;
  font-size: 12px;
  border: 1px solid #e6e6e6;
  outline-color: #7d7d7f
}

.header__cv-area .search-box__btn {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  border: none;
  background-color: #fff;
  outline-color: #7d7d7f
}

.header__cv-area .search-box__icon {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 1px;
  right: 1px;
  text-align: center;
  line-height: 33px;
  pointer-events: none;
  z-index: 2
}

.header__cv-area .search-box__icon .material-icons {
  color: #7d7d7f;
  font-size: 14px
}

.header__nav {
  position: absolute;
  bottom: 0;
  right: 0
}

.header__nav .nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end
}

.header__nav .nav__item {
  white-space: nowrap
}

.header__nav .nav__item+.nav__item {
  margin-left: 60px
}

.header__nav .nav__link {
  height: 52px;
  position: relative;
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  -webkit-transition: color .5s ease-in;
  transition: color .5s ease-in
}

.header__nav .nav__link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
  background-color: #12b3c7;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transition: -webkit-transform .3s ease-in;
  transition: -webkit-transform .3s ease-in;
  transition: transform .3s ease-in;
  transition: transform .3s ease-in, -webkit-transform .3s ease-in
}

.header__nav .nav__link:hover {
  color: #12b3c7;
  -webkit-transition: color .3s ease-in;
  transition: color .3s ease-in
}

.header__nav .nav__link:hover::after {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1)
}

.header__nav .nav__link.js-current {
  color: #12b3c7;
  -webkit-transition: none;
  transition: none
}

.header__nav .nav__link.js-current::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  transition: none
}

.header input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #dbeef4 inset
}

footer .btn-area {
  width: 100%;
  background-color: #dbeef4;
  border: 0
}

footer .btn-area__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 40px 0;
  margin: 0 auto;
  width: 950px
}

footer .btn-area__button-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 30px
}

.footer-sitemap, footer .btn-area__link {
  display: -webkit-box;
  display: -ms-flexbox
}

footer .btn-area__button {
  width: 300px;
  margin-right: 30px!important;
  text-align: center
}

footer .btn-area__link {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: auto;
  padding: 22px 0;
  color: #fff!important;
  font-size: 20px;
  line-height: 1;
  text-decoration: none!important;
  -webkit-transition: opacity .2s ease-in;
  transition: opacity .2s ease-in
}

.footer a, footer .btn-area__link:hover {
  -webkit-transition: opacity .1s ease-in
}

footer .btn-area__link--contact {
  background-color: #12b3c7
}

.footer, footer .btn-area__link--file {
  background-color: #7d7d7f
}

footer .btn-area__link:hover {
  opacity: .6;
  transition: opacity .1s ease-in
}

footer .btn-area__tel {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1
}

footer .btn-area__number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 22px;
  margin-bottom: 10px!important
}

footer .btn-area__time {
  font-size: 14px!important
}

.footer {
  width: 100%;
  color: #fff;
  line-height: 1
}

.footer a {
  color: #fff!important;
  line-height: 1.5;
  text-decoration: none;
  transition: opacity .1s ease-in
}

.footer a:hover {
  text-decoration: underline;
  opacity: .5;
  -webkit-transition: opacity .1s ease-in;
  transition: opacity .1s ease-in
}

.footer__inner {
  margin: 0 auto;
  padding: 90px 0 60px;
  width: 1110px
}

.footer-sitemap {
  display: flex;
  margin-bottom: 60px;
  font-weight: 400
}

.footer-sitemap__unit .footer-sitemap__column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 570px
}

.footer-sitemap__unit .footer-sitemap__column2 .footer-sitemap__list {
  width: calc((100% - 40px)/ 2);
  margin-right: 20px
}

.footer-sitemap__heading {
  margin-bottom: 26px;
  font-size: 14px;
  font-weight: 700
}

.footer-sitemap__list {
  width: 285px
}

.footer-sitemap__item {
  font-size: 14px
}

.footer-sitemap__link, .footer-sitemap__link-child {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 14px
}

.footer-sitemap__link-child {
  margin-left: 1rem;
  font-size: 13px
}

.footer-pagelink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 40px;
  padding: 40px 0;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999
}

.footer-pagelink__inside, .footer-pagelink__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.footer-pagelink__item+.footer-pagelink__item {
  margin-left: 30px!important
}

.footer-pagelink__link {
  font-size: 14px
}

.footer-pagelink__link--fc::before, .footer-pagelink__link--tw::before {
  display: inline-block;
  margin-right: 10px;
  content: '';
  vertical-align: middle
}

.icon--contact::before, .icon--file::before, .icon--member::before, .icon--tel::before {
  display: inline-block;
  margin-right: 5px;
  font-family: "Material Icons";
  font-weight: 400;
  letter-spacing: 0;
  vertical-align: middle;
  speak: none
}

.footer-pagelink__link--fc::before {
  width: 9px;
  height: 17px;
  background: no-repeat;
  background-size: 9px 17px
}

.footer-pagelink__link--tw::before {
  width: 16px;
  height: 13px;
  background:  no-repeat;
  background-size: 16px 13px
}

.footer-pagelink__link:hover::before {
  text-decoration: none
}

.footer-bottom__copy {
  margin-top: -10px;
  font-size: 10px;
  text-align: center
}

.footer-bottom__note {
  font-size: 12px;
  text-align: right
}

.icon--link-blank::before {
  display: inline-block;
  margin-left: 5px;
  content: '\E895';
  font-family: "Material Icons";
  font-size: .71em;
  font-weight: 400;
  letter-spacing: 0;
  speak: none
}

.icon--member::before {
  content: '\E7FD'
}

.icon--contact::before {
  content: '\E8FD'
}

.icon--file::before {
  content: '\E873'
}

.icon--tel::before {
  content: '\E551'
}
.footer-pagelink__link--fc::before{
background-image:url("/common/css/dkmm1f000002c1dq-img/facebook_logo.svg");
}
.footer-pagelink__link--tw::before{
background-image:url("/common/css/dkmm1f000002c1dq-img/twitter_logo.svg");
}
