@charset "UTF-8";

/* Header
--------------------------- */
.header {
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
  .header__body {
    display: flex;
    position: relative;
  }
    .header__body__logo {
      padding: 25px 0 25px 25px;
      box-sizing: border-box;
      width: 30%;
    }
    .header__body__right {
      margin-left: auto;
      padding-top: 20px;
    }
@media screen and (max-width: 1100px) {
  .header__body__logo {
    position: absolute;
    padding-top: 15px;
  }
}
@media screen and (max-width: 950px) {
    .header__body__logo {
      position: static;
      padding: 15px;
      width: auto;
    }
    .header__body__logo img{
		  width: 225px;
    }
    .header__body__right {
      padding-top: 0;
    }
      .header__body__left {
        position: static;
        max-width: 100%;
        padding: 10px 60px 10px 15px;
        background: #fff;
      }
}
.header__body__contact {
  @media screen and (max-width: 950px) {
    display: none;
  }
}
.btn-headerContact {
  margin-left: 20px;
  display: flex;
  height: 100%;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 120px;
  background: url(i/bg_header_contact.png) no-repeat center;
  background-size: 100% 100%;
  transition: .3s ease;
  @media screen and (max-width: 950px) {
    display: block;
    background-image: url(i/bg_header_contact_sp.png);
    margin-left: 0;
    width: 100%;
    border: 1px solid #00559a;
    border-radius: 30px;
    padding: 15px;
    box-sizing: border-box;
    font-weight: bold;
    font-size: 16px;
  }
  &:hover {
    text-decoration: none;
    @media (any-hover: hover) {
      opacity: .7;
    }
  }
}
.icon_news {
  padding-left: 25px;
  display: inline-block;
  position: relative;
  &::before {
    content: '';
    background: url(i/icon_news.svg) no-repeat center;
    background-size: 100%;
    width: 19px;
    height: 15px;
    position: absolute;
    top: 2px;
    left: 0;
  }
}
.icon_global {
  padding-left: 22px;
  display: inline-block;
  position: relative;
  &::before {
    content: '';
    background: url(i/icon_global.svg) no-repeat center;
    background-size: 100%;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 2px;
    left: 0;
  }
}
.icon_mail {
  @media screen and (max-width: 950px) {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  &::after {
    margin-top: 10px;
    content: '';
    background: url(i/icon_mail.svg) no-repeat center;
    background-size: auto 30px;
    width: 100%;
    height: 30px;
    display: block;
    @media screen and (max-width: 950px) {
      width: 47px;
      margin-top: 0;
    }
  }
}

/* Link
--------------------------- */
.linkList > li > a[href*=".pdf"],
.linkList > li > a[href*=".PDF"]{
  padding-left: 2.16667em;
}
.linkList > li > a.download {
  padding-left: 2.16667em;
}
  .linkList > li > a.download:before {
    content: "\e90b";
    top: 0;
    font-size: 133.33333%;
    line-height: 100%;
  }

/* btn
--------------------------- */
.btn.for-external {
  padding: 11px 35px 11px 44px;
}
.btn.for-external:before{
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1.1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e907";
  position: absolute;
  left: 20px;
}

/*
formTable In Left Column
--------------------------- */
.content__body__left .formTable th{
  width: 200px;
}
@media screen and (max-width: 720px) {
  .content__body__left .formTable th{
    width: auto;
  }
}
